ti,tpd12s015.txt 799 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. TPD12S015 HDMI level shifter and ESD protection chip
  2. ====================================================
  3. Required properties:
  4. - compatible: "ti,tpd12s015"
  5. Optional properties:
  6. - gpios: CT CP HPD, LS OE and HPD gpios
  7. Required nodes:
  8. - Video port 0 for HDMI input
  9. - Video port 1 for HDMI output
  10. Example
  11. -------
  12. tpd12s015: encoder@1 {
  13. compatible = "ti,tpd12s015";
  14. gpios = <&gpio2 28 GPIO_ACTIVE_HIGH>, /* 60, CT CP HPD */
  15. <&gpio2 9 GPIO_ACTIVE_HIGH>, /* 41, LS OE */
  16. <&gpio2 31 GPIO_ACTIVE_HIGH>; /* 63, HPD */
  17. ports {
  18. #address-cells = <1>;
  19. #size-cells = <0>;
  20. port@0 {
  21. reg = <0>;
  22. tpd12s015_in: endpoint@0 {
  23. remote-endpoint = <&hdmi_out>;
  24. };
  25. };
  26. port@1 {
  27. reg = <1>;
  28. tpd12s015_out: endpoint@0 {
  29. remote-endpoint = <&hdmi_connector_in>;
  30. };
  31. };
  32. };
  33. };