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/leadtek,ltk500hd1829.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Leadtek LTK500HD1829 5.0in 720x1280 DSI panel 8 9maintainers: 10 - Heiko Stuebner <heiko.stuebner@theobroma-systems.com> 11 12allOf: 13 - $ref: panel-common.yaml# 14 15properties: 16 compatible: 17 enum: 18 - leadtek,ltk101b4029w 19 - leadtek,ltk500hd1829 20 21 reg: 22 maxItems: 1 23 24 backlight: true 25 port: true 26 reset-gpios: true 27 iovcc-supply: 28 description: regulator that supplies the iovcc voltage 29 vcc-supply: 30 description: regulator that supplies the vcc voltage 31 32required: 33 - compatible 34 - reg 35 - backlight 36 - iovcc-supply 37 - vcc-supply 38 39additionalProperties: false 40 41examples: 42 - | 43 dsi { 44 #address-cells = <1>; 45 #size-cells = <0>; 46 47 panel@0 { 48 compatible = "leadtek,ltk500hd1829"; 49 reg = <0>; 50 backlight = <&backlight>; 51 iovcc-supply = <&vcc_1v8>; 52 vcc-supply = <&vcc_2v8>; 53 }; 54 }; 55 56... 57