blob: 67d22b4baeb0544288fc81410f31fa1779716dd5 [file] [log] [blame]
Lars-Peter Clausen28c44682013-04-15 19:19:50 +02001/*
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 Clausen28c44682013-04-15 19:19:50 +020024
25#include <sound/dmaengine_pcm.h>
26
Lars-Peter Clausenacde50a2015-04-27 12:44:25 +020027/*
28 * The platforms dmaengine driver does not support reporting the amount of
29 * bytes that are still left to transfer.
30 */
31#define SND_DMAENGINE_PCM_FLAG_NO_RESIDUE BIT(31)
32
Lars-Peter Clausen28c44682013-04-15 19:19:50 +020033struct dmaengine_pcm {
Takashi Iwaif82bf8e2013-10-25 18:06:09 +020034 struct dma_chan *chan[SNDRV_PCM_STREAM_LAST + 1];
Lars-Peter Clausen28c44682013-04-15 19:19:50 +020035 const struct snd_dmaengine_pcm_config *config;
36 struct snd_soc_platform platform;
Lars-Peter Clausend1e14062013-04-20 19:29:00 +020037 unsigned int flags;
Lars-Peter Clausen28c44682013-04-15 19:19:50 +020038};
39
40static struct dmaengine_pcm *soc_platform_to_pcm(struct snd_soc_platform *p)
41{
42 return container_of(p, struct dmaengine_pcm, platform);
43}
44
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +020045static struct device *dmaengine_dma_dev(struct dmaengine_pcm *pcm,
46 struct snd_pcm_substream *substream)
47{
48 if (!pcm->chan[substream->stream])
49 return NULL;
50
51 return pcm->chan[substream->stream]->device->dev;
52}
53
Lars-Peter Clausen28c44682013-04-15 19:19:50 +020054/**
55 * snd_dmaengine_pcm_prepare_slave_config() - Generic prepare_slave_config callback
56 * @substream: PCM substream
57 * @params: hw_params
58 * @slave_config: DMA slave config to prepare
59 *
60 * This function can be used as a generic prepare_slave_config callback for
61 * platforms which make use of the snd_dmaengine_dai_dma_data struct for their
62 * DAI DMA data. Internally the function will first call
63 * snd_hwparams_to_dma_slave_config to fill in the slave config based on the
64 * hw_params, followed by snd_dmaengine_set_config_from_dai_data to fill in the
65 * remaining fields based on the DAI DMA data.
66 */
67int snd_dmaengine_pcm_prepare_slave_config(struct snd_pcm_substream *substream,
68 struct snd_pcm_hw_params *params, struct dma_slave_config *slave_config)
69{
70 struct snd_soc_pcm_runtime *rtd = substream->private_data;
71 struct snd_dmaengine_dai_dma_data *dma_data;
72 int ret;
73
74 dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
75
76 ret = snd_hwparams_to_dma_slave_config(substream, params, slave_config);
77 if (ret)
78 return ret;
79
80 snd_dmaengine_pcm_set_config_from_dai_data(substream, dma_data,
81 slave_config);
82
83 return 0;
84}
85EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_prepare_slave_config);
86
87static int dmaengine_pcm_hw_params(struct snd_pcm_substream *substream,
88 struct snd_pcm_hw_params *params)
89{
90 struct snd_soc_pcm_runtime *rtd = substream->private_data;
91 struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform);
92 struct dma_chan *chan = snd_dmaengine_pcm_get_chan(substream);
Lars-Peter Clausenfa654e02013-10-08 15:08:00 +020093 int (*prepare_slave_config)(struct snd_pcm_substream *substream,
94 struct snd_pcm_hw_params *params,
95 struct dma_slave_config *slave_config);
Lars-Peter Clausen28c44682013-04-15 19:19:50 +020096 struct dma_slave_config slave_config;
97 int ret;
98
Lee Jonesa894bd72013-11-06 10:16:20 +000099 memset(&slave_config, 0, sizeof(slave_config));
100
Lars-Peter Clausenfa654e02013-10-08 15:08:00 +0200101 if (!pcm->config)
102 prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config;
103 else
104 prepare_slave_config = pcm->config->prepare_slave_config;
105
106 if (prepare_slave_config) {
107 ret = prepare_slave_config(substream, params, &slave_config);
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200108 if (ret)
109 return ret;
110
111 ret = dmaengine_slave_config(chan, &slave_config);
112 if (ret)
113 return ret;
114 }
115
116 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params));
117}
118
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +0200119static int dmaengine_pcm_set_runtime_hwparams(struct snd_pcm_substream *substream)
120{
121 struct snd_soc_pcm_runtime *rtd = substream->private_data;
122 struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform);
123 struct device *dma_dev = dmaengine_dma_dev(pcm, substream);
124 struct dma_chan *chan = pcm->chan[substream->stream];
125 struct snd_dmaengine_dai_dma_data *dma_data;
126 struct dma_slave_caps dma_caps;
127 struct snd_pcm_hardware hw;
Peter Ujfalusi2d38df12014-07-03 07:51:54 +0300128 u32 addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) |
129 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) |
130 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
131 int i, ret;
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +0200132
Lars-Peter Clausenfa654e02013-10-08 15:08:00 +0200133 if (pcm->config && pcm->config->pcm_hardware)
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +0200134 return snd_soc_set_runtime_hwparams(substream,
135 pcm->config->pcm_hardware);
136
137 dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
138
139 memset(&hw, 0, sizeof(hw));
140 hw.info = SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID |
141 SNDRV_PCM_INFO_INTERLEAVED;
142 hw.periods_min = 2;
143 hw.periods_max = UINT_MAX;
144 hw.period_bytes_min = 256;
145 hw.period_bytes_max = dma_get_max_seg_size(dma_dev);
146 hw.buffer_bytes_max = SIZE_MAX;
147 hw.fifo_size = dma_data->fifo_size;
148
Lars-Peter Clausena22f33b2013-11-30 18:00:45 +0100149 if (pcm->flags & SND_DMAENGINE_PCM_FLAG_NO_RESIDUE)
150 hw.info |= SNDRV_PCM_INFO_BATCH;
151
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +0200152 ret = dma_get_slave_caps(chan, &dma_caps);
153 if (ret == 0) {
154 if (dma_caps.cmd_pause)
155 hw.info |= SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME;
Lars-Peter Clausen478028e2014-01-11 14:02:19 +0100156 if (dma_caps.residue_granularity <= DMA_RESIDUE_GRANULARITY_SEGMENT)
157 hw.info |= SNDRV_PCM_INFO_BATCH;
Peter Ujfalusi2d38df12014-07-03 07:51:54 +0300158
159 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Maxime Ripardceacbdb2014-11-17 14:41:57 +0100160 addr_widths = dma_caps.dst_addr_widths;
Peter Ujfalusi2d38df12014-07-03 07:51:54 +0300161 else
162 addr_widths = dma_caps.src_addr_widths;
163 }
164
165 /*
Matthias Reichl73fe01c2016-04-27 15:26:51 +0200166 * If SND_DMAENGINE_PCM_DAI_FLAG_PACK is set keep
167 * hw.formats set to 0, meaning no restrictions are in place.
168 * In this case it's the responsibility of the DAI driver to
169 * provide the supported format information.
Peter Ujfalusi2d38df12014-07-03 07:51:54 +0300170 */
Matthias Reichl73fe01c2016-04-27 15:26:51 +0200171 if (!(dma_data->flags & SND_DMAENGINE_PCM_DAI_FLAG_PACK))
172 /*
173 * Prepare formats mask for valid/allowed sample types. If the
174 * dma does not have support for the given physical word size,
175 * it needs to be masked out so user space can not use the
176 * format which produces corrupted audio.
177 * In case the dma driver does not implement the slave_caps the
178 * default assumption is that it supports 1, 2 and 4 bytes
179 * widths.
180 */
181 for (i = 0; i <= SNDRV_PCM_FORMAT_LAST; i++) {
182 int bits = snd_pcm_format_physical_width(i);
Peter Ujfalusi2d38df12014-07-03 07:51:54 +0300183
Matthias Reichl73fe01c2016-04-27 15:26:51 +0200184 /*
185 * Enable only samples with DMA supported physical
186 * widths
187 */
188 switch (bits) {
189 case 8:
190 case 16:
191 case 24:
192 case 32:
193 case 64:
194 if (addr_widths & (1 << (bits / 8)))
195 hw.formats |= (1LL << i);
196 break;
197 default:
198 /* Unsupported types */
199 break;
200 }
Peter Ujfalusi2d38df12014-07-03 07:51:54 +0300201 }
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +0200202
203 return snd_soc_set_runtime_hwparams(substream, &hw);
204}
205
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200206static int dmaengine_pcm_open(struct snd_pcm_substream *substream)
207{
208 struct snd_soc_pcm_runtime *rtd = substream->private_data;
209 struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform);
210 struct dma_chan *chan = pcm->chan[substream->stream];
211 int ret;
212
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +0200213 ret = dmaengine_pcm_set_runtime_hwparams(substream);
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200214 if (ret)
215 return ret;
216
217 return snd_dmaengine_pcm_open(substream, chan);
218}
219
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200220static struct dma_chan *dmaengine_pcm_compat_request_channel(
221 struct snd_soc_pcm_runtime *rtd,
222 struct snd_pcm_substream *substream)
223{
224 struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform);
Mark Brown90130d22013-10-19 21:38:26 +0100225 struct snd_dmaengine_dai_dma_data *dma_data;
Xiubo Liec4f2852014-01-16 16:08:04 +0800226 dma_filter_fn fn = NULL;
Mark Brown90130d22013-10-19 21:38:26 +0100227
228 dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200229
Lars-Peter Clausend1e14062013-04-20 19:29:00 +0200230 if ((pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX) && pcm->chan[0])
231 return pcm->chan[0];
232
Xiubo Liec4f2852014-01-16 16:08:04 +0800233 if (pcm->config && pcm->config->compat_request_channel)
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200234 return pcm->config->compat_request_channel(rtd, substream);
235
Xiubo Liec4f2852014-01-16 16:08:04 +0800236 if (pcm->config)
237 fn = pcm->config->compat_filter_fn;
238
239 return snd_dmaengine_pcm_request_channel(fn, dma_data->filter_data);
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200240}
241
Lars-Peter Clausenacde50a2015-04-27 12:44:25 +0200242static bool dmaengine_pcm_can_report_residue(struct device *dev,
243 struct dma_chan *chan)
Lars-Peter Clausen478028e2014-01-11 14:02:19 +0100244{
245 struct dma_slave_caps dma_caps;
246 int ret;
247
248 ret = dma_get_slave_caps(chan, &dma_caps);
Lars-Peter Clausenacde50a2015-04-27 12:44:25 +0200249 if (ret != 0) {
250 dev_warn(dev, "Failed to get DMA channel capabilities, falling back to period counting: %d\n",
251 ret);
252 return false;
253 }
Lars-Peter Clausen478028e2014-01-11 14:02:19 +0100254
255 if (dma_caps.residue_granularity == DMA_RESIDUE_GRANULARITY_DESCRIPTOR)
256 return false;
257
258 return true;
259}
260
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200261static int dmaengine_pcm_new(struct snd_soc_pcm_runtime *rtd)
262{
263 struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform);
264 const struct snd_dmaengine_pcm_config *config = pcm->config;
Mark Brownea73b7d2013-10-19 17:43:51 +0100265 struct device *dev = rtd->platform->dev;
266 struct snd_dmaengine_dai_dma_data *dma_data;
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200267 struct snd_pcm_substream *substream;
Lars-Peter Clausenfa654e02013-10-08 15:08:00 +0200268 size_t prealloc_buffer_size;
269 size_t max_buffer_size;
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200270 unsigned int i;
271 int ret;
272
Lars-Peter Clausenfa654e02013-10-08 15:08:00 +0200273 if (config && config->prealloc_buffer_size) {
274 prealloc_buffer_size = config->prealloc_buffer_size;
275 max_buffer_size = config->pcm_hardware->buffer_bytes_max;
276 } else {
277 prealloc_buffer_size = 512 * 1024;
278 max_buffer_size = SIZE_MAX;
279 }
280
281
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200282 for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; i++) {
283 substream = rtd->pcm->streams[i].substream;
284 if (!substream)
285 continue;
286
Mark Brownea73b7d2013-10-19 17:43:51 +0100287 dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
288
289 if (!pcm->chan[i] &&
290 (pcm->flags & SND_DMAENGINE_PCM_FLAG_CUSTOM_CHANNEL_NAME))
291 pcm->chan[i] = dma_request_slave_channel(dev,
292 dma_data->chan_name);
293
Lars-Peter Clausend1e14062013-04-20 19:29:00 +0200294 if (!pcm->chan[i] && (pcm->flags & SND_DMAENGINE_PCM_FLAG_COMPAT)) {
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200295 pcm->chan[i] = dmaengine_pcm_compat_request_channel(rtd,
296 substream);
297 }
298
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200299 if (!pcm->chan[i]) {
300 dev_err(rtd->platform->dev,
301 "Missing dma channel for stream: %d\n", i);
Lars-Peter Clausende7621e2015-01-02 13:56:07 +0100302 return -EINVAL;
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200303 }
304
305 ret = snd_pcm_lib_preallocate_pages(substream,
Nicolin Chenca2b0292013-11-07 14:45:16 +0800306 SNDRV_DMA_TYPE_DEV_IRAM,
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200307 dmaengine_dma_dev(pcm, substream),
Lars-Peter Clausenfa654e02013-10-08 15:08:00 +0200308 prealloc_buffer_size,
309 max_buffer_size);
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200310 if (ret)
Lars-Peter Clausende7621e2015-01-02 13:56:07 +0100311 return ret;
Lars-Peter Clausen478028e2014-01-11 14:02:19 +0100312
Lars-Peter Clausenacde50a2015-04-27 12:44:25 +0200313 if (!dmaengine_pcm_can_report_residue(dev, pcm->chan[i]))
Lars-Peter Clausen478028e2014-01-11 14:02:19 +0100314 pcm->flags |= SND_DMAENGINE_PCM_FLAG_NO_RESIDUE;
Peter Ujfalusi1786b9a2019-09-06 08:55:24 +0300315
316 if (rtd->pcm->streams[i].pcm->name[0] == '\0') {
317 strncpy(rtd->pcm->streams[i].pcm->name,
318 rtd->pcm->streams[i].pcm->id,
319 sizeof(rtd->pcm->streams[i].pcm->name));
320 }
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200321 }
322
323 return 0;
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200324}
325
Lars-Peter Clausen93b943e2014-01-11 14:02:18 +0100326static snd_pcm_uframes_t dmaengine_pcm_pointer(
327 struct snd_pcm_substream *substream)
328{
329 struct snd_soc_pcm_runtime *rtd = substream->private_data;
330 struct dmaengine_pcm *pcm = soc_platform_to_pcm(rtd->platform);
331
332 if (pcm->flags & SND_DMAENGINE_PCM_FLAG_NO_RESIDUE)
333 return snd_dmaengine_pcm_pointer_no_residue(substream);
334 else
335 return snd_dmaengine_pcm_pointer(substream);
336}
337
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200338static const struct snd_pcm_ops dmaengine_pcm_ops = {
339 .open = dmaengine_pcm_open,
340 .close = snd_dmaengine_pcm_close,
341 .ioctl = snd_pcm_lib_ioctl,
342 .hw_params = dmaengine_pcm_hw_params,
343 .hw_free = snd_pcm_lib_free_pages,
344 .trigger = snd_dmaengine_pcm_trigger,
Lars-Peter Clausen93b943e2014-01-11 14:02:18 +0100345 .pointer = dmaengine_pcm_pointer,
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200346};
347
348static const struct snd_soc_platform_driver dmaengine_pcm_platform = {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200349 .component_driver = {
350 .probe_order = SND_SOC_COMP_ORDER_LATE,
351 },
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200352 .ops = &dmaengine_pcm_ops,
353 .pcm_new = dmaengine_pcm_new,
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200354};
355
356static const char * const dmaengine_pcm_dma_channel_names[] = {
357 [SNDRV_PCM_STREAM_PLAYBACK] = "tx",
358 [SNDRV_PCM_STREAM_CAPTURE] = "rx",
359};
360
Stephen Warren5eda87b2013-12-10 11:11:02 -0700361static int dmaengine_pcm_request_chan_of(struct dmaengine_pcm *pcm,
Stephen Warren194c7de2013-12-03 14:26:34 -0700362 struct device *dev, const struct snd_dmaengine_pcm_config *config)
Lars-Peter Clausend1e14062013-04-20 19:29:00 +0200363{
364 unsigned int i;
Stephen Warren11b3a7a2013-12-03 14:26:32 -0700365 const char *name;
Stephen Warren5eda87b2013-12-10 11:11:02 -0700366 struct dma_chan *chan;
Lars-Peter Clausend1e14062013-04-20 19:29:00 +0200367
Mark Brownea73b7d2013-10-19 17:43:51 +0100368 if ((pcm->flags & (SND_DMAENGINE_PCM_FLAG_NO_DT |
369 SND_DMAENGINE_PCM_FLAG_CUSTOM_CHANNEL_NAME)) ||
370 !dev->of_node)
Stephen Warren5eda87b2013-12-10 11:11:02 -0700371 return 0;
Lars-Peter Clausend1e14062013-04-20 19:29:00 +0200372
Xiubo Li2b67f8b2013-12-17 15:16:40 +0800373 if (config && config->dma_dev) {
Stephen Warren194c7de2013-12-03 14:26:34 -0700374 /*
375 * If this warning is seen, it probably means that your Linux
376 * device structure does not match your HW device structure.
377 * It would be best to refactor the Linux device structure to
378 * correctly match the HW structure.
379 */
380 dev_warn(dev, "DMA channels sourced from device %s",
381 dev_name(config->dma_dev));
382 dev = config->dma_dev;
383 }
384
Stephen Warren11b3a7a2013-12-03 14:26:32 -0700385 for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE;
386 i++) {
387 if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX)
388 name = "rx-tx";
389 else
390 name = dmaengine_pcm_dma_channel_names[i];
Xiubo Li2b67f8b2013-12-17 15:16:40 +0800391 if (config && config->chan_names[i])
Stephen Warren194c7de2013-12-03 14:26:34 -0700392 name = config->chan_names[i];
Stephen Warren5eda87b2013-12-10 11:11:02 -0700393 chan = dma_request_slave_channel_reason(dev, name);
394 if (IS_ERR(chan)) {
Stephen Warrene9036c22013-12-11 11:20:50 -0700395 if (PTR_ERR(chan) == -EPROBE_DEFER)
Stephen Warren5eda87b2013-12-10 11:11:02 -0700396 return -EPROBE_DEFER;
397 pcm->chan[i] = NULL;
398 } else {
399 pcm->chan[i] = chan;
400 }
Stephen Warren11b3a7a2013-12-03 14:26:32 -0700401 if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX)
402 break;
Lars-Peter Clausend1e14062013-04-20 19:29:00 +0200403 }
Stephen Warren11b3a7a2013-12-03 14:26:32 -0700404
405 if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX)
406 pcm->chan[1] = pcm->chan[0];
Stephen Warren5eda87b2013-12-10 11:11:02 -0700407
408 return 0;
Lars-Peter Clausend1e14062013-04-20 19:29:00 +0200409}
410
Stephen Warren6b9f3e62013-12-03 14:26:33 -0700411static void dmaengine_pcm_release_chan(struct dmaengine_pcm *pcm)
412{
413 unsigned int i;
414
415 for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE;
416 i++) {
417 if (!pcm->chan[i])
418 continue;
419 dma_release_channel(pcm->chan[i]);
420 if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX)
421 break;
422 }
423}
424
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200425/**
426 * snd_dmaengine_pcm_register - Register a dmaengine based PCM device
427 * @dev: The parent device for the PCM device
428 * @config: Platform specific PCM configuration
429 * @flags: Platform specific quirks
430 */
431int snd_dmaengine_pcm_register(struct device *dev,
432 const struct snd_dmaengine_pcm_config *config, unsigned int flags)
433{
434 struct dmaengine_pcm *pcm;
Stephen Warren6b9f3e62013-12-03 14:26:33 -0700435 int ret;
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200436
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200437 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
438 if (!pcm)
439 return -ENOMEM;
440
441 pcm->config = config;
Lars-Peter Clausend1e14062013-04-20 19:29:00 +0200442 pcm->flags = flags;
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200443
Stephen Warren5eda87b2013-12-10 11:11:02 -0700444 ret = dmaengine_pcm_request_chan_of(pcm, dev, config);
445 if (ret)
446 goto err_free_dma;
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200447
Lars-Peter Clausen93b943e2014-01-11 14:02:18 +0100448 ret = snd_soc_add_platform(dev, &pcm->platform,
449 &dmaengine_pcm_platform);
Stephen Warren6b9f3e62013-12-03 14:26:33 -0700450 if (ret)
451 goto err_free_dma;
452
453 return 0;
454
455err_free_dma:
456 dmaengine_pcm_release_chan(pcm);
457 kfree(pcm);
458 return ret;
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200459}
460EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_register);
461
462/**
463 * snd_dmaengine_pcm_unregister - Removes a dmaengine based PCM device
464 * @dev: Parent device the PCM was register with
465 *
466 * Removes a dmaengine based PCM device previously registered with
467 * snd_dmaengine_pcm_register.
468 */
469void snd_dmaengine_pcm_unregister(struct device *dev)
470{
471 struct snd_soc_platform *platform;
472 struct dmaengine_pcm *pcm;
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200473
474 platform = snd_soc_lookup_platform(dev);
475 if (!platform)
476 return;
477
478 pcm = soc_platform_to_pcm(platform);
479
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200480 snd_soc_remove_platform(platform);
Stephen Warren6b9f3e62013-12-03 14:26:33 -0700481 dmaengine_pcm_release_chan(pcm);
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200482 kfree(pcm);
483}
484EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_unregister);
485
486MODULE_LICENSE("GPL");