1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-omap1/board-palmtt.c
5 * Modified from board-palmtt2.c
7 * Modified and amended for Palm Tungsten|T
8 * by Marek Vasut <marek.vasut@gmail.com>
11 #include <linux/delay.h>
12 #include <linux/gpio.h>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/notifier.h>
17 #include <linux/clk.h>
18 #include <linux/input.h>
19 #include <linux/interrupt.h>
20 #include <linux/mtd/mtd.h>
21 #include <linux/mtd/partitions.h>
22 #include <linux/mtd/physmap.h>
23 #include <linux/leds.h>
24 #include <linux/omapfb.h>
25 #include <linux/spi/spi.h>
26 #include <linux/spi/ads7846.h>
27 #include <linux/platform_data/omap1_bl.h>
28 #include <linux/platform_data/leds-omap.h>
30 #include <asm/mach-types.h>
31 #include <asm/mach/arch.h>
32 #include <asm/mach/map.h>
36 #include <linux/omap-dma.h>
38 #include <linux/platform_data/keypad-omap.h>
40 #include <mach/hardware.h>
45 #define PALMTT_USBDETECT_GPIO 0
46 #define PALMTT_CABLE_GPIO 1
47 #define PALMTT_LED_GPIO 3
48 #define PALMTT_PENIRQ_GPIO 6
49 #define PALMTT_MMC_WP_GPIO 8
50 #define PALMTT_HDQ_GPIO 11
52 static const unsigned int palmtt_keymap
[] = {
55 KEY(2, 0, KEY_LEFTCTRL
),
66 static struct mtd_partition palmtt_partitions
[] = {
74 .name
= "PalmOS-BootLoader(ro)",
77 .mask_flags
= MTD_WRITEABLE
,
81 .offset
= MTDPART_OFS_APPEND
,
86 .name
= "PalmOS-FS(ro)",
87 .offset
= MTDPART_OFS_APPEND
,
88 .size
= 7 * SZ_1M
+ 4 * SZ_64K
- 16 * SZ_8K
,
89 .mask_flags
= MTD_WRITEABLE
,
92 .name
= "u-boot(rez)",
93 .offset
= MTDPART_OFS_APPEND
,
99 .offset
= MTDPART_OFS_APPEND
,
100 .size
= MTDPART_SIZ_FULL
,
105 static struct physmap_flash_data palmtt_flash_data
= {
107 .set_vpp
= omap1_set_vpp
,
108 .parts
= palmtt_partitions
,
109 .nr_parts
= ARRAY_SIZE(palmtt_partitions
),
112 static struct resource palmtt_flash_resource
= {
113 .start
= OMAP_CS0_PHYS
,
114 .end
= OMAP_CS0_PHYS
+ SZ_8M
- 1,
115 .flags
= IORESOURCE_MEM
,
118 static struct platform_device palmtt_flash_device
= {
119 .name
= "physmap-flash",
122 .platform_data
= &palmtt_flash_data
,
125 .resource
= &palmtt_flash_resource
,
128 static struct resource palmtt_kp_resources
[] = {
130 .start
= INT_KEYBOARD
,
132 .flags
= IORESOURCE_IRQ
,
136 static const struct matrix_keymap_data palmtt_keymap_data
= {
137 .keymap
= palmtt_keymap
,
138 .keymap_size
= ARRAY_SIZE(palmtt_keymap
),
141 static struct omap_kp_platform_data palmtt_kp_data
= {
144 .keymap_data
= &palmtt_keymap_data
,
147 static struct platform_device palmtt_kp_device
= {
148 .name
= "omap-keypad",
151 .platform_data
= &palmtt_kp_data
,
153 .num_resources
= ARRAY_SIZE(palmtt_kp_resources
),
154 .resource
= palmtt_kp_resources
,
157 static struct platform_device palmtt_lcd_device
= {
158 .name
= "lcd_palmtt",
162 static struct platform_device palmtt_spi_device
= {
163 .name
= "spi_palmtt",
167 static struct omap_backlight_config palmtt_backlight_config
= {
168 .default_intensity
= 0xa0,
171 static struct platform_device palmtt_backlight_device
= {
175 .platform_data
= &palmtt_backlight_config
,
179 static struct omap_led_config palmtt_led_config
[] = {
182 .name
= "palmtt:led0",
184 .gpio
= PALMTT_LED_GPIO
,
188 static struct omap_led_platform_data palmtt_led_data
= {
189 .nr_leds
= ARRAY_SIZE(palmtt_led_config
),
190 .leds
= palmtt_led_config
,
193 static struct platform_device palmtt_led_device
= {
197 .platform_data
= &palmtt_led_data
,
201 static struct platform_device
*palmtt_devices
[] __initdata
= {
202 &palmtt_flash_device
,
206 &palmtt_backlight_device
,
210 static int palmtt_get_pendown_state(void)
212 return !gpio_get_value(6);
215 static const struct ads7846_platform_data palmtt_ts_info
= {
217 .vref_delay_usecs
= 100, /* internal, no capacitor */
220 .get_pendown_state
= palmtt_get_pendown_state
,
223 static struct spi_board_info __initdata palmtt_boardinfo
[] = {
225 /* MicroWire (bus 2) CS0 has an ads7846e */
226 .modalias
= "ads7846",
227 .platform_data
= &palmtt_ts_info
,
228 .max_speed_hz
= 120000 /* max sample rate at 3V */
229 * 26 /* command + data + overhead */,
235 static struct omap_usb_config palmtt_usb_config __initdata
= {
241 static const struct omap_lcd_config palmtt_lcd_config __initconst
= {
242 .ctrl_name
= "internal",
245 static void __init
omap_mpu_wdt_mode(int mode
) {
247 omap_writew(0x8000, OMAP_WDT_TIMER_MODE
);
249 omap_writew(0x00f5, OMAP_WDT_TIMER_MODE
);
250 omap_writew(0x00a0, OMAP_WDT_TIMER_MODE
);
254 static void __init
omap_palmtt_init(void)
256 /* mux pins for uarts */
257 omap_cfg_reg(UART1_TX
);
258 omap_cfg_reg(UART1_RTS
);
259 omap_cfg_reg(UART2_TX
);
260 omap_cfg_reg(UART2_RTS
);
261 omap_cfg_reg(UART3_TX
);
262 omap_cfg_reg(UART3_RX
);
264 omap_mpu_wdt_mode(0);
266 platform_add_devices(palmtt_devices
, ARRAY_SIZE(palmtt_devices
));
268 palmtt_boardinfo
[0].irq
= gpio_to_irq(6);
269 spi_register_board_info(palmtt_boardinfo
,ARRAY_SIZE(palmtt_boardinfo
));
271 omap1_usb_init(&palmtt_usb_config
);
272 omap_register_i2c_bus(1, 100, NULL
, 0);
274 omapfb_set_lcd_config(&palmtt_lcd_config
);
277 MACHINE_START(OMAP_PALMTT
, "OMAP1510 based Palm Tungsten|T")
278 .atag_offset
= 0x100,
279 .map_io
= omap15xx_map_io
,
280 .init_early
= omap1_init_early
,
281 .init_irq
= omap1_init_irq
,
282 .handle_irq
= omap1_handle_irq
,
283 .init_machine
= omap_palmtt_init
,
284 .init_late
= omap1_init_late
,
285 .init_time
= omap1_timer_init
,
286 .restart
= omap1_restart
,