imx-audio-spdif.txt 968 B

123456789101112131415161718192021222324252627282930313233343536
  1. Freescale i.MX audio complex with S/PDIF transceiver
  2. Required properties:
  3. - compatible : "fsl,imx-audio-spdif"
  4. - model : The user-visible name of this sound complex
  5. - spdif-controller : The phandle of the i.MX S/PDIF controller
  6. Optional properties:
  7. - spdif-out : This is a boolean property. If present, the
  8. transmitting function of S/PDIF will be enabled,
  9. indicating there's a physical S/PDIF out connector
  10. or jack on the board or it's connecting to some
  11. other IP block, such as an HDMI encoder or
  12. display-controller.
  13. - spdif-in : This is a boolean property. If present, the receiving
  14. function of S/PDIF will be enabled, indicating there
  15. is a physical S/PDIF in connector/jack on the board.
  16. * Note: At least one of these two properties should be set in the DT binding.
  17. Example:
  18. sound-spdif {
  19. compatible = "fsl,imx-audio-spdif";
  20. model = "imx-spdif";
  21. spdif-controller = <&spdif>;
  22. spdif-out;
  23. spdif-in;
  24. };