1# SPDX-License-Identifier: GPL-2.0 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/display/panel/sharp,ls043t1le01.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Sharp Microelectronics 4.3" qHD TFT LCD panel 8 9maintainers: 10 - Werner Johansson <werner.johansson@sonymobile.com> 11 12allOf: 13 - $ref: panel-common.yaml# 14 15properties: 16 compatible: 17 const: sharp,ls043t1le01-qhd 18 19 reg: 20 maxItems: 1 21 22 backlight: true 23 reset-gpios: true 24 port: true 25 26 avdd-supply: 27 description: handle of the regulator that provides the supply voltage 28 29required: 30 - compatible 31 - reg 32 - avdd-supply 33 34additionalProperties: false 35 36examples: 37 - | 38 #include <dt-bindings/gpio/gpio.h> 39 40 dsi { 41 #address-cells = <1>; 42 #size-cells = <0>; 43 44 panel@0 { 45 compatible = "sharp,ls043t1le01-qhd"; 46 reg = <0>; 47 avdd-supply = <&pm8941_l22>; 48 backlight = <&pm8941_wled>; 49 reset-gpios = <&pm8941_gpios 19 GPIO_ACTIVE_HIGH>; 50 }; 51 }; 52 53... 54