summaryrefslogtreecommitdiff
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2023-02-16 10:12:34 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2023-02-16 10:12:35 +0100
commit8573df341545b7b66cfacf9526b1f7a0de917b9e (patch)
tree3953610e19e5de2c867676f022877a27ecada2a0 /Documentation/devicetree
parent48075a66fca613477ac1969b576a93ef5db0164f (diff)
parent467fbc77f673ecc9dcf4e58ffc1fa426a22df7fd (diff)
Merge tag 'drm-misc-next-fixes-2023-02-09' of git://anongit.freedesktop.org/drm/drm-misc into drm-next
Short summary of fixes pull: Contains a number of fixes to vc4 and ivpu. The patches to the probe helpers were cherry-picked from the regular development branch. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> From: Thomas Zimmermann <tzimmermann@suse.de> Link: https://patchwork.freedesktop.org/patch/msgid/Y+S6HBmaRJNPYiBG@linux-uq9g
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/display/panel/visionox,vtdr6130.yaml34
1 files changed, 22 insertions, 12 deletions
diff --git a/Documentation/devicetree/bindings/display/panel/visionox,vtdr6130.yaml b/Documentation/devicetree/bindings/display/panel/visionox,vtdr6130.yaml
index 49e2fd4b4e99..84562a5b710a 100644
--- a/Documentation/devicetree/bindings/display/panel/visionox,vtdr6130.yaml
+++ b/Documentation/devicetree/bindings/display/panel/visionox,vtdr6130.yaml
@@ -16,6 +16,10 @@ properties:
compatible:
const: visionox,vtdr6130
+ reg:
+ maxItems: 1
+ description: DSI virtual channel
+
vddio-supply: true
vci-supply: true
vdd-supply: true
@@ -26,6 +30,7 @@ additionalProperties: false
required:
- compatible
+ - reg
- vddio-supply
- vci-supply
- vdd-supply
@@ -35,18 +40,23 @@ required:
examples:
- |
#include <dt-bindings/gpio/gpio.h>
- panel {
- compatible = "visionox,vtdr6130";
-
- vddio-supply = <&vreg_l12b_1p8>;
- vci-supply = <&vreg_l13b_3p0>;
- vdd-supply = <&vreg_l11b_1p2>;
-
- reset-gpios = <&tlmm 133 GPIO_ACTIVE_LOW>;
-
- port {
- panel0_in: endpoint {
- remote-endpoint = <&dsi0_out>;
+ dsi {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ panel@0 {
+ compatible = "visionox,vtdr6130";
+ reg = <0>;
+
+ vddio-supply = <&vreg_l12b_1p8>;
+ vci-supply = <&vreg_l13b_3p0>;
+ vdd-supply = <&vreg_l11b_1p2>;
+
+ reset-gpios = <&tlmm 133 GPIO_ACTIVE_LOW>;
+
+ port {
+ panel0_in: endpoint {
+ remote-endpoint = <&dsi0_out>;
+ };
};
};
};