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/device.h>
16 #include <linux/platform_device.h>
18 #include <linux/mfd/tc6393xb.h>
20 #include <video/w100fb.h>
22 #include <asm/setup.h>
23 #include <asm/mach/arch.h>
24 #include <asm/mach-types.h>
26 #include <mach/mfp-pxa25x.h>
27 #include <mach/pxa-regs.h>
28 #include <mach/hardware.h>
29 #include <mach/eseries-gpio.h>
31 #include <mach/irda.h>
32 #include <mach/irqs.h>
38 /* ---------------------- E750 LCD definitions -------------------- */
40 static struct w100_gen_regs e750_lcd_regs
= {
41 .lcd_format
= 0x00008003,
42 .lcdd_cntl1
= 0x00000000,
43 .lcdd_cntl2
= 0x0003ffff,
44 .genlcd_cntl1
= 0x00fff003,
45 .genlcd_cntl2
= 0x003c0f03,
46 .genlcd_cntl3
= 0x000143aa,
49 static struct w100_mode e750_lcd_mode
= {
56 .crtc_ss
= 0x80150014,
57 .crtc_ls
= 0x8014000d,
58 .crtc_gs
= 0xc1000005,
59 .crtc_vpos_gs
= 0x00020147,
60 .crtc_rev
= 0x0040010a,
61 .crtc_dclk
= 0xa1700030,
62 .crtc_gclk
= 0x80cc0015,
63 .crtc_goe
= 0x80cc0015,
64 .crtc_ps1_active
= 0x61060017,
67 .pixclk_divider_rotated
= 4,
68 .pixclk_src
= CLK_SRC_XTAL
,
70 .sysclk_src
= CLK_SRC_PLL
,
73 static struct w100_gpio_regs e750_w100_gpio_info
= {
74 .init_data1
= 0x01192f1b,
75 .gpio_dir1
= 0xd5ffdeff,
76 .gpio_oe1
= 0x000020bf,
77 .init_data2
= 0x010f010f,
78 .gpio_dir2
= 0xffffffff,
79 .gpio_oe2
= 0x000001cf,
82 static struct w100fb_mach_info e750_fb_info
= {
83 .modelist
= &e750_lcd_mode
,
85 .regs
= &e750_lcd_regs
,
86 .gpio
= &e750_w100_gpio_info
,
87 .xtal_freq
= 14318000,
91 static struct resource e750_fb_resources
[] = {
95 .flags
= IORESOURCE_MEM
,
99 static struct platform_device e750_fb_device
= {
103 .platform_data
= &e750_fb_info
,
105 .num_resources
= ARRAY_SIZE(e750_fb_resources
),
106 .resource
= e750_fb_resources
,
109 /* -------------------- e750 MFP parameters -------------------- */
111 static unsigned long e750_pin_config
[] __initdata
= {
113 GPIO15_nCS_1
, /* CS1 - Flash */
114 GPIO79_nCS_3
, /* CS3 - IMAGEON */
115 GPIO80_nCS_4
, /* CS4 - TMIO */
125 /* TMIO controller */
126 GPIO19_GPIO
, /* t7l66xb #PCLR */
127 GPIO45_GPIO
, /* t7l66xb #SUSPEND (NOT BTUART!) */
134 GPIO38_GPIO
| MFP_LPM_DRIVE_HIGH
,
137 GPIO8_GPIO
, /* CD0 */
138 GPIO44_GPIO
, /* CD1 */
139 GPIO11_GPIO
, /* IRQ0 */
140 GPIO6_GPIO
, /* IRQ1 */
141 GPIO27_GPIO
, /* RST0 */
142 GPIO24_GPIO
, /* RST1 */
143 GPIO20_GPIO
, /* PWR0 */
144 GPIO23_GPIO
, /* PWR1 */
157 GPIO0_GPIO
| WAKEUP_ON_EDGE_RISE
,
160 /* ----------------- e750 tc6393xb parameters ------------------ */
162 static struct tc6393xb_platform_data e750_tc6393xb_info
= {
163 .irq_base
= IRQ_BOARD_START
,
164 .scr_pll2cr
= 0x0cc1,
167 .suspend
= &eseries_tmio_suspend
,
168 .resume
= &eseries_tmio_resume
,
169 .enable
= &eseries_tmio_enable
,
170 .disable
= &eseries_tmio_disable
,
173 static struct platform_device e750_tc6393xb_device
= {
177 .platform_data
= &e750_tc6393xb_info
,
180 .resource
= eseries_tmio_resources
,
183 /* ------------------------------------------------------------- */
185 static struct platform_device
*devices
[] __initdata
= {
187 &e750_tc6393xb_device
,
190 static void __init
e750_init(void)
192 pxa2xx_mfp_config(ARRAY_AND_SIZE(e750_pin_config
));
193 clk_add_alias("CLK_CK3P6MI", &e750_tc6393xb_device
.dev
,
195 eseries_get_tmio_gpios();
196 platform_add_devices(devices
, ARRAY_SIZE(devices
));
197 pxa_set_udc_info(&e7xx_udc_mach_info
);
199 pxa_set_ficp_info(&e7xx_ficp_platform_data
);
202 MACHINE_START(E750
, "Toshiba e750")
203 /* Maintainer: Ian Molton (spyro@f2s.com) */
204 .phys_io
= 0x40000000,
205 .io_pg_offst
= (io_p2v(0x40000000) >> 18) & 0xfffc,
206 .boot_params
= 0xa0000100,
207 .map_io
= pxa_map_io
,
208 .init_irq
= pxa25x_init_irq
,
209 .fixup
= eseries_fixup
,
210 .init_machine
= e750_init
,