imx-pcm.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. #define IMX_DEFAULT_DMABUF_SIZE (64 * 1024)
  20. #define IMX_SAI_DMABUF_SIZE (64 * 1024)
  21. #define IMX_SPDIF_DMABUF_SIZE (64 * 1024)
  22. #define IMX_ESAI_DMABUF_SIZE (256 * 1024)
  23. static inline void
  24. imx_pcm_dma_params_init_data(struct imx_dma_data *dma_data,
  25. int dma, enum sdma_peripheral_type peripheral_type)
  26. {
  27. dma_data->dma_request = dma;
  28. dma_data->priority = DMA_PRIO_HIGH;
  29. dma_data->peripheral_type = peripheral_type;
  30. }
  31. struct imx_pcm_fiq_params {
  32. int irq;
  33. void __iomem *base;
  34. /* Pointer to original ssi driver to setup tx rx sizes */
  35. struct snd_dmaengine_dai_dma_data *dma_params_rx;
  36. struct snd_dmaengine_dai_dma_data *dma_params_tx;
  37. };
  38. #if IS_ENABLED(CONFIG_SND_SOC_IMX_PCM_DMA)
  39. int imx_pcm_dma_init(struct platform_device *pdev, size_t size);
  40. #else
  41. static inline int imx_pcm_dma_init(struct platform_device *pdev, size_t size)
  42. {
  43. return -ENODEV;
  44. }
  45. #endif
  46. #if IS_ENABLED(CONFIG_SND_SOC_IMX_PCM_FIQ)
  47. int imx_pcm_fiq_init(struct platform_device *pdev,
  48. struct imx_pcm_fiq_params *params);
  49. void imx_pcm_fiq_exit(struct platform_device *pdev);
  50. #else
  51. static inline int imx_pcm_fiq_init(struct platform_device *pdev,
  52. struct imx_pcm_fiq_params *params)
  53. {
  54. return -ENODEV;
  55. }
  56. static inline void imx_pcm_fiq_exit(struct platform_device *pdev)
  57. {
  58. }
  59. #endif
  60. #endif /* _IMX_PCM_H */