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 { |
Takashi Iwai | f82bf8e | 2013-10-25 18:06:09 +0200 | [diff] [blame] | 28 | struct dma_chan *chan[SNDRV_PCM_STREAM_LAST + 1]; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 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); |
Lars-Peter Clausen | fa654e0 | 2013-10-08 15:08:00 +0200 | [diff] [blame] | 87 | int (*prepare_slave_config)(struct snd_pcm_substream *substream, |
| 88 | struct snd_pcm_hw_params *params, |
| 89 | struct dma_slave_config *slave_config); |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 90 | struct dma_slave_config slave_config; |
| 91 | int ret; |
| 92 | |
Lee Jones | a894bd7 | 2013-11-06 10:16:20 +0000 | [diff] [blame] | 93 | memset(&slave_config, 0, sizeof(slave_config)); |
| 94 | |
Lars-Peter Clausen | fa654e0 | 2013-10-08 15:08:00 +0200 | [diff] [blame] | 95 | if (!pcm->config) |
| 96 | prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config; |
| 97 | else |
| 98 | prepare_slave_config = pcm->config->prepare_slave_config; |
| 99 | |
| 100 | if (prepare_slave_config) { |
| 101 | ret = prepare_slave_config(substream, params, &slave_config); |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 102 | if (ret) |
| 103 | return ret; |
| 104 | |
| 105 | ret = dmaengine_slave_config(chan, &slave_config); |
| 106 | if (ret) |
| 107 | return ret; |
| 108 | } |
| 109 | |
| 110 | return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params)); |
| 111 | } |
| 112 | |
Lars-Peter Clausen | c0de42b | 2013-10-08 15:07:59 +0200 | [diff] [blame] | 113 | static int dmaengine_pcm_set_runtime_hwparams(struct snd_pcm_substream *substream) |
| 114 | { |
| 115 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 116 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 117 | struct device *dma_dev = dmaengine_dma_dev(pcm, substream); |
| 118 | struct dma_chan *chan = pcm->chan[substream->stream]; |
| 119 | struct snd_dmaengine_dai_dma_data *dma_data; |
| 120 | struct dma_slave_caps dma_caps; |
| 121 | struct snd_pcm_hardware hw; |
| 122 | int ret; |
| 123 | |
Lars-Peter Clausen | fa654e0 | 2013-10-08 15:08:00 +0200 | [diff] [blame] | 124 | if (pcm->config && pcm->config->pcm_hardware) |
Lars-Peter Clausen | c0de42b | 2013-10-08 15:07:59 +0200 | [diff] [blame] | 125 | return snd_soc_set_runtime_hwparams(substream, |
| 126 | pcm->config->pcm_hardware); |
| 127 | |
| 128 | dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream); |
| 129 | |
| 130 | memset(&hw, 0, sizeof(hw)); |
| 131 | hw.info = SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID | |
| 132 | SNDRV_PCM_INFO_INTERLEAVED; |
| 133 | hw.periods_min = 2; |
| 134 | hw.periods_max = UINT_MAX; |
| 135 | hw.period_bytes_min = 256; |
| 136 | hw.period_bytes_max = dma_get_max_seg_size(dma_dev); |
| 137 | hw.buffer_bytes_max = SIZE_MAX; |
| 138 | hw.fifo_size = dma_data->fifo_size; |
| 139 | |
Lars-Peter Clausen | a22f33b | 2013-11-30 18:00:45 +0100 | [diff] [blame] | 140 | if (pcm->flags & SND_DMAENGINE_PCM_FLAG_NO_RESIDUE) |
| 141 | hw.info |= SNDRV_PCM_INFO_BATCH; |
| 142 | |
Lars-Peter Clausen | c0de42b | 2013-10-08 15:07:59 +0200 | [diff] [blame] | 143 | ret = dma_get_slave_caps(chan, &dma_caps); |
| 144 | if (ret == 0) { |
| 145 | if (dma_caps.cmd_pause) |
| 146 | hw.info |= SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME; |
| 147 | } |
| 148 | |
| 149 | return snd_soc_set_runtime_hwparams(substream, &hw); |
| 150 | } |
| 151 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 152 | static int dmaengine_pcm_open(struct snd_pcm_substream *substream) |
| 153 | { |
| 154 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 155 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 156 | struct dma_chan *chan = pcm->chan[substream->stream]; |
| 157 | int ret; |
| 158 | |
Lars-Peter Clausen | c0de42b | 2013-10-08 15:07:59 +0200 | [diff] [blame] | 159 | ret = dmaengine_pcm_set_runtime_hwparams(substream); |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 160 | if (ret) |
| 161 | return ret; |
| 162 | |
| 163 | return snd_dmaengine_pcm_open(substream, chan); |
| 164 | } |
| 165 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 166 | static void dmaengine_pcm_free(struct snd_pcm *pcm) |
| 167 | { |
| 168 | snd_pcm_lib_preallocate_free_for_all(pcm); |
| 169 | } |
| 170 | |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame] | 171 | static struct dma_chan *dmaengine_pcm_compat_request_channel( |
| 172 | struct snd_soc_pcm_runtime *rtd, |
| 173 | struct snd_pcm_substream *substream) |
| 174 | { |
| 175 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
Mark Brown | 90130d2 | 2013-10-19 21:38:26 +0100 | [diff] [blame] | 176 | struct snd_dmaengine_dai_dma_data *dma_data; |
| 177 | |
| 178 | dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream); |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame] | 179 | |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 180 | if ((pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX) && pcm->chan[0]) |
| 181 | return pcm->chan[0]; |
| 182 | |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame] | 183 | if (pcm->config->compat_request_channel) |
| 184 | return pcm->config->compat_request_channel(rtd, substream); |
| 185 | |
| 186 | return snd_dmaengine_pcm_request_channel(pcm->config->compat_filter_fn, |
Mark Brown | 90130d2 | 2013-10-19 21:38:26 +0100 | [diff] [blame] | 187 | dma_data->filter_data); |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame] | 188 | } |
| 189 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 190 | static int dmaengine_pcm_new(struct snd_soc_pcm_runtime *rtd) |
| 191 | { |
| 192 | struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform); |
| 193 | const struct snd_dmaengine_pcm_config *config = pcm->config; |
Mark Brown | ea73b7d | 2013-10-19 17:43:51 +0100 | [diff] [blame] | 194 | struct device *dev = rtd->platform->dev; |
| 195 | struct snd_dmaengine_dai_dma_data *dma_data; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 196 | struct snd_pcm_substream *substream; |
Lars-Peter Clausen | fa654e0 | 2013-10-08 15:08:00 +0200 | [diff] [blame] | 197 | size_t prealloc_buffer_size; |
| 198 | size_t max_buffer_size; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 199 | unsigned int i; |
| 200 | int ret; |
| 201 | |
Lars-Peter Clausen | fa654e0 | 2013-10-08 15:08:00 +0200 | [diff] [blame] | 202 | if (config && config->prealloc_buffer_size) { |
| 203 | prealloc_buffer_size = config->prealloc_buffer_size; |
| 204 | max_buffer_size = config->pcm_hardware->buffer_bytes_max; |
| 205 | } else { |
| 206 | prealloc_buffer_size = 512 * 1024; |
| 207 | max_buffer_size = SIZE_MAX; |
| 208 | } |
| 209 | |
| 210 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 211 | for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; i++) { |
| 212 | substream = rtd->pcm->streams[i].substream; |
| 213 | if (!substream) |
| 214 | continue; |
| 215 | |
Mark Brown | ea73b7d | 2013-10-19 17:43:51 +0100 | [diff] [blame] | 216 | dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream); |
| 217 | |
| 218 | if (!pcm->chan[i] && |
| 219 | (pcm->flags & SND_DMAENGINE_PCM_FLAG_CUSTOM_CHANNEL_NAME)) |
| 220 | pcm->chan[i] = dma_request_slave_channel(dev, |
| 221 | dma_data->chan_name); |
| 222 | |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 223 | if (!pcm->chan[i] && (pcm->flags & SND_DMAENGINE_PCM_FLAG_COMPAT)) { |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame] | 224 | pcm->chan[i] = dmaengine_pcm_compat_request_channel(rtd, |
| 225 | substream); |
| 226 | } |
| 227 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 228 | if (!pcm->chan[i]) { |
| 229 | dev_err(rtd->platform->dev, |
| 230 | "Missing dma channel for stream: %d\n", i); |
| 231 | ret = -EINVAL; |
| 232 | goto err_free; |
| 233 | } |
| 234 | |
| 235 | ret = snd_pcm_lib_preallocate_pages(substream, |
Nicolin Chen | ca2b029 | 2013-11-07 14:45:16 +0800 | [diff] [blame] | 236 | SNDRV_DMA_TYPE_DEV_IRAM, |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 237 | dmaengine_dma_dev(pcm, substream), |
Lars-Peter Clausen | fa654e0 | 2013-10-08 15:08:00 +0200 | [diff] [blame] | 238 | prealloc_buffer_size, |
| 239 | max_buffer_size); |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 240 | if (ret) |
| 241 | goto err_free; |
| 242 | } |
| 243 | |
| 244 | return 0; |
| 245 | |
| 246 | err_free: |
| 247 | dmaengine_pcm_free(rtd->pcm); |
| 248 | return ret; |
| 249 | } |
| 250 | |
| 251 | static const struct snd_pcm_ops dmaengine_pcm_ops = { |
| 252 | .open = dmaengine_pcm_open, |
| 253 | .close = snd_dmaengine_pcm_close, |
| 254 | .ioctl = snd_pcm_lib_ioctl, |
| 255 | .hw_params = dmaengine_pcm_hw_params, |
| 256 | .hw_free = snd_pcm_lib_free_pages, |
| 257 | .trigger = snd_dmaengine_pcm_trigger, |
| 258 | .pointer = snd_dmaengine_pcm_pointer, |
| 259 | }; |
| 260 | |
| 261 | static const struct snd_soc_platform_driver dmaengine_pcm_platform = { |
| 262 | .ops = &dmaengine_pcm_ops, |
| 263 | .pcm_new = dmaengine_pcm_new, |
| 264 | .pcm_free = dmaengine_pcm_free, |
Lars-Peter Clausen | c999836 | 2013-04-15 19:19:51 +0200 | [diff] [blame] | 265 | .probe_order = SND_SOC_COMP_ORDER_LATE, |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 266 | }; |
| 267 | |
Lars-Peter Clausen | 610f780 | 2013-04-15 19:19:55 +0200 | [diff] [blame] | 268 | static const struct snd_pcm_ops dmaengine_no_residue_pcm_ops = { |
| 269 | .open = dmaengine_pcm_open, |
| 270 | .close = snd_dmaengine_pcm_close, |
| 271 | .ioctl = snd_pcm_lib_ioctl, |
| 272 | .hw_params = dmaengine_pcm_hw_params, |
| 273 | .hw_free = snd_pcm_lib_free_pages, |
| 274 | .trigger = snd_dmaengine_pcm_trigger, |
| 275 | .pointer = snd_dmaengine_pcm_pointer_no_residue, |
| 276 | }; |
| 277 | |
| 278 | static const struct snd_soc_platform_driver dmaengine_no_residue_pcm_platform = { |
| 279 | .ops = &dmaengine_no_residue_pcm_ops, |
| 280 | .pcm_new = dmaengine_pcm_new, |
| 281 | .pcm_free = dmaengine_pcm_free, |
| 282 | .probe_order = SND_SOC_COMP_ORDER_LATE, |
| 283 | }; |
| 284 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 285 | static const char * const dmaengine_pcm_dma_channel_names[] = { |
| 286 | [SNDRV_PCM_STREAM_PLAYBACK] = "tx", |
| 287 | [SNDRV_PCM_STREAM_CAPTURE] = "rx", |
| 288 | }; |
| 289 | |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 290 | static void dmaengine_pcm_request_chan_of(struct dmaengine_pcm *pcm, |
Stephen Warren | 194c7de | 2013-12-03 14:26:34 -0700 | [diff] [blame^] | 291 | struct device *dev, const struct snd_dmaengine_pcm_config *config) |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 292 | { |
| 293 | unsigned int i; |
Stephen Warren | 11b3a7a | 2013-12-03 14:26:32 -0700 | [diff] [blame] | 294 | const char *name; |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 295 | |
Mark Brown | ea73b7d | 2013-10-19 17:43:51 +0100 | [diff] [blame] | 296 | if ((pcm->flags & (SND_DMAENGINE_PCM_FLAG_NO_DT | |
| 297 | SND_DMAENGINE_PCM_FLAG_CUSTOM_CHANNEL_NAME)) || |
| 298 | !dev->of_node) |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 299 | return; |
| 300 | |
Stephen Warren | 194c7de | 2013-12-03 14:26:34 -0700 | [diff] [blame^] | 301 | if (config->dma_dev) { |
| 302 | /* |
| 303 | * If this warning is seen, it probably means that your Linux |
| 304 | * device structure does not match your HW device structure. |
| 305 | * It would be best to refactor the Linux device structure to |
| 306 | * correctly match the HW structure. |
| 307 | */ |
| 308 | dev_warn(dev, "DMA channels sourced from device %s", |
| 309 | dev_name(config->dma_dev)); |
| 310 | dev = config->dma_dev; |
| 311 | } |
| 312 | |
Stephen Warren | 11b3a7a | 2013-12-03 14:26:32 -0700 | [diff] [blame] | 313 | for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; |
| 314 | i++) { |
| 315 | if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX) |
| 316 | name = "rx-tx"; |
| 317 | else |
| 318 | name = dmaengine_pcm_dma_channel_names[i]; |
Stephen Warren | 194c7de | 2013-12-03 14:26:34 -0700 | [diff] [blame^] | 319 | if (config->chan_names[i]) |
| 320 | name = config->chan_names[i]; |
Stephen Warren | 11b3a7a | 2013-12-03 14:26:32 -0700 | [diff] [blame] | 321 | pcm->chan[i] = dma_request_slave_channel(dev, name); |
| 322 | if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX) |
| 323 | break; |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 324 | } |
Stephen Warren | 11b3a7a | 2013-12-03 14:26:32 -0700 | [diff] [blame] | 325 | |
| 326 | if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX) |
| 327 | pcm->chan[1] = pcm->chan[0]; |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 328 | } |
| 329 | |
Stephen Warren | 6b9f3e6 | 2013-12-03 14:26:33 -0700 | [diff] [blame] | 330 | static void dmaengine_pcm_release_chan(struct dmaengine_pcm *pcm) |
| 331 | { |
| 332 | unsigned int i; |
| 333 | |
| 334 | for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; |
| 335 | i++) { |
| 336 | if (!pcm->chan[i]) |
| 337 | continue; |
| 338 | dma_release_channel(pcm->chan[i]); |
| 339 | if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX) |
| 340 | break; |
| 341 | } |
| 342 | } |
| 343 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 344 | /** |
| 345 | * snd_dmaengine_pcm_register - Register a dmaengine based PCM device |
| 346 | * @dev: The parent device for the PCM device |
| 347 | * @config: Platform specific PCM configuration |
| 348 | * @flags: Platform specific quirks |
| 349 | */ |
| 350 | int snd_dmaengine_pcm_register(struct device *dev, |
| 351 | const struct snd_dmaengine_pcm_config *config, unsigned int flags) |
| 352 | { |
| 353 | struct dmaengine_pcm *pcm; |
Stephen Warren | 6b9f3e6 | 2013-12-03 14:26:33 -0700 | [diff] [blame] | 354 | int ret; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 355 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 356 | pcm = kzalloc(sizeof(*pcm), GFP_KERNEL); |
| 357 | if (!pcm) |
| 358 | return -ENOMEM; |
| 359 | |
| 360 | pcm->config = config; |
Lars-Peter Clausen | d1e1406 | 2013-04-20 19:29:00 +0200 | [diff] [blame] | 361 | pcm->flags = flags; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 362 | |
Stephen Warren | 194c7de | 2013-12-03 14:26:34 -0700 | [diff] [blame^] | 363 | dmaengine_pcm_request_chan_of(pcm, dev, config); |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 364 | |
Lars-Peter Clausen | 610f780 | 2013-04-15 19:19:55 +0200 | [diff] [blame] | 365 | if (flags & SND_DMAENGINE_PCM_FLAG_NO_RESIDUE) |
Stephen Warren | 6b9f3e6 | 2013-12-03 14:26:33 -0700 | [diff] [blame] | 366 | ret = snd_soc_add_platform(dev, &pcm->platform, |
Lars-Peter Clausen | 610f780 | 2013-04-15 19:19:55 +0200 | [diff] [blame] | 367 | &dmaengine_no_residue_pcm_platform); |
| 368 | else |
Stephen Warren | 6b9f3e6 | 2013-12-03 14:26:33 -0700 | [diff] [blame] | 369 | ret = snd_soc_add_platform(dev, &pcm->platform, |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 370 | &dmaengine_pcm_platform); |
Stephen Warren | 6b9f3e6 | 2013-12-03 14:26:33 -0700 | [diff] [blame] | 371 | if (ret) |
| 372 | goto err_free_dma; |
| 373 | |
| 374 | return 0; |
| 375 | |
| 376 | err_free_dma: |
| 377 | dmaengine_pcm_release_chan(pcm); |
| 378 | kfree(pcm); |
| 379 | return ret; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 380 | } |
| 381 | EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_register); |
| 382 | |
| 383 | /** |
| 384 | * snd_dmaengine_pcm_unregister - Removes a dmaengine based PCM device |
| 385 | * @dev: Parent device the PCM was register with |
| 386 | * |
| 387 | * Removes a dmaengine based PCM device previously registered with |
| 388 | * snd_dmaengine_pcm_register. |
| 389 | */ |
| 390 | void snd_dmaengine_pcm_unregister(struct device *dev) |
| 391 | { |
| 392 | struct snd_soc_platform *platform; |
| 393 | struct dmaengine_pcm *pcm; |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 394 | |
| 395 | platform = snd_soc_lookup_platform(dev); |
| 396 | if (!platform) |
| 397 | return; |
| 398 | |
| 399 | pcm = soc_platform_to_pcm(platform); |
| 400 | |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 401 | snd_soc_remove_platform(platform); |
Stephen Warren | 6b9f3e6 | 2013-12-03 14:26:33 -0700 | [diff] [blame] | 402 | dmaengine_pcm_release_chan(pcm); |
Lars-Peter Clausen | 28c4468 | 2013-04-15 19:19:50 +0200 | [diff] [blame] | 403 | kfree(pcm); |
| 404 | } |
| 405 | EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_unregister); |
| 406 | |
| 407 | MODULE_LICENSE("GPL"); |