2 * Hardware definitions for PalmTX
4 * Author: Marek Vasut <marek.vasut@gmail.com>
7 * Alex Osborne <ato@meshy.org>
8 * Cristiano P. <cristianop@users.sourceforge.net>
9 * Jan Herman <2hp@seznam.cz>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
16 * (find more info at www.hackndev.com)
20 #include <linux/platform_device.h>
21 #include <linux/delay.h>
22 #include <linux/irq.h>
23 #include <linux/gpio_keys.h>
24 #include <linux/input.h>
25 #include <linux/pda_power.h>
26 #include <linux/pwm_backlight.h>
27 #include <linux/gpio.h>
28 #include <linux/wm97xx.h>
29 #include <linux/power_supply.h>
30 #include <linux/usb/gpio_vbus.h>
31 #include <linux/mtd/nand.h>
32 #include <linux/mtd/partitions.h>
33 #include <linux/mtd/mtd.h>
34 #include <linux/mtd/physmap.h>
36 #include <asm/mach-types.h>
37 #include <asm/mach/arch.h>
38 #include <asm/mach/map.h>
40 #include <mach/pxa27x.h>
41 #include <mach/audio.h>
42 #include <mach/palmtx.h>
43 #include <linux/platform_data/mmc-pxamci.h>
44 #include <linux/platform_data/video-pxafb.h>
45 #include <linux/platform_data/irda-pxaficp.h>
46 #include <linux/platform_data/keypad-pxa27x.h>
48 #include <linux/platform_data/asoc-palm27x.h>
49 #include <mach/palm27x.h>
54 /******************************************************************************
56 ******************************************************************************/
57 static unsigned long palmtx_pin_config
[] __initdata
= {
65 GPIO14_GPIO
, /* SD detect */
66 GPIO114_GPIO
, /* SD power */
67 GPIO115_GPIO
, /* SD r/o switch */
71 GPIO29_AC97_SDATA_IN_0
,
72 GPIO30_AC97_SDATA_OUT
,
78 GPIO40_GPIO
, /* ir disable */
86 GPIO13_GPIO
, /* usb detect */
87 GPIO93_GPIO
, /* usb power */
100 GPIO94_GPIO
, /* wifi power 1 */
101 GPIO108_GPIO
, /* wifi power 2 */
102 GPIO116_GPIO
, /* wifi ready */
105 GPIO100_KP_MKIN_0
| WAKEUP_ON_LEVEL_HIGH
,
106 GPIO101_KP_MKIN_1
| WAKEUP_ON_LEVEL_HIGH
,
107 GPIO102_KP_MKIN_2
| WAKEUP_ON_LEVEL_HIGH
,
108 GPIO97_KP_MKIN_3
| WAKEUP_ON_LEVEL_HIGH
,
114 GPIOxx_LCD_TFT_16BPP
,
125 GPIO10_GPIO
, /* hotsync button */
126 GPIO12_GPIO
, /* power detect */
127 GPIO107_GPIO
, /* earphone detect */
130 /******************************************************************************
132 ******************************************************************************/
133 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
134 static struct mtd_partition palmtx_partitions
[] = {
137 .offset
= 0x00000000,
138 .size
= MTDPART_SIZ_FULL
,
143 static struct physmap_flash_data palmtx_flash_data
[] = {
145 .width
= 2, /* bankwidth in bytes */
146 .parts
= palmtx_partitions
,
147 .nr_parts
= ARRAY_SIZE(palmtx_partitions
)
151 static struct resource palmtx_flash_resource
= {
152 .start
= PXA_CS0_PHYS
,
153 .end
= PXA_CS0_PHYS
+ SZ_8M
- 1,
154 .flags
= IORESOURCE_MEM
,
157 static struct platform_device palmtx_flash
= {
158 .name
= "physmap-flash",
160 .resource
= &palmtx_flash_resource
,
163 .platform_data
= palmtx_flash_data
,
167 static void __init
palmtx_nor_init(void)
169 platform_device_register(&palmtx_flash
);
172 static inline void palmtx_nor_init(void) {}
175 /******************************************************************************
177 ******************************************************************************/
178 #if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE)
179 static const unsigned int palmtx_matrix_keys
[] = {
180 KEY(0, 0, KEY_POWER
),
182 KEY(0, 2, KEY_ENTER
),
191 KEY(3, 0, KEY_RIGHT
),
195 static struct matrix_keymap_data palmtx_matrix_keymap_data
= {
196 .keymap
= palmtx_matrix_keys
,
197 .keymap_size
= ARRAY_SIZE(palmtx_matrix_keys
),
200 static struct pxa27x_keypad_platform_data palmtx_keypad_platform_data
= {
201 .matrix_key_rows
= 4,
202 .matrix_key_cols
= 3,
203 .matrix_keymap_data
= &palmtx_matrix_keymap_data
,
205 .debounce_interval
= 30,
208 static void __init
palmtx_kpc_init(void)
210 pxa_set_keypad_info(&palmtx_keypad_platform_data
);
213 static inline void palmtx_kpc_init(void) {}
216 /******************************************************************************
218 ******************************************************************************/
219 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
220 static struct gpio_keys_button palmtx_pxa_buttons
[] = {
221 {KEY_F8
, GPIO_NR_PALMTX_HOTSYNC_BUTTON_N
, 1, "HotSync Button" },
224 static struct gpio_keys_platform_data palmtx_pxa_keys_data
= {
225 .buttons
= palmtx_pxa_buttons
,
226 .nbuttons
= ARRAY_SIZE(palmtx_pxa_buttons
),
229 static struct platform_device palmtx_pxa_keys
= {
233 .platform_data
= &palmtx_pxa_keys_data
,
237 static void __init
palmtx_keys_init(void)
239 platform_device_register(&palmtx_pxa_keys
);
242 static inline void palmtx_keys_init(void) {}
245 /******************************************************************************
247 ******************************************************************************/
248 #if defined(CONFIG_MTD_NAND_PLATFORM) || \
249 defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
250 static void palmtx_nand_cmd_ctl(struct mtd_info
*mtd
, int cmd
,
253 struct nand_chip
*this = mtd
->priv
;
254 char __iomem
*nandaddr
= this->IO_ADDR_W
;
256 if (cmd
== NAND_CMD_NONE
)
260 writeb(cmd
, PALMTX_NAND_CLE_VIRT
);
261 else if (ctrl
& NAND_ALE
)
262 writeb(cmd
, PALMTX_NAND_ALE_VIRT
);
264 writeb(cmd
, nandaddr
);
267 static struct mtd_partition palmtx_partition_info
[] = {
271 .size
= MTDPART_SIZ_FULL
275 struct platform_nand_data palmtx_nand_platdata
= {
279 .nr_partitions
= ARRAY_SIZE(palmtx_partition_info
),
280 .partitions
= palmtx_partition_info
,
284 .cmd_ctrl
= palmtx_nand_cmd_ctl
,
288 static struct resource palmtx_nand_resource
[] = {
290 .start
= PXA_CS1_PHYS
,
291 .end
= PXA_CS1_PHYS
+ SZ_1M
- 1,
292 .flags
= IORESOURCE_MEM
,
296 static struct platform_device palmtx_nand
= {
298 .num_resources
= ARRAY_SIZE(palmtx_nand_resource
),
299 .resource
= palmtx_nand_resource
,
302 .platform_data
= &palmtx_nand_platdata
,
306 static void __init
palmtx_nand_init(void)
308 platform_device_register(&palmtx_nand
);
311 static inline void palmtx_nand_init(void) {}
314 /******************************************************************************
316 ******************************************************************************/
317 static struct map_desc palmtx_io_desc
[] __initdata
= {
319 .virtual = (unsigned long)PALMTX_PCMCIA_VIRT
,
320 .pfn
= __phys_to_pfn(PALMTX_PCMCIA_PHYS
),
321 .length
= PALMTX_PCMCIA_SIZE
,
324 .virtual = (unsigned long)PALMTX_NAND_ALE_VIRT
,
325 .pfn
= __phys_to_pfn(PALMTX_NAND_ALE_PHYS
),
329 .virtual = (unsigned long)PALMTX_NAND_CLE_VIRT
,
330 .pfn
= __phys_to_pfn(PALMTX_NAND_CLE_PHYS
),
336 static void __init
palmtx_map_io(void)
339 iotable_init(palmtx_io_desc
, ARRAY_SIZE(palmtx_io_desc
));
342 static void __init
palmtx_init(void)
344 pxa2xx_mfp_config(ARRAY_AND_SIZE(palmtx_pin_config
));
345 pxa_set_ffuart_info(NULL
);
346 pxa_set_btuart_info(NULL
);
347 pxa_set_stuart_info(NULL
);
349 palm27x_mmc_init(GPIO_NR_PALMTX_SD_DETECT_N
, GPIO_NR_PALMTX_SD_READONLY
,
350 GPIO_NR_PALMTX_SD_POWER
, 0);
351 palm27x_pm_init(PALMTX_STR_BASE
);
352 palm27x_lcd_init(-1, &palm_320x480_lcd_mode
);
353 palm27x_udc_init(GPIO_NR_PALMTX_USB_DETECT_N
,
354 GPIO_NR_PALMTX_USB_PULLUP
, 1);
355 palm27x_irda_init(GPIO_NR_PALMTX_IR_DISABLE
);
356 palm27x_ac97_init(PALMTX_BAT_MIN_VOLTAGE
, PALMTX_BAT_MAX_VOLTAGE
,
357 GPIO_NR_PALMTX_EARPHONE_DETECT
, 95);
358 palm27x_pwm_init(GPIO_NR_PALMTX_BL_POWER
, GPIO_NR_PALMTX_LCD_POWER
);
359 palm27x_power_init(GPIO_NR_PALMTX_POWER_DETECT
, -1);
367 MACHINE_START(PALMTX
, "Palm T|X")
368 .atag_offset
= 0x100,
369 .map_io
= palmtx_map_io
,
370 .nr_irqs
= PXA_NR_IRQS
,
371 .init_irq
= pxa27x_init_irq
,
372 .handle_irq
= pxa27x_handle_irq
,
373 .init_time
= pxa_timer_init
,
374 .init_machine
= palmtx_init
,
375 .restart
= pxa_restart
,