1 /* linux/arch/arm/mach-s3c2412/mach-vstms.c
3 * (C) 2006 Thomas Gleixner <tglx@linutronix.de>
5 * Derived from mach-smdk2413.c - (C) 2006 Simtec Electronics
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/types.h>
14 #include <linux/interrupt.h>
15 #include <linux/list.h>
16 #include <linux/timer.h>
17 #include <linux/init.h>
18 #include <linux/serial_core.h>
19 #include <linux/serial_s3c.h>
20 #include <linux/platform_device.h>
22 #include <linux/mtd/mtd.h>
23 #include <linux/mtd/nand.h>
24 #include <linux/mtd/nand_ecc.h>
25 #include <linux/mtd/partitions.h>
26 #include <linux/memblock.h>
28 #include <asm/mach/arch.h>
29 #include <asm/mach/map.h>
30 #include <asm/mach/irq.h>
32 #include <mach/hardware.h>
33 #include <asm/setup.h>
35 #include <asm/mach-types.h>
37 #include <mach/regs-gpio.h>
38 #include <mach/regs-lcd.h>
42 #include <linux/platform_data/i2c-s3c2410.h>
43 #include <linux/platform_data/mtd-nand-s3c2410.h>
45 #include <plat/devs.h>
47 #include <plat/samsung-time.h>
51 static struct map_desc vstms_iodesc
[] __initdata
= {
54 static struct s3c2410_uartcfg vstms_uartcfgs
[] __initdata
= {
78 static struct mtd_partition __initdata vstms_nand_part
[] = {
85 .name
= "UBoot Config",
101 static struct s3c2410_nand_set __initdata vstms_nand_sets
[] = {
105 .nr_partitions
= ARRAY_SIZE(vstms_nand_part
),
106 .partitions
= vstms_nand_part
,
110 /* choose a set of timings which should suit most 512Mbit
114 static struct s3c2410_platform_nand __initdata vstms_nand_info
= {
118 .nr_sets
= ARRAY_SIZE(vstms_nand_sets
),
119 .sets
= vstms_nand_sets
,
122 static struct platform_device
*vstms_devices
[] __initdata
= {
132 static void __init
vstms_fixup(struct tag
*tags
, char **cmdline
)
134 if (tags
!= phys_to_virt(S3C2410_SDRAM_PA
+ 0x100)) {
135 memblock_add(0x30000000, SZ_64M
);
139 static void __init
vstms_map_io(void)
141 s3c24xx_init_io(vstms_iodesc
, ARRAY_SIZE(vstms_iodesc
));
142 s3c24xx_init_uarts(vstms_uartcfgs
, ARRAY_SIZE(vstms_uartcfgs
));
143 samsung_set_timer_source(SAMSUNG_PWM3
, SAMSUNG_PWM4
);
146 static void __init
vstms_init_time(void)
148 s3c2412_init_clocks(12000000);
149 samsung_timer_init();
152 static void __init
vstms_init(void)
154 s3c_i2c0_set_platdata(NULL
);
155 s3c_nand_set_platdata(&vstms_nand_info
);
157 platform_add_devices(vstms_devices
, ARRAY_SIZE(vstms_devices
));
160 MACHINE_START(VSTMS
, "VSTMS")
161 .atag_offset
= 0x100,
163 .fixup
= vstms_fixup
,
164 .init_irq
= s3c2412_init_irq
,
165 .init_machine
= vstms_init
,
166 .map_io
= vstms_map_io
,
167 .init_time
= vstms_init_time
,