2 * Hardware definitions for Palm Treo smartphones
6 * Palm Centro 685 (GSM)
8 * Author: Tomas Cech <sleep_walker@suse.cz>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
14 * (find more info at www.hackndev.com)
18 #include <linux/platform_device.h>
19 #include <linux/delay.h>
20 #include <linux/irq.h>
21 #include <linux/gpio_keys.h>
22 #include <linux/input.h>
23 #include <linux/memblock.h>
24 #include <linux/pda_power.h>
25 #include <linux/pwm_backlight.h>
26 #include <linux/gpio.h>
27 #include <linux/power_supply.h>
28 #include <linux/w1-gpio.h>
30 #include <asm/mach-types.h>
31 #include <asm/mach/arch.h>
32 #include <asm/mach/map.h>
34 #include <mach/pxa27x.h>
35 #include <mach/pxa27x-udc.h>
36 #include <mach/audio.h>
37 #include <mach/palmtreo.h>
38 #include <linux/platform_data/mmc-pxamci.h>
39 #include <linux/platform_data/video-pxafb.h>
40 #include <linux/platform_data/irda-pxaficp.h>
41 #include <linux/platform_data/keypad-pxa27x.h>
43 #include <linux/platform_data/usb-ohci-pxa27x.h>
44 #include <mach/pxa2xx-regs.h>
45 #include <linux/platform_data/asoc-palm27x.h>
46 #include <linux/platform_data/camera-pxa.h>
47 #include <mach/palm27x.h>
49 #include <sound/pxa2xx-lib.h>
54 /******************************************************************************
56 ******************************************************************************/
57 static unsigned long treo_pin_config
[] __initdata
= {
65 GPIO113_GPIO
, /* SD detect */
69 GPIO29_AC97_SDATA_IN_0
,
70 GPIO30_AC97_SDATA_OUT
,
83 GPIO1_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* usb detect */
92 GPIO103_KP_MKOUT_0
| MFP_LPM_DRIVE_HIGH
,
99 GPIO93_KP_DKIN_0
| WAKEUP_ON_LEVEL_HIGH
, /* Hotsync button */
101 /* Quick Capture Interface */
120 GPIO14_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* GSM host wake up */
127 GPIO0_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* external power detect */
128 GPIO15_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* silent switch */
129 GPIO116_GPIO
, /* headphone detect */
130 GPIO11_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* bluetooth host wake up */
133 #ifdef CONFIG_MACH_TREO680
134 static unsigned long treo680_pin_config
[] __initdata
= {
135 GPIO33_GPIO
, /* SD read only */
137 /* MATRIX KEYPAD - different wake up source */
138 GPIO100_KP_MKIN_0
| WAKEUP_ON_LEVEL_HIGH
,
141 /* LCD... L_BIAS alt fn not configured on Treo680; is GPIO instead */
147 #endif /* CONFIG_MACH_TREO680 */
149 #ifdef CONFIG_MACH_CENTRO
150 static unsigned long centro685_pin_config
[] __initdata
= {
151 /* Bluetooth attached to BT UART*/
152 MFP_CFG_OUT(GPIO80
, AF0
, DRIVE_LOW
), /* power: LOW = off */
158 /* MATRIX KEYPAD - different wake up source */
160 GPIO99_KP_MKIN_5
| WAKEUP_ON_LEVEL_HIGH
,
163 GPIOxx_LCD_TFT_16BPP
,
165 #endif /* CONFIG_MACH_CENTRO */
167 /******************************************************************************
169 ******************************************************************************/
170 #if IS_ENABLED(CONFIG_KEYBOARD_PXA27x)
171 static const unsigned int treo680_matrix_keys
[] = {
172 KEY(0, 0, KEY_F8
), /* Red/Off/Power */
174 KEY(0, 2, KEY_LEFTCTRL
), /* Alternate */
180 KEY(1, 0, KEY_RIGHTCTRL
), /* Menu */
181 KEY(1, 1, KEY_RIGHT
),
182 KEY(1, 2, KEY_LEFTSHIFT
), /* Left shift */
187 KEY(2, 0, KEY_F1
), /* Phone */
194 KEY(3, 0, KEY_F10
), /* Calendar */
196 KEY(3, 2, KEY_SPACE
),
201 KEY(4, 0, KEY_F12
), /* Mail */
202 KEY(4, 1, KEY_KPENTER
),
203 KEY(4, 2, KEY_RIGHTALT
), /* Alt */
208 KEY(5, 0, KEY_F9
), /* Home */
209 KEY(5, 1, KEY_PAGEUP
), /* Side up */
215 KEY(6, 0, KEY_TAB
), /* Side Activate */
216 KEY(6, 1, KEY_PAGEDOWN
), /* Side down */
217 KEY(6, 2, KEY_ENTER
),
222 KEY(7, 0, KEY_F6
), /* Green/Call */
224 KEY(7, 2, KEY_BACKSPACE
),
230 static const unsigned int centro_matrix_keys
[] = {
231 KEY(0, 0, KEY_F9
), /* Home */
233 KEY(0, 2, KEY_LEFTCTRL
), /* Alternate */
239 KEY(1, 0, KEY_RIGHTCTRL
), /* Menu */
240 KEY(1, 1, KEY_RIGHT
),
241 KEY(1, 2, KEY_LEFTSHIFT
), /* Left shift */
246 KEY(2, 0, KEY_F1
), /* Phone */
253 KEY(3, 0, KEY_F10
), /* Calendar */
255 KEY(3, 2, KEY_SPACE
),
260 KEY(4, 0, KEY_F12
), /* Mail */
261 KEY(4, 1, KEY_KPENTER
),
262 KEY(4, 2, KEY_RIGHTALT
), /* Alt */
267 KEY(5, 0, KEY_F8
), /* Red/Off/Power */
268 KEY(5, 1, KEY_PAGEUP
), /* Side up */
274 KEY(6, 0, KEY_TAB
), /* Side Activate */
275 KEY(6, 1, KEY_PAGEDOWN
), /* Side down */
276 KEY(6, 2, KEY_ENTER
),
281 KEY(7, 0, KEY_F6
), /* Green/Call */
283 KEY(7, 2, KEY_BACKSPACE
),
289 static struct matrix_keymap_data treo680_matrix_keymap_data
= {
290 .keymap
= treo680_matrix_keys
,
291 .keymap_size
= ARRAY_SIZE(treo680_matrix_keys
),
294 static struct matrix_keymap_data centro_matrix_keymap_data
= {
295 .keymap
= centro_matrix_keys
,
296 .keymap_size
= ARRAY_SIZE(centro_matrix_keys
),
299 static struct pxa27x_keypad_platform_data treo680_keypad_pdata
= {
300 .matrix_key_rows
= 8,
301 .matrix_key_cols
= 7,
302 .matrix_keymap_data
= &treo680_matrix_keymap_data
,
303 .direct_key_map
= { KEY_CONNECT
},
306 .debounce_interval
= 30,
309 static void __init
palmtreo_kpc_init(void)
311 static struct pxa27x_keypad_platform_data
*data
= &treo680_keypad_pdata
;
313 if (machine_is_centro())
314 data
->matrix_keymap_data
= ¢ro_matrix_keymap_data
;
316 pxa_set_keypad_info(&treo680_keypad_pdata
);
319 static inline void palmtreo_kpc_init(void) {}
322 /******************************************************************************
324 ******************************************************************************/
325 #if IS_ENABLED(CONFIG_USB_OHCI_HCD)
326 static struct pxaohci_platform_data treo680_ohci_info
= {
327 .port_mode
= PMM_PERPORT_MODE
,
328 .flags
= ENABLE_PORT1
| ENABLE_PORT3
,
332 static void __init
palmtreo_uhc_init(void)
334 if (machine_is_treo680())
335 pxa_set_ohci_info(&treo680_ohci_info
);
338 static inline void palmtreo_uhc_init(void) {}
341 /******************************************************************************
343 ******************************************************************************/
344 static struct gpio_led treo680_gpio_leds
[] = {
346 .name
= "treo680:vibra:vibra",
347 .default_trigger
= "none",
348 .gpio
= GPIO_NR_TREO680_VIBRATE_EN
,
351 .name
= "treo680:green:led",
352 .default_trigger
= "mmc0",
353 .gpio
= GPIO_NR_TREO_GREEN_LED
,
356 .name
= "treo680:white:keybbl",
357 .default_trigger
= "none",
358 .gpio
= GPIO_NR_TREO680_KEYB_BL
,
362 static struct gpio_led_platform_data treo680_gpio_led_info
= {
363 .leds
= treo680_gpio_leds
,
364 .num_leds
= ARRAY_SIZE(treo680_gpio_leds
),
367 static struct gpio_led centro_gpio_leds
[] = {
369 .name
= "centro:vibra:vibra",
370 .default_trigger
= "none",
371 .gpio
= GPIO_NR_CENTRO_VIBRATE_EN
,
374 .name
= "centro:green:led",
375 .default_trigger
= "mmc0",
376 .gpio
= GPIO_NR_TREO_GREEN_LED
,
379 .name
= "centro:white:keybbl",
380 .default_trigger
= "none",
382 .gpio
= GPIO_NR_CENTRO_KEYB_BL
,
386 static struct gpio_led_platform_data centro_gpio_led_info
= {
387 .leds
= centro_gpio_leds
,
388 .num_leds
= ARRAY_SIZE(centro_gpio_leds
),
391 static struct platform_device palmtreo_leds
= {
396 static void __init
palmtreo_leds_init(void)
398 if (machine_is_centro())
399 palmtreo_leds
.dev
.platform_data
= ¢ro_gpio_led_info
;
400 else if (machine_is_treo680())
401 palmtreo_leds
.dev
.platform_data
= &treo680_gpio_led_info
;
403 platform_device_register(&palmtreo_leds
);
406 /******************************************************************************
407 * diskonchip docg4 flash
408 ******************************************************************************/
409 #if defined(CONFIG_MACH_TREO680)
410 /* REVISIT: does the centro have this device also? */
411 #if IS_ENABLED(CONFIG_MTD_NAND_DOCG4)
412 static struct resource docg4_resources
[] = {
416 .flags
= IORESOURCE_MEM
,
420 static struct platform_device treo680_docg4_flash
= {
423 .resource
= docg4_resources
,
424 .num_resources
= ARRAY_SIZE(docg4_resources
),
427 static void __init
treo680_docg4_flash_init(void)
429 platform_device_register(&treo680_docg4_flash
);
432 static inline void treo680_docg4_flash_init(void) {}
436 /******************************************************************************
438 ******************************************************************************/
439 static void __init
treo_reserve(void)
441 memblock_reserve(0xa0000000, 0x1000);
442 memblock_reserve(0xa2000000, 0x1000);
445 static void __init
palmphone_common_init(void)
447 pxa2xx_mfp_config(ARRAY_AND_SIZE(treo_pin_config
));
448 pxa_set_ffuart_info(NULL
);
449 pxa_set_btuart_info(NULL
);
450 pxa_set_stuart_info(NULL
);
451 palm27x_pm_init(TREO_STR_BASE
);
452 palm27x_lcd_init(GPIO_NR_TREO_BL_POWER
, &palm_320x320_new_lcd_mode
);
453 palm27x_udc_init(GPIO_NR_TREO_USB_DETECT
, GPIO_NR_TREO_USB_PULLUP
, 1);
454 palm27x_irda_init(GPIO_NR_TREO_IR_EN
);
455 palm27x_ac97_init(-1, -1, -1, 95);
456 palm27x_pwm_init(GPIO_NR_TREO_BL_POWER
, -1);
457 palm27x_power_init(GPIO_NR_TREO_POWER_DETECT
, -1);
461 palmtreo_leds_init();
464 #ifdef CONFIG_MACH_TREO680
465 void __init
treo680_gpio_init(void)
469 /* drive all three lcd gpios high initially */
470 const unsigned long lcd_flags
= GPIOF_INIT_HIGH
| GPIOF_DIR_OUT
;
473 * LCD GPIO initialization...
477 * This is likely the power to the lcd. Toggling it low/high appears to
478 * turn the lcd off/on. Can be toggled after lcd is initialized without
479 * any apparent adverse effects to the lcd operation. Note that this
480 * gpio line is used by the lcd controller as the L_BIAS signal, but
481 * treo680 configures it as gpio.
483 gpio
= GPIO_NR_TREO680_LCD_POWER
;
484 if (gpio_request_one(gpio
, lcd_flags
, "LCD power") < 0)
488 * These two are called "enables", for lack of a better understanding.
489 * If either of these are toggled after the lcd is initialized, the
490 * image becomes degraded. N.B. The IPL shipped with the treo
491 * configures GPIO_NR_TREO680_LCD_EN_N as output and drives it high. If
492 * the IPL is ever reprogrammed, this initialization may be need to be
495 gpio
= GPIO_NR_TREO680_LCD_EN
;
496 if (gpio_request_one(gpio
, lcd_flags
, "LCD enable") < 0)
498 gpio
= GPIO_NR_TREO680_LCD_EN_N
;
499 if (gpio_request_one(gpio
, lcd_flags
, "LCD enable_n") < 0)
502 /* driving this low turns LCD on */
503 gpio_set_value(GPIO_NR_TREO680_LCD_EN_N
, 0);
507 pr_err("gpio %d initialization failed\n", gpio
);
508 gpio_free(GPIO_NR_TREO680_LCD_POWER
);
509 gpio_free(GPIO_NR_TREO680_LCD_EN
);
510 gpio_free(GPIO_NR_TREO680_LCD_EN_N
);
513 static void __init
treo680_init(void)
515 pxa2xx_mfp_config(ARRAY_AND_SIZE(treo680_pin_config
));
516 palmphone_common_init();
518 palm27x_mmc_init(GPIO_NR_TREO_SD_DETECT_N
, GPIO_NR_TREO680_SD_READONLY
,
519 GPIO_NR_TREO680_SD_POWER
, 0);
520 treo680_docg4_flash_init();
524 #ifdef CONFIG_MACH_CENTRO
525 static void __init
centro_init(void)
527 pxa2xx_mfp_config(ARRAY_AND_SIZE(centro685_pin_config
));
528 palmphone_common_init();
529 palm27x_mmc_init(GPIO_NR_TREO_SD_DETECT_N
, -1,
530 GPIO_NR_CENTRO_SD_POWER
, 1);
534 #ifdef CONFIG_MACH_TREO680
535 MACHINE_START(TREO680
, "Palm Treo 680")
536 .atag_offset
= 0x100,
537 .map_io
= pxa27x_map_io
,
538 .reserve
= treo_reserve
,
539 .nr_irqs
= PXA_NR_IRQS
,
540 .init_irq
= pxa27x_init_irq
,
541 .handle_irq
= pxa27x_handle_irq
,
542 .init_time
= pxa_timer_init
,
543 .init_machine
= treo680_init
,
544 .restart
= pxa_restart
,
548 #ifdef CONFIG_MACH_CENTRO
549 MACHINE_START(CENTRO
, "Palm Centro 685")
550 .atag_offset
= 0x100,
551 .map_io
= pxa27x_map_io
,
552 .reserve
= treo_reserve
,
553 .nr_irqs
= PXA_NR_IRQS
,
554 .init_irq
= pxa27x_init_irq
,
555 .handle_irq
= pxa27x_handle_irq
,
556 .init_time
= pxa_timer_init
,
557 .init_machine
= centro_init
,
558 .restart
= pxa_restart
,