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 enum: 22 - visionox,rm69299-1080p-display 23 - visionox,rm69299-shift 24 25 reg: 26 maxItems: 1 27 28 vdda-supply: 29 description: | 30 Phandle of the regulator that provides the vdda supply voltage. 31 32 vdd3p3-supply: 33 description: | 34 Phandle of the regulator that provides the vdd3p3 supply voltage. 35 36 port: true 37 reset-gpios: true 38 39additionalProperties: false 40 41required: 42 - compatible 43 - reg 44 - vdda-supply 45 - vdd3p3-supply 46 - reset-gpios 47 - port 48 49examples: 50 - | 51 dsi { 52 #address-cells = <1>; 53 #size-cells = <0>; 54 55 panel@0 { 56 compatible = "visionox,rm69299-1080p-display"; 57 reg = <0>; 58 59 vdda-supply = <&src_pp1800_l8c>; 60 vdd3p3-supply = <&src_pp2800_l18a>; 61 62 reset-gpios = <&pm6150l_gpio 3 0>; 63 port { 64 panel0_in: endpoint { 65 remote-endpoint = <&dsi0_out>; 66 }; 67 }; 68 }; 69 }; 70... 71