imx-audio-spdif.txt 942 B

12345678910111213141516171819202122232425262728293031323334
  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 transmitting
  8. function of S/PDIF will be enabled, indicating there's a physical
  9. S/PDIF out connector/jack on the board or it's connecting to some
  10. other IP block, such as an HDMI encoder/display-controller.
  11. - spdif-in : This is a boolean property. If present, the receiving
  12. function of S/PDIF will be enabled, indicating there's a physical
  13. S/PDIF in connector/jack on the board.
  14. * Note: At least one of these two properties should be set in the DT binding.
  15. Example:
  16. sound-spdif {
  17. compatible = "fsl,imx-audio-spdif";
  18. model = "imx-spdif";
  19. spdif-controller = <&spdif>;
  20. spdif-out;
  21. spdif-in;
  22. };