56 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---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 panel8 9maintainers:10 - Heiko Stuebner <heiko.stuebner@theobroma-systems.com>11 12allOf:13 - $ref: panel-common.yaml#14 15properties:16 compatible:17 enum:18 - leadtek,ltk101b4029w19 - leadtek,ltk500hd182920 21 reg:22 maxItems: 123 24 backlight: true25 reset-gpios: true26 iovcc-supply:27 description: regulator that supplies the iovcc voltage28 vcc-supply:29 description: regulator that supplies the vcc voltage30 31required:32 - compatible33 - reg34 - backlight35 - iovcc-supply36 - vcc-supply37 38additionalProperties: false39 40examples:41 - |42 dsi {43 #address-cells = <1>;44 #size-cells = <0>;45 46 panel@0 {47 compatible = "leadtek,ltk500hd1829";48 reg = <0>;49 backlight = <&backlight>;50 iovcc-supply = <&vcc_1v8>;51 vcc-supply = <&vcc_2v8>;52 };53 };54 55...56