ti,ths813x.txt 907 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. THS8134 and THS8135 Video DAC
  2. -----------------------------
  3. This is the binding for Texas Instruments THS8134, THS8134A, THS8134B and
  4. THS8135 Video DAC bridges.
  5. Required properties:
  6. - compatible: Must be one of
  7. "ti,ths8134"
  8. "ti,ths8134a," "ti,ths8134"
  9. "ti,ths8134b", "ti,ths8134"
  10. "ti,ths8135"
  11. Required nodes:
  12. This device has two video ports. Their connections are modelled using the OF
  13. graph bindings specified in Documentation/devicetree/bindings/graph.txt.
  14. - Video port 0 for RGB input
  15. - Video port 1 for VGA output
  16. Example
  17. -------
  18. vga-bridge {
  19. compatible = "ti,ths8135";
  20. #address-cells = <1>;
  21. #size-cells = <0>;
  22. ports {
  23. #address-cells = <1>;
  24. #size-cells = <0>;
  25. port@0 {
  26. reg = <0>;
  27. vga_bridge_in: endpoint {
  28. remote-endpoint = <&lcdc_out_vga>;
  29. };
  30. };
  31. port@1 {
  32. reg = <1>;
  33. vga_bridge_out: endpoint {
  34. remote-endpoint = <&vga_con_in>;
  35. };
  36. };
  37. };
  38. };