linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: dts: mx5: Fix IPU port node placement
@ 2014-06-13  0:22 Marek Vasut
  2014-06-13  0:22 ` [PATCH 2/2] ARM: dts: mx5: Move the display out of soc {} node Marek Vasut
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Marek Vasut @ 2014-06-13  0:22 UTC (permalink / raw)
  To: linux-arm-kernel

The "port" node was misplaced in the original patch, therefore making
the LCD dysfunctional on this board. Fix this by moving the "port" DT
node into the "display {}" node.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Shawn Guo <shawn.guo@linaro.org>
Cc: Philipp Zabel <p.zabel@pengutronix.de>
---
 arch/arm/boot/dts/imx53-m53evk.dts | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/boot/dts/imx53-m53evk.dts b/arch/arm/boot/dts/imx53-m53evk.dts
index d5d146a..3a04b9e 100644
--- a/arch/arm/boot/dts/imx53-m53evk.dts
+++ b/arch/arm/boot/dts/imx53-m53evk.dts
@@ -43,11 +43,11 @@
 					vsync-active = <1>;
 				};
 			};
-		};
 
-		port {
-			display1_in: endpoint {
-				remote-endpoint = <&ipu_di1_disp1>;
+			port {
+				display1_in: endpoint {
+					remote-endpoint = <&ipu_di1_disp1>;
+				};
 			};
 		};
 	};
-- 
2.0.0.rc2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] ARM: dts: mx5: Move the display out of soc {} node
  2014-06-13  0:22 [PATCH 1/2] ARM: dts: mx5: Fix IPU port node placement Marek Vasut
@ 2014-06-13  0:22 ` Marek Vasut
  2014-06-13  7:45 ` [PATCH 1/2] ARM: dts: mx5: Fix IPU port node placement Philipp Zabel
  2014-06-21  4:40 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Marek Vasut @ 2014-06-13  0:22 UTC (permalink / raw)
  To: linux-arm-kernel

Move the display {} node out of the soc {} node . This just aligns
the DT with other boards, there is no functional change.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Shawn Guo <shawn.guo@linaro.org>
---
 arch/arm/boot/dts/imx53-m53evk.dts | 48 ++++++++++++++++++--------------------
 1 file changed, 23 insertions(+), 25 deletions(-)

diff --git a/arch/arm/boot/dts/imx53-m53evk.dts b/arch/arm/boot/dts/imx53-m53evk.dts
index 3a04b9e..c4956b0 100644
--- a/arch/arm/boot/dts/imx53-m53evk.dts
+++ b/arch/arm/boot/dts/imx53-m53evk.dts
@@ -21,33 +21,31 @@
 		      <0xb0000000 0x20000000>;
 	};
 
-	soc {
-		display1: display at di1 {
-			compatible = "fsl,imx-parallel-display";
-			interface-pix-fmt = "bgr666";
-			pinctrl-names = "default";
-			pinctrl-0 = <&pinctrl_ipu_disp1>;
-
-			display-timings {
-				800x480p60 {
-					native-mode;
-					clock-frequency = <31500000>;
-					hactive = <800>;
-					vactive = <480>;
-					hfront-porch = <40>;
-					hback-porch = <88>;
-					hsync-len = <128>;
-					vback-porch = <33>;
-					vfront-porch = <9>;
-					vsync-len = <3>;
-					vsync-active = <1>;
-				};
+	display1: display at di1 {
+		compatible = "fsl,imx-parallel-display";
+		interface-pix-fmt = "bgr666";
+		pinctrl-names = "default";
+		pinctrl-0 = <&pinctrl_ipu_disp1>;
+
+		display-timings {
+			800x480p60 {
+				native-mode;
+				clock-frequency = <31500000>;
+				hactive = <800>;
+				vactive = <480>;
+				hfront-porch = <40>;
+				hback-porch = <88>;
+				hsync-len = <128>;
+				vback-porch = <33>;
+				vfront-porch = <9>;
+				vsync-len = <3>;
+				vsync-active = <1>;
 			};
+		};
 
-			port {
-				display1_in: endpoint {
-					remote-endpoint = <&ipu_di1_disp1>;
-				};
+		port {
+			display1_in: endpoint {
+				remote-endpoint = <&ipu_di1_disp1>;
 			};
 		};
 	};
-- 
2.0.0.rc2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 1/2] ARM: dts: mx5: Fix IPU port node placement
  2014-06-13  0:22 [PATCH 1/2] ARM: dts: mx5: Fix IPU port node placement Marek Vasut
  2014-06-13  0:22 ` [PATCH 2/2] ARM: dts: mx5: Move the display out of soc {} node Marek Vasut
@ 2014-06-13  7:45 ` Philipp Zabel
  2014-06-21  4:40 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Philipp Zabel @ 2014-06-13  7:45 UTC (permalink / raw)
  To: linux-arm-kernel

Am Freitag, den 13.06.2014, 02:22 +0200 schrieb Marek Vasut:
> The "port" node was misplaced in the original patch, therefore making
> the LCD dysfunctional on this board. Fix this by moving the "port" DT
> node into the "display {}" node.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Shawn Guo <shawn.guo@linaro.org>
> Cc: Philipp Zabel <p.zabel@pengutronix.de>

Acked-by: Philipp Zabel <p.zabel@pengutronix.de>

thanks
Philipp

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] ARM: dts: mx5: Fix IPU port node placement
  2014-06-13  0:22 [PATCH 1/2] ARM: dts: mx5: Fix IPU port node placement Marek Vasut
  2014-06-13  0:22 ` [PATCH 2/2] ARM: dts: mx5: Move the display out of soc {} node Marek Vasut
  2014-06-13  7:45 ` [PATCH 1/2] ARM: dts: mx5: Fix IPU port node placement Philipp Zabel
@ 2014-06-21  4:40 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2014-06-21  4:40 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Jun 13, 2014 at 02:22:39AM +0200, Marek Vasut wrote:
> The "port" node was misplaced in the original patch, therefore making
> the LCD dysfunctional on this board. Fix this by moving the "port" DT
> node into the "display {}" node.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>

Applied both, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-06-21  4:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-13  0:22 [PATCH 1/2] ARM: dts: mx5: Fix IPU port node placement Marek Vasut
2014-06-13  0:22 ` [PATCH 2/2] ARM: dts: mx5: Move the display out of soc {} node Marek Vasut
2014-06-13  7:45 ` [PATCH 1/2] ARM: dts: mx5: Fix IPU port node placement Philipp Zabel
2014-06-21  4:40 ` 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).