Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/device-tree/Bindings/display/connector/vga-connector.txt
48406 views
1
VGA Connector
2
=============
3
4
Required properties:
5
6
- compatible: "vga-connector"
7
8
Optional properties:
9
10
- label: a symbolic name for the connector corresponding to a hardware label
11
- ddc-i2c-bus: phandle to the I2C bus that is connected to VGA DDC
12
13
Required nodes:
14
15
The VGA connector internal connections are modeled using the OF graph bindings
16
specified in Documentation/devicetree/bindings/graph.txt.
17
18
The VGA connector has a single port that must be connected to a video source
19
port.
20
21
22
Example
23
-------
24
25
vga0: connector@0 {
26
compatible = "vga-connector";
27
label = "vga";
28
29
ddc-i2c-bus = <&i2c3>;
30
31
port {
32
vga_connector_in: endpoint {
33
remote-endpoint = <&adv7123_out>;
34
};
35
};
36
};
37
38