blob: a6502af0771eb99bf2015882f2a41233acb27520 [file] [log] [blame]
Andy Wallsf9b071c2009-06-24 07:26:45 -03001/*
2 * ALSA PCM device for the
3 * ALSA interface to cx18 PCM capture streams
4 *
5 * Copyright (C) 2009 Andy Walls <awalls@radix.net>
Devin Heitmueller9972de92010-01-18 21:29:51 -03006 * Copyright (C) 2009 Devin Heitmueller <dheitmueller@kernellabs.com>
7 *
8 * Portions of this work were sponsored by ONELAN Limited.
Andy Wallsf9b071c2009-06-24 07:26:45 -03009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 * 02111-1307 USA
24 */
25
26#include <linux/init.h>
27#include <linux/kernel.h>
28
29#include <media/v4l2-device.h>
30
31#include <sound/core.h>
32#include <sound/pcm.h>
33
34#include "cx18-driver.h"
Devin Heitmueller9972de92010-01-18 21:29:51 -030035#include "cx18-queue.h"
36#include "cx18-streams.h"
37#include "cx18-fileops.h"
Andy Wallsf9b071c2009-06-24 07:26:45 -030038#include "cx18-alsa.h"
39
Devin Heitmueller9972de92010-01-18 21:29:51 -030040extern int cx18_alsa_debug;
41
42#define dprintk(fmt, arg...) do { \
43 if (cx18_alsa_debug) \
44 printk(KERN_INFO "cx18-alsa %s: " fmt, \
45 __func__, ##arg); \
46 } while (0)
47
48/* Forward Declaration */
49void cx18_alsa_announce_pcm_data(struct snd_cx18_card *cxsc, u8 *pcm_data,
50 size_t num_bytes);
51
52static struct snd_pcm_hardware snd_cx18_hw_capture = {
53 .info = SNDRV_PCM_INFO_BLOCK_TRANSFER |
54 SNDRV_PCM_INFO_MMAP |
55 SNDRV_PCM_INFO_INTERLEAVED |
56 SNDRV_PCM_INFO_MMAP_VALID,
57
58 .formats = SNDRV_PCM_FMTBIT_S16_LE,
59
60 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_KNOT,
61
62 .rate_min = 48000,
63 .rate_max = 48000,
64 .channels_min = 2,
65 .channels_max = 2,
66 .buffer_bytes_max = 62720 * 8, /* just about the value in usbaudio.c */
67 .period_bytes_min = 64, /* 12544/2, */
68 .period_bytes_max = 12544,
69 .periods_min = 2,
70 .periods_max = 98, /* 12544, */
71};
72
Andy Wallsf9b071c2009-06-24 07:26:45 -030073static int snd_cx18_pcm_capture_open(struct snd_pcm_substream *substream)
74{
75 struct snd_cx18_card *cxsc = snd_pcm_substream_chip(substream);
76 struct snd_pcm_runtime *runtime = substream->runtime;
77 struct v4l2_device *v4l2_dev = cxsc->v4l2_dev;
78 struct snd_card *sc = cxsc->sc;
79 struct cx18 *cx = to_cx18(v4l2_dev);
Devin Heitmueller9972de92010-01-18 21:29:51 -030080 struct cx18_stream *s;
81 struct cx18_open_id *item;
82 int ret;
83
84 /* Instruct the cx18 to start sending packets */
85 s = &cx->streams[CX18_ENC_STREAM_TYPE_PCM];
86
87 /* Allocate memory */
88 item = kmalloc(sizeof(struct cx18_open_id), GFP_KERNEL);
89 if (NULL == item) {
90 CX18_DEBUG_WARN("nomem on v4l2 open\n");
91 return -ENOMEM;
92 }
93 item->cx = cx;
94 item->type = s->type;
95 item->open_id = cx->open_id++;
96
97 /* See if the stream is available */
98 if (cx18_claim_stream(item, item->type)) {
99 /* No, it's already in use */
100 return -EBUSY;
101 }
102
103 if (test_bit(CX18_F_S_STREAMOFF, &s->s_flags) ||
104 test_and_set_bit(CX18_F_S_STREAMING, &s->s_flags)) {
105 /* We're already streaming. No additional action required */
106 return 0;
107 }
108
109
110 runtime->hw = snd_cx18_hw_capture;
111 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
112 cxsc->capture_pcm_substream = substream;
113 runtime->private_data = cx;
114
115 cx->pcm_announce_callback = cx18_alsa_announce_pcm_data;
116
117 /* Not currently streaming, so start it up */
118 set_bit(CX18_F_S_STREAMING, &s->s_flags);
119 ret = cx18_start_v4l2_encode_stream(s);
120
Andy Wallsf9b071c2009-06-24 07:26:45 -0300121 return 0;
122}
123
124static int snd_cx18_pcm_capture_close(struct snd_pcm_substream *substream)
125{
Devin Heitmueller9972de92010-01-18 21:29:51 -0300126 unsigned long flags;
127 struct snd_cx18_card *cxsc = snd_pcm_substream_chip(substream);
128 struct v4l2_device *v4l2_dev = cxsc->v4l2_dev;
129 struct cx18 *cx = to_cx18(v4l2_dev);
130 struct cx18_stream *s;
131 int ret;
132
133 /* Instruct the cx18 to stop sending packets */
134 s = &cx->streams[CX18_ENC_STREAM_TYPE_PCM];
135 ret = cx18_stop_v4l2_encode_stream(s, 0);
136 clear_bit(CX18_F_S_STREAMING, &s->s_flags);
137
138 cx18_release_stream(s);
139
140 cx->pcm_announce_callback = NULL;
141
142 spin_lock_irqsave(&cxsc->slock, flags);
143 if (substream->runtime->dma_area) {
144 dprintk("freeing pcm capture region\n");
145 vfree(substream->runtime->dma_area);
146 substream->runtime->dma_area = NULL;
147 }
148 spin_unlock_irqrestore(&cxsc->slock, flags);
149
Andy Wallsf9b071c2009-06-24 07:26:45 -0300150 return 0;
151}
152
153static int snd_cx18_pcm_ioctl(struct snd_pcm_substream *substream,
154 unsigned int cmd, void *arg)
155{
156 return snd_pcm_lib_ioctl(substream, cmd, arg);
157}
158
Devin Heitmueller9972de92010-01-18 21:29:51 -0300159
160static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs,
161 size_t size)
162{
163 struct snd_pcm_runtime *runtime = subs->runtime;
164
165 dprintk("Allocating vbuffer\n");
166 if (runtime->dma_area) {
167 if (runtime->dma_bytes > size)
168 return 0;
169
170 vfree(runtime->dma_area);
171 }
172 runtime->dma_area = vmalloc(size);
173 if (!runtime->dma_area)
174 return -ENOMEM;
175
176 runtime->dma_bytes = size;
177
178 return 0;
179}
180
Andy Wallsf9b071c2009-06-24 07:26:45 -0300181static int snd_cx18_pcm_hw_params(struct snd_pcm_substream *substream,
182 struct snd_pcm_hw_params *params)
183{
Devin Heitmueller9972de92010-01-18 21:29:51 -0300184 int ret;
185
186 dprintk("%s called\n", __func__);
187
188 ret = snd_pcm_alloc_vmalloc_buffer(substream,
189 params_buffer_bytes(params));
Andy Wallsf9b071c2009-06-24 07:26:45 -0300190 return 0;
191}
192
193static int snd_cx18_pcm_hw_free(struct snd_pcm_substream *substream)
194{
195 return 0;
196}
197
198static int snd_cx18_pcm_prepare(struct snd_pcm_substream *substream)
199{
Devin Heitmueller9972de92010-01-18 21:29:51 -0300200 struct snd_cx18_card *cxsc = snd_pcm_substream_chip(substream);
201
202 cxsc->hwptr_done_capture = 0;
203 cxsc->capture_transfer_done = 0;
204
Andy Wallsf9b071c2009-06-24 07:26:45 -0300205 return 0;
206}
207
208static int snd_cx18_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
209{
210 return 0;
211}
212
213static
214snd_pcm_uframes_t snd_cx18_pcm_pointer(struct snd_pcm_substream *substream)
215{
Devin Heitmueller9972de92010-01-18 21:29:51 -0300216 unsigned long flags;
217 snd_pcm_uframes_t hwptr_done;
218 struct snd_cx18_card *cxsc = snd_pcm_substream_chip(substream);
219
220 spin_lock_irqsave(&cxsc->slock, flags);
221 hwptr_done = cxsc->hwptr_done_capture;
222 spin_unlock_irqrestore(&cxsc->slock, flags);
223
224 return hwptr_done;
225}
226
227
228static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
229 unsigned long offset)
230{
231 void *pageptr = subs->runtime->dma_area + offset;
232
233 return vmalloc_to_page(pageptr);
Andy Wallsf9b071c2009-06-24 07:26:45 -0300234}
235
236static struct snd_pcm_ops snd_cx18_pcm_capture_ops = {
237 .open = snd_cx18_pcm_capture_open,
238 .close = snd_cx18_pcm_capture_close,
239 .ioctl = snd_cx18_pcm_ioctl,
240 .hw_params = snd_cx18_pcm_hw_params,
241 .hw_free = snd_cx18_pcm_hw_free,
242 .prepare = snd_cx18_pcm_prepare,
243 .trigger = snd_cx18_pcm_trigger,
244 .pointer = snd_cx18_pcm_pointer,
Devin Heitmueller9972de92010-01-18 21:29:51 -0300245 .page = snd_pcm_get_vmalloc_page,
Andy Wallsf9b071c2009-06-24 07:26:45 -0300246};
247
Devin Heitmueller9972de92010-01-18 21:29:51 -0300248void cx18_alsa_announce_pcm_data(struct snd_cx18_card *cxsc, u8 *pcm_data,
249 size_t num_bytes)
250{
251 struct snd_pcm_substream *substream;
252 struct snd_pcm_runtime *runtime;
253 unsigned int oldptr;
254 unsigned int stride;
255 int period_elapsed = 0;
256 int length;
257
258 dprintk("cx18 alsa announce ptr=%p data=%p num_bytes=%d\n", cxsc,
259 pcm_data, num_bytes);
260
261 substream = cxsc->capture_pcm_substream;
262 if (substream == NULL) {
263 dprintk("substream was NULL\n");
264 return;
265 }
266
267 runtime = substream->runtime;
268 if (runtime == NULL) {
269 dprintk("runtime was NULL\n");
270 return;
271 }
272
273 stride = runtime->frame_bits >> 3;
274 if (stride == 0) {
275 dprintk("stride is zero\n");
276 return;
277 }
278
279 length = num_bytes / stride;
280 if (length == 0) {
281 dprintk("%s: length was zero\n", __func__);
282 return;
283 }
284
285 if (runtime->dma_area == NULL) {
286 dprintk("dma area was NULL - ignoring\n");
287 return;
288 }
289
290 oldptr = cxsc->hwptr_done_capture;
291 if (oldptr + length >= runtime->buffer_size) {
292 unsigned int cnt =
293 runtime->buffer_size - oldptr;
294 memcpy(runtime->dma_area + oldptr * stride, pcm_data,
295 cnt * stride);
296 memcpy(runtime->dma_area, pcm_data + cnt * stride,
297 length * stride - cnt * stride);
298 } else {
299 memcpy(runtime->dma_area + oldptr * stride, pcm_data,
300 length * stride);
301 }
302 snd_pcm_stream_lock(substream);
303
304 cxsc->hwptr_done_capture += length;
305 if (cxsc->hwptr_done_capture >=
306 runtime->buffer_size)
307 cxsc->hwptr_done_capture -=
308 runtime->buffer_size;
309
310 cxsc->capture_transfer_done += length;
311 if (cxsc->capture_transfer_done >=
312 runtime->period_size) {
313 cxsc->capture_transfer_done -=
314 runtime->period_size;
315 period_elapsed = 1;
316 }
317
318 snd_pcm_stream_unlock(substream);
319
320 if (period_elapsed)
321 snd_pcm_period_elapsed(substream);
322}
323
324int snd_cx18_pcm_create(struct snd_cx18_card *cxsc)
Andy Wallsf9b071c2009-06-24 07:26:45 -0300325{
326 struct snd_pcm *sp;
327 struct snd_card *sc = cxsc->sc;
328 struct v4l2_device *v4l2_dev = cxsc->v4l2_dev;
329 struct cx18 *cx = to_cx18(v4l2_dev);
330 int ret;
331
332 ret = snd_pcm_new(sc, "CX23418 PCM",
333 0, /* PCM device 0, the only one for this card */
334 0, /* 0 playback substreams */
335 1, /* 1 capture substream */
336 &sp);
337 if (ret) {
338 CX18_ALSA_ERR("%s: snd_cx18_pcm_create() failed with err %d\n",
339 __func__, ret);
340 goto err_exit;
341 }
Devin Heitmueller9972de92010-01-18 21:29:51 -0300342
343 spin_lock_init(&cxsc->slock);
344
345 snd_pcm_set_ops(sp, SNDRV_PCM_STREAM_CAPTURE, &snd_cx18_pcm_capture_ops);
346 sp->info_flags = 0;
347 sp->private_data = cxsc;
348 strcpy(sp->name, "Conexant cx23418 Capture");
349
Andy Wallsf9b071c2009-06-24 07:26:45 -0300350 return 0;
351
352err_exit:
353 return ret;
354}