0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/leadtek,ltk500hd1829.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Leadtek LTK500HD1829 5.0in 720x1280 DSI panel
0008
0009 maintainers:
0010 - Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
0011
0012 allOf:
0013 - $ref: panel-common.yaml#
0014
0015 properties:
0016 compatible:
0017 const: leadtek,ltk500hd1829
0018 reg: true
0019 backlight: true
0020 reset-gpios: true
0021 iovcc-supply:
0022 description: regulator that supplies the iovcc voltage
0023 vcc-supply:
0024 description: regulator that supplies the vcc voltage
0025
0026 required:
0027 - compatible
0028 - reg
0029 - backlight
0030 - iovcc-supply
0031 - vcc-supply
0032
0033 additionalProperties: false
0034
0035 examples:
0036 - |
0037 dsi {
0038 #address-cells = <1>;
0039 #size-cells = <0>;
0040
0041 panel@0 {
0042 compatible = "leadtek,ltk500hd1829";
0043 reg = <0>;
0044 backlight = <&backlight>;
0045 iovcc-supply = <&vcc_1v8>;
0046 vcc-supply = <&vcc_2v8>;
0047 };
0048 };
0049
0050 ...