Merge branch 'async-scsi-resume' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / Documentation / devicetree / bindings / video / hdmi-connector.txt
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 };