xref: /linux/Documentation/devicetree/bindings/display/panel/leadtek,ltk050h3146w.yaml (revision a1c613ae4c322ddd58d5a8539dbfba2a0380a8c0)
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,ltk050h3146w.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Leadtek LTK050H3146W 5.0in 720x1280 DSI panel
8
9maintainers:
10  - Quentin Schulz <quentin.schulz@theobroma-systems.com>
11
12allOf:
13  - $ref: panel-common.yaml#
14
15properties:
16  compatible:
17    enum:
18      - leadtek,ltk050h3146w
19      - leadtek,ltk050h3146w-a2
20      - leadtek,ltk050h3148w
21  reg: true
22  backlight: true
23  reset-gpios: true
24  iovcc-supply:
25    description: regulator that supplies the iovcc voltage
26  vci-supply:
27    description: regulator that supplies the vci voltage
28
29required:
30  - compatible
31  - reg
32  - backlight
33  - iovcc-supply
34  - vci-supply
35
36additionalProperties: false
37
38examples:
39  - |
40    dsi {
41        #address-cells = <1>;
42        #size-cells = <0>;
43        panel@0 {
44            compatible = "leadtek,ltk050h3146w";
45            reg = <0>;
46            backlight = <&backlight>;
47            iovcc-supply = <&vcc_1v8>;
48            vci-supply = <&vcc3v3_lcd>;
49        };
50    };
51
52...
53