0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/sharp,ls043t1le01.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Sharp Microelectronics 4.3" qHD TFT LCD panel
0008
0009 maintainers:
0010 - Werner Johansson <werner.johansson@sonymobile.com>
0011
0012 allOf:
0013 - $ref: panel-common.yaml#
0014
0015 properties:
0016 compatible:
0017 const: sharp,ls043t1le01-qhd
0018
0019 reg: true
0020 backlight: true
0021 reset-gpios: true
0022 port: true
0023
0024 avdd-supply:
0025 description: handle of the regulator that provides the supply voltage
0026
0027 required:
0028 - compatible
0029 - reg
0030 - avdd-supply
0031
0032 additionalProperties: false
0033
0034 examples:
0035 - |
0036 #include <dt-bindings/gpio/gpio.h>
0037
0038 dsi {
0039 #address-cells = <1>;
0040 #size-cells = <0>;
0041
0042 panel@0 {
0043 compatible = "sharp,ls043t1le01-qhd";
0044 reg = <0>;
0045 avdd-supply = <&pm8941_l22>;
0046 backlight = <&pm8941_wled>;
0047 reset-gpios = <&pm8941_gpios 19 GPIO_ACTIVE_HIGH>;
0048 };
0049 };
0050
0051 ...