2 * Common code for Palm LD, T5, TX, Z72
5 * Marek Vasut <marek.vasut@gmail.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
13 #include <linux/platform_device.h>
14 #include <linux/delay.h>
15 #include <linux/irq.h>
16 #include <linux/gpio_keys.h>
17 #include <linux/input.h>
18 #include <linux/pda_power.h>
19 #include <linux/pwm_backlight.h>
20 #include <linux/gpio.h>
21 #include <linux/wm97xx.h>
22 #include <linux/power_supply.h>
23 #include <linux/usb/gpio_vbus.h>
24 #include <linux/regulator/max1586.h>
26 #include <asm/mach-types.h>
27 #include <asm/mach/arch.h>
28 #include <asm/mach/map.h>
30 #include <mach/pxa27x.h>
31 #include <mach/audio.h>
33 #include <mach/pxafb.h>
34 #include <mach/irda.h>
36 #include <mach/palmasoc.h>
37 #include <mach/palm27x.h>
44 /******************************************************************************
45 * SD/MMC card controller
46 ******************************************************************************/
47 #if defined(CONFIG_MMC_PXA) || defined(CONFIG_MMC_PXA_MODULE)
48 static struct pxamci_platform_data palm27x_mci_platform_data
= {
49 .ocr_mask
= MMC_VDD_32_33
| MMC_VDD_33_34
,
50 .detect_delay_ms
= 200,
53 void __init
palm27x_mmc_init(int detect
, int ro
, int power
,
56 palm27x_mci_platform_data
.gpio_card_detect
= detect
;
57 palm27x_mci_platform_data
.gpio_card_ro
= ro
;
58 palm27x_mci_platform_data
.gpio_power
= power
;
59 palm27x_mci_platform_data
.gpio_power_invert
= power_inverted
;
61 pxa_set_mci_info(&palm27x_mci_platform_data
);
65 /******************************************************************************
66 * Power management - standby
67 ******************************************************************************/
68 #if defined(CONFIG_SUSPEND)
69 void __init
palm27x_pm_init(unsigned long str_base
)
71 static const unsigned long resume
[] = {
72 0xe3a00101, /* mov r0, #0x40000000 */
73 0xe380060f, /* orr r0, r0, #0x00f00000 */
74 0xe590f008, /* ldr pc, [r0, #0x08] */
78 * Copy the bootloader.
79 * NOTE: PalmZ72 uses a different wakeup method!
81 memcpy(phys_to_virt(str_base
), resume
, sizeof(resume
));
85 /******************************************************************************
87 ******************************************************************************/
88 #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
89 struct pxafb_mode_info palm_320x480_lcd_mode
= {
104 struct pxafb_mode_info palm_320x320_lcd_mode
= {
119 struct pxafb_mode_info palm_320x320_new_lcd_mode
= {
134 static struct pxafb_mach_info palm27x_lcd_screen
= {
136 .lcd_conn
= LCD_COLOR_TFT_16BPP
| LCD_PCLK_EDGE_FALL
,
139 static int palm27x_lcd_power
;
140 static void palm27x_lcd_ctl(int on
, struct fb_var_screeninfo
*info
)
142 gpio_set_value(palm27x_lcd_power
, on
);
145 void __init
palm27x_lcd_init(int power
, struct pxafb_mode_info
*mode
)
147 palm27x_lcd_screen
.modes
= mode
;
149 if (gpio_is_valid(power
)) {
150 if (!gpio_request(power
, "LCD power")) {
151 pr_err("Palm27x: failed to claim lcd power gpio!\n");
154 if (!gpio_direction_output(power
, 1)) {
155 pr_err("Palm27x: lcd power configuration failed!\n");
158 palm27x_lcd_power
= power
;
159 palm27x_lcd_screen
.pxafb_lcd_power
= palm27x_lcd_ctl
;
162 set_pxa_fb_info(&palm27x_lcd_screen
);
166 /******************************************************************************
168 ******************************************************************************/
169 #if defined(CONFIG_USB_GADGET_PXA27X) || \
170 defined(CONFIG_USB_GADGET_PXA27X_MODULE)
171 static struct gpio_vbus_mach_info palm27x_udc_info
= {
172 .gpio_vbus_inverted
= 1,
175 static struct platform_device palm27x_gpio_vbus
= {
179 .platform_data
= &palm27x_udc_info
,
183 void __init
palm27x_udc_init(int vbus
, int pullup
, int vbus_inverted
)
185 palm27x_udc_info
.gpio_vbus
= vbus
;
186 palm27x_udc_info
.gpio_pullup
= pullup
;
188 palm27x_udc_info
.gpio_vbus_inverted
= vbus_inverted
;
190 if (!gpio_request(pullup
, "USB Pullup")) {
191 gpio_direction_output(pullup
,
192 palm27x_udc_info
.gpio_vbus_inverted
);
197 platform_device_register(&palm27x_gpio_vbus
);
201 /******************************************************************************
203 ******************************************************************************/
204 #if defined(CONFIG_IRDA) || defined(CONFIG_IRDA_MODULE)
205 static struct pxaficp_platform_data palm27x_ficp_platform_data
= {
206 .transceiver_cap
= IR_SIRMODE
| IR_OFF
,
209 void __init
palm27x_irda_init(int pwdn
)
211 palm27x_ficp_platform_data
.gpio_pwdown
= pwdn
;
212 pxa_set_ficp_info(&palm27x_ficp_platform_data
);
216 /******************************************************************************
217 * WM97xx audio, battery
218 ******************************************************************************/
219 #if defined(CONFIG_TOUCHSCREEN_WM97XX) || \
220 defined(CONFIG_TOUCHSCREEN_WM97XX_MODULE)
221 static struct wm97xx_batt_pdata palm27x_batt_pdata
= {
222 .batt_aux
= WM97XX_AUX_ID3
,
223 .temp_aux
= WM97XX_AUX_ID2
,
229 .batt_tech
= POWER_SUPPLY_TECHNOLOGY_LIPO
,
230 .batt_name
= "main-batt",
233 static struct wm97xx_pdata palm27x_wm97xx_pdata
= {
234 .batt_pdata
= &palm27x_batt_pdata
,
237 static pxa2xx_audio_ops_t palm27x_ac97_pdata
= {
238 .codec_pdata
= { &palm27x_wm97xx_pdata
, },
241 static struct palm27x_asoc_info palm27x_asoc_pdata
= {
245 static struct platform_device palm27x_asoc
= {
246 .name
= "palm27x-asoc",
249 .platform_data
= &palm27x_asoc_pdata
,
253 void __init
palm27x_ac97_init(int minv
, int maxv
, int jack
, int reset
)
255 palm27x_ac97_pdata
.reset_gpio
= reset
;
256 palm27x_asoc_pdata
.jack_gpio
= jack
;
258 if (minv
< 0 || maxv
< 0) {
259 palm27x_ac97_pdata
.codec_pdata
[0] = NULL
;
260 pxa_set_ac97_info(&palm27x_ac97_pdata
);
262 palm27x_batt_pdata
.min_voltage
= minv
,
263 palm27x_batt_pdata
.max_voltage
= maxv
,
265 pxa_set_ac97_info(&palm27x_ac97_pdata
);
266 platform_device_register(&palm27x_asoc
);
271 /******************************************************************************
273 ******************************************************************************/
274 #if defined(CONFIG_BACKLIGHT_PWM) || defined(CONFIG_BACKLIGHT_PWM_MODULE)
275 static int palm_bl_power
;
276 static int palm_lcd_power
;
278 static int palm27x_backlight_init(struct device
*dev
)
282 ret
= gpio_request(palm_bl_power
, "BL POWER");
285 ret
= gpio_direction_output(palm_bl_power
, 0);
289 if (gpio_is_valid(palm_lcd_power
)) {
290 ret
= gpio_request(palm_lcd_power
, "LCD POWER");
293 ret
= gpio_direction_output(palm_lcd_power
, 0);
300 gpio_free(palm_lcd_power
);
302 gpio_free(palm_bl_power
);
307 static int palm27x_backlight_notify(struct device
*dev
, int brightness
)
309 gpio_set_value(palm_bl_power
, brightness
);
310 if (gpio_is_valid(palm_lcd_power
))
311 gpio_set_value(palm_lcd_power
, brightness
);
315 static void palm27x_backlight_exit(struct device
*dev
)
317 gpio_free(palm_bl_power
);
318 if (gpio_is_valid(palm_lcd_power
))
319 gpio_free(palm_lcd_power
);
322 static struct platform_pwm_backlight_data palm27x_backlight_data
= {
324 .max_brightness
= 0xfe,
325 .dft_brightness
= 0x7e,
326 .pwm_period_ns
= 3500 * 1024,
327 .init
= palm27x_backlight_init
,
328 .notify
= palm27x_backlight_notify
,
329 .exit
= palm27x_backlight_exit
,
332 static struct platform_device palm27x_backlight
= {
333 .name
= "pwm-backlight",
335 .parent
= &pxa27x_device_pwm0
.dev
,
336 .platform_data
= &palm27x_backlight_data
,
340 void __init
palm27x_pwm_init(int bl
, int lcd
)
343 palm_lcd_power
= lcd
;
344 platform_device_register(&palm27x_backlight
);
348 /******************************************************************************
350 ******************************************************************************/
351 #if defined(CONFIG_PDA_POWER) || defined(CONFIG_PDA_POWER_MODULE)
352 static int palm_ac_state
;
353 static int palm_usb_state
;
355 static int palm27x_power_supply_init(struct device
*dev
)
359 ret
= gpio_request(palm_ac_state
, "AC state");
362 ret
= gpio_direction_input(palm_ac_state
);
366 if (gpio_is_valid(palm_usb_state
)) {
367 ret
= gpio_request(palm_usb_state
, "USB state");
370 ret
= gpio_direction_input(palm_usb_state
);
377 gpio_free(palm_usb_state
);
379 gpio_free(palm_ac_state
);
384 static void palm27x_power_supply_exit(struct device
*dev
)
386 gpio_free(palm_usb_state
);
387 gpio_free(palm_ac_state
);
390 static int palm27x_is_ac_online(void)
392 return gpio_get_value(palm_ac_state
);
395 static int palm27x_is_usb_online(void)
397 return !gpio_get_value(palm_usb_state
);
399 static char *palm27x_supplicants
[] = {
403 static struct pda_power_pdata palm27x_ps_info
= {
404 .init
= palm27x_power_supply_init
,
405 .exit
= palm27x_power_supply_exit
,
406 .is_ac_online
= palm27x_is_ac_online
,
407 .is_usb_online
= palm27x_is_usb_online
,
408 .supplied_to
= palm27x_supplicants
,
409 .num_supplicants
= ARRAY_SIZE(palm27x_supplicants
),
412 static struct platform_device palm27x_power_supply
= {
416 .platform_data
= &palm27x_ps_info
,
420 void __init
palm27x_power_init(int ac
, int usb
)
423 palm_usb_state
= usb
;
424 platform_device_register(&palm27x_power_supply
);
428 /******************************************************************************
429 * Core power regulator
430 ******************************************************************************/
431 #if defined(CONFIG_REGULATOR_MAX1586) || \
432 defined(CONFIG_REGULATOR_MAX1586_MODULE)
433 static struct regulator_consumer_supply palm27x_max1587a_consumers
[] = {
435 .supply
= "vcc_core",
439 static struct regulator_init_data palm27x_max1587a_v3_info
= {
441 .name
= "vcc_core range",
445 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
,
447 .consumer_supplies
= palm27x_max1587a_consumers
,
448 .num_consumer_supplies
= ARRAY_SIZE(palm27x_max1587a_consumers
),
451 static struct max1586_subdev_data palm27x_max1587a_subdevs
[] = {
455 .platform_data
= &palm27x_max1587a_v3_info
,
459 static struct max1586_platform_data palm27x_max1587a_info
= {
460 .subdevs
= palm27x_max1587a_subdevs
,
461 .num_subdevs
= ARRAY_SIZE(palm27x_max1587a_subdevs
),
462 .v3_gain
= MAX1586_GAIN_R24_3k32
, /* 730..1550 mV */
465 static struct i2c_board_info __initdata palm27x_pi2c_board_info
[] = {
467 I2C_BOARD_INFO("max1586", 0x14),
468 .platform_data
= &palm27x_max1587a_info
,
472 static struct i2c_pxa_platform_data palm27x_i2c_power_info
= {
476 void __init
palm27x_pmic_init(void)
478 i2c_register_board_info(1, ARRAY_AND_SIZE(palm27x_pi2c_board_info
));
479 pxa27x_set_i2c_power_info(&palm27x_i2c_power_info
);