xref: /linux/Documentation/devicetree/bindings/display/panel/leadtek,ltk500hd1829.yaml (revision eb01fe7abbe2d0b38824d2a93fdb4cc3eaf2ccc1)
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  reg: true
21  backlight: true
22  reset-gpios: true
23  iovcc-supply:
24    description: regulator that supplies the iovcc voltage
25  vcc-supply:
26    description: regulator that supplies the vcc voltage
27
28required:
29  - compatible
30  - reg
31  - backlight
32  - iovcc-supply
33  - vcc-supply
34
35additionalProperties: false
36
37examples:
38  - |
39    dsi {
40        #address-cells = <1>;
41        #size-cells = <0>;
42
43        panel@0 {
44            compatible = "leadtek,ltk500hd1829";
45            reg = <0>;
46            backlight = <&backlight>;
47            iovcc-supply = <&vcc_1v8>;
48            vcc-supply = <&vcc_2v8>;
49        };
50    };
51
52...
53