atmel-pcm-dma.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /*
  2. * atmel-pcm-dma.c -- ALSA PCM DMA support for the Atmel SoC.
  3. *
  4. * Copyright (C) 2012 Atmel
  5. *
  6. * Author: Bo Shen <voice.shen@atmel.com>
  7. *
  8. * Based on atmel-pcm by:
  9. * Sedji Gaouaou <sedji.gaouaou@atmel.com>
  10. * Copyright 2008 Atmel
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  25. */
  26. #include <linux/module.h>
  27. #include <linux/init.h>
  28. #include <linux/platform_device.h>
  29. #include <linux/slab.h>
  30. #include <linux/dma-mapping.h>
  31. #include <linux/dmaengine.h>
  32. #include <linux/atmel-ssc.h>
  33. #include <linux/platform_data/dma-atmel.h>
  34. #include <sound/core.h>
  35. #include <sound/pcm.h>
  36. #include <sound/pcm_params.h>
  37. #include <sound/soc.h>
  38. #include <sound/dmaengine_pcm.h>
  39. #include "atmel-pcm.h"
  40. /*--------------------------------------------------------------------------*\
  41. * Hardware definition
  42. \*--------------------------------------------------------------------------*/
  43. static const struct snd_pcm_hardware atmel_pcm_dma_hardware = {
  44. .info = SNDRV_PCM_INFO_MMAP |
  45. SNDRV_PCM_INFO_MMAP_VALID |
  46. SNDRV_PCM_INFO_INTERLEAVED |
  47. SNDRV_PCM_INFO_RESUME |
  48. SNDRV_PCM_INFO_PAUSE,
  49. .formats = SNDRV_PCM_FMTBIT_S16_LE,
  50. .period_bytes_min = 256, /* lighting DMA overhead */
  51. .period_bytes_max = 2 * 0xffff, /* if 2 bytes format */
  52. .periods_min = 8,
  53. .periods_max = 1024, /* no limit */
  54. .buffer_bytes_max = ATMEL_SSC_DMABUF_SIZE,
  55. };
  56. /**
  57. * atmel_pcm_dma_irq: SSC interrupt handler for DMAENGINE enabled SSC
  58. *
  59. * We use DMAENGINE to send/receive data to/from SSC so this ISR is only to
  60. * check if any overrun occured.
  61. */
  62. static void atmel_pcm_dma_irq(u32 ssc_sr,
  63. struct snd_pcm_substream *substream)
  64. {
  65. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  66. struct atmel_pcm_dma_params *prtd;
  67. prtd = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
  68. if (ssc_sr & prtd->mask->ssc_error) {
  69. if (snd_pcm_running(substream))
  70. pr_warn("atmel-pcm: buffer %s on %s (SSC_SR=%#x)\n",
  71. substream->stream == SNDRV_PCM_STREAM_PLAYBACK
  72. ? "underrun" : "overrun", prtd->name,
  73. ssc_sr);
  74. /* stop RX and capture: will be enabled again at restart */
  75. ssc_writex(prtd->ssc->regs, SSC_CR, prtd->mask->ssc_disable);
  76. snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
  77. /* now drain RHR and read status to remove xrun condition */
  78. ssc_readx(prtd->ssc->regs, SSC_RHR);
  79. ssc_readx(prtd->ssc->regs, SSC_SR);
  80. }
  81. }
  82. /*--------------------------------------------------------------------------*\
  83. * DMAENGINE operations
  84. \*--------------------------------------------------------------------------*/
  85. static bool filter(struct dma_chan *chan, void *slave)
  86. {
  87. struct at_dma_slave *sl = slave;
  88. if (sl->dma_dev == chan->device->dev) {
  89. chan->private = sl;
  90. return true;
  91. } else {
  92. return false;
  93. }
  94. }
  95. static int atmel_pcm_configure_dma(struct snd_pcm_substream *substream,
  96. struct snd_pcm_hw_params *params, struct atmel_pcm_dma_params *prtd)
  97. {
  98. struct ssc_device *ssc;
  99. struct dma_chan *dma_chan;
  100. struct dma_slave_config slave_config;
  101. int ret;
  102. ssc = prtd->ssc;
  103. ret = snd_hwparams_to_dma_slave_config(substream, params,
  104. &slave_config);
  105. if (ret) {
  106. pr_err("atmel-pcm: hwparams to dma slave configure failed\n");
  107. return ret;
  108. }
  109. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  110. slave_config.dst_addr = (dma_addr_t)ssc->phybase + SSC_THR;
  111. slave_config.dst_maxburst = 1;
  112. } else {
  113. slave_config.src_addr = (dma_addr_t)ssc->phybase + SSC_RHR;
  114. slave_config.src_maxburst = 1;
  115. }
  116. dma_chan = snd_dmaengine_pcm_get_chan(substream);
  117. if (dmaengine_slave_config(dma_chan, &slave_config)) {
  118. pr_err("atmel-pcm: failed to configure dma channel\n");
  119. ret = -EBUSY;
  120. return ret;
  121. }
  122. return 0;
  123. }
  124. static int atmel_pcm_hw_params(struct snd_pcm_substream *substream,
  125. struct snd_pcm_hw_params *params)
  126. {
  127. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  128. struct atmel_pcm_dma_params *prtd;
  129. struct ssc_device *ssc;
  130. struct at_dma_slave *sdata = NULL;
  131. int ret;
  132. snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
  133. prtd = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
  134. ssc = prtd->ssc;
  135. if (ssc->pdev)
  136. sdata = ssc->pdev->dev.platform_data;
  137. ret = snd_dmaengine_pcm_open_request_chan(substream, filter, sdata);
  138. if (ret) {
  139. pr_err("atmel-pcm: dmaengine pcm open failed\n");
  140. return -EINVAL;
  141. }
  142. ret = atmel_pcm_configure_dma(substream, params, prtd);
  143. if (ret) {
  144. pr_err("atmel-pcm: failed to configure dmai\n");
  145. goto err;
  146. }
  147. prtd->dma_intr_handler = atmel_pcm_dma_irq;
  148. return 0;
  149. err:
  150. snd_dmaengine_pcm_close_release_chan(substream);
  151. return ret;
  152. }
  153. static int atmel_pcm_dma_prepare(struct snd_pcm_substream *substream)
  154. {
  155. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  156. struct atmel_pcm_dma_params *prtd;
  157. prtd = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
  158. ssc_writex(prtd->ssc->regs, SSC_IER, prtd->mask->ssc_error);
  159. ssc_writex(prtd->ssc->regs, SSC_CR, prtd->mask->ssc_enable);
  160. return 0;
  161. }
  162. static int atmel_pcm_open(struct snd_pcm_substream *substream)
  163. {
  164. snd_soc_set_runtime_hwparams(substream, &atmel_pcm_dma_hardware);
  165. return 0;
  166. }
  167. static struct snd_pcm_ops atmel_pcm_ops = {
  168. .open = atmel_pcm_open,
  169. .close = snd_dmaengine_pcm_close_release_chan,
  170. .ioctl = snd_pcm_lib_ioctl,
  171. .hw_params = atmel_pcm_hw_params,
  172. .prepare = atmel_pcm_dma_prepare,
  173. .trigger = snd_dmaengine_pcm_trigger,
  174. .pointer = snd_dmaengine_pcm_pointer_no_residue,
  175. .mmap = atmel_pcm_mmap,
  176. };
  177. static struct snd_soc_platform_driver atmel_soc_platform = {
  178. .ops = &atmel_pcm_ops,
  179. .pcm_new = atmel_pcm_new,
  180. .pcm_free = atmel_pcm_free,
  181. };
  182. int atmel_pcm_dma_platform_register(struct device *dev)
  183. {
  184. return snd_soc_register_platform(dev, &atmel_soc_platform);
  185. }
  186. EXPORT_SYMBOL(atmel_pcm_dma_platform_register);
  187. void atmel_pcm_dma_platform_unregister(struct device *dev)
  188. {
  189. snd_soc_unregister_platform(dev);
  190. }
  191. EXPORT_SYMBOL(atmel_pcm_dma_platform_unregister);
  192. MODULE_AUTHOR("Bo Shen <voice.shen@atmel.com>");
  193. MODULE_DESCRIPTION("Atmel DMA based PCM module");
  194. MODULE_LICENSE("GPL");