xref: /openbmc/linux/Documentation/devicetree/bindings/display/panel/visionox,vtdr6130.yaml (revision e65e175b07bef5974045cc42238de99057669ca7)
1# SPDX-License-Identifier: GPL-2.0-only or BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/panel/visionox,vtdr6130.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Visionox VTDR6130 AMOLED DSI Panel
8
9maintainers:
10  - Neil Armstrong <neil.armstrong@linaro.org>
11
12allOf:
13  - $ref: panel-common.yaml#
14
15properties:
16  compatible:
17    const: visionox,vtdr6130
18
19  vddio-supply: true
20  vci-supply: true
21  vdd-supply: true
22  port: true
23  reset-gpios: true
24
25additionalProperties: false
26
27required:
28  - compatible
29  - vddio-supply
30  - vci-supply
31  - vdd-supply
32  - reset-gpios
33  - port
34
35examples:
36  - |
37    #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>;
50            };
51        };
52    };
53...
54