vga-connector.txt 687 B

123456789101112131415161718192021222324252627282930313233343536
  1. VGA Connector
  2. =============
  3. Required properties:
  4. - compatible: "vga-connector"
  5. Optional properties:
  6. - label: a symbolic name for the connector corresponding to a hardware label
  7. - ddc-i2c-bus: phandle to the I2C bus that is connected to VGA DDC
  8. Required nodes:
  9. The VGA connector internal connections are modeled using the OF graph bindings
  10. specified in Documentation/devicetree/bindings/graph.txt.
  11. The VGA connector has a single port that must be connected to a video source
  12. port.
  13. Example
  14. -------
  15. vga0: connector@0 {
  16. compatible = "vga-connector";
  17. label = "vga";
  18. ddc-i2c-bus = <&i2c3>;
  19. port {
  20. vga_connector_in: endpoint {
  21. remote-endpoint = <&adv7123_out>;
  22. };
  23. };
  24. };