ti,tfp410.txt 618 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. TFP410 DPI to DVI encoder
  2. =========================
  3. Required properties:
  4. - compatible: "ti,tfp410"
  5. Optional properties:
  6. - powerdown-gpios: power-down gpio
  7. Required nodes:
  8. - Video port 0 for DPI input
  9. - Video port 1 for DVI output
  10. Example
  11. -------
  12. tfp410: encoder@0 {
  13. compatible = "ti,tfp410";
  14. powerdown-gpios = <&twl_gpio 2 GPIO_ACTIVE_LOW>;
  15. ports {
  16. #address-cells = <1>;
  17. #size-cells = <0>;
  18. port@0 {
  19. reg = <0>;
  20. tfp410_in: endpoint@0 {
  21. remote-endpoint = <&dpi_out>;
  22. };
  23. };
  24. port@1 {
  25. reg = <1>;
  26. tfp410_out: endpoint@0 {
  27. remote-endpoint = <&dvi_connector_in>;
  28. };
  29. };
  30. };
  31. };