Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: Add Innolux P097PFG panel bindings

The Innolux P097PFG panel is 9.7" panel with 1536X2048
resolution, it reuse P079ZCA panel driver, so improve
p079ZCA dt-binding to support P097PFG.

Changes in v2:
- None
Changes in v3:
- None
Changes in v4:
- None
Changes in v5:
- use separate file for binding
- keep power supplies as required

Signed-off-by: Lin Huang <hl@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180702102721.3546-4-heiko@sntech.de

authored by

Lin Huang and committed by
Thierry Reding
731edd4c 48bd379a

+24
+24
Documentation/devicetree/bindings/display/panel/innolux,p097pfg.txt
··· 1 + Innolux P097PFG 9.7" 1536x2048 TFT LCD panel 2 + 3 + Required properties: 4 + - compatible: should be "innolux,p097pfg" 5 + - reg: DSI virtual channel of the peripheral 6 + - avdd-supply: phandle of the regulator that provides positive voltage 7 + - avee-supply: phandle of the regulator that provides negative voltage 8 + - enable-gpios: panel enable gpio 9 + 10 + Optional properties: 11 + - backlight: phandle of the backlight device attached to the panel 12 + 13 + Example: 14 + 15 + &mipi_dsi { 16 + panel { 17 + compatible = "innolux,p079zca"; 18 + reg = <0>; 19 + avdd-supply = <...>; 20 + avee-supply = <...>; 21 + backlight = <&backlight>; 22 + enable-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>; 23 + }; 24 + };