blob: 22c6130957ba429626004f310469ac94444f56be [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>
25#include <sound/initval.h>
26#include <sound/pcm.h>
27#include <sound/pcm_params.h>
28#include <sound/soc.h>
29
30#include <asm/fiq.h>
31
Shawn Guo8842a9e2012-06-14 11:16:14 +080032#include <mach/irqs.h>
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"
36
37struct imx_pcm_runtime_data {
38 int period;
39 int periods;
Sascha Hauer83802222009-11-25 16:41:04 +010040 unsigned long offset;
Mark Brownb4e82b52010-02-25 12:52:10 +000041 unsigned long last_offset;
Sascha Hauer83802222009-11-25 16:41:04 +010042 unsigned long size;
Sascha Hauer43a3cec2010-04-08 11:31:26 +020043 struct hrtimer hrt;
44 int poll_time_ns;
45 struct snd_pcm_substream *substream;
Sascha Hauer83926092010-04-14 09:17:30 +020046 atomic_t running;
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 snd_pcm_runtime *runtime = substream->runtime;
Sascha Hauer83802222009-11-25 16:41:04 +010055 struct pt_regs regs;
Mark Brownb4e82b52010-02-25 12:52:10 +000056 unsigned long delta;
Sascha Hauer83802222009-11-25 16:41:04 +010057
Sascha Hauer83926092010-04-14 09:17:30 +020058 if (!atomic_read(&iprtd->running))
59 return HRTIMER_NORESTART;
60
Sascha Hauer83802222009-11-25 16:41:04 +010061 get_fiq_regs(&regs);
62
63 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
64 iprtd->offset = regs.ARM_r8 & 0xffff;
65 else
66 iprtd->offset = regs.ARM_r9 & 0xffff;
67
Mark Brownb4e82b52010-02-25 12:52:10 +000068 /* How much data have we transferred since the last period report? */
69 if (iprtd->offset >= iprtd->last_offset)
70 delta = iprtd->offset - iprtd->last_offset;
71 else
72 delta = runtime->buffer_size + iprtd->offset
73 - iprtd->last_offset;
74
75 /* If we've transferred at least a period then report it and
76 * reset our poll time */
Sascha Hauer43a3cec2010-04-08 11:31:26 +020077 if (delta >= iprtd->period) {
Mark Brownb4e82b52010-02-25 12:52:10 +000078 snd_pcm_period_elapsed(substream);
79 iprtd->last_offset = iprtd->offset;
Mark Brownb4e82b52010-02-25 12:52:10 +000080 }
81
Sascha Hauer43a3cec2010-04-08 11:31:26 +020082 hrtimer_forward_now(hrt, ns_to_ktime(iprtd->poll_time_ns));
Mark Brownb4e82b52010-02-25 12:52:10 +000083
Sascha Hauer43a3cec2010-04-08 11:31:26 +020084 return HRTIMER_RESTART;
Sascha Hauer83802222009-11-25 16:41:04 +010085}
86
87static struct fiq_handler fh = {
88 .name = DRV_NAME,
89};
90
91static int snd_imx_pcm_hw_params(struct snd_pcm_substream *substream,
92 struct snd_pcm_hw_params *params)
93{
94 struct snd_pcm_runtime *runtime = substream->runtime;
95 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
96
97 iprtd->size = params_buffer_bytes(params);
98 iprtd->periods = params_periods(params);
Mark Brownb4e82b52010-02-25 12:52:10 +000099 iprtd->period = params_period_bytes(params) ;
Sascha Hauer83802222009-11-25 16:41:04 +0100100 iprtd->offset = 0;
Mark Brownb4e82b52010-02-25 12:52:10 +0000101 iprtd->last_offset = 0;
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200102 iprtd->poll_time_ns = 1000000000 / params_rate(params) *
103 params_period_size(params);
Sascha Hauer83802222009-11-25 16:41:04 +0100104 snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
105
106 return 0;
107}
108
109static int snd_imx_pcm_prepare(struct snd_pcm_substream *substream)
110{
111 struct snd_pcm_runtime *runtime = substream->runtime;
112 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
113 struct pt_regs regs;
114
115 get_fiq_regs(&regs);
116 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
117 regs.ARM_r8 = (iprtd->period * iprtd->periods - 1) << 16;
118 else
119 regs.ARM_r9 = (iprtd->period * iprtd->periods - 1) << 16;
120
121 set_fiq_regs(&regs);
122
123 return 0;
124}
125
126static int fiq_enable;
127static int imx_pcm_fiq;
128
129static int snd_imx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
130{
131 struct snd_pcm_runtime *runtime = substream->runtime;
132 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
133
134 switch (cmd) {
135 case SNDRV_PCM_TRIGGER_START:
136 case SNDRV_PCM_TRIGGER_RESUME:
137 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Sascha Hauer83926092010-04-14 09:17:30 +0200138 atomic_set(&iprtd->running, 1);
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200139 hrtimer_start(&iprtd->hrt, ns_to_ktime(iprtd->poll_time_ns),
140 HRTIMER_MODE_REL);
Sascha Hauer83802222009-11-25 16:41:04 +0100141 if (++fiq_enable == 1)
142 enable_fiq(imx_pcm_fiq);
143
144 break;
145
146 case SNDRV_PCM_TRIGGER_STOP:
147 case SNDRV_PCM_TRIGGER_SUSPEND:
148 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Sascha Hauer83926092010-04-14 09:17:30 +0200149 atomic_set(&iprtd->running, 0);
150
Sascha Hauer83802222009-11-25 16:41:04 +0100151 if (--fiq_enable == 0)
152 disable_fiq(imx_pcm_fiq);
153
Sascha Hauer83802222009-11-25 16:41:04 +0100154 break;
155 default:
156 return -EINVAL;
157 }
158
159 return 0;
160}
161
162static snd_pcm_uframes_t snd_imx_pcm_pointer(struct snd_pcm_substream *substream)
163{
164 struct snd_pcm_runtime *runtime = substream->runtime;
165 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
166
167 return bytes_to_frames(substream->runtime, iprtd->offset);
168}
169
170static struct snd_pcm_hardware snd_imx_hardware = {
171 .info = SNDRV_PCM_INFO_INTERLEAVED |
172 SNDRV_PCM_INFO_BLOCK_TRANSFER |
173 SNDRV_PCM_INFO_MMAP |
174 SNDRV_PCM_INFO_MMAP_VALID |
175 SNDRV_PCM_INFO_PAUSE |
176 SNDRV_PCM_INFO_RESUME,
177 .formats = SNDRV_PCM_FMTBIT_S16_LE,
178 .rate_min = 8000,
179 .channels_min = 2,
180 .channels_max = 2,
181 .buffer_bytes_max = IMX_SSI_DMABUF_SIZE,
182 .period_bytes_min = 128,
183 .period_bytes_max = 16 * 1024,
Sascha Hauer565a79f2010-04-14 09:17:31 +0200184 .periods_min = 4,
Sascha Hauer83802222009-11-25 16:41:04 +0100185 .periods_max = 255,
186 .fifo_size = 0,
187};
188
189static int snd_imx_open(struct snd_pcm_substream *substream)
190{
191 struct snd_pcm_runtime *runtime = substream->runtime;
192 struct imx_pcm_runtime_data *iprtd;
193 int ret;
194
195 iprtd = kzalloc(sizeof(*iprtd), GFP_KERNEL);
Kulikov Vasiliy50e8ce12010-07-16 20:16:54 +0400196 if (iprtd == NULL)
197 return -ENOMEM;
Sascha Hauer83802222009-11-25 16:41:04 +0100198 runtime->private_data = iprtd;
199
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200200 iprtd->substream = substream;
201
Sascha Hauer83926092010-04-14 09:17:30 +0200202 atomic_set(&iprtd->running, 0);
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200203 hrtimer_init(&iprtd->hrt, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
204 iprtd->hrt.function = snd_hrtimer_callback;
Sascha Hauer83802222009-11-25 16:41:04 +0100205
206 ret = snd_pcm_hw_constraint_integer(substream->runtime,
207 SNDRV_PCM_HW_PARAM_PERIODS);
Kulikov Vasiliy50e8ce12010-07-16 20:16:54 +0400208 if (ret < 0) {
209 kfree(iprtd);
Sascha Hauer83802222009-11-25 16:41:04 +0100210 return ret;
Kulikov Vasiliy50e8ce12010-07-16 20:16:54 +0400211 }
Sascha Hauer83802222009-11-25 16:41:04 +0100212
213 snd_soc_set_runtime_hwparams(substream, &snd_imx_hardware);
214 return 0;
215}
216
217static int snd_imx_close(struct snd_pcm_substream *substream)
218{
219 struct snd_pcm_runtime *runtime = substream->runtime;
220 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
221
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200222 hrtimer_cancel(&iprtd->hrt);
223
Sascha Hauer83802222009-11-25 16:41:04 +0100224 kfree(iprtd);
225
226 return 0;
227}
228
229static 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
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000240static int ssi_irq = 0;
241
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100242static int imx_pcm_fiq_new(struct snd_soc_pcm_runtime *rtd)
Sascha Hauer83802222009-11-25 16:41:04 +0100243{
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100244 struct snd_pcm *pcm = rtd->pcm;
Wolfram Sang35dcf582011-08-25 15:54:56 +0200245 struct snd_pcm_substream *substream;
Sascha Hauer83802222009-11-25 16:41:04 +0100246 int ret;
247
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100248 ret = imx_pcm_new(rtd);
Sascha Hauer83802222009-11-25 16:41:04 +0100249 if (ret)
250 return ret;
251
Wolfram Sang35dcf582011-08-25 15:54:56 +0200252 substream = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
253 if (substream) {
Sascha Hauer83802222009-11-25 16:41:04 +0100254 struct snd_dma_buffer *buf = &substream->dma_buffer;
255
256 imx_ssi_fiq_tx_buffer = (unsigned long)buf->area;
257 }
258
Wolfram Sang35dcf582011-08-25 15:54:56 +0200259 substream = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
260 if (substream) {
Sascha Hauer83802222009-11-25 16:41:04 +0100261 struct snd_dma_buffer *buf = &substream->dma_buffer;
262
263 imx_ssi_fiq_rx_buffer = (unsigned long)buf->area;
264 }
265
266 set_fiq_handler(&imx_ssi_fiq_start,
267 &imx_ssi_fiq_end - &imx_ssi_fiq_start);
268
269 return 0;
270}
271
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000272static void imx_pcm_fiq_free(struct snd_pcm *pcm)
273{
274 mxc_set_irq_fiq(ssi_irq, 0);
275 release_fiq(&fh);
276 imx_pcm_free(pcm);
277}
278
279static struct snd_soc_platform_driver imx_soc_platform_fiq = {
280 .ops = &imx_pcm_ops,
Sascha Hauer83802222009-11-25 16:41:04 +0100281 .pcm_new = imx_pcm_fiq_new,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000282 .pcm_free = imx_pcm_fiq_free,
Sascha Hauer83802222009-11-25 16:41:04 +0100283};
284
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000285static int __devinit imx_soc_platform_probe(struct platform_device *pdev)
Sascha Hauer83802222009-11-25 16:41:04 +0100286{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000287 struct imx_ssi *ssi = platform_get_drvdata(pdev);
288 int ret;
Sascha Hauer83802222009-11-25 16:41:04 +0100289
290 ret = claim_fiq(&fh);
291 if (ret) {
292 dev_err(&pdev->dev, "failed to claim fiq: %d", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000293 return ret;
Sascha Hauer83802222009-11-25 16:41:04 +0100294 }
295
296 mxc_set_irq_fiq(ssi->irq, 1);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000297 ssi_irq = ssi->irq;
Sascha Hauer83802222009-11-25 16:41:04 +0100298
299 imx_pcm_fiq = ssi->irq;
300
301 imx_ssi_fiq_base = (unsigned long)ssi->base;
302
303 ssi->dma_params_tx.burstsize = 4;
304 ssi->dma_params_rx.burstsize = 6;
305
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000306 ret = snd_soc_register_platform(&pdev->dev, &imx_soc_platform_fiq);
307 if (ret)
308 goto failed_register;
Sascha Hauer83802222009-11-25 16:41:04 +0100309
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000310 return 0;
311
312failed_register:
313 mxc_set_irq_fiq(ssi_irq, 0);
Sascha Hauer83802222009-11-25 16:41:04 +0100314 release_fiq(&fh);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000315
316 return ret;
Sascha Hauer83802222009-11-25 16:41:04 +0100317}
318
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000319static int __devexit imx_soc_platform_remove(struct platform_device *pdev)
320{
321 snd_soc_unregister_platform(&pdev->dev);
322 return 0;
323}
324
325static struct platform_driver imx_pcm_driver = {
326 .driver = {
327 .name = "imx-fiq-pcm-audio",
328 .owner = THIS_MODULE,
329 },
330
331 .probe = imx_soc_platform_probe,
332 .remove = __devexit_p(imx_soc_platform_remove),
333};
334
Axel Lin7a24b2b2011-11-24 15:03:50 +0800335module_platform_driver(imx_pcm_driver);
Axel Lin0604ca42011-12-12 16:01:15 +0800336
337MODULE_LICENSE("GPL");