hdmi-connector.txt 551 B

12345678910111213141516171819202122232425262728293031
  1. HDMI Connector
  2. ==============
  3. Required properties:
  4. - compatible: "hdmi-connector"
  5. - type: the HDMI connector type: "a", "b", "c", "d" or "e"
  6. Optional properties:
  7. - label: a symbolic name for the connector
  8. - hpd-gpios: HPD GPIO number
  9. - ddc-i2c-bus: phandle link to the I2C controller used for DDC EDID probing
  10. Required nodes:
  11. - Video port for HDMI input
  12. Example
  13. -------
  14. hdmi0: connector@1 {
  15. compatible = "hdmi-connector";
  16. label = "hdmi";
  17. type = "a";
  18. port {
  19. hdmi_connector_in: endpoint {
  20. remote-endpoint = <&tpd12s015_out>;
  21. };
  22. };
  23. };