Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/innolux,p097pfg.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Innolux P097PFG 9.7" 1536x2048 TFT LCD panel
0008 
0009 maintainers:
0010   - Lin Huang <hl@rock-chips.com>
0011 
0012 allOf:
0013   - $ref: panel-common.yaml#
0014 
0015 properties:
0016   compatible:
0017     const: innolux,p097pfg
0018 
0019   backlight: true
0020   enable-gpios: true
0021   reg: true
0022 
0023   avdd-supply:
0024     description: The regulator that provides positive voltage
0025 
0026   avee-supply:
0027     description: The regulator that provides negative voltage
0028 
0029 required:
0030   - compatible
0031   - reg
0032   - avdd-supply
0033   - avee-supply
0034   - enable-gpios
0035 
0036 additionalProperties: false
0037 
0038 examples:
0039   - |
0040     #include <dt-bindings/gpio/gpio.h>
0041 
0042     dsi {
0043         #address-cells = <1>;
0044         #size-cells = <0>;
0045 
0046         panel@0 {
0047             compatible = "innolux,p097pfg";
0048             reg = <0>;
0049             avdd-supply = <&avdd>;
0050             avee-supply = <&avee>;
0051             backlight = <&backlight>;
0052             enable-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
0053         };
0054     };
0055 
0056 ...