blob: 94720a6dd7b637e36234ad7e46990a11a38c1360 [file] [log] [blame]
Sascha Hauer83802222009-11-25 16:41:04 +01001/*
2 * imx-pcm-fiq.c -- ALSA Soc Audio Layer
3 *
4 * Copyright 2009 Sascha Hauer <s.hauer@pengutronix.de>
5 *
6 * This code is based on code copyrighted by Freescale,
7 * Liam Girdwood, Javier Martin and probably others.
8 *
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.
13 */
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Sascha Hauer83802222009-11-25 16:41:04 +010023
24#include <sound/core.h>
Markus Pargmann9051cba2013-06-20 15:20:21 +020025#include <sound/dmaengine_pcm.h>
Sascha Hauer83802222009-11-25 16:41:04 +010026#include <sound/initval.h>
27#include <sound/pcm.h>
28#include <sound/pcm_params.h>
29#include <sound/soc.h>
30
31#include <asm/fiq.h>
32
Arnd Bergmann82906b12012-08-24 15:14:29 +020033#include <linux/platform_data/asoc-imx-ssi.h>
Sascha Hauer83802222009-11-25 16:41:04 +010034
35#include "imx-ssi.h"
Markus Pargmann9051cba2013-06-20 15:20:21 +020036#include "imx-pcm.h"
Sascha Hauer83802222009-11-25 16:41:04 +010037
38struct imx_pcm_runtime_data {
Fabio Estevam2fb14882013-03-20 02:22:40 -030039 unsigned int period;
Sascha Hauer83802222009-11-25 16:41:04 +010040 int periods;
Sascha Hauer83802222009-11-25 16:41:04 +010041 unsigned long offset;
Sascha Hauer43a3cec2010-04-08 11:31:26 +020042 struct hrtimer hrt;
43 int poll_time_ns;
44 struct snd_pcm_substream *substream;
Sascha Hauer83926092010-04-14 09:17:30 +020045 atomic_t running;
Sascha Hauer83802222009-11-25 16:41:04 +010046};
47
Sascha Hauer43a3cec2010-04-08 11:31:26 +020048static enum hrtimer_restart snd_hrtimer_callback(struct hrtimer *hrt)
Mark Brownb4e82b52010-02-25 12:52:10 +000049{
Sascha Hauer43a3cec2010-04-08 11:31:26 +020050 struct imx_pcm_runtime_data *iprtd =
51 container_of(hrt, struct imx_pcm_runtime_data, hrt);
52 struct snd_pcm_substream *substream = iprtd->substream;
Sascha Hauer83802222009-11-25 16:41:04 +010053 struct snd_pcm_runtime *runtime = substream->runtime;
Sascha Hauer83802222009-11-25 16:41:04 +010054 struct pt_regs regs;
55
Sascha Hauer83926092010-04-14 09:17:30 +020056 if (!atomic_read(&iprtd->running))
57 return HRTIMER_NORESTART;
58
Sascha Hauer83802222009-11-25 16:41:04 +010059 get_fiq_regs(&regs);
60
61 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
62 iprtd->offset = regs.ARM_r8 & 0xffff;
63 else
64 iprtd->offset = regs.ARM_r9 & 0xffff;
65
Oskar Schirmer68f96722013-11-05 12:13:54 +000066 snd_pcm_period_elapsed(substream);
Mark Brownb4e82b52010-02-25 12:52:10 +000067
Sascha Hauer43a3cec2010-04-08 11:31:26 +020068 hrtimer_forward_now(hrt, ns_to_ktime(iprtd->poll_time_ns));
Mark Brownb4e82b52010-02-25 12:52:10 +000069
Sascha Hauer43a3cec2010-04-08 11:31:26 +020070 return HRTIMER_RESTART;
Sascha Hauer83802222009-11-25 16:41:04 +010071}
72
73static struct fiq_handler fh = {
74 .name = DRV_NAME,
75};
76
77static int snd_imx_pcm_hw_params(struct snd_pcm_substream *substream,
78 struct snd_pcm_hw_params *params)
79{
80 struct snd_pcm_runtime *runtime = substream->runtime;
81 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
82
Sascha Hauer83802222009-11-25 16:41:04 +010083 iprtd->periods = params_periods(params);
Oskar Schirmer68f96722013-11-05 12:13:54 +000084 iprtd->period = params_period_bytes(params);
Sascha Hauer83802222009-11-25 16:41:04 +010085 iprtd->offset = 0;
Sascha Hauer43a3cec2010-04-08 11:31:26 +020086 iprtd->poll_time_ns = 1000000000 / params_rate(params) *
87 params_period_size(params);
Sascha Hauer83802222009-11-25 16:41:04 +010088 snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
89
90 return 0;
91}
92
93static int snd_imx_pcm_prepare(struct snd_pcm_substream *substream)
94{
95 struct snd_pcm_runtime *runtime = substream->runtime;
96 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
97 struct pt_regs regs;
98
99 get_fiq_regs(&regs);
100 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
101 regs.ARM_r8 = (iprtd->period * iprtd->periods - 1) << 16;
102 else
103 regs.ARM_r9 = (iprtd->period * iprtd->periods - 1) << 16;
104
105 set_fiq_regs(&regs);
106
107 return 0;
108}
109
110static int fiq_enable;
111static int imx_pcm_fiq;
112
113static int snd_imx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
114{
115 struct snd_pcm_runtime *runtime = substream->runtime;
116 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
117
118 switch (cmd) {
119 case SNDRV_PCM_TRIGGER_START:
120 case SNDRV_PCM_TRIGGER_RESUME:
121 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Sascha Hauer83926092010-04-14 09:17:30 +0200122 atomic_set(&iprtd->running, 1);
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200123 hrtimer_start(&iprtd->hrt, ns_to_ktime(iprtd->poll_time_ns),
124 HRTIMER_MODE_REL);
Sascha Hauer83802222009-11-25 16:41:04 +0100125 if (++fiq_enable == 1)
126 enable_fiq(imx_pcm_fiq);
127
128 break;
129
130 case SNDRV_PCM_TRIGGER_STOP:
131 case SNDRV_PCM_TRIGGER_SUSPEND:
132 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Sascha Hauer83926092010-04-14 09:17:30 +0200133 atomic_set(&iprtd->running, 0);
134
Sascha Hauer83802222009-11-25 16:41:04 +0100135 if (--fiq_enable == 0)
136 disable_fiq(imx_pcm_fiq);
137
Sascha Hauer83802222009-11-25 16:41:04 +0100138 break;
139 default:
140 return -EINVAL;
141 }
142
143 return 0;
144}
145
146static snd_pcm_uframes_t snd_imx_pcm_pointer(struct snd_pcm_substream *substream)
147{
148 struct snd_pcm_runtime *runtime = substream->runtime;
149 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
150
151 return bytes_to_frames(substream->runtime, iprtd->offset);
152}
153
154static struct snd_pcm_hardware snd_imx_hardware = {
155 .info = SNDRV_PCM_INFO_INTERLEAVED |
156 SNDRV_PCM_INFO_BLOCK_TRANSFER |
157 SNDRV_PCM_INFO_MMAP |
158 SNDRV_PCM_INFO_MMAP_VALID |
159 SNDRV_PCM_INFO_PAUSE |
160 SNDRV_PCM_INFO_RESUME,
161 .formats = SNDRV_PCM_FMTBIT_S16_LE,
162 .rate_min = 8000,
163 .channels_min = 2,
164 .channels_max = 2,
165 .buffer_bytes_max = IMX_SSI_DMABUF_SIZE,
166 .period_bytes_min = 128,
167 .period_bytes_max = 16 * 1024,
Sascha Hauer565a79f2010-04-14 09:17:31 +0200168 .periods_min = 4,
Sascha Hauer83802222009-11-25 16:41:04 +0100169 .periods_max = 255,
170 .fifo_size = 0,
171};
172
173static int snd_imx_open(struct snd_pcm_substream *substream)
174{
175 struct snd_pcm_runtime *runtime = substream->runtime;
176 struct imx_pcm_runtime_data *iprtd;
177 int ret;
178
179 iprtd = kzalloc(sizeof(*iprtd), GFP_KERNEL);
Kulikov Vasiliy50e8ce12010-07-16 20:16:54 +0400180 if (iprtd == NULL)
181 return -ENOMEM;
Sascha Hauer83802222009-11-25 16:41:04 +0100182 runtime->private_data = iprtd;
183
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200184 iprtd->substream = substream;
185
Sascha Hauer83926092010-04-14 09:17:30 +0200186 atomic_set(&iprtd->running, 0);
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200187 hrtimer_init(&iprtd->hrt, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
188 iprtd->hrt.function = snd_hrtimer_callback;
Sascha Hauer83802222009-11-25 16:41:04 +0100189
190 ret = snd_pcm_hw_constraint_integer(substream->runtime,
191 SNDRV_PCM_HW_PARAM_PERIODS);
Kulikov Vasiliy50e8ce12010-07-16 20:16:54 +0400192 if (ret < 0) {
193 kfree(iprtd);
Sascha Hauer83802222009-11-25 16:41:04 +0100194 return ret;
Kulikov Vasiliy50e8ce12010-07-16 20:16:54 +0400195 }
Sascha Hauer83802222009-11-25 16:41:04 +0100196
197 snd_soc_set_runtime_hwparams(substream, &snd_imx_hardware);
198 return 0;
199}
200
201static int snd_imx_close(struct snd_pcm_substream *substream)
202{
203 struct snd_pcm_runtime *runtime = substream->runtime;
204 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
205
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200206 hrtimer_cancel(&iprtd->hrt);
207
Sascha Hauer83802222009-11-25 16:41:04 +0100208 kfree(iprtd);
209
210 return 0;
211}
212
Shawn Guodbdf6b52013-04-25 11:18:50 +0800213static int snd_imx_pcm_mmap(struct snd_pcm_substream *substream,
214 struct vm_area_struct *vma)
215{
216 struct snd_pcm_runtime *runtime = substream->runtime;
217 int ret;
218
219 ret = dma_mmap_writecombine(substream->pcm->card->dev, vma,
220 runtime->dma_area, runtime->dma_addr, runtime->dma_bytes);
221
222 pr_debug("%s: ret: %d %p 0x%08x 0x%08x\n", __func__, ret,
223 runtime->dma_area,
224 runtime->dma_addr,
225 runtime->dma_bytes);
226 return ret;
227}
228
Sascha Hauer83802222009-11-25 16:41:04 +0100229static struct snd_pcm_ops imx_pcm_ops = {
230 .open = snd_imx_open,
231 .close = snd_imx_close,
232 .ioctl = snd_pcm_lib_ioctl,
233 .hw_params = snd_imx_pcm_hw_params,
234 .prepare = snd_imx_pcm_prepare,
235 .trigger = snd_imx_pcm_trigger,
236 .pointer = snd_imx_pcm_pointer,
237 .mmap = snd_imx_pcm_mmap,
238};
239
Shawn Guodbdf6b52013-04-25 11:18:50 +0800240static int imx_pcm_preallocate_dma_buffer(struct snd_pcm *pcm, int stream)
241{
242 struct snd_pcm_substream *substream = pcm->streams[stream].substream;
243 struct snd_dma_buffer *buf = &substream->dma_buffer;
244 size_t size = IMX_SSI_DMABUF_SIZE;
245
246 buf->dev.type = SNDRV_DMA_TYPE_DEV;
247 buf->dev.dev = pcm->card->dev;
248 buf->private_data = NULL;
249 buf->area = dma_alloc_writecombine(pcm->card->dev, size,
250 &buf->addr, GFP_KERNEL);
251 if (!buf->area)
252 return -ENOMEM;
253 buf->bytes = size;
254
255 return 0;
256}
257
258static u64 imx_pcm_dmamask = DMA_BIT_MASK(32);
259
260static int imx_pcm_new(struct snd_soc_pcm_runtime *rtd)
261{
262 struct snd_card *card = rtd->card->snd_card;
263 struct snd_pcm *pcm = rtd->pcm;
264 int ret = 0;
265
266 if (!card->dev->dma_mask)
267 card->dev->dma_mask = &imx_pcm_dmamask;
268 if (!card->dev->coherent_dma_mask)
269 card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
270 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
271 ret = imx_pcm_preallocate_dma_buffer(pcm,
272 SNDRV_PCM_STREAM_PLAYBACK);
273 if (ret)
274 goto out;
275 }
276
277 if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
278 ret = imx_pcm_preallocate_dma_buffer(pcm,
279 SNDRV_PCM_STREAM_CAPTURE);
280 if (ret)
281 goto out;
282 }
283
284out:
285 return ret;
286}
287
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000288static int ssi_irq = 0;
289
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100290static int imx_pcm_fiq_new(struct snd_soc_pcm_runtime *rtd)
Sascha Hauer83802222009-11-25 16:41:04 +0100291{
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100292 struct snd_pcm *pcm = rtd->pcm;
Wolfram Sang35dcf582011-08-25 15:54:56 +0200293 struct snd_pcm_substream *substream;
Sascha Hauer83802222009-11-25 16:41:04 +0100294 int ret;
295
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100296 ret = imx_pcm_new(rtd);
Sascha Hauer83802222009-11-25 16:41:04 +0100297 if (ret)
298 return ret;
299
Wolfram Sang35dcf582011-08-25 15:54:56 +0200300 substream = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
301 if (substream) {
Sascha Hauer83802222009-11-25 16:41:04 +0100302 struct snd_dma_buffer *buf = &substream->dma_buffer;
303
304 imx_ssi_fiq_tx_buffer = (unsigned long)buf->area;
305 }
306
Wolfram Sang35dcf582011-08-25 15:54:56 +0200307 substream = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
308 if (substream) {
Sascha Hauer83802222009-11-25 16:41:04 +0100309 struct snd_dma_buffer *buf = &substream->dma_buffer;
310
311 imx_ssi_fiq_rx_buffer = (unsigned long)buf->area;
312 }
313
314 set_fiq_handler(&imx_ssi_fiq_start,
315 &imx_ssi_fiq_end - &imx_ssi_fiq_start);
316
317 return 0;
318}
319
Shawn Guodbdf6b52013-04-25 11:18:50 +0800320static void imx_pcm_free(struct snd_pcm *pcm)
321{
322 struct snd_pcm_substream *substream;
323 struct snd_dma_buffer *buf;
324 int stream;
325
326 for (stream = 0; stream < 2; stream++) {
327 substream = pcm->streams[stream].substream;
328 if (!substream)
329 continue;
330
331 buf = &substream->dma_buffer;
332 if (!buf->area)
333 continue;
334
335 dma_free_writecombine(pcm->card->dev, buf->bytes,
336 buf->area, buf->addr);
337 buf->area = NULL;
338 }
339}
340
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000341static void imx_pcm_fiq_free(struct snd_pcm *pcm)
342{
343 mxc_set_irq_fiq(ssi_irq, 0);
344 release_fiq(&fh);
345 imx_pcm_free(pcm);
346}
347
348static struct snd_soc_platform_driver imx_soc_platform_fiq = {
349 .ops = &imx_pcm_ops,
Sascha Hauer83802222009-11-25 16:41:04 +0100350 .pcm_new = imx_pcm_fiq_new,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000351 .pcm_free = imx_pcm_fiq_free,
Sascha Hauer83802222009-11-25 16:41:04 +0100352};
353
Markus Pargmann9051cba2013-06-20 15:20:21 +0200354int imx_pcm_fiq_init(struct platform_device *pdev,
355 struct imx_pcm_fiq_params *params)
Sascha Hauer83802222009-11-25 16:41:04 +0100356{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000357 int ret;
Sascha Hauer83802222009-11-25 16:41:04 +0100358
359 ret = claim_fiq(&fh);
360 if (ret) {
361 dev_err(&pdev->dev, "failed to claim fiq: %d", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000362 return ret;
Sascha Hauer83802222009-11-25 16:41:04 +0100363 }
364
Markus Pargmann9051cba2013-06-20 15:20:21 +0200365 mxc_set_irq_fiq(params->irq, 1);
366 ssi_irq = params->irq;
Sascha Hauer83802222009-11-25 16:41:04 +0100367
Markus Pargmann9051cba2013-06-20 15:20:21 +0200368 imx_pcm_fiq = params->irq;
Sascha Hauer83802222009-11-25 16:41:04 +0100369
Markus Pargmann9051cba2013-06-20 15:20:21 +0200370 imx_ssi_fiq_base = (unsigned long)params->base;
Sascha Hauer83802222009-11-25 16:41:04 +0100371
Markus Pargmann9051cba2013-06-20 15:20:21 +0200372 params->dma_params_tx->maxburst = 4;
373 params->dma_params_rx->maxburst = 6;
Sascha Hauer83802222009-11-25 16:41:04 +0100374
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000375 ret = snd_soc_register_platform(&pdev->dev, &imx_soc_platform_fiq);
376 if (ret)
377 goto failed_register;
Sascha Hauer83802222009-11-25 16:41:04 +0100378
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000379 return 0;
380
381failed_register:
382 mxc_set_irq_fiq(ssi_irq, 0);
Sascha Hauer83802222009-11-25 16:41:04 +0100383 release_fiq(&fh);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000384
385 return ret;
Sascha Hauer83802222009-11-25 16:41:04 +0100386}
Shawn Guodbdf6b52013-04-25 11:18:50 +0800387EXPORT_SYMBOL_GPL(imx_pcm_fiq_init);
Shawn Guo88e89f52013-04-25 11:18:48 +0800388
389void imx_pcm_fiq_exit(struct platform_device *pdev)
390{
391 snd_soc_unregister_platform(&pdev->dev);
392}
Shawn Guodbdf6b52013-04-25 11:18:50 +0800393EXPORT_SYMBOL_GPL(imx_pcm_fiq_exit);
Mark Brown3c1c32d2013-08-16 12:07:19 +0100394
395MODULE_LICENSE("GPL");