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,rm69299.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Visionox model RM69299 Panels 8 9maintainers: 10 - Abhinav Kumar <quic_abhinavk@quicinc.com> 11 - Jessica Zhang <quic_jesszhan@quicinc.com> 12 13description: | 14 This binding is for display panels using a Visionox RM692999 panel. 15 16allOf: 17 - $ref: panel-common.yaml# 18 19properties: 20 compatible: 21 const: visionox,rm69299-1080p-display 22 23 reg: true 24 25 vdda-supply: 26 description: | 27 Phandle of the regulator that provides the vdda supply voltage. 28 29 vdd3p3-supply: 30 description: | 31 Phandle of the regulator that provides the vdd3p3 supply voltage. 32 33 port: true 34 reset-gpios: true 35 36additionalProperties: false 37 38required: 39 - compatible 40 - reg 41 - vdda-supply 42 - vdd3p3-supply 43 - reset-gpios 44 - port 45 46examples: 47 - | 48 dsi { 49 #address-cells = <1>; 50 #size-cells = <0>; 51 52 panel@0 { 53 compatible = "visionox,rm69299-1080p-display"; 54 reg = <0>; 55 56 vdda-supply = <&src_pp1800_l8c>; 57 vdd3p3-supply = <&src_pp2800_l18a>; 58 59 reset-gpios = <&pm6150l_gpio 3 0>; 60 port { 61 panel0_in: endpoint { 62 remote-endpoint = <&dsi0_out>; 63 }; 64 }; 65 }; 66 }; 67... 68