1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright (c) 2005-2008 Simtec Electronics
4 // http://armlinux.simtec.co.uk/
5 // Ben Dooks <ben@simtec.co.uk>
7 #include <linux/kernel.h>
8 #include <linux/types.h>
9 #include <linux/interrupt.h>
10 #include <linux/list.h>
11 #include <linux/timer.h>
12 #include <linux/init.h>
13 #include <linux/gpio.h>
14 #include <linux/device.h>
15 #include <linux/syscore_ops.h>
16 #include <linux/serial_core.h>
17 #include <linux/serial_s3c.h>
18 #include <linux/clk.h>
19 #include <linux/i2c.h>
21 #include <linux/platform_device.h>
23 #include <linux/mfd/tps65010.h>
25 #include <asm/mach-types.h>
26 #include <asm/mach/arch.h>
27 #include <asm/mach/map.h>
28 #include <asm/mach/irq.h>
31 #include <linux/platform_data/mtd-nand-s3c2410.h>
32 #include <linux/platform_data/i2c-s3c2410.h>
34 #include <linux/mtd/mtd.h>
35 #include <linux/mtd/rawnand.h>
36 #include <linux/mtd/nand_ecc.h>
37 #include <linux/mtd/partitions.h>
40 #include <plat/cpu-freq.h>
41 #include <plat/devs.h>
42 #include <plat/gpio-cfg.h>
43 #include <plat/samsung-time.h>
45 #include <mach/hardware.h>
46 #include <mach/regs-gpio.h>
47 #include <mach/regs-lcd.h>
48 #include <mach/gpio-samsung.h>
54 /* onboard perihperal map */
56 static struct map_desc osiris_iodesc
[] __initdata
= {
57 /* ISA IO areas (may be over-written later) */
60 .virtual = (u32
)S3C24XX_VA_ISA_BYTE
,
61 .pfn
= __phys_to_pfn(S3C2410_CS5
),
65 .virtual = (u32
)S3C24XX_VA_ISA_WORD
,
66 .pfn
= __phys_to_pfn(S3C2410_CS5
),
71 /* CPLD control registers */
74 .virtual = (u32
)OSIRIS_VA_CTRL0
,
75 .pfn
= __phys_to_pfn(OSIRIS_PA_CTRL0
),
79 .virtual = (u32
)OSIRIS_VA_CTRL1
,
80 .pfn
= __phys_to_pfn(OSIRIS_PA_CTRL1
),
84 .virtual = (u32
)OSIRIS_VA_CTRL2
,
85 .pfn
= __phys_to_pfn(OSIRIS_PA_CTRL2
),
89 .virtual = (u32
)OSIRIS_VA_IDREG
,
90 .pfn
= __phys_to_pfn(OSIRIS_PA_IDREG
),
96 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
97 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
98 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
100 static struct s3c2410_uartcfg osiris_uartcfgs
[] __initdata
= {
107 .clk_sel
= S3C2410_UCON_CLKSEL1
| S3C2410_UCON_CLKSEL2
,
115 .clk_sel
= S3C2410_UCON_CLKSEL1
| S3C2410_UCON_CLKSEL2
,
123 .clk_sel
= S3C2410_UCON_CLKSEL1
| S3C2410_UCON_CLKSEL2
,
127 /* NAND Flash on Osiris board */
129 static int external_map
[] = { 2 };
130 static int chip0_map
[] = { 0 };
131 static int chip1_map
[] = { 1 };
133 static struct mtd_partition __initdata osiris_default_nand_part
[] = {
135 .name
= "Boot Agent",
141 .size
= SZ_4M
- SZ_16K
,
147 .size
= SZ_32M
- SZ_4M
,
152 .size
= MTDPART_SIZ_FULL
,
156 static struct mtd_partition __initdata osiris_default_nand_part_large
[] = {
158 .name
= "Boot Agent",
164 .size
= SZ_4M
- SZ_128K
,
170 .size
= SZ_32M
- SZ_4M
,
175 .size
= MTDPART_SIZ_FULL
,
179 /* the Osiris has 3 selectable slots for nand-flash, the two
180 * on-board chip areas, as well as the external slot.
182 * Note, there is no current hot-plug support for the External
186 static struct s3c2410_nand_set __initdata osiris_nand_sets
[] = {
190 .nr_map
= external_map
,
191 .options
= NAND_SCAN_SILENT_NODEV
,
192 .nr_partitions
= ARRAY_SIZE(osiris_default_nand_part
),
193 .partitions
= osiris_default_nand_part
,
199 .nr_partitions
= ARRAY_SIZE(osiris_default_nand_part
),
200 .partitions
= osiris_default_nand_part
,
206 .options
= NAND_SCAN_SILENT_NODEV
,
207 .nr_partitions
= ARRAY_SIZE(osiris_default_nand_part
),
208 .partitions
= osiris_default_nand_part
,
212 static void osiris_nand_select(struct s3c2410_nand_set
*set
, int slot
)
216 slot
= set
->nr_map
[slot
] & 3;
218 pr_debug("osiris_nand: selecting slot %d (set %p,%p)\n",
219 slot
, set
, set
->nr_map
);
221 tmp
= __raw_readb(OSIRIS_VA_CTRL0
);
222 tmp
&= ~OSIRIS_CTRL0_NANDSEL
;
225 pr_debug("osiris_nand: ctrl0 now %02x\n", tmp
);
227 __raw_writeb(tmp
, OSIRIS_VA_CTRL0
);
230 static struct s3c2410_platform_nand __initdata osiris_nand_info
= {
234 .nr_sets
= ARRAY_SIZE(osiris_nand_sets
),
235 .sets
= osiris_nand_sets
,
236 .select_chip
= osiris_nand_select
,
237 .ecc_mode
= NAND_ECC_SOFT
,
240 /* PCMCIA control and configuration */
242 static struct resource osiris_pcmcia_resource
[] = {
243 [0] = DEFINE_RES_MEM(0x0f000000, SZ_1M
),
244 [1] = DEFINE_RES_MEM(0x0c000000, SZ_1M
),
247 static struct platform_device osiris_pcmcia
= {
248 .name
= "osiris-pcmcia",
250 .num_resources
= ARRAY_SIZE(osiris_pcmcia_resource
),
251 .resource
= osiris_pcmcia_resource
,
254 /* Osiris power management device */
257 static unsigned char pm_osiris_ctrl0
;
259 static int osiris_pm_suspend(void)
263 pm_osiris_ctrl0
= __raw_readb(OSIRIS_VA_CTRL0
);
264 tmp
= pm_osiris_ctrl0
& ~OSIRIS_CTRL0_NANDSEL
;
266 /* ensure correct NAND slot is selected on resume */
267 if ((pm_osiris_ctrl0
& OSIRIS_CTRL0_BOOT_INT
) == 0)
270 __raw_writeb(tmp
, OSIRIS_VA_CTRL0
);
272 /* ensure that an nRESET is not generated on resume. */
273 gpio_request_one(S3C2410_GPA(21), GPIOF_OUT_INIT_HIGH
, NULL
);
274 gpio_free(S3C2410_GPA(21));
279 static void osiris_pm_resume(void)
281 if (pm_osiris_ctrl0
& OSIRIS_CTRL0_FIX8
)
282 __raw_writeb(OSIRIS_CTRL1_FIX8
, OSIRIS_VA_CTRL1
);
284 __raw_writeb(pm_osiris_ctrl0
, OSIRIS_VA_CTRL0
);
286 s3c_gpio_cfgpin(S3C2410_GPA(21), S3C2410_GPA21_nRSTOUT
);
290 #define osiris_pm_suspend NULL
291 #define osiris_pm_resume NULL
294 static struct syscore_ops osiris_pm_syscore_ops
= {
295 .suspend
= osiris_pm_suspend
,
296 .resume
= osiris_pm_resume
,
299 /* Link for DVS driver to TPS65011 */
301 static void osiris_tps_release(struct device
*dev
)
303 /* static device, do not need to release anything */
306 static struct platform_device osiris_tps_device
= {
307 .name
= "osiris-dvs",
309 .dev
.release
= osiris_tps_release
,
312 static int osiris_tps_setup(struct i2c_client
*client
, void *context
)
314 osiris_tps_device
.dev
.parent
= &client
->dev
;
315 return platform_device_register(&osiris_tps_device
);
318 static int osiris_tps_remove(struct i2c_client
*client
, void *context
)
320 platform_device_unregister(&osiris_tps_device
);
324 static struct tps65010_board osiris_tps_board
= {
325 .base
= -1, /* GPIO can go anywhere at the moment */
326 .setup
= osiris_tps_setup
,
327 .teardown
= osiris_tps_remove
,
330 /* I2C devices fitted. */
332 static struct i2c_board_info osiris_i2c_devs
[] __initdata
= {
334 I2C_BOARD_INFO("tps65011", 0x48),
336 .platform_data
= &osiris_tps_board
,
340 /* Standard Osiris devices */
342 static struct platform_device
*osiris_devices
[] __initdata
= {
343 &s3c2410_device_dclk
,
350 static struct s3c_cpufreq_board __initdata osiris_cpufreq
= {
351 .refresh
= 7800, /* refresh period is 7.8usec */
356 static void __init
osiris_map_io(void)
360 s3c24xx_init_io(osiris_iodesc
, ARRAY_SIZE(osiris_iodesc
));
361 s3c24xx_init_uarts(osiris_uartcfgs
, ARRAY_SIZE(osiris_uartcfgs
));
362 samsung_set_timer_source(SAMSUNG_PWM3
, SAMSUNG_PWM4
);
364 /* check for the newer revision boards with large page nand */
366 if ((__raw_readb(OSIRIS_VA_IDREG
) & OSIRIS_ID_REVMASK
) >= 4) {
367 printk(KERN_INFO
"OSIRIS-B detected (revision %d)\n",
368 __raw_readb(OSIRIS_VA_IDREG
) & OSIRIS_ID_REVMASK
);
369 osiris_nand_sets
[0].partitions
= osiris_default_nand_part_large
;
370 osiris_nand_sets
[0].nr_partitions
= ARRAY_SIZE(osiris_default_nand_part_large
);
372 /* write-protect line to the NAND */
373 gpio_request_one(S3C2410_GPA(0), GPIOF_OUT_INIT_HIGH
, NULL
);
374 gpio_free(S3C2410_GPA(0));
377 /* fix bus configuration (nBE settings wrong on ABLE pre v2.20) */
379 local_irq_save(flags
);
380 __raw_writel(__raw_readl(S3C2410_BWSCON
) | S3C2410_BWSCON_ST1
| S3C2410_BWSCON_ST2
| S3C2410_BWSCON_ST3
| S3C2410_BWSCON_ST4
| S3C2410_BWSCON_ST5
, S3C2410_BWSCON
);
381 local_irq_restore(flags
);
384 static void __init
osiris_init_time(void)
386 s3c2440_init_clocks(12000000);
387 samsung_timer_init();
390 static void __init
osiris_init(void)
392 register_syscore_ops(&osiris_pm_syscore_ops
);
394 s3c_i2c0_set_platdata(NULL
);
395 s3c_nand_set_platdata(&osiris_nand_info
);
397 s3c_cpufreq_setboard(&osiris_cpufreq
);
399 i2c_register_board_info(0, osiris_i2c_devs
,
400 ARRAY_SIZE(osiris_i2c_devs
));
402 platform_add_devices(osiris_devices
, ARRAY_SIZE(osiris_devices
));
405 MACHINE_START(OSIRIS
, "Simtec-OSIRIS")
406 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
407 .atag_offset
= 0x100,
408 .map_io
= osiris_map_io
,
409 .init_irq
= s3c2440_init_irq
,
410 .init_machine
= osiris_init
,
411 .init_time
= osiris_init_time
,