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,ltk050h3146w.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Leadtek LTK050H3146W 5.0in 720x1280 DSI panel
0008
0009 maintainers:
0010 - Quentin Schulz <quentin.schulz@theobroma-systems.com>
0011
0012 allOf:
0013 - $ref: panel-common.yaml#
0014
0015 properties:
0016 compatible:
0017 enum:
0018 - leadtek,ltk050h3146w
0019 - leadtek,ltk050h3146w-a2
0020 reg: true
0021 backlight: true
0022 reset-gpios: true
0023 iovcc-supply:
0024 description: regulator that supplies the iovcc voltage
0025 vci-supply:
0026 description: regulator that supplies the vci voltage
0027
0028 required:
0029 - compatible
0030 - reg
0031 - backlight
0032 - iovcc-supply
0033 - vci-supply
0034
0035 additionalProperties: false
0036
0037 examples:
0038 - |
0039 dsi {
0040 #address-cells = <1>;
0041 #size-cells = <0>;
0042 panel@0 {
0043 compatible = "leadtek,ltk050h3146w";
0044 reg = <0>;
0045 backlight = <&backlight>;
0046 iovcc-supply = <&vcc_1v8>;
0047 vci-supply = <&vcc3v3_lcd>;
0048 };
0049 };
0050
0051 ...