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-sw-hamming.h>
37 #include <linux/mtd/partitions.h>
40 #include <linux/soc/samsung/s3c-cpu-freq.h>
44 #include "regs-gpio.h"
45 #include "gpio-samsung.h"
49 #include "regs-mem-s3c24xx.h"
51 /* onboard perihperal map */
53 static struct map_desc osiris_iodesc
[] __initdata
= {
54 /* ISA IO areas (may be over-written later) */
57 .virtual = (u32
)S3C24XX_VA_ISA_BYTE
,
58 .pfn
= __phys_to_pfn(S3C2410_CS5
),
62 .virtual = (u32
)S3C24XX_VA_ISA_WORD
,
63 .pfn
= __phys_to_pfn(S3C2410_CS5
),
68 /* CPLD control registers */
71 .virtual = (u32
)OSIRIS_VA_CTRL0
,
72 .pfn
= __phys_to_pfn(OSIRIS_PA_CTRL0
),
76 .virtual = (u32
)OSIRIS_VA_CTRL1
,
77 .pfn
= __phys_to_pfn(OSIRIS_PA_CTRL1
),
81 .virtual = (u32
)OSIRIS_VA_CTRL2
,
82 .pfn
= __phys_to_pfn(OSIRIS_PA_CTRL2
),
86 .virtual = (u32
)OSIRIS_VA_IDREG
,
87 .pfn
= __phys_to_pfn(OSIRIS_PA_IDREG
),
93 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
94 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
95 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
97 static struct s3c2410_uartcfg osiris_uartcfgs
[] __initdata
= {
104 .clk_sel
= S3C2410_UCON_CLKSEL1
| S3C2410_UCON_CLKSEL2
,
112 .clk_sel
= S3C2410_UCON_CLKSEL1
| S3C2410_UCON_CLKSEL2
,
120 .clk_sel
= S3C2410_UCON_CLKSEL1
| S3C2410_UCON_CLKSEL2
,
124 /* NAND Flash on Osiris board */
126 static int external_map
[] = { 2 };
127 static int chip0_map
[] = { 0 };
128 static int chip1_map
[] = { 1 };
130 static struct mtd_partition __initdata osiris_default_nand_part
[] = {
132 .name
= "Boot Agent",
138 .size
= SZ_4M
- SZ_16K
,
144 .size
= SZ_32M
- SZ_4M
,
149 .size
= MTDPART_SIZ_FULL
,
153 static struct mtd_partition __initdata osiris_default_nand_part_large
[] = {
155 .name
= "Boot Agent",
161 .size
= SZ_4M
- SZ_128K
,
167 .size
= SZ_32M
- SZ_4M
,
172 .size
= MTDPART_SIZ_FULL
,
176 /* the Osiris has 3 selectable slots for nand-flash, the two
177 * on-board chip areas, as well as the external slot.
179 * Note, there is no current hot-plug support for the External
183 static struct s3c2410_nand_set __initdata osiris_nand_sets
[] = {
187 .nr_map
= external_map
,
188 .options
= NAND_SCAN_SILENT_NODEV
,
189 .nr_partitions
= ARRAY_SIZE(osiris_default_nand_part
),
190 .partitions
= osiris_default_nand_part
,
196 .nr_partitions
= ARRAY_SIZE(osiris_default_nand_part
),
197 .partitions
= osiris_default_nand_part
,
203 .options
= NAND_SCAN_SILENT_NODEV
,
204 .nr_partitions
= ARRAY_SIZE(osiris_default_nand_part
),
205 .partitions
= osiris_default_nand_part
,
209 static void osiris_nand_select(struct s3c2410_nand_set
*set
, int slot
)
213 slot
= set
->nr_map
[slot
] & 3;
215 pr_debug("osiris_nand: selecting slot %d (set %p,%p)\n",
216 slot
, set
, set
->nr_map
);
218 tmp
= __raw_readb(OSIRIS_VA_CTRL0
);
219 tmp
&= ~OSIRIS_CTRL0_NANDSEL
;
222 pr_debug("osiris_nand: ctrl0 now %02x\n", tmp
);
224 __raw_writeb(tmp
, OSIRIS_VA_CTRL0
);
227 static struct s3c2410_platform_nand __initdata osiris_nand_info
= {
231 .nr_sets
= ARRAY_SIZE(osiris_nand_sets
),
232 .sets
= osiris_nand_sets
,
233 .select_chip
= osiris_nand_select
,
234 .engine_type
= NAND_ECC_ENGINE_TYPE_SOFT
,
237 /* PCMCIA control and configuration */
239 static struct resource osiris_pcmcia_resource
[] = {
240 [0] = DEFINE_RES_MEM(0x0f000000, SZ_1M
),
241 [1] = DEFINE_RES_MEM(0x0c000000, SZ_1M
),
244 static struct platform_device osiris_pcmcia
= {
245 .name
= "osiris-pcmcia",
247 .num_resources
= ARRAY_SIZE(osiris_pcmcia_resource
),
248 .resource
= osiris_pcmcia_resource
,
251 /* Osiris power management device */
254 static unsigned char pm_osiris_ctrl0
;
256 static int osiris_pm_suspend(void)
260 pm_osiris_ctrl0
= __raw_readb(OSIRIS_VA_CTRL0
);
261 tmp
= pm_osiris_ctrl0
& ~OSIRIS_CTRL0_NANDSEL
;
263 /* ensure correct NAND slot is selected on resume */
264 if ((pm_osiris_ctrl0
& OSIRIS_CTRL0_BOOT_INT
) == 0)
267 __raw_writeb(tmp
, OSIRIS_VA_CTRL0
);
269 /* ensure that an nRESET is not generated on resume. */
270 gpio_request_one(S3C2410_GPA(21), GPIOF_OUT_INIT_HIGH
, NULL
);
271 gpio_free(S3C2410_GPA(21));
276 static void osiris_pm_resume(void)
278 if (pm_osiris_ctrl0
& OSIRIS_CTRL0_FIX8
)
279 __raw_writeb(OSIRIS_CTRL1_FIX8
, OSIRIS_VA_CTRL1
);
281 __raw_writeb(pm_osiris_ctrl0
, OSIRIS_VA_CTRL0
);
283 s3c_gpio_cfgpin(S3C2410_GPA(21), S3C2410_GPA21_nRSTOUT
);
287 #define osiris_pm_suspend NULL
288 #define osiris_pm_resume NULL
291 static struct syscore_ops osiris_pm_syscore_ops
= {
292 .suspend
= osiris_pm_suspend
,
293 .resume
= osiris_pm_resume
,
296 /* Link for DVS driver to TPS65011 */
298 static void osiris_tps_release(struct device
*dev
)
300 /* static device, do not need to release anything */
303 static struct platform_device osiris_tps_device
= {
304 .name
= "osiris-dvs",
306 .dev
.release
= osiris_tps_release
,
309 static int osiris_tps_setup(struct i2c_client
*client
, void *context
)
311 osiris_tps_device
.dev
.parent
= &client
->dev
;
312 return platform_device_register(&osiris_tps_device
);
315 static int osiris_tps_remove(struct i2c_client
*client
, void *context
)
317 platform_device_unregister(&osiris_tps_device
);
321 static struct tps65010_board osiris_tps_board
= {
322 .base
= -1, /* GPIO can go anywhere at the moment */
323 .setup
= osiris_tps_setup
,
324 .teardown
= osiris_tps_remove
,
327 /* I2C devices fitted. */
329 static struct i2c_board_info osiris_i2c_devs
[] __initdata
= {
331 I2C_BOARD_INFO("tps65011", 0x48),
333 .platform_data
= &osiris_tps_board
,
337 /* Standard Osiris devices */
339 static struct platform_device
*osiris_devices
[] __initdata
= {
340 &s3c2410_device_dclk
,
347 static struct s3c_cpufreq_board __initdata osiris_cpufreq
= {
348 .refresh
= 7800, /* refresh period is 7.8usec */
353 static void __init
osiris_map_io(void)
357 s3c24xx_init_io(osiris_iodesc
, ARRAY_SIZE(osiris_iodesc
));
358 s3c24xx_init_uarts(osiris_uartcfgs
, ARRAY_SIZE(osiris_uartcfgs
));
359 s3c24xx_set_timer_source(S3C24XX_PWM3
, S3C24XX_PWM4
);
361 /* check for the newer revision boards with large page nand */
363 if ((__raw_readb(OSIRIS_VA_IDREG
) & OSIRIS_ID_REVMASK
) >= 4) {
364 printk(KERN_INFO
"OSIRIS-B detected (revision %d)\n",
365 __raw_readb(OSIRIS_VA_IDREG
) & OSIRIS_ID_REVMASK
);
366 osiris_nand_sets
[0].partitions
= osiris_default_nand_part_large
;
367 osiris_nand_sets
[0].nr_partitions
= ARRAY_SIZE(osiris_default_nand_part_large
);
369 /* write-protect line to the NAND */
370 gpio_request_one(S3C2410_GPA(0), GPIOF_OUT_INIT_HIGH
, NULL
);
371 gpio_free(S3C2410_GPA(0));
374 /* fix bus configuration (nBE settings wrong on ABLE pre v2.20) */
376 local_irq_save(flags
);
377 __raw_writel(__raw_readl(S3C2410_BWSCON
) | S3C2410_BWSCON_ST1
| S3C2410_BWSCON_ST2
| S3C2410_BWSCON_ST3
| S3C2410_BWSCON_ST4
| S3C2410_BWSCON_ST5
, S3C2410_BWSCON
);
378 local_irq_restore(flags
);
381 static void __init
osiris_init_time(void)
383 s3c2440_init_clocks(12000000);
384 s3c24xx_timer_init();
387 static void __init
osiris_init(void)
389 register_syscore_ops(&osiris_pm_syscore_ops
);
391 s3c_i2c0_set_platdata(NULL
);
392 s3c_nand_set_platdata(&osiris_nand_info
);
394 s3c_cpufreq_setboard(&osiris_cpufreq
);
396 i2c_register_board_info(0, osiris_i2c_devs
,
397 ARRAY_SIZE(osiris_i2c_devs
));
399 platform_add_devices(osiris_devices
, ARRAY_SIZE(osiris_devices
));
402 MACHINE_START(OSIRIS
, "Simtec-OSIRIS")
403 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
404 .atag_offset
= 0x100,
405 .map_io
= osiris_map_io
,
406 .init_irq
= s3c2440_init_irq
,
407 .init_machine
= osiris_init
,
408 .init_time
= osiris_init_time
,