blob: 3abfdb908d4c50c463c5b8fe71c765c131516e89 [file] [log] [blame]
Ian Molton3abcd192007-11-19 13:16:56 +01001/*
2 * Hardware definitions for the Toshiba eseries PDAs
3 *
4 * Copyright (c) 2003 Ian Molton <spyro@f2s.com>
5 *
6 * This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 *
11 */
12
Ian Molton28365482008-08-09 21:48:45 +010013#include <linux/kernel.h>
Ian Molton3abcd192007-11-19 13:16:56 +010014#include <linux/init.h>
Ian Molton36033422008-08-24 19:21:26 +010015#include <linux/gpio.h>
Ian Moltonb1ae1b72008-09-26 13:38:59 +010016#include <linux/delay.h>
Ian Molton36033422008-08-24 19:21:26 +010017#include <linux/platform_device.h>
Eric Miaoe478fe42010-06-20 20:35:32 +080018#include <linux/mfd/tc6387xb.h>
19#include <linux/mfd/tc6393xb.h>
20#include <linux/mfd/t7l66xb.h>
21#include <linux/mtd/nand.h>
22#include <linux/mtd/partitions.h>
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +030023#include <linux/usb/gpio_vbus.h>
Eric Miaoe478fe42010-06-20 20:35:32 +080024
25#include <video/w100fb.h>
Ian Molton3abcd192007-11-19 13:16:56 +010026
27#include <asm/setup.h>
28#include <asm/mach/arch.h>
Ian Molton3abcd192007-11-19 13:16:56 +010029#include <asm/mach-types.h>
30
Eric Miao51c62982009-01-02 23:17:22 +080031#include <mach/pxa25x.h>
Ian Moltonebcce7b2008-08-19 13:34:56 +010032#include <mach/eseries-gpio.h>
Haojian Zhuang6ac6b812010-08-20 15:23:59 +080033#include <mach/eseries-irq.h>
Eric Miaoe478fe42010-06-20 20:35:32 +080034#include <mach/audio.h>
35#include <mach/pxafb.h>
Ian Moltonebcce7b2008-08-19 13:34:56 +010036#include <mach/udc.h>
Ian Molton36033422008-08-24 19:21:26 +010037#include <mach/irda.h>
Ian Molton28365482008-08-09 21:48:45 +010038
Eric Miaoe478fe42010-06-20 20:35:32 +080039#include "devices.h"
Ian Molton877e03d2008-06-25 22:22:49 +010040#include "generic.h"
Ian Moltonb1ae1b72008-09-26 13:38:59 +010041#include "clock.h"
Ian Molton3abcd192007-11-19 13:16:56 +010042
43/* Only e800 has 128MB RAM */
Russell King0744a3e2010-12-20 10:37:50 +000044void __init eseries_fixup(struct tag *tags, char **cmdline, struct meminfo *mi)
Ian Molton3abcd192007-11-19 13:16:56 +010045{
46 mi->nr_banks=1;
47 mi->bank[0].start = 0xa0000000;
Ian Molton3abcd192007-11-19 13:16:56 +010048 if (machine_is_e800())
49 mi->bank[0].size = (128*1024*1024);
50 else
51 mi->bank[0].size = (64*1024*1024);
52}
53
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +030054struct gpio_vbus_mach_info e7xx_udc_info = {
Ian Moltonebcce7b2008-08-19 13:34:56 +010055 .gpio_vbus = GPIO_E7XX_USB_DISC,
56 .gpio_pullup = GPIO_E7XX_USB_PULLUP,
57 .gpio_pullup_inverted = 1
58};
59
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +030060static struct platform_device e7xx_gpio_vbus = {
61 .name = "gpio-vbus",
62 .id = -1,
63 .dev = {
64 .platform_data = &e7xx_udc_info,
65 },
66};
67
Ian Molton36033422008-08-24 19:21:26 +010068struct pxaficp_platform_data e7xx_ficp_platform_data = {
Marek Vasutc4bd0172009-07-17 12:50:43 +020069 .gpio_pwdown = GPIO_E7XX_IR_OFF,
70 .transceiver_cap = IR_SIRMODE | IR_OFF,
Ian Molton36033422008-08-24 19:21:26 +010071};
72
Ian Moltonb1ae1b72008-09-26 13:38:59 +010073int eseries_tmio_enable(struct platform_device *dev)
74{
75 /* Reset - bring SUSPEND high before PCLR */
76 gpio_set_value(GPIO_ESERIES_TMIO_SUSPEND, 0);
77 gpio_set_value(GPIO_ESERIES_TMIO_PCLR, 0);
78 msleep(1);
79 gpio_set_value(GPIO_ESERIES_TMIO_SUSPEND, 1);
80 msleep(1);
81 gpio_set_value(GPIO_ESERIES_TMIO_PCLR, 1);
82 msleep(1);
83 return 0;
84}
85
86int eseries_tmio_disable(struct platform_device *dev)
87{
88 gpio_set_value(GPIO_ESERIES_TMIO_SUSPEND, 0);
89 gpio_set_value(GPIO_ESERIES_TMIO_PCLR, 0);
90 return 0;
91}
92
93int eseries_tmio_suspend(struct platform_device *dev)
94{
95 gpio_set_value(GPIO_ESERIES_TMIO_SUSPEND, 0);
96 return 0;
97}
98
99int eseries_tmio_resume(struct platform_device *dev)
100{
101 gpio_set_value(GPIO_ESERIES_TMIO_SUSPEND, 1);
102 msleep(1);
103 return 0;
104}
105
106void eseries_get_tmio_gpios(void)
107{
108 gpio_request(GPIO_ESERIES_TMIO_SUSPEND, NULL);
109 gpio_request(GPIO_ESERIES_TMIO_PCLR, NULL);
110 gpio_direction_output(GPIO_ESERIES_TMIO_SUSPEND, 0);
111 gpio_direction_output(GPIO_ESERIES_TMIO_PCLR, 0);
112}
113
114/* TMIO controller uses the same resources on all e-series machines. */
115struct resource eseries_tmio_resources[] = {
116 [0] = {
117 .start = PXA_CS4_PHYS,
118 .end = PXA_CS4_PHYS + 0x1fffff,
119 .flags = IORESOURCE_MEM,
120 },
121 [1] = {
122 .start = IRQ_GPIO(GPIO_ESERIES_TMIO_IRQ),
123 .end = IRQ_GPIO(GPIO_ESERIES_TMIO_IRQ),
124 .flags = IORESOURCE_IRQ,
125 },
126};
127
128/* Some e-series hardware cannot control the 32K clock */
129static void clk_32k_dummy(struct clk *clk)
130{
131}
132
133static const struct clkops clk_32k_dummy_ops = {
134 .enable = clk_32k_dummy,
135 .disable = clk_32k_dummy,
136};
137
138static struct clk tmio_dummy_clk = {
139 .ops = &clk_32k_dummy_ops,
140 .rate = 32768,
141};
142
143static struct clk_lookup eseries_clkregs[] = {
144 INIT_CLKREG(&tmio_dummy_clk, NULL, "CLK_CK32K"),
145};
146
Russell King955d2952011-10-27 11:37:47 +0100147static void __init eseries_register_clks(void)
Ian Moltonb1ae1b72008-09-26 13:38:59 +0100148{
Russell King0a0300d2010-01-12 12:28:00 +0000149 clkdev_add_table(eseries_clkregs, ARRAY_SIZE(eseries_clkregs));
Ian Moltonb1ae1b72008-09-26 13:38:59 +0100150}
151
Eric Miaoe478fe42010-06-20 20:35:32 +0800152#ifdef CONFIG_MACH_E330
153/* -------------------- e330 tc6387xb parameters -------------------- */
154
155static struct tc6387xb_platform_data e330_tc6387xb_info = {
156 .enable = &eseries_tmio_enable,
157 .disable = &eseries_tmio_disable,
158 .suspend = &eseries_tmio_suspend,
159 .resume = &eseries_tmio_resume,
160};
161
162static struct platform_device e330_tc6387xb_device = {
163 .name = "tc6387xb",
164 .id = -1,
165 .dev = {
166 .platform_data = &e330_tc6387xb_info,
167 },
168 .num_resources = 2,
169 .resource = eseries_tmio_resources,
170};
171
172/* --------------------------------------------------------------- */
173
174static struct platform_device *e330_devices[] __initdata = {
175 &e330_tc6387xb_device,
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +0300176 &e7xx_gpio_vbus,
Eric Miaoe478fe42010-06-20 20:35:32 +0800177};
178
179static void __init e330_init(void)
180{
181 pxa_set_ffuart_info(NULL);
182 pxa_set_btuart_info(NULL);
183 pxa_set_stuart_info(NULL);
184 eseries_register_clks();
185 eseries_get_tmio_gpios();
186 platform_add_devices(ARRAY_AND_SIZE(e330_devices));
Eric Miaoe478fe42010-06-20 20:35:32 +0800187}
188
189MACHINE_START(E330, "Toshiba e330")
190 /* Maintainer: Ian Molton (spyro@f2s.com) */
Nicolas Pitre7375aba2011-07-05 22:38:15 -0400191 .atag_offset = 0x100,
Marek Vasut851982c2010-10-11 02:20:19 +0200192 .map_io = pxa25x_map_io,
Haojian Zhuang6ac6b812010-08-20 15:23:59 +0800193 .nr_irqs = ESERIES_NR_IRQS,
Eric Miaoe478fe42010-06-20 20:35:32 +0800194 .init_irq = pxa25x_init_irq,
Eric Miao8a97ae22011-05-18 21:30:04 +0800195 .handle_irq = pxa25x_handle_irq,
Eric Miaoe478fe42010-06-20 20:35:32 +0800196 .fixup = eseries_fixup,
197 .init_machine = e330_init,
198 .timer = &pxa_timer,
199MACHINE_END
200#endif
201
202#ifdef CONFIG_MACH_E350
203/* -------------------- e350 t7l66xb parameters -------------------- */
204
205static struct t7l66xb_platform_data e350_t7l66xb_info = {
206 .irq_base = IRQ_BOARD_START,
207 .enable = &eseries_tmio_enable,
208 .suspend = &eseries_tmio_suspend,
209 .resume = &eseries_tmio_resume,
210};
211
212static struct platform_device e350_t7l66xb_device = {
213 .name = "t7l66xb",
214 .id = -1,
215 .dev = {
216 .platform_data = &e350_t7l66xb_info,
217 },
218 .num_resources = 2,
219 .resource = eseries_tmio_resources,
220};
221
222/* ---------------------------------------------------------- */
223
224static struct platform_device *e350_devices[] __initdata = {
225 &e350_t7l66xb_device,
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +0300226 &e7xx_gpio_vbus,
Eric Miaoe478fe42010-06-20 20:35:32 +0800227};
228
229static void __init e350_init(void)
230{
231 pxa_set_ffuart_info(NULL);
232 pxa_set_btuart_info(NULL);
233 pxa_set_stuart_info(NULL);
234 eseries_register_clks();
235 eseries_get_tmio_gpios();
236 platform_add_devices(ARRAY_AND_SIZE(e350_devices));
Eric Miaoe478fe42010-06-20 20:35:32 +0800237}
238
239MACHINE_START(E350, "Toshiba e350")
240 /* Maintainer: Ian Molton (spyro@f2s.com) */
Nicolas Pitre7375aba2011-07-05 22:38:15 -0400241 .atag_offset = 0x100,
Marek Vasut851982c2010-10-11 02:20:19 +0200242 .map_io = pxa25x_map_io,
Haojian Zhuang6ac6b812010-08-20 15:23:59 +0800243 .nr_irqs = ESERIES_NR_IRQS,
Eric Miaoe478fe42010-06-20 20:35:32 +0800244 .init_irq = pxa25x_init_irq,
Eric Miao8a97ae22011-05-18 21:30:04 +0800245 .handle_irq = pxa25x_handle_irq,
Eric Miaoe478fe42010-06-20 20:35:32 +0800246 .fixup = eseries_fixup,
247 .init_machine = e350_init,
248 .timer = &pxa_timer,
249MACHINE_END
250#endif
251
252#ifdef CONFIG_MACH_E400
253/* ------------------------ E400 LCD definitions ------------------------ */
254
255static struct pxafb_mode_info e400_pxafb_mode_info = {
256 .pixclock = 140703,
257 .xres = 240,
258 .yres = 320,
259 .bpp = 16,
260 .hsync_len = 4,
261 .left_margin = 28,
262 .right_margin = 8,
263 .vsync_len = 3,
264 .upper_margin = 5,
265 .lower_margin = 6,
266 .sync = 0,
267};
268
269static struct pxafb_mach_info e400_pxafb_mach_info = {
270 .modes = &e400_pxafb_mode_info,
271 .num_modes = 1,
272 .lcd_conn = LCD_COLOR_TFT_16BPP,
273 .lccr3 = 0,
274 .pxafb_backlight_power = NULL,
275};
276
277/* ------------------------ E400 MFP config ----------------------------- */
278
279static unsigned long e400_pin_config[] __initdata = {
280 /* Chip selects */
281 GPIO15_nCS_1, /* CS1 - Flash */
282 GPIO80_nCS_4, /* CS4 - TMIO */
283
284 /* Clocks */
285 GPIO12_32KHz,
286
287 /* BTUART */
288 GPIO42_BTUART_RXD,
289 GPIO43_BTUART_TXD,
290 GPIO44_BTUART_CTS,
291
292 /* TMIO controller */
293 GPIO19_GPIO, /* t7l66xb #PCLR */
294 GPIO45_GPIO, /* t7l66xb #SUSPEND (NOT BTUART!) */
295
296 /* wakeup */
297 GPIO0_GPIO | WAKEUP_ON_EDGE_RISE,
298};
299
300/* ---------------------------------------------------------------------- */
301
302static struct mtd_partition partition_a = {
303 .name = "Internal NAND flash",
304 .offset = 0,
305 .size = MTDPART_SIZ_FULL,
306};
307
308static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
309
310static struct nand_bbt_descr e400_t7l66xb_nand_bbt = {
311 .options = 0,
312 .offs = 4,
313 .len = 2,
314 .pattern = scan_ff_pattern
315};
316
317static struct tmio_nand_data e400_t7l66xb_nand_config = {
318 .num_partitions = 1,
319 .partition = &partition_a,
320 .badblock_pattern = &e400_t7l66xb_nand_bbt,
321};
322
323static struct t7l66xb_platform_data e400_t7l66xb_info = {
324 .irq_base = IRQ_BOARD_START,
325 .enable = &eseries_tmio_enable,
326 .suspend = &eseries_tmio_suspend,
327 .resume = &eseries_tmio_resume,
328
329 .nand_data = &e400_t7l66xb_nand_config,
330};
331
332static struct platform_device e400_t7l66xb_device = {
333 .name = "t7l66xb",
334 .id = -1,
335 .dev = {
336 .platform_data = &e400_t7l66xb_info,
337 },
338 .num_resources = 2,
339 .resource = eseries_tmio_resources,
340};
341
342/* ---------------------------------------------------------- */
343
344static struct platform_device *e400_devices[] __initdata = {
345 &e400_t7l66xb_device,
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +0300346 &e7xx_gpio_vbus,
Eric Miaoe478fe42010-06-20 20:35:32 +0800347};
348
349static void __init e400_init(void)
350{
351 pxa2xx_mfp_config(ARRAY_AND_SIZE(e400_pin_config));
352 pxa_set_ffuart_info(NULL);
353 pxa_set_btuart_info(NULL);
354 pxa_set_stuart_info(NULL);
355 /* Fixme - e400 may have a switched clock */
356 eseries_register_clks();
357 eseries_get_tmio_gpios();
Russell King - ARM Linux4321e1a2011-02-15 15:37:30 +0800358 pxa_set_fb_info(NULL, &e400_pxafb_mach_info);
Eric Miaoe478fe42010-06-20 20:35:32 +0800359 platform_add_devices(ARRAY_AND_SIZE(e400_devices));
Eric Miaoe478fe42010-06-20 20:35:32 +0800360}
361
362MACHINE_START(E400, "Toshiba e400")
363 /* Maintainer: Ian Molton (spyro@f2s.com) */
Nicolas Pitre7375aba2011-07-05 22:38:15 -0400364 .atag_offset = 0x100,
Marek Vasut851982c2010-10-11 02:20:19 +0200365 .map_io = pxa25x_map_io,
Haojian Zhuang6ac6b812010-08-20 15:23:59 +0800366 .nr_irqs = ESERIES_NR_IRQS,
Eric Miaoe478fe42010-06-20 20:35:32 +0800367 .init_irq = pxa25x_init_irq,
Eric Miao8a97ae22011-05-18 21:30:04 +0800368 .handle_irq = pxa25x_handle_irq,
Eric Miaoe478fe42010-06-20 20:35:32 +0800369 .fixup = eseries_fixup,
370 .init_machine = e400_init,
371 .timer = &pxa_timer,
372MACHINE_END
373#endif
374
375#ifdef CONFIG_MACH_E740
376/* ------------------------ e740 video support --------------------------- */
377
378static struct w100_gen_regs e740_lcd_regs = {
379 .lcd_format = 0x00008023,
380 .lcdd_cntl1 = 0x0f000000,
381 .lcdd_cntl2 = 0x0003ffff,
382 .genlcd_cntl1 = 0x00ffff03,
383 .genlcd_cntl2 = 0x003c0f03,
384 .genlcd_cntl3 = 0x000143aa,
385};
386
387static struct w100_mode e740_lcd_mode = {
388 .xres = 240,
389 .yres = 320,
390 .left_margin = 20,
391 .right_margin = 28,
392 .upper_margin = 9,
393 .lower_margin = 8,
394 .crtc_ss = 0x80140013,
395 .crtc_ls = 0x81150110,
396 .crtc_gs = 0x80050005,
397 .crtc_vpos_gs = 0x000a0009,
398 .crtc_rev = 0x0040010a,
399 .crtc_dclk = 0xa906000a,
400 .crtc_gclk = 0x80050108,
401 .crtc_goe = 0x80050108,
402 .pll_freq = 57,
403 .pixclk_divider = 4,
404 .pixclk_divider_rotated = 4,
405 .pixclk_src = CLK_SRC_XTAL,
406 .sysclk_divider = 1,
407 .sysclk_src = CLK_SRC_PLL,
408 .crtc_ps1_active = 0x41060010,
409};
410
411static struct w100_gpio_regs e740_w100_gpio_info = {
412 .init_data1 = 0x21002103,
413 .gpio_dir1 = 0xffffdeff,
414 .gpio_oe1 = 0x03c00643,
415 .init_data2 = 0x003f003f,
416 .gpio_dir2 = 0xffffffff,
417 .gpio_oe2 = 0x000000ff,
418};
419
420static struct w100fb_mach_info e740_fb_info = {
421 .modelist = &e740_lcd_mode,
422 .num_modes = 1,
423 .regs = &e740_lcd_regs,
424 .gpio = &e740_w100_gpio_info,
425 .xtal_freq = 14318000,
426 .xtal_dbl = 1,
427};
428
429static struct resource e740_fb_resources[] = {
430 [0] = {
431 .start = 0x0c000000,
432 .end = 0x0cffffff,
433 .flags = IORESOURCE_MEM,
434 },
435};
436
437static struct platform_device e740_fb_device = {
438 .name = "w100fb",
439 .id = -1,
440 .dev = {
441 .platform_data = &e740_fb_info,
442 },
443 .num_resources = ARRAY_SIZE(e740_fb_resources),
444 .resource = e740_fb_resources,
445};
446
447/* --------------------------- MFP Pin config -------------------------- */
448
449static unsigned long e740_pin_config[] __initdata = {
450 /* Chip selects */
451 GPIO15_nCS_1, /* CS1 - Flash */
452 GPIO79_nCS_3, /* CS3 - IMAGEON */
453 GPIO80_nCS_4, /* CS4 - TMIO */
454
455 /* Clocks */
456 GPIO12_32KHz,
457
458 /* BTUART */
459 GPIO42_BTUART_RXD,
460 GPIO43_BTUART_TXD,
461 GPIO44_BTUART_CTS,
462
463 /* TMIO controller */
464 GPIO19_GPIO, /* t7l66xb #PCLR */
465 GPIO45_GPIO, /* t7l66xb #SUSPEND (NOT BTUART!) */
466
467 /* UDC */
468 GPIO13_GPIO,
469 GPIO3_GPIO,
470
471 /* IrDA */
472 GPIO38_GPIO | MFP_LPM_DRIVE_HIGH,
473
474 /* AC97 */
475 GPIO28_AC97_BITCLK,
476 GPIO29_AC97_SDATA_IN_0,
477 GPIO30_AC97_SDATA_OUT,
478 GPIO31_AC97_SYNC,
479
480 /* Audio power control */
481 GPIO16_GPIO, /* AC97 codec AVDD2 supply (analogue power) */
482 GPIO40_GPIO, /* Mic amp power */
483 GPIO41_GPIO, /* Headphone amp power */
484
485 /* PC Card */
486 GPIO8_GPIO, /* CD0 */
487 GPIO44_GPIO, /* CD1 */
488 GPIO11_GPIO, /* IRQ0 */
489 GPIO6_GPIO, /* IRQ1 */
490 GPIO27_GPIO, /* RST0 */
491 GPIO24_GPIO, /* RST1 */
492 GPIO20_GPIO, /* PWR0 */
493 GPIO23_GPIO, /* PWR1 */
494 GPIO48_nPOE,
495 GPIO49_nPWE,
496 GPIO50_nPIOR,
497 GPIO51_nPIOW,
498 GPIO52_nPCE_1,
499 GPIO53_nPCE_2,
500 GPIO54_nPSKTSEL,
501 GPIO55_nPREG,
502 GPIO56_nPWAIT,
503 GPIO57_nIOIS16,
504
505 /* wakeup */
506 GPIO0_GPIO | WAKEUP_ON_EDGE_RISE,
507};
508
509/* -------------------- e740 t7l66xb parameters -------------------- */
510
511static struct t7l66xb_platform_data e740_t7l66xb_info = {
512 .irq_base = IRQ_BOARD_START,
513 .enable = &eseries_tmio_enable,
514 .suspend = &eseries_tmio_suspend,
515 .resume = &eseries_tmio_resume,
516};
517
518static struct platform_device e740_t7l66xb_device = {
519 .name = "t7l66xb",
520 .id = -1,
521 .dev = {
522 .platform_data = &e740_t7l66xb_info,
523 },
524 .num_resources = 2,
525 .resource = eseries_tmio_resources,
526};
527
Axel Lin62133822011-12-15 10:52:42 +0800528static struct platform_device e740_audio_device = {
529 .name = "e740-audio",
530 .id = -1,
531};
532
Eric Miaoe478fe42010-06-20 20:35:32 +0800533/* ----------------------------------------------------------------------- */
534
535static struct platform_device *e740_devices[] __initdata = {
536 &e740_fb_device,
537 &e740_t7l66xb_device,
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +0300538 &e7xx_gpio_vbus,
Axel Lin62133822011-12-15 10:52:42 +0800539 &e740_audio_device,
Eric Miaoe478fe42010-06-20 20:35:32 +0800540};
541
542static void __init e740_init(void)
543{
544 pxa2xx_mfp_config(ARRAY_AND_SIZE(e740_pin_config));
545 pxa_set_ffuart_info(NULL);
546 pxa_set_btuart_info(NULL);
547 pxa_set_stuart_info(NULL);
548 eseries_register_clks();
549 clk_add_alias("CLK_CK48M", e740_t7l66xb_device.name,
550 "UDCCLK", &pxa25x_device_udc.dev),
551 eseries_get_tmio_gpios();
552 platform_add_devices(ARRAY_AND_SIZE(e740_devices));
Eric Miaoe478fe42010-06-20 20:35:32 +0800553 pxa_set_ac97_info(NULL);
554 pxa_set_ficp_info(&e7xx_ficp_platform_data);
555}
556
557MACHINE_START(E740, "Toshiba e740")
558 /* Maintainer: Ian Molton (spyro@f2s.com) */
Nicolas Pitre7375aba2011-07-05 22:38:15 -0400559 .atag_offset = 0x100,
Marek Vasut851982c2010-10-11 02:20:19 +0200560 .map_io = pxa25x_map_io,
Haojian Zhuang6ac6b812010-08-20 15:23:59 +0800561 .nr_irqs = ESERIES_NR_IRQS,
Eric Miaoe478fe42010-06-20 20:35:32 +0800562 .init_irq = pxa25x_init_irq,
Eric Miao8a97ae22011-05-18 21:30:04 +0800563 .handle_irq = pxa25x_handle_irq,
Eric Miaoe478fe42010-06-20 20:35:32 +0800564 .fixup = eseries_fixup,
565 .init_machine = e740_init,
566 .timer = &pxa_timer,
567MACHINE_END
568#endif
569
570#ifdef CONFIG_MACH_E750
571/* ---------------------- E750 LCD definitions -------------------- */
572
573static struct w100_gen_regs e750_lcd_regs = {
574 .lcd_format = 0x00008003,
575 .lcdd_cntl1 = 0x00000000,
576 .lcdd_cntl2 = 0x0003ffff,
577 .genlcd_cntl1 = 0x00fff003,
578 .genlcd_cntl2 = 0x003c0f03,
579 .genlcd_cntl3 = 0x000143aa,
580};
581
582static struct w100_mode e750_lcd_mode = {
583 .xres = 240,
584 .yres = 320,
585 .left_margin = 21,
586 .right_margin = 22,
587 .upper_margin = 5,
588 .lower_margin = 4,
589 .crtc_ss = 0x80150014,
590 .crtc_ls = 0x8014000d,
591 .crtc_gs = 0xc1000005,
592 .crtc_vpos_gs = 0x00020147,
593 .crtc_rev = 0x0040010a,
594 .crtc_dclk = 0xa1700030,
595 .crtc_gclk = 0x80cc0015,
596 .crtc_goe = 0x80cc0015,
597 .crtc_ps1_active = 0x61060017,
598 .pll_freq = 57,
599 .pixclk_divider = 4,
600 .pixclk_divider_rotated = 4,
601 .pixclk_src = CLK_SRC_XTAL,
602 .sysclk_divider = 1,
603 .sysclk_src = CLK_SRC_PLL,
604};
605
606static struct w100_gpio_regs e750_w100_gpio_info = {
607 .init_data1 = 0x01192f1b,
608 .gpio_dir1 = 0xd5ffdeff,
609 .gpio_oe1 = 0x000020bf,
610 .init_data2 = 0x010f010f,
611 .gpio_dir2 = 0xffffffff,
612 .gpio_oe2 = 0x000001cf,
613};
614
615static struct w100fb_mach_info e750_fb_info = {
616 .modelist = &e750_lcd_mode,
617 .num_modes = 1,
618 .regs = &e750_lcd_regs,
619 .gpio = &e750_w100_gpio_info,
620 .xtal_freq = 14318000,
621 .xtal_dbl = 1,
622};
623
624static struct resource e750_fb_resources[] = {
625 [0] = {
626 .start = 0x0c000000,
627 .end = 0x0cffffff,
628 .flags = IORESOURCE_MEM,
629 },
630};
631
632static struct platform_device e750_fb_device = {
633 .name = "w100fb",
634 .id = -1,
635 .dev = {
636 .platform_data = &e750_fb_info,
637 },
638 .num_resources = ARRAY_SIZE(e750_fb_resources),
639 .resource = e750_fb_resources,
640};
641
642/* -------------------- e750 MFP parameters -------------------- */
643
644static unsigned long e750_pin_config[] __initdata = {
645 /* Chip selects */
646 GPIO15_nCS_1, /* CS1 - Flash */
647 GPIO79_nCS_3, /* CS3 - IMAGEON */
648 GPIO80_nCS_4, /* CS4 - TMIO */
649
650 /* Clocks */
651 GPIO11_3_6MHz,
652
653 /* BTUART */
654 GPIO42_BTUART_RXD,
655 GPIO43_BTUART_TXD,
656 GPIO44_BTUART_CTS,
657
658 /* TMIO controller */
659 GPIO19_GPIO, /* t7l66xb #PCLR */
660 GPIO45_GPIO, /* t7l66xb #SUSPEND (NOT BTUART!) */
661
662 /* UDC */
663 GPIO13_GPIO,
664 GPIO3_GPIO,
665
666 /* IrDA */
667 GPIO38_GPIO | MFP_LPM_DRIVE_HIGH,
668
669 /* AC97 */
670 GPIO28_AC97_BITCLK,
671 GPIO29_AC97_SDATA_IN_0,
672 GPIO30_AC97_SDATA_OUT,
673 GPIO31_AC97_SYNC,
674
675 /* Audio power control */
676 GPIO4_GPIO, /* Headphone amp power */
677 GPIO7_GPIO, /* Speaker amp power */
678 GPIO37_GPIO, /* Headphone detect */
679
680 /* PC Card */
681 GPIO8_GPIO, /* CD0 */
682 GPIO44_GPIO, /* CD1 */
683 GPIO11_GPIO, /* IRQ0 */
684 GPIO6_GPIO, /* IRQ1 */
685 GPIO27_GPIO, /* RST0 */
686 GPIO24_GPIO, /* RST1 */
687 GPIO20_GPIO, /* PWR0 */
688 GPIO23_GPIO, /* PWR1 */
689 GPIO48_nPOE,
690 GPIO49_nPWE,
691 GPIO50_nPIOR,
692 GPIO51_nPIOW,
693 GPIO52_nPCE_1,
694 GPIO53_nPCE_2,
695 GPIO54_nPSKTSEL,
696 GPIO55_nPREG,
697 GPIO56_nPWAIT,
698 GPIO57_nIOIS16,
699
700 /* wakeup */
701 GPIO0_GPIO | WAKEUP_ON_EDGE_RISE,
702};
703
704/* ----------------- e750 tc6393xb parameters ------------------ */
705
706static struct tc6393xb_platform_data e750_tc6393xb_info = {
707 .irq_base = IRQ_BOARD_START,
708 .scr_pll2cr = 0x0cc1,
709 .scr_gper = 0,
710 .gpio_base = -1,
711 .suspend = &eseries_tmio_suspend,
712 .resume = &eseries_tmio_resume,
713 .enable = &eseries_tmio_enable,
714 .disable = &eseries_tmio_disable,
715};
716
717static struct platform_device e750_tc6393xb_device = {
718 .name = "tc6393xb",
719 .id = -1,
720 .dev = {
721 .platform_data = &e750_tc6393xb_info,
722 },
723 .num_resources = 2,
724 .resource = eseries_tmio_resources,
725};
726
Axel Lin5eb2c3d2011-12-15 10:53:29 +0800727static struct platform_device e750_audio_device = {
728 .name = "e750-audio",
729 .id = -1,
730};
731
Eric Miaoe478fe42010-06-20 20:35:32 +0800732/* ------------------------------------------------------------- */
733
734static struct platform_device *e750_devices[] __initdata = {
735 &e750_fb_device,
736 &e750_tc6393xb_device,
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +0300737 &e7xx_gpio_vbus,
Axel Lin5eb2c3d2011-12-15 10:53:29 +0800738 &e750_audio_device,
Eric Miaoe478fe42010-06-20 20:35:32 +0800739};
740
741static void __init e750_init(void)
742{
743 pxa2xx_mfp_config(ARRAY_AND_SIZE(e750_pin_config));
744 pxa_set_ffuart_info(NULL);
745 pxa_set_btuart_info(NULL);
746 pxa_set_stuart_info(NULL);
747 clk_add_alias("CLK_CK3P6MI", e750_tc6393xb_device.name,
748 "GPIO11_CLK", NULL),
749 eseries_get_tmio_gpios();
750 platform_add_devices(ARRAY_AND_SIZE(e750_devices));
Eric Miaoe478fe42010-06-20 20:35:32 +0800751 pxa_set_ac97_info(NULL);
752 pxa_set_ficp_info(&e7xx_ficp_platform_data);
753}
754
755MACHINE_START(E750, "Toshiba e750")
756 /* Maintainer: Ian Molton (spyro@f2s.com) */
Nicolas Pitre7375aba2011-07-05 22:38:15 -0400757 .atag_offset = 0x100,
Marek Vasut851982c2010-10-11 02:20:19 +0200758 .map_io = pxa25x_map_io,
Haojian Zhuang6ac6b812010-08-20 15:23:59 +0800759 .nr_irqs = ESERIES_NR_IRQS,
Eric Miaoe478fe42010-06-20 20:35:32 +0800760 .init_irq = pxa25x_init_irq,
Eric Miao8a97ae22011-05-18 21:30:04 +0800761 .handle_irq = pxa25x_handle_irq,
Eric Miaoe478fe42010-06-20 20:35:32 +0800762 .fixup = eseries_fixup,
763 .init_machine = e750_init,
764 .timer = &pxa_timer,
765MACHINE_END
766#endif
767
768#ifdef CONFIG_MACH_E800
769/* ------------------------ e800 LCD definitions ------------------------- */
770
771static unsigned long e800_pin_config[] __initdata = {
772 /* AC97 */
773 GPIO28_AC97_BITCLK,
774 GPIO29_AC97_SDATA_IN_0,
775 GPIO30_AC97_SDATA_OUT,
776 GPIO31_AC97_SYNC,
777};
778
779static struct w100_gen_regs e800_lcd_regs = {
780 .lcd_format = 0x00008003,
781 .lcdd_cntl1 = 0x02a00000,
782 .lcdd_cntl2 = 0x0003ffff,
783 .genlcd_cntl1 = 0x000ff2a3,
784 .genlcd_cntl2 = 0x000002a3,
785 .genlcd_cntl3 = 0x000102aa,
786};
787
788static struct w100_mode e800_lcd_mode[2] = {
789 [0] = {
790 .xres = 480,
791 .yres = 640,
792 .left_margin = 52,
793 .right_margin = 148,
794 .upper_margin = 2,
795 .lower_margin = 6,
796 .crtc_ss = 0x80350034,
797 .crtc_ls = 0x802b0026,
798 .crtc_gs = 0x80160016,
799 .crtc_vpos_gs = 0x00020003,
800 .crtc_rev = 0x0040001d,
801 .crtc_dclk = 0xe0000000,
802 .crtc_gclk = 0x82a50049,
803 .crtc_goe = 0x80ee001c,
804 .crtc_ps1_active = 0x00000000,
805 .pll_freq = 128,
806 .pixclk_divider = 4,
807 .pixclk_divider_rotated = 6,
808 .pixclk_src = CLK_SRC_PLL,
809 .sysclk_divider = 0,
810 .sysclk_src = CLK_SRC_PLL,
811 },
812 [1] = {
813 .xres = 240,
814 .yres = 320,
815 .left_margin = 15,
816 .right_margin = 88,
817 .upper_margin = 0,
818 .lower_margin = 7,
819 .crtc_ss = 0xd010000f,
820 .crtc_ls = 0x80070003,
821 .crtc_gs = 0x80000000,
822 .crtc_vpos_gs = 0x01460147,
823 .crtc_rev = 0x00400003,
824 .crtc_dclk = 0xa1700030,
825 .crtc_gclk = 0x814b0008,
826 .crtc_goe = 0x80cc0015,
827 .crtc_ps1_active = 0x00000000,
828 .pll_freq = 100,
829 .pixclk_divider = 6, /* Wince uses 14 which gives a */
830 .pixclk_divider_rotated = 6, /* 7MHz Pclk. We use a 14MHz one */
831 .pixclk_src = CLK_SRC_PLL,
832 .sysclk_divider = 0,
833 .sysclk_src = CLK_SRC_PLL,
834 }
835};
836
837
838static struct w100_gpio_regs e800_w100_gpio_info = {
839 .init_data1 = 0xc13fc019,
840 .gpio_dir1 = 0x3e40df7f,
841 .gpio_oe1 = 0x003c3000,
842 .init_data2 = 0x00000000,
843 .gpio_dir2 = 0x00000000,
844 .gpio_oe2 = 0x00000000,
845};
846
847static struct w100_mem_info e800_w100_mem_info = {
848 .ext_cntl = 0x09640011,
849 .sdram_mode_reg = 0x00600021,
850 .ext_timing_cntl = 0x10001545,
851 .io_cntl = 0x7ddd7333,
852 .size = 0x1fffff,
853};
854
855static void e800_tg_change(struct w100fb_par *par)
856{
857 unsigned long tmp;
858
859 tmp = w100fb_gpio_read(W100_GPIO_PORT_A);
860 if (par->mode->xres == 480)
861 tmp |= 0x100;
862 else
863 tmp &= ~0x100;
864 w100fb_gpio_write(W100_GPIO_PORT_A, tmp);
865}
866
867static struct w100_tg_info e800_tg_info = {
868 .change = e800_tg_change,
869};
870
871static struct w100fb_mach_info e800_fb_info = {
872 .modelist = e800_lcd_mode,
873 .num_modes = 2,
874 .regs = &e800_lcd_regs,
875 .gpio = &e800_w100_gpio_info,
876 .mem = &e800_w100_mem_info,
877 .tg = &e800_tg_info,
878 .xtal_freq = 16000000,
879};
880
881static struct resource e800_fb_resources[] = {
882 [0] = {
883 .start = 0x0c000000,
884 .end = 0x0cffffff,
885 .flags = IORESOURCE_MEM,
886 },
887};
888
889static struct platform_device e800_fb_device = {
890 .name = "w100fb",
891 .id = -1,
892 .dev = {
893 .platform_data = &e800_fb_info,
894 },
895 .num_resources = ARRAY_SIZE(e800_fb_resources),
896 .resource = e800_fb_resources,
897};
898
899/* --------------------------- UDC definitions --------------------------- */
900
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +0300901static struct gpio_vbus_mach_info e800_udc_info = {
Eric Miaoe478fe42010-06-20 20:35:32 +0800902 .gpio_vbus = GPIO_E800_USB_DISC,
903 .gpio_pullup = GPIO_E800_USB_PULLUP,
904 .gpio_pullup_inverted = 1
905};
906
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +0300907static struct platform_device e800_gpio_vbus = {
908 .name = "gpio-vbus",
909 .id = -1,
910 .dev = {
911 .platform_data = &e800_udc_info,
912 },
913};
914
915
Eric Miaoe478fe42010-06-20 20:35:32 +0800916/* ----------------- e800 tc6393xb parameters ------------------ */
917
918static struct tc6393xb_platform_data e800_tc6393xb_info = {
919 .irq_base = IRQ_BOARD_START,
920 .scr_pll2cr = 0x0cc1,
921 .scr_gper = 0,
922 .gpio_base = -1,
923 .suspend = &eseries_tmio_suspend,
924 .resume = &eseries_tmio_resume,
925 .enable = &eseries_tmio_enable,
926 .disable = &eseries_tmio_disable,
927};
928
929static struct platform_device e800_tc6393xb_device = {
930 .name = "tc6393xb",
931 .id = -1,
932 .dev = {
933 .platform_data = &e800_tc6393xb_info,
934 },
935 .num_resources = 2,
936 .resource = eseries_tmio_resources,
937};
938
939/* ----------------------------------------------------------------------- */
940
941static struct platform_device *e800_devices[] __initdata = {
942 &e800_fb_device,
943 &e800_tc6393xb_device,
Dmitry Eremin-Solenikov133dce02011-02-14 15:33:16 +0300944 &e800_gpio_vbus,
Eric Miaoe478fe42010-06-20 20:35:32 +0800945};
946
947static void __init e800_init(void)
948{
949 pxa2xx_mfp_config(ARRAY_AND_SIZE(e800_pin_config));
950 pxa_set_ffuart_info(NULL);
951 pxa_set_btuart_info(NULL);
952 pxa_set_stuart_info(NULL);
953 clk_add_alias("CLK_CK3P6MI", e800_tc6393xb_device.name,
954 "GPIO11_CLK", NULL),
955 eseries_get_tmio_gpios();
956 platform_add_devices(ARRAY_AND_SIZE(e800_devices));
Eric Miaoe478fe42010-06-20 20:35:32 +0800957 pxa_set_ac97_info(NULL);
958}
959
960MACHINE_START(E800, "Toshiba e800")
961 /* Maintainer: Ian Molton (spyro@f2s.com) */
Nicolas Pitre7375aba2011-07-05 22:38:15 -0400962 .atag_offset = 0x100,
Marek Vasut851982c2010-10-11 02:20:19 +0200963 .map_io = pxa25x_map_io,
Haojian Zhuang6ac6b812010-08-20 15:23:59 +0800964 .nr_irqs = ESERIES_NR_IRQS,
Eric Miaoe478fe42010-06-20 20:35:32 +0800965 .init_irq = pxa25x_init_irq,
Eric Miao8a97ae22011-05-18 21:30:04 +0800966 .handle_irq = pxa25x_handle_irq,
Eric Miaoe478fe42010-06-20 20:35:32 +0800967 .fixup = eseries_fixup,
968 .init_machine = e800_init,
969 .timer = &pxa_timer,
970MACHINE_END
971#endif