2 * linux/arch/arm/mach-omap1/board-palmtt.c
4 * Modified from board-palmtt2.c
6 * Modified and amended for Palm Tungsten|T
7 * by Marek Vasut <marek.vasut@gmail.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/delay.h>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/notifier.h>
19 #include <linux/clk.h>
20 #include <linux/input.h>
21 #include <linux/interrupt.h>
22 #include <linux/mtd/mtd.h>
23 #include <linux/mtd/partitions.h>
24 #include <linux/mtd/physmap.h>
25 #include <linux/leds.h>
27 #include <mach/hardware.h>
28 #include <asm/mach-types.h>
29 #include <asm/mach/arch.h>
30 #include <asm/mach/map.h>
33 #include <mach/gpio.h>
34 #include <plat/flash.h>
39 #include <plat/board.h>
40 #include <plat/irda.h>
41 #include <plat/keypad.h>
42 #include <plat/common.h>
44 #include <linux/spi/spi.h>
45 #include <linux/spi/ads7846.h>
47 #define PALMTT_USBDETECT_GPIO 0
48 #define PALMTT_CABLE_GPIO 1
49 #define PALMTT_LED_GPIO 3
50 #define PALMTT_PENIRQ_GPIO 6
51 #define PALMTT_MMC_WP_GPIO 8
52 #define PALMTT_HDQ_GPIO 11
54 static int palmtt_keymap
[] = {
57 KEY(0, 2, KEY_LEFTCTRL
),
69 static struct mtd_partition palmtt_partitions
[] = {
77 .name
= "PalmOS-BootLoader(ro)",
80 .mask_flags
= MTD_WRITEABLE
,
84 .offset
= MTDPART_OFS_APPEND
,
89 .name
= "PalmOS-FS(ro)",
90 .offset
= MTDPART_OFS_APPEND
,
91 .size
= 7 * SZ_1M
+ 4 * SZ_64K
- 16 * SZ_8K
,
92 .mask_flags
= MTD_WRITEABLE
,
95 .name
= "u-boot(rez)",
96 .offset
= MTDPART_OFS_APPEND
,
102 .offset
= MTDPART_OFS_APPEND
,
103 .size
= MTDPART_SIZ_FULL
,
108 static struct physmap_flash_data palmtt_flash_data
= {
110 .set_vpp
= omap1_set_vpp
,
111 .parts
= palmtt_partitions
,
112 .nr_parts
= ARRAY_SIZE(palmtt_partitions
),
115 static struct resource palmtt_flash_resource
= {
116 .start
= OMAP_CS0_PHYS
,
117 .end
= OMAP_CS0_PHYS
+ SZ_8M
- 1,
118 .flags
= IORESOURCE_MEM
,
121 static struct platform_device palmtt_flash_device
= {
122 .name
= "physmap-flash",
125 .platform_data
= &palmtt_flash_data
,
128 .resource
= &palmtt_flash_resource
,
131 static struct resource palmtt_kp_resources
[] = {
133 .start
= INT_KEYBOARD
,
135 .flags
= IORESOURCE_IRQ
,
139 static struct omap_kp_platform_data palmtt_kp_data
= {
142 .keymap
= palmtt_keymap
,
145 static struct platform_device palmtt_kp_device
= {
146 .name
= "omap-keypad",
149 .platform_data
= &palmtt_kp_data
,
151 .num_resources
= ARRAY_SIZE(palmtt_kp_resources
),
152 .resource
= palmtt_kp_resources
,
155 static struct platform_device palmtt_lcd_device
= {
156 .name
= "lcd_palmtt",
159 static struct omap_irda_config palmtt_irda_config
= {
160 .transceiver_cap
= IR_SIRMODE
,
161 .rx_channel
= OMAP_DMA_UART3_RX
,
162 .tx_channel
= OMAP_DMA_UART3_TX
,
163 .dest_start
= UART3_THR
,
164 .src_start
= UART3_RHR
,
169 static struct resource palmtt_irda_resources
[] = {
173 .flags
= IORESOURCE_IRQ
,
177 static struct platform_device palmtt_irda_device
= {
181 .platform_data
= &palmtt_irda_config
,
183 .num_resources
= ARRAY_SIZE(palmtt_irda_resources
),
184 .resource
= palmtt_irda_resources
,
187 static struct platform_device palmtt_spi_device
= {
188 .name
= "spi_palmtt",
192 static struct omap_backlight_config palmtt_backlight_config
= {
193 .default_intensity
= 0xa0,
196 static struct platform_device palmtt_backlight_device
= {
200 .platform_data
= &palmtt_backlight_config
,
204 static struct omap_led_config palmtt_led_config
[] = {
207 .name
= "palmtt:led0",
209 .gpio
= PALMTT_LED_GPIO
,
213 static struct omap_led_platform_data palmtt_led_data
= {
214 .nr_leds
= ARRAY_SIZE(palmtt_led_config
),
215 .leds
= palmtt_led_config
,
218 static struct platform_device palmtt_led_device
= {
222 .platform_data
= &palmtt_led_data
,
226 static struct platform_device
*palmtt_devices
[] __initdata
= {
227 &palmtt_flash_device
,
232 &palmtt_backlight_device
,
236 static int palmtt_get_pendown_state(void)
238 return !gpio_get_value(6);
241 static const struct ads7846_platform_data palmtt_ts_info
= {
243 .vref_delay_usecs
= 100, /* internal, no capacitor */
246 .get_pendown_state
= palmtt_get_pendown_state
,
249 static struct spi_board_info __initdata palmtt_boardinfo
[] = {
251 /* MicroWire (bus 2) CS0 has an ads7846e */
252 .modalias
= "ads7846",
253 .platform_data
= &palmtt_ts_info
,
254 .irq
= OMAP_GPIO_IRQ(6),
255 .max_speed_hz
= 120000 /* max sample rate at 3V */
256 * 26 /* command + data + overhead */,
262 static void __init
omap_palmtt_init_irq(void)
264 omap1_init_common_hw();
268 static struct omap_usb_config palmtt_usb_config __initdata
= {
274 static struct omap_lcd_config palmtt_lcd_config __initdata
= {
275 .ctrl_name
= "internal",
278 static struct omap_board_config_kernel palmtt_config
[] __initdata
= {
279 { OMAP_TAG_LCD
, &palmtt_lcd_config
},
282 static void __init
omap_mpu_wdt_mode(int mode
) {
284 omap_writew(0x8000, OMAP_WDT_TIMER_MODE
);
286 omap_writew(0x00f5, OMAP_WDT_TIMER_MODE
);
287 omap_writew(0x00a0, OMAP_WDT_TIMER_MODE
);
291 static void __init
omap_palmtt_init(void)
293 /* mux pins for uarts */
294 omap_cfg_reg(UART1_TX
);
295 omap_cfg_reg(UART1_RTS
);
296 omap_cfg_reg(UART2_TX
);
297 omap_cfg_reg(UART2_RTS
);
298 omap_cfg_reg(UART3_TX
);
299 omap_cfg_reg(UART3_RX
);
301 omap_mpu_wdt_mode(0);
303 omap_board_config
= palmtt_config
;
304 omap_board_config_size
= ARRAY_SIZE(palmtt_config
);
306 platform_add_devices(palmtt_devices
, ARRAY_SIZE(palmtt_devices
));
308 spi_register_board_info(palmtt_boardinfo
,ARRAY_SIZE(palmtt_boardinfo
));
310 omap1_usb_init(&palmtt_usb_config
);
311 omap_register_i2c_bus(1, 100, NULL
, 0);
314 static void __init
omap_palmtt_map_io(void)
316 omap1_map_common_io();
319 MACHINE_START(OMAP_PALMTT
, "OMAP1510 based Palm Tungsten|T")
320 .boot_params
= 0x10000100,
321 .map_io
= omap_palmtt_map_io
,
322 .reserve
= omap_reserve
,
323 .init_irq
= omap_palmtt_init_irq
,
324 .init_machine
= omap_palmtt_init
,
325 .timer
= &omap_timer
,