brintos

brintos / linux-shallow public Read only

0
0
Text · 1.2 KiB · d5a8295 Raw
64 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---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 Panel8 9maintainers:10  - Neil Armstrong <neil.armstrong@linaro.org>11 12allOf:13  - $ref: panel-common.yaml#14 15properties:16  compatible:17    const: visionox,vtdr613018 19  reg:20    maxItems: 121    description: DSI virtual channel22 23  vddio-supply: true24  vci-supply: true25  vdd-supply: true26  port: true27  reset-gpios: true28 29additionalProperties: false30 31required:32  - compatible33  - reg34  - vddio-supply35  - vci-supply36  - vdd-supply37  - reset-gpios38  - port39 40examples:41  - |42    #include <dt-bindings/gpio/gpio.h>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                };60            };61        };62    };63...64