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> |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 24 | |
| 25 | #include <sound/dmaengine_pcm.h> |
| 26 | |
| 27 | struct dmaengine_pcm { |
| 28 | struct dma_chan *chan[SNDRV_PCM_STREAM_CAPTURE + 1]; |
| 29 | const struct snd_dmaengine_pcm_config *config; |
| 30 | struct snd_soc_platform platform; |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 31 | unsigned int flags; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | static struct dmaengine_pcm *soc_platform_to_pcm(struct snd_soc_platform *p) |
| 35 | { |
| 36 | return container_of(p, struct dmaengine_pcm, platform); |
| 37 | } |
| 38 | |
Lars-Peter Clausen | c0de42b | 2013-10-08 15:07:59 +0200 | [diff] [blame^] | 39 | static struct device *dmaengine_dma_dev(struct dmaengine_pcm *pcm, |
| 40 | struct snd_pcm_substream *substream) |
| 41 | { |
| 42 | if (!pcm->chan[substream->stream]) |
| 43 | return NULL; |
| 44 | |
| 45 | return pcm->chan[substream->stream]->device->dev; |
| 46 | } |
| 47 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 48 | /** |
| 49 | * snd_dmaengine_pcm_prepare_slave_config() - Generic prepare_slave_config callback |
| 50 | * @substream: PCM substream |
| 51 | * @params: hw_params |
| 52 | * @slave_config: DMA slave config to prepare |
| 53 | * |
| 54 | * This function can be used as a generic prepare_slave_config callback for |
| 55 | * platforms which make use of the snd_dmaengine_dai_dma_data struct for their |
| 56 | * DAI DMA data. Internally the function will first call |
| 57 | * snd_hwparams_to_dma_slave_config to fill in the slave config based on the |
| 58 | * hw_params, followed by snd_dmaengine_set_config_from_dai_data to fill in the |
| 59 | * remaining fields based on the DAI DMA data. |
| 60 | */ |
| 61 | int snd_dmaengine_pcm_prepare_slave_config(struct snd_pcm_substream *substream, |
| 62 | struct snd_pcm_hw_params *params, struct dma_slave_config *slave_config) |
| 63 | { |
| 64 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 65 | struct snd_dmaengine_dai_dma_data *dma_data; |
| 66 | int ret; |
| 67 | |
| 68 | dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream); |
| 69 | |
| 70 | ret = snd_hwparams_to_dma_slave_config(substream, params, slave_config); |
| 71 | if (ret) |
| 72 | return ret; |
| 73 | |
| 74 | snd_dmaengine_pcm_set_config_from_dai_data(substream, dma_data, |
| 75 | slave_config); |
| 76 | |
| 77 | return 0; |
| 78 | } |
| 79 | EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_prepare_slave_config); |
| 80 | |
| 81 | static int dmaengine_pcm_hw_params(struct snd_pcm_substream *substream, |
| 82 | struct snd_pcm_hw_params *params) |
| 83 | { |
| 84 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 85 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 86 | struct dma_chan *chan = snd_dmaengine_pcm_get_chan(substream); |
| 87 | struct dma_slave_config slave_config; |
| 88 | int ret; |
| 89 | |
| 90 | if (pcm->config->prepare_slave_config) { |
| 91 | ret = pcm->config->prepare_slave_config(substream, params, |
| 92 | &slave_config); |
| 93 | if (ret) |
| 94 | return ret; |
| 95 | |
| 96 | ret = dmaengine_slave_config(chan, &slave_config); |
| 97 | if (ret) |
| 98 | return ret; |
| 99 | } |
| 100 | |
| 101 | return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params)); |
| 102 | } |
| 103 | |
Lars-Peter Clausen | c0de42b | 2013-10-08 15:07:59 +0200 | [diff] [blame^] | 104 | static int dmaengine_pcm_set_runtime_hwparams(struct snd_pcm_substream *substream) |
| 105 | { |
| 106 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 107 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 108 | struct device *dma_dev = dmaengine_dma_dev(pcm, substream); |
| 109 | struct dma_chan *chan = pcm->chan[substream->stream]; |
| 110 | struct snd_dmaengine_dai_dma_data *dma_data; |
| 111 | struct dma_slave_caps dma_caps; |
| 112 | struct snd_pcm_hardware hw; |
| 113 | int ret; |
| 114 | |
| 115 | if (pcm->config->pcm_hardware) |
| 116 | return snd_soc_set_runtime_hwparams(substream, |
| 117 | pcm->config->pcm_hardware); |
| 118 | |
| 119 | dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream); |
| 120 | |
| 121 | memset(&hw, 0, sizeof(hw)); |
| 122 | hw.info = SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID | |
| 123 | SNDRV_PCM_INFO_INTERLEAVED; |
| 124 | hw.periods_min = 2; |
| 125 | hw.periods_max = UINT_MAX; |
| 126 | hw.period_bytes_min = 256; |
| 127 | hw.period_bytes_max = dma_get_max_seg_size(dma_dev); |
| 128 | hw.buffer_bytes_max = SIZE_MAX; |
| 129 | hw.fifo_size = dma_data->fifo_size; |
| 130 | |
| 131 | ret = dma_get_slave_caps(chan, &dma_caps); |
| 132 | if (ret == 0) { |
| 133 | if (dma_caps.cmd_pause) |
| 134 | hw.info |= SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME; |
| 135 | } |
| 136 | |
| 137 | return snd_soc_set_runtime_hwparams(substream, &hw); |
| 138 | } |
| 139 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 140 | static int dmaengine_pcm_open(struct snd_pcm_substream *substream) |
| 141 | { |
| 142 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 143 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 144 | struct dma_chan *chan = pcm->chan[substream->stream]; |
| 145 | int ret; |
| 146 | |
Lars-Peter Clausen | c0de42b | 2013-10-08 15:07:59 +0200 | [diff] [blame^] | 147 | ret = dmaengine_pcm_set_runtime_hwparams(substream); |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 148 | if (ret) |
| 149 | return ret; |
| 150 | |
| 151 | return snd_dmaengine_pcm_open(substream, chan); |
| 152 | } |
| 153 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 154 | static void dmaengine_pcm_free(struct snd_pcm *pcm) |
| 155 | { |
| 156 | snd_pcm_lib_preallocate_free_for_all(pcm); |
| 157 | } |
| 158 | |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame] | 159 | static struct dma_chan *dmaengine_pcm_compat_request_channel( |
| 160 | struct snd_soc_pcm_runtime *rtd, |
| 161 | struct snd_pcm_substream *substream) |
| 162 | { |
| 163 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 164 | |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 165 | if ((pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX) && pcm->chan[0]) |
| 166 | return pcm->chan[0]; |
| 167 | |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame] | 168 | if (pcm->config->compat_request_channel) |
| 169 | return pcm->config->compat_request_channel(rtd, substream); |
| 170 | |
| 171 | return snd_dmaengine_pcm_request_channel(pcm->config->compat_filter_fn, |
| 172 | snd_soc_dai_get_dma_data(rtd->cpu_dai, substream)); |
| 173 | } |
| 174 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 175 | static int dmaengine_pcm_new(struct snd_soc_pcm_runtime *rtd) |
| 176 | { |
| 177 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 178 | const struct snd_dmaengine_pcm_config *config = pcm->config; |
| 179 | struct snd_pcm_substream *substream; |
| 180 | unsigned int i; |
| 181 | int ret; |
| 182 | |
| 183 | for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; i++) { |
| 184 | substream = rtd->pcm->streams[i].substream; |
| 185 | if (!substream) |
| 186 | continue; |
| 187 | |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 188 | if (!pcm->chan[i] && (pcm->flags & SND_DMAENGINE_PCM_FLAG_COMPAT)) { |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame] | 189 | pcm->chan[i] = dmaengine_pcm_compat_request_channel(rtd, |
| 190 | substream); |
| 191 | } |
| 192 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 193 | if (!pcm->chan[i]) { |
| 194 | dev_err(rtd->platform->dev, |
| 195 | "Missing dma channel for stream: %d\n", i); |
| 196 | ret = -EINVAL; |
| 197 | goto err_free; |
| 198 | } |
| 199 | |
| 200 | ret = snd_pcm_lib_preallocate_pages(substream, |
| 201 | SNDRV_DMA_TYPE_DEV, |
| 202 | dmaengine_dma_dev(pcm, substream), |
| 203 | config->prealloc_buffer_size, |
| 204 | config->pcm_hardware->buffer_bytes_max); |
| 205 | if (ret) |
| 206 | goto err_free; |
| 207 | } |
| 208 | |
| 209 | return 0; |
| 210 | |
| 211 | err_free: |
| 212 | dmaengine_pcm_free(rtd->pcm); |
| 213 | return ret; |
| 214 | } |
| 215 | |
| 216 | static const struct snd_pcm_ops dmaengine_pcm_ops = { |
| 217 | .open = dmaengine_pcm_open, |
| 218 | .close = snd_dmaengine_pcm_close, |
| 219 | .ioctl = snd_pcm_lib_ioctl, |
| 220 | .hw_params = dmaengine_pcm_hw_params, |
| 221 | .hw_free = snd_pcm_lib_free_pages, |
| 222 | .trigger = snd_dmaengine_pcm_trigger, |
| 223 | .pointer = snd_dmaengine_pcm_pointer, |
| 224 | }; |
| 225 | |
| 226 | static const struct snd_soc_platform_driver dmaengine_pcm_platform = { |
| 227 | .ops = &dmaengine_pcm_ops, |
| 228 | .pcm_new = dmaengine_pcm_new, |
| 229 | .pcm_free = dmaengine_pcm_free, |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame] | 230 | .probe_order = SND_SOC_COMP_ORDER_LATE, |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 231 | }; |
| 232 | |
Lars-Peter Clausen | 610f780 | 2013-04-15 19:19:55 +0200 | [diff] [blame] | 233 | static const struct snd_pcm_ops dmaengine_no_residue_pcm_ops = { |
| 234 | .open = dmaengine_pcm_open, |
| 235 | .close = snd_dmaengine_pcm_close, |
| 236 | .ioctl = snd_pcm_lib_ioctl, |
| 237 | .hw_params = dmaengine_pcm_hw_params, |
| 238 | .hw_free = snd_pcm_lib_free_pages, |
| 239 | .trigger = snd_dmaengine_pcm_trigger, |
| 240 | .pointer = snd_dmaengine_pcm_pointer_no_residue, |
| 241 | }; |
| 242 | |
| 243 | static const struct snd_soc_platform_driver dmaengine_no_residue_pcm_platform = { |
| 244 | .ops = &dmaengine_no_residue_pcm_ops, |
| 245 | .pcm_new = dmaengine_pcm_new, |
| 246 | .pcm_free = dmaengine_pcm_free, |
| 247 | .probe_order = SND_SOC_COMP_ORDER_LATE, |
| 248 | }; |
| 249 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 250 | static const char * const dmaengine_pcm_dma_channel_names[] = { |
| 251 | [SNDRV_PCM_STREAM_PLAYBACK] = "tx", |
| 252 | [SNDRV_PCM_STREAM_CAPTURE] = "rx", |
| 253 | }; |
| 254 | |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 255 | static void dmaengine_pcm_request_chan_of(struct dmaengine_pcm *pcm, |
Shawn Guo | 6f1fd93 | 2013-04-22 21:57:24 +0800 | [diff] [blame] | 256 | struct device *dev) |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 257 | { |
| 258 | unsigned int i; |
| 259 | |
Shawn Guo | 6f1fd93 | 2013-04-22 21:57:24 +0800 | [diff] [blame] | 260 | if ((pcm->flags & SND_DMAENGINE_PCM_FLAG_NO_DT) || !dev->of_node) |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 261 | return; |
| 262 | |
| 263 | if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX) { |
Shawn Guo | 6f1fd93 | 2013-04-22 21:57:24 +0800 | [diff] [blame] | 264 | pcm->chan[0] = dma_request_slave_channel(dev, "rx-tx"); |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 265 | pcm->chan[1] = pcm->chan[0]; |
| 266 | } else { |
| 267 | for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; i++) { |
Shawn Guo | 6f1fd93 | 2013-04-22 21:57:24 +0800 | [diff] [blame] | 268 | pcm->chan[i] = dma_request_slave_channel(dev, |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 269 | dmaengine_pcm_dma_channel_names[i]); |
| 270 | } |
| 271 | } |
| 272 | } |
| 273 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 274 | /** |
| 275 | * snd_dmaengine_pcm_register - Register a dmaengine based PCM device |
| 276 | * @dev: The parent device for the PCM device |
| 277 | * @config: Platform specific PCM configuration |
| 278 | * @flags: Platform specific quirks |
| 279 | */ |
| 280 | int snd_dmaengine_pcm_register(struct device *dev, |
| 281 | const struct snd_dmaengine_pcm_config *config, unsigned int flags) |
| 282 | { |
| 283 | struct dmaengine_pcm *pcm; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 284 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 285 | pcm = kzalloc(sizeof(*pcm), GFP_KERNEL); |
| 286 | if (!pcm) |
| 287 | return -ENOMEM; |
| 288 | |
| 289 | pcm->config = config; |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 290 | pcm->flags = flags; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 291 | |
Shawn Guo | 6f1fd93 | 2013-04-22 21:57:24 +0800 | [diff] [blame] | 292 | dmaengine_pcm_request_chan_of(pcm, dev); |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 293 | |
Lars-Peter Clausen | 610f780 | 2013-04-15 19:19:55 +0200 | [diff] [blame] | 294 | if (flags & SND_DMAENGINE_PCM_FLAG_NO_RESIDUE) |
| 295 | return snd_soc_add_platform(dev, &pcm->platform, |
| 296 | &dmaengine_no_residue_pcm_platform); |
| 297 | else |
| 298 | return snd_soc_add_platform(dev, &pcm->platform, |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 299 | &dmaengine_pcm_platform); |
| 300 | } |
| 301 | EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_register); |
| 302 | |
| 303 | /** |
| 304 | * snd_dmaengine_pcm_unregister - Removes a dmaengine based PCM device |
| 305 | * @dev: Parent device the PCM was register with |
| 306 | * |
| 307 | * Removes a dmaengine based PCM device previously registered with |
| 308 | * snd_dmaengine_pcm_register. |
| 309 | */ |
| 310 | void snd_dmaengine_pcm_unregister(struct device *dev) |
| 311 | { |
| 312 | struct snd_soc_platform *platform; |
| 313 | struct dmaengine_pcm *pcm; |
| 314 | unsigned int i; |
| 315 | |
| 316 | platform = snd_soc_lookup_platform(dev); |
| 317 | if (!platform) |
| 318 | return; |
| 319 | |
| 320 | pcm = soc_platform_to_pcm(platform); |
| 321 | |
| 322 | for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; i++) { |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 323 | if (pcm->chan[i]) { |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 324 | dma_release_channel(pcm->chan[i]); |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 325 | if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX) |
| 326 | break; |
| 327 | } |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | snd_soc_remove_platform(platform); |
| 331 | kfree(pcm); |
| 332 | } |
| 333 | EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_unregister); |
| 334 | |
| 335 | MODULE_LICENSE("GPL"); |