diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-01-21 04:17:08 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-03-19 06:36:20 -0400 |
commit | e684175eda8fc03ace06e110136baa7c7734a484 (patch) | |
tree | 37ab0c4293e8423425c433dbf56e036a567f97b3 | |
parent | b987faded04f3ca45aa6eddd879d1f4a6e919c96 (diff) |
Doc/DT: Add DT binding documentation for HDMI Connector
Add DT binding documentation for HDMI Connector.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Archit Taneja <archit@ti.com>
Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
-rw-r--r-- | Documentation/devicetree/bindings/video/hdmi-connector.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/video/hdmi-connector.txt b/Documentation/devicetree/bindings/video/hdmi-connector.txt new file mode 100644 index 000000000000..ccccc19e2573 --- /dev/null +++ b/Documentation/devicetree/bindings/video/hdmi-connector.txt | |||
@@ -0,0 +1,28 @@ | |||
1 | HDMI Connector | ||
2 | ============== | ||
3 | |||
4 | Required properties: | ||
5 | - compatible: "hdmi-connector" | ||
6 | - type: the HDMI connector type: "a", "b", "c", "d" or "e" | ||
7 | |||
8 | Optional properties: | ||
9 | - label: a symbolic name for the connector | ||
10 | |||
11 | Required nodes: | ||
12 | - Video port for HDMI input | ||
13 | |||
14 | Example | ||
15 | ------- | ||
16 | |||
17 | hdmi0: connector@1 { | ||
18 | compatible = "hdmi-connector"; | ||
19 | label = "hdmi"; | ||
20 | |||
21 | type = "a"; | ||
22 | |||
23 | port { | ||
24 | hdmi_connector_in: endpoint { | ||
25 | remote-endpoint = <&tpd12s015_out>; | ||
26 | }; | ||
27 | }; | ||
28 | }; | ||