59 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/innolux,p097pfg.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Innolux P097PFG 9.7" 1536x2048 TFT LCD panel8 9maintainers:10 - Lin Huang <hl@rock-chips.com>11 12allOf:13 - $ref: panel-common.yaml#14 15properties:16 compatible:17 const: innolux,p097pfg18 19 reg:20 maxItems: 121 22 backlight: true23 enable-gpios: true24 25 avdd-supply:26 description: The regulator that provides positive voltage27 28 avee-supply:29 description: The regulator that provides negative voltage30 31required:32 - compatible33 - reg34 - avdd-supply35 - avee-supply36 - enable-gpios37 38additionalProperties: false39 40examples:41 - |42 #include <dt-bindings/gpio/gpio.h>43 44 dsi {45 #address-cells = <1>;46 #size-cells = <0>;47 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 };57 58...59