Merge branch 'staging-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh...
[linux-drm-fsl-dcu.git] / arch / arm / mach-pxa / eseries.c
1 /*
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
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/gpio.h>
16 #include <linux/delay.h>
17 #include <linux/platform_device.h>
18 #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>
23 #include <linux/usb/gpio_vbus.h>
24
25 #include <video/w100fb.h>
26
27 #include <asm/setup.h>
28 #include <asm/mach/arch.h>
29 #include <asm/mach-types.h>
30
31 #include <mach/pxa25x.h>
32 #include <mach/eseries-gpio.h>
33 #include <mach/eseries-irq.h>
34 #include <mach/audio.h>
35 #include <mach/pxafb.h>
36 #include <mach/udc.h>
37 #include <mach/irda.h>
38
39 #include "devices.h"
40 #include "generic.h"
41 #include "clock.h"
42
43 /* Only e800 has 128MB RAM */
44 void __init eseries_fixup(struct tag *tags, char **cmdline, struct meminfo *mi)
45 {
46         mi->nr_banks=1;
47         mi->bank[0].start = 0xa0000000;
48         if (machine_is_e800())
49                 mi->bank[0].size = (128*1024*1024);
50         else
51                 mi->bank[0].size = (64*1024*1024);
52 }
53
54 struct gpio_vbus_mach_info e7xx_udc_info = {
55         .gpio_vbus   = GPIO_E7XX_USB_DISC,
56         .gpio_pullup = GPIO_E7XX_USB_PULLUP,
57         .gpio_pullup_inverted = 1
58 };
59
60 static struct platform_device e7xx_gpio_vbus = {
61         .name   = "gpio-vbus",
62         .id     = -1,
63         .dev    = {
64                 .platform_data  = &e7xx_udc_info,
65         },
66 };
67
68 struct pxaficp_platform_data e7xx_ficp_platform_data = {
69         .gpio_pwdown            = GPIO_E7XX_IR_OFF,
70         .transceiver_cap        = IR_SIRMODE | IR_OFF,
71 };
72
73 int 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
86 int 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
93 int eseries_tmio_suspend(struct platform_device *dev)
94 {
95         gpio_set_value(GPIO_ESERIES_TMIO_SUSPEND, 0);
96         return 0;
97 }
98
99 int 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
106 void 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. */
115 struct 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 */
129 static void clk_32k_dummy(struct clk *clk)
130 {
131 }
132
133 static const struct clkops clk_32k_dummy_ops = {
134         .enable         = clk_32k_dummy,
135         .disable        = clk_32k_dummy,
136 };
137
138 static struct clk tmio_dummy_clk = {
139         .ops    = &clk_32k_dummy_ops,
140         .rate   = 32768,
141 };
142
143 static struct clk_lookup eseries_clkregs[] = {
144         INIT_CLKREG(&tmio_dummy_clk, NULL, "CLK_CK32K"),
145 };
146
147 static void __init eseries_register_clks(void)
148 {
149         clkdev_add_table(eseries_clkregs, ARRAY_SIZE(eseries_clkregs));
150 }
151
152 #ifdef CONFIG_MACH_E330
153 /* -------------------- e330 tc6387xb parameters -------------------- */
154
155 static 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
162 static 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
174 static struct platform_device *e330_devices[] __initdata = {
175         &e330_tc6387xb_device,
176         &e7xx_gpio_vbus,
177 };
178
179 static 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));
187 }
188
189 MACHINE_START(E330, "Toshiba e330")
190         /* Maintainer: Ian Molton (spyro@f2s.com) */
191         .atag_offset    = 0x100,
192         .map_io         = pxa25x_map_io,
193         .nr_irqs        = ESERIES_NR_IRQS,
194         .init_irq       = pxa25x_init_irq,
195         .handle_irq     = pxa25x_handle_irq,
196         .fixup          = eseries_fixup,
197         .init_machine   = e330_init,
198         .timer          = &pxa_timer,
199         .restart        = pxa_restart,
200 MACHINE_END
201 #endif
202
203 #ifdef CONFIG_MACH_E350
204 /* -------------------- e350 t7l66xb parameters -------------------- */
205
206 static struct t7l66xb_platform_data e350_t7l66xb_info = {
207         .irq_base               = IRQ_BOARD_START,
208         .enable                 = &eseries_tmio_enable,
209         .suspend                = &eseries_tmio_suspend,
210         .resume                 = &eseries_tmio_resume,
211 };
212
213 static struct platform_device e350_t7l66xb_device = {
214         .name           = "t7l66xb",
215         .id             = -1,
216         .dev            = {
217                 .platform_data = &e350_t7l66xb_info,
218         },
219         .num_resources = 2,
220         .resource      = eseries_tmio_resources,
221 };
222
223 /* ---------------------------------------------------------- */
224
225 static struct platform_device *e350_devices[] __initdata = {
226         &e350_t7l66xb_device,
227         &e7xx_gpio_vbus,
228 };
229
230 static void __init e350_init(void)
231 {
232         pxa_set_ffuart_info(NULL);
233         pxa_set_btuart_info(NULL);
234         pxa_set_stuart_info(NULL);
235         eseries_register_clks();
236         eseries_get_tmio_gpios();
237         platform_add_devices(ARRAY_AND_SIZE(e350_devices));
238 }
239
240 MACHINE_START(E350, "Toshiba e350")
241         /* Maintainer: Ian Molton (spyro@f2s.com) */
242         .atag_offset    = 0x100,
243         .map_io         = pxa25x_map_io,
244         .nr_irqs        = ESERIES_NR_IRQS,
245         .init_irq       = pxa25x_init_irq,
246         .handle_irq     = pxa25x_handle_irq,
247         .fixup          = eseries_fixup,
248         .init_machine   = e350_init,
249         .timer          = &pxa_timer,
250         .restart        = pxa_restart,
251 MACHINE_END
252 #endif
253
254 #ifdef CONFIG_MACH_E400
255 /* ------------------------ E400 LCD definitions ------------------------ */
256
257 static struct pxafb_mode_info e400_pxafb_mode_info = {
258         .pixclock       = 140703,
259         .xres           = 240,
260         .yres           = 320,
261         .bpp            = 16,
262         .hsync_len      = 4,
263         .left_margin    = 28,
264         .right_margin   = 8,
265         .vsync_len      = 3,
266         .upper_margin   = 5,
267         .lower_margin   = 6,
268         .sync           = 0,
269 };
270
271 static struct pxafb_mach_info e400_pxafb_mach_info = {
272         .modes          = &e400_pxafb_mode_info,
273         .num_modes      = 1,
274         .lcd_conn       = LCD_COLOR_TFT_16BPP,
275         .lccr3          = 0,
276         .pxafb_backlight_power  = NULL,
277 };
278
279 /* ------------------------ E400 MFP config ----------------------------- */
280
281 static unsigned long e400_pin_config[] __initdata = {
282         /* Chip selects */
283         GPIO15_nCS_1,   /* CS1 - Flash */
284         GPIO80_nCS_4,   /* CS4 - TMIO */
285
286         /* Clocks */
287         GPIO12_32KHz,
288
289         /* BTUART */
290         GPIO42_BTUART_RXD,
291         GPIO43_BTUART_TXD,
292         GPIO44_BTUART_CTS,
293
294         /* TMIO controller */
295         GPIO19_GPIO, /* t7l66xb #PCLR */
296         GPIO45_GPIO, /* t7l66xb #SUSPEND (NOT BTUART!) */
297
298         /* wakeup */
299         GPIO0_GPIO | WAKEUP_ON_EDGE_RISE,
300 };
301
302 /* ---------------------------------------------------------------------- */
303
304 static struct mtd_partition partition_a = {
305         .name = "Internal NAND flash",
306         .offset =  0,
307         .size =  MTDPART_SIZ_FULL,
308 };
309
310 static uint8_t scan_ff_pattern[] = { 0xff, 0xff };
311
312 static struct nand_bbt_descr e400_t7l66xb_nand_bbt = {
313         .options = 0,
314         .offs = 4,
315         .len = 2,
316         .pattern = scan_ff_pattern
317 };
318
319 static struct tmio_nand_data e400_t7l66xb_nand_config = {
320         .num_partitions = 1,
321         .partition = &partition_a,
322         .badblock_pattern = &e400_t7l66xb_nand_bbt,
323 };
324
325 static struct t7l66xb_platform_data e400_t7l66xb_info = {
326         .irq_base               = IRQ_BOARD_START,
327         .enable                 = &eseries_tmio_enable,
328         .suspend                = &eseries_tmio_suspend,
329         .resume                 = &eseries_tmio_resume,
330
331         .nand_data              = &e400_t7l66xb_nand_config,
332 };
333
334 static struct platform_device e400_t7l66xb_device = {
335         .name           = "t7l66xb",
336         .id             = -1,
337         .dev            = {
338                 .platform_data = &e400_t7l66xb_info,
339         },
340         .num_resources = 2,
341         .resource      = eseries_tmio_resources,
342 };
343
344 /* ---------------------------------------------------------- */
345
346 static struct platform_device *e400_devices[] __initdata = {
347         &e400_t7l66xb_device,
348         &e7xx_gpio_vbus,
349 };
350
351 static void __init e400_init(void)
352 {
353         pxa2xx_mfp_config(ARRAY_AND_SIZE(e400_pin_config));
354         pxa_set_ffuart_info(NULL);
355         pxa_set_btuart_info(NULL);
356         pxa_set_stuart_info(NULL);
357         /* Fixme - e400 may have a switched clock */
358         eseries_register_clks();
359         eseries_get_tmio_gpios();
360         pxa_set_fb_info(NULL, &e400_pxafb_mach_info);
361         platform_add_devices(ARRAY_AND_SIZE(e400_devices));
362 }
363
364 MACHINE_START(E400, "Toshiba e400")
365         /* Maintainer: Ian Molton (spyro@f2s.com) */
366         .atag_offset    = 0x100,
367         .map_io         = pxa25x_map_io,
368         .nr_irqs        = ESERIES_NR_IRQS,
369         .init_irq       = pxa25x_init_irq,
370         .handle_irq     = pxa25x_handle_irq,
371         .fixup          = eseries_fixup,
372         .init_machine   = e400_init,
373         .timer          = &pxa_timer,
374         .restart        = pxa_restart,
375 MACHINE_END
376 #endif
377
378 #ifdef CONFIG_MACH_E740
379 /* ------------------------ e740 video support --------------------------- */
380
381 static struct w100_gen_regs e740_lcd_regs = {
382         .lcd_format =            0x00008023,
383         .lcdd_cntl1 =            0x0f000000,
384         .lcdd_cntl2 =            0x0003ffff,
385         .genlcd_cntl1 =          0x00ffff03,
386         .genlcd_cntl2 =          0x003c0f03,
387         .genlcd_cntl3 =          0x000143aa,
388 };
389
390 static struct w100_mode e740_lcd_mode = {
391         .xres            = 240,
392         .yres            = 320,
393         .left_margin     = 20,
394         .right_margin    = 28,
395         .upper_margin    = 9,
396         .lower_margin    = 8,
397         .crtc_ss         = 0x80140013,
398         .crtc_ls         = 0x81150110,
399         .crtc_gs         = 0x80050005,
400         .crtc_vpos_gs    = 0x000a0009,
401         .crtc_rev        = 0x0040010a,
402         .crtc_dclk       = 0xa906000a,
403         .crtc_gclk       = 0x80050108,
404         .crtc_goe        = 0x80050108,
405         .pll_freq        = 57,
406         .pixclk_divider         = 4,
407         .pixclk_divider_rotated = 4,
408         .pixclk_src     = CLK_SRC_XTAL,
409         .sysclk_divider  = 1,
410         .sysclk_src     = CLK_SRC_PLL,
411         .crtc_ps1_active =       0x41060010,
412 };
413
414 static struct w100_gpio_regs e740_w100_gpio_info = {
415         .init_data1 = 0x21002103,
416         .gpio_dir1  = 0xffffdeff,
417         .gpio_oe1   = 0x03c00643,
418         .init_data2 = 0x003f003f,
419         .gpio_dir2  = 0xffffffff,
420         .gpio_oe2   = 0x000000ff,
421 };
422
423 static struct w100fb_mach_info e740_fb_info = {
424         .modelist   = &e740_lcd_mode,
425         .num_modes  = 1,
426         .regs       = &e740_lcd_regs,
427         .gpio       = &e740_w100_gpio_info,
428         .xtal_freq = 14318000,
429         .xtal_dbl   = 1,
430 };
431
432 static struct resource e740_fb_resources[] = {
433         [0] = {
434                 .start          = 0x0c000000,
435                 .end            = 0x0cffffff,
436                 .flags          = IORESOURCE_MEM,
437         },
438 };
439
440 static struct platform_device e740_fb_device = {
441         .name           = "w100fb",
442         .id             = -1,
443         .dev            = {
444                 .platform_data  = &e740_fb_info,
445         },
446         .num_resources  = ARRAY_SIZE(e740_fb_resources),
447         .resource       = e740_fb_resources,
448 };
449
450 /* --------------------------- MFP Pin config -------------------------- */
451
452 static unsigned long e740_pin_config[] __initdata = {
453         /* Chip selects */
454         GPIO15_nCS_1,   /* CS1 - Flash */
455         GPIO79_nCS_3,   /* CS3 - IMAGEON */
456         GPIO80_nCS_4,   /* CS4 - TMIO */
457
458         /* Clocks */
459         GPIO12_32KHz,
460
461         /* BTUART */
462         GPIO42_BTUART_RXD,
463         GPIO43_BTUART_TXD,
464         GPIO44_BTUART_CTS,
465
466         /* TMIO controller */
467         GPIO19_GPIO, /* t7l66xb #PCLR */
468         GPIO45_GPIO, /* t7l66xb #SUSPEND (NOT BTUART!) */
469
470         /* UDC */
471         GPIO13_GPIO,
472         GPIO3_GPIO,
473
474         /* IrDA */
475         GPIO38_GPIO | MFP_LPM_DRIVE_HIGH,
476
477         /* AC97 */
478         GPIO28_AC97_BITCLK,
479         GPIO29_AC97_SDATA_IN_0,
480         GPIO30_AC97_SDATA_OUT,
481         GPIO31_AC97_SYNC,
482
483         /* Audio power control */
484         GPIO16_GPIO,  /* AC97 codec AVDD2 supply (analogue power) */
485         GPIO40_GPIO,  /* Mic amp power */
486         GPIO41_GPIO,  /* Headphone amp power */
487
488         /* PC Card */
489         GPIO8_GPIO,   /* CD0 */
490         GPIO44_GPIO,  /* CD1 */
491         GPIO11_GPIO,  /* IRQ0 */
492         GPIO6_GPIO,   /* IRQ1 */
493         GPIO27_GPIO,  /* RST0 */
494         GPIO24_GPIO,  /* RST1 */
495         GPIO20_GPIO,  /* PWR0 */
496         GPIO23_GPIO,  /* PWR1 */
497         GPIO48_nPOE,
498         GPIO49_nPWE,
499         GPIO50_nPIOR,
500         GPIO51_nPIOW,
501         GPIO52_nPCE_1,
502         GPIO53_nPCE_2,
503         GPIO54_nPSKTSEL,
504         GPIO55_nPREG,
505         GPIO56_nPWAIT,
506         GPIO57_nIOIS16,
507
508         /* wakeup */
509         GPIO0_GPIO | WAKEUP_ON_EDGE_RISE,
510 };
511
512 /* -------------------- e740 t7l66xb parameters -------------------- */
513
514 static struct t7l66xb_platform_data e740_t7l66xb_info = {
515         .irq_base               = IRQ_BOARD_START,
516         .enable                 = &eseries_tmio_enable,
517         .suspend                = &eseries_tmio_suspend,
518         .resume                 = &eseries_tmio_resume,
519 };
520
521 static struct platform_device e740_t7l66xb_device = {
522         .name           = "t7l66xb",
523         .id             = -1,
524         .dev            = {
525                 .platform_data = &e740_t7l66xb_info,
526         },
527         .num_resources = 2,
528         .resource      = eseries_tmio_resources,
529 };
530
531 /* ----------------------------------------------------------------------- */
532
533 static struct platform_device *e740_devices[] __initdata = {
534         &e740_fb_device,
535         &e740_t7l66xb_device,
536         &e7xx_gpio_vbus,
537 };
538
539 static void __init e740_init(void)
540 {
541         pxa2xx_mfp_config(ARRAY_AND_SIZE(e740_pin_config));
542         pxa_set_ffuart_info(NULL);
543         pxa_set_btuart_info(NULL);
544         pxa_set_stuart_info(NULL);
545         eseries_register_clks();
546         clk_add_alias("CLK_CK48M", e740_t7l66xb_device.name,
547                         "UDCCLK", &pxa25x_device_udc.dev),
548         eseries_get_tmio_gpios();
549         platform_add_devices(ARRAY_AND_SIZE(e740_devices));
550         pxa_set_ac97_info(NULL);
551         pxa_set_ficp_info(&e7xx_ficp_platform_data);
552 }
553
554 MACHINE_START(E740, "Toshiba e740")
555         /* Maintainer: Ian Molton (spyro@f2s.com) */
556         .atag_offset    = 0x100,
557         .map_io         = pxa25x_map_io,
558         .nr_irqs        = ESERIES_NR_IRQS,
559         .init_irq       = pxa25x_init_irq,
560         .handle_irq     = pxa25x_handle_irq,
561         .fixup          = eseries_fixup,
562         .init_machine   = e740_init,
563         .timer          = &pxa_timer,
564         .restart        = pxa_restart,
565 MACHINE_END
566 #endif
567
568 #ifdef CONFIG_MACH_E750
569 /* ---------------------- E750 LCD definitions -------------------- */
570
571 static struct w100_gen_regs e750_lcd_regs = {
572         .lcd_format =            0x00008003,
573         .lcdd_cntl1 =            0x00000000,
574         .lcdd_cntl2 =            0x0003ffff,
575         .genlcd_cntl1 =          0x00fff003,
576         .genlcd_cntl2 =          0x003c0f03,
577         .genlcd_cntl3 =          0x000143aa,
578 };
579
580 static struct w100_mode e750_lcd_mode = {
581         .xres            = 240,
582         .yres            = 320,
583         .left_margin     = 21,
584         .right_margin    = 22,
585         .upper_margin    = 5,
586         .lower_margin    = 4,
587         .crtc_ss         = 0x80150014,
588         .crtc_ls         = 0x8014000d,
589         .crtc_gs         = 0xc1000005,
590         .crtc_vpos_gs    = 0x00020147,
591         .crtc_rev        = 0x0040010a,
592         .crtc_dclk       = 0xa1700030,
593         .crtc_gclk       = 0x80cc0015,
594         .crtc_goe        = 0x80cc0015,
595         .crtc_ps1_active = 0x61060017,
596         .pll_freq        = 57,
597         .pixclk_divider         = 4,
598         .pixclk_divider_rotated = 4,
599         .pixclk_src     = CLK_SRC_XTAL,
600         .sysclk_divider  = 1,
601         .sysclk_src     = CLK_SRC_PLL,
602 };
603
604 static struct w100_gpio_regs e750_w100_gpio_info = {
605         .init_data1 = 0x01192f1b,
606         .gpio_dir1  = 0xd5ffdeff,
607         .gpio_oe1   = 0x000020bf,
608         .init_data2 = 0x010f010f,
609         .gpio_dir2  = 0xffffffff,
610         .gpio_oe2   = 0x000001cf,
611 };
612
613 static struct w100fb_mach_info e750_fb_info = {
614         .modelist   = &e750_lcd_mode,
615         .num_modes  = 1,
616         .regs       = &e750_lcd_regs,
617         .gpio       = &e750_w100_gpio_info,
618         .xtal_freq  = 14318000,
619         .xtal_dbl   = 1,
620 };
621
622 static struct resource e750_fb_resources[] = {
623         [0] = {
624                 .start          = 0x0c000000,
625                 .end            = 0x0cffffff,
626                 .flags          = IORESOURCE_MEM,
627         },
628 };
629
630 static struct platform_device e750_fb_device = {
631         .name           = "w100fb",
632         .id             = -1,
633         .dev            = {
634                 .platform_data  = &e750_fb_info,
635         },
636         .num_resources  = ARRAY_SIZE(e750_fb_resources),
637         .resource       = e750_fb_resources,
638 };
639
640 /* -------------------- e750 MFP parameters -------------------- */
641
642 static unsigned long e750_pin_config[] __initdata = {
643         /* Chip selects */
644         GPIO15_nCS_1,   /* CS1 - Flash */
645         GPIO79_nCS_3,   /* CS3 - IMAGEON */
646         GPIO80_nCS_4,   /* CS4 - TMIO */
647
648         /* Clocks */
649         GPIO11_3_6MHz,
650
651         /* BTUART */
652         GPIO42_BTUART_RXD,
653         GPIO43_BTUART_TXD,
654         GPIO44_BTUART_CTS,
655
656         /* TMIO controller */
657         GPIO19_GPIO, /* t7l66xb #PCLR */
658         GPIO45_GPIO, /* t7l66xb #SUSPEND (NOT BTUART!) */
659
660         /* UDC */
661         GPIO13_GPIO,
662         GPIO3_GPIO,
663
664         /* IrDA */
665         GPIO38_GPIO | MFP_LPM_DRIVE_HIGH,
666
667         /* AC97 */
668         GPIO28_AC97_BITCLK,
669         GPIO29_AC97_SDATA_IN_0,
670         GPIO30_AC97_SDATA_OUT,
671         GPIO31_AC97_SYNC,
672
673         /* Audio power control */
674         GPIO4_GPIO,  /* Headphone amp power */
675         GPIO7_GPIO,  /* Speaker amp power */
676         GPIO37_GPIO, /* Headphone detect */
677
678         /* PC Card */
679         GPIO8_GPIO,   /* CD0 */
680         GPIO44_GPIO,  /* CD1 */
681         GPIO11_GPIO,  /* IRQ0 */
682         GPIO6_GPIO,   /* IRQ1 */
683         GPIO27_GPIO,  /* RST0 */
684         GPIO24_GPIO,  /* RST1 */
685         GPIO20_GPIO,  /* PWR0 */
686         GPIO23_GPIO,  /* PWR1 */
687         GPIO48_nPOE,
688         GPIO49_nPWE,
689         GPIO50_nPIOR,
690         GPIO51_nPIOW,
691         GPIO52_nPCE_1,
692         GPIO53_nPCE_2,
693         GPIO54_nPSKTSEL,
694         GPIO55_nPREG,
695         GPIO56_nPWAIT,
696         GPIO57_nIOIS16,
697
698         /* wakeup */
699         GPIO0_GPIO | WAKEUP_ON_EDGE_RISE,
700 };
701
702 /* ----------------- e750 tc6393xb parameters ------------------ */
703
704 static struct tc6393xb_platform_data e750_tc6393xb_info = {
705         .irq_base       = IRQ_BOARD_START,
706         .scr_pll2cr     = 0x0cc1,
707         .scr_gper       = 0,
708         .gpio_base      = -1,
709         .suspend        = &eseries_tmio_suspend,
710         .resume         = &eseries_tmio_resume,
711         .enable         = &eseries_tmio_enable,
712         .disable        = &eseries_tmio_disable,
713 };
714
715 static struct platform_device e750_tc6393xb_device = {
716         .name           = "tc6393xb",
717         .id             = -1,
718         .dev            = {
719                 .platform_data = &e750_tc6393xb_info,
720         },
721         .num_resources = 2,
722         .resource      = eseries_tmio_resources,
723 };
724
725 /* ------------------------------------------------------------- */
726
727 static struct platform_device *e750_devices[] __initdata = {
728         &e750_fb_device,
729         &e750_tc6393xb_device,
730         &e7xx_gpio_vbus,
731 };
732
733 static void __init e750_init(void)
734 {
735         pxa2xx_mfp_config(ARRAY_AND_SIZE(e750_pin_config));
736         pxa_set_ffuart_info(NULL);
737         pxa_set_btuart_info(NULL);
738         pxa_set_stuart_info(NULL);
739         clk_add_alias("CLK_CK3P6MI", e750_tc6393xb_device.name,
740                         "GPIO11_CLK", NULL),
741         eseries_get_tmio_gpios();
742         platform_add_devices(ARRAY_AND_SIZE(e750_devices));
743         pxa_set_ac97_info(NULL);
744         pxa_set_ficp_info(&e7xx_ficp_platform_data);
745 }
746
747 MACHINE_START(E750, "Toshiba e750")
748         /* Maintainer: Ian Molton (spyro@f2s.com) */
749         .atag_offset    = 0x100,
750         .map_io         = pxa25x_map_io,
751         .nr_irqs        = ESERIES_NR_IRQS,
752         .init_irq       = pxa25x_init_irq,
753         .handle_irq     = pxa25x_handle_irq,
754         .fixup          = eseries_fixup,
755         .init_machine   = e750_init,
756         .timer          = &pxa_timer,
757         .restart        = pxa_restart,
758 MACHINE_END
759 #endif
760
761 #ifdef CONFIG_MACH_E800
762 /* ------------------------ e800 LCD definitions ------------------------- */
763
764 static unsigned long e800_pin_config[] __initdata = {
765         /* AC97 */
766         GPIO28_AC97_BITCLK,
767         GPIO29_AC97_SDATA_IN_0,
768         GPIO30_AC97_SDATA_OUT,
769         GPIO31_AC97_SYNC,
770 };
771
772 static struct w100_gen_regs e800_lcd_regs = {
773         .lcd_format =            0x00008003,
774         .lcdd_cntl1 =            0x02a00000,
775         .lcdd_cntl2 =            0x0003ffff,
776         .genlcd_cntl1 =          0x000ff2a3,
777         .genlcd_cntl2 =          0x000002a3,
778         .genlcd_cntl3 =          0x000102aa,
779 };
780
781 static struct w100_mode e800_lcd_mode[2] = {
782         [0] = {
783                 .xres            = 480,
784                 .yres            = 640,
785                 .left_margin     = 52,
786                 .right_margin    = 148,
787                 .upper_margin    = 2,
788                 .lower_margin    = 6,
789                 .crtc_ss         = 0x80350034,
790                 .crtc_ls         = 0x802b0026,
791                 .crtc_gs         = 0x80160016,
792                 .crtc_vpos_gs    = 0x00020003,
793                 .crtc_rev        = 0x0040001d,
794                 .crtc_dclk       = 0xe0000000,
795                 .crtc_gclk       = 0x82a50049,
796                 .crtc_goe        = 0x80ee001c,
797                 .crtc_ps1_active = 0x00000000,
798                 .pll_freq        = 128,
799                 .pixclk_divider         = 4,
800                 .pixclk_divider_rotated = 6,
801                 .pixclk_src     = CLK_SRC_PLL,
802                 .sysclk_divider  = 0,
803                 .sysclk_src     = CLK_SRC_PLL,
804         },
805         [1] = {
806                 .xres            = 240,
807                 .yres            = 320,
808                 .left_margin     = 15,
809                 .right_margin    = 88,
810                 .upper_margin    = 0,
811                 .lower_margin    = 7,
812                 .crtc_ss         = 0xd010000f,
813                 .crtc_ls         = 0x80070003,
814                 .crtc_gs         = 0x80000000,
815                 .crtc_vpos_gs    = 0x01460147,
816                 .crtc_rev        = 0x00400003,
817                 .crtc_dclk       = 0xa1700030,
818                 .crtc_gclk       = 0x814b0008,
819                 .crtc_goe        = 0x80cc0015,
820                 .crtc_ps1_active = 0x00000000,
821                 .pll_freq        = 100,
822                 .pixclk_divider         = 6, /* Wince uses 14 which gives a */
823                 .pixclk_divider_rotated = 6, /* 7MHz Pclk. We use a 14MHz one */
824                 .pixclk_src     = CLK_SRC_PLL,
825                 .sysclk_divider  = 0,
826                 .sysclk_src     = CLK_SRC_PLL,
827         }
828 };
829
830
831 static struct w100_gpio_regs e800_w100_gpio_info = {
832         .init_data1 = 0xc13fc019,
833         .gpio_dir1  = 0x3e40df7f,
834         .gpio_oe1   = 0x003c3000,
835         .init_data2 = 0x00000000,
836         .gpio_dir2  = 0x00000000,
837         .gpio_oe2   = 0x00000000,
838 };
839
840 static struct w100_mem_info e800_w100_mem_info = {
841         .ext_cntl        = 0x09640011,
842         .sdram_mode_reg  = 0x00600021,
843         .ext_timing_cntl = 0x10001545,
844         .io_cntl         = 0x7ddd7333,
845         .size            = 0x1fffff,
846 };
847
848 static void e800_tg_change(struct w100fb_par *par)
849 {
850         unsigned long tmp;
851
852         tmp = w100fb_gpio_read(W100_GPIO_PORT_A);
853         if (par->mode->xres == 480)
854                 tmp |= 0x100;
855         else
856                 tmp &= ~0x100;
857         w100fb_gpio_write(W100_GPIO_PORT_A, tmp);
858 }
859
860 static struct w100_tg_info e800_tg_info = {
861         .change = e800_tg_change,
862 };
863
864 static struct w100fb_mach_info e800_fb_info = {
865         .modelist   = e800_lcd_mode,
866         .num_modes  = 2,
867         .regs       = &e800_lcd_regs,
868         .gpio       = &e800_w100_gpio_info,
869         .mem        = &e800_w100_mem_info,
870         .tg         = &e800_tg_info,
871         .xtal_freq  = 16000000,
872 };
873
874 static struct resource e800_fb_resources[] = {
875         [0] = {
876                 .start          = 0x0c000000,
877                 .end            = 0x0cffffff,
878                 .flags          = IORESOURCE_MEM,
879         },
880 };
881
882 static struct platform_device e800_fb_device = {
883         .name           = "w100fb",
884         .id             = -1,
885         .dev            = {
886                 .platform_data  = &e800_fb_info,
887         },
888         .num_resources  = ARRAY_SIZE(e800_fb_resources),
889         .resource       = e800_fb_resources,
890 };
891
892 /* --------------------------- UDC definitions --------------------------- */
893
894 static struct gpio_vbus_mach_info e800_udc_info = {
895         .gpio_vbus   = GPIO_E800_USB_DISC,
896         .gpio_pullup = GPIO_E800_USB_PULLUP,
897         .gpio_pullup_inverted = 1
898 };
899
900 static struct platform_device e800_gpio_vbus = {
901         .name   = "gpio-vbus",
902         .id     = -1,
903         .dev    = {
904                 .platform_data  = &e800_udc_info,
905         },
906 };
907
908
909 /* ----------------- e800 tc6393xb parameters ------------------ */
910
911 static struct tc6393xb_platform_data e800_tc6393xb_info = {
912         .irq_base       = IRQ_BOARD_START,
913         .scr_pll2cr     = 0x0cc1,
914         .scr_gper       = 0,
915         .gpio_base      = -1,
916         .suspend        = &eseries_tmio_suspend,
917         .resume         = &eseries_tmio_resume,
918         .enable         = &eseries_tmio_enable,
919         .disable        = &eseries_tmio_disable,
920 };
921
922 static struct platform_device e800_tc6393xb_device = {
923         .name           = "tc6393xb",
924         .id             = -1,
925         .dev            = {
926                 .platform_data = &e800_tc6393xb_info,
927         },
928         .num_resources = 2,
929         .resource      = eseries_tmio_resources,
930 };
931
932 /* ----------------------------------------------------------------------- */
933
934 static struct platform_device *e800_devices[] __initdata = {
935         &e800_fb_device,
936         &e800_tc6393xb_device,
937         &e800_gpio_vbus,
938 };
939
940 static void __init e800_init(void)
941 {
942         pxa2xx_mfp_config(ARRAY_AND_SIZE(e800_pin_config));
943         pxa_set_ffuart_info(NULL);
944         pxa_set_btuart_info(NULL);
945         pxa_set_stuart_info(NULL);
946         clk_add_alias("CLK_CK3P6MI", e800_tc6393xb_device.name,
947                         "GPIO11_CLK", NULL),
948         eseries_get_tmio_gpios();
949         platform_add_devices(ARRAY_AND_SIZE(e800_devices));
950         pxa_set_ac97_info(NULL);
951 }
952
953 MACHINE_START(E800, "Toshiba e800")
954         /* Maintainer: Ian Molton (spyro@f2s.com) */
955         .atag_offset    = 0x100,
956         .map_io         = pxa25x_map_io,
957         .nr_irqs        = ESERIES_NR_IRQS,
958         .init_irq       = pxa25x_init_irq,
959         .handle_irq     = pxa25x_handle_irq,
960         .fixup          = eseries_fixup,
961         .init_machine   = e800_init,
962         .timer          = &pxa_timer,
963         .restart        = pxa_restart,
964 MACHINE_END
965 #endif