]> bbs.cooldavid.org Git - net-next-2.6.git/blame - sound/soc/omap/omap-pcm.c
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[net-next-2.6.git] / sound / soc / omap / omap-pcm.c
CommitLineData
2e74796a
JN
1/*
2 * omap-pcm.c -- ALSA PCM interface for the OMAP SoC
3 *
4 * Copyright (C) 2008 Nokia Corporation
5 *
b08f7a62
JN
6 * Contact: Jarkko Nikula <jhnikula@gmail.com>
7 * Peter Ujfalusi <peter.ujfalusi@nokia.com>
2e74796a
JN
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 */
24
25#include <linux/dma-mapping.h>
5a0e3ad6 26#include <linux/slab.h>
2e74796a
JN
27#include <sound/core.h>
28#include <sound/pcm.h>
29#include <sound/pcm_params.h>
30#include <sound/soc.h>
31
ce491cf8 32#include <plat/dma.h>
2e74796a
JN
33#include "omap-pcm.h"
34
35static const struct snd_pcm_hardware omap_pcm_hardware = {
36 .info = SNDRV_PCM_INFO_MMAP |
37 SNDRV_PCM_INFO_MMAP_VALID |
38 SNDRV_PCM_INFO_INTERLEAVED |
39 SNDRV_PCM_INFO_PAUSE |
40 SNDRV_PCM_INFO_RESUME,
e17dd32f
MLC
41 .formats = SNDRV_PCM_FMTBIT_S16_LE |
42 SNDRV_PCM_FMTBIT_S32_LE,
2e74796a
JN
43 .period_bytes_min = 32,
44 .period_bytes_max = 64 * 1024,
45 .periods_min = 2,
46 .periods_max = 255,
47 .buffer_bytes_max = 128 * 1024,
48};
49
50struct omap_runtime_data {
51 spinlock_t lock;
52 struct omap_pcm_dma_data *dma_data;
53 int dma_ch;
54 int period_index;
55};
56
57static void omap_pcm_dma_irq(int ch, u16 stat, void *data)
58{
59 struct snd_pcm_substream *substream = data;
60 struct snd_pcm_runtime *runtime = substream->runtime;
61 struct omap_runtime_data *prtd = runtime->private_data;
62 unsigned long flags;
63
64844a6a
JK
64 if ((cpu_is_omap1510()) &&
65 (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)) {
2e74796a 66 /*
64844a6a
JK
67 * OMAP1510 doesn't fully support DMA progress counter
68 * and there is no software emulation implemented yet,
69 * so have to maintain our own playback progress counter
70 * that can be used by omap_pcm_pointer() instead.
2e74796a
JN
71 */
72 spin_lock_irqsave(&prtd->lock, flags);
471e3dec
JK
73 if ((stat == OMAP_DMA_LAST_IRQ) &&
74 (prtd->period_index == runtime->periods - 1)) {
75 /* we are in sync, do nothing */
76 spin_unlock_irqrestore(&prtd->lock, flags);
77 return;
78 }
2e74796a 79 if (prtd->period_index >= 0) {
471e3dec
JK
80 if (stat & OMAP_DMA_BLOCK_IRQ) {
81 /* end of buffer reached, loop back */
82 prtd->period_index = 0;
83 } else if (stat & OMAP_DMA_LAST_IRQ) {
84 /* update the counter for the last period */
85 prtd->period_index = runtime->periods - 1;
86 } else if (++prtd->period_index >= runtime->periods) {
87 /* end of buffer missed? loop back */
2e74796a 88 prtd->period_index = 0;
2e74796a
JN
89 }
90 }
91 spin_unlock_irqrestore(&prtd->lock, flags);
92 }
93
94 snd_pcm_period_elapsed(substream);
95}
96
97/* this may get called several times by oss emulation */
98static int omap_pcm_hw_params(struct snd_pcm_substream *substream,
99 struct snd_pcm_hw_params *params)
100{
101 struct snd_pcm_runtime *runtime = substream->runtime;
102 struct snd_soc_pcm_runtime *rtd = substream->private_data;
103 struct omap_runtime_data *prtd = runtime->private_data;
104 struct omap_pcm_dma_data *dma_data = rtd->dai->cpu_dai->dma_data;
105 int err = 0;
106
1b4246a1
JS
107 /* return if this is a bufferless transfer e.g.
108 * codec <--> BT codec or GSM modem -- lg FIXME */
2e74796a 109 if (!dma_data)
1b4246a1 110 return 0;
2e74796a
JN
111
112 snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
113 runtime->dma_bytes = params_buffer_bytes(params);
114
115 if (prtd->dma_data)
116 return 0;
117 prtd->dma_data = dma_data;
118 err = omap_request_dma(dma_data->dma_req, dma_data->name,
119 omap_pcm_dma_irq, substream, &prtd->dma_ch);
64844a6a 120 if (!err) {
2e74796a
JN
121 /*
122 * Link channel with itself so DMA doesn't need any
123 * reprogramming while looping the buffer
124 */
125 omap_dma_link_lch(prtd->dma_ch, prtd->dma_ch);
126 }
127
128 return err;
129}
130
131static int omap_pcm_hw_free(struct snd_pcm_substream *substream)
132{
133 struct snd_pcm_runtime *runtime = substream->runtime;
134 struct omap_runtime_data *prtd = runtime->private_data;
135
136 if (prtd->dma_data == NULL)
137 return 0;
138
64844a6a 139 omap_dma_unlink_lch(prtd->dma_ch, prtd->dma_ch);
2e74796a
JN
140 omap_free_dma(prtd->dma_ch);
141 prtd->dma_data = NULL;
142
143 snd_pcm_set_runtime_buffer(substream, NULL);
144
145 return 0;
146}
147
148static int omap_pcm_prepare(struct snd_pcm_substream *substream)
149{
150 struct snd_pcm_runtime *runtime = substream->runtime;
151 struct omap_runtime_data *prtd = runtime->private_data;
152 struct omap_pcm_dma_data *dma_data = prtd->dma_data;
153 struct omap_dma_channel_params dma_params;
e17dd32f 154 int bytes;
2e74796a 155
1b4246a1
JS
156 /* return if this is a bufferless transfer e.g.
157 * codec <--> BT codec or GSM modem -- lg FIXME */
158 if (!prtd->dma_data)
159 return 0;
160
2e74796a 161 memset(&dma_params, 0, sizeof(dma_params));
e17dd32f 162 dma_params.data_type = dma_data->data_type;
2e74796a 163 dma_params.trigger = dma_data->dma_req;
caebc0cb 164 dma_params.sync_mode = dma_data->sync_mode;
2e74796a
JN
165 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
166 dma_params.src_amode = OMAP_DMA_AMODE_POST_INC;
167 dma_params.dst_amode = OMAP_DMA_AMODE_CONSTANT;
168 dma_params.src_or_dst_synch = OMAP_DMA_DST_SYNC;
169 dma_params.src_start = runtime->dma_addr;
170 dma_params.dst_start = dma_data->port_addr;
9d37484c 171 dma_params.dst_port = OMAP_DMA_PORT_MPUI;
e17dd32f 172 dma_params.dst_fi = dma_data->packet_size;
2e74796a
JN
173 } else {
174 dma_params.src_amode = OMAP_DMA_AMODE_CONSTANT;
175 dma_params.dst_amode = OMAP_DMA_AMODE_POST_INC;
176 dma_params.src_or_dst_synch = OMAP_DMA_SRC_SYNC;
177 dma_params.src_start = dma_data->port_addr;
178 dma_params.dst_start = runtime->dma_addr;
9d37484c 179 dma_params.src_port = OMAP_DMA_PORT_MPUI;
e17dd32f 180 dma_params.src_fi = dma_data->packet_size;
2e74796a
JN
181 }
182 /*
183 * Set DMA transfer frame size equal to ALSA period size and frame
184 * count as no. of ALSA periods. Then with DMA frame interrupt enabled,
185 * we can transfer the whole ALSA buffer with single DMA transfer but
186 * still can get an interrupt at each period bounary
187 */
e17dd32f
MLC
188 bytes = snd_pcm_lib_period_bytes(substream);
189 dma_params.elem_count = bytes >> dma_data->data_type;
2e74796a
JN
190 dma_params.frame_count = runtime->periods;
191 omap_set_dma_params(prtd->dma_ch, &dma_params);
192
471e3dec
JK
193 if ((cpu_is_omap1510()) &&
194 (substream->stream == SNDRV_PCM_STREAM_PLAYBACK))
195 omap_enable_dma_irq(prtd->dma_ch, OMAP_DMA_FRAME_IRQ |
196 OMAP_DMA_LAST_IRQ | OMAP_DMA_BLOCK_IRQ);
197 else
198 omap_enable_dma_irq(prtd->dma_ch, OMAP_DMA_FRAME_IRQ);
2e74796a 199
4d187fb8
JK
200 if (!(cpu_class_is_omap1())) {
201 omap_set_dma_src_burst_mode(prtd->dma_ch,
202 OMAP_DMA_DATA_BURST_16);
203 omap_set_dma_dest_burst_mode(prtd->dma_ch,
204 OMAP_DMA_DATA_BURST_16);
205 }
9599d485 206
2e74796a
JN
207 return 0;
208}
209
210static int omap_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
211{
212 struct snd_pcm_runtime *runtime = substream->runtime;
213 struct omap_runtime_data *prtd = runtime->private_data;
caebc0cb 214 struct omap_pcm_dma_data *dma_data = prtd->dma_data;
21dff434 215 unsigned long flags;
2e74796a
JN
216 int ret = 0;
217
21dff434 218 spin_lock_irqsave(&prtd->lock, flags);
2e74796a
JN
219 switch (cmd) {
220 case SNDRV_PCM_TRIGGER_START:
221 case SNDRV_PCM_TRIGGER_RESUME:
222 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
223 prtd->period_index = 0;
caebc0cb
EV
224 /* Configure McBSP internal buffer usage */
225 if (dma_data->set_threshold)
226 dma_data->set_threshold(substream);
227
2e74796a
JN
228 omap_start_dma(prtd->dma_ch);
229 break;
230
231 case SNDRV_PCM_TRIGGER_STOP:
232 case SNDRV_PCM_TRIGGER_SUSPEND:
233 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
234 prtd->period_index = -1;
235 omap_stop_dma(prtd->dma_ch);
236 break;
237 default:
238 ret = -EINVAL;
239 }
21dff434 240 spin_unlock_irqrestore(&prtd->lock, flags);
2e74796a
JN
241
242 return ret;
243}
244
245static snd_pcm_uframes_t omap_pcm_pointer(struct snd_pcm_substream *substream)
246{
247 struct snd_pcm_runtime *runtime = substream->runtime;
248 struct omap_runtime_data *prtd = runtime->private_data;
249 dma_addr_t ptr;
250 snd_pcm_uframes_t offset;
251
1bdd7419 252 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
2e74796a 253 ptr = omap_get_dma_dst_pos(prtd->dma_ch);
1bdd7419
JK
254 offset = bytes_to_frames(runtime, ptr - runtime->dma_addr);
255 } else if (!(cpu_is_omap1510())) {
256 ptr = omap_get_dma_src_pos(prtd->dma_ch);
257 offset = bytes_to_frames(runtime, ptr - runtime->dma_addr);
258 } else
259 offset = prtd->period_index * runtime->period_size;
2e74796a 260
2e74796a
JN
261 if (offset >= runtime->buffer_size)
262 offset = 0;
263
264 return offset;
265}
266
267static int omap_pcm_open(struct snd_pcm_substream *substream)
268{
269 struct snd_pcm_runtime *runtime = substream->runtime;
270 struct omap_runtime_data *prtd;
271 int ret;
272
273 snd_soc_set_runtime_hwparams(substream, &omap_pcm_hardware);
274
275 /* Ensure that buffer size is a multiple of period size */
276 ret = snd_pcm_hw_constraint_integer(runtime,
277 SNDRV_PCM_HW_PARAM_PERIODS);
278 if (ret < 0)
279 goto out;
280
19b3f316 281 prtd = kzalloc(sizeof(*prtd), GFP_KERNEL);
2e74796a
JN
282 if (prtd == NULL) {
283 ret = -ENOMEM;
284 goto out;
285 }
286 spin_lock_init(&prtd->lock);
287 runtime->private_data = prtd;
288
289out:
290 return ret;
291}
292
293static int omap_pcm_close(struct snd_pcm_substream *substream)
294{
295 struct snd_pcm_runtime *runtime = substream->runtime;
296
297 kfree(runtime->private_data);
298 return 0;
299}
300
301static int omap_pcm_mmap(struct snd_pcm_substream *substream,
302 struct vm_area_struct *vma)
303{
304 struct snd_pcm_runtime *runtime = substream->runtime;
305
306 return dma_mmap_writecombine(substream->pcm->card->dev, vma,
307 runtime->dma_area,
308 runtime->dma_addr,
309 runtime->dma_bytes);
310}
311
b2a19d02 312static struct snd_pcm_ops omap_pcm_ops = {
2e74796a
JN
313 .open = omap_pcm_open,
314 .close = omap_pcm_close,
315 .ioctl = snd_pcm_lib_ioctl,
316 .hw_params = omap_pcm_hw_params,
317 .hw_free = omap_pcm_hw_free,
318 .prepare = omap_pcm_prepare,
319 .trigger = omap_pcm_trigger,
320 .pointer = omap_pcm_pointer,
321 .mmap = omap_pcm_mmap,
322};
323
a152ff24 324static u64 omap_pcm_dmamask = DMA_BIT_MASK(64);
2e74796a
JN
325
326static int omap_pcm_preallocate_dma_buffer(struct snd_pcm *pcm,
327 int stream)
328{
329 struct snd_pcm_substream *substream = pcm->streams[stream].substream;
330 struct snd_dma_buffer *buf = &substream->dma_buffer;
331 size_t size = omap_pcm_hardware.buffer_bytes_max;
332
333 buf->dev.type = SNDRV_DMA_TYPE_DEV;
334 buf->dev.dev = pcm->card->dev;
335 buf->private_data = NULL;
336 buf->area = dma_alloc_writecombine(pcm->card->dev, size,
337 &buf->addr, GFP_KERNEL);
338 if (!buf->area)
339 return -ENOMEM;
340
341 buf->bytes = size;
342 return 0;
343}
344
345static void omap_pcm_free_dma_buffers(struct snd_pcm *pcm)
346{
347 struct snd_pcm_substream *substream;
348 struct snd_dma_buffer *buf;
349 int stream;
350
351 for (stream = 0; stream < 2; stream++) {
352 substream = pcm->streams[stream].substream;
353 if (!substream)
354 continue;
355
356 buf = &substream->dma_buffer;
357 if (!buf->area)
358 continue;
359
360 dma_free_writecombine(pcm->card->dev, buf->bytes,
361 buf->area, buf->addr);
362 buf->area = NULL;
363 }
364}
365
d756b277 366static int omap_pcm_new(struct snd_card *card, struct snd_soc_dai *dai,
2e74796a
JN
367 struct snd_pcm *pcm)
368{
369 int ret = 0;
370
371 if (!card->dev->dma_mask)
372 card->dev->dma_mask = &omap_pcm_dmamask;
373 if (!card->dev->coherent_dma_mask)
a152ff24 374 card->dev->coherent_dma_mask = DMA_BIT_MASK(64);
2e74796a
JN
375
376 if (dai->playback.channels_min) {
377 ret = omap_pcm_preallocate_dma_buffer(pcm,
378 SNDRV_PCM_STREAM_PLAYBACK);
379 if (ret)
380 goto out;
381 }
382
383 if (dai->capture.channels_min) {
384 ret = omap_pcm_preallocate_dma_buffer(pcm,
385 SNDRV_PCM_STREAM_CAPTURE);
386 if (ret)
387 goto out;
388 }
389
390out:
391 return ret;
392}
393
394struct snd_soc_platform omap_soc_platform = {
395 .name = "omap-pcm-audio",
396 .pcm_ops = &omap_pcm_ops,
397 .pcm_new = omap_pcm_new,
398 .pcm_free = omap_pcm_free_dma_buffers,
399};
400EXPORT_SYMBOL_GPL(omap_soc_platform);
401
c9b3a40f 402static int __init omap_soc_platform_init(void)
958e792c
MB
403{
404 return snd_soc_register_platform(&omap_soc_platform);
405}
406module_init(omap_soc_platform_init);
407
408static void __exit omap_soc_platform_exit(void)
409{
410 snd_soc_unregister_platform(&omap_soc_platform);
411}
412module_exit(omap_soc_platform_exit);
413
b08f7a62 414MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>");
2e74796a
JN
415MODULE_DESCRIPTION("OMAP PCM DMA module");
416MODULE_LICENSE("GPL");