blob: 58f2c17b9f0d2e349ee60d18391891924be91172 [file] [log] [blame]
Ben Dooksc6184e22007-02-17 00:52:37 +01001/* linux/arch/arm/mach-s3c2410/mach-qt2410.c
2 *
3 * Copyright (C) 2006 by OpenMoko, Inc.
4 * Author: Harald Welte <laforge@openmoko.org>
5 * All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 *
22 */
23
24#include <linux/kernel.h>
25#include <linux/types.h>
26#include <linux/interrupt.h>
27#include <linux/list.h>
28#include <linux/timer.h>
29#include <linux/init.h>
Ben Dooksec976d62009-05-13 22:52:24 +010030#include <linux/gpio.h>
Ben Dooks333a42e2007-05-20 11:55:53 +010031#include <linux/sysdev.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010032#include <linux/platform_device.h>
33#include <linux/serial_core.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010034#include <linux/spi/spi.h>
Peter Korsgaardaa353162011-06-28 14:49:14 +020035#include <linux/spi/spi_gpio.h>
Russell Kingfced80c2008-09-06 12:10:45 +010036#include <linux/io.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010037#include <linux/mtd/mtd.h>
38#include <linux/mtd/nand.h>
39#include <linux/mtd/nand_ecc.h>
40#include <linux/mtd/partitions.h>
41
42#include <asm/mach/arch.h>
43#include <asm/mach/map.h>
44#include <asm/mach/irq.h>
45
Russell Kinga09e64f2008-08-05 16:14:15 +010046#include <mach/hardware.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010047#include <asm/irq.h>
48#include <asm/mach-types.h>
49
Russell Kinga09e64f2008-08-05 16:14:15 +010050#include <mach/regs-gpio.h>
51#include <mach/leds-gpio.h>
Kukjin Kim61c542b2011-10-03 09:46:13 +090052#include <mach/regs-lcd.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010053#include <plat/regs-serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010054#include <mach/fb.h>
Ben Dooks7926b5a2008-10-30 10:14:35 +000055#include <plat/nand.h>
Ben Dooks57bd4b92008-10-30 10:14:37 +000056#include <plat/udc.h>
Ben Dooks3e1b7762008-10-31 16:14:40 +000057#include <plat/iic.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010058
Ben Dooksd5120ae2008-10-07 23:09:51 +010059#include <plat/common-smdk.h>
Ben Dooks40b956f2010-05-04 14:38:49 +090060#include <plat/gpio-cfg.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010061#include <plat/devs.h>
62#include <plat/cpu.h>
63#include <plat/pm.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010064
Kukjin Kimb27b0722012-01-03 14:02:03 +010065#include "common.h"
66
Ben Dooksc6184e22007-02-17 00:52:37 +010067static struct map_desc qt2410_iodesc[] __initdata = {
68 { 0xe0000000, __phys_to_pfn(S3C2410_CS3+0x01000000), SZ_1M, MT_DEVICE }
69};
70
71#define UCON S3C2410_UCON_DEFAULT
72#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
73#define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
74
75static struct s3c2410_uartcfg smdk2410_uartcfgs[] = {
76 [0] = {
77 .hwport = 0,
78 .flags = 0,
79 .ucon = UCON,
80 .ulcon = ULCON,
81 .ufcon = UFCON,
82 },
83 [1] = {
84 .hwport = 1,
85 .flags = 0,
86 .ucon = UCON,
87 .ulcon = ULCON,
88 .ufcon = UFCON,
89 },
90 [2] = {
91 .hwport = 2,
92 .flags = 0,
93 .ucon = UCON,
94 .ulcon = ULCON,
95 .ufcon = UFCON,
96 }
97};
98
99/* LCD driver info */
100
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700101static struct s3c2410fb_display qt2410_lcd_cfg[] __initdata = {
102 {
103 /* Configuration for 640x480 SHARP LQ080V3DG01 */
Krzysztof Heltf28ef572007-10-16 01:28:58 -0700104 .lcdcon5 = S3C2410_LCDCON5_FRM565 |
105 S3C2410_LCDCON5_INVVLINE |
106 S3C2410_LCDCON5_INVVFRAME |
107 S3C2410_LCDCON5_PWREN |
108 S3C2410_LCDCON5_HWSWP,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700109
Krzysztof Helt1f411532007-10-16 01:28:57 -0700110 .type = S3C2410_LCDCON1_TFT,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700111 .width = 640,
112 .height = 480,
113
Krzysztof Helt69816692007-10-16 01:29:06 -0700114 .pixclock = 40000, /* HCLK/4 */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700115 .xres = 640,
116 .yres = 480,
117 .bpp = 16,
Krzysztof Helt1f411532007-10-16 01:28:57 -0700118 .left_margin = 44,
119 .right_margin = 116,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700120 .hsync_len = 96,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700121 .upper_margin = 19,
122 .lower_margin = 11,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700123 .vsync_len = 15,
Ben Dooksc6184e22007-02-17 00:52:37 +0100124 },
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700125 {
126 /* Configuration for 480x640 toppoly TD028TTEC1 */
Krzysztof Heltf28ef572007-10-16 01:28:58 -0700127 .lcdcon5 = S3C2410_LCDCON5_FRM565 |
128 S3C2410_LCDCON5_INVVLINE |
129 S3C2410_LCDCON5_INVVFRAME |
130 S3C2410_LCDCON5_PWREN |
131 S3C2410_LCDCON5_HWSWP,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700132
Krzysztof Helt1f411532007-10-16 01:28:57 -0700133 .type = S3C2410_LCDCON1_TFT,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700134 .width = 480,
135 .height = 640,
Krzysztof Helt69816692007-10-16 01:29:06 -0700136 .pixclock = 40000, /* HCLK/4 */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700137 .xres = 480,
138 .yres = 640,
139 .bpp = 16,
Krzysztof Helt1f411532007-10-16 01:28:57 -0700140 .left_margin = 8,
141 .right_margin = 24,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700142 .hsync_len = 8,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700143 .upper_margin = 2,
144 .lower_margin = 4,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700145 .vsync_len = 2,
Ben Dooksc6184e22007-02-17 00:52:37 +0100146 },
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700147 {
148 /* Config for 240x320 LCD */
Krzysztof Heltf28ef572007-10-16 01:28:58 -0700149 .lcdcon5 = S3C2410_LCDCON5_FRM565 |
150 S3C2410_LCDCON5_INVVLINE |
151 S3C2410_LCDCON5_INVVFRAME |
152 S3C2410_LCDCON5_PWREN |
153 S3C2410_LCDCON5_HWSWP,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700154
Krzysztof Helt1f411532007-10-16 01:28:57 -0700155 .type = S3C2410_LCDCON1_TFT,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700156 .width = 240,
157 .height = 320,
Krzysztof Helt69816692007-10-16 01:29:06 -0700158 .pixclock = 100000, /* HCLK/10 */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700159 .xres = 240,
160 .yres = 320,
161 .bpp = 16,
Krzysztof Helt1f411532007-10-16 01:28:57 -0700162 .left_margin = 13,
163 .right_margin = 8,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700164 .hsync_len = 4,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700165 .upper_margin = 2,
166 .lower_margin = 7,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700167 .vsync_len = 4,
Ben Dooksc6184e22007-02-17 00:52:37 +0100168 },
169};
170
Ben Dooksc6184e22007-02-17 00:52:37 +0100171
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700172static struct s3c2410fb_mach_info qt2410_fb_info __initdata = {
173 .displays = qt2410_lcd_cfg,
174 .num_displays = ARRAY_SIZE(qt2410_lcd_cfg),
175 .default_display = 0,
Ben Dooksc6184e22007-02-17 00:52:37 +0100176
177 .lpcsel = ((0xCE6) & ~7) | 1<<4,
Ben Dooksc6184e22007-02-17 00:52:37 +0100178};
179
180/* CS8900 */
181
182static struct resource qt2410_cs89x0_resources[] = {
183 [0] = {
184 .start = 0x19000000,
185 .end = 0x19000000 + 16,
186 .flags = IORESOURCE_MEM,
187 },
188 [1] = {
189 .start = IRQ_EINT9,
190 .end = IRQ_EINT9,
191 .flags = IORESOURCE_IRQ,
192 },
193};
194
195static struct platform_device qt2410_cs89x0 = {
196 .name = "cirrus-cs89x0",
197 .num_resources = ARRAY_SIZE(qt2410_cs89x0_resources),
198 .resource = qt2410_cs89x0_resources,
199};
200
201/* LED */
202
203static struct s3c24xx_led_platdata qt2410_pdata_led = {
Ben Dooks070276d2009-05-17 22:32:23 +0100204 .gpio = S3C2410_GPB(0),
Ben Dooksc6184e22007-02-17 00:52:37 +0100205 .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE,
206 .name = "led",
207 .def_trigger = "timer",
208};
209
210static struct platform_device qt2410_led = {
211 .name = "s3c24xx_led",
212 .id = 0,
213 .dev = {
214 .platform_data = &qt2410_pdata_led,
215 },
216};
217
218/* SPI */
219
Peter Korsgaardaa353162011-06-28 14:49:14 +0200220static struct spi_gpio_platform_data spi_gpio_cfg = {
221 .sck = S3C2410_GPG(7),
222 .mosi = S3C2410_GPG(6),
223 .miso = S3C2410_GPG(5),
Ben Dooksc6184e22007-02-17 00:52:37 +0100224};
225
Ben Dooksc6184e22007-02-17 00:52:37 +0100226static struct platform_device qt2410_spi = {
Peter Korsgaardaa353162011-06-28 14:49:14 +0200227 .name = "spi-gpio",
228 .id = 1,
229 .dev.platform_data = &spi_gpio_cfg,
Ben Dooksc6184e22007-02-17 00:52:37 +0100230};
231
232/* Board devices */
233
234static struct platform_device *qt2410_devices[] __initdata = {
Ben Dooksb8132482009-11-23 00:13:39 +0000235 &s3c_device_ohci,
Ben Dooksc6184e22007-02-17 00:52:37 +0100236 &s3c_device_lcd,
237 &s3c_device_wdt,
Ben Dooks3e1b7762008-10-31 16:14:40 +0000238 &s3c_device_i2c0,
Ben Dooksc6184e22007-02-17 00:52:37 +0100239 &s3c_device_iis,
240 &s3c_device_sdi,
241 &s3c_device_usbgadget,
242 &qt2410_spi,
243 &qt2410_cs89x0,
244 &qt2410_led,
245};
246
Ben Dooks2a3a1802009-09-28 13:59:49 +0300247static struct mtd_partition __initdata qt2410_nand_part[] = {
Ben Dooksc6184e22007-02-17 00:52:37 +0100248 [0] = {
249 .name = "U-Boot",
250 .size = 0x30000,
251 .offset = 0,
252 },
253 [1] = {
254 .name = "U-Boot environment",
255 .offset = 0x30000,
256 .size = 0x4000,
257 },
258 [2] = {
259 .name = "kernel",
260 .offset = 0x34000,
261 .size = SZ_2M,
262 },
263 [3] = {
264 .name = "initrd",
265 .offset = 0x234000,
266 .size = SZ_4M,
267 },
268 [4] = {
269 .name = "jffs2",
270 .offset = 0x634000,
271 .size = 0x39cc000,
272 },
273};
274
Ben Dooks2a3a1802009-09-28 13:59:49 +0300275static struct s3c2410_nand_set __initdata qt2410_nand_sets[] = {
Ben Dooksc6184e22007-02-17 00:52:37 +0100276 [0] = {
277 .name = "NAND",
278 .nr_chips = 1,
279 .nr_partitions = ARRAY_SIZE(qt2410_nand_part),
280 .partitions = qt2410_nand_part,
281 },
282};
283
284/* choose a set of timings which should suit most 512Mbit
285 * chips and beyond.
286 */
287
Ben Dooks2a3a1802009-09-28 13:59:49 +0300288static struct s3c2410_platform_nand __initdata qt2410_nand_info = {
Ben Dooksc6184e22007-02-17 00:52:37 +0100289 .tacls = 20,
290 .twrph0 = 60,
291 .twrph1 = 20,
292 .nr_sets = ARRAY_SIZE(qt2410_nand_sets),
293 .sets = qt2410_nand_sets,
294};
295
296/* UDC */
297
298static struct s3c2410_udc_mach_info qt2410_udc_cfg = {
299};
300
301static char tft_type = 's';
302
303static int __init qt2410_tft_setup(char *str)
304{
305 tft_type = str[0];
306 return 1;
307}
308
309__setup("tft=", qt2410_tft_setup);
310
311static void __init qt2410_map_io(void)
312{
313 s3c24xx_init_io(qt2410_iodesc, ARRAY_SIZE(qt2410_iodesc));
314 s3c24xx_init_clocks(12*1000*1000);
315 s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs));
Ben Dooksc6184e22007-02-17 00:52:37 +0100316}
317
318static void __init qt2410_machine_init(void)
319{
Ben Dooks2a3a1802009-09-28 13:59:49 +0300320 s3c_nand_set_platdata(&qt2410_nand_info);
Ben Dooksc6184e22007-02-17 00:52:37 +0100321
322 switch (tft_type) {
323 case 'p': /* production */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700324 qt2410_fb_info.default_display = 1;
Ben Dooksc6184e22007-02-17 00:52:37 +0100325 break;
326 case 'b': /* big */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700327 qt2410_fb_info.default_display = 0;
Ben Dooksc6184e22007-02-17 00:52:37 +0100328 break;
329 case 's': /* small */
330 default:
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700331 qt2410_fb_info.default_display = 2;
Ben Dooksc6184e22007-02-17 00:52:37 +0100332 break;
333 }
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700334 s3c24xx_fb_set_platdata(&qt2410_fb_info);
Ben Dooksc6184e22007-02-17 00:52:37 +0100335
Ben Dooks40b956f2010-05-04 14:38:49 +0900336 s3c_gpio_cfgpin(S3C2410_GPB(0), S3C2410_GPIO_OUTPUT);
Ben Dooks070276d2009-05-17 22:32:23 +0100337 s3c2410_gpio_setpin(S3C2410_GPB(0), 1);
Ben Dooksc6184e22007-02-17 00:52:37 +0100338
339 s3c24xx_udc_set_platdata(&qt2410_udc_cfg);
Ben Dooks3e1b7762008-10-31 16:14:40 +0000340 s3c_i2c0_set_platdata(NULL);
Ben Dooksc6184e22007-02-17 00:52:37 +0100341
Ben Dooks2d2e0c82010-05-04 12:32:16 +0900342 WARN_ON(gpio_request(S3C2410_GPB(5), "spi cs"));
343 gpio_direction_output(S3C2410_GPB(5), 1);
Ben Dooksc6184e22007-02-17 00:52:37 +0100344
Ben Dooks57e51712007-04-20 11:19:16 +0100345 platform_add_devices(qt2410_devices, ARRAY_SIZE(qt2410_devices));
Ben Dooks4e59c252008-12-12 00:24:18 +0000346 s3c_pm_init();
Ben Dooksc6184e22007-02-17 00:52:37 +0100347}
348
349MACHINE_START(QT2410, "QT2410")
Nicolas Pitre69d50712011-07-05 22:38:17 -0400350 .atag_offset = 0x100,
Ben Dooksc6184e22007-02-17 00:52:37 +0100351 .map_io = qt2410_map_io,
352 .init_irq = s3c24xx_init_irq,
353 .init_machine = qt2410_machine_init,
354 .timer = &s3c24xx_timer,
Kukjin Kimb27b0722012-01-03 14:02:03 +0100355 .restart = s3c2410_restart,
Ben Dooksc6184e22007-02-17 00:52:37 +0100356MACHINE_END