Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / display / panel / innolux,p097pfg.yaml
blob4164e3f7061d86124fd5aaa9cfb0de245e62b817
1 # SPDX-License-Identifier: GPL-2.0
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/display/panel/innolux,p097pfg.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Innolux P097PFG 9.7" 1536x2048 TFT LCD panel
9 maintainers:
10   - Lin Huang <hl@rock-chips.com>
12 allOf:
13   - $ref: panel-common.yaml#
15 properties:
16   compatible:
17     const: innolux,p097pfg
19   reg:
20     maxItems: 1
22   backlight: true
23   enable-gpios: true
25   avdd-supply:
26     description: The regulator that provides positive voltage
28   avee-supply:
29     description: The regulator that provides negative voltage
31 required:
32   - compatible
33   - reg
34   - avdd-supply
35   - avee-supply
36   - enable-gpios
38 additionalProperties: false
40 examples:
41   - |
42     #include <dt-bindings/gpio/gpio.h>
44     dsi {
45         #address-cells = <1>;
46         #size-cells = <0>;
48         panel@0 {
49             compatible = "innolux,p097pfg";
50             reg = <0>;
51             avdd-supply = <&avdd>;
52             avee-supply = <&avee>;
53             backlight = <&backlight>;
54             enable-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
55         };
56     };
58 ...