2 * Au12x0/Au1550 PSC ALSA ASoC audio support.
4 * (c) 2007-2008 MSC Vertriebsges.m.b.H.,
5 * Manuel Lauss <manuel.lauss@gmail.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * DMA glue for Au1x-PSC audio.
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
19 #include <linux/slab.h>
20 #include <linux/dma-mapping.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
27 #include <asm/mach-au1x00/au1000.h>
28 #include <asm/mach-au1x00/au1xxx_dbdma.h>
29 #include <asm/mach-au1x00/au1xxx_psc.h>
35 #define MSG(x...) printk(KERN_INFO "au1xpsc_pcm: " x)
39 #define DBG(x...) do {} while (0)
42 struct au1xpsc_audio_dmadata
{
43 /* DDMA control data */
44 unsigned int ddma_id
; /* DDMA direction ID for this PSC */
45 u32 ddma_chan
; /* DDMA context */
47 /* PCM context (for irq handlers) */
48 struct snd_pcm_substream
*substream
;
49 unsigned long curr_period
; /* current segment DDMA is working on */
50 unsigned long q_period
; /* queue period(s) */
51 dma_addr_t dma_area
; /* address of queued DMA area */
52 dma_addr_t dma_area_s
; /* start address of DMA area */
53 unsigned long pos
; /* current byte position being played */
54 unsigned long periods
; /* number of SG segments in total */
55 unsigned long period_bytes
; /* size in bytes of one SG segment */
62 * These settings are somewhat okay, at least on my machine audio plays
63 * almost skip-free. Especially the 64kB buffer seems to help a LOT.
65 #define AU1XPSC_PERIOD_MIN_BYTES 1024
66 #define AU1XPSC_BUFFER_MIN_BYTES 65536
68 #define AU1XPSC_PCM_FMTS \
69 (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_U8 | \
70 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE | \
71 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE | \
72 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE | \
73 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE | \
76 /* PCM hardware DMA capabilities - platform specific */
77 static const struct snd_pcm_hardware au1xpsc_pcm_hardware
= {
78 .info
= SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_MMAP_VALID
|
79 SNDRV_PCM_INFO_INTERLEAVED
| SNDRV_PCM_INFO_BATCH
,
80 .formats
= AU1XPSC_PCM_FMTS
,
81 .period_bytes_min
= AU1XPSC_PERIOD_MIN_BYTES
,
82 .period_bytes_max
= 4096 * 1024 - 1,
84 .periods_max
= 4096, /* 2 to as-much-as-you-like */
85 .buffer_bytes_max
= 4096 * 1024 - 1,
86 .fifo_size
= 16, /* fifo entries of AC97/I2S PSC */
89 static void au1x_pcm_queue_tx(struct au1xpsc_audio_dmadata
*cd
)
91 au1xxx_dbdma_put_source(cd
->ddma_chan
, cd
->dma_area
,
92 cd
->period_bytes
, DDMA_FLAGS_IE
);
94 /* update next-to-queue period */
96 cd
->dma_area
+= cd
->period_bytes
;
97 if (cd
->q_period
>= cd
->periods
) {
99 cd
->dma_area
= cd
->dma_area_s
;
103 static void au1x_pcm_queue_rx(struct au1xpsc_audio_dmadata
*cd
)
105 au1xxx_dbdma_put_dest(cd
->ddma_chan
, cd
->dma_area
,
106 cd
->period_bytes
, DDMA_FLAGS_IE
);
108 /* update next-to-queue period */
110 cd
->dma_area
+= cd
->period_bytes
;
111 if (cd
->q_period
>= cd
->periods
) {
113 cd
->dma_area
= cd
->dma_area_s
;
117 static void au1x_pcm_dmatx_cb(int irq
, void *dev_id
)
119 struct au1xpsc_audio_dmadata
*cd
= dev_id
;
121 cd
->pos
+= cd
->period_bytes
;
122 if (++cd
->curr_period
>= cd
->periods
) {
126 snd_pcm_period_elapsed(cd
->substream
);
127 au1x_pcm_queue_tx(cd
);
130 static void au1x_pcm_dmarx_cb(int irq
, void *dev_id
)
132 struct au1xpsc_audio_dmadata
*cd
= dev_id
;
134 cd
->pos
+= cd
->period_bytes
;
135 if (++cd
->curr_period
>= cd
->periods
) {
139 snd_pcm_period_elapsed(cd
->substream
);
140 au1x_pcm_queue_rx(cd
);
143 static void au1x_pcm_dbdma_free(struct au1xpsc_audio_dmadata
*pcd
)
145 if (pcd
->ddma_chan
) {
146 au1xxx_dbdma_stop(pcd
->ddma_chan
);
147 au1xxx_dbdma_reset(pcd
->ddma_chan
);
148 au1xxx_dbdma_chan_free(pcd
->ddma_chan
);
154 /* in case of missing DMA ring or changed TX-source / RX-dest bit widths,
155 * allocate (or reallocate) a 2-descriptor DMA ring with bit depth according
156 * to ALSA-supplied sample depth. This is due to limitations in the dbdma api
157 * (cannot adjust source/dest widths of already allocated descriptor ring).
159 static int au1x_pcm_dbdma_realloc(struct au1xpsc_audio_dmadata
*pcd
,
160 int stype
, int msbits
)
162 /* DMA only in 8/16/32 bit widths */
166 /* check current config: correct bits and descriptors allocated? */
167 if ((pcd
->ddma_chan
) && (msbits
== pcd
->msbits
))
168 goto out
; /* all ok! */
170 au1x_pcm_dbdma_free(pcd
);
173 pcd
->ddma_chan
= au1xxx_dbdma_chan_alloc(pcd
->ddma_id
,
175 au1x_pcm_dmarx_cb
, (void *)pcd
);
177 pcd
->ddma_chan
= au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS
,
179 au1x_pcm_dmatx_cb
, (void *)pcd
);
184 au1xxx_dbdma_set_devwidth(pcd
->ddma_chan
, msbits
);
185 au1xxx_dbdma_ring_alloc(pcd
->ddma_chan
, 2);
187 pcd
->msbits
= msbits
;
189 au1xxx_dbdma_stop(pcd
->ddma_chan
);
190 au1xxx_dbdma_reset(pcd
->ddma_chan
);
196 static inline struct au1xpsc_audio_dmadata
*to_dmadata(struct snd_pcm_substream
*ss
)
198 struct snd_soc_pcm_runtime
*rtd
= ss
->private_data
;
199 struct au1xpsc_audio_dmadata
*pcd
=
200 snd_soc_platform_get_drvdata(rtd
->platform
);
201 return &pcd
[SUBSTREAM_TYPE(ss
)];
204 static int au1xpsc_pcm_hw_params(struct snd_pcm_substream
*substream
,
205 struct snd_pcm_hw_params
*params
)
207 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
208 struct au1xpsc_audio_dmadata
*pcd
;
211 ret
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(params
));
215 stype
= SUBSTREAM_TYPE(substream
);
216 pcd
= to_dmadata(substream
);
218 DBG("runtime->dma_area = 0x%08lx dma_addr_t = 0x%08lx dma_size = %d "
219 "runtime->min_align %d\n",
220 (unsigned long)runtime
->dma_area
,
221 (unsigned long)runtime
->dma_addr
, runtime
->dma_bytes
,
224 DBG("bits %d frags %d frag_bytes %d is_rx %d\n", params
->msbits
,
225 params_periods(params
), params_period_bytes(params
), stype
);
227 ret
= au1x_pcm_dbdma_realloc(pcd
, stype
, params
->msbits
);
229 MSG("DDMA channel (re)alloc failed!\n");
233 pcd
->substream
= substream
;
234 pcd
->period_bytes
= params_period_bytes(params
);
235 pcd
->periods
= params_periods(params
);
236 pcd
->dma_area_s
= pcd
->dma_area
= runtime
->dma_addr
;
238 pcd
->curr_period
= 0;
246 static int au1xpsc_pcm_hw_free(struct snd_pcm_substream
*substream
)
248 snd_pcm_lib_free_pages(substream
);
252 static int au1xpsc_pcm_prepare(struct snd_pcm_substream
*substream
)
254 struct au1xpsc_audio_dmadata
*pcd
= to_dmadata(substream
);
256 au1xxx_dbdma_reset(pcd
->ddma_chan
);
258 if (SUBSTREAM_TYPE(substream
) == PCM_RX
) {
259 au1x_pcm_queue_rx(pcd
);
260 au1x_pcm_queue_rx(pcd
);
262 au1x_pcm_queue_tx(pcd
);
263 au1x_pcm_queue_tx(pcd
);
269 static int au1xpsc_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
271 u32 c
= to_dmadata(substream
)->ddma_chan
;
274 case SNDRV_PCM_TRIGGER_START
:
275 case SNDRV_PCM_TRIGGER_RESUME
:
276 au1xxx_dbdma_start(c
);
278 case SNDRV_PCM_TRIGGER_STOP
:
279 case SNDRV_PCM_TRIGGER_SUSPEND
:
280 au1xxx_dbdma_stop(c
);
288 static snd_pcm_uframes_t
289 au1xpsc_pcm_pointer(struct snd_pcm_substream
*substream
)
291 return bytes_to_frames(substream
->runtime
, to_dmadata(substream
)->pos
);
294 static int au1xpsc_pcm_open(struct snd_pcm_substream
*substream
)
296 snd_soc_set_runtime_hwparams(substream
, &au1xpsc_pcm_hardware
);
300 static int au1xpsc_pcm_close(struct snd_pcm_substream
*substream
)
302 au1x_pcm_dbdma_free(to_dmadata(substream
));
306 static struct snd_pcm_ops au1xpsc_pcm_ops
= {
307 .open
= au1xpsc_pcm_open
,
308 .close
= au1xpsc_pcm_close
,
309 .ioctl
= snd_pcm_lib_ioctl
,
310 .hw_params
= au1xpsc_pcm_hw_params
,
311 .hw_free
= au1xpsc_pcm_hw_free
,
312 .prepare
= au1xpsc_pcm_prepare
,
313 .trigger
= au1xpsc_pcm_trigger
,
314 .pointer
= au1xpsc_pcm_pointer
,
317 static void au1xpsc_pcm_free_dma_buffers(struct snd_pcm
*pcm
)
319 snd_pcm_lib_preallocate_free_for_all(pcm
);
322 static int au1xpsc_pcm_new(struct snd_card
*card
,
323 struct snd_soc_dai
*dai
,
326 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
327 card
->dev
, AU1XPSC_BUFFER_MIN_BYTES
, (4096 * 1024) - 1);
332 /* au1xpsc audio platform */
333 struct snd_soc_platform_driver au1xpsc_soc_platform
= {
334 .ops
= &au1xpsc_pcm_ops
,
335 .pcm_new
= au1xpsc_pcm_new
,
336 .pcm_free
= au1xpsc_pcm_free_dma_buffers
,
339 static int __devinit
au1xpsc_pcm_drvprobe(struct platform_device
*pdev
)
341 struct au1xpsc_audio_dmadata
*dmadata
;
345 dmadata
= kzalloc(2 * sizeof(struct au1xpsc_audio_dmadata
), GFP_KERNEL
);
349 r
= platform_get_resource(pdev
, IORESOURCE_DMA
, 0);
354 dmadata
[PCM_TX
].ddma_id
= r
->start
;
357 r
= platform_get_resource(pdev
, IORESOURCE_DMA
, 1);
362 dmadata
[PCM_RX
].ddma_id
= r
->start
;
364 platform_set_drvdata(pdev
, dmadata
);
366 ret
= snd_soc_register_platform(&pdev
->dev
, &au1xpsc_soc_platform
);
375 static int __devexit
au1xpsc_pcm_drvremove(struct platform_device
*pdev
)
377 struct au1xpsc_audio_dmadata
*dmadata
= platform_get_drvdata(pdev
);
379 snd_soc_unregister_platform(&pdev
->dev
);
385 static struct platform_driver au1xpsc_pcm_driver
= {
387 .name
= "au1xpsc-pcm",
388 .owner
= THIS_MODULE
,
390 .probe
= au1xpsc_pcm_drvprobe
,
391 .remove
= __devexit_p(au1xpsc_pcm_drvremove
),
394 static int __init
au1xpsc_audio_dbdma_load(void)
396 return platform_driver_register(&au1xpsc_pcm_driver
);
399 static void __exit
au1xpsc_audio_dbdma_unload(void)
401 platform_driver_unregister(&au1xpsc_pcm_driver
);
404 module_init(au1xpsc_audio_dbdma_load
);
405 module_exit(au1xpsc_audio_dbdma_unload
);
408 struct platform_device
*au1xpsc_pcm_add(struct platform_device
*pdev
)
410 struct resource
*res
, *r
;
411 struct platform_device
*pd
;
415 r
= platform_get_resource(pdev
, IORESOURCE_DMA
, 0);
420 r
= platform_get_resource(pdev
, IORESOURCE_DMA
, 1);
425 res
= kzalloc(sizeof(struct resource
) * 2, GFP_KERNEL
);
429 res
[0].start
= res
[0].end
= id
[0];
430 res
[1].start
= res
[1].end
= id
[1];
431 res
[0].flags
= res
[1].flags
= IORESOURCE_DMA
;
433 pd
= platform_device_alloc("au1xpsc-pcm", pdev
->id
);
438 pd
->num_resources
= 2;
440 ret
= platform_device_add(pd
);
444 platform_device_put(pd
);
449 EXPORT_SYMBOL_GPL(au1xpsc_pcm_add
);
451 void au1xpsc_pcm_destroy(struct platform_device
*dmapd
)
454 platform_device_unregister(dmapd
);
456 EXPORT_SYMBOL_GPL(au1xpsc_pcm_destroy
);
458 MODULE_LICENSE("GPL");
459 MODULE_DESCRIPTION("Au12x0/Au1550 PSC Audio DMA driver");
460 MODULE_AUTHOR("Manuel Lauss");