Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013, Analog Devices Inc. |
| 3 | * Author: Lars-Peter Clausen <lars@metafoo.de> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of the GNU General Public License as published by the |
| 7 | * Free Software Foundation; either version 2 of the License, or (at your |
| 8 | * option) any later version. |
| 9 | * |
| 10 | * You should have received a copy of the GNU General Public License along |
| 11 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 12 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
| 13 | * |
| 14 | */ |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/dmaengine.h> |
| 18 | #include <linux/slab.h> |
| 19 | #include <sound/pcm.h> |
| 20 | #include <sound/pcm_params.h> |
| 21 | #include <sound/soc.h> |
| 22 | #include <linux/dma-mapping.h> |
| 23 | #include <linux/of.h> |
| 24 | #include <linux/of_dma.h> |
| 25 | |
| 26 | #include <sound/dmaengine_pcm.h> |
| 27 | |
| 28 | struct dmaengine_pcm { |
| 29 | struct dma_chan *chan[SNDRV_PCM_STREAM_CAPTURE + 1]; |
| 30 | const struct snd_dmaengine_pcm_config *config; |
| 31 | struct snd_soc_platform platform; |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame^] | 32 | bool compat; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 33 | }; |
| 34 | |
| 35 | static struct dmaengine_pcm *soc_platform_to_pcm(struct snd_soc_platform *p) |
| 36 | { |
| 37 | return container_of(p, struct dmaengine_pcm, platform); |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * snd_dmaengine_pcm_prepare_slave_config() - Generic prepare_slave_config callback |
| 42 | * @substream: PCM substream |
| 43 | * @params: hw_params |
| 44 | * @slave_config: DMA slave config to prepare |
| 45 | * |
| 46 | * This function can be used as a generic prepare_slave_config callback for |
| 47 | * platforms which make use of the snd_dmaengine_dai_dma_data struct for their |
| 48 | * DAI DMA data. Internally the function will first call |
| 49 | * snd_hwparams_to_dma_slave_config to fill in the slave config based on the |
| 50 | * hw_params, followed by snd_dmaengine_set_config_from_dai_data to fill in the |
| 51 | * remaining fields based on the DAI DMA data. |
| 52 | */ |
| 53 | int snd_dmaengine_pcm_prepare_slave_config(struct snd_pcm_substream *substream, |
| 54 | struct snd_pcm_hw_params *params, struct dma_slave_config *slave_config) |
| 55 | { |
| 56 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 57 | struct snd_dmaengine_dai_dma_data *dma_data; |
| 58 | int ret; |
| 59 | |
| 60 | dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream); |
| 61 | |
| 62 | ret = snd_hwparams_to_dma_slave_config(substream, params, slave_config); |
| 63 | if (ret) |
| 64 | return ret; |
| 65 | |
| 66 | snd_dmaengine_pcm_set_config_from_dai_data(substream, dma_data, |
| 67 | slave_config); |
| 68 | |
| 69 | return 0; |
| 70 | } |
| 71 | EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_prepare_slave_config); |
| 72 | |
| 73 | static int dmaengine_pcm_hw_params(struct snd_pcm_substream *substream, |
| 74 | struct snd_pcm_hw_params *params) |
| 75 | { |
| 76 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 77 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 78 | struct dma_chan *chan = snd_dmaengine_pcm_get_chan(substream); |
| 79 | struct dma_slave_config slave_config; |
| 80 | int ret; |
| 81 | |
| 82 | if (pcm->config->prepare_slave_config) { |
| 83 | ret = pcm->config->prepare_slave_config(substream, params, |
| 84 | &slave_config); |
| 85 | if (ret) |
| 86 | return ret; |
| 87 | |
| 88 | ret = dmaengine_slave_config(chan, &slave_config); |
| 89 | if (ret) |
| 90 | return ret; |
| 91 | } |
| 92 | |
| 93 | return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params)); |
| 94 | } |
| 95 | |
| 96 | static int dmaengine_pcm_open(struct snd_pcm_substream *substream) |
| 97 | { |
| 98 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 99 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 100 | struct dma_chan *chan = pcm->chan[substream->stream]; |
| 101 | int ret; |
| 102 | |
| 103 | ret = snd_soc_set_runtime_hwparams(substream, |
| 104 | pcm->config->pcm_hardware); |
| 105 | if (ret) |
| 106 | return ret; |
| 107 | |
| 108 | return snd_dmaengine_pcm_open(substream, chan); |
| 109 | } |
| 110 | |
| 111 | static struct device *dmaengine_dma_dev(struct dmaengine_pcm *pcm, |
| 112 | struct snd_pcm_substream *substream) |
| 113 | { |
| 114 | if (!pcm->chan[substream->stream]) |
| 115 | return NULL; |
| 116 | |
| 117 | return pcm->chan[substream->stream]->device->dev; |
| 118 | } |
| 119 | |
| 120 | static void dmaengine_pcm_free(struct snd_pcm *pcm) |
| 121 | { |
| 122 | snd_pcm_lib_preallocate_free_for_all(pcm); |
| 123 | } |
| 124 | |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame^] | 125 | static struct dma_chan *dmaengine_pcm_compat_request_channel( |
| 126 | struct snd_soc_pcm_runtime *rtd, |
| 127 | struct snd_pcm_substream *substream) |
| 128 | { |
| 129 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 130 | |
| 131 | if (pcm->config->compat_request_channel) |
| 132 | return pcm->config->compat_request_channel(rtd, substream); |
| 133 | |
| 134 | return snd_dmaengine_pcm_request_channel(pcm->config->compat_filter_fn, |
| 135 | snd_soc_dai_get_dma_data(rtd->cpu_dai, substream)); |
| 136 | } |
| 137 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 138 | static int dmaengine_pcm_new(struct snd_soc_pcm_runtime *rtd) |
| 139 | { |
| 140 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 141 | const struct snd_dmaengine_pcm_config *config = pcm->config; |
| 142 | struct snd_pcm_substream *substream; |
| 143 | unsigned int i; |
| 144 | int ret; |
| 145 | |
| 146 | for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; i++) { |
| 147 | substream = rtd->pcm->streams[i].substream; |
| 148 | if (!substream) |
| 149 | continue; |
| 150 | |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame^] | 151 | if (!pcm->chan[i] && pcm->compat) { |
| 152 | pcm->chan[i] = dmaengine_pcm_compat_request_channel(rtd, |
| 153 | substream); |
| 154 | } |
| 155 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 156 | if (!pcm->chan[i]) { |
| 157 | dev_err(rtd->platform->dev, |
| 158 | "Missing dma channel for stream: %d\n", i); |
| 159 | ret = -EINVAL; |
| 160 | goto err_free; |
| 161 | } |
| 162 | |
| 163 | ret = snd_pcm_lib_preallocate_pages(substream, |
| 164 | SNDRV_DMA_TYPE_DEV, |
| 165 | dmaengine_dma_dev(pcm, substream), |
| 166 | config->prealloc_buffer_size, |
| 167 | config->pcm_hardware->buffer_bytes_max); |
| 168 | if (ret) |
| 169 | goto err_free; |
| 170 | } |
| 171 | |
| 172 | return 0; |
| 173 | |
| 174 | err_free: |
| 175 | dmaengine_pcm_free(rtd->pcm); |
| 176 | return ret; |
| 177 | } |
| 178 | |
| 179 | static const struct snd_pcm_ops dmaengine_pcm_ops = { |
| 180 | .open = dmaengine_pcm_open, |
| 181 | .close = snd_dmaengine_pcm_close, |
| 182 | .ioctl = snd_pcm_lib_ioctl, |
| 183 | .hw_params = dmaengine_pcm_hw_params, |
| 184 | .hw_free = snd_pcm_lib_free_pages, |
| 185 | .trigger = snd_dmaengine_pcm_trigger, |
| 186 | .pointer = snd_dmaengine_pcm_pointer, |
| 187 | }; |
| 188 | |
| 189 | static const struct snd_soc_platform_driver dmaengine_pcm_platform = { |
| 190 | .ops = &dmaengine_pcm_ops, |
| 191 | .pcm_new = dmaengine_pcm_new, |
| 192 | .pcm_free = dmaengine_pcm_free, |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame^] | 193 | .probe_order = SND_SOC_COMP_ORDER_LATE, |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 194 | }; |
| 195 | |
| 196 | static const char * const dmaengine_pcm_dma_channel_names[] = { |
| 197 | [SNDRV_PCM_STREAM_PLAYBACK] = "tx", |
| 198 | [SNDRV_PCM_STREAM_CAPTURE] = "rx", |
| 199 | }; |
| 200 | |
| 201 | /** |
| 202 | * snd_dmaengine_pcm_register - Register a dmaengine based PCM device |
| 203 | * @dev: The parent device for the PCM device |
| 204 | * @config: Platform specific PCM configuration |
| 205 | * @flags: Platform specific quirks |
| 206 | */ |
| 207 | int snd_dmaengine_pcm_register(struct device *dev, |
| 208 | const struct snd_dmaengine_pcm_config *config, unsigned int flags) |
| 209 | { |
| 210 | struct dmaengine_pcm *pcm; |
| 211 | unsigned int i; |
| 212 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 213 | pcm = kzalloc(sizeof(*pcm), GFP_KERNEL); |
| 214 | if (!pcm) |
| 215 | return -ENOMEM; |
| 216 | |
| 217 | pcm->config = config; |
| 218 | |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame^] | 219 | if (flags & SND_DMAENGINE_PCM_FLAG_COMPAT) |
| 220 | pcm->compat = true; |
| 221 | |
| 222 | if (!(flags & SND_DMAENGINE_PCM_FLAG_NO_DT) && dev->of_node) { |
| 223 | for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; i++) { |
| 224 | pcm->chan[i] = of_dma_request_slave_channel(dev->of_node, |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 225 | dmaengine_pcm_dma_channel_names[i]); |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame^] | 226 | } |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | return snd_soc_add_platform(dev, &pcm->platform, |
| 230 | &dmaengine_pcm_platform); |
| 231 | } |
| 232 | EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_register); |
| 233 | |
| 234 | /** |
| 235 | * snd_dmaengine_pcm_unregister - Removes a dmaengine based PCM device |
| 236 | * @dev: Parent device the PCM was register with |
| 237 | * |
| 238 | * Removes a dmaengine based PCM device previously registered with |
| 239 | * snd_dmaengine_pcm_register. |
| 240 | */ |
| 241 | void snd_dmaengine_pcm_unregister(struct device *dev) |
| 242 | { |
| 243 | struct snd_soc_platform *platform; |
| 244 | struct dmaengine_pcm *pcm; |
| 245 | unsigned int i; |
| 246 | |
| 247 | platform = snd_soc_lookup_platform(dev); |
| 248 | if (!platform) |
| 249 | return; |
| 250 | |
| 251 | pcm = soc_platform_to_pcm(platform); |
| 252 | |
| 253 | for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; i++) { |
| 254 | if (pcm->chan[i]) |
| 255 | dma_release_channel(pcm->chan[i]); |
| 256 | } |
| 257 | |
| 258 | snd_soc_remove_platform(platform); |
| 259 | kfree(pcm); |
| 260 | } |
| 261 | EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_unregister); |
| 262 | |
| 263 | MODULE_LICENSE("GPL"); |