Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/sharp,ls060t1sx01.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Sharp Microelectronics 6.0" FullHD TFT LCD panel
0008 
0009 maintainers:
0010   - Dmitry Baryskov <dmitry.baryshkov@linaro.org>
0011 
0012 allOf:
0013   - $ref: panel-common.yaml#
0014 
0015 properties:
0016   compatible:
0017     const: sharp,ls060t1sx01
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 positive supply voltage
0026   avee-supply:
0027     description: handle of the regulator that provides the negative supply voltage
0028   vddi-supply:
0029     description: handle of the regulator that provides the I/O supply voltage
0030   vddh-supply:
0031     description: handle of the regulator that provides the analog supply voltage
0032 
0033 required:
0034   - compatible
0035   - reg
0036 
0037 additionalProperties: false
0038 
0039 examples:
0040   - |
0041     #include <dt-bindings/gpio/gpio.h>
0042 
0043     dsi {
0044         #address-cells = <1>;
0045         #size-cells = <0>;
0046 
0047         panel@0 {
0048             compatible = "sharp,ls060t1sx01";
0049             reg = <0>;
0050             avdd-supply = <&pm8941_l22>;
0051             backlight = <&backlight>;
0052             reset-gpios = <&pm8916_gpios 25 GPIO_ACTIVE_LOW>;
0053         };
0054     };
0055 
0056 ...