omap-pcm.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /*
  2. * omap-pcm.c -- ALSA PCM interface for the OMAP SoC
  3. *
  4. * Copyright (C) 2008 Nokia Corporation
  5. *
  6. * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
  7. * Peter Ujfalusi <peter.ujfalusi@ti.com>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * version 2 as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. * 02110-1301 USA
  22. *
  23. */
  24. #include <linux/dma-mapping.h>
  25. #include <linux/slab.h>
  26. #include <linux/module.h>
  27. #include <linux/omap-dma.h>
  28. #include <sound/core.h>
  29. #include <sound/pcm.h>
  30. #include <sound/pcm_params.h>
  31. #include <sound/dmaengine_pcm.h>
  32. #include <sound/soc.h>
  33. #ifdef CONFIG_ARCH_OMAP1
  34. #define pcm_omap1510() cpu_is_omap1510()
  35. #else
  36. #define pcm_omap1510() 0
  37. #endif
  38. static const struct snd_pcm_hardware omap_pcm_hardware = {
  39. .info = SNDRV_PCM_INFO_MMAP |
  40. SNDRV_PCM_INFO_MMAP_VALID |
  41. SNDRV_PCM_INFO_INTERLEAVED |
  42. SNDRV_PCM_INFO_PAUSE |
  43. SNDRV_PCM_INFO_RESUME |
  44. SNDRV_PCM_INFO_NO_PERIOD_WAKEUP,
  45. .formats = SNDRV_PCM_FMTBIT_S16_LE |
  46. SNDRV_PCM_FMTBIT_S32_LE,
  47. .period_bytes_min = 32,
  48. .period_bytes_max = 64 * 1024,
  49. .periods_min = 2,
  50. .periods_max = 255,
  51. .buffer_bytes_max = 128 * 1024,
  52. };
  53. /* this may get called several times by oss emulation */
  54. static int omap_pcm_hw_params(struct snd_pcm_substream *substream,
  55. struct snd_pcm_hw_params *params)
  56. {
  57. struct snd_pcm_runtime *runtime = substream->runtime;
  58. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  59. struct omap_pcm_dma_data *dma_data;
  60. struct dma_slave_config config;
  61. struct dma_chan *chan;
  62. int err = 0;
  63. dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
  64. /* return if this is a bufferless transfer e.g.
  65. * codec <--> BT codec or GSM modem -- lg FIXME */
  66. if (!dma_data)
  67. return 0;
  68. snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
  69. runtime->dma_bytes = params_buffer_bytes(params);
  70. chan = snd_dmaengine_pcm_get_chan(substream);
  71. if (!chan)
  72. return -EINVAL;
  73. /* fills in addr_width and direction */
  74. err = snd_hwparams_to_dma_slave_config(substream, params, &config);
  75. if (err)
  76. return err;
  77. snd_dmaengine_pcm_set_config_from_dai_data(substream,
  78. snd_soc_dai_get_dma_data(rtd->cpu_dai, substream),
  79. &config);
  80. return dmaengine_slave_config(chan, &config);
  81. }
  82. static int omap_pcm_hw_free(struct snd_pcm_substream *substream)
  83. {
  84. snd_pcm_set_runtime_buffer(substream, NULL);
  85. return 0;
  86. }
  87. static snd_pcm_uframes_t omap_pcm_pointer(struct snd_pcm_substream *substream)
  88. {
  89. snd_pcm_uframes_t offset;
  90. if (pcm_omap1510())
  91. offset = snd_dmaengine_pcm_pointer_no_residue(substream);
  92. else
  93. offset = snd_dmaengine_pcm_pointer(substream);
  94. return offset;
  95. }
  96. static int omap_pcm_open(struct snd_pcm_substream *substream)
  97. {
  98. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  99. struct snd_dmaengine_dai_dma_data *dma_data;
  100. snd_soc_set_runtime_hwparams(substream, &omap_pcm_hardware);
  101. dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
  102. return snd_dmaengine_pcm_open(substream, omap_dma_filter_fn,
  103. dma_data->filter_data);
  104. }
  105. static int omap_pcm_mmap(struct snd_pcm_substream *substream,
  106. struct vm_area_struct *vma)
  107. {
  108. struct snd_pcm_runtime *runtime = substream->runtime;
  109. return dma_mmap_writecombine(substream->pcm->card->dev, vma,
  110. runtime->dma_area,
  111. runtime->dma_addr,
  112. runtime->dma_bytes);
  113. }
  114. static struct snd_pcm_ops omap_pcm_ops = {
  115. .open = omap_pcm_open,
  116. .close = snd_dmaengine_pcm_close,
  117. .ioctl = snd_pcm_lib_ioctl,
  118. .hw_params = omap_pcm_hw_params,
  119. .hw_free = omap_pcm_hw_free,
  120. .trigger = snd_dmaengine_pcm_trigger,
  121. .pointer = omap_pcm_pointer,
  122. .mmap = omap_pcm_mmap,
  123. };
  124. static u64 omap_pcm_dmamask = DMA_BIT_MASK(64);
  125. static int omap_pcm_preallocate_dma_buffer(struct snd_pcm *pcm,
  126. int stream)
  127. {
  128. struct snd_pcm_substream *substream = pcm->streams[stream].substream;
  129. struct snd_dma_buffer *buf = &substream->dma_buffer;
  130. size_t size = omap_pcm_hardware.buffer_bytes_max;
  131. buf->dev.type = SNDRV_DMA_TYPE_DEV;
  132. buf->dev.dev = pcm->card->dev;
  133. buf->private_data = NULL;
  134. buf->area = dma_alloc_writecombine(pcm->card->dev, size,
  135. &buf->addr, GFP_KERNEL);
  136. if (!buf->area)
  137. return -ENOMEM;
  138. buf->bytes = size;
  139. return 0;
  140. }
  141. static void omap_pcm_free_dma_buffers(struct snd_pcm *pcm)
  142. {
  143. struct snd_pcm_substream *substream;
  144. struct snd_dma_buffer *buf;
  145. int stream;
  146. for (stream = 0; stream < 2; stream++) {
  147. substream = pcm->streams[stream].substream;
  148. if (!substream)
  149. continue;
  150. buf = &substream->dma_buffer;
  151. if (!buf->area)
  152. continue;
  153. dma_free_writecombine(pcm->card->dev, buf->bytes,
  154. buf->area, buf->addr);
  155. buf->area = NULL;
  156. }
  157. }
  158. static int omap_pcm_new(struct snd_soc_pcm_runtime *rtd)
  159. {
  160. struct snd_card *card = rtd->card->snd_card;
  161. struct snd_pcm *pcm = rtd->pcm;
  162. int ret = 0;
  163. if (!card->dev->dma_mask)
  164. card->dev->dma_mask = &omap_pcm_dmamask;
  165. if (!card->dev->coherent_dma_mask)
  166. card->dev->coherent_dma_mask = DMA_BIT_MASK(64);
  167. if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
  168. ret = omap_pcm_preallocate_dma_buffer(pcm,
  169. SNDRV_PCM_STREAM_PLAYBACK);
  170. if (ret)
  171. goto out;
  172. }
  173. if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
  174. ret = omap_pcm_preallocate_dma_buffer(pcm,
  175. SNDRV_PCM_STREAM_CAPTURE);
  176. if (ret)
  177. goto out;
  178. }
  179. out:
  180. /* free preallocated buffers in case of error */
  181. if (ret)
  182. omap_pcm_free_dma_buffers(pcm);
  183. return ret;
  184. }
  185. static struct snd_soc_platform_driver omap_soc_platform = {
  186. .ops = &omap_pcm_ops,
  187. .pcm_new = omap_pcm_new,
  188. .pcm_free = omap_pcm_free_dma_buffers,
  189. };
  190. static int omap_pcm_probe(struct platform_device *pdev)
  191. {
  192. return snd_soc_register_platform(&pdev->dev,
  193. &omap_soc_platform);
  194. }
  195. static int omap_pcm_remove(struct platform_device *pdev)
  196. {
  197. snd_soc_unregister_platform(&pdev->dev);
  198. return 0;
  199. }
  200. static struct platform_driver omap_pcm_driver = {
  201. .driver = {
  202. .name = "omap-pcm-audio",
  203. .owner = THIS_MODULE,
  204. },
  205. .probe = omap_pcm_probe,
  206. .remove = omap_pcm_remove,
  207. };
  208. module_platform_driver(omap_pcm_driver);
  209. MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@bitmer.com>");
  210. MODULE_DESCRIPTION("OMAP PCM DMA module");
  211. MODULE_LICENSE("GPL");
  212. MODULE_ALIAS("platform:omap-pcm-audio");