1HDMI Connector
2==============
3
4Required properties:
5- compatible: "hdmi-connector"
6- type: the HDMI connector type: "a", "b", "c", "d" or "e"
7
8Optional properties:
9- label: a symbolic name for the connector
10- hpd-gpios: HPD GPIO number
11
12Required nodes:
13- Video port for HDMI input
14
15Example
16-------
17
18hdmi0: connector@1 {
19	compatible = "hdmi-connector";
20	label = "hdmi";
21
22	type = "a";
23
24	port {
25		hdmi_connector_in: endpoint {
26			remote-endpoint = <&tpd12s015_out>;
27		};
28	};
29};
30