2023-03-26 20:45:47

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [PATCH 1/4] dt-bindings: display: xinpeng,xpp055c272: document port

Panels are supposed to have one port (defined in panel-common.yaml
binding):

px30-evb.dtb: panel@0: 'port' does not match any of the regexes: 'pinctrl-[0-9]+'

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
.../bindings/display/panel/xinpeng,xpp055c272.yaml | 8 ++++++++
1 file changed, 8 insertions(+)

diff --git a/Documentation/devicetree/bindings/display/panel/xinpeng,xpp055c272.yaml b/Documentation/devicetree/bindings/display/panel/xinpeng,xpp055c272.yaml
index d5c46a3cc2b0..c407deb6afb1 100644
--- a/Documentation/devicetree/bindings/display/panel/xinpeng,xpp055c272.yaml
+++ b/Documentation/devicetree/bindings/display/panel/xinpeng,xpp055c272.yaml
@@ -17,6 +17,7 @@ properties:
const: xinpeng,xpp055c272
reg: true
backlight: true
+ port: true
reset-gpios: true
iovcc-supply:
description: regulator that supplies the iovcc voltage
@@ -27,6 +28,7 @@ required:
- compatible
- reg
- backlight
+ - port
- iovcc-supply
- vci-supply

@@ -44,6 +46,12 @@ examples:
backlight = <&backlight>;
iovcc-supply = <&vcc_1v8>;
vci-supply = <&vcc3v3_lcd>;
+
+ port {
+ mipi_in_panel: endpoint {
+ remote-endpoint = <&mipi_out_panel>;
+ };
+ };
};
};

--
2.34.1


2023-03-26 20:45:52

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [PATCH 2/4] dt-bindings: display: feiyang,fy07024di26a30d: document port

Panels are supposed to have one port (defined in panel-common.yaml
binding):

rk3399-rockpro64.dtb: panel@0: 'port' does not match any of the regexes: 'pinctrl-[0-9]+'

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
.../bindings/display/panel/feiyang,fy07024di26a30d.yaml | 8 ++++++++
1 file changed, 8 insertions(+)

diff --git a/Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml b/Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
index 1cf84c8dd85e..92df69e80a82 100644
--- a/Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
+++ b/Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
@@ -26,6 +26,7 @@ properties:
dvdd-supply:
description: 3v3 digital regulator

+ port: true
reset-gpios: true

backlight: true
@@ -35,6 +36,7 @@ required:
- reg
- avdd-supply
- dvdd-supply
+ - port

additionalProperties: false

@@ -53,5 +55,11 @@ examples:
dvdd-supply = <&reg_dldo2>;
reset-gpios = <&pio 3 24 GPIO_ACTIVE_HIGH>; /* LCD-RST: PD24 */
backlight = <&backlight>;
+
+ port {
+ mipi_in_panel: endpoint {
+ remote-endpoint = <&mipi_out_panel>;
+ };
+ };
};
};
--
2.34.1

2023-03-26 20:45:56

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [PATCH 4/4] dt-bindings: display: sitronix,st7701: document port and rotation

Panels are supposed to have one port (defined in panel-common.yaml
binding) and can have also rotation:

rk3326-odroid-go3.dtb: panel@0: 'port', 'rotation' do not match any of the regexes: 'pinctrl-[0-9]+'

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
.../bindings/display/panel/sitronix,st7701.yaml | 9 +++++++++
1 file changed, 9 insertions(+)

diff --git a/Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml b/Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
index 83d30eadf7d9..4dc0cd4a6a77 100644
--- a/Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
+++ b/Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
@@ -42,7 +42,9 @@ properties:
IOVCC-supply:
description: I/O system regulator

+ port: true
reset-gpios: true
+ rotation: true

backlight: true

@@ -51,6 +53,7 @@ required:
- reg
- VCC-supply
- IOVCC-supply
+ - port
- reset-gpios

additionalProperties: false
@@ -70,5 +73,11 @@ examples:
IOVCC-supply = <&reg_dldo2>;
reset-gpios = <&pio 3 24 GPIO_ACTIVE_HIGH>; /* LCD-RST: PD24 */
backlight = <&backlight>;
+
+ port {
+ mipi_in_panel: endpoint {
+ remote-endpoint = <&mipi_out_panel>;
+ };
+ };
};
};
--
2.34.1

2023-03-27 07:42:57

by Neil Armstrong

[permalink] [raw]
Subject: Re: [PATCH 1/4] dt-bindings: display: xinpeng,xpp055c272: document port

On 26/03/2023 22:42, Krzysztof Kozlowski wrote:
> Panels are supposed to have one port (defined in panel-common.yaml
> binding):
>
> px30-evb.dtb: panel@0: 'port' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---
> .../bindings/display/panel/xinpeng,xpp055c272.yaml | 8 ++++++++
> 1 file changed, 8 insertions(+)

<snip>

Reviewed-by: Neil Armstrong <[email protected]>

2023-03-27 07:43:12

by Neil Armstrong

[permalink] [raw]
Subject: Re: [PATCH 2/4] dt-bindings: display: feiyang,fy07024di26a30d: document port

On 26/03/2023 22:42, Krzysztof Kozlowski wrote:
> Panels are supposed to have one port (defined in panel-common.yaml
> binding):
>
> rk3399-rockpro64.dtb: panel@0: 'port' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---
> .../bindings/display/panel/feiyang,fy07024di26a30d.yaml | 8 ++++++++
> 1 file changed, 8 insertions(+)

<snip>

Reviewed-by: Neil Armstrong <[email protected]>

2023-03-27 07:43:49

by Neil Armstrong

[permalink] [raw]
Subject: Re: [PATCH 4/4] dt-bindings: display: sitronix,st7701: document port and rotation

On 26/03/2023 22:42, Krzysztof Kozlowski wrote:
> Panels are supposed to have one port (defined in panel-common.yaml
> binding) and can have also rotation:
>
> rk3326-odroid-go3.dtb: panel@0: 'port', 'rotation' do not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---
> .../bindings/display/panel/sitronix,st7701.yaml | 9 +++++++++
> 1 file changed, 9 insertions(+)

<snip>

Reviewed-by: Neil Armstrong <[email protected]>

2023-03-28 18:06:58

by Jagan Teki

[permalink] [raw]
Subject: Re: [PATCH 1/4] dt-bindings: display: xinpeng,xpp055c272: document port

On Mon, Mar 27, 2023 at 2:12 AM Krzysztof Kozlowski
<[email protected]> wrote:
>
> Panels are supposed to have one port (defined in panel-common.yaml
> binding):
>
> px30-evb.dtb: panel@0: 'port' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---

Reviewed-by: Jagan Teki <[email protected]>

2023-03-28 18:32:17

by Jagan Teki

[permalink] [raw]
Subject: Re: [PATCH 4/4] dt-bindings: display: sitronix,st7701: document port and rotation

On Mon, Mar 27, 2023 at 2:12 AM Krzysztof Kozlowski
<[email protected]> wrote:
>
> Panels are supposed to have one port (defined in panel-common.yaml
> binding) and can have also rotation:
>
> rk3326-odroid-go3.dtb: panel@0: 'port', 'rotation' do not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---

Reviewed-by: Jagan Teki <[email protected]>

2023-03-28 18:38:30

by Jagan Teki

[permalink] [raw]
Subject: Re: [PATCH 2/4] dt-bindings: display: feiyang,fy07024di26a30d: document port

On Mon, Mar 27, 2023 at 2:12 AM Krzysztof Kozlowski
<[email protected]> wrote:
>
> Panels are supposed to have one port (defined in panel-common.yaml
> binding):
>
> rk3399-rockpro64.dtb: panel@0: 'port' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---

Reviewed-by: Jagan Teki <[email protected]>

2023-03-31 19:55:16

by Rob Herring (Arm)

[permalink] [raw]
Subject: Re: [PATCH 1/4] dt-bindings: display: xinpeng,xpp055c272: document port

On Sun, Mar 26, 2023 at 10:42:21PM +0200, Krzysztof Kozlowski wrote:
> Panels are supposed to have one port (defined in panel-common.yaml
> binding):
>
> px30-evb.dtb: panel@0: 'port' does not match any of the regexes: 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---
> .../bindings/display/panel/xinpeng,xpp055c272.yaml | 8 ++++++++
> 1 file changed, 8 insertions(+)

Applied series to drm-misc.

Rob