ti,ths8135.txt 766 B

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