imx-pcm.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright 2009 Sascha Hauer <s.hauer@pengutronix.de>
  3. *
  4. * This code is based on code copyrighted by Freescale,
  5. * Liam Girdwood, Javier Martin and probably others.
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the
  9. * Free Software Foundation; either version 2 of the License, or (at your
  10. * option) any later version.
  11. */
  12. #ifndef _IMX_PCM_H
  13. #define _IMX_PCM_H
  14. /*
  15. * Do not change this as the FIQ handler depends on this size
  16. */
  17. #define IMX_SSI_DMABUF_SIZE (64 * 1024)
  18. struct imx_pcm_dma_params {
  19. int dma;
  20. unsigned long dma_addr;
  21. int burstsize;
  22. bool shared_peripheral; /* The peripheral is on SPBA bus */
  23. };
  24. int snd_imx_pcm_mmap(struct snd_pcm_substream *substream,
  25. struct vm_area_struct *vma);
  26. int imx_pcm_new(struct snd_soc_pcm_runtime *rtd);
  27. void imx_pcm_free(struct snd_pcm *pcm);
  28. #ifdef CONFIG_SND_SOC_IMX_PCM_DMA
  29. int imx_pcm_dma_init(struct platform_device *pdev);
  30. #else
  31. static inline int imx_pcm_dma_init(struct platform_device *pdev)
  32. {
  33. return -ENODEV;
  34. }
  35. #endif
  36. #ifdef CONFIG_SND_SOC_IMX_PCM_FIQ
  37. int imx_pcm_fiq_init(struct platform_device *pdev);
  38. #else
  39. static inline int imx_pcm_fiq_init(struct platform_device *pdev)
  40. {
  41. return -ENODEV;
  42. }
  43. #endif
  44. #endif /* _IMX_PCM_H */