2 * imx-pcm-dma-mx2.c -- ALSA Soc Audio Layer
4 * Copyright 2009 Sascha Hauer <s.hauer@pengutronix.de>
6 * This code is based on code copyrighted by Freescale,
7 * Liam Girdwood, Javier Martin and probably others.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
14 #include <linux/clk.h>
15 #include <linux/delay.h>
16 #include <linux/device.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/init.h>
19 #include <linux/interrupt.h>
20 #include <linux/module.h>
21 #include <linux/platform_device.h>
22 #include <linux/slab.h>
23 #include <linux/dmaengine.h>
25 #include <sound/core.h>
26 #include <sound/initval.h>
27 #include <sound/pcm.h>
28 #include <sound/pcm_params.h>
29 #include <sound/soc.h>
35 struct imx_pcm_runtime_data
{
43 struct dma_async_tx_descriptor
*desc
;
44 struct dma_chan
*dma_chan
;
45 struct imx_dma_data dma_data
;
48 static void audio_dma_irq(void *data
)
50 struct snd_pcm_substream
*substream
= (struct snd_pcm_substream
*)data
;
51 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
52 struct imx_pcm_runtime_data
*iprtd
= runtime
->private_data
;
54 iprtd
->offset
+= iprtd
->period_bytes
;
55 iprtd
->offset
%= iprtd
->period_bytes
* iprtd
->periods
;
57 snd_pcm_period_elapsed(substream
);
60 static bool filter(struct dma_chan
*chan
, void *param
)
62 struct imx_pcm_runtime_data
*iprtd
= param
;
64 if (!imx_dma_is_general_purpose(chan
))
67 chan
->private = &iprtd
->dma_data
;
72 static int imx_ssi_dma_alloc(struct snd_pcm_substream
*substream
,
73 struct snd_pcm_hw_params
*params
)
75 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
76 struct imx_pcm_dma_params
*dma_params
;
77 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
78 struct imx_pcm_runtime_data
*iprtd
= runtime
->private_data
;
79 struct dma_slave_config slave_config
;
81 enum dma_slave_buswidth buswidth
;
84 dma_params
= snd_soc_dai_get_dma_data(rtd
->cpu_dai
, substream
);
86 iprtd
->dma_data
.peripheral_type
= IMX_DMATYPE_SSI
;
87 iprtd
->dma_data
.priority
= DMA_PRIO_HIGH
;
88 iprtd
->dma_data
.dma_request
= dma_params
->dma
;
90 /* Try to grab a DMA channel */
92 dma_cap_set(DMA_SLAVE
, mask
);
93 iprtd
->dma_chan
= dma_request_channel(mask
, filter
, iprtd
);
97 switch (params_format(params
)) {
98 case SNDRV_PCM_FORMAT_S16_LE
:
99 buswidth
= DMA_SLAVE_BUSWIDTH_2_BYTES
;
101 case SNDRV_PCM_FORMAT_S20_3LE
:
102 case SNDRV_PCM_FORMAT_S24_LE
:
103 buswidth
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
109 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
110 slave_config
.direction
= DMA_TO_DEVICE
;
111 slave_config
.dst_addr
= dma_params
->dma_addr
;
112 slave_config
.dst_addr_width
= buswidth
;
113 slave_config
.dst_maxburst
= dma_params
->burstsize
;
115 slave_config
.direction
= DMA_FROM_DEVICE
;
116 slave_config
.src_addr
= dma_params
->dma_addr
;
117 slave_config
.src_addr_width
= buswidth
;
118 slave_config
.src_maxburst
= dma_params
->burstsize
;
121 ret
= dmaengine_slave_config(iprtd
->dma_chan
, &slave_config
);
128 static int snd_imx_pcm_hw_params(struct snd_pcm_substream
*substream
,
129 struct snd_pcm_hw_params
*params
)
131 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
132 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
133 struct imx_pcm_runtime_data
*iprtd
= runtime
->private_data
;
134 unsigned long dma_addr
;
135 struct dma_chan
*chan
;
136 struct imx_pcm_dma_params
*dma_params
;
139 dma_params
= snd_soc_dai_get_dma_data(rtd
->cpu_dai
, substream
);
140 ret
= imx_ssi_dma_alloc(substream
, params
);
143 chan
= iprtd
->dma_chan
;
145 iprtd
->size
= params_buffer_bytes(params
);
146 iprtd
->periods
= params_periods(params
);
147 iprtd
->period_bytes
= params_period_bytes(params
);
149 iprtd
->period_time
= HZ
/ (params_rate(params
) /
150 params_period_size(params
));
152 snd_pcm_set_runtime_buffer(substream
, &substream
->dma_buffer
);
154 dma_addr
= runtime
->dma_addr
;
156 iprtd
->buf
= (unsigned int *)substream
->dma_buffer
.area
;
158 iprtd
->desc
= chan
->device
->device_prep_dma_cyclic(chan
, dma_addr
,
159 iprtd
->period_bytes
* iprtd
->periods
,
161 substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
?
162 DMA_TO_DEVICE
: DMA_FROM_DEVICE
);
164 dev_err(&chan
->dev
->device
, "cannot prepare slave dma\n");
168 iprtd
->desc
->callback
= audio_dma_irq
;
169 iprtd
->desc
->callback_param
= substream
;
174 static int snd_imx_pcm_hw_free(struct snd_pcm_substream
*substream
)
176 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
177 struct imx_pcm_runtime_data
*iprtd
= runtime
->private_data
;
179 if (iprtd
->dma_chan
) {
180 dma_release_channel(iprtd
->dma_chan
);
181 iprtd
->dma_chan
= NULL
;
187 static int snd_imx_pcm_prepare(struct snd_pcm_substream
*substream
)
189 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
190 struct imx_pcm_dma_params
*dma_params
;
192 dma_params
= snd_soc_dai_get_dma_data(rtd
->cpu_dai
, substream
);
197 static int snd_imx_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
199 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
200 struct imx_pcm_runtime_data
*iprtd
= runtime
->private_data
;
203 case SNDRV_PCM_TRIGGER_START
:
204 case SNDRV_PCM_TRIGGER_RESUME
:
205 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
206 dmaengine_submit(iprtd
->desc
);
210 case SNDRV_PCM_TRIGGER_STOP
:
211 case SNDRV_PCM_TRIGGER_SUSPEND
:
212 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
213 dmaengine_terminate_all(iprtd
->dma_chan
);
223 static snd_pcm_uframes_t
snd_imx_pcm_pointer(struct snd_pcm_substream
*substream
)
225 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
226 struct imx_pcm_runtime_data
*iprtd
= runtime
->private_data
;
228 pr_debug("%s: %ld %ld\n", __func__
, iprtd
->offset
,
229 bytes_to_frames(substream
->runtime
, iprtd
->offset
));
231 return bytes_to_frames(substream
->runtime
, iprtd
->offset
);
234 static struct snd_pcm_hardware snd_imx_hardware
= {
235 .info
= SNDRV_PCM_INFO_INTERLEAVED
|
236 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
237 SNDRV_PCM_INFO_MMAP
|
238 SNDRV_PCM_INFO_MMAP_VALID
|
239 SNDRV_PCM_INFO_PAUSE
|
240 SNDRV_PCM_INFO_RESUME
,
241 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
245 .buffer_bytes_max
= IMX_SSI_DMABUF_SIZE
,
246 .period_bytes_min
= 128,
247 .period_bytes_max
= 65535, /* Limited by SDMA engine */
253 static int snd_imx_open(struct snd_pcm_substream
*substream
)
255 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
256 struct imx_pcm_runtime_data
*iprtd
;
259 iprtd
= kzalloc(sizeof(*iprtd
), GFP_KERNEL
);
262 runtime
->private_data
= iprtd
;
264 ret
= snd_pcm_hw_constraint_integer(substream
->runtime
,
265 SNDRV_PCM_HW_PARAM_PERIODS
);
271 snd_soc_set_runtime_hwparams(substream
, &snd_imx_hardware
);
276 static int snd_imx_close(struct snd_pcm_substream
*substream
)
278 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
279 struct imx_pcm_runtime_data
*iprtd
= runtime
->private_data
;
286 static struct snd_pcm_ops imx_pcm_ops
= {
287 .open
= snd_imx_open
,
288 .close
= snd_imx_close
,
289 .ioctl
= snd_pcm_lib_ioctl
,
290 .hw_params
= snd_imx_pcm_hw_params
,
291 .hw_free
= snd_imx_pcm_hw_free
,
292 .prepare
= snd_imx_pcm_prepare
,
293 .trigger
= snd_imx_pcm_trigger
,
294 .pointer
= snd_imx_pcm_pointer
,
295 .mmap
= snd_imx_pcm_mmap
,
298 static struct snd_soc_platform_driver imx_soc_platform_mx2
= {
300 .pcm_new
= imx_pcm_new
,
301 .pcm_free
= imx_pcm_free
,
304 static int __devinit
imx_soc_platform_probe(struct platform_device
*pdev
)
306 struct imx_ssi
*ssi
= platform_get_drvdata(pdev
);
308 ssi
->dma_params_tx
.burstsize
= 6;
309 ssi
->dma_params_rx
.burstsize
= 4;
311 return snd_soc_register_platform(&pdev
->dev
, &imx_soc_platform_mx2
);
314 static int __devexit
imx_soc_platform_remove(struct platform_device
*pdev
)
316 snd_soc_unregister_platform(&pdev
->dev
);
320 static struct platform_driver imx_pcm_driver
= {
322 .name
= "imx-pcm-audio",
323 .owner
= THIS_MODULE
,
325 .probe
= imx_soc_platform_probe
,
326 .remove
= __devexit_p(imx_soc_platform_remove
),
329 static int __init
snd_imx_pcm_init(void)
331 return platform_driver_register(&imx_pcm_driver
);
333 module_init(snd_imx_pcm_init
);
335 static void __exit
snd_imx_pcm_exit(void)
337 platform_driver_unregister(&imx_pcm_driver
);
339 module_exit(snd_imx_pcm_exit
);
340 MODULE_LICENSE("GPL");
341 MODULE_ALIAS("platform:imx-pcm-audio");