diff options
| author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2014-08-26 13:45:30 -0400 |
|---|---|---|
| committer | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2014-09-15 04:55:46 -0400 |
| commit | 2d777ea95ed7e93fbdb9ea500776efb76288d757 (patch) | |
| tree | 711ced6bc098dfa9dbe6744d29af50d596184d5f | |
| parent | 76ac2f3cf66e036ec032f7d91a1987dde094e65a (diff) | |
video: Add DT binding documentation for VGA connector
The VGA connector is described by a single input port and an optional
DDC bus.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
| -rw-r--r-- | Documentation/devicetree/bindings/video/vga-connector.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/video/vga-connector.txt b/Documentation/devicetree/bindings/video/vga-connector.txt new file mode 100644 index 000000000000..c727f298e7ad --- /dev/null +++ b/Documentation/devicetree/bindings/video/vga-connector.txt | |||
| @@ -0,0 +1,36 @@ | |||
| 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 | }; | ||
