* [PATCH 0/7] ARM: tegra: HDMI and DSI updates
@ 2014-04-25 15:44 Thierry Reding
2014-04-25 15:44 ` [PATCH 1/7] ARM: tegra: Add Tegra124 HDMI support Thierry Reding
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: Thierry Reding @ 2014-04-25 15:44 UTC (permalink / raw)
To: linux-arm-kernel
From: Thierry Reding <treding@nvidia.com>
This series enables support for HDMI on Venice2 and Jetson TK1. It also
adds the missing +5V regulators for Harmony, Beaver and Dalmore. Other
boards may also need similar changes, but I don't have access to them.
That said existing boards should continue to work without modifications
since we were completely ignoring the +5V regulator before. So the only
change that this should introduce is that perhaps some additional power
can be saved because the +5V regulator now isn't always on.
The final patch in this series hooks up the DSI power supply on Dalmore
so that it can also be switched of if not used.
Note that I have only an A05 Dalmore and from what I can tell there have
been some changes from A04 (the one supported by the upstream kernel)
and A05 regarding HDMI, so it'd be great if somebody could test these
changes (on top of a recent linux-next) on an A04 Dalmore to make sure
they work there.
Thierry
Thierry Reding (7):
ARM: tegra: Add Tegra124 HDMI support
ARM: tegra: venice2 - Enable HDMI
ARM: tegra: jetson-tk1 - Enable HDMI support
ARM: tegra: harmony - Add +5V HDMI supply
ARM: tegra: beaver - Add +5V HDMI supply
ARM: tegra: dalmore - Add +5V HDMI supply
ARM: tegra: dalmore - Add DSI power supply
arch/arm/boot/dts/tegra114-dalmore.dts | 20 ++++++++++++----
arch/arm/boot/dts/tegra124-jetson-tk1.dts | 39 +++++++++++++++++++++++++++++--
arch/arm/boot/dts/tegra124-venice2.dts | 37 +++++++++++++++++++++++++++--
arch/arm/boot/dts/tegra124.dtsi | 12 ++++++++++
arch/arm/boot/dts/tegra20-harmony.dts | 12 ++++++++++
arch/arm/boot/dts/tegra30-beaver.dts | 12 ++++++++++
6 files changed, 123 insertions(+), 9 deletions(-)
--
1.9.2
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/7] ARM: tegra: Add Tegra124 HDMI support
2014-04-25 15:44 [PATCH 0/7] ARM: tegra: HDMI and DSI updates Thierry Reding
@ 2014-04-25 15:44 ` Thierry Reding
2014-04-25 15:44 ` [PATCH 2/7] ARM: tegra: venice2 - Enable HDMI Thierry Reding
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Thierry Reding @ 2014-04-25 15:44 UTC (permalink / raw)
To: linux-arm-kernel
From: Thierry Reding <treding@nvidia.com>
Add a device node for the HDMI controller found on Tegra124.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
arch/arm/boot/dts/tegra124.dtsi | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/arch/arm/boot/dts/tegra124.dtsi b/arch/arm/boot/dts/tegra124.dtsi
index cf45a1a39483..197e8481a659 100644
--- a/arch/arm/boot/dts/tegra124.dtsi
+++ b/arch/arm/boot/dts/tegra124.dtsi
@@ -51,6 +51,18 @@
nvidia,head = <1>;
};
+ hdmi at 0,54280000 {
+ compatible = "nvidia,tegra124-hdmi";
+ reg = <0x0 0x54280000 0x0 0x00040000>;
+ interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
+ clocks = <&tegra_car TEGRA124_CLK_HDMI>,
+ <&tegra_car TEGRA124_CLK_PLL_D2_OUT0>;
+ clock-names = "hdmi", "parent";
+ resets = <&tegra_car 51>;
+ reset-names = "hdmi";
+ status = "disabled";
+ };
+
sor at 0,54540000 {
compatible = "nvidia,tegra124-sor";
reg = <0x0 0x54540000 0x0 0x00040000>;
--
1.9.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/7] ARM: tegra: venice2 - Enable HDMI
2014-04-25 15:44 [PATCH 0/7] ARM: tegra: HDMI and DSI updates Thierry Reding
2014-04-25 15:44 ` [PATCH 1/7] ARM: tegra: Add Tegra124 HDMI support Thierry Reding
@ 2014-04-25 15:44 ` Thierry Reding
2014-04-25 15:44 ` [PATCH 3/7] ARM: tegra: jetson-tk1 - Enable HDMI support Thierry Reding
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Thierry Reding @ 2014-04-25 15:44 UTC (permalink / raw)
To: linux-arm-kernel
From: Thierry Reding <treding@nvidia.com>
Add HDMI +5V, VDD and PLL regulators and enable the DDC I2C controller.
Enable the HDMI device, provide the power supplies as well as the DDC
adapter and use the standard pin (PN7) for hotplug detection.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
arch/arm/boot/dts/tegra124-venice2.dts | 37 ++++++++++++++++++++++++++++++++--
1 file changed, 35 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boot/dts/tegra124-venice2.dts b/arch/arm/boot/dts/tegra124-venice2.dts
index 6770e2bdf226..84a6ec039e1d 100644
--- a/arch/arm/boot/dts/tegra124-venice2.dts
+++ b/arch/arm/boot/dts/tegra124-venice2.dts
@@ -17,6 +17,18 @@
};
host1x at 0,50000000 {
+ hdmi at 0,54280000 {
+ status = "okay";
+
+ vdd-supply = <&vdd_3v3_hdmi>;
+ pll-supply = <&vdd_hdmi_pll>;
+ hdmi-supply = <&vdd_5v0_hdmi>;
+
+ nvidia,ddc-i2c-bus = <&hdmi_ddc>;
+ nvidia,hpd-gpio =
+ <&gpio TEGRA_GPIO(N, 7) GPIO_ACTIVE_HIGH>;
+ };
+
sor at 0,54540000 {
status = "okay";
@@ -601,7 +613,7 @@
clock-frequency = <100000>;
};
- i2c at 0,7000c700 {
+ hdmi_ddc: i2c at 0,7000c700 {
status = "okay";
clock-frequency = <100000>;
};
@@ -700,7 +712,7 @@
regulator-boot-on;
};
- sd4 {
+ vdd_1v05_run: sd4 {
regulator-name = "+1.05V_RUN";
regulator-min-microvolt = <1050000>;
regulator-max-microvolt = <1050000>;
@@ -1147,6 +1159,27 @@
enable-active-high;
vin-supply = <&vdd_3v3_sys>;
};
+
+ vdd_hdmi_pll: regulator at 11 {
+ compatible = "regulator-fixed";
+ reg = <11>;
+ regulator-name = "+1.05V_RUN_AVDD_HDMI_PLL";
+ regulator-min-microvolt = <1050000>;
+ regulator-max-microvolt = <1050000>;
+ gpio = <&gpio TEGRA_GPIO(H, 7) GPIO_ACTIVE_LOW>;
+ vin-supply = <&vdd_1v05_run>;
+ };
+
+ vdd_5v0_hdmi: regulator at 12 {
+ compatible = "regulator-fixed";
+ reg = <12>;
+ regulator-name = "+5V_HDMI_CON";
+ regulator-min-microvolt = <5000000>;
+ regulator-max-microvolt = <5000000>;
+ gpio = <&gpio TEGRA_GPIO(K, 6) GPIO_ACTIVE_HIGH>;
+ enable-active-high;
+ vin-supply = <&vdd_5v0_sys>;
+ };
};
sound {
--
1.9.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/7] ARM: tegra: jetson-tk1 - Enable HDMI support
2014-04-25 15:44 [PATCH 0/7] ARM: tegra: HDMI and DSI updates Thierry Reding
2014-04-25 15:44 ` [PATCH 1/7] ARM: tegra: Add Tegra124 HDMI support Thierry Reding
2014-04-25 15:44 ` [PATCH 2/7] ARM: tegra: venice2 - Enable HDMI Thierry Reding
@ 2014-04-25 15:44 ` Thierry Reding
2014-04-25 15:44 ` [PATCH 4/7] ARM: tegra: harmony - Add +5V HDMI supply Thierry Reding
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Thierry Reding @ 2014-04-25 15:44 UTC (permalink / raw)
To: linux-arm-kernel
From: Thierry Reding <treding@nvidia.com>
Add HDMI +5V, VDD and PLL regulators and enable the DDC I2C controller.
Enable the HDMI device, provide the power supplies as well as the DDC
adapter and use pin the standard pin (PN7) for hotplug detection.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
arch/arm/boot/dts/tegra124-jetson-tk1.dts | 39 +++++++++++++++++++++++++++++--
1 file changed, 37 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boot/dts/tegra124-jetson-tk1.dts b/arch/arm/boot/dts/tegra124-jetson-tk1.dts
index dd3076d94727..e30a5778f675 100644
--- a/arch/arm/boot/dts/tegra124-jetson-tk1.dts
+++ b/arch/arm/boot/dts/tegra124-jetson-tk1.dts
@@ -16,6 +16,20 @@
reg = <0x0 0x80000000 0x0 0x80000000>;
};
+ host1x at 0,50000000 {
+ hdmi at 0,54280000 {
+ status = "okay";
+
+ hdmi-supply = <&vdd_5v0_hdmi>;
+ pll-supply = <&vdd_hdmi_pll>;
+ vdd-supply = <&vdd_3v3_hdmi>;
+
+ nvidia,ddc-i2c-bus = <&hdmi_ddc>;
+ nvidia,hpd-gpio =
+ <&gpio TEGRA_GPIO(N, 7) GPIO_ACTIVE_HIGH>;
+ };
+ };
+
pinmux: pinmux at 0,70000868 {
pinctrl-names = "default";
pinctrl-0 = <&state_default>;
@@ -1382,7 +1396,7 @@
};
/* HDMI DDC */
- i2c at 0,7000c700 {
+ hdmi_ddc: i2c at 0,7000c700 {
status = "okay";
clock-frequency = <100000>;
};
@@ -1477,7 +1491,7 @@
regulator-boot-on;
};
- sd4 {
+ vdd_1v05_run: sd4 {
regulator-name = "+1.05V_RUN";
regulator-min-microvolt = <1050000>;
regulator-max-microvolt = <1050000>;
@@ -1765,6 +1779,27 @@
enable-active-high;
vin-supply = <&vdd_3v3_sys>;
};
+
+ vdd_hdmi_pll: regulator at 11 {
+ compatible = "regulator-fixed";
+ reg = <11>;
+ regulator-name = "+1.05V_RUN_AVDD_HDMI_PLL";
+ regulator-min-microvolt = <1050000>;
+ regulator-max-microvolt = <1050000>;
+ gpio = <&gpio TEGRA_GPIO(H, 7) GPIO_ACTIVE_LOW>;
+ vin-supply = <&vdd_1v05_run>;
+ };
+
+ vdd_5v0_hdmi: regulator at 12 {
+ compatible = "regulator-fixed";
+ reg = <12>;
+ regulator-name = "+5V_HDMI_CON";
+ regulator-min-microvolt = <5000000>;
+ regulator-max-microvolt = <5000000>;
+ gpio = <&gpio TEGRA_GPIO(K, 6) GPIO_ACTIVE_HIGH>;
+ enable-active-high;
+ vin-supply = <&vdd_5v0_sys>;
+ };
};
sound {
--
1.9.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 4/7] ARM: tegra: harmony - Add +5V HDMI supply
2014-04-25 15:44 [PATCH 0/7] ARM: tegra: HDMI and DSI updates Thierry Reding
` (2 preceding siblings ...)
2014-04-25 15:44 ` [PATCH 3/7] ARM: tegra: jetson-tk1 - Enable HDMI support Thierry Reding
@ 2014-04-25 15:44 ` Thierry Reding
2014-04-25 15:44 ` [PATCH 5/7] ARM: tegra: beaver " Thierry Reding
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Thierry Reding @ 2014-04-25 15:44 UTC (permalink / raw)
To: linux-arm-kernel
From: Thierry Reding <treding@nvidia.com>
This supply controls the +5V pin on the HDMI connector, which in turn is
used by attached sinks to return the hotplug detect signal.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
arch/arm/boot/dts/tegra20-harmony.dts | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/arch/arm/boot/dts/tegra20-harmony.dts b/arch/arm/boot/dts/tegra20-harmony.dts
index 650daf16c37b..1f4469549c03 100644
--- a/arch/arm/boot/dts/tegra20-harmony.dts
+++ b/arch/arm/boot/dts/tegra20-harmony.dts
@@ -28,6 +28,7 @@
hdmi at 54280000 {
status = "okay";
+ hdmi-supply = <&vdd_5v0_hdmi>;
vdd-supply = <&hdmi_vdd_reg>;
pll-supply = <&hdmi_pll_reg>;
@@ -724,6 +725,17 @@
gpio = <&gpio TEGRA_GPIO(W, 0) GPIO_ACTIVE_HIGH>;
enable-active-high;
};
+
+ vdd_5v0_hdmi: regulator at 6 {
+ compatible = "regulator-fixed";
+ reg = <6>;
+ regulator-name = "VDDIO_HDMI";
+ regulator-min-microvolt = <5000000>;
+ regulator-max-microvolt = <5000000>;
+ gpio = <&gpio TEGRA_GPIO(T, 2) GPIO_ACTIVE_HIGH>;
+ enable-active-high;
+ vin-supply = <&vdd_5v0_reg>;
+ };
};
sound {
--
1.9.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 5/7] ARM: tegra: beaver - Add +5V HDMI supply
2014-04-25 15:44 [PATCH 0/7] ARM: tegra: HDMI and DSI updates Thierry Reding
` (3 preceding siblings ...)
2014-04-25 15:44 ` [PATCH 4/7] ARM: tegra: harmony - Add +5V HDMI supply Thierry Reding
@ 2014-04-25 15:44 ` Thierry Reding
2014-04-25 15:44 ` [PATCH 6/7] ARM: tegra: dalmore " Thierry Reding
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Thierry Reding @ 2014-04-25 15:44 UTC (permalink / raw)
To: linux-arm-kernel
From: Thierry Reding <treding@nvidia.com>
This supply controls the +5V pin on the HDMI connector, which in turn is
used by attached sinks to return the hotplug detect signal.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
arch/arm/boot/dts/tegra30-beaver.dts | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/arch/arm/boot/dts/tegra30-beaver.dts b/arch/arm/boot/dts/tegra30-beaver.dts
index e7a9da968f3b..7365e866540b 100644
--- a/arch/arm/boot/dts/tegra30-beaver.dts
+++ b/arch/arm/boot/dts/tegra30-beaver.dts
@@ -40,6 +40,7 @@
hdmi at 54280000 {
status = "okay";
+ hdmi-supply = <&vdd_5v0_hdmi>;
vdd-supply = <&sys_3v3_reg>;
pll-supply = <&vio_reg>;
@@ -478,6 +479,17 @@
gpio = <&gpio TEGRA_GPIO(L, 7) GPIO_ACTIVE_HIGH>;
vin-supply = <&sys_3v3_reg>;
};
+
+ vdd_5v0_hdmi: regulator at 8 {
+ compatible = "regulator-fixed";
+ reg = <8>;
+ regulator-name = "+VDD_5V_HDMI";
+ regulator-min-microvolt = <5000000>;
+ regulator-max-microvolt = <5000000>;
+ regulator-always-on;
+ regulator-boot-on;
+ vin-supply = <&sys_3v3_reg>;
+ };
};
sound {
--
1.9.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 6/7] ARM: tegra: dalmore - Add +5V HDMI supply
2014-04-25 15:44 [PATCH 0/7] ARM: tegra: HDMI and DSI updates Thierry Reding
` (4 preceding siblings ...)
2014-04-25 15:44 ` [PATCH 5/7] ARM: tegra: beaver " Thierry Reding
@ 2014-04-25 15:44 ` Thierry Reding
2014-04-25 15:44 ` [PATCH 7/7] ARM: tegra: dalmore - Add DSI power supply Thierry Reding
2014-04-28 16:04 ` [PATCH 0/7] ARM: tegra: HDMI and DSI updates Stephen Warren
7 siblings, 0 replies; 9+ messages in thread
From: Thierry Reding @ 2014-04-25 15:44 UTC (permalink / raw)
To: linux-arm-kernel
From: Thierry Reding <treding@nvidia.com>
This supply controls the +5V pin on the HDMI connector, which in turn is
used by attached sinks to return the hotplug detect signal.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
Note: Unfortunately I do have an A05 Dalmore, and from what I can tell
HDMI is actually one of the areas where there have been changes between
A04 and A05. It'd be great if somebody could check that this actually
works. Also note that it requires Tegra DRM patches that are currently
in linux-next to enable the +5V regulator.
arch/arm/boot/dts/tegra114-dalmore.dts | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boot/dts/tegra114-dalmore.dts b/arch/arm/boot/dts/tegra114-dalmore.dts
index df22dfad7db7..1309c75c821c 100644
--- a/arch/arm/boot/dts/tegra114-dalmore.dts
+++ b/arch/arm/boot/dts/tegra114-dalmore.dts
@@ -25,6 +25,7 @@
hdmi at 54280000 {
status = "okay";
+ hdmi-supply = <&vdd_5v0_hdmi>;
vdd-supply = <&vdd_hdmi_reg>;
pll-supply = <&palmas_smps3_reg>;
@@ -1231,8 +1232,6 @@
regulator-name = "vdd_hdmi_5v0";
regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>;
- enable-active-high;
- gpio = <&gpio TEGRA_GPIO(K, 1) GPIO_ACTIVE_HIGH>;
vin-supply = <&tps65090_dcdc1_reg>;
};
@@ -1245,6 +1244,17 @@
enable-active-high;
gpio = <&palmas_gpio 6 0>;
};
+
+ vdd_5v0_hdmi: regulator at 7 {
+ compatible = "regulator-fixed";
+ reg = <7>;
+ regulator-name = "VDD_5V0_HDMI_CON";
+ regulator-min-microvolt = <5000000>;
+ regulator-max-microvolt = <5000000>;
+ gpio = <&gpio TEGRA_GPIO(K, 1) GPIO_ACTIVE_HIGH>;
+ enable-active-high;
+ vin-supply = <&tps65090_dcdc1_reg>;
+ };
};
sound {
--
1.9.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 7/7] ARM: tegra: dalmore - Add DSI power supply
2014-04-25 15:44 [PATCH 0/7] ARM: tegra: HDMI and DSI updates Thierry Reding
` (5 preceding siblings ...)
2014-04-25 15:44 ` [PATCH 6/7] ARM: tegra: dalmore " Thierry Reding
@ 2014-04-25 15:44 ` Thierry Reding
2014-04-28 16:04 ` [PATCH 0/7] ARM: tegra: HDMI and DSI updates Stephen Warren
7 siblings, 0 replies; 9+ messages in thread
From: Thierry Reding @ 2014-04-25 15:44 UTC (permalink / raw)
To: linux-arm-kernel
From: Thierry Reding <treding@nvidia.com>
The 1.2V supply for CSI and DSI was previously marked always-on. This is
suboptimal because it prevents the supply from being disabled when there
is no activity in the display or capture paths that it powers.
Hook up the regulator to the DSI output and mark it as not always-on, so
that it will only be enabled when DSI actually needs it.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
arch/arm/boot/dts/tegra114-dalmore.dts | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm/boot/dts/tegra114-dalmore.dts b/arch/arm/boot/dts/tegra114-dalmore.dts
index 1309c75c821c..9cd09b63b900 100644
--- a/arch/arm/boot/dts/tegra114-dalmore.dts
+++ b/arch/arm/boot/dts/tegra114-dalmore.dts
@@ -37,6 +37,8 @@
dsi at 54300000 {
status = "okay";
+ avdd-dsi-csi-supply = <&avdd_1v2_reg>;
+
panel at 0 {
compatible = "panasonic,vvx10f004b00",
"simple-panel";
@@ -983,12 +985,10 @@
regulator-max-microvolt = <2800000>;
};
- ldo3 {
+ avdd_1v2_reg: ldo3 {
regulator-name = "avdd-dsi-csi";
regulator-min-microvolt = <1200000>;
regulator-max-microvolt = <1200000>;
- regulator-always-on;
- regulator-boot-on;
};
ldo4 {
--
1.9.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 0/7] ARM: tegra: HDMI and DSI updates
2014-04-25 15:44 [PATCH 0/7] ARM: tegra: HDMI and DSI updates Thierry Reding
` (6 preceding siblings ...)
2014-04-25 15:44 ` [PATCH 7/7] ARM: tegra: dalmore - Add DSI power supply Thierry Reding
@ 2014-04-28 16:04 ` Stephen Warren
7 siblings, 0 replies; 9+ messages in thread
From: Stephen Warren @ 2014-04-28 16:04 UTC (permalink / raw)
To: linux-arm-kernel
On 04/25/2014 09:44 AM, Thierry Reding wrote:
> From: Thierry Reding <treding@nvidia.com>
>
> This series enables support for HDMI on Venice2 and Jetson TK1. It also
> adds the missing +5V regulators for Harmony, Beaver and Dalmore. Other
> boards may also need similar changes, but I don't have access to them.
> That said existing boards should continue to work without modifications
> since we were completely ignoring the +5V regulator before. So the only
> change that this should introduce is that perhaps some additional power
> can be saved because the +5V regulator now isn't always on.
>
> The final patch in this series hooks up the DSI power supply on Dalmore
> so that it can also be switched of if not used.
I've applied the series to Tegra's for-3.16/dt branch.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2014-04-28 16:04 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-25 15:44 [PATCH 0/7] ARM: tegra: HDMI and DSI updates Thierry Reding
2014-04-25 15:44 ` [PATCH 1/7] ARM: tegra: Add Tegra124 HDMI support Thierry Reding
2014-04-25 15:44 ` [PATCH 2/7] ARM: tegra: venice2 - Enable HDMI Thierry Reding
2014-04-25 15:44 ` [PATCH 3/7] ARM: tegra: jetson-tk1 - Enable HDMI support Thierry Reding
2014-04-25 15:44 ` [PATCH 4/7] ARM: tegra: harmony - Add +5V HDMI supply Thierry Reding
2014-04-25 15:44 ` [PATCH 5/7] ARM: tegra: beaver " Thierry Reding
2014-04-25 15:44 ` [PATCH 6/7] ARM: tegra: dalmore " Thierry Reding
2014-04-25 15:44 ` [PATCH 7/7] ARM: tegra: dalmore - Add DSI power supply Thierry Reding
2014-04-28 16:04 ` [PATCH 0/7] ARM: tegra: HDMI and DSI updates Stephen Warren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).