blob: 9678a53ceeb13589da76d6328fa1003dd00fd305 [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 Dooks333a42e2007-05-20 11:55:53 +010030#include <linux/sysdev.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010031#include <linux/platform_device.h>
32#include <linux/serial_core.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010033#include <linux/spi/spi.h>
34#include <linux/spi/spi_bitbang.h>
Russell Kingfced80c2008-09-06 12:10:45 +010035#include <linux/io.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010036#include <linux/mtd/mtd.h>
37#include <linux/mtd/nand.h>
38#include <linux/mtd/nand_ecc.h>
39#include <linux/mtd/partitions.h>
40
41#include <asm/mach/arch.h>
42#include <asm/mach/map.h>
43#include <asm/mach/irq.h>
44
Russell Kinga09e64f2008-08-05 16:14:15 +010045#include <mach/hardware.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010046#include <asm/irq.h>
47#include <asm/mach-types.h>
48
Russell Kinga09e64f2008-08-05 16:14:15 +010049#include <mach/regs-gpio.h>
50#include <mach/leds-gpio.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010051#include <plat/regs-serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010052#include <mach/fb.h>
Ben Dooks7926b5a2008-10-30 10:14:35 +000053#include <plat/nand.h>
Ben Dooks57bd4b92008-10-30 10:14:37 +000054#include <plat/udc.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010055#include <mach/spi.h>
56#include <mach/spi-gpio.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 Dooksa2b7ba92008-10-07 22:26:09 +010060#include <plat/devs.h>
61#include <plat/cpu.h>
62#include <plat/pm.h>
Ben Dooksc6184e22007-02-17 00:52:37 +010063
64static struct map_desc qt2410_iodesc[] __initdata = {
65 { 0xe0000000, __phys_to_pfn(S3C2410_CS3+0x01000000), SZ_1M, MT_DEVICE }
66};
67
68#define UCON S3C2410_UCON_DEFAULT
69#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
70#define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
71
72static struct s3c2410_uartcfg smdk2410_uartcfgs[] = {
73 [0] = {
74 .hwport = 0,
75 .flags = 0,
76 .ucon = UCON,
77 .ulcon = ULCON,
78 .ufcon = UFCON,
79 },
80 [1] = {
81 .hwport = 1,
82 .flags = 0,
83 .ucon = UCON,
84 .ulcon = ULCON,
85 .ufcon = UFCON,
86 },
87 [2] = {
88 .hwport = 2,
89 .flags = 0,
90 .ucon = UCON,
91 .ulcon = ULCON,
92 .ufcon = UFCON,
93 }
94};
95
96/* LCD driver info */
97
Krzysztof Helt09fe75f2007-10-16 01:28:56 -070098static struct s3c2410fb_display qt2410_lcd_cfg[] __initdata = {
99 {
100 /* Configuration for 640x480 SHARP LQ080V3DG01 */
Krzysztof Heltf28ef572007-10-16 01:28:58 -0700101 .lcdcon5 = S3C2410_LCDCON5_FRM565 |
102 S3C2410_LCDCON5_INVVLINE |
103 S3C2410_LCDCON5_INVVFRAME |
104 S3C2410_LCDCON5_PWREN |
105 S3C2410_LCDCON5_HWSWP,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700106
Krzysztof Helt1f411532007-10-16 01:28:57 -0700107 .type = S3C2410_LCDCON1_TFT,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700108 .width = 640,
109 .height = 480,
110
Krzysztof Helt69816692007-10-16 01:29:06 -0700111 .pixclock = 40000, /* HCLK/4 */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700112 .xres = 640,
113 .yres = 480,
114 .bpp = 16,
Krzysztof Helt1f411532007-10-16 01:28:57 -0700115 .left_margin = 44,
116 .right_margin = 116,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700117 .hsync_len = 96,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700118 .upper_margin = 19,
119 .lower_margin = 11,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700120 .vsync_len = 15,
Ben Dooksc6184e22007-02-17 00:52:37 +0100121 },
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700122 {
123 /* Configuration for 480x640 toppoly TD028TTEC1 */
Krzysztof Heltf28ef572007-10-16 01:28:58 -0700124 .lcdcon5 = S3C2410_LCDCON5_FRM565 |
125 S3C2410_LCDCON5_INVVLINE |
126 S3C2410_LCDCON5_INVVFRAME |
127 S3C2410_LCDCON5_PWREN |
128 S3C2410_LCDCON5_HWSWP,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700129
Krzysztof Helt1f411532007-10-16 01:28:57 -0700130 .type = S3C2410_LCDCON1_TFT,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700131 .width = 480,
132 .height = 640,
Krzysztof Helt69816692007-10-16 01:29:06 -0700133 .pixclock = 40000, /* HCLK/4 */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700134 .xres = 480,
135 .yres = 640,
136 .bpp = 16,
Krzysztof Helt1f411532007-10-16 01:28:57 -0700137 .left_margin = 8,
138 .right_margin = 24,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700139 .hsync_len = 8,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700140 .upper_margin = 2,
141 .lower_margin = 4,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700142 .vsync_len = 2,
Ben Dooksc6184e22007-02-17 00:52:37 +0100143 },
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700144 {
145 /* Config for 240x320 LCD */
Krzysztof Heltf28ef572007-10-16 01:28:58 -0700146 .lcdcon5 = S3C2410_LCDCON5_FRM565 |
147 S3C2410_LCDCON5_INVVLINE |
148 S3C2410_LCDCON5_INVVFRAME |
149 S3C2410_LCDCON5_PWREN |
150 S3C2410_LCDCON5_HWSWP,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700151
Krzysztof Helt1f411532007-10-16 01:28:57 -0700152 .type = S3C2410_LCDCON1_TFT,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700153 .width = 240,
154 .height = 320,
Krzysztof Helt69816692007-10-16 01:29:06 -0700155 .pixclock = 100000, /* HCLK/10 */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700156 .xres = 240,
157 .yres = 320,
158 .bpp = 16,
Krzysztof Helt1f411532007-10-16 01:28:57 -0700159 .left_margin = 13,
160 .right_margin = 8,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700161 .hsync_len = 4,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700162 .upper_margin = 2,
163 .lower_margin = 7,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700164 .vsync_len = 4,
Ben Dooksc6184e22007-02-17 00:52:37 +0100165 },
166};
167
Ben Dooksc6184e22007-02-17 00:52:37 +0100168
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700169static struct s3c2410fb_mach_info qt2410_fb_info __initdata = {
170 .displays = qt2410_lcd_cfg,
171 .num_displays = ARRAY_SIZE(qt2410_lcd_cfg),
172 .default_display = 0,
Ben Dooksc6184e22007-02-17 00:52:37 +0100173
174 .lpcsel = ((0xCE6) & ~7) | 1<<4,
Ben Dooksc6184e22007-02-17 00:52:37 +0100175};
176
177/* CS8900 */
178
179static struct resource qt2410_cs89x0_resources[] = {
180 [0] = {
181 .start = 0x19000000,
182 .end = 0x19000000 + 16,
183 .flags = IORESOURCE_MEM,
184 },
185 [1] = {
186 .start = IRQ_EINT9,
187 .end = IRQ_EINT9,
188 .flags = IORESOURCE_IRQ,
189 },
190};
191
192static struct platform_device qt2410_cs89x0 = {
193 .name = "cirrus-cs89x0",
194 .num_resources = ARRAY_SIZE(qt2410_cs89x0_resources),
195 .resource = qt2410_cs89x0_resources,
196};
197
198/* LED */
199
200static struct s3c24xx_led_platdata qt2410_pdata_led = {
201 .gpio = S3C2410_GPB0,
202 .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE,
203 .name = "led",
204 .def_trigger = "timer",
205};
206
207static struct platform_device qt2410_led = {
208 .name = "s3c24xx_led",
209 .id = 0,
210 .dev = {
211 .platform_data = &qt2410_pdata_led,
212 },
213};
214
215/* SPI */
216
217static void spi_gpio_cs(struct s3c2410_spigpio_info *spi, int cs)
218{
219 switch (cs) {
220 case BITBANG_CS_ACTIVE:
221 s3c2410_gpio_setpin(S3C2410_GPB5, 0);
222 break;
223 case BITBANG_CS_INACTIVE:
224 s3c2410_gpio_setpin(S3C2410_GPB5, 1);
225 break;
226 }
227}
228
229static struct s3c2410_spigpio_info spi_gpio_cfg = {
230 .pin_clk = S3C2410_GPG7,
231 .pin_mosi = S3C2410_GPG6,
232 .pin_miso = S3C2410_GPG5,
233 .chip_select = &spi_gpio_cs,
234};
235
236
237static struct platform_device qt2410_spi = {
238 .name = "s3c24xx-spi-gpio",
239 .id = 1,
240 .dev = {
241 .platform_data = &spi_gpio_cfg,
242 },
243};
244
245/* Board devices */
246
247static struct platform_device *qt2410_devices[] __initdata = {
248 &s3c_device_usb,
249 &s3c_device_lcd,
250 &s3c_device_wdt,
Ben Dooks3e1b7762008-10-31 16:14:40 +0000251 &s3c_device_i2c0,
Ben Dooksc6184e22007-02-17 00:52:37 +0100252 &s3c_device_iis,
253 &s3c_device_sdi,
254 &s3c_device_usbgadget,
255 &qt2410_spi,
256 &qt2410_cs89x0,
257 &qt2410_led,
258};
259
Ben Dooksc6184e22007-02-17 00:52:37 +0100260static struct mtd_partition qt2410_nand_part[] = {
261 [0] = {
262 .name = "U-Boot",
263 .size = 0x30000,
264 .offset = 0,
265 },
266 [1] = {
267 .name = "U-Boot environment",
268 .offset = 0x30000,
269 .size = 0x4000,
270 },
271 [2] = {
272 .name = "kernel",
273 .offset = 0x34000,
274 .size = SZ_2M,
275 },
276 [3] = {
277 .name = "initrd",
278 .offset = 0x234000,
279 .size = SZ_4M,
280 },
281 [4] = {
282 .name = "jffs2",
283 .offset = 0x634000,
284 .size = 0x39cc000,
285 },
286};
287
288static struct s3c2410_nand_set qt2410_nand_sets[] = {
289 [0] = {
290 .name = "NAND",
291 .nr_chips = 1,
292 .nr_partitions = ARRAY_SIZE(qt2410_nand_part),
293 .partitions = qt2410_nand_part,
294 },
295};
296
297/* choose a set of timings which should suit most 512Mbit
298 * chips and beyond.
299 */
300
301static struct s3c2410_platform_nand qt2410_nand_info = {
302 .tacls = 20,
303 .twrph0 = 60,
304 .twrph1 = 20,
305 .nr_sets = ARRAY_SIZE(qt2410_nand_sets),
306 .sets = qt2410_nand_sets,
307};
308
309/* UDC */
310
311static struct s3c2410_udc_mach_info qt2410_udc_cfg = {
312};
313
314static char tft_type = 's';
315
316static int __init qt2410_tft_setup(char *str)
317{
318 tft_type = str[0];
319 return 1;
320}
321
322__setup("tft=", qt2410_tft_setup);
323
324static void __init qt2410_map_io(void)
325{
326 s3c24xx_init_io(qt2410_iodesc, ARRAY_SIZE(qt2410_iodesc));
327 s3c24xx_init_clocks(12*1000*1000);
328 s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs));
Ben Dooksc6184e22007-02-17 00:52:37 +0100329}
330
331static void __init qt2410_machine_init(void)
332{
333 s3c_device_nand.dev.platform_data = &qt2410_nand_info;
334
335 switch (tft_type) {
336 case 'p': /* production */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700337 qt2410_fb_info.default_display = 1;
Ben Dooksc6184e22007-02-17 00:52:37 +0100338 break;
339 case 'b': /* big */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700340 qt2410_fb_info.default_display = 0;
Ben Dooksc6184e22007-02-17 00:52:37 +0100341 break;
342 case 's': /* small */
343 default:
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700344 qt2410_fb_info.default_display = 2;
Ben Dooksc6184e22007-02-17 00:52:37 +0100345 break;
346 }
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700347 s3c24xx_fb_set_platdata(&qt2410_fb_info);
Ben Dooksc6184e22007-02-17 00:52:37 +0100348
349 s3c2410_gpio_cfgpin(S3C2410_GPB0, S3C2410_GPIO_OUTPUT);
350 s3c2410_gpio_setpin(S3C2410_GPB0, 1);
351
352 s3c24xx_udc_set_platdata(&qt2410_udc_cfg);
Ben Dooks3e1b7762008-10-31 16:14:40 +0000353 s3c_i2c0_set_platdata(NULL);
Ben Dooksc6184e22007-02-17 00:52:37 +0100354
355 s3c2410_gpio_cfgpin(S3C2410_GPB5, S3C2410_GPIO_OUTPUT);
356
Ben Dooks57e51712007-04-20 11:19:16 +0100357 platform_add_devices(qt2410_devices, ARRAY_SIZE(qt2410_devices));
Ben Dooksc6184e22007-02-17 00:52:37 +0100358 s3c2410_pm_init();
359}
360
361MACHINE_START(QT2410, "QT2410")
362 .phys_io = S3C2410_PA_UART,
363 .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
364 .boot_params = S3C2410_SDRAM_PA + 0x100,
365 .map_io = qt2410_map_io,
366 .init_irq = s3c24xx_init_irq,
367 .init_machine = qt2410_machine_init,
368 .timer = &s3c24xx_timer,
369MACHINE_END
370
371