Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 55fdbe19 authored by Aravind Venkateswaran's avatar Aravind Venkateswaran
Browse files

msm: 8226: Add lcd enable gpiomux config



Certain display panels on msm8226 require an enable gpio
as part of their power up sequence. Add the gpiomux
configuration for this enable gpio.

Change-Id: I5a00d66c914d56f9856596c3bcd45d436263f3e0
Signed-off-by: default avatarAravind Venkateswaran <aravindh@codeaurora.org>
parent e8394881
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -185,7 +185,14 @@ static struct gpiomux_setting lcd_rst_sus_cfg = {

static struct msm_gpiomux_config msm_lcd_configs[] __initdata = {
	{
		.gpio = 25,
		.gpio = 25,		/* LCD Reset */
		.settings = {
			[GPIOMUX_ACTIVE]    = &lcd_rst_act_cfg,
			[GPIOMUX_SUSPENDED] = &lcd_rst_sus_cfg,
		},
	},
	{
		.gpio = 109,		/* LCD Enable */
		.settings = {
			[GPIOMUX_ACTIVE]    = &lcd_rst_act_cfg,
			[GPIOMUX_SUSPENDED] = &lcd_rst_sus_cfg,