blob: 239129c2d8bc6b44af0919161b0fc1ce3225722e [file] [log] [blame]
Ben Dooksa21765a2007-02-11 18:31:01 +01001/* linux/arch/arm/mach-s3c2412/mach-vstms.c
Ben Dooksb6c440a2006-09-20 20:32:33 +01002 *
3 * (C) 2006 Thomas Gleixner <tglx@linutronix.de>
4 *
5 * Derived from mach-smdk2413.c - (C) 2006 Simtec Electronics
6 *
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.
10 */
11
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>
Ben Dooksb6d1f542006-12-17 23:22:26 +010018#include <linux/serial_core.h>
Ben Dooksb6c440a2006-09-20 20:32:33 +010019#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010020#include <linux/io.h>
Ben Dooksb6c440a2006-09-20 20:32:33 +010021#include <linux/mtd/mtd.h>
22#include <linux/mtd/nand.h>
23#include <linux/mtd/nand_ecc.h>
24#include <linux/mtd/partitions.h>
25
26#include <asm/mach/arch.h>
27#include <asm/mach/map.h>
28#include <asm/mach/irq.h>
29
Russell Kinga09e64f2008-08-05 16:14:15 +010030#include <mach/hardware.h>
Ben Dooksb6c440a2006-09-20 20:32:33 +010031#include <asm/setup.h>
Ben Dooksb6c440a2006-09-20 20:32:33 +010032#include <asm/irq.h>
33#include <asm/mach-types.h>
34
Ben Dooksa2b7ba92008-10-07 22:26:09 +010035#include <plat/regs-serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010036#include <mach/regs-gpio.h>
37#include <mach/regs-lcd.h>
Ben Dooksb6c440a2006-09-20 20:32:33 +010038
Russell Kinga09e64f2008-08-05 16:14:15 +010039#include <mach/fb.h>
Ben Dooksb6c440a2006-09-20 20:32:33 +010040
Arnd Bergmann436d42c2012-08-24 15:22:12 +020041#include <linux/platform_data/i2c-s3c2410.h>
42#include <linux/platform_data/mtd-nand-s3c2410.h>
Ben Dooksb6c440a2006-09-20 20:32:33 +010043
Ben Dooksd5120ae2008-10-07 23:09:51 +010044#include <plat/clock.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010045#include <plat/devs.h>
46#include <plat/cpu.h>
Ben Dooksb6c440a2006-09-20 20:32:33 +010047
Heiko Stuebnere1a621d2013-02-08 10:31:28 -080048#include "common.h"
Ben Dooksb6c440a2006-09-20 20:32:33 +010049
50static struct map_desc vstms_iodesc[] __initdata = {
51};
52
53static struct s3c2410_uartcfg vstms_uartcfgs[] __initdata = {
54 [0] = {
55 .hwport = 0,
56 .flags = 0,
57 .ucon = 0x3c5,
58 .ulcon = 0x03,
59 .ufcon = 0x51,
60 },
61 [1] = {
62 .hwport = 1,
63 .flags = 0,
64 .ucon = 0x3c5,
65 .ulcon = 0x03,
66 .ufcon = 0x51,
67 },
68 [2] = {
69 .hwport = 2,
70 .flags = 0,
71 .ucon = 0x3c5,
72 .ulcon = 0x03,
73 .ufcon = 0x51,
74 }
75};
76
Ben Dooks2a3a1802009-09-28 13:59:49 +030077static struct mtd_partition __initdata vstms_nand_part[] = {
Ben Dooksb6c440a2006-09-20 20:32:33 +010078 [0] = {
79 .name = "Boot Agent",
80 .size = 0x7C000,
81 .offset = 0,
82 },
83 [1] = {
84 .name = "UBoot Config",
85 .offset = 0x7C000,
86 .size = 0x4000,
87 },
88 [2] = {
89 .name = "Kernel",
90 .offset = 0x80000,
91 .size = 0x200000,
92 },
93 [3] = {
94 .name = "RFS",
95 .offset = 0x280000,
96 .size = 0x3d80000,
97 },
98};
99
Ben Dooks2a3a1802009-09-28 13:59:49 +0300100static struct s3c2410_nand_set __initdata vstms_nand_sets[] = {
Ben Dooksb6c440a2006-09-20 20:32:33 +0100101 [0] = {
102 .name = "NAND",
103 .nr_chips = 1,
104 .nr_partitions = ARRAY_SIZE(vstms_nand_part),
105 .partitions = vstms_nand_part,
106 },
107};
108
109/* choose a set of timings which should suit most 512Mbit
110 * chips and beyond.
111*/
112
Ben Dooks2a3a1802009-09-28 13:59:49 +0300113static struct s3c2410_platform_nand __initdata vstms_nand_info = {
Ben Dooksb6c440a2006-09-20 20:32:33 +0100114 .tacls = 20,
115 .twrph0 = 60,
116 .twrph1 = 20,
117 .nr_sets = ARRAY_SIZE(vstms_nand_sets),
118 .sets = vstms_nand_sets,
119};
120
121static struct platform_device *vstms_devices[] __initdata = {
Ben Dooksb8132482009-11-23 00:13:39 +0000122 &s3c_device_ohci,
Ben Dooksb6c440a2006-09-20 20:32:33 +0100123 &s3c_device_wdt,
Ben Dooks3e1b7762008-10-31 16:14:40 +0000124 &s3c_device_i2c0,
Ben Dooksb6c440a2006-09-20 20:32:33 +0100125 &s3c_device_iis,
126 &s3c_device_rtc,
127 &s3c_device_nand,
128};
129
Russell King0744a3e2010-12-20 10:37:50 +0000130static void __init vstms_fixup(struct tag *tags, char **cmdline,
131 struct meminfo *mi)
Ben Dooksb6c440a2006-09-20 20:32:33 +0100132{
133 if (tags != phys_to_virt(S3C2410_SDRAM_PA + 0x100)) {
134 mi->nr_banks=1;
135 mi->bank[0].start = 0x30000000;
136 mi->bank[0].size = SZ_64M;
Ben Dooksb6c440a2006-09-20 20:32:33 +0100137 }
138}
139
140static void __init vstms_map_io(void)
141{
Ben Dooksb6c440a2006-09-20 20:32:33 +0100142 s3c24xx_init_io(vstms_iodesc, ARRAY_SIZE(vstms_iodesc));
143 s3c24xx_init_clocks(12000000);
144 s3c24xx_init_uarts(vstms_uartcfgs, ARRAY_SIZE(vstms_uartcfgs));
Ben Dooks57e51712007-04-20 11:19:16 +0100145}
146
147static void __init vstms_init(void)
148{
Ben Dooks3e1b7762008-10-31 16:14:40 +0000149 s3c_i2c0_set_platdata(NULL);
Ben Dooks2a3a1802009-09-28 13:59:49 +0300150 s3c_nand_set_platdata(&vstms_nand_info);
151
Ben Dooks57e51712007-04-20 11:19:16 +0100152 platform_add_devices(vstms_devices, ARRAY_SIZE(vstms_devices));
Ben Dooksb6c440a2006-09-20 20:32:33 +0100153}
154
155MACHINE_START(VSTMS, "VSTMS")
Nicolas Pitre69d50712011-07-05 22:38:17 -0400156 .atag_offset = 0x100,
Ben Dooksb6c440a2006-09-20 20:32:33 +0100157
158 .fixup = vstms_fixup,
159 .init_irq = s3c24xx_init_irq,
Ben Dooks57e51712007-04-20 11:19:16 +0100160 .init_machine = vstms_init,
Ben Dooksb6c440a2006-09-20 20:32:33 +0100161 .map_io = vstms_map_io,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700162 .init_time = s3c24xx_timer_init,
Heiko Stuebner57538972011-12-22 23:37:44 +0100163 .restart = s3c2412_restart,
Ben Dooksb6c440a2006-09-20 20:32:33 +0100164MACHINE_END