aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoger Quadros <rogerq@ti.com>2013-06-18 12:04:45 -0400
committerBenoit Cousson <benoit.cousson@linaro.org>2013-06-19 17:59:16 -0400
commit6f56929375be006e114fe5be09095b1ff3edfb99 (patch)
treeb77a043173af1f02f0dfdd8f1b970395daaecc9b
parent5bd2100ed2a76147ddec95499214eb606b799a22 (diff)
ARM: dts: omap4-panda: Fix DVI EDID reads
On Panda the +5V supply for DVI EDID is supplied by the same regulator that poweres the USB Hub. Currently, the DSS/DVI subsystem doesn't know how to manage this regulator and so DVI EDID reads will fail if USB Hub is not enabled. As a temporary fix we keep this regulator permanently enabled on boot. This fixes the DVI EDID read problem. CC: Tomi Valkeinen <tomi.valkeinen@ti.com> Signed-off-by: Roger Quadros <rogerq@ti.com> Signed-off-by: Benoit Cousson <benoit.cousson@linaro.org>
-rw-r--r--arch/arm/boot/dts/omap4-panda-common.dtsi7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap4-panda-common.dtsi b/arch/arm/boot/dts/omap4-panda-common.dtsi
index 60fc62489b7a..faa95b5b242e 100644
--- a/arch/arm/boot/dts/omap4-panda-common.dtsi
+++ b/arch/arm/boot/dts/omap4-panda-common.dtsi
@@ -85,6 +85,13 @@
85 gpio = <&gpio1 1 0>; /* gpio_1 */ 85 gpio = <&gpio1 1 0>; /* gpio_1 */
86 startup-delay-us = <70000>; 86 startup-delay-us = <70000>;
87 enable-active-high; 87 enable-active-high;
88 /*
89 * boot-on is required along with always-on as the
90 * regulator framework doesn't enable the regulator
91 * if boot-on is not there.
92 */
93 regulator-always-on;
94 regulator-boot-on;
88 }; 95 };
89 96
90 /* HS USB Host PHY on PORT 1 */ 97 /* HS USB Host PHY on PORT 1 */