1# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/panel/jdi,lt070me05000.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: JDI model LT070ME05000 1200x1920 7" DSI Panel
8
9maintainers:
10  - Vinay Simha BN <simhavcs@gmail.com>
11
12allOf:
13  - $ref: panel-common.yaml#
14
15properties:
16  compatible:
17    const: jdi,lt070me05000
18
19  enable-gpios: true
20  reg: true
21  reset-gpios: true
22
23  vddp-supply:
24    description: |
25      The regulator that provides the supply voltage Power IC supply (3-5V)
26
27  iovcc-supply:
28    description: |
29      The regulator that provides the supply voltage IOVCC,
30      power supply for LCM (1.8V)
31
32  dcdc-en-gpios:
33    description: |
34      phandle of the gpio for power ic line
35      Power IC supply enable, High active
36
37required:
38  - compatible
39  - reg
40  - vddp-supply
41  - iovcc-supply
42  - enable-gpios
43  - reset-gpios
44  - dcdc-en-gpios
45
46additionalProperties: false
47
48examples:
49  - |
50    #include <dt-bindings/gpio/gpio.h>
51
52    dsi {
53        #address-cells = <1>;
54        #size-cells = <0>;
55
56        panel@0 {
57            compatible = "jdi,lt070me05000";
58            reg = <0>;
59
60            vddp-supply = <&pm8921_l17>;
61            iovcc-supply = <&pm8921_lvs7>;
62
63            enable-gpios = <&pm8921_gpio 36 GPIO_ACTIVE_HIGH>;
64            reset-gpios = <&tlmm_pinmux 54 GPIO_ACTIVE_LOW>;
65            dcdc-en-gpios = <&pm8921_gpio 23 GPIO_ACTIVE_HIGH>;
66        };
67    };
68
69...
70