Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 1 | /* |
| 2 | * linux/sound/arm/pxa2xx-pcm.c -- ALSA PCM interface for the Intel PXA2xx chip |
| 3 | * |
| 4 | * Author: Nicolas Pitre |
| 5 | * Created: Nov 30, 2004 |
| 6 | * Copyright: (C) 2004 MontaVista Software, Inc. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 13 | #include <linux/dma-mapping.h> |
| 14 | |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 15 | #include <sound/core.h> |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 16 | #include <sound/soc.h> |
Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 17 | #include <sound/pxa2xx-lib.h> |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 18 | |
| 19 | #include "pxa2xx-pcm.h" |
Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 20 | #include "../../arm/pxa2xx-pcm.h" |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 21 | |
| 22 | static int pxa2xx_pcm_hw_params(struct snd_pcm_substream *substream, |
| 23 | struct snd_pcm_hw_params *params) |
| 24 | { |
| 25 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 26 | struct pxa2xx_runtime_data *prtd = runtime->private_data; |
| 27 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Andrew Johnson | a8f5d0a | 2007-02-02 17:21:50 +0100 | [diff] [blame] | 28 | struct pxa2xx_pcm_dma_params *dma = rtd->dai->cpu_dai->dma_data; |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 29 | int ret; |
| 30 | |
Andrew Johnson | a8f5d0a | 2007-02-02 17:21:50 +0100 | [diff] [blame] | 31 | /* return if this is a bufferless transfer e.g. |
| 32 | * codec <--> BT codec or GSM modem -- lg FIXME */ |
Mark Brown | b32432e | 2008-04-23 15:14:18 +0200 | [diff] [blame] | 33 | if (!dma) |
| 34 | return 0; |
Andrew Johnson | a8f5d0a | 2007-02-02 17:21:50 +0100 | [diff] [blame] | 35 | |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 36 | /* this may get called several times by oss emulation |
| 37 | * with different params */ |
| 38 | if (prtd->params == NULL) { |
| 39 | prtd->params = dma; |
| 40 | ret = pxa_request_dma(prtd->params->name, DMA_PRIO_LOW, |
| 41 | pxa2xx_pcm_dma_irq, substream); |
| 42 | if (ret < 0) |
| 43 | return ret; |
| 44 | prtd->dma_ch = ret; |
| 45 | } else if (prtd->params != dma) { |
| 46 | pxa_free_dma(prtd->dma_ch); |
| 47 | prtd->params = dma; |
| 48 | ret = pxa_request_dma(prtd->params->name, DMA_PRIO_LOW, |
| 49 | pxa2xx_pcm_dma_irq, substream); |
| 50 | if (ret < 0) |
| 51 | return ret; |
| 52 | prtd->dma_ch = ret; |
| 53 | } |
| 54 | |
Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 55 | return __pxa2xx_pcm_hw_params(substream, params); |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | static int pxa2xx_pcm_hw_free(struct snd_pcm_substream *substream) |
| 59 | { |
| 60 | struct pxa2xx_runtime_data *prtd = substream->runtime->private_data; |
| 61 | |
Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 62 | __pxa2xx_pcm_hw_free(substream); |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 63 | |
Stephen Ware | 9bef648 | 2008-12-31 14:39:23 -0800 | [diff] [blame] | 64 | if (prtd->dma_ch >= 0) { |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 65 | pxa_free_dma(prtd->dma_ch); |
Stephen Ware | 9bef648 | 2008-12-31 14:39:23 -0800 | [diff] [blame] | 66 | prtd->dma_ch = -1; |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | return 0; |
| 70 | } |
| 71 | |
Mark Brown | 0e734ad | 2008-11-21 14:05:48 +0000 | [diff] [blame] | 72 | static struct snd_pcm_ops pxa2xx_pcm_ops = { |
Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 73 | .open = __pxa2xx_pcm_open, |
| 74 | .close = __pxa2xx_pcm_close, |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 75 | .ioctl = snd_pcm_lib_ioctl, |
| 76 | .hw_params = pxa2xx_pcm_hw_params, |
| 77 | .hw_free = pxa2xx_pcm_hw_free, |
Dmitry Baryshkov | a6d7731 | 2008-09-10 05:01:20 +0400 | [diff] [blame] | 78 | .prepare = __pxa2xx_pcm_prepare, |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 79 | .trigger = pxa2xx_pcm_trigger, |
| 80 | .pointer = pxa2xx_pcm_pointer, |
| 81 | .mmap = pxa2xx_pcm_mmap, |
| 82 | }; |
| 83 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 84 | static u64 pxa2xx_pcm_dmamask = DMA_BIT_MASK(32); |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 85 | |
Dmitry Baryshkov | 8a33de9 | 2008-07-29 11:42:24 +0100 | [diff] [blame] | 86 | static int pxa2xx_soc_pcm_new(struct snd_card *card, struct snd_soc_dai *dai, |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 87 | struct snd_pcm *pcm) |
| 88 | { |
| 89 | int ret = 0; |
| 90 | |
| 91 | if (!card->dev->dma_mask) |
| 92 | card->dev->dma_mask = &pxa2xx_pcm_dmamask; |
| 93 | if (!card->dev->coherent_dma_mask) |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 94 | card->dev->coherent_dma_mask = DMA_BIT_MASK(32); |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 95 | |
| 96 | if (dai->playback.channels_min) { |
| 97 | ret = pxa2xx_pcm_preallocate_dma_buffer(pcm, |
| 98 | SNDRV_PCM_STREAM_PLAYBACK); |
| 99 | if (ret) |
| 100 | goto out; |
| 101 | } |
| 102 | |
| 103 | if (dai->capture.channels_min) { |
| 104 | ret = pxa2xx_pcm_preallocate_dma_buffer(pcm, |
| 105 | SNDRV_PCM_STREAM_CAPTURE); |
| 106 | if (ret) |
| 107 | goto out; |
| 108 | } |
| 109 | out: |
| 110 | return ret; |
| 111 | } |
| 112 | |
| 113 | struct snd_soc_platform pxa2xx_soc_platform = { |
| 114 | .name = "pxa2xx-audio", |
| 115 | .pcm_ops = &pxa2xx_pcm_ops, |
Dmitry Baryshkov | 8a33de9 | 2008-07-29 11:42:24 +0100 | [diff] [blame] | 116 | .pcm_new = pxa2xx_soc_pcm_new, |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 117 | .pcm_free = pxa2xx_pcm_free_dma_buffers, |
| 118 | }; |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 119 | EXPORT_SYMBOL_GPL(pxa2xx_soc_platform); |
| 120 | |
Takashi Iwai | c9b3a40 | 2008-12-10 07:47:22 +0100 | [diff] [blame] | 121 | static int __init pxa2xx_soc_platform_init(void) |
Mark Brown | 958e792 | 2008-12-03 19:58:17 +0000 | [diff] [blame] | 122 | { |
| 123 | return snd_soc_register_platform(&pxa2xx_soc_platform); |
| 124 | } |
| 125 | module_init(pxa2xx_soc_platform_init); |
| 126 | |
| 127 | static void __exit pxa2xx_soc_platform_exit(void) |
| 128 | { |
| 129 | snd_soc_unregister_platform(&pxa2xx_soc_platform); |
| 130 | } |
| 131 | module_exit(pxa2xx_soc_platform_exit); |
| 132 | |
Liam Girdwood | f11a96d | 2006-10-12 14:26:55 +0200 | [diff] [blame] | 133 | MODULE_AUTHOR("Nicolas Pitre"); |
| 134 | MODULE_DESCRIPTION("Intel PXA2xx PCM DMA module"); |
| 135 | MODULE_LICENSE("GPL"); |