adi,adv7123.txt 874 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. Analog Device ADV7123 Video DAC
  2. -------------------------------
  3. The ADV7123 is a digital-to-analog converter that outputs VGA signals from a
  4. parallel video input.
  5. Required properties:
  6. - compatible: Should be "adi,adv7123"
  7. Optional properties:
  8. - psave-gpios: Power save control GPIO
  9. Required nodes:
  10. The ADV7123 has two video ports. Their connections are modeled using the OF
  11. graph bindings specified in Documentation/devicetree/bindings/graph.txt.
  12. - Video port 0 for DPI input
  13. - Video port 1 for VGA output
  14. Example
  15. -------
  16. adv7123: encoder@0 {
  17. compatible = "adi,adv7123";
  18. ports {
  19. #address-cells = <1>;
  20. #size-cells = <0>;
  21. port@0 {
  22. reg = <0>;
  23. adv7123_in: endpoint@0 {
  24. remote-endpoint = <&dpi_out>;
  25. };
  26. };
  27. port@1 {
  28. reg = <1>;
  29. adv7123_out: endpoint@0 {
  30. remote-endpoint = <&vga_connector_in>;
  31. };
  32. };
  33. };
  34. };