diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-05-15 06:01:59 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-05-20 07:39:45 -0400 |
commit | bbc646fa53c3478e82e9e0fd708220d1193fd062 (patch) | |
tree | bd7e3579d9610144cc56341835271639dc76f710 /Documentation | |
parent | 1b71f1047ee17f4ba48097f134f894d7289fa7a1 (diff) |
Doc/DT: Add binding doc for lgphilips,lb035q02.txt
Add DT bindings documentation for LG.Philips LB035Q02 LCD panel.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: devicetree@vger.kernel.org
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/video/lgphilips,lb035q02.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/video/lgphilips,lb035q02.txt b/Documentation/devicetree/bindings/video/lgphilips,lb035q02.txt new file mode 100644 index 000000000000..1a1e653e5407 --- /dev/null +++ b/Documentation/devicetree/bindings/video/lgphilips,lb035q02.txt | |||
@@ -0,0 +1,33 @@ | |||
1 | LG.Philips LB035Q02 Panel | ||
2 | ========================= | ||
3 | |||
4 | Required properties: | ||
5 | - compatible: "lgphilips,lb035q02" | ||
6 | - enable-gpios: panel enable gpio | ||
7 | |||
8 | Optional properties: | ||
9 | - label: a symbolic name for the panel | ||
10 | |||
11 | Required nodes: | ||
12 | - Video port for DPI input | ||
13 | |||
14 | Example | ||
15 | ------- | ||
16 | |||
17 | lcd-panel: panel@0 { | ||
18 | compatible = "lgphilips,lb035q02"; | ||
19 | reg = <0>; | ||
20 | spi-max-frequency = <100000>; | ||
21 | spi-cpol; | ||
22 | spi-cpha; | ||
23 | |||
24 | label = "lcd"; | ||
25 | |||
26 | enable-gpios = <&gpio7 7 0>; | ||
27 | |||
28 | port { | ||
29 | lcd_in: endpoint { | ||
30 | remote-endpoint = <&dpi_out>; | ||
31 | }; | ||
32 | }; | ||
33 | }; | ||