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>
16 #include <asm/setup.h>
17 #include <asm/mach/arch.h>
18 #include <asm/mach-types.h>
20 #include <mach/pxa-regs.h>
21 #include <mach/mfp-pxa25x.h>
22 #include <mach/hardware.h>
24 #include <mach/pxafb.h>
30 /* ------------------------ E400 LCD definitions ------------------------ */
32 static struct pxafb_mode_info e400_pxafb_mode_info
= {
46 static struct pxafb_mach_info e400_pxafb_mach_info
= {
47 .modes
= &e400_pxafb_mode_info
,
49 .lccr0
= LCCR0_Color
| LCCR0_Sngl
| LCCR0_Act
,
51 .pxafb_backlight_power
= NULL
,
54 /* ------------------------ E400 MFP config ----------------------------- */
56 static unsigned long e400_pin_config
[] __initdata
= {
58 GPIO15_nCS_1
, /* CS1 - Flash */
59 GPIO80_nCS_4
, /* CS4 - TMIO */
68 GPIO45_GPIO
, /* Used by TMIO for #SUSPEND */
71 GPIO0_GPIO
| WAKEUP_ON_EDGE_RISE
,
74 /* ---------------------------------------------------------------------- */
76 static void __init
e400_init(void)
78 pxa2xx_mfp_config(ARRAY_AND_SIZE(e400_pin_config
));
79 set_pxa_fb_info(&e400_pxafb_mach_info
);
80 pxa_set_udc_info(&e7xx_udc_mach_info
);
83 MACHINE_START(E400
, "Toshiba e400")
84 /* Maintainer: Ian Molton (spyro@f2s.com) */
85 .phys_io
= 0x40000000,
86 .io_pg_offst
= (io_p2v(0x40000000) >> 18) & 0xfffc,
87 .boot_params
= 0xa0000100,
89 .init_irq
= pxa25x_init_irq
,
90 .fixup
= eseries_fixup
,
91 .init_machine
= e400_init
,