54 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---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 panel8 9maintainers:10 - Werner Johansson <werner.johansson@sonymobile.com>11 12allOf:13 - $ref: panel-common.yaml#14 15properties:16 compatible:17 const: sharp,ls043t1le01-qhd18 19 reg:20 maxItems: 121 22 backlight: true23 reset-gpios: true24 port: true25 26 avdd-supply:27 description: handle of the regulator that provides the supply voltage28 29required:30 - compatible31 - reg32 - avdd-supply33 34additionalProperties: false35 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