1*8cc087a1SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*8cc087a1SEmmanuel Vadot%YAML 1.2 3*8cc087a1SEmmanuel Vadot--- 4*8cc087a1SEmmanuel Vadot$id: http://devicetree.org/schemas/display/panel/sharp,ls060t1sx01.yaml# 5*8cc087a1SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*8cc087a1SEmmanuel Vadot 7*8cc087a1SEmmanuel Vadottitle: Sharp Microelectronics 6.0" FullHD TFT LCD panel 8*8cc087a1SEmmanuel Vadot 9*8cc087a1SEmmanuel Vadotmaintainers: 10*8cc087a1SEmmanuel Vadot - Dmitry Baryskov <dmitry.baryshkov@linaro.org> 11*8cc087a1SEmmanuel Vadot 12*8cc087a1SEmmanuel VadotallOf: 13*8cc087a1SEmmanuel Vadot - $ref: panel-common.yaml# 14*8cc087a1SEmmanuel Vadot 15*8cc087a1SEmmanuel Vadotproperties: 16*8cc087a1SEmmanuel Vadot compatible: 17*8cc087a1SEmmanuel Vadot const: sharp,ls060t1sx01 18*8cc087a1SEmmanuel Vadot 19*8cc087a1SEmmanuel Vadot reg: true 20*8cc087a1SEmmanuel Vadot backlight: true 21*8cc087a1SEmmanuel Vadot reset-gpios: true 22*8cc087a1SEmmanuel Vadot port: true 23*8cc087a1SEmmanuel Vadot 24*8cc087a1SEmmanuel Vadot avdd-supply: 25*8cc087a1SEmmanuel Vadot description: handle of the regulator that provides the positive supply voltage 26*8cc087a1SEmmanuel Vadot avee-supply: 27*8cc087a1SEmmanuel Vadot description: handle of the regulator that provides the negative supply voltage 28*8cc087a1SEmmanuel Vadot vddi-supply: 29*8cc087a1SEmmanuel Vadot description: handle of the regulator that provides the I/O supply voltage 30*8cc087a1SEmmanuel Vadot vddh-supply: 31*8cc087a1SEmmanuel Vadot description: handle of the regulator that provides the analog supply voltage 32*8cc087a1SEmmanuel Vadot 33*8cc087a1SEmmanuel Vadotrequired: 34*8cc087a1SEmmanuel Vadot - compatible 35*8cc087a1SEmmanuel Vadot - reg 36*8cc087a1SEmmanuel Vadot 37*8cc087a1SEmmanuel VadotadditionalProperties: false 38*8cc087a1SEmmanuel Vadot 39*8cc087a1SEmmanuel Vadotexamples: 40*8cc087a1SEmmanuel Vadot - | 41*8cc087a1SEmmanuel Vadot #include <dt-bindings/gpio/gpio.h> 42*8cc087a1SEmmanuel Vadot 43*8cc087a1SEmmanuel Vadot dsi { 44*8cc087a1SEmmanuel Vadot #address-cells = <1>; 45*8cc087a1SEmmanuel Vadot #size-cells = <0>; 46*8cc087a1SEmmanuel Vadot 47*8cc087a1SEmmanuel Vadot panel@0 { 48*8cc087a1SEmmanuel Vadot compatible = "sharp,ls060t1sx01"; 49*8cc087a1SEmmanuel Vadot reg = <0>; 50*8cc087a1SEmmanuel Vadot avdd-supply = <&pm8941_l22>; 51*8cc087a1SEmmanuel Vadot backlight = <&backlight>; 52*8cc087a1SEmmanuel Vadot reset-gpios = <&pm8916_gpios 25 GPIO_ACTIVE_LOW>; 53*8cc087a1SEmmanuel Vadot }; 54*8cc087a1SEmmanuel Vadot }; 55*8cc087a1SEmmanuel Vadot 56*8cc087a1SEmmanuel Vadot... 57