dumb-vga-dac.txt 874 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. Dumb RGB to VGA DAC bridge
  2. ---------------------------
  3. This binding is aimed for dumb RGB to VGA DAC based bridges that do not require
  4. any configuration.
  5. Required properties:
  6. - compatible: Must be "dumb-vga-dac"
  7. Required nodes:
  8. This device has two video ports. Their connections are modelled using the OF
  9. graph bindings specified in Documentation/devicetree/bindings/graph.txt.
  10. - Video port 0 for RGB input
  11. - Video port 1 for VGA output
  12. Optional properties:
  13. - vdd-supply: Power supply for DAC
  14. Example
  15. -------
  16. bridge {
  17. compatible = "dumb-vga-dac";
  18. #address-cells = <1>;
  19. #size-cells = <0>;
  20. ports {
  21. #address-cells = <1>;
  22. #size-cells = <0>;
  23. port@0 {
  24. reg = <0>;
  25. vga_bridge_in: endpoint {
  26. remote-endpoint = <&tcon0_out_vga>;
  27. };
  28. };
  29. port@1 {
  30. reg = <1>;
  31. vga_bridge_out: endpoint {
  32. remote-endpoint = <&vga_con_in>;
  33. };
  34. };
  35. };
  36. };