2 * s3c24xx-pcm.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>
32 #include <plat/audio.h>
34 #include "s3c24xx-pcm.h"
36 static const struct snd_pcm_hardware s3c24xx_pcm_hardware
= {
37 .info
= SNDRV_PCM_INFO_INTERLEAVED
|
38 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
40 SNDRV_PCM_INFO_MMAP_VALID
|
41 SNDRV_PCM_INFO_PAUSE
|
42 SNDRV_PCM_INFO_RESUME
,
43 .formats
= SNDRV_PCM_FMTBIT_S16_LE
|
44 SNDRV_PCM_FMTBIT_U16_LE
|
49 .buffer_bytes_max
= 128*1024,
50 .period_bytes_min
= PAGE_SIZE
,
51 .period_bytes_max
= PAGE_SIZE
*2,
57 struct s3c24xx_runtime_data
{
60 unsigned int dma_loaded
;
61 unsigned int dma_limit
;
62 unsigned int dma_period
;
66 struct s3c24xx_pcm_dma_params
*params
;
69 /* s3c24xx_pcm_enqueue
71 * place a dma buffer onto the queue for the dma system
74 static void s3c24xx_pcm_enqueue(struct snd_pcm_substream
*substream
)
76 struct s3c24xx_runtime_data
*prtd
= substream
->runtime
->private_data
;
77 dma_addr_t pos
= prtd
->dma_pos
;
80 pr_debug("Entered %s\n", __func__
);
82 while (prtd
->dma_loaded
< prtd
->dma_limit
) {
83 unsigned long len
= prtd
->dma_period
;
85 pr_debug("dma_loaded: %d\n", prtd
->dma_loaded
);
87 if ((pos
+ len
) > prtd
->dma_end
) {
88 len
= prtd
->dma_end
- pos
;
89 pr_debug(KERN_DEBUG
"%s: corrected dma len %ld\n",
93 ret
= s3c2410_dma_enqueue(prtd
->params
->channel
,
98 pos
+= prtd
->dma_period
;
99 if (pos
>= prtd
->dma_end
)
100 pos
= prtd
->dma_start
;
108 static void s3c24xx_audio_buffdone(struct s3c2410_dma_chan
*channel
,
109 void *dev_id
, int size
,
110 enum s3c2410_dma_buffresult result
)
112 struct snd_pcm_substream
*substream
= dev_id
;
113 struct s3c24xx_runtime_data
*prtd
;
115 pr_debug("Entered %s\n", __func__
);
117 if (result
== S3C2410_RES_ABORT
|| result
== S3C2410_RES_ERR
)
120 prtd
= substream
->runtime
->private_data
;
123 snd_pcm_period_elapsed(substream
);
125 spin_lock(&prtd
->lock
);
126 if (prtd
->state
& ST_RUNNING
) {
128 s3c24xx_pcm_enqueue(substream
);
131 spin_unlock(&prtd
->lock
);
134 static int s3c24xx_pcm_hw_params(struct snd_pcm_substream
*substream
,
135 struct snd_pcm_hw_params
*params
)
137 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
138 struct s3c24xx_runtime_data
*prtd
= runtime
->private_data
;
139 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
140 struct s3c24xx_pcm_dma_params
*dma
= rtd
->dai
->cpu_dai
->dma_data
;
141 unsigned long totbytes
= params_buffer_bytes(params
);
144 pr_debug("Entered %s\n", __func__
);
146 /* return if this is a bufferless transfer e.g.
147 * codec <--> BT codec or GSM modem -- lg FIXME */
151 /* this may get called several times by oss emulation
152 * with different params -HW */
153 if (prtd
->params
== NULL
) {
157 pr_debug("params %p, client %p, channel %d\n", prtd
->params
,
158 prtd
->params
->client
, prtd
->params
->channel
);
160 ret
= s3c2410_dma_request(prtd
->params
->channel
,
161 prtd
->params
->client
, NULL
);
164 printk(KERN_ERR
"failed to get dma channel\n");
169 s3c2410_dma_set_buffdone_fn(prtd
->params
->channel
,
170 s3c24xx_audio_buffdone
);
172 snd_pcm_set_runtime_buffer(substream
, &substream
->dma_buffer
);
174 runtime
->dma_bytes
= totbytes
;
176 spin_lock_irq(&prtd
->lock
);
177 prtd
->dma_loaded
= 0;
178 prtd
->dma_limit
= runtime
->hw
.periods_min
;
179 prtd
->dma_period
= params_period_bytes(params
);
180 prtd
->dma_start
= runtime
->dma_addr
;
181 prtd
->dma_pos
= prtd
->dma_start
;
182 prtd
->dma_end
= prtd
->dma_start
+ totbytes
;
183 spin_unlock_irq(&prtd
->lock
);
188 static int s3c24xx_pcm_hw_free(struct snd_pcm_substream
*substream
)
190 struct s3c24xx_runtime_data
*prtd
= substream
->runtime
->private_data
;
192 pr_debug("Entered %s\n", __func__
);
194 /* TODO - do we need to ensure DMA flushed */
195 snd_pcm_set_runtime_buffer(substream
, NULL
);
198 s3c2410_dma_free(prtd
->params
->channel
, prtd
->params
->client
);
205 static int s3c24xx_pcm_prepare(struct snd_pcm_substream
*substream
)
207 struct s3c24xx_runtime_data
*prtd
= substream
->runtime
->private_data
;
210 pr_debug("Entered %s\n", __func__
);
212 /* return if this is a bufferless transfer e.g.
213 * codec <--> BT codec or GSM modem -- lg FIXME */
217 /* channel needs configuring for mem=>device, increment memory addr,
218 * sync to pclk, half-word transfers to the IIS-FIFO. */
219 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
220 s3c2410_dma_devconfig(prtd
->params
->channel
,
222 prtd
->params
->dma_addr
);
224 s3c2410_dma_devconfig(prtd
->params
->channel
,
226 prtd
->params
->dma_addr
);
229 s3c2410_dma_config(prtd
->params
->channel
,
230 prtd
->params
->dma_size
);
232 /* flush the DMA channel */
233 s3c2410_dma_ctrl(prtd
->params
->channel
, S3C2410_DMAOP_FLUSH
);
234 prtd
->dma_loaded
= 0;
235 prtd
->dma_pos
= prtd
->dma_start
;
237 /* enqueue dma buffers */
238 s3c24xx_pcm_enqueue(substream
);
243 static int s3c24xx_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
245 struct s3c24xx_runtime_data
*prtd
= substream
->runtime
->private_data
;
248 pr_debug("Entered %s\n", __func__
);
250 spin_lock(&prtd
->lock
);
253 case SNDRV_PCM_TRIGGER_START
:
254 case SNDRV_PCM_TRIGGER_RESUME
:
255 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
256 prtd
->state
|= ST_RUNNING
;
257 s3c2410_dma_ctrl(prtd
->params
->channel
, S3C2410_DMAOP_START
);
260 case SNDRV_PCM_TRIGGER_STOP
:
261 case SNDRV_PCM_TRIGGER_SUSPEND
:
262 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
263 prtd
->state
&= ~ST_RUNNING
;
264 s3c2410_dma_ctrl(prtd
->params
->channel
, S3C2410_DMAOP_STOP
);
272 spin_unlock(&prtd
->lock
);
277 static snd_pcm_uframes_t
278 s3c24xx_pcm_pointer(struct snd_pcm_substream
*substream
)
280 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
281 struct s3c24xx_runtime_data
*prtd
= runtime
->private_data
;
285 pr_debug("Entered %s\n", __func__
);
287 spin_lock(&prtd
->lock
);
288 s3c2410_dma_getposition(prtd
->params
->channel
, &src
, &dst
);
290 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
291 res
= dst
- prtd
->dma_start
;
293 res
= src
- prtd
->dma_start
;
295 spin_unlock(&prtd
->lock
);
297 pr_debug("Pointer %x %x\n", src
, dst
);
299 /* we seem to be getting the odd error from the pcm library due
300 * to out-of-bounds pointers. this is maybe due to the dma engine
301 * not having loaded the new values for the channel before being
302 * callled... (todo - fix )
305 if (res
>= snd_pcm_lib_buffer_bytes(substream
)) {
306 if (res
== snd_pcm_lib_buffer_bytes(substream
))
310 return bytes_to_frames(substream
->runtime
, res
);
313 static int s3c24xx_pcm_open(struct snd_pcm_substream
*substream
)
315 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
316 struct s3c24xx_runtime_data
*prtd
;
318 pr_debug("Entered %s\n", __func__
);
320 snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
);
321 snd_soc_set_runtime_hwparams(substream
, &s3c24xx_pcm_hardware
);
323 prtd
= kzalloc(sizeof(struct s3c24xx_runtime_data
), GFP_KERNEL
);
327 spin_lock_init(&prtd
->lock
);
329 runtime
->private_data
= prtd
;
333 static int s3c24xx_pcm_close(struct snd_pcm_substream
*substream
)
335 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
336 struct s3c24xx_runtime_data
*prtd
= runtime
->private_data
;
338 pr_debug("Entered %s\n", __func__
);
341 pr_debug("s3c24xx_pcm_close called with prtd == NULL\n");
348 static int s3c24xx_pcm_mmap(struct snd_pcm_substream
*substream
,
349 struct vm_area_struct
*vma
)
351 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
353 pr_debug("Entered %s\n", __func__
);
355 return dma_mmap_writecombine(substream
->pcm
->card
->dev
, vma
,
361 static struct snd_pcm_ops s3c24xx_pcm_ops
= {
362 .open
= s3c24xx_pcm_open
,
363 .close
= s3c24xx_pcm_close
,
364 .ioctl
= snd_pcm_lib_ioctl
,
365 .hw_params
= s3c24xx_pcm_hw_params
,
366 .hw_free
= s3c24xx_pcm_hw_free
,
367 .prepare
= s3c24xx_pcm_prepare
,
368 .trigger
= s3c24xx_pcm_trigger
,
369 .pointer
= s3c24xx_pcm_pointer
,
370 .mmap
= s3c24xx_pcm_mmap
,
373 static int s3c24xx_pcm_preallocate_dma_buffer(struct snd_pcm
*pcm
, int stream
)
375 struct snd_pcm_substream
*substream
= pcm
->streams
[stream
].substream
;
376 struct snd_dma_buffer
*buf
= &substream
->dma_buffer
;
377 size_t size
= s3c24xx_pcm_hardware
.buffer_bytes_max
;
379 pr_debug("Entered %s\n", __func__
);
381 buf
->dev
.type
= SNDRV_DMA_TYPE_DEV
;
382 buf
->dev
.dev
= pcm
->card
->dev
;
383 buf
->private_data
= NULL
;
384 buf
->area
= dma_alloc_writecombine(pcm
->card
->dev
, size
,
385 &buf
->addr
, GFP_KERNEL
);
392 static void s3c24xx_pcm_free_dma_buffers(struct snd_pcm
*pcm
)
394 struct snd_pcm_substream
*substream
;
395 struct snd_dma_buffer
*buf
;
398 pr_debug("Entered %s\n", __func__
);
400 for (stream
= 0; stream
< 2; stream
++) {
401 substream
= pcm
->streams
[stream
].substream
;
405 buf
= &substream
->dma_buffer
;
409 dma_free_writecombine(pcm
->card
->dev
, buf
->bytes
,
410 buf
->area
, buf
->addr
);
415 static u64 s3c24xx_pcm_dmamask
= DMA_BIT_MASK(32);
417 static int s3c24xx_pcm_new(struct snd_card
*card
,
418 struct snd_soc_dai
*dai
, struct snd_pcm
*pcm
)
422 pr_debug("Entered %s\n", __func__
);
424 if (!card
->dev
->dma_mask
)
425 card
->dev
->dma_mask
= &s3c24xx_pcm_dmamask
;
426 if (!card
->dev
->coherent_dma_mask
)
427 card
->dev
->coherent_dma_mask
= 0xffffffff;
429 if (dai
->playback
.channels_min
) {
430 ret
= s3c24xx_pcm_preallocate_dma_buffer(pcm
,
431 SNDRV_PCM_STREAM_PLAYBACK
);
436 if (dai
->capture
.channels_min
) {
437 ret
= s3c24xx_pcm_preallocate_dma_buffer(pcm
,
438 SNDRV_PCM_STREAM_CAPTURE
);
446 struct snd_soc_platform s3c24xx_soc_platform
= {
447 .name
= "s3c24xx-audio",
448 .pcm_ops
= &s3c24xx_pcm_ops
,
449 .pcm_new
= s3c24xx_pcm_new
,
450 .pcm_free
= s3c24xx_pcm_free_dma_buffers
,
452 EXPORT_SYMBOL_GPL(s3c24xx_soc_platform
);
454 static int __init
s3c24xx_soc_platform_init(void)
456 return snd_soc_register_platform(&s3c24xx_soc_platform
);
458 module_init(s3c24xx_soc_platform_init
);
460 static void __exit
s3c24xx_soc_platform_exit(void)
462 snd_soc_unregister_platform(&s3c24xx_soc_platform
);
464 module_exit(s3c24xx_soc_platform_exit
);
466 MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
467 MODULE_DESCRIPTION("Samsung S3C24XX PCM DMA module");
468 MODULE_LICENSE("GPL");