ASoC: multi-component - ASoC Multi-Component Support
[deliverable/linux.git] / sound / soc / s3c24xx / s3c-dma.c
CommitLineData
c0f41bb1 1/*
d3ff5a3e 2 * s3c-dma.c -- ALSA Soc Audio Layer
c0f41bb1
BD
3 *
4 * (c) 2006 Wolfson Microelectronics PLC.
5 * Graeme Gregory graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.com
6 *
c8efef17 7 * Copyright 2004-2005 Simtec Electronics
c0f41bb1
BD
8 * http://armlinux.simtec.co.uk/
9 * Ben Dooks <ben@simtec.co.uk>
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
c0f41bb1
BD
15 */
16
17#include <linux/module.h>
18#include <linux/init.h>
5111c075 19#include <linux/io.h>
c0f41bb1
BD
20#include <linux/platform_device.h>
21#include <linux/slab.h>
22#include <linux/dma-mapping.h>
23
c0f41bb1
BD
24#include <sound/core.h>
25#include <sound/pcm.h>
26#include <sound/pcm_params.h>
27#include <sound/soc.h>
28
29#include <asm/dma.h>
a09e64fb
RK
30#include <mach/hardware.h>
31#include <mach/dma.h>
c0f41bb1 32
d3ff5a3e 33#include "s3c-dma.h"
c0f41bb1 34
faa31776 35static const struct snd_pcm_hardware s3c_dma_hardware = {
c0f41bb1
BD
36 .info = SNDRV_PCM_INFO_INTERLEAVED |
37 SNDRV_PCM_INFO_BLOCK_TRANSFER |
38 SNDRV_PCM_INFO_MMAP |
96d90e19
GG
39 SNDRV_PCM_INFO_MMAP_VALID |
40 SNDRV_PCM_INFO_PAUSE |
41 SNDRV_PCM_INFO_RESUME,
c0f41bb1
BD
42 .formats = SNDRV_PCM_FMTBIT_S16_LE |
43 SNDRV_PCM_FMTBIT_U16_LE |
44 SNDRV_PCM_FMTBIT_U8 |
45 SNDRV_PCM_FMTBIT_S8,
46 .channels_min = 2,
47 .channels_max = 2,
48 .buffer_bytes_max = 128*1024,
49 .period_bytes_min = PAGE_SIZE,
50 .period_bytes_max = PAGE_SIZE*2,
51 .periods_min = 2,
52 .periods_max = 128,
53 .fifo_size = 32,
54};
55
56struct s3c24xx_runtime_data {
57 spinlock_t lock;
58 int state;
59 unsigned int dma_loaded;
60 unsigned int dma_limit;
61 unsigned int dma_period;
62 dma_addr_t dma_start;
63 dma_addr_t dma_pos;
64 dma_addr_t dma_end;
faa31776 65 struct s3c_dma_params *params;
c0f41bb1
BD
66};
67
faa31776 68/* s3c_dma_enqueue
c0f41bb1
BD
69 *
70 * place a dma buffer onto the queue for the dma system
71 * to handle.
72*/
faa31776 73static void s3c_dma_enqueue(struct snd_pcm_substream *substream)
c0f41bb1
BD
74{
75 struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
76 dma_addr_t pos = prtd->dma_pos;
e3d80248 77 unsigned int limit;
c0f41bb1
BD
78 int ret;
79
ee7d4767 80 pr_debug("Entered %s\n", __func__);
c0f41bb1 81
d3ff5a3e 82 if (s3c_dma_has_circular())
e3d80248 83 limit = (prtd->dma_end - prtd->dma_start) / prtd->dma_period;
d3ff5a3e 84 else
e3d80248
BD
85 limit = prtd->dma_limit;
86
d3ff5a3e
JB
87 pr_debug("%s: loaded %d, limit %d\n",
88 __func__, prtd->dma_loaded, limit);
e3d80248
BD
89
90 while (prtd->dma_loaded < limit) {
c0f41bb1
BD
91 unsigned long len = prtd->dma_period;
92
ee7d4767 93 pr_debug("dma_loaded: %d\n", prtd->dma_loaded);
c0f41bb1
BD
94
95 if ((pos + len) > prtd->dma_end) {
96 len = prtd->dma_end - pos;
ee7d4767 97 pr_debug(KERN_DEBUG "%s: corrected dma len %ld\n",
9bf8e7dd 98 __func__, len);
c0f41bb1
BD
99 }
100
5111c075 101 ret = s3c2410_dma_enqueue(prtd->params->channel,
7f1bc26e 102 substream, pos, len);
c0f41bb1
BD
103
104 if (ret == 0) {
105 prtd->dma_loaded++;
106 pos += prtd->dma_period;
107 if (pos >= prtd->dma_end)
108 pos = prtd->dma_start;
109 } else
110 break;
111 }
112
113 prtd->dma_pos = pos;
114}
115
116static void s3c24xx_audio_buffdone(struct s3c2410_dma_chan *channel,
7f1bc26e
GG
117 void *dev_id, int size,
118 enum s3c2410_dma_buffresult result)
c0f41bb1
BD
119{
120 struct snd_pcm_substream *substream = dev_id;
7f1bc26e 121 struct s3c24xx_runtime_data *prtd;
c0f41bb1 122
ee7d4767 123 pr_debug("Entered %s\n", __func__);
c0f41bb1
BD
124
125 if (result == S3C2410_RES_ABORT || result == S3C2410_RES_ERR)
126 return;
127
7f1bc26e 128 prtd = substream->runtime->private_data;
5111c075 129
c0f41bb1
BD
130 if (substream)
131 snd_pcm_period_elapsed(substream);
132
133 spin_lock(&prtd->lock);
e3d80248 134 if (prtd->state & ST_RUNNING && !s3c_dma_has_circular()) {
c0f41bb1 135 prtd->dma_loaded--;
faa31776 136 s3c_dma_enqueue(substream);
c0f41bb1
BD
137 }
138
139 spin_unlock(&prtd->lock);
140}
141
faa31776 142static int s3c_dma_hw_params(struct snd_pcm_substream *substream,
c0f41bb1
BD
143 struct snd_pcm_hw_params *params)
144{
145 struct snd_pcm_runtime *runtime = substream->runtime;
146 struct s3c24xx_runtime_data *prtd = runtime->private_data;
147 struct snd_soc_pcm_runtime *rtd = substream->private_data;
c0f41bb1 148 unsigned long totbytes = params_buffer_bytes(params);
5f712b2b 149 struct s3c_dma_params *dma =
f0fba2ad 150 snd_soc_dai_get_dma_data(rtd->cpu_dai, substream);
5111c075 151 int ret = 0;
c0f41bb1 152
5f712b2b 153
ee7d4767 154 pr_debug("Entered %s\n", __func__);
c0f41bb1
BD
155
156 /* return if this is a bufferless transfer e.g.
157 * codec <--> BT codec or GSM modem -- lg FIXME */
158 if (!dma)
159 return 0;
160
646ab160
HW
161 /* this may get called several times by oss emulation
162 * with different params -HW */
163 if (prtd->params == NULL) {
164 /* prepare DMA */
165 prtd->params = dma;
c0f41bb1 166
ee7d4767 167 pr_debug("params %p, client %p, channel %d\n", prtd->params,
646ab160 168 prtd->params->client, prtd->params->channel);
c0f41bb1 169
646ab160
HW
170 ret = s3c2410_dma_request(prtd->params->channel,
171 prtd->params->client, NULL);
c0f41bb1 172
d6426171 173 if (ret < 0) {
b52a5195 174 printk(KERN_ERR "failed to get dma channel\n");
646ab160
HW
175 return ret;
176 }
e3d80248
BD
177
178 /* use the circular buffering if we have it available. */
179 if (s3c_dma_has_circular())
180 s3c2410_dma_setflags(prtd->params->channel,
181 S3C2410_DMAF_CIRCULAR);
c0f41bb1
BD
182 }
183
c0f41bb1
BD
184 s3c2410_dma_set_buffdone_fn(prtd->params->channel,
185 s3c24xx_audio_buffdone);
186
187 snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
188
189 runtime->dma_bytes = totbytes;
190
191 spin_lock_irq(&prtd->lock);
192 prtd->dma_loaded = 0;
193 prtd->dma_limit = runtime->hw.periods_min;
194 prtd->dma_period = params_period_bytes(params);
195 prtd->dma_start = runtime->dma_addr;
196 prtd->dma_pos = prtd->dma_start;
197 prtd->dma_end = prtd->dma_start + totbytes;
198 spin_unlock_irq(&prtd->lock);
199
200 return 0;
201}
202
faa31776 203static int s3c_dma_hw_free(struct snd_pcm_substream *substream)
c0f41bb1
BD
204{
205 struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
206
ee7d4767 207 pr_debug("Entered %s\n", __func__);
c0f41bb1
BD
208
209 /* TODO - do we need to ensure DMA flushed */
210 snd_pcm_set_runtime_buffer(substream, NULL);
211
7f1bc26e 212 if (prtd->params) {
c0f41bb1
BD
213 s3c2410_dma_free(prtd->params->channel, prtd->params->client);
214 prtd->params = NULL;
215 }
216
217 return 0;
218}
219
faa31776 220static int s3c_dma_prepare(struct snd_pcm_substream *substream)
c0f41bb1
BD
221{
222 struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
223 int ret = 0;
224
ee7d4767 225 pr_debug("Entered %s\n", __func__);
c0f41bb1
BD
226
227 /* return if this is a bufferless transfer e.g.
228 * codec <--> BT codec or GSM modem -- lg FIXME */
229 if (!prtd->params)
5111c075 230 return 0;
c0f41bb1 231
96d90e19
GG
232 /* channel needs configuring for mem=>device, increment memory addr,
233 * sync to pclk, half-word transfers to the IIS-FIFO. */
234 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
235 s3c2410_dma_devconfig(prtd->params->channel,
8970ef47
BD
236 S3C2410_DMASRC_MEM,
237 prtd->params->dma_addr);
96d90e19 238 } else {
96d90e19 239 s3c2410_dma_devconfig(prtd->params->channel,
8970ef47
BD
240 S3C2410_DMASRC_HW,
241 prtd->params->dma_addr);
96d90e19
GG
242 }
243
8970ef47
BD
244 s3c2410_dma_config(prtd->params->channel,
245 prtd->params->dma_size);
246
c0f41bb1
BD
247 /* flush the DMA channel */
248 s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_FLUSH);
249 prtd->dma_loaded = 0;
250 prtd->dma_pos = prtd->dma_start;
251
252 /* enqueue dma buffers */
faa31776 253 s3c_dma_enqueue(substream);
c0f41bb1
BD
254
255 return ret;
256}
257
faa31776 258static int s3c_dma_trigger(struct snd_pcm_substream *substream, int cmd)
c0f41bb1
BD
259{
260 struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
261 int ret = 0;
262
ee7d4767 263 pr_debug("Entered %s\n", __func__);
c0f41bb1
BD
264
265 spin_lock(&prtd->lock);
266
267 switch (cmd) {
268 case SNDRV_PCM_TRIGGER_START:
269 case SNDRV_PCM_TRIGGER_RESUME:
270 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
271 prtd->state |= ST_RUNNING;
272 s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_START);
c0f41bb1
BD
273 break;
274
275 case SNDRV_PCM_TRIGGER_STOP:
276 case SNDRV_PCM_TRIGGER_SUSPEND:
277 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
278 prtd->state &= ~ST_RUNNING;
279 s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_STOP);
280 break;
281
282 default:
283 ret = -EINVAL;
284 break;
285 }
286
287 spin_unlock(&prtd->lock);
288
289 return ret;
290}
291
5111c075 292static snd_pcm_uframes_t
faa31776 293s3c_dma_pointer(struct snd_pcm_substream *substream)
c0f41bb1
BD
294{
295 struct snd_pcm_runtime *runtime = substream->runtime;
296 struct s3c24xx_runtime_data *prtd = runtime->private_data;
297 unsigned long res;
298 dma_addr_t src, dst;
299
ee7d4767 300 pr_debug("Entered %s\n", __func__);
c0f41bb1
BD
301
302 spin_lock(&prtd->lock);
303 s3c2410_dma_getposition(prtd->params->channel, &src, &dst);
304
305 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
306 res = dst - prtd->dma_start;
307 else
308 res = src - prtd->dma_start;
309
310 spin_unlock(&prtd->lock);
311
ee7d4767 312 pr_debug("Pointer %x %x\n", src, dst);
c0f41bb1
BD
313
314 /* we seem to be getting the odd error from the pcm library due
315 * to out-of-bounds pointers. this is maybe due to the dma engine
316 * not having loaded the new values for the channel before being
317 * callled... (todo - fix )
318 */
319
320 if (res >= snd_pcm_lib_buffer_bytes(substream)) {
321 if (res == snd_pcm_lib_buffer_bytes(substream))
322 res = 0;
323 }
324
325 return bytes_to_frames(substream->runtime, res);
326}
327
faa31776 328static int s3c_dma_open(struct snd_pcm_substream *substream)
c0f41bb1
BD
329{
330 struct snd_pcm_runtime *runtime = substream->runtime;
331 struct s3c24xx_runtime_data *prtd;
332
ee7d4767 333 pr_debug("Entered %s\n", __func__);
c0f41bb1 334
f61c890e 335 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
faa31776 336 snd_soc_set_runtime_hwparams(substream, &s3c_dma_hardware);
c0f41bb1
BD
337
338 prtd = kzalloc(sizeof(struct s3c24xx_runtime_data), GFP_KERNEL);
339 if (prtd == NULL)
340 return -ENOMEM;
341
c72816b7
ZD
342 spin_lock_init(&prtd->lock);
343
c0f41bb1
BD
344 runtime->private_data = prtd;
345 return 0;
346}
347
faa31776 348static int s3c_dma_close(struct snd_pcm_substream *substream)
c0f41bb1
BD
349{
350 struct snd_pcm_runtime *runtime = substream->runtime;
351 struct s3c24xx_runtime_data *prtd = runtime->private_data;
352
ee7d4767 353 pr_debug("Entered %s\n", __func__);
c0f41bb1 354
5111c075 355 if (!prtd)
faa31776 356 pr_debug("s3c_dma_close called with prtd == NULL\n");
c0f41bb1 357
5111c075
MB
358 kfree(prtd);
359
c0f41bb1
BD
360 return 0;
361}
362
faa31776 363static int s3c_dma_mmap(struct snd_pcm_substream *substream,
c0f41bb1
BD
364 struct vm_area_struct *vma)
365{
366 struct snd_pcm_runtime *runtime = substream->runtime;
367
ee7d4767 368 pr_debug("Entered %s\n", __func__);
c0f41bb1
BD
369
370 return dma_mmap_writecombine(substream->pcm->card->dev, vma,
5111c075
MB
371 runtime->dma_area,
372 runtime->dma_addr,
373 runtime->dma_bytes);
c0f41bb1
BD
374}
375
faa31776
JB
376static struct snd_pcm_ops s3c_dma_ops = {
377 .open = s3c_dma_open,
378 .close = s3c_dma_close,
c0f41bb1 379 .ioctl = snd_pcm_lib_ioctl,
faa31776
JB
380 .hw_params = s3c_dma_hw_params,
381 .hw_free = s3c_dma_hw_free,
382 .prepare = s3c_dma_prepare,
383 .trigger = s3c_dma_trigger,
384 .pointer = s3c_dma_pointer,
385 .mmap = s3c_dma_mmap,
c0f41bb1
BD
386};
387
faa31776 388static int s3c_preallocate_dma_buffer(struct snd_pcm *pcm, int stream)
c0f41bb1
BD
389{
390 struct snd_pcm_substream *substream = pcm->streams[stream].substream;
391 struct snd_dma_buffer *buf = &substream->dma_buffer;
faa31776 392 size_t size = s3c_dma_hardware.buffer_bytes_max;
c0f41bb1 393
ee7d4767 394 pr_debug("Entered %s\n", __func__);
c0f41bb1
BD
395
396 buf->dev.type = SNDRV_DMA_TYPE_DEV;
397 buf->dev.dev = pcm->card->dev;
398 buf->private_data = NULL;
399 buf->area = dma_alloc_writecombine(pcm->card->dev, size,
400 &buf->addr, GFP_KERNEL);
401 if (!buf->area)
402 return -ENOMEM;
403 buf->bytes = size;
404 return 0;
405}
406
faa31776 407static void s3c_dma_free_dma_buffers(struct snd_pcm *pcm)
c0f41bb1
BD
408{
409 struct snd_pcm_substream *substream;
410 struct snd_dma_buffer *buf;
411 int stream;
412
ee7d4767 413 pr_debug("Entered %s\n", __func__);
c0f41bb1
BD
414
415 for (stream = 0; stream < 2; stream++) {
416 substream = pcm->streams[stream].substream;
417 if (!substream)
418 continue;
419
420 buf = &substream->dma_buffer;
421 if (!buf->area)
422 continue;
423
424 dma_free_writecombine(pcm->card->dev, buf->bytes,
425 buf->area, buf->addr);
426 buf->area = NULL;
427 }
428}
429
faa31776 430static u64 s3c_dma_mask = DMA_BIT_MASK(32);
c0f41bb1 431
faa31776 432static int s3c_dma_new(struct snd_card *card,
1992a6fb 433 struct snd_soc_dai *dai, struct snd_pcm *pcm)
c0f41bb1
BD
434{
435 int ret = 0;
436
ee7d4767 437 pr_debug("Entered %s\n", __func__);
c0f41bb1
BD
438
439 if (!card->dev->dma_mask)
faa31776 440 card->dev->dma_mask = &s3c_dma_mask;
c0f41bb1
BD
441 if (!card->dev->coherent_dma_mask)
442 card->dev->coherent_dma_mask = 0xffffffff;
443
f0fba2ad 444 if (dai->driver->playback.channels_min) {
faa31776 445 ret = s3c_preallocate_dma_buffer(pcm,
c0f41bb1
BD
446 SNDRV_PCM_STREAM_PLAYBACK);
447 if (ret)
448 goto out;
449 }
450
f0fba2ad 451 if (dai->driver->capture.channels_min) {
faa31776 452 ret = s3c_preallocate_dma_buffer(pcm,
c0f41bb1
BD
453 SNDRV_PCM_STREAM_CAPTURE);
454 if (ret)
455 goto out;
456 }
457 out:
458 return ret;
459}
460
f0fba2ad
LG
461static struct snd_soc_platform_driver s3c24xx_soc_platform = {
462 .ops = &s3c_dma_ops,
faa31776
JB
463 .pcm_new = s3c_dma_new,
464 .pcm_free = s3c_dma_free_dma_buffers,
c0f41bb1 465};
c0f41bb1 466
f0fba2ad 467static int __devinit s3c24xx_soc_platform_probe(struct platform_device *pdev)
958e792c 468{
f0fba2ad 469 return snd_soc_register_platform(&pdev->dev, &s3c24xx_soc_platform);
958e792c 470}
958e792c 471
f0fba2ad 472static int __devexit s3c24xx_soc_platform_remove(struct platform_device *pdev)
958e792c 473{
f0fba2ad
LG
474 snd_soc_unregister_platform(&pdev->dev);
475 return 0;
476}
477
478static struct platform_driver s3c24xx_pcm_driver = {
479 .driver = {
480 .name = "s3c24xx-pcm-audio",
481 .owner = THIS_MODULE,
482 },
483
484 .probe = s3c24xx_soc_platform_probe,
485 .remove = __devexit_p(s3c24xx_soc_platform_remove),
486};
487
488static int __init snd_s3c24xx_pcm_init(void)
489{
490 return platform_driver_register(&s3c24xx_pcm_driver);
491}
492module_init(snd_s3c24xx_pcm_init);
493
494static void __exit snd_s3c24xx_pcm_exit(void)
495{
496 platform_driver_unregister(&s3c24xx_pcm_driver);
958e792c 497}
f0fba2ad 498module_exit(snd_s3c24xx_pcm_exit);
958e792c 499
c0f41bb1 500MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
faa31776 501MODULE_DESCRIPTION("Samsung S3C Audio DMA module");
c0f41bb1 502MODULE_LICENSE("GPL");
This page took 0.306894 seconds and 5 git commands to generate.