60 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,r66451.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Visionox R66451 AMOLED DSI Panel8 9maintainers:10 - Jessica Zhang <quic_jesszhan@quicinc.com>11 12allOf:13 - $ref: panel-common.yaml#14 15properties:16 compatible:17 const: visionox,r6645118 19 reg:20 maxItems: 121 description: DSI virtual channel22 23 vddio-supply: true24 vdd-supply: true25 port: true26 reset-gpios: true27 28additionalProperties: false29 30required:31 - compatible32 - reg33 - vddio-supply34 - vdd-supply35 - reset-gpios36 - port37 38examples:39 - |40 #include <dt-bindings/gpio/gpio.h>41 dsi {42 #address-cells = <1>;43 #size-cells = <0>;44 panel@0 {45 compatible = "visionox,r66451";46 reg = <0>;47 vddio-supply = <&vreg_l12c_1p8>;48 vdd-supply = <&vreg_l13c_3p0>;49 50 reset-gpios = <&tlmm 24 GPIO_ACTIVE_LOW>;51 52 port {53 panel0_in: endpoint {54 remote-endpoint = <&dsi0_out>;55 };56 };57 };58 };59...60