blob: 98ab33109527cd778be20121a3f4ffaafefd537d [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 Hauer83802222009-11-25 16:41:04 +010044};
45
Sascha Hauer43a3cec2010-04-08 11:31:26 +020046static enum hrtimer_restart snd_hrtimer_callback(struct hrtimer *hrt)
Mark Brownb4e82b52010-02-25 12:52:10 +000047{
Sascha Hauer43a3cec2010-04-08 11:31:26 +020048 struct imx_pcm_runtime_data *iprtd =
49 container_of(hrt, struct imx_pcm_runtime_data, hrt);
50 struct snd_pcm_substream *substream = iprtd->substream;
Sascha Hauer83802222009-11-25 16:41:04 +010051 struct snd_pcm_runtime *runtime = substream->runtime;
Sascha Hauer83802222009-11-25 16:41:04 +010052 struct pt_regs regs;
Mark Brownb4e82b52010-02-25 12:52:10 +000053 unsigned long delta;
Sascha Hauer83802222009-11-25 16:41:04 +010054
55 get_fiq_regs(&regs);
56
57 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
58 iprtd->offset = regs.ARM_r8 & 0xffff;
59 else
60 iprtd->offset = regs.ARM_r9 & 0xffff;
61
Mark Brownb4e82b52010-02-25 12:52:10 +000062 /* How much data have we transferred since the last period report? */
63 if (iprtd->offset >= iprtd->last_offset)
64 delta = iprtd->offset - iprtd->last_offset;
65 else
66 delta = runtime->buffer_size + iprtd->offset
67 - iprtd->last_offset;
68
69 /* If we've transferred at least a period then report it and
70 * reset our poll time */
Sascha Hauer43a3cec2010-04-08 11:31:26 +020071 if (delta >= iprtd->period) {
Mark Brownb4e82b52010-02-25 12:52:10 +000072 snd_pcm_period_elapsed(substream);
73 iprtd->last_offset = iprtd->offset;
Mark Brownb4e82b52010-02-25 12:52:10 +000074 }
75
Sascha Hauer43a3cec2010-04-08 11:31:26 +020076 hrtimer_forward_now(hrt, ns_to_ktime(iprtd->poll_time_ns));
Mark Brownb4e82b52010-02-25 12:52:10 +000077
Sascha Hauer43a3cec2010-04-08 11:31:26 +020078 return HRTIMER_RESTART;
Sascha Hauer83802222009-11-25 16:41:04 +010079}
80
81static struct fiq_handler fh = {
82 .name = DRV_NAME,
83};
84
85static int snd_imx_pcm_hw_params(struct snd_pcm_substream *substream,
86 struct snd_pcm_hw_params *params)
87{
88 struct snd_pcm_runtime *runtime = substream->runtime;
89 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
90
91 iprtd->size = params_buffer_bytes(params);
92 iprtd->periods = params_periods(params);
Mark Brownb4e82b52010-02-25 12:52:10 +000093 iprtd->period = params_period_bytes(params) ;
Sascha Hauer83802222009-11-25 16:41:04 +010094 iprtd->offset = 0;
Mark Brownb4e82b52010-02-25 12:52:10 +000095 iprtd->last_offset = 0;
Sascha Hauer43a3cec2010-04-08 11:31:26 +020096 iprtd->poll_time_ns = 1000000000 / params_rate(params) *
97 params_period_size(params);
Sascha Hauer83802222009-11-25 16:41:04 +010098 snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
99
100 return 0;
101}
102
103static int snd_imx_pcm_prepare(struct snd_pcm_substream *substream)
104{
105 struct snd_pcm_runtime *runtime = substream->runtime;
106 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
107 struct pt_regs regs;
108
109 get_fiq_regs(&regs);
110 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
111 regs.ARM_r8 = (iprtd->period * iprtd->periods - 1) << 16;
112 else
113 regs.ARM_r9 = (iprtd->period * iprtd->periods - 1) << 16;
114
115 set_fiq_regs(&regs);
116
117 return 0;
118}
119
120static int fiq_enable;
121static int imx_pcm_fiq;
122
123static int snd_imx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
124{
125 struct snd_pcm_runtime *runtime = substream->runtime;
126 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
127
128 switch (cmd) {
129 case SNDRV_PCM_TRIGGER_START:
130 case SNDRV_PCM_TRIGGER_RESUME:
131 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200132 hrtimer_start(&iprtd->hrt, ns_to_ktime(iprtd->poll_time_ns),
133 HRTIMER_MODE_REL);
Sascha Hauer83802222009-11-25 16:41:04 +0100134 if (++fiq_enable == 1)
135 enable_fiq(imx_pcm_fiq);
136
137 break;
138
139 case SNDRV_PCM_TRIGGER_STOP:
140 case SNDRV_PCM_TRIGGER_SUSPEND:
141 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200142 hrtimer_cancel(&iprtd->hrt);
Sascha Hauer83802222009-11-25 16:41:04 +0100143 if (--fiq_enable == 0)
144 disable_fiq(imx_pcm_fiq);
145
146
147 break;
148 default:
149 return -EINVAL;
150 }
151
152 return 0;
153}
154
155static snd_pcm_uframes_t snd_imx_pcm_pointer(struct snd_pcm_substream *substream)
156{
157 struct snd_pcm_runtime *runtime = substream->runtime;
158 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
159
160 return bytes_to_frames(substream->runtime, iprtd->offset);
161}
162
163static struct snd_pcm_hardware snd_imx_hardware = {
164 .info = SNDRV_PCM_INFO_INTERLEAVED |
165 SNDRV_PCM_INFO_BLOCK_TRANSFER |
166 SNDRV_PCM_INFO_MMAP |
167 SNDRV_PCM_INFO_MMAP_VALID |
168 SNDRV_PCM_INFO_PAUSE |
169 SNDRV_PCM_INFO_RESUME,
170 .formats = SNDRV_PCM_FMTBIT_S16_LE,
171 .rate_min = 8000,
172 .channels_min = 2,
173 .channels_max = 2,
174 .buffer_bytes_max = IMX_SSI_DMABUF_SIZE,
175 .period_bytes_min = 128,
176 .period_bytes_max = 16 * 1024,
Sascha Hauer565a79f2010-04-14 09:17:31 +0200177 .periods_min = 4,
Sascha Hauer83802222009-11-25 16:41:04 +0100178 .periods_max = 255,
179 .fifo_size = 0,
180};
181
182static int snd_imx_open(struct snd_pcm_substream *substream)
183{
184 struct snd_pcm_runtime *runtime = substream->runtime;
185 struct imx_pcm_runtime_data *iprtd;
186 int ret;
187
188 iprtd = kzalloc(sizeof(*iprtd), GFP_KERNEL);
189 runtime->private_data = iprtd;
190
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200191 iprtd->substream = substream;
192
193 hrtimer_init(&iprtd->hrt, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
194 iprtd->hrt.function = snd_hrtimer_callback;
Sascha Hauer83802222009-11-25 16:41:04 +0100195
196 ret = snd_pcm_hw_constraint_integer(substream->runtime,
197 SNDRV_PCM_HW_PARAM_PERIODS);
198 if (ret < 0)
199 return ret;
200
201 snd_soc_set_runtime_hwparams(substream, &snd_imx_hardware);
202 return 0;
203}
204
205static int snd_imx_close(struct snd_pcm_substream *substream)
206{
207 struct snd_pcm_runtime *runtime = substream->runtime;
208 struct imx_pcm_runtime_data *iprtd = runtime->private_data;
209
Sascha Hauer43a3cec2010-04-08 11:31:26 +0200210 hrtimer_cancel(&iprtd->hrt);
211
Sascha Hauer83802222009-11-25 16:41:04 +0100212 kfree(iprtd);
213
214 return 0;
215}
216
217static struct snd_pcm_ops imx_pcm_ops = {
218 .open = snd_imx_open,
219 .close = snd_imx_close,
220 .ioctl = snd_pcm_lib_ioctl,
221 .hw_params = snd_imx_pcm_hw_params,
222 .prepare = snd_imx_pcm_prepare,
223 .trigger = snd_imx_pcm_trigger,
224 .pointer = snd_imx_pcm_pointer,
225 .mmap = snd_imx_pcm_mmap,
226};
227
228static int imx_pcm_fiq_new(struct snd_card *card, struct snd_soc_dai *dai,
229 struct snd_pcm *pcm)
230{
231 int ret;
232
233 ret = imx_pcm_new(card, dai, pcm);
234 if (ret)
235 return ret;
236
237 if (dai->playback.channels_min) {
238 struct snd_pcm_substream *substream =
239 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
240 struct snd_dma_buffer *buf = &substream->dma_buffer;
241
242 imx_ssi_fiq_tx_buffer = (unsigned long)buf->area;
243 }
244
245 if (dai->capture.channels_min) {
246 struct snd_pcm_substream *substream =
247 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream;
248 struct snd_dma_buffer *buf = &substream->dma_buffer;
249
250 imx_ssi_fiq_rx_buffer = (unsigned long)buf->area;
251 }
252
253 set_fiq_handler(&imx_ssi_fiq_start,
254 &imx_ssi_fiq_end - &imx_ssi_fiq_start);
255
256 return 0;
257}
258
259static struct snd_soc_platform imx_soc_platform_fiq = {
260 .pcm_ops = &imx_pcm_ops,
261 .pcm_new = imx_pcm_fiq_new,
262 .pcm_free = imx_pcm_free,
263};
264
265struct snd_soc_platform *imx_ssi_fiq_init(struct platform_device *pdev,
266 struct imx_ssi *ssi)
267{
268 int ret = 0;
269
270 ret = claim_fiq(&fh);
271 if (ret) {
272 dev_err(&pdev->dev, "failed to claim fiq: %d", ret);
273 return ERR_PTR(ret);
274 }
275
276 mxc_set_irq_fiq(ssi->irq, 1);
277
278 imx_pcm_fiq = ssi->irq;
279
280 imx_ssi_fiq_base = (unsigned long)ssi->base;
281
282 ssi->dma_params_tx.burstsize = 4;
283 ssi->dma_params_rx.burstsize = 6;
284
285 return &imx_soc_platform_fiq;
286}
287
288void imx_ssi_fiq_exit(struct platform_device *pdev,
289 struct imx_ssi *ssi)
290{
291 mxc_set_irq_fiq(ssi->irq, 0);
292 release_fiq(&fh);
293}
294