ti,opa362.txt 595 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. OPA362 analog video amplifier
  2. Required properties:
  3. - compatible: "ti,opa362"
  4. - enable-gpios: enable/disable output gpio
  5. Required node:
  6. - Video port 0 for opa362 input
  7. - Video port 1 for opa362 output
  8. Example:
  9. tv_amp: opa362 {
  10. compatible = "ti,opa362";
  11. enable-gpios = <&gpio1 23 0>; /* GPIO to enable video out amplifier */
  12. ports {
  13. #address-cells = <1>;
  14. #size-cells = <0>;
  15. port@0 {
  16. reg = <0>;
  17. opa_in: endpoint@0 {
  18. remote-endpoint = <&venc_out>;
  19. };
  20. };
  21. port@1 {
  22. reg = <1>;
  23. opa_out: endpoint@0 {
  24. remote-endpoint = <&tv_connector_in>;
  25. };
  26. };
  27. };
  28. };