* [PATCH] ARM: dts: ventana: Add HDMI support
@ 2014-04-23 7:47 Tim Harvey
2014-04-23 16:13 ` Stephen Warren
2014-04-29 5:34 ` Shawn Guo
0 siblings, 2 replies; 4+ messages in thread
From: Tim Harvey @ 2014-04-23 7:47 UTC (permalink / raw)
To: linux-arm-kernel
Configure ddc and enable HDMI
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
---
arch/arm/boot/dts/imx6q-gw5400-a.dts | 5 +++++
arch/arm/boot/dts/imx6qdl-gw51xx.dtsi | 5 +++++
arch/arm/boot/dts/imx6qdl-gw52xx.dtsi | 5 +++++
arch/arm/boot/dts/imx6qdl-gw53xx.dtsi | 5 +++++
arch/arm/boot/dts/imx6qdl-gw54xx.dtsi | 5 +++++
5 files changed, 25 insertions(+)
diff --git a/arch/arm/boot/dts/imx6q-gw5400-a.dts b/arch/arm/boot/dts/imx6q-gw5400-a.dts
index 902f983..609b0b9 100644
--- a/arch/arm/boot/dts/imx6q-gw5400-a.dts
+++ b/arch/arm/boot/dts/imx6q-gw5400-a.dts
@@ -157,6 +157,11 @@
status = "okay";
};
+&hdmi {
+ ddc-i2c-bus = <&i2c3>;
+ status = "okay";
+};
+
&i2c1 {
clock-frequency = <100000>;
pinctrl-names = "default";
diff --git a/arch/arm/boot/dts/imx6qdl-gw51xx.dtsi b/arch/arm/boot/dts/imx6qdl-gw51xx.dtsi
index 98a4221..31665ad 100644
--- a/arch/arm/boot/dts/imx6qdl-gw51xx.dtsi
+++ b/arch/arm/boot/dts/imx6qdl-gw51xx.dtsi
@@ -101,6 +101,11 @@
status = "okay";
};
+&hdmi {
+ ddc-i2c-bus = <&i2c3>;
+ status = "okay";
+};
+
&i2c1 {
clock-frequency = <100000>;
pinctrl-names = "default";
diff --git a/arch/arm/boot/dts/imx6qdl-gw52xx.dtsi b/arch/arm/boot/dts/imx6qdl-gw52xx.dtsi
index 8e99c9a..607888c 100644
--- a/arch/arm/boot/dts/imx6qdl-gw52xx.dtsi
+++ b/arch/arm/boot/dts/imx6qdl-gw52xx.dtsi
@@ -148,6 +148,11 @@
status = "okay";
};
+&hdmi {
+ ddc-i2c-bus = <&i2c3>;
+ status = "okay";
+};
+
&i2c1 {
clock-frequency = <100000>;
pinctrl-names = "default";
diff --git a/arch/arm/boot/dts/imx6qdl-gw53xx.dtsi b/arch/arm/boot/dts/imx6qdl-gw53xx.dtsi
index c8e5ae0..523f26f 100644
--- a/arch/arm/boot/dts/imx6qdl-gw53xx.dtsi
+++ b/arch/arm/boot/dts/imx6qdl-gw53xx.dtsi
@@ -157,6 +157,11 @@
status = "okay";
};
+&hdmi {
+ ddc-i2c-bus = <&i2c3>;
+ status = "okay";
+};
+
&i2c1 {
clock-frequency = <100000>;
pinctrl-names = "default";
diff --git a/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi b/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi
index 2795dfc..cab94bf 100644
--- a/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi
+++ b/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi
@@ -147,6 +147,11 @@
status = "okay";
};
+&hdmi {
+ ddc-i2c-bus = <&i2c3>;
+ status = "okay";
+};
+
&i2c1 {
clock-frequency = <100000>;
pinctrl-names = "default";
--
1.9.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] ARM: dts: ventana: Add HDMI support
2014-04-23 7:47 [PATCH] ARM: dts: ventana: Add HDMI support Tim Harvey
@ 2014-04-23 16:13 ` Stephen Warren
2014-04-23 21:52 ` Tim Harvey
2014-04-29 5:34 ` Shawn Guo
1 sibling, 1 reply; 4+ messages in thread
From: Stephen Warren @ 2014-04-23 16:13 UTC (permalink / raw)
To: linux-arm-kernel
On 04/23/2014 01:47 AM, Tim Harvey wrote:
> Configure ddc and enable HDMI
It would be nice if the patch subject included the SoC name rather than
"dts":
ARM: imx: add HDMI support for Ventana
or:
ARM: dts: imx: add HDMI support for Ventana
There's a Ventana board for both i.MX and Tegra, so this patch caught my
eye.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ARM: dts: ventana: Add HDMI support
2014-04-23 16:13 ` Stephen Warren
@ 2014-04-23 21:52 ` Tim Harvey
0 siblings, 0 replies; 4+ messages in thread
From: Tim Harvey @ 2014-04-23 21:52 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Apr 23, 2014 at 9:13 AM, Stephen Warren <swarren@wwwdotorg.org> wrote:
> On 04/23/2014 01:47 AM, Tim Harvey wrote:
>> Configure ddc and enable HDMI
>
> It would be nice if the patch subject included the SoC name rather than
> "dts":
>
> ARM: imx: add HDMI support for Ventana
> or:
> ARM: dts: imx: add HDMI support for Ventana
>
> There's a Ventana board for both i.MX and Tegra, so this patch caught my
> eye.
Stephen,
ok - I'll try to remember than for future patches.
Tim
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ARM: dts: ventana: Add HDMI support
2014-04-23 7:47 [PATCH] ARM: dts: ventana: Add HDMI support Tim Harvey
2014-04-23 16:13 ` Stephen Warren
@ 2014-04-29 5:34 ` Shawn Guo
1 sibling, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2014-04-29 5:34 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Apr 23, 2014 at 12:47:51AM -0700, Tim Harvey wrote:
> Configure ddc and enable HDMI
>
> Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-04-29 5:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-23 7:47 [PATCH] ARM: dts: ventana: Add HDMI support Tim Harvey
2014-04-23 16:13 ` Stephen Warren
2014-04-23 21:52 ` Tim Harvey
2014-04-29 5:34 ` Shawn Guo
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).