2 * s3c-dma.c -- ALSA Soc Audio Layer
4 * (c) 2006 Wolfson Microelectronics PLC.
5 * Graeme Gregory graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.com
7 * Copyright 2004-2005 Simtec Electronics
8 * http://armlinux.simtec.co.uk/
9 * Ben Dooks <ben@simtec.co.uk>
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.
17 #include <linux/module.h>
18 #include <linux/init.h>
20 #include <linux/platform_device.h>
21 #include <linux/slab.h>
22 #include <linux/dma-mapping.h>
24 #include <sound/core.h>
25 #include <sound/pcm.h>
26 #include <sound/pcm_params.h>
27 #include <sound/soc.h>
30 #include <mach/hardware.h>
35 static const struct snd_pcm_hardware s3c_dma_hardware
= {
36 .info
= SNDRV_PCM_INFO_INTERLEAVED
|
37 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
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
|
48 .buffer_bytes_max
= 128*1024,
49 .period_bytes_min
= PAGE_SIZE
,
50 .period_bytes_max
= PAGE_SIZE
*2,
56 struct s3c24xx_runtime_data
{
59 unsigned int dma_loaded
;
60 unsigned int dma_limit
;
61 unsigned int dma_period
;
65 struct s3c_dma_params
*params
;
70 * place a dma buffer onto the queue for the dma system
73 static void s3c_dma_enqueue(struct snd_pcm_substream
*substream
)
75 struct s3c24xx_runtime_data
*prtd
= substream
->runtime
->private_data
;
76 dma_addr_t pos
= prtd
->dma_pos
;
80 pr_debug("Entered %s\n", __func__
);
82 if (s3c_dma_has_circular())
83 limit
= (prtd
->dma_end
- prtd
->dma_start
) / prtd
->dma_period
;
85 limit
= prtd
->dma_limit
;
87 pr_debug("%s: loaded %d, limit %d\n",
88 __func__
, prtd
->dma_loaded
, limit
);
90 while (prtd
->dma_loaded
< limit
) {
91 unsigned long len
= prtd
->dma_period
;
93 pr_debug("dma_loaded: %d\n", prtd
->dma_loaded
);
95 if ((pos
+ len
) > prtd
->dma_end
) {
96 len
= prtd
->dma_end
- pos
;
97 pr_debug(KERN_DEBUG
"%s: corrected dma len %ld\n",
101 ret
= s3c2410_dma_enqueue(prtd
->params
->channel
,
102 substream
, pos
, len
);
106 pos
+= prtd
->dma_period
;
107 if (pos
>= prtd
->dma_end
)
108 pos
= prtd
->dma_start
;
116 static void s3c24xx_audio_buffdone(struct s3c2410_dma_chan
*channel
,
117 void *dev_id
, int size
,
118 enum s3c2410_dma_buffresult result
)
120 struct snd_pcm_substream
*substream
= dev_id
;
121 struct s3c24xx_runtime_data
*prtd
;
123 pr_debug("Entered %s\n", __func__
);
125 if (result
== S3C2410_RES_ABORT
|| result
== S3C2410_RES_ERR
)
128 prtd
= substream
->runtime
->private_data
;
131 snd_pcm_period_elapsed(substream
);
133 spin_lock(&prtd
->lock
);
134 if (prtd
->state
& ST_RUNNING
&& !s3c_dma_has_circular()) {
136 s3c_dma_enqueue(substream
);
139 spin_unlock(&prtd
->lock
);
142 static int s3c_dma_hw_params(struct snd_pcm_substream
*substream
,
143 struct snd_pcm_hw_params
*params
)
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
;
148 unsigned long totbytes
= params_buffer_bytes(params
);
149 struct s3c_dma_params
*dma
=
150 snd_soc_dai_get_dma_data(rtd
->dai
->cpu_dai
, substream
);
154 pr_debug("Entered %s\n", __func__
);
156 /* return if this is a bufferless transfer e.g.
157 * codec <--> BT codec or GSM modem -- lg FIXME */
161 /* this may get called several times by oss emulation
162 * with different params -HW */
163 if (prtd
->params
== NULL
) {
167 pr_debug("params %p, client %p, channel %d\n", prtd
->params
,
168 prtd
->params
->client
, prtd
->params
->channel
);
170 ret
= s3c2410_dma_request(prtd
->params
->channel
,
171 prtd
->params
->client
, NULL
);
174 printk(KERN_ERR
"failed to get dma channel\n");
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
);
184 s3c2410_dma_set_buffdone_fn(prtd
->params
->channel
,
185 s3c24xx_audio_buffdone
);
187 snd_pcm_set_runtime_buffer(substream
, &substream
->dma_buffer
);
189 runtime
->dma_bytes
= totbytes
;
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
);
203 static int s3c_dma_hw_free(struct snd_pcm_substream
*substream
)
205 struct s3c24xx_runtime_data
*prtd
= substream
->runtime
->private_data
;
207 pr_debug("Entered %s\n", __func__
);
209 /* TODO - do we need to ensure DMA flushed */
210 snd_pcm_set_runtime_buffer(substream
, NULL
);
213 s3c2410_dma_free(prtd
->params
->channel
, prtd
->params
->client
);
220 static int s3c_dma_prepare(struct snd_pcm_substream
*substream
)
222 struct s3c24xx_runtime_data
*prtd
= substream
->runtime
->private_data
;
225 pr_debug("Entered %s\n", __func__
);
227 /* return if this is a bufferless transfer e.g.
228 * codec <--> BT codec or GSM modem -- lg FIXME */
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
,
237 prtd
->params
->dma_addr
);
239 s3c2410_dma_devconfig(prtd
->params
->channel
,
241 prtd
->params
->dma_addr
);
244 s3c2410_dma_config(prtd
->params
->channel
,
245 prtd
->params
->dma_size
);
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
;
252 /* enqueue dma buffers */
253 s3c_dma_enqueue(substream
);
258 static int s3c_dma_trigger(struct snd_pcm_substream
*substream
, int cmd
)
260 struct s3c24xx_runtime_data
*prtd
= substream
->runtime
->private_data
;
263 pr_debug("Entered %s\n", __func__
);
265 spin_lock(&prtd
->lock
);
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
);
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
);
287 spin_unlock(&prtd
->lock
);
292 static snd_pcm_uframes_t
293 s3c_dma_pointer(struct snd_pcm_substream
*substream
)
295 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
296 struct s3c24xx_runtime_data
*prtd
= runtime
->private_data
;
300 pr_debug("Entered %s\n", __func__
);
302 spin_lock(&prtd
->lock
);
303 s3c2410_dma_getposition(prtd
->params
->channel
, &src
, &dst
);
305 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
306 res
= dst
- prtd
->dma_start
;
308 res
= src
- prtd
->dma_start
;
310 spin_unlock(&prtd
->lock
);
312 pr_debug("Pointer %x %x\n", src
, dst
);
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 )
320 if (res
>= snd_pcm_lib_buffer_bytes(substream
)) {
321 if (res
== snd_pcm_lib_buffer_bytes(substream
))
325 return bytes_to_frames(substream
->runtime
, res
);
328 static int s3c_dma_open(struct snd_pcm_substream
*substream
)
330 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
331 struct s3c24xx_runtime_data
*prtd
;
333 pr_debug("Entered %s\n", __func__
);
335 snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
);
336 snd_soc_set_runtime_hwparams(substream
, &s3c_dma_hardware
);
338 prtd
= kzalloc(sizeof(struct s3c24xx_runtime_data
), GFP_KERNEL
);
342 spin_lock_init(&prtd
->lock
);
344 runtime
->private_data
= prtd
;
348 static int s3c_dma_close(struct snd_pcm_substream
*substream
)
350 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
351 struct s3c24xx_runtime_data
*prtd
= runtime
->private_data
;
353 pr_debug("Entered %s\n", __func__
);
356 pr_debug("s3c_dma_close called with prtd == NULL\n");
363 static int s3c_dma_mmap(struct snd_pcm_substream
*substream
,
364 struct vm_area_struct
*vma
)
366 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
368 pr_debug("Entered %s\n", __func__
);
370 return dma_mmap_writecombine(substream
->pcm
->card
->dev
, vma
,
376 static struct snd_pcm_ops s3c_dma_ops
= {
377 .open
= s3c_dma_open
,
378 .close
= s3c_dma_close
,
379 .ioctl
= snd_pcm_lib_ioctl
,
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
,
388 static int s3c_preallocate_dma_buffer(struct snd_pcm
*pcm
, int stream
)
390 struct snd_pcm_substream
*substream
= pcm
->streams
[stream
].substream
;
391 struct snd_dma_buffer
*buf
= &substream
->dma_buffer
;
392 size_t size
= s3c_dma_hardware
.buffer_bytes_max
;
394 pr_debug("Entered %s\n", __func__
);
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
);
407 static void s3c_dma_free_dma_buffers(struct snd_pcm
*pcm
)
409 struct snd_pcm_substream
*substream
;
410 struct snd_dma_buffer
*buf
;
413 pr_debug("Entered %s\n", __func__
);
415 for (stream
= 0; stream
< 2; stream
++) {
416 substream
= pcm
->streams
[stream
].substream
;
420 buf
= &substream
->dma_buffer
;
424 dma_free_writecombine(pcm
->card
->dev
, buf
->bytes
,
425 buf
->area
, buf
->addr
);
430 static u64 s3c_dma_mask
= DMA_BIT_MASK(32);
432 static int s3c_dma_new(struct snd_card
*card
,
433 struct snd_soc_dai
*dai
, struct snd_pcm
*pcm
)
437 pr_debug("Entered %s\n", __func__
);
439 if (!card
->dev
->dma_mask
)
440 card
->dev
->dma_mask
= &s3c_dma_mask
;
441 if (!card
->dev
->coherent_dma_mask
)
442 card
->dev
->coherent_dma_mask
= 0xffffffff;
444 if (dai
->playback
.channels_min
) {
445 ret
= s3c_preallocate_dma_buffer(pcm
,
446 SNDRV_PCM_STREAM_PLAYBACK
);
451 if (dai
->capture
.channels_min
) {
452 ret
= s3c_preallocate_dma_buffer(pcm
,
453 SNDRV_PCM_STREAM_CAPTURE
);
461 struct snd_soc_platform s3c24xx_soc_platform
= {
462 .name
= "s3c24xx-audio",
463 .pcm_ops
= &s3c_dma_ops
,
464 .pcm_new
= s3c_dma_new
,
465 .pcm_free
= s3c_dma_free_dma_buffers
,
467 EXPORT_SYMBOL_GPL(s3c24xx_soc_platform
);
469 static int __init
s3c24xx_soc_platform_init(void)
471 return snd_soc_register_platform(&s3c24xx_soc_platform
);
473 module_init(s3c24xx_soc_platform_init
);
475 static void __exit
s3c24xx_soc_platform_exit(void)
477 snd_soc_unregister_platform(&s3c24xx_soc_platform
);
479 module_exit(s3c24xx_soc_platform_exit
);
481 MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
482 MODULE_DESCRIPTION("Samsung S3C Audio DMA module");
483 MODULE_LICENSE("GPL");