hdmi-connector.txt 475 B

1234567891011121314151617181920212223242526272829
  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. Required nodes:
  10. - Video port for HDMI input
  11. Example
  12. -------
  13. hdmi0: connector@1 {
  14. compatible = "hdmi-connector";
  15. label = "hdmi";
  16. type = "a";
  17. port {
  18. hdmi_connector_in: endpoint {
  19. remote-endpoint = <&tpd12s015_out>;
  20. };
  21. };
  22. };