2 * Hardware definitions for the Toshiba eseries PDAs
4 * Copyright (c) 2003 Ian Molton <spyro@f2s.com>
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
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/clk.h>
16 #include <linux/platform_device.h>
17 #include <linux/mfd/t7l66xb.h>
18 #include <linux/mtd/nand.h>
19 #include <linux/mtd/partitions.h>
21 #include <asm/setup.h>
22 #include <asm/mach/arch.h>
23 #include <asm/mach-types.h>
25 #include <mach/pxa25x.h>
26 #include <mach/eseries-gpio.h>
27 #include <mach/pxafb.h>
29 #include <mach/irqs.h>
35 /* ------------------------ E400 LCD definitions ------------------------ */
37 static struct pxafb_mode_info e400_pxafb_mode_info
= {
51 static struct pxafb_mach_info e400_pxafb_mach_info
= {
52 .modes
= &e400_pxafb_mode_info
,
54 .lcd_conn
= LCD_COLOR_TFT_16BPP
,
56 .pxafb_backlight_power
= NULL
,
59 /* ------------------------ E400 MFP config ----------------------------- */
61 static unsigned long e400_pin_config
[] __initdata
= {
63 GPIO15_nCS_1
, /* CS1 - Flash */
64 GPIO80_nCS_4
, /* CS4 - TMIO */
75 GPIO19_GPIO
, /* t7l66xb #PCLR */
76 GPIO45_GPIO
, /* t7l66xb #SUSPEND (NOT BTUART!) */
79 GPIO0_GPIO
| WAKEUP_ON_EDGE_RISE
,
82 /* ---------------------------------------------------------------------- */
84 static struct mtd_partition partition_a
= {
85 .name
= "Internal NAND flash",
87 .size
= MTDPART_SIZ_FULL
,
90 static uint8_t scan_ff_pattern
[] = { 0xff, 0xff };
92 static struct nand_bbt_descr e400_t7l66xb_nand_bbt
= {
96 .pattern
= scan_ff_pattern
99 static struct tmio_nand_data e400_t7l66xb_nand_config
= {
101 .partition
= &partition_a
,
102 .badblock_pattern
= &e400_t7l66xb_nand_bbt
,
105 static struct t7l66xb_platform_data e400_t7l66xb_info
= {
106 .irq_base
= IRQ_BOARD_START
,
107 .enable
= &eseries_tmio_enable
,
108 .suspend
= &eseries_tmio_suspend
,
109 .resume
= &eseries_tmio_resume
,
111 .nand_data
= &e400_t7l66xb_nand_config
,
114 static struct platform_device e400_t7l66xb_device
= {
118 .platform_data
= &e400_t7l66xb_info
,
121 .resource
= eseries_tmio_resources
,
124 /* ---------------------------------------------------------- */
126 static struct platform_device
*devices
[] __initdata
= {
127 &e400_t7l66xb_device
,
130 static void __init
e400_init(void)
132 pxa2xx_mfp_config(ARRAY_AND_SIZE(e400_pin_config
));
133 /* Fixme - e400 may have a switched clock */
134 eseries_register_clks();
135 eseries_get_tmio_gpios();
136 set_pxa_fb_info(&e400_pxafb_mach_info
);
137 platform_add_devices(devices
, ARRAY_SIZE(devices
));
138 pxa_set_udc_info(&e7xx_udc_mach_info
);
141 MACHINE_START(E400
, "Toshiba e400")
142 /* Maintainer: Ian Molton (spyro@f2s.com) */
143 .phys_io
= 0x40000000,
144 .io_pg_offst
= (io_p2v(0x40000000) >> 18) & 0xfffc,
145 .boot_params
= 0xa0000100,
146 .map_io
= pxa_map_io
,
147 .init_irq
= pxa25x_init_irq
,
148 .fixup
= eseries_fixup
,
149 .init_machine
= e400_init
,