Merge branch 'for-2.6.32' into for-2.6.33
[linux-2.6-block.git] / sound / soc / s3c24xx / s3c24xx-pcm.c
1 /*
2  * s3c24xx-pcm.c  --  ALSA Soc Audio Layer
3  *
4  * (c) 2006 Wolfson Microelectronics PLC.
5  * Graeme Gregory graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.com
6  *
7  * Copyright 2004-2005 Simtec Electronics
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.
15  */
16
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/io.h>
20 #include <linux/platform_device.h>
21 #include <linux/slab.h>
22 #include <linux/dma-mapping.h>
23
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>
30 #include <mach/hardware.h>
31 #include <mach/dma.h>
32
33 #include "s3c24xx-pcm.h"
34
35 static const struct snd_pcm_hardware s3c24xx_pcm_hardware = {
36         .info                   = SNDRV_PCM_INFO_INTERLEAVED |
37                                     SNDRV_PCM_INFO_BLOCK_TRANSFER |
38                                     SNDRV_PCM_INFO_MMAP |
39                                     SNDRV_PCM_INFO_MMAP_VALID |
40                                     SNDRV_PCM_INFO_PAUSE |
41                                     SNDRV_PCM_INFO_RESUME,
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
56 struct 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;
65         struct s3c24xx_pcm_dma_params *params;
66 };
67
68 /* s3c24xx_pcm_enqueue
69  *
70  * place a dma buffer onto the queue for the dma system
71  * to handle.
72 */
73 static void s3c24xx_pcm_enqueue(struct snd_pcm_substream *substream)
74 {
75         struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
76         dma_addr_t pos = prtd->dma_pos;
77         unsigned int limit;
78         int ret;
79
80         pr_debug("Entered %s\n", __func__);
81
82         if (s3c_dma_has_circular()) {
83                 limit = (prtd->dma_end - prtd->dma_start) / prtd->dma_period;
84         } else
85                 limit = prtd->dma_limit;
86
87         pr_debug("%s: loaded %d, limit %d\n", __func__, prtd->dma_loaded, limit);
88
89         while (prtd->dma_loaded < limit) {
90                 unsigned long len = prtd->dma_period;
91
92                 pr_debug("dma_loaded: %d\n", prtd->dma_loaded);
93
94                 if ((pos + len) > prtd->dma_end) {
95                         len  = prtd->dma_end - pos;
96                         pr_debug(KERN_DEBUG "%s: corrected dma len %ld\n",
97                                __func__, len);
98                 }
99
100                 ret = s3c2410_dma_enqueue(prtd->params->channel,
101                         substream, pos, len);
102
103                 if (ret == 0) {
104                         prtd->dma_loaded++;
105                         pos += prtd->dma_period;
106                         if (pos >= prtd->dma_end)
107                                 pos = prtd->dma_start;
108                 } else
109                         break;
110         }
111
112         prtd->dma_pos = pos;
113 }
114
115 static void s3c24xx_audio_buffdone(struct s3c2410_dma_chan *channel,
116                                 void *dev_id, int size,
117                                 enum s3c2410_dma_buffresult result)
118 {
119         struct snd_pcm_substream *substream = dev_id;
120         struct s3c24xx_runtime_data *prtd;
121
122         pr_debug("Entered %s\n", __func__);
123
124         if (result == S3C2410_RES_ABORT || result == S3C2410_RES_ERR)
125                 return;
126
127         prtd = substream->runtime->private_data;
128
129         if (substream)
130                 snd_pcm_period_elapsed(substream);
131
132         spin_lock(&prtd->lock);
133         if (prtd->state & ST_RUNNING && !s3c_dma_has_circular()) {
134                 prtd->dma_loaded--;
135                 s3c24xx_pcm_enqueue(substream);
136         }
137
138         spin_unlock(&prtd->lock);
139 }
140
141 static int s3c24xx_pcm_hw_params(struct snd_pcm_substream *substream,
142         struct snd_pcm_hw_params *params)
143 {
144         struct snd_pcm_runtime *runtime = substream->runtime;
145         struct s3c24xx_runtime_data *prtd = runtime->private_data;
146         struct snd_soc_pcm_runtime *rtd = substream->private_data;
147         struct s3c24xx_pcm_dma_params *dma = rtd->dai->cpu_dai->dma_data;
148         unsigned long totbytes = params_buffer_bytes(params);
149         int ret = 0;
150
151         pr_debug("Entered %s\n", __func__);
152
153         /* return if this is a bufferless transfer e.g.
154          * codec <--> BT codec or GSM modem -- lg FIXME */
155         if (!dma)
156                 return 0;
157
158         /* this may get called several times by oss emulation
159          * with different params -HW */
160         if (prtd->params == NULL) {
161                 /* prepare DMA */
162                 prtd->params = dma;
163
164                 pr_debug("params %p, client %p, channel %d\n", prtd->params,
165                         prtd->params->client, prtd->params->channel);
166
167                 ret = s3c2410_dma_request(prtd->params->channel,
168                                           prtd->params->client, NULL);
169
170                 if (ret < 0) {
171                         printk(KERN_ERR "failed to get dma channel\n");
172                         return ret;
173                 }
174
175                 /* use the circular buffering if we have it available. */
176                 if (s3c_dma_has_circular())
177                         s3c2410_dma_setflags(prtd->params->channel,
178                                              S3C2410_DMAF_CIRCULAR);
179         }
180
181         s3c2410_dma_set_buffdone_fn(prtd->params->channel,
182                                     s3c24xx_audio_buffdone);
183
184         snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
185
186         runtime->dma_bytes = totbytes;
187
188         spin_lock_irq(&prtd->lock);
189         prtd->dma_loaded = 0;
190         prtd->dma_limit = runtime->hw.periods_min;
191         prtd->dma_period = params_period_bytes(params);
192         prtd->dma_start = runtime->dma_addr;
193         prtd->dma_pos = prtd->dma_start;
194         prtd->dma_end = prtd->dma_start + totbytes;
195         spin_unlock_irq(&prtd->lock);
196
197         return 0;
198 }
199
200 static int s3c24xx_pcm_hw_free(struct snd_pcm_substream *substream)
201 {
202         struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
203
204         pr_debug("Entered %s\n", __func__);
205
206         /* TODO - do we need to ensure DMA flushed */
207         snd_pcm_set_runtime_buffer(substream, NULL);
208
209         if (prtd->params) {
210                 s3c2410_dma_free(prtd->params->channel, prtd->params->client);
211                 prtd->params = NULL;
212         }
213
214         return 0;
215 }
216
217 static int s3c24xx_pcm_prepare(struct snd_pcm_substream *substream)
218 {
219         struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
220         int ret = 0;
221
222         pr_debug("Entered %s\n", __func__);
223
224         /* return if this is a bufferless transfer e.g.
225          * codec <--> BT codec or GSM modem -- lg FIXME */
226         if (!prtd->params)
227                 return 0;
228
229         /* channel needs configuring for mem=>device, increment memory addr,
230          * sync to pclk, half-word transfers to the IIS-FIFO. */
231         if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
232                 s3c2410_dma_devconfig(prtd->params->channel,
233                                       S3C2410_DMASRC_MEM,
234                                       prtd->params->dma_addr);
235         } else {
236                 s3c2410_dma_devconfig(prtd->params->channel,
237                                       S3C2410_DMASRC_HW,
238                                       prtd->params->dma_addr);
239         }
240
241         s3c2410_dma_config(prtd->params->channel,
242                            prtd->params->dma_size);
243
244         /* flush the DMA channel */
245         s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_FLUSH);
246         prtd->dma_loaded = 0;
247         prtd->dma_pos = prtd->dma_start;
248
249         /* enqueue dma buffers */
250         s3c24xx_pcm_enqueue(substream);
251
252         return ret;
253 }
254
255 static int s3c24xx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
256 {
257         struct s3c24xx_runtime_data *prtd = substream->runtime->private_data;
258         int ret = 0;
259
260         pr_debug("Entered %s\n", __func__);
261
262         spin_lock(&prtd->lock);
263
264         switch (cmd) {
265         case SNDRV_PCM_TRIGGER_START:
266         case SNDRV_PCM_TRIGGER_RESUME:
267         case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
268                 prtd->state |= ST_RUNNING;
269                 s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_START);
270                 break;
271
272         case SNDRV_PCM_TRIGGER_STOP:
273         case SNDRV_PCM_TRIGGER_SUSPEND:
274         case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
275                 prtd->state &= ~ST_RUNNING;
276                 s3c2410_dma_ctrl(prtd->params->channel, S3C2410_DMAOP_STOP);
277                 break;
278
279         default:
280                 ret = -EINVAL;
281                 break;
282         }
283
284         spin_unlock(&prtd->lock);
285
286         return ret;
287 }
288
289 static snd_pcm_uframes_t
290 s3c24xx_pcm_pointer(struct snd_pcm_substream *substream)
291 {
292         struct snd_pcm_runtime *runtime = substream->runtime;
293         struct s3c24xx_runtime_data *prtd = runtime->private_data;
294         unsigned long res;
295         dma_addr_t src, dst;
296
297         pr_debug("Entered %s\n", __func__);
298
299         spin_lock(&prtd->lock);
300         s3c2410_dma_getposition(prtd->params->channel, &src, &dst);
301
302         if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
303                 res = dst - prtd->dma_start;
304         else
305                 res = src - prtd->dma_start;
306
307         spin_unlock(&prtd->lock);
308
309         pr_debug("Pointer %x %x\n", src, dst);
310
311         /* we seem to be getting the odd error from the pcm library due
312          * to out-of-bounds pointers. this is maybe due to the dma engine
313          * not having loaded the new values for the channel before being
314          * callled... (todo - fix )
315          */
316
317         if (res >= snd_pcm_lib_buffer_bytes(substream)) {
318                 if (res == snd_pcm_lib_buffer_bytes(substream))
319                         res = 0;
320         }
321
322         return bytes_to_frames(substream->runtime, res);
323 }
324
325 static int s3c24xx_pcm_open(struct snd_pcm_substream *substream)
326 {
327         struct snd_pcm_runtime *runtime = substream->runtime;
328         struct s3c24xx_runtime_data *prtd;
329
330         pr_debug("Entered %s\n", __func__);
331
332         snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
333         snd_soc_set_runtime_hwparams(substream, &s3c24xx_pcm_hardware);
334
335         prtd = kzalloc(sizeof(struct s3c24xx_runtime_data), GFP_KERNEL);
336         if (prtd == NULL)
337                 return -ENOMEM;
338
339         spin_lock_init(&prtd->lock);
340
341         runtime->private_data = prtd;
342         return 0;
343 }
344
345 static int s3c24xx_pcm_close(struct snd_pcm_substream *substream)
346 {
347         struct snd_pcm_runtime *runtime = substream->runtime;
348         struct s3c24xx_runtime_data *prtd = runtime->private_data;
349
350         pr_debug("Entered %s\n", __func__);
351
352         if (!prtd)
353                 pr_debug("s3c24xx_pcm_close called with prtd == NULL\n");
354
355         kfree(prtd);
356
357         return 0;
358 }
359
360 static int s3c24xx_pcm_mmap(struct snd_pcm_substream *substream,
361         struct vm_area_struct *vma)
362 {
363         struct snd_pcm_runtime *runtime = substream->runtime;
364
365         pr_debug("Entered %s\n", __func__);
366
367         return dma_mmap_writecombine(substream->pcm->card->dev, vma,
368                                      runtime->dma_area,
369                                      runtime->dma_addr,
370                                      runtime->dma_bytes);
371 }
372
373 static struct snd_pcm_ops s3c24xx_pcm_ops = {
374         .open           = s3c24xx_pcm_open,
375         .close          = s3c24xx_pcm_close,
376         .ioctl          = snd_pcm_lib_ioctl,
377         .hw_params      = s3c24xx_pcm_hw_params,
378         .hw_free        = s3c24xx_pcm_hw_free,
379         .prepare        = s3c24xx_pcm_prepare,
380         .trigger        = s3c24xx_pcm_trigger,
381         .pointer        = s3c24xx_pcm_pointer,
382         .mmap           = s3c24xx_pcm_mmap,
383 };
384
385 static int s3c24xx_pcm_preallocate_dma_buffer(struct snd_pcm *pcm, int stream)
386 {
387         struct snd_pcm_substream *substream = pcm->streams[stream].substream;
388         struct snd_dma_buffer *buf = &substream->dma_buffer;
389         size_t size = s3c24xx_pcm_hardware.buffer_bytes_max;
390
391         pr_debug("Entered %s\n", __func__);
392
393         buf->dev.type = SNDRV_DMA_TYPE_DEV;
394         buf->dev.dev = pcm->card->dev;
395         buf->private_data = NULL;
396         buf->area = dma_alloc_writecombine(pcm->card->dev, size,
397                                            &buf->addr, GFP_KERNEL);
398         if (!buf->area)
399                 return -ENOMEM;
400         buf->bytes = size;
401         return 0;
402 }
403
404 static void s3c24xx_pcm_free_dma_buffers(struct snd_pcm *pcm)
405 {
406         struct snd_pcm_substream *substream;
407         struct snd_dma_buffer *buf;
408         int stream;
409
410         pr_debug("Entered %s\n", __func__);
411
412         for (stream = 0; stream < 2; stream++) {
413                 substream = pcm->streams[stream].substream;
414                 if (!substream)
415                         continue;
416
417                 buf = &substream->dma_buffer;
418                 if (!buf->area)
419                         continue;
420
421                 dma_free_writecombine(pcm->card->dev, buf->bytes,
422                                       buf->area, buf->addr);
423                 buf->area = NULL;
424         }
425 }
426
427 static u64 s3c24xx_pcm_dmamask = DMA_BIT_MASK(32);
428
429 static int s3c24xx_pcm_new(struct snd_card *card,
430         struct snd_soc_dai *dai, struct snd_pcm *pcm)
431 {
432         int ret = 0;
433
434         pr_debug("Entered %s\n", __func__);
435
436         if (!card->dev->dma_mask)
437                 card->dev->dma_mask = &s3c24xx_pcm_dmamask;
438         if (!card->dev->coherent_dma_mask)
439                 card->dev->coherent_dma_mask = 0xffffffff;
440
441         if (dai->playback.channels_min) {
442                 ret = s3c24xx_pcm_preallocate_dma_buffer(pcm,
443                         SNDRV_PCM_STREAM_PLAYBACK);
444                 if (ret)
445                         goto out;
446         }
447
448         if (dai->capture.channels_min) {
449                 ret = s3c24xx_pcm_preallocate_dma_buffer(pcm,
450                         SNDRV_PCM_STREAM_CAPTURE);
451                 if (ret)
452                         goto out;
453         }
454  out:
455         return ret;
456 }
457
458 struct snd_soc_platform s3c24xx_soc_platform = {
459         .name           = "s3c24xx-audio",
460         .pcm_ops        = &s3c24xx_pcm_ops,
461         .pcm_new        = s3c24xx_pcm_new,
462         .pcm_free       = s3c24xx_pcm_free_dma_buffers,
463 };
464 EXPORT_SYMBOL_GPL(s3c24xx_soc_platform);
465
466 static int __init s3c24xx_soc_platform_init(void)
467 {
468         return snd_soc_register_platform(&s3c24xx_soc_platform);
469 }
470 module_init(s3c24xx_soc_platform_init);
471
472 static void __exit s3c24xx_soc_platform_exit(void)
473 {
474         snd_soc_unregister_platform(&s3c24xx_soc_platform);
475 }
476 module_exit(s3c24xx_soc_platform_exit);
477
478 MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
479 MODULE_DESCRIPTION("Samsung S3C24XX PCM DMA module");
480 MODULE_LICENSE("GPL");