diff options
author | Chris Zhong <zyw@rock-chips.com> | 2017-03-23 20:51:31 -0400 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2017-06-14 13:28:11 -0400 |
commit | ead9d5b1769442ca19daa5da1d43fbf9e391d826 (patch) | |
tree | 462e16377756067a1faa5c1c0c890594ed5ad397 | |
parent | d0b1d259a4b58b21a21ea82d7174bf7ea825e9cc (diff) |
dt-bindings: Add INNOLUX P079ZCA panel bindings
The Innolux P079ZCA is a 7.85" panel with a 768X1024 resolution and
connected to DSI using four lanes.
Signed-off-by: Chris Zhong <zyw@rock-chips.com>
Reviewed-by: Brian Norris <briannorris@chromium.org>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1490316692-20506-1-git-send-email-zyw@rock-chips.com
-rw-r--r-- | Documentation/devicetree/bindings/display/panel/innolux,p079zca.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/display/panel/innolux,p079zca.txt b/Documentation/devicetree/bindings/display/panel/innolux,p079zca.txt new file mode 100644 index 000000000000..5c70a8380e58 --- /dev/null +++ b/Documentation/devicetree/bindings/display/panel/innolux,p079zca.txt | |||
@@ -0,0 +1,23 @@ | |||
1 | Innolux P079ZCA 7.85" 768x1024 TFT LCD panel | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: should be "innolux,p079zca" | ||
5 | - reg: DSI virtual channel of the peripheral | ||
6 | - power-supply: phandle of the regulator that provides the supply voltage | ||
7 | - enable-gpios: panel enable gpio | ||
8 | |||
9 | Optional properties: | ||
10 | - backlight: phandle of the backlight device attached to the panel | ||
11 | |||
12 | Example: | ||
13 | |||
14 | &mipi_dsi { | ||
15 | panel { | ||
16 | compatible = "innolux,p079zca"; | ||
17 | reg = <0>; | ||
18 | power-supply = <...>; | ||
19 | backlight = <&backlight>; | ||
20 | enable-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>; | ||
21 | status = "okay"; | ||
22 | }; | ||
23 | }; | ||