efdbd7345f
This is a quite large renaming to consolidate display related bindings into a single "display" directory from various scattered locations of video, drm, gpu, fb, mipi, and panel. The prior location was somewhat based on the Linux driver location, but bindings should be independent of that. Signed-off-by: Rob Herring <robh@kernel.org> Cc: Pawel Moll <pawel.moll@arm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Ian Campbell <ijc+devicetree@hellion.org.uk> Cc: Kumar Gala <galak@codeaurora.org>
37 lines
687 B
Plaintext
37 lines
687 B
Plaintext
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>;
|
|
};
|
|
};
|
|
};
|