]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/display/connector/hdmi-connector.txt
compiler.h: cast away attributes in WRITE_ONCE magic
[karo-tx-linux.git] / Documentation / devicetree / bindings / display / connector / 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 - hpd-gpios: HPD GPIO number
11
12 Required nodes:
13 - Video port for HDMI input
14
15 Example
16 -------
17
18 hdmi0: 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 };