imx-pcm.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. #include <linux/platform_data/dma-imx.h>
  15. /*
  16. * Do not change this as the FIQ handler depends on this size
  17. */
  18. #define IMX_SSI_DMABUF_SIZE (64 * 1024)
  19. static inline void
  20. imx_pcm_dma_params_init_data(struct imx_dma_data *dma_data,
  21. int dma, bool shared)
  22. {
  23. dma_data->dma_request = dma;
  24. dma_data->priority = DMA_PRIO_HIGH;
  25. if (shared)
  26. dma_data->peripheral_type = IMX_DMATYPE_SSI_SP;
  27. else
  28. dma_data->peripheral_type = IMX_DMATYPE_SSI;
  29. }
  30. #ifdef CONFIG_SND_SOC_IMX_PCM_DMA
  31. int imx_pcm_dma_init(struct platform_device *pdev);
  32. void imx_pcm_dma_exit(struct platform_device *pdev);
  33. #else
  34. static inline int imx_pcm_dma_init(struct platform_device *pdev)
  35. {
  36. return -ENODEV;
  37. }
  38. static inline void imx_pcm_dma_exit(struct platform_device *pdev)
  39. {
  40. }
  41. #endif
  42. #ifdef CONFIG_SND_SOC_IMX_PCM_FIQ
  43. int imx_pcm_fiq_init(struct platform_device *pdev);
  44. void imx_pcm_fiq_exit(struct platform_device *pdev);
  45. #else
  46. static inline int imx_pcm_fiq_init(struct platform_device *pdev)
  47. {
  48. return -ENODEV;
  49. }
  50. static inline void imx_pcm_fiq_exit(struct platform_device *pdev)
  51. {
  52. }
  53. #endif
  54. #endif /* _IMX_PCM_H */