2 * Hardware definitions for Palm Treo 680
4 * Author: Tomas Cech <sleep_walker@suse.cz>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * (find more info at www.hackndev.com)
14 #include <linux/platform_device.h>
15 #include <linux/delay.h>
16 #include <linux/irq.h>
17 #include <linux/gpio_keys.h>
18 #include <linux/input.h>
19 #include <linux/pda_power.h>
20 #include <linux/pwm_backlight.h>
21 #include <linux/gpio.h>
22 #include <linux/wm97xx_batt.h>
23 #include <linux/power_supply.h>
24 #include <linux/sysdev.h>
25 #include <linux/w1-gpio.h>
27 #include <asm/mach-types.h>
28 #include <asm/mach/arch.h>
29 #include <asm/mach/map.h>
31 #include <mach/pxa27x.h>
32 #include <mach/pxa27x-udc.h>
33 #include <mach/audio.h>
34 #include <mach/treo680.h>
36 #include <mach/pxafb.h>
37 #include <mach/irda.h>
38 #include <mach/pxa27x_keypad.h>
40 #include <mach/ohci.h>
41 #include <mach/pxa2xx-regs.h>
42 #include <mach/palmasoc.h>
43 #include <mach/camera.h>
45 #include <sound/pxa2xx-lib.h>
50 /******************************************************************************
52 ******************************************************************************/
53 static unsigned long treo680_pin_config
[] __initdata
= {
61 GPIO33_GPIO
, /* SD read only */
62 GPIO113_GPIO
, /* SD detect */
66 GPIO29_AC97_SDATA_IN_0
,
67 GPIO30_AC97_SDATA_OUT
,
80 GPIO1_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* usb detect */
83 GPIO100_KP_MKIN_0
| WAKEUP_ON_LEVEL_HIGH
,
91 GPIO103_KP_MKOUT_0
| MFP_LPM_DRIVE_HIGH
,
98 GPIO93_KP_DKIN_0
| WAKEUP_ON_LEVEL_HIGH
, /* Hotsync button */
121 /* Quick Capture Interface */
140 GPIO14_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* GSM host wake up */
147 GPIO0_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* external power detect */
148 GPIO15_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* silent switch */
149 GPIO116_GPIO
, /* headphone detect */
150 GPIO11_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* bluetooth host wake up */
153 /******************************************************************************
154 * SD/MMC card controller
155 ******************************************************************************/
156 static struct pxamci_platform_data treo680_mci_platform_data
= {
157 .ocr_mask
= MMC_VDD_32_33
| MMC_VDD_33_34
,
158 .gpio_card_detect
= GPIO_NR_TREO680_SD_DETECT_N
,
159 .gpio_card_ro
= GPIO_NR_TREO680_SD_READONLY
,
160 .gpio_power
= GPIO_NR_TREO680_SD_POWER
,
163 /******************************************************************************
165 ******************************************************************************/
166 static unsigned int treo680_matrix_keys
[] = {
167 KEY(0, 0, KEY_F8
), /* Red/Off/Power */
169 KEY(0, 2, KEY_LEFTCTRL
), /* Alternate */
175 KEY(1, 0, KEY_RIGHTCTRL
), /* Menu */
176 KEY(1, 1, KEY_RIGHT
),
177 KEY(1, 2, KEY_LEFTSHIFT
), /* Left shift */
182 KEY(2, 0, KEY_F1
), /* Phone */
189 KEY(3, 0, KEY_F10
), /* Calendar */
191 KEY(3, 2, KEY_SPACE
),
196 KEY(4, 0, KEY_F12
), /* Mail */
197 KEY(4, 1, KEY_KPENTER
),
198 KEY(4, 2, KEY_RIGHTALT
), /* Alt */
203 KEY(5, 0, KEY_F9
), /* Home */
204 KEY(5, 1, KEY_PAGEUP
), /* Side up */
210 KEY(6, 0, KEY_TAB
), /* Side Activate */
211 KEY(6, 1, KEY_PAGEDOWN
), /* Side down */
212 KEY(6, 2, KEY_ENTER
),
217 KEY(7, 0, KEY_F6
), /* Green/Call */
219 KEY(7, 2, KEY_BACKSPACE
),
225 static struct pxa27x_keypad_platform_data treo680_keypad_platform_data
= {
226 .matrix_key_rows
= 8,
227 .matrix_key_cols
= 7,
228 .matrix_key_map
= treo680_matrix_keys
,
229 .matrix_key_map_size
= ARRAY_SIZE(treo680_matrix_keys
),
230 .direct_key_map
= { KEY_CONNECT
},
233 .debounce_interval
= 30,
236 /******************************************************************************
238 ******************************************************************************/
240 static pxa2xx_audio_ops_t treo680_ac97_pdata
= {
244 /******************************************************************************
246 ******************************************************************************/
247 static int treo680_backlight_init(struct device
*dev
)
251 ret
= gpio_request(GPIO_NR_TREO680_BL_POWER
, "BL POWER");
254 ret
= gpio_direction_output(GPIO_NR_TREO680_BL_POWER
, 0);
261 gpio_free(GPIO_NR_TREO680_BL_POWER
);
266 static int treo680_backlight_notify(int brightness
)
268 gpio_set_value(GPIO_NR_TREO680_BL_POWER
, brightness
);
269 return TREO680_MAX_INTENSITY
- brightness
;
272 static void treo680_backlight_exit(struct device
*dev
)
274 gpio_free(GPIO_NR_TREO680_BL_POWER
);
277 static struct platform_pwm_backlight_data treo680_backlight_data
= {
279 .max_brightness
= TREO680_MAX_INTENSITY
,
280 .dft_brightness
= TREO680_DEFAULT_INTENSITY
,
281 .pwm_period_ns
= TREO680_PERIOD_NS
,
282 .init
= treo680_backlight_init
,
283 .notify
= treo680_backlight_notify
,
284 .exit
= treo680_backlight_exit
,
287 static struct platform_device treo680_backlight
= {
288 .name
= "pwm-backlight",
290 .parent
= &pxa27x_device_pwm0
.dev
,
291 .platform_data
= &treo680_backlight_data
,
295 /******************************************************************************
297 ******************************************************************************/
298 static struct pxaficp_platform_data treo680_ficp_info
= {
299 .gpio_pwdown
= GPIO_NR_TREO680_IR_EN
,
300 .transceiver_cap
= IR_SIRMODE
| IR_OFF
,
303 /******************************************************************************
305 ******************************************************************************/
306 static struct pxa2xx_udc_mach_info treo680_udc_info __initdata
= {
307 .gpio_vbus
= GPIO_NR_TREO680_USB_DETECT
,
308 .gpio_vbus_inverted
= 1,
309 .gpio_pullup
= GPIO_NR_TREO680_USB_PULLUP
,
313 /******************************************************************************
315 ******************************************************************************/
316 static struct pxaohci_platform_data treo680_ohci_info
= {
317 .port_mode
= PMM_PERPORT_MODE
,
318 .flags
= ENABLE_PORT1
| ENABLE_PORT3
,
322 /******************************************************************************
324 ******************************************************************************/
325 static int power_supply_init(struct device
*dev
)
329 ret
= gpio_request(GPIO_NR_TREO680_POWER_DETECT
, "CABLE_STATE_AC");
332 ret
= gpio_direction_input(GPIO_NR_TREO680_POWER_DETECT
);
339 gpio_free(GPIO_NR_TREO680_POWER_DETECT
);
344 static int treo680_is_ac_online(void)
346 return gpio_get_value(GPIO_NR_TREO680_POWER_DETECT
);
349 static void power_supply_exit(struct device
*dev
)
351 gpio_free(GPIO_NR_TREO680_POWER_DETECT
);
354 static char *treo680_supplicants
[] = {
358 static struct pda_power_pdata power_supply_info
= {
359 .init
= power_supply_init
,
360 .is_ac_online
= treo680_is_ac_online
,
361 .exit
= power_supply_exit
,
362 .supplied_to
= treo680_supplicants
,
363 .num_supplicants
= ARRAY_SIZE(treo680_supplicants
),
366 static struct platform_device power_supply
= {
370 .platform_data
= &power_supply_info
,
374 /******************************************************************************
376 ******************************************************************************/
377 static struct gpio_led gpio_leds
[] = {
379 .name
= "treo680:vibra:vibra",
380 .default_trigger
= "none",
381 .gpio
= GPIO_NR_TREO680_VIBRATE_EN
,
384 .name
= "treo680:green:led",
385 .default_trigger
= "mmc0",
386 .gpio
= GPIO_NR_TREO680_GREEN_LED
,
389 .name
= "treo680:keybbl:keybbl",
390 .default_trigger
= "none",
391 .gpio
= GPIO_NR_TREO680_KEYB_BL
,
395 static struct gpio_led_platform_data gpio_led_info
= {
397 .num_leds
= ARRAY_SIZE(gpio_leds
),
400 static struct platform_device treo680_leds
= {
404 .platform_data
= &gpio_led_info
,
409 /******************************************************************************
411 ******************************************************************************/
412 /* TODO: add support for 324x324 */
413 static struct pxafb_mode_info treo680_lcd_modes
[] = {
430 static void treo680_lcd_power(int on
, struct fb_var_screeninfo
*info
)
432 gpio_set_value(GPIO_NR_TREO680_BL_POWER
, on
);
435 static struct pxafb_mach_info treo680_lcd_screen
= {
436 .modes
= treo680_lcd_modes
,
437 .num_modes
= ARRAY_SIZE(treo680_lcd_modes
),
438 .lcd_conn
= LCD_COLOR_TFT_16BPP
| LCD_PCLK_EDGE_FALL
,
441 /******************************************************************************
442 * Power management - standby
443 ******************************************************************************/
444 static void __init
treo680_pm_init(void)
446 static u32 resume
[] = {
447 0xe3a00101, /* mov r0, #0x40000000 */
448 0xe380060f, /* orr r0, r0, #0x00f00000 */
449 0xe590f008, /* ldr pc, [r0, #0x08] */
452 /* this is where the bootloader jumps */
453 memcpy(phys_to_virt(TREO680_STR_BASE
), resume
, sizeof(resume
));
456 /******************************************************************************
458 ******************************************************************************/
459 static struct platform_device
*devices
[] __initdata
= {
465 /* setup udc GPIOs initial state */
466 static void __init
treo680_udc_init(void)
468 if (!gpio_request(GPIO_NR_TREO680_USB_PULLUP
, "UDC Vbus")) {
469 gpio_direction_output(GPIO_NR_TREO680_USB_PULLUP
, 1);
470 gpio_free(GPIO_NR_TREO680_USB_PULLUP
);
474 static void __init
treo680_lcd_power_init(void)
478 ret
= gpio_request(GPIO_NR_TREO680_LCD_POWER
, "LCD POWER");
480 pr_err("Treo680: LCD power GPIO request failed!\n");
484 ret
= gpio_direction_output(GPIO_NR_TREO680_LCD_POWER
, 0);
486 pr_err("Treo680: setting LCD power GPIO direction failed!\n");
487 gpio_free(GPIO_NR_TREO680_LCD_POWER
);
491 treo680_lcd_screen
.pxafb_lcd_power
= treo680_lcd_power
;
494 static void __init
treo680_init(void)
497 pxa2xx_mfp_config(ARRAY_AND_SIZE(treo680_pin_config
));
498 pxa_set_keypad_info(&treo680_keypad_platform_data
);
499 treo680_lcd_power_init();
500 set_pxa_fb_info(&treo680_lcd_screen
);
501 pxa_set_mci_info(&treo680_mci_platform_data
);
503 pxa_set_udc_info(&treo680_udc_info
);
504 pxa_set_ac97_info(&treo680_ac97_pdata
);
505 pxa_set_ficp_info(&treo680_ficp_info
);
506 pxa_set_ohci_info(&treo680_ohci_info
);
508 platform_add_devices(devices
, ARRAY_SIZE(devices
));
511 MACHINE_START(TREO680
, "Palm Treo 680")
512 .phys_io
= TREO680_PHYS_IO_START
,
513 .io_pg_offst
= io_p2v(0x40000000),
514 .boot_params
= 0xa0000100,
515 .map_io
= pxa_map_io
,
516 .init_irq
= pxa27x_init_irq
,
518 .init_machine
= treo680_init
,