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