All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND] ARM: dts: ls1021a: Add of_graph dt nodes to describe the panel
@ 2016-09-06  9:45 ` Meng Yi
  0 siblings, 0 replies; 6+ messages in thread
From: Meng Yi @ 2016-09-06  9:45 UTC (permalink / raw)
  To: robh+dt, shawnguo, stefan; +Cc: devicetree, linux-kernel, Meng Yi

add of_graph dt nodes to describe the panel, and removed
"fsl,panel" property

Signed-off-by: Meng Yi <meng.yi@nxp.com>
---
 arch/arm/boot/dts/ls1021a-twr.dts | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/ls1021a-twr.dts b/arch/arm/boot/dts/ls1021a-twr.dts
index 75ecaed..a8b148a 100644
--- a/arch/arm/boot/dts/ls1021a-twr.dts
+++ b/arch/arm/boot/dts/ls1021a-twr.dts
@@ -108,12 +108,23 @@
 
 	panel: panel {
 		compatible = "nec,nl4827hc19-05b";
+
+		port {
+			panel_in: endpoint {
+				remote-endpoint = <&dcu_out>;
+			};
+		};
 	};
 };
 
 &dcu {
-	fsl,panel = <&panel>;
 	status = "okay";
+
+	port {
+		dcu_out: endpoint {
+			remote-endpoint = <&panel_in>;
+		};
+	};
 };
 
 &dspi1 {
-- 
2.1.0.27.g96db324

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

* [PATCH RESEND] ARM: dts: ls1021a: Add of_graph dt nodes to describe the panel
@ 2016-09-06  9:45 ` Meng Yi
  0 siblings, 0 replies; 6+ messages in thread
From: Meng Yi @ 2016-09-06  9:45 UTC (permalink / raw)
  To: robh+dt, shawnguo, stefan; +Cc: devicetree, linux-kernel, Meng Yi

add of_graph dt nodes to describe the panel, and removed
"fsl,panel" property

Signed-off-by: Meng Yi <meng.yi@nxp.com>
---
 arch/arm/boot/dts/ls1021a-twr.dts | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/ls1021a-twr.dts b/arch/arm/boot/dts/ls1021a-twr.dts
index 75ecaed..a8b148a 100644
--- a/arch/arm/boot/dts/ls1021a-twr.dts
+++ b/arch/arm/boot/dts/ls1021a-twr.dts
@@ -108,12 +108,23 @@
 
 	panel: panel {
 		compatible = "nec,nl4827hc19-05b";
+
+		port {
+			panel_in: endpoint {
+				remote-endpoint = <&dcu_out>;
+			};
+		};
 	};
 };
 
 &dcu {
-	fsl,panel = <&panel>;
 	status = "okay";
+
+	port {
+		dcu_out: endpoint {
+			remote-endpoint = <&panel_in>;
+		};
+	};
 };
 
 &dspi1 {
-- 
2.1.0.27.g96db324

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

* Re: [PATCH RESEND] ARM: dts: ls1021a: Add of_graph dt nodes to describe the panel
@ 2016-09-06 18:32   ` Stefan Agner
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Agner @ 2016-09-06 18:32 UTC (permalink / raw)
  To: shawnguo, Meng Yi; +Cc: robh+dt, devicetree, linux-kernel

On 2016-09-06 02:45, Meng Yi wrote:
> add of_graph dt nodes to describe the panel, and removed
> "fsl,panel" property
> 
> Signed-off-by: Meng Yi <meng.yi@nxp.com>

Shawn, the changes required to the DCU driver made it into v4.8, so this
can be applied now. I will send out a patch which does the same
conversion for the remaining boards.

Acked-by: Stefan Agner <stefan@agner.ch>

--
Stefan

> ---
>  arch/arm/boot/dts/ls1021a-twr.dts | 13 ++++++++++++-
>  1 file changed, 12 insertions(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/ls1021a-twr.dts
> b/arch/arm/boot/dts/ls1021a-twr.dts
> index 75ecaed..a8b148a 100644
> --- a/arch/arm/boot/dts/ls1021a-twr.dts
> +++ b/arch/arm/boot/dts/ls1021a-twr.dts
> @@ -108,12 +108,23 @@
>  
>  	panel: panel {
>  		compatible = "nec,nl4827hc19-05b";
> +
> +		port {
> +			panel_in: endpoint {
> +				remote-endpoint = <&dcu_out>;
> +			};
> +		};
>  	};
>  };
>  
>  &dcu {
> -	fsl,panel = <&panel>;
>  	status = "okay";
> +
> +	port {
> +		dcu_out: endpoint {
> +			remote-endpoint = <&panel_in>;
> +		};
> +	};
>  };
>  
>  &dspi1 {

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

* Re: [PATCH RESEND] ARM: dts: ls1021a: Add of_graph dt nodes to describe the panel
@ 2016-09-06 18:32   ` Stefan Agner
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Agner @ 2016-09-06 18:32 UTC (permalink / raw)
  To: shawnguo-DgEjT+Ai2ygdnm+yROfE0A, Meng Yi
  Cc: robh+dt-DgEjT+Ai2ygdnm+yROfE0A,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

On 2016-09-06 02:45, Meng Yi wrote:
> add of_graph dt nodes to describe the panel, and removed
> "fsl,panel" property
> 
> Signed-off-by: Meng Yi <meng.yi-3arQi8VN3Tc@public.gmane.org>

Shawn, the changes required to the DCU driver made it into v4.8, so this
can be applied now. I will send out a patch which does the same
conversion for the remaining boards.

Acked-by: Stefan Agner <stefan-XLVq0VzYD2Y@public.gmane.org>

--
Stefan

> ---
>  arch/arm/boot/dts/ls1021a-twr.dts | 13 ++++++++++++-
>  1 file changed, 12 insertions(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/ls1021a-twr.dts
> b/arch/arm/boot/dts/ls1021a-twr.dts
> index 75ecaed..a8b148a 100644
> --- a/arch/arm/boot/dts/ls1021a-twr.dts
> +++ b/arch/arm/boot/dts/ls1021a-twr.dts
> @@ -108,12 +108,23 @@
>  
>  	panel: panel {
>  		compatible = "nec,nl4827hc19-05b";
> +
> +		port {
> +			panel_in: endpoint {
> +				remote-endpoint = <&dcu_out>;
> +			};
> +		};
>  	};
>  };
>  
>  &dcu {
> -	fsl,panel = <&panel>;
>  	status = "okay";
> +
> +	port {
> +		dcu_out: endpoint {
> +			remote-endpoint = <&panel_in>;
> +		};
> +	};
>  };
>  
>  &dspi1 {
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH RESEND] ARM: dts: ls1021a: Add of_graph dt nodes to describe the panel
@ 2016-09-08 14:09   ` Shawn Guo
  0 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2016-09-08 14:09 UTC (permalink / raw)
  To: Meng Yi; +Cc: robh+dt, stefan, devicetree, linux-kernel

On Tue, Sep 06, 2016 at 05:45:34PM +0800, Meng Yi wrote:
> add of_graph dt nodes to describe the panel, and removed
> "fsl,panel" property
> 
> Signed-off-by: Meng Yi <meng.yi@nxp.com>

Applied, thanks.

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

* Re: [PATCH RESEND] ARM: dts: ls1021a: Add of_graph dt nodes to describe the panel
@ 2016-09-08 14:09   ` Shawn Guo
  0 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2016-09-08 14:09 UTC (permalink / raw)
  To: Meng Yi
  Cc: robh+dt-DgEjT+Ai2ygdnm+yROfE0A, stefan-XLVq0VzYD2Y,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

On Tue, Sep 06, 2016 at 05:45:34PM +0800, Meng Yi wrote:
> add of_graph dt nodes to describe the panel, and removed
> "fsl,panel" property
> 
> Signed-off-by: Meng Yi <meng.yi-3arQi8VN3Tc@public.gmane.org>

Applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2016-09-08 14:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-06  9:45 [PATCH RESEND] ARM: dts: ls1021a: Add of_graph dt nodes to describe the panel Meng Yi
2016-09-06  9:45 ` Meng Yi
2016-09-06 18:32 ` Stefan Agner
2016-09-06 18:32   ` Stefan Agner
2016-09-08 14:09 ` Shawn Guo
2016-09-08 14:09   ` Shawn Guo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.