0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/jdi,lt070me05000.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: JDI model LT070ME05000 1200x1920 7" DSI Panel
0008
0009 maintainers:
0010 - Vinay Simha BN <simhavcs@gmail.com>
0011
0012 allOf:
0013 - $ref: panel-common.yaml#
0014
0015 properties:
0016 compatible:
0017 const: jdi,lt070me05000
0018
0019 enable-gpios: true
0020 reg: true
0021 reset-gpios: true
0022
0023 vddp-supply:
0024 description: |
0025 The regulator that provides the supply voltage Power IC supply (3-5V)
0026
0027 iovcc-supply:
0028 description: |
0029 The regulator that provides the supply voltage IOVCC,
0030 power supply for LCM (1.8V)
0031
0032 dcdc-en-gpios:
0033 maxItems: 1
0034 description: |
0035 phandle of the gpio for power ic line
0036 Power IC supply enable, High active
0037
0038 port: true
0039
0040 required:
0041 - compatible
0042 - reg
0043 - vddp-supply
0044 - iovcc-supply
0045 - enable-gpios
0046 - reset-gpios
0047 - dcdc-en-gpios
0048
0049 additionalProperties: false
0050
0051 examples:
0052 - |
0053 #include <dt-bindings/gpio/gpio.h>
0054
0055 dsi {
0056 #address-cells = <1>;
0057 #size-cells = <0>;
0058
0059 panel@0 {
0060 compatible = "jdi,lt070me05000";
0061 reg = <0>;
0062
0063 vddp-supply = <&pm8921_l17>;
0064 iovcc-supply = <&pm8921_lvs7>;
0065
0066 enable-gpios = <&pm8921_gpio 36 GPIO_ACTIVE_HIGH>;
0067 reset-gpios = <&tlmm_pinmux 54 GPIO_ACTIVE_LOW>;
0068 dcdc-en-gpios = <&pm8921_gpio 23 GPIO_ACTIVE_HIGH>;
0069 };
0070 };
0071
0072 ...