linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: stm32: enable display on stm32mp157c-ev1 board
@ 2018-08-21 12:58 Yannick Fertré
  2018-09-03 10:03 ` Alexandre Torgue
  2018-09-20 15:30 ` Alexandre Torgue
  0 siblings, 2 replies; 3+ messages in thread
From: Yannick Fertré @ 2018-08-21 12:58 UTC (permalink / raw)
  To: Maxime Coquelin, Alexandre Torgue, Rob Herring, Mark Rutland,
	devicetree, linux-kernel
  Cc: Benjamin Gaignard, Yannick Fertre, Patrice Chotard, Philippe Cornu

Enable panel raydium RM68200, DSI bridge & display controller.

Signed-off-by: Yannick Fertré <yannick.fertre@st.com>
---
 arch/arm/boot/dts/stm32mp157c-ev1.dts | 60 +++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/arch/arm/boot/dts/stm32mp157c-ev1.dts b/arch/arm/boot/dts/stm32mp157c-ev1.dts
index 372bc2e..cd9062a 100644
--- a/arch/arm/boot/dts/stm32mp157c-ev1.dts
+++ b/arch/arm/boot/dts/stm32mp157c-ev1.dts
@@ -6,6 +6,7 @@
 /dts-v1/;
 
 #include "stm32mp157c-ed1.dts"
+#include <dt-bindings/gpio/gpio.h>
 
 / {
 	model = "STMicroelectronics STM32MP157C eval daughter on eval mother";
@@ -19,6 +20,12 @@
 		serial0 = &uart4;
 		ethernet0 = &ethernet0;
 	};
+	panel_backlight: panel-backlight {
+		compatible = "gpio-backlight";
+		gpios = <&gpiod 13 GPIO_ACTIVE_LOW>;
+		default-on;
+		status = "okay";
+	};
 };
 
 &ethernet0 {
@@ -46,6 +53,45 @@
 	status = "okay";
 };
 
+&dsi {
+	#address-cells = <1>;
+	#size-cells = <0>;
+	status = "okay";
+
+	ports {
+		#address-cells = <1>;
+		#size-cells = <0>;
+
+		port@0 {
+			reg = <0>;
+			dsi_in: endpoint {
+				remote-endpoint = <&ltdc_ep0_out>;
+			};
+		};
+
+		port@1 {
+			reg = <1>;
+			dsi_out: endpoint {
+				remote-endpoint = <&dsi_panel_in>;
+			};
+		};
+	};
+
+	panel-dsi@0 {
+		compatible = "raydium,rm68200";
+		reg = <0>;
+		reset-gpios = <&gpiof 15 GPIO_ACTIVE_LOW>;
+		backlight = <&panel_backlight>;
+		status = "okay";
+
+		port {
+			dsi_panel_in: endpoint {
+				remote-endpoint = <&dsi_out>;
+			};
+		};
+	};
+};
+
 &i2c2 {
 	pinctrl-names = "default";
 	pinctrl-0 = <&i2c2_pins_a>;
@@ -62,6 +108,20 @@
 	status = "okay";
 };
 
+&ltdc {
+	status = "okay";
+
+	port {
+		#address-cells = <1>;
+		#size-cells = <0>;
+
+		ltdc_ep0_out: endpoint@0 {
+			reg = <0>;
+			remote-endpoint = <&dsi_in>;
+		};
+	};
+};
+
 &m_can1 {
 	pinctrl-names = "default";
 	pinctrl-0 = <&m_can1_pins_a>;
-- 
2.7.4


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

* Re: [PATCH] ARM: dts: stm32: enable display on stm32mp157c-ev1 board
  2018-08-21 12:58 [PATCH] ARM: dts: stm32: enable display on stm32mp157c-ev1 board Yannick Fertré
@ 2018-09-03 10:03 ` Alexandre Torgue
  2018-09-20 15:30 ` Alexandre Torgue
  1 sibling, 0 replies; 3+ messages in thread
From: Alexandre Torgue @ 2018-09-03 10:03 UTC (permalink / raw)
  To: Yannick Fertré,
	Maxime Coquelin, Rob Herring, Mark Rutland, devicetree,
	linux-kernel
  Cc: Benjamin Gaignard, Patrice Chotard, Philippe Cornu

Hi Yannick,

On 08/21/2018 02:58 PM, Yannick Fertré wrote:
> Enable panel raydium RM68200, DSI bridge & display controller.
> 
> Signed-off-by: Yannick Fertré <yannick.fertre@st.com>
> ---
>   arch/arm/boot/dts/stm32mp157c-ev1.dts | 60 +++++++++++++++++++++++++++++++++++
>   1 file changed, 60 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/stm32mp157c-ev1.dts b/arch/arm/boot/dts/stm32mp157c-ev1.dts
> index 372bc2e..cd9062a 100644
> --- a/arch/arm/boot/dts/stm32mp157c-ev1.dts
> +++ b/arch/arm/boot/dts/stm32mp157c-ev1.dts
> @@ -6,6 +6,7 @@
>   /dts-v1/;
>   
>   #include "stm32mp157c-ed1.dts"
> +#include <dt-bindings/gpio/gpio.h>
>   
>   / {
>   	model = "STMicroelectronics STM32MP157C eval daughter on eval mother";
> @@ -19,6 +20,12 @@
>   		serial0 = &uart4;
>   		ethernet0 = &ethernet0;
>   	};
> +	panel_backlight: panel-backlight {
> +		compatible = "gpio-backlight";
> +		gpios = <&gpiod 13 GPIO_ACTIVE_LOW>;
> +		default-on;
> +		status = "okay";
> +	};
>   };
>   
>   &ethernet0 {
> @@ -46,6 +53,45 @@
>   	status = "okay";
>   };
>   
> +&dsi {

Can you check ordering please ?

> +	#address-cells = <1>;
> +	#size-cells = <0>;
> +	status = "okay";
> +
> +	ports {
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +
> +		port@0 {
> +			reg = <0>;
> +			dsi_in: endpoint {
> +				remote-endpoint = <&ltdc_ep0_out>;
> +			};
> +		};
> +
> +		port@1 {
> +			reg = <1>;
> +			dsi_out: endpoint {
> +				remote-endpoint = <&dsi_panel_in>;
> +			};
> +		};
> +	};
> +
> +	panel-dsi@0 {
> +		compatible = "raydium,rm68200";
> +		reg = <0>;
> +		reset-gpios = <&gpiof 15 GPIO_ACTIVE_LOW>;
> +		backlight = <&panel_backlight>;
> +		status = "okay";
> +
> +		port {
> +			dsi_panel_in: endpoint {
> +				remote-endpoint = <&dsi_out>;
> +			};
> +		};
> +	};
> +};
> +
>   &i2c2 {
>   	pinctrl-names = "default";
>   	pinctrl-0 = <&i2c2_pins_a>;
> @@ -62,6 +108,20 @@
>   	status = "okay";
>   };
>   
> +&ltdc {
> +	status = "okay";
> +
> +	port {
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +
> +		ltdc_ep0_out: endpoint@0 {
> +			reg = <0>;
> +			remote-endpoint = <&dsi_in>;
> +		};
> +	};
> +};
> +
>   &m_can1 {
>   	pinctrl-names = "default";
>   	pinctrl-0 = <&m_can1_pins_a>;
> 

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

* Re: [PATCH] ARM: dts: stm32: enable display on stm32mp157c-ev1 board
  2018-08-21 12:58 [PATCH] ARM: dts: stm32: enable display on stm32mp157c-ev1 board Yannick Fertré
  2018-09-03 10:03 ` Alexandre Torgue
@ 2018-09-20 15:30 ` Alexandre Torgue
  1 sibling, 0 replies; 3+ messages in thread
From: Alexandre Torgue @ 2018-09-20 15:30 UTC (permalink / raw)
  To: Yannick Fertré,
	Maxime Coquelin, Rob Herring, Mark Rutland, devicetree,
	linux-kernel
  Cc: Benjamin Gaignard, Patrice Chotard, Philippe Cornu

Hi Yannick

On 08/21/2018 02:58 PM, Yannick Fertré wrote:
> Enable panel raydium RM68200, DSI bridge & display controller.
> 
> Signed-off-by: Yannick Fertré <yannick.fertre@st.com>
> ---

Applied on stm32-next.

Thanks.
Alex


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

end of thread, other threads:[~2018-09-20 15:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-21 12:58 [PATCH] ARM: dts: stm32: enable display on stm32mp157c-ev1 board Yannick Fertré
2018-09-03 10:03 ` Alexandre Torgue
2018-09-20 15:30 ` Alexandre Torgue

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).