blob: 7abf6a07957451235ee2863144d3a7377890f1fc [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;
Oskar Schirmerfc7dc612013-11-12 15:46:38 +000045 atomic_t playing;
46 atomic_t capturing;
Sascha Hauer83802222009-11-25 16:41:04 +010047};
48
Sascha Hauer43a3cec2010-04-08 11:31:26 +020049static enum hrtimer_restart snd_hrtimer_callback(struct hrtimer *hrt)
Mark Brownb4e82b52010-02-25 12:52:10 +000050{
Sascha Hauer43a3cec2010-04-08 11:31:26 +020051 struct imx_pcm_runtime_data *iprtd =
52 container_of(hrt, struct imx_pcm_runtime_data, hrt);
53 struct snd_pcm_substream *substream = iprtd->substream;
Sascha Hauer83802222009-11-25 16:41:04 +010054 struct pt_regs regs;
55
Oskar Schirmerfc7dc612013-11-12 15:46:38 +000056 if (!atomic_read(&iprtd->playing) && !atomic_read(&iprtd->capturing))
Sascha Hauer83926092010-04-14 09:17:30 +020057 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
Sascha Hauer83802222009-11-25 16:41:04 +0100110static int imx_pcm_fiq;
111
112static int snd_imx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
113{
114 struct snd_pcm_runtime *runtime = substream->runtime;
115 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
116
117 switch (cmd) {
118 case SNDRV_PCM_TRIGGER_START:
119 case SNDRV_PCM_TRIGGER_RESUME:
120 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Oskar Schirmerfc7dc612013-11-12 15:46:38 +0000121 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
122 atomic_set(&iprtd->playing, 1);
123 else
124 atomic_set(&iprtd->capturing, 1);
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200125 hrtimer_start(&iprtd->hrt, ns_to_ktime(iprtd->poll_time_ns),
126 HRTIMER_MODE_REL);
Oskar Schirmerfc7dc612013-11-12 15:46:38 +0000127 enable_fiq(imx_pcm_fiq);
Sascha Hauer83802222009-11-25 16:41:04 +0100128 break;
129
130 case SNDRV_PCM_TRIGGER_STOP:
131 case SNDRV_PCM_TRIGGER_SUSPEND:
132 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Oskar Schirmerfc7dc612013-11-12 15:46:38 +0000133 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
134 atomic_set(&iprtd->playing, 0);
135 else
136 atomic_set(&iprtd->capturing, 0);
137 if (!atomic_read(&iprtd->playing) &&
138 !atomic_read(&iprtd->capturing))
Sascha Hauer83802222009-11-25 16:41:04 +0100139 disable_fiq(imx_pcm_fiq);
Sascha Hauer83802222009-11-25 16:41:04 +0100140 break;
Oskar Schirmerfc7dc612013-11-12 15:46:38 +0000141
Sascha Hauer83802222009-11-25 16:41:04 +0100142 default:
143 return -EINVAL;
144 }
145
146 return 0;
147}
148
149static snd_pcm_uframes_t snd_imx_pcm_pointer(struct snd_pcm_substream *substream)
150{
151 struct snd_pcm_runtime *runtime = substream->runtime;
152 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
153
154 return bytes_to_frames(substream->runtime, iprtd->offset);
155}
156
157static struct snd_pcm_hardware snd_imx_hardware = {
158 .info = SNDRV_PCM_INFO_INTERLEAVED |
159 SNDRV_PCM_INFO_BLOCK_TRANSFER |
160 SNDRV_PCM_INFO_MMAP |
161 SNDRV_PCM_INFO_MMAP_VALID |
162 SNDRV_PCM_INFO_PAUSE |
163 SNDRV_PCM_INFO_RESUME,
164 .formats = SNDRV_PCM_FMTBIT_S16_LE,
Sascha Hauer83802222009-11-25 16:41:04 +0100165 .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
Oskar Schirmerfc7dc612013-11-12 15:46:38 +0000186 atomic_set(&iprtd->playing, 0);
187 atomic_set(&iprtd->capturing, 0);
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200188 hrtimer_init(&iprtd->hrt, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
189 iprtd->hrt.function = snd_hrtimer_callback;
Sascha Hauer83802222009-11-25 16:41:04 +0100190
191 ret = snd_pcm_hw_constraint_integer(substream->runtime,
192 SNDRV_PCM_HW_PARAM_PERIODS);
Kulikov Vasiliy50e8ce12010-07-16 20:16:54 +0400193 if (ret < 0) {
194 kfree(iprtd);
Sascha Hauer83802222009-11-25 16:41:04 +0100195 return ret;
Kulikov Vasiliy50e8ce12010-07-16 20:16:54 +0400196 }
Sascha Hauer83802222009-11-25 16:41:04 +0100197
198 snd_soc_set_runtime_hwparams(substream, &snd_imx_hardware);
199 return 0;
200}
201
202static int snd_imx_close(struct snd_pcm_substream *substream)
203{
204 struct snd_pcm_runtime *runtime = substream->runtime;
205 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
206
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200207 hrtimer_cancel(&iprtd->hrt);
208
Sascha Hauer83802222009-11-25 16:41:04 +0100209 kfree(iprtd);
210
211 return 0;
212}
213
Shawn Guodbdf6b52013-04-25 11:18:50 +0800214static int snd_imx_pcm_mmap(struct snd_pcm_substream *substream,
215 struct vm_area_struct *vma)
216{
217 struct snd_pcm_runtime *runtime = substream->runtime;
218 int ret;
219
220 ret = dma_mmap_writecombine(substream->pcm->card->dev, vma,
221 runtime->dma_area, runtime->dma_addr, runtime->dma_bytes);
222
223 pr_debug("%s: ret: %d %p 0x%08x 0x%08x\n", __func__, ret,
224 runtime->dma_area,
225 runtime->dma_addr,
226 runtime->dma_bytes);
227 return ret;
228}
229
Sascha Hauer83802222009-11-25 16:41:04 +0100230static struct snd_pcm_ops imx_pcm_ops = {
231 .open = snd_imx_open,
232 .close = snd_imx_close,
233 .ioctl = snd_pcm_lib_ioctl,
234 .hw_params = snd_imx_pcm_hw_params,
235 .prepare = snd_imx_pcm_prepare,
236 .trigger = snd_imx_pcm_trigger,
237 .pointer = snd_imx_pcm_pointer,
238 .mmap = snd_imx_pcm_mmap,
239};
240
Shawn Guodbdf6b52013-04-25 11:18:50 +0800241static int imx_pcm_preallocate_dma_buffer(struct snd_pcm *pcm, int stream)
242{
243 struct snd_pcm_substream *substream = pcm->streams[stream].substream;
244 struct snd_dma_buffer *buf = &substream->dma_buffer;
245 size_t size = IMX_SSI_DMABUF_SIZE;
246
247 buf->dev.type = SNDRV_DMA_TYPE_DEV;
248 buf->dev.dev = pcm->card->dev;
249 buf->private_data = NULL;
250 buf->area = dma_alloc_writecombine(pcm->card->dev, size,
251 &buf->addr, GFP_KERNEL);
252 if (!buf->area)
253 return -ENOMEM;
254 buf->bytes = size;
255
256 return 0;
257}
258
Shawn Guodbdf6b52013-04-25 11:18:50 +0800259static int imx_pcm_new(struct snd_soc_pcm_runtime *rtd)
260{
261 struct snd_card *card = rtd->card->snd_card;
262 struct snd_pcm *pcm = rtd->pcm;
Russell Kingc9bd5e62013-06-27 12:53:37 +0100263 int ret;
Shawn Guodbdf6b52013-04-25 11:18:50 +0800264
Russell Kingc9bd5e62013-06-27 12:53:37 +0100265 ret = dma_coerce_mask_and_coherent(card->dev, DMA_BIT_MASK(32));
266 if (ret)
267 return ret;
268
Shawn Guodbdf6b52013-04-25 11:18:50 +0800269 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
270 ret = imx_pcm_preallocate_dma_buffer(pcm,
271 SNDRV_PCM_STREAM_PLAYBACK);
272 if (ret)
Fabio Estevamea9f8532014-02-24 00:20:43 -0300273 return ret;
Shawn Guodbdf6b52013-04-25 11:18:50 +0800274 }
275
276 if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
277 ret = imx_pcm_preallocate_dma_buffer(pcm,
278 SNDRV_PCM_STREAM_CAPTURE);
279 if (ret)
Fabio Estevamea9f8532014-02-24 00:20:43 -0300280 return ret;
Shawn Guodbdf6b52013-04-25 11:18:50 +0800281 }
282
Fabio Estevamea9f8532014-02-24 00:20:43 -0300283 return 0;
Shawn Guodbdf6b52013-04-25 11:18:50 +0800284}
285
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000286static int ssi_irq = 0;
287
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100288static int imx_pcm_fiq_new(struct snd_soc_pcm_runtime *rtd)
Sascha Hauer83802222009-11-25 16:41:04 +0100289{
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100290 struct snd_pcm *pcm = rtd->pcm;
Wolfram Sang35dcf582011-08-25 15:54:56 +0200291 struct snd_pcm_substream *substream;
Sascha Hauer83802222009-11-25 16:41:04 +0100292 int ret;
293
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100294 ret = imx_pcm_new(rtd);
Sascha Hauer83802222009-11-25 16:41:04 +0100295 if (ret)
296 return ret;
297
Wolfram Sang35dcf582011-08-25 15:54:56 +0200298 substream = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
299 if (substream) {
Sascha Hauer83802222009-11-25 16:41:04 +0100300 struct snd_dma_buffer *buf = &substream->dma_buffer;
301
302 imx_ssi_fiq_tx_buffer = (unsigned long)buf->area;
303 }
304
Wolfram Sang35dcf582011-08-25 15:54:56 +0200305 substream = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
306 if (substream) {
Sascha Hauer83802222009-11-25 16:41:04 +0100307 struct snd_dma_buffer *buf = &substream->dma_buffer;
308
309 imx_ssi_fiq_rx_buffer = (unsigned long)buf->area;
310 }
311
312 set_fiq_handler(&imx_ssi_fiq_start,
313 &imx_ssi_fiq_end - &imx_ssi_fiq_start);
314
315 return 0;
316}
317
Shawn Guodbdf6b52013-04-25 11:18:50 +0800318static void imx_pcm_free(struct snd_pcm *pcm)
319{
320 struct snd_pcm_substream *substream;
321 struct snd_dma_buffer *buf;
322 int stream;
323
324 for (stream = 0; stream < 2; stream++) {
325 substream = pcm->streams[stream].substream;
326 if (!substream)
327 continue;
328
329 buf = &substream->dma_buffer;
330 if (!buf->area)
331 continue;
332
333 dma_free_writecombine(pcm->card->dev, buf->bytes,
334 buf->area, buf->addr);
335 buf->area = NULL;
336 }
337}
338
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000339static void imx_pcm_fiq_free(struct snd_pcm *pcm)
340{
341 mxc_set_irq_fiq(ssi_irq, 0);
342 release_fiq(&fh);
343 imx_pcm_free(pcm);
344}
345
346static struct snd_soc_platform_driver imx_soc_platform_fiq = {
347 .ops = &imx_pcm_ops,
Sascha Hauer83802222009-11-25 16:41:04 +0100348 .pcm_new = imx_pcm_fiq_new,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000349 .pcm_free = imx_pcm_fiq_free,
Sascha Hauer83802222009-11-25 16:41:04 +0100350};
351
Markus Pargmann9051cba2013-06-20 15:20:21 +0200352int imx_pcm_fiq_init(struct platform_device *pdev,
353 struct imx_pcm_fiq_params *params)
Sascha Hauer83802222009-11-25 16:41:04 +0100354{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000355 int ret;
Sascha Hauer83802222009-11-25 16:41:04 +0100356
357 ret = claim_fiq(&fh);
358 if (ret) {
359 dev_err(&pdev->dev, "failed to claim fiq: %d", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000360 return ret;
Sascha Hauer83802222009-11-25 16:41:04 +0100361 }
362
Markus Pargmann9051cba2013-06-20 15:20:21 +0200363 mxc_set_irq_fiq(params->irq, 1);
364 ssi_irq = params->irq;
Sascha Hauer83802222009-11-25 16:41:04 +0100365
Markus Pargmann9051cba2013-06-20 15:20:21 +0200366 imx_pcm_fiq = params->irq;
Sascha Hauer83802222009-11-25 16:41:04 +0100367
Markus Pargmann9051cba2013-06-20 15:20:21 +0200368 imx_ssi_fiq_base = (unsigned long)params->base;
Sascha Hauer83802222009-11-25 16:41:04 +0100369
Markus Pargmann9051cba2013-06-20 15:20:21 +0200370 params->dma_params_tx->maxburst = 4;
371 params->dma_params_rx->maxburst = 6;
Sascha Hauer83802222009-11-25 16:41:04 +0100372
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000373 ret = snd_soc_register_platform(&pdev->dev, &imx_soc_platform_fiq);
374 if (ret)
375 goto failed_register;
Sascha Hauer83802222009-11-25 16:41:04 +0100376
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000377 return 0;
378
379failed_register:
380 mxc_set_irq_fiq(ssi_irq, 0);
Sascha Hauer83802222009-11-25 16:41:04 +0100381 release_fiq(&fh);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000382
383 return ret;
Sascha Hauer83802222009-11-25 16:41:04 +0100384}
Shawn Guodbdf6b52013-04-25 11:18:50 +0800385EXPORT_SYMBOL_GPL(imx_pcm_fiq_init);
Shawn Guo88e89f52013-04-25 11:18:48 +0800386
387void imx_pcm_fiq_exit(struct platform_device *pdev)
388{
389 snd_soc_unregister_platform(&pdev->dev);
390}
Shawn Guodbdf6b52013-04-25 11:18:50 +0800391EXPORT_SYMBOL_GPL(imx_pcm_fiq_exit);
Mark Brown3c1c32d2013-08-16 12:07:19 +0100392
393MODULE_LICENSE("GPL");