Skip to content

Commit 467fbc7

Browse files
committed
dt-bindings: display: panel: visionox,vtdr6130: add missing reg property
Add missing reg property and update example to add dsi top node. Fixes: ef85db9 ("dt-bindings: display: panel: document the Visionox VTDR6130 AMOLED DSI Panel") Acked-by: Sam Ravnborg <[email protected]> Acked-by: Rob Herring <[email protected]> Reviewed-by: Krzysztof Kozlowski <[email protected]> Signed-off-by: Neil Armstrong <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/20230207-topic-sm8550-upstream-vtdr6130-bindings-fix-v1-1-0ba2323420c5@linaro.org
1 parent a4e7717 commit 467fbc7

File tree

1 file changed

+22
-12
lines changed

1 file changed

+22
-12
lines changed

Documentation/devicetree/bindings/display/panel/visionox,vtdr6130.yaml

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ properties:
1616
compatible:
1717
const: visionox,vtdr6130
1818

19+
reg:
20+
maxItems: 1
21+
description: DSI virtual channel
22+
1923
vddio-supply: true
2024
vci-supply: true
2125
vdd-supply: true
@@ -26,6 +30,7 @@ additionalProperties: false
2630

2731
required:
2832
- compatible
33+
- reg
2934
- vddio-supply
3035
- vci-supply
3136
- vdd-supply
@@ -35,18 +40,23 @@ required:
3540
examples:
3641
- |
3742
#include <dt-bindings/gpio/gpio.h>
38-
panel {
39-
compatible = "visionox,vtdr6130";
40-
41-
vddio-supply = <&vreg_l12b_1p8>;
42-
vci-supply = <&vreg_l13b_3p0>;
43-
vdd-supply = <&vreg_l11b_1p2>;
44-
45-
reset-gpios = <&tlmm 133 GPIO_ACTIVE_LOW>;
46-
47-
port {
48-
panel0_in: endpoint {
49-
remote-endpoint = <&dsi0_out>;
43+
dsi {
44+
#address-cells = <1>;
45+
#size-cells = <0>;
46+
panel@0 {
47+
compatible = "visionox,vtdr6130";
48+
reg = <0>;
49+
50+
vddio-supply = <&vreg_l12b_1p8>;
51+
vci-supply = <&vreg_l13b_3p0>;
52+
vdd-supply = <&vreg_l11b_1p2>;
53+
54+
reset-gpios = <&tlmm 133 GPIO_ACTIVE_LOW>;
55+
56+
port {
57+
panel0_in: endpoint {
58+
remote-endpoint = <&dsi0_out>;
59+
};
5060
};
5161
};
5262
};

0 commit comments

Comments
 (0)