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,p120zdg-bf1.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Innolux P120ZDG-BF1 12.02 inch eDP 2K display panel
0008 
0009 maintainers:
0010   - Sandeep Panda <spanda@codeaurora.org>
0011   - Douglas Anderson <dianders@chromium.org>
0012 
0013 allOf:
0014   - $ref: panel-common.yaml#
0015 
0016 properties:
0017   compatible:
0018     const: innolux,p120zdg-bf1
0019 
0020   enable-gpios: true
0021   power-supply: true
0022   backlight: true
0023   no-hpd: true
0024 
0025 required:
0026   - compatible
0027   - power-supply
0028 
0029 additionalProperties: false
0030 
0031 examples:
0032   - |
0033     #include <dt-bindings/gpio/gpio.h>
0034 
0035     panel_edp: panel-edp {
0036         compatible = "innolux,p120zdg-bf1";
0037         enable-gpios = <&msmgpio 31 GPIO_ACTIVE_LOW>;
0038         power-supply = <&pm8916_l2>;
0039         backlight = <&backlight>;
0040         no-hpd;
0041     };
0042 
0043 ...