aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/omap/omap-pcm.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/omap/omap-pcm.c')
-rw-r--r--sound/soc/omap/omap-pcm.c54
1 files changed, 38 insertions, 16 deletions
diff --git a/sound/soc/omap/omap-pcm.c b/sound/soc/omap/omap-pcm.c
index 1e521904ea64..e6a6b991d05f 100644
--- a/sound/soc/omap/omap-pcm.c
+++ b/sound/soc/omap/omap-pcm.c
@@ -4,7 +4,7 @@
4 * Copyright (C) 2008 Nokia Corporation 4 * Copyright (C) 2008 Nokia Corporation
5 * 5 *
6 * Contact: Jarkko Nikula <jhnikula@gmail.com> 6 * Contact: Jarkko Nikula <jhnikula@gmail.com>
7 * Peter Ujfalusi <peter.ujfalusi@nokia.com> 7 * Peter Ujfalusi <peter.ujfalusi@ti.com>
8 * 8 *
9 * This program is free software; you can redistribute it and/or 9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License 10 * modify it under the terms of the GNU General Public License
@@ -37,7 +37,8 @@ static const struct snd_pcm_hardware omap_pcm_hardware = {
37 SNDRV_PCM_INFO_MMAP_VALID | 37 SNDRV_PCM_INFO_MMAP_VALID |
38 SNDRV_PCM_INFO_INTERLEAVED | 38 SNDRV_PCM_INFO_INTERLEAVED |
39 SNDRV_PCM_INFO_PAUSE | 39 SNDRV_PCM_INFO_PAUSE |
40 SNDRV_PCM_INFO_RESUME, 40 SNDRV_PCM_INFO_RESUME |
41 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP,
41 .formats = SNDRV_PCM_FMTBIT_S16_LE | 42 .formats = SNDRV_PCM_FMTBIT_S16_LE |
42 SNDRV_PCM_FMTBIT_S32_LE, 43 SNDRV_PCM_FMTBIT_S32_LE,
43 .period_bytes_min = 32, 44 .period_bytes_min = 32,
@@ -101,9 +102,10 @@ static int omap_pcm_hw_params(struct snd_pcm_substream *substream,
101 struct snd_soc_pcm_runtime *rtd = substream->private_data; 102 struct snd_soc_pcm_runtime *rtd = substream->private_data;
102 struct omap_runtime_data *prtd = runtime->private_data; 103 struct omap_runtime_data *prtd = runtime->private_data;
103 struct omap_pcm_dma_data *dma_data; 104 struct omap_pcm_dma_data *dma_data;
105
104 int err = 0; 106 int err = 0;
105 107
106 dma_data = snd_soc_dai_get_dma_data(rtd->dai->cpu_dai, substream); 108 dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
107 109
108 /* return if this is a bufferless transfer e.g. 110 /* return if this is a bufferless transfer e.g.
109 * codec <--> BT codec or GSM modem -- lg FIXME */ 111 * codec <--> BT codec or GSM modem -- lg FIXME */
@@ -194,7 +196,7 @@ static int omap_pcm_prepare(struct snd_pcm_substream *substream)
194 if ((cpu_is_omap1510())) 196 if ((cpu_is_omap1510()))
195 omap_enable_dma_irq(prtd->dma_ch, OMAP_DMA_FRAME_IRQ | 197 omap_enable_dma_irq(prtd->dma_ch, OMAP_DMA_FRAME_IRQ |
196 OMAP_DMA_LAST_IRQ | OMAP_DMA_BLOCK_IRQ); 198 OMAP_DMA_LAST_IRQ | OMAP_DMA_BLOCK_IRQ);
197 else 199 else if (!substream->runtime->no_period_wakeup)
198 omap_enable_dma_irq(prtd->dma_ch, OMAP_DMA_FRAME_IRQ); 200 omap_enable_dma_irq(prtd->dma_ch, OMAP_DMA_FRAME_IRQ);
199 201
200 if (!(cpu_class_is_omap1())) { 202 if (!(cpu_class_is_omap1())) {
@@ -374,14 +376,14 @@ static int omap_pcm_new(struct snd_card *card, struct snd_soc_dai *dai,
374 if (!card->dev->coherent_dma_mask) 376 if (!card->dev->coherent_dma_mask)
375 card->dev->coherent_dma_mask = DMA_BIT_MASK(64); 377 card->dev->coherent_dma_mask = DMA_BIT_MASK(64);
376 378
377 if (dai->playback.channels_min) { 379 if (dai->driver->playback.channels_min) {
378 ret = omap_pcm_preallocate_dma_buffer(pcm, 380 ret = omap_pcm_preallocate_dma_buffer(pcm,
379 SNDRV_PCM_STREAM_PLAYBACK); 381 SNDRV_PCM_STREAM_PLAYBACK);
380 if (ret) 382 if (ret)
381 goto out; 383 goto out;
382 } 384 }
383 385
384 if (dai->capture.channels_min) { 386 if (dai->driver->capture.channels_min) {
385 ret = omap_pcm_preallocate_dma_buffer(pcm, 387 ret = omap_pcm_preallocate_dma_buffer(pcm,
386 SNDRV_PCM_STREAM_CAPTURE); 388 SNDRV_PCM_STREAM_CAPTURE);
387 if (ret) 389 if (ret)
@@ -392,25 +394,45 @@ out:
392 return ret; 394 return ret;
393} 395}
394 396
395struct snd_soc_platform omap_soc_platform = { 397static struct snd_soc_platform_driver omap_soc_platform = {
396 .name = "omap-pcm-audio", 398 .ops = &omap_pcm_ops,
397 .pcm_ops = &omap_pcm_ops,
398 .pcm_new = omap_pcm_new, 399 .pcm_new = omap_pcm_new,
399 .pcm_free = omap_pcm_free_dma_buffers, 400 .pcm_free = omap_pcm_free_dma_buffers,
400}; 401};
401EXPORT_SYMBOL_GPL(omap_soc_platform);
402 402
403static int __init omap_soc_platform_init(void) 403static __devinit int omap_pcm_probe(struct platform_device *pdev)
404{
405 return snd_soc_register_platform(&pdev->dev,
406 &omap_soc_platform);
407}
408
409static int __devexit omap_pcm_remove(struct platform_device *pdev)
410{
411 snd_soc_unregister_platform(&pdev->dev);
412 return 0;
413}
414
415static struct platform_driver omap_pcm_driver = {
416 .driver = {
417 .name = "omap-pcm-audio",
418 .owner = THIS_MODULE,
419 },
420
421 .probe = omap_pcm_probe,
422 .remove = __devexit_p(omap_pcm_remove),
423};
424
425static int __init snd_omap_pcm_init(void)
404{ 426{
405 return snd_soc_register_platform(&omap_soc_platform); 427 return platform_driver_register(&omap_pcm_driver);
406} 428}
407module_init(omap_soc_platform_init); 429module_init(snd_omap_pcm_init);
408 430
409static void __exit omap_soc_platform_exit(void) 431static void __exit snd_omap_pcm_exit(void)
410{ 432{
411 snd_soc_unregister_platform(&omap_soc_platform); 433 platform_driver_unregister(&omap_pcm_driver);
412} 434}
413module_exit(omap_soc_platform_exit); 435module_exit(snd_omap_pcm_exit);
414 436
415MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>"); 437MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>");
416MODULE_DESCRIPTION("OMAP PCM DMA module"); 438MODULE_DESCRIPTION("OMAP PCM DMA module");