target: msm8226: Add support for 1080p JDI panel

msm8226 boards that support 1080p display have the JDI
panel as the primary display panel. Enable this panel
for these boards based on the board IDs.

Change-Id: I3c2059973799bdef10b7d59ed2893e0eff1a7a9e
diff --git a/target/msm8226/target_display.c b/target/msm8226/target_display.c
index 0dce4fe..d63352a 100755
--- a/target/msm8226/target_display.c
+++ b/target/msm8226/target_display.c
@@ -265,6 +265,15 @@
 {
 	int ret = NO_ERROR;
 	if (enable) {
+		if (pinfo->mipi.use_enable_gpio) {
+			gpio_tlmm_config(enable_gpio.pin_id, 0,
+				enable_gpio.pin_direction, enable_gpio.pin_pull,
+				enable_gpio.pin_strength,
+				enable_gpio.pin_state);
+
+			gpio_set_dir(enable_gpio.pin_id, 2);
+		}
+
 		gpio_tlmm_config(reset_gpio.pin_id, 0,
 				reset_gpio.pin_direction, reset_gpio.pin_pull,
 				reset_gpio.pin_strength, reset_gpio.pin_state);
@@ -279,6 +288,8 @@
 		mdelay(resetseq->sleep[2]);
 	} else if(!target_cont_splash_screen()) {
 		gpio_set_value(reset_gpio.pin_id, 0);
+		if (pinfo->mipi.use_enable_gpio)
+			gpio_set_value(enable_gpio.pin_id, 0);
 	}
 
 	return ret;