hc
2023-02-18 a08c8b75ee83d7f62c9aefc23bfb42082aa4076c
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
31
32
33
34
35
36
VGA Connector
=============
 
Required properties:
 
- compatible: "vga-connector"
 
Optional properties:
 
- label: a symbolic name for the connector corresponding to a hardware label
- ddc-i2c-bus: phandle to the I2C bus that is connected to VGA DDC
 
Required nodes:
 
The VGA connector internal connections are modeled using the OF graph bindings
specified in Documentation/devicetree/bindings/graph.txt.
 
The VGA connector has a single port that must be connected to a video source
port.
 
 
Example
-------
 
vga0: connector@0 {
   compatible = "vga-connector";
   label = "vga";
 
   ddc-i2c-bus = <&i2c3>;
 
   port {
       vga_connector_in: endpoint {
           remote-endpoint = <&adv7123_out>;
       };
   };
};