blob: ecec332121f2809b9656e8491644a6e1a1546b5b [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>
22
23#include <sound/core.h>
24#include <sound/initval.h>
25#include <sound/pcm.h>
26#include <sound/pcm_params.h>
27#include <sound/soc.h>
28
29#include <asm/fiq.h>
30
31#include <mach/ssi.h>
32
33#include "imx-ssi.h"
34
35struct imx_pcm_runtime_data {
36 int period;
37 int periods;
Sascha Hauer83802222009-11-25 16:41:04 +010038 unsigned long offset;
Mark Brownb4e82b52010-02-25 12:52:10 +000039 unsigned long last_offset;
Sascha Hauer83802222009-11-25 16:41:04 +010040 unsigned long size;
Sascha Hauer43a3cec2010-04-08 11:31:26 +020041 struct hrtimer hrt;
42 int poll_time_ns;
43 struct snd_pcm_substream *substream;
Sascha Hauer83926092010-04-14 09:17:30 +020044 atomic_t running;
Sascha Hauer83802222009-11-25 16:41:04 +010045};
46
Sascha Hauer43a3cec2010-04-08 11:31:26 +020047static enum hrtimer_restart snd_hrtimer_callback(struct hrtimer *hrt)
Mark Brownb4e82b52010-02-25 12:52:10 +000048{
Sascha Hauer43a3cec2010-04-08 11:31:26 +020049 struct imx_pcm_runtime_data *iprtd =
50 container_of(hrt, struct imx_pcm_runtime_data, hrt);
51 struct snd_pcm_substream *substream = iprtd->substream;
Sascha Hauer83802222009-11-25 16:41:04 +010052 struct snd_pcm_runtime *runtime = substream->runtime;
Sascha Hauer83802222009-11-25 16:41:04 +010053 struct pt_regs regs;
Mark Brownb4e82b52010-02-25 12:52:10 +000054 unsigned long delta;
Sascha Hauer83802222009-11-25 16:41:04 +010055
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
Mark Brownb4e82b52010-02-25 12:52:10 +000066 /* How much data have we transferred since the last period report? */
67 if (iprtd->offset >= iprtd->last_offset)
68 delta = iprtd->offset - iprtd->last_offset;
69 else
70 delta = runtime->buffer_size + iprtd->offset
71 - iprtd->last_offset;
72
73 /* If we've transferred at least a period then report it and
74 * reset our poll time */
Sascha Hauer43a3cec2010-04-08 11:31:26 +020075 if (delta >= iprtd->period) {
Mark Brownb4e82b52010-02-25 12:52:10 +000076 snd_pcm_period_elapsed(substream);
77 iprtd->last_offset = iprtd->offset;
Mark Brownb4e82b52010-02-25 12:52:10 +000078 }
79
Sascha Hauer43a3cec2010-04-08 11:31:26 +020080 hrtimer_forward_now(hrt, ns_to_ktime(iprtd->poll_time_ns));
Mark Brownb4e82b52010-02-25 12:52:10 +000081
Sascha Hauer43a3cec2010-04-08 11:31:26 +020082 return HRTIMER_RESTART;
Sascha Hauer83802222009-11-25 16:41:04 +010083}
84
85static struct fiq_handler fh = {
86 .name = DRV_NAME,
87};
88
89static int snd_imx_pcm_hw_params(struct snd_pcm_substream *substream,
90 struct snd_pcm_hw_params *params)
91{
92 struct snd_pcm_runtime *runtime = substream->runtime;
93 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
94
95 iprtd->size = params_buffer_bytes(params);
96 iprtd->periods = params_periods(params);
Mark Brownb4e82b52010-02-25 12:52:10 +000097 iprtd->period = params_period_bytes(params) ;
Sascha Hauer83802222009-11-25 16:41:04 +010098 iprtd->offset = 0;
Mark Brownb4e82b52010-02-25 12:52:10 +000099 iprtd->last_offset = 0;
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200100 iprtd->poll_time_ns = 1000000000 / params_rate(params) *
101 params_period_size(params);
Sascha Hauer83802222009-11-25 16:41:04 +0100102 snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
103
104 return 0;
105}
106
107static int snd_imx_pcm_prepare(struct snd_pcm_substream *substream)
108{
109 struct snd_pcm_runtime *runtime = substream->runtime;
110 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
111 struct pt_regs regs;
112
113 get_fiq_regs(&regs);
114 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
115 regs.ARM_r8 = (iprtd->period * iprtd->periods - 1) << 16;
116 else
117 regs.ARM_r9 = (iprtd->period * iprtd->periods - 1) << 16;
118
119 set_fiq_regs(&regs);
120
121 return 0;
122}
123
124static int fiq_enable;
125static int imx_pcm_fiq;
126
127static int snd_imx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
128{
129 struct snd_pcm_runtime *runtime = substream->runtime;
130 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
131
132 switch (cmd) {
133 case SNDRV_PCM_TRIGGER_START:
134 case SNDRV_PCM_TRIGGER_RESUME:
135 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Sascha Hauer83926092010-04-14 09:17:30 +0200136 atomic_set(&iprtd->running, 1);
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200137 hrtimer_start(&iprtd->hrt, ns_to_ktime(iprtd->poll_time_ns),
138 HRTIMER_MODE_REL);
Sascha Hauer83802222009-11-25 16:41:04 +0100139 if (++fiq_enable == 1)
140 enable_fiq(imx_pcm_fiq);
141
142 break;
143
144 case SNDRV_PCM_TRIGGER_STOP:
145 case SNDRV_PCM_TRIGGER_SUSPEND:
146 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Sascha Hauer83926092010-04-14 09:17:30 +0200147 atomic_set(&iprtd->running, 0);
148
Sascha Hauer83802222009-11-25 16:41:04 +0100149 if (--fiq_enable == 0)
150 disable_fiq(imx_pcm_fiq);
151
Sascha Hauer83802222009-11-25 16:41:04 +0100152 break;
153 default:
154 return -EINVAL;
155 }
156
157 return 0;
158}
159
160static snd_pcm_uframes_t snd_imx_pcm_pointer(struct snd_pcm_substream *substream)
161{
162 struct snd_pcm_runtime *runtime = substream->runtime;
163 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
164
165 return bytes_to_frames(substream->runtime, iprtd->offset);
166}
167
168static struct snd_pcm_hardware snd_imx_hardware = {
169 .info = SNDRV_PCM_INFO_INTERLEAVED |
170 SNDRV_PCM_INFO_BLOCK_TRANSFER |
171 SNDRV_PCM_INFO_MMAP |
172 SNDRV_PCM_INFO_MMAP_VALID |
173 SNDRV_PCM_INFO_PAUSE |
174 SNDRV_PCM_INFO_RESUME,
175 .formats = SNDRV_PCM_FMTBIT_S16_LE,
176 .rate_min = 8000,
177 .channels_min = 2,
178 .channels_max = 2,
179 .buffer_bytes_max = IMX_SSI_DMABUF_SIZE,
180 .period_bytes_min = 128,
181 .period_bytes_max = 16 * 1024,
Sascha Hauer565a79f2010-04-14 09:17:31 +0200182 .periods_min = 4,
Sascha Hauer83802222009-11-25 16:41:04 +0100183 .periods_max = 255,
184 .fifo_size = 0,
185};
186
187static int snd_imx_open(struct snd_pcm_substream *substream)
188{
189 struct snd_pcm_runtime *runtime = substream->runtime;
190 struct imx_pcm_runtime_data *iprtd;
191 int ret;
192
193 iprtd = kzalloc(sizeof(*iprtd), GFP_KERNEL);
194 runtime->private_data = iprtd;
195
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200196 iprtd->substream = substream;
197
Sascha Hauer83926092010-04-14 09:17:30 +0200198 atomic_set(&iprtd->running, 0);
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200199 hrtimer_init(&iprtd->hrt, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
200 iprtd->hrt.function = snd_hrtimer_callback;
Sascha Hauer83802222009-11-25 16:41:04 +0100201
202 ret = snd_pcm_hw_constraint_integer(substream->runtime,
203 SNDRV_PCM_HW_PARAM_PERIODS);
204 if (ret < 0)
205 return ret;
206
207 snd_soc_set_runtime_hwparams(substream, &snd_imx_hardware);
208 return 0;
209}
210
211static int snd_imx_close(struct snd_pcm_substream *substream)
212{
213 struct snd_pcm_runtime *runtime = substream->runtime;
214 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
215
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200216 hrtimer_cancel(&iprtd->hrt);
217
Sascha Hauer83802222009-11-25 16:41:04 +0100218 kfree(iprtd);
219
220 return 0;
221}
222
223static struct snd_pcm_ops imx_pcm_ops = {
224 .open = snd_imx_open,
225 .close = snd_imx_close,
226 .ioctl = snd_pcm_lib_ioctl,
227 .hw_params = snd_imx_pcm_hw_params,
228 .prepare = snd_imx_pcm_prepare,
229 .trigger = snd_imx_pcm_trigger,
230 .pointer = snd_imx_pcm_pointer,
231 .mmap = snd_imx_pcm_mmap,
232};
233
234static int imx_pcm_fiq_new(struct snd_card *card, struct snd_soc_dai *dai,
235 struct snd_pcm *pcm)
236{
237 int ret;
238
239 ret = imx_pcm_new(card, dai, pcm);
240 if (ret)
241 return ret;
242
243 if (dai->playback.channels_min) {
244 struct snd_pcm_substream *substream =
245 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
246 struct snd_dma_buffer *buf = &substream->dma_buffer;
247
248 imx_ssi_fiq_tx_buffer = (unsigned long)buf->area;
249 }
250
251 if (dai->capture.channels_min) {
252 struct snd_pcm_substream *substream =
253 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
254 struct snd_dma_buffer *buf = &substream->dma_buffer;
255
256 imx_ssi_fiq_rx_buffer = (unsigned long)buf->area;
257 }
258
259 set_fiq_handler(&imx_ssi_fiq_start,
260 &imx_ssi_fiq_end - &imx_ssi_fiq_start);
261
262 return 0;
263}
264
265static struct snd_soc_platform imx_soc_platform_fiq = {
266 .pcm_ops = &imx_pcm_ops,
267 .pcm_new = imx_pcm_fiq_new,
268 .pcm_free = imx_pcm_free,
269};
270
271struct snd_soc_platform *imx_ssi_fiq_init(struct platform_device *pdev,
272 struct imx_ssi *ssi)
273{
274 int ret = 0;
275
276 ret = claim_fiq(&fh);
277 if (ret) {
278 dev_err(&pdev->dev, "failed to claim fiq: %d", ret);
279 return ERR_PTR(ret);
280 }
281
282 mxc_set_irq_fiq(ssi->irq, 1);
283
284 imx_pcm_fiq = ssi->irq;
285
286 imx_ssi_fiq_base = (unsigned long)ssi->base;
287
288 ssi->dma_params_tx.burstsize = 4;
289 ssi->dma_params_rx.burstsize = 6;
290
291 return &imx_soc_platform_fiq;
292}
293
294void imx_ssi_fiq_exit(struct platform_device *pdev,
295 struct imx_ssi *ssi)
296{
297 mxc_set_irq_fiq(ssi->irq, 0);
298 release_fiq(&fh);
299}
300