diff options
-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 | }; | ||