ARM: OMAP: pandora: add support for backlight and poweroff
Add platform data for drivers that recently appeared in kernel: backlight and TWL4030 poweroff support. Signed-off-by: Grazvydas Ignotas <notasas@gmail.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
Родитель
2534b4a429
Коммит
7846e169e6
|
@ -121,6 +121,11 @@ static struct platform_device pandora_leds_gpio = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct platform_device pandora_backlight = {
|
||||||
|
.name = "pandora-backlight",
|
||||||
|
.id = -1,
|
||||||
|
};
|
||||||
|
|
||||||
#define GPIO_BUTTON(gpio_num, ev_type, ev_code, act_low, descr) \
|
#define GPIO_BUTTON(gpio_num, ev_type, ev_code, act_low, descr) \
|
||||||
{ \
|
{ \
|
||||||
.gpio = gpio_num, \
|
.gpio = gpio_num, \
|
||||||
|
@ -476,6 +481,10 @@ static struct platform_device pandora_vwlan_device = {
|
||||||
|
|
||||||
static struct twl4030_bci_platform_data pandora_bci_data;
|
static struct twl4030_bci_platform_data pandora_bci_data;
|
||||||
|
|
||||||
|
static struct twl4030_power_data pandora_power_data = {
|
||||||
|
.use_poweroff = true,
|
||||||
|
};
|
||||||
|
|
||||||
static struct twl4030_platform_data omap3pandora_twldata = {
|
static struct twl4030_platform_data omap3pandora_twldata = {
|
||||||
.gpio = &omap3pandora_gpio_data,
|
.gpio = &omap3pandora_gpio_data,
|
||||||
.vmmc1 = &pandora_vmmc1,
|
.vmmc1 = &pandora_vmmc1,
|
||||||
|
@ -486,6 +495,7 @@ static struct twl4030_platform_data omap3pandora_twldata = {
|
||||||
.vsim = &pandora_vsim,
|
.vsim = &pandora_vsim,
|
||||||
.keypad = &pandora_kp_data,
|
.keypad = &pandora_kp_data,
|
||||||
.bci = &pandora_bci_data,
|
.bci = &pandora_bci_data,
|
||||||
|
.power = &pandora_power_data,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct i2c_board_info __initdata omap3pandora_i2c3_boardinfo[] = {
|
static struct i2c_board_info __initdata omap3pandora_i2c3_boardinfo[] = {
|
||||||
|
@ -557,6 +567,7 @@ static struct platform_device *omap3pandora_devices[] __initdata = {
|
||||||
&pandora_leds_gpio,
|
&pandora_leds_gpio,
|
||||||
&pandora_keys_gpio,
|
&pandora_keys_gpio,
|
||||||
&pandora_vwlan_device,
|
&pandora_vwlan_device,
|
||||||
|
&pandora_backlight,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
|
static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче