blob: 7bd8a70f0a0b2b5b28bdd03bd06f28a6331ac93f [file] [log] [blame]
Markus Rechbergera52932b2008-01-05 09:55:47 -03001/*
2 * Empiatech em28x1 audio extension
3 *
4 * Copyright (C) 2006 Markus Rechberger <mrechberger@gmail.com>
5 *
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -03006 * Copyright (C) 2007 Mauro Carvalho Chehab <mchehab@infradead.org>
7 * - Port to work with the in-kernel driver
8 * - Several cleanups
9 *
Markus Rechbergera52932b2008-01-05 09:55:47 -030010 * This driver is based on my previous au600 usb pstn audio driver
11 * and inherits all the copyrights
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27
28#include <linux/kernel.h>
29#include <linux/usb.h>
30#include <linux/init.h>
31#include <linux/sound.h>
32#include <linux/spinlock.h>
33#include <linux/soundcard.h>
34#include <linux/slab.h>
35#include <linux/vmalloc.h>
36#include <linux/proc_fs.h>
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -030037#include <linux/module.h>
Markus Rechbergera52932b2008-01-05 09:55:47 -030038#include <sound/core.h>
39#include <sound/pcm.h>
40#include <sound/pcm_params.h>
41#include <sound/info.h>
42#include <sound/initval.h>
43#include <sound/control.h>
Markus Rechbergera52932b2008-01-05 09:55:47 -030044#include <media/v4l2-common.h>
45#include "em28xx.h"
46
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -030047static int debug;
48module_param(debug, int, 0644);
49MODULE_PARM_DESC(debug, "activates debug info");
50
51#define dprintk(fmt, arg...) do { \
52 if (debug) \
53 printk(KERN_INFO "em28xx-audio %s: " fmt, \
Harvey Harrisond80e1342008-04-08 23:20:00 -030054 __func__, ##arg); \
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -030055 } while (0)
56
Markus Rechbergera52932b2008-01-05 09:55:47 -030057static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
Markus Rechbergera52932b2008-01-05 09:55:47 -030058
Robert Krakoraaa5a1822009-02-08 13:09:11 -030059static int em28xx_deinit_isoc_audio(struct em28xx *dev)
Markus Rechbergera52932b2008-01-05 09:55:47 -030060{
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -030061 int i;
62
63 dprintk("Stopping isoc\n");
Douglas Schilling Landgraf3e099ba2009-02-08 10:45:34 -030064 for (i = 0; i < EM28XX_AUDIO_BUFS; i++) {
Robert Krakora9c062102009-01-25 13:08:07 -030065 if (!irqs_disabled())
66 usb_kill_urb(dev->adev.urb[i]);
67 else
68 usb_unlink_urb(dev->adev.urb[i]);
Robert Krakoraaa5a1822009-02-08 13:09:11 -030069
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -030070 usb_free_urb(dev->adev.urb[i]);
71 dev->adev.urb[i] = NULL;
Robert Krakora53d12e52009-01-16 11:23:25 -030072
Robert Krakora9c062102009-01-25 13:08:07 -030073 kfree(dev->adev.transfer_buffer[i]);
74 dev->adev.transfer_buffer[i] = NULL;
Markus Rechbergera52932b2008-01-05 09:55:47 -030075 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -030076
Markus Rechbergera52932b2008-01-05 09:55:47 -030077 return 0;
78}
79
Markus Rechbergera52932b2008-01-05 09:55:47 -030080static void em28xx_audio_isocirq(struct urb *urb)
81{
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -030082 struct em28xx *dev = urb->context;
83 int i;
84 unsigned int oldptr;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -030085 int period_elapsed = 0;
86 int status;
87 unsigned char *cp;
88 unsigned int stride;
Markus Rechbergera52932b2008-01-05 09:55:47 -030089 struct snd_pcm_substream *substream;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -030090 struct snd_pcm_runtime *runtime;
Robert Krakoraaa5a1822009-02-08 13:09:11 -030091
92 switch (urb->status) {
93 case 0: /* success */
94 case -ETIMEDOUT: /* NAK */
95 break;
96 case -ECONNRESET: /* kill */
97 case -ENOENT:
98 case -ESHUTDOWN:
99 return;
100 default: /* error */
101 dprintk("urb completition error %d.\n", urb->status);
102 break;
103 }
104
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300105 if (dev->adev.capture_pcm_substream) {
106 substream = dev->adev.capture_pcm_substream;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300107 runtime = substream->runtime;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300108 stride = runtime->frame_bits >> 3;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300109
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300110 for (i = 0; i < urb->number_of_packets; i++) {
111 int length =
112 urb->iso_frame_desc[i].actual_length / stride;
113 cp = (unsigned char *)urb->transfer_buffer +
114 urb->iso_frame_desc[i].offset;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300115
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300116 if (!length)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300117 continue;
118
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300119 oldptr = dev->adev.hwptr_done_capture;
Mauro Carvalho Chehab50f3beb2008-11-24 08:45:57 -0300120 if (oldptr + length >= runtime->buffer_size) {
121 unsigned int cnt =
122 runtime->buffer_size - oldptr;
123 memcpy(runtime->dma_area + oldptr * stride, cp,
124 cnt * stride);
125 memcpy(runtime->dma_area, cp + cnt * stride,
126 length * stride - cnt * stride);
127 } else {
128 memcpy(runtime->dma_area + oldptr * stride, cp,
129 length * stride);
130 }
131
Mauro Carvalho Chehab50f3beb2008-11-24 08:45:57 -0300132 snd_pcm_stream_lock(substream);
Mauro Carvalho Chehab50f3beb2008-11-24 08:45:57 -0300133
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300134 dev->adev.hwptr_done_capture += length;
135 if (dev->adev.hwptr_done_capture >=
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300136 runtime->buffer_size)
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300137 dev->adev.hwptr_done_capture -=
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300138 runtime->buffer_size;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300139
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300140 dev->adev.capture_transfer_done += length;
141 if (dev->adev.capture_transfer_done >=
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300142 runtime->period_size) {
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300143 dev->adev.capture_transfer_done -=
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300144 runtime->period_size;
145 period_elapsed = 1;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300146 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300147
Mauro Carvalho Chehab50f3beb2008-11-24 08:45:57 -0300148 snd_pcm_stream_unlock(substream);
Markus Rechbergera52932b2008-01-05 09:55:47 -0300149 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300150 if (period_elapsed)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300151 snd_pcm_period_elapsed(substream);
Markus Rechbergera52932b2008-01-05 09:55:47 -0300152 }
153 urb->status = 0;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300154
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300155 status = usb_submit_urb(urb, GFP_ATOMIC);
156 if (status < 0) {
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300157 em28xx_errdev("resubmit of audio urb failed (error=%i)\n",
158 status);
Markus Rechbergera52932b2008-01-05 09:55:47 -0300159 }
160 return;
161}
162
Markus Rechbergera52932b2008-01-05 09:55:47 -0300163static int em28xx_init_audio_isoc(struct em28xx *dev)
164{
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300165 int i, errCode;
166 const int sb_size = EM28XX_NUM_AUDIO_PACKETS *
167 EM28XX_AUDIO_MAX_PACKET_SIZE;
168
169 dprintk("Starting isoc transfers\n");
Markus Rechbergera52932b2008-01-05 09:55:47 -0300170
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300171 for (i = 0; i < EM28XX_AUDIO_BUFS; i++) {
Markus Rechbergera52932b2008-01-05 09:55:47 -0300172 struct urb *urb;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300173 int j, k;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300174
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300175 dev->adev.transfer_buffer[i] = kmalloc(sb_size, GFP_ATOMIC);
176 if (!dev->adev.transfer_buffer[i])
Markus Rechbergera52932b2008-01-05 09:55:47 -0300177 return -ENOMEM;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300178
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300179 memset(dev->adev.transfer_buffer[i], 0x80, sb_size);
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300180 urb = usb_alloc_urb(EM28XX_NUM_AUDIO_PACKETS, GFP_ATOMIC);
Douglas Schilling Landgrafff9b3e42008-09-04 11:20:20 -0300181 if (!urb) {
182 em28xx_errdev("usb_alloc_urb failed!\n");
183 for (j = 0; j < i; j++) {
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300184 usb_free_urb(dev->adev.urb[j]);
185 kfree(dev->adev.transfer_buffer[j]);
Douglas Schilling Landgrafff9b3e42008-09-04 11:20:20 -0300186 }
Markus Rechbergera52932b2008-01-05 09:55:47 -0300187 return -ENOMEM;
Douglas Schilling Landgrafff9b3e42008-09-04 11:20:20 -0300188 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300189
190 urb->dev = dev->udev;
191 urb->context = dev;
192 urb->pipe = usb_rcvisocpipe(dev->udev, 0x83);
193 urb->transfer_flags = URB_ISO_ASAP;
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300194 urb->transfer_buffer = dev->adev.transfer_buffer[i];
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300195 urb->interval = 1;
196 urb->complete = em28xx_audio_isocirq;
197 urb->number_of_packets = EM28XX_NUM_AUDIO_PACKETS;
198 urb->transfer_buffer_length = sb_size;
199
200 for (j = k = 0; j < EM28XX_NUM_AUDIO_PACKETS;
201 j++, k += EM28XX_AUDIO_MAX_PACKET_SIZE) {
202 urb->iso_frame_desc[j].offset = k;
203 urb->iso_frame_desc[j].length =
204 EM28XX_AUDIO_MAX_PACKET_SIZE;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300205 }
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300206 dev->adev.urb[i] = urb;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300207 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300208
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300209 for (i = 0; i < EM28XX_AUDIO_BUFS; i++) {
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300210 errCode = usb_submit_urb(dev->adev.urb[i], GFP_ATOMIC);
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300211 if (errCode) {
Robert Krakoraaa5a1822009-02-08 13:09:11 -0300212 em28xx_deinit_isoc_audio(dev);
Markus Rechbergera52932b2008-01-05 09:55:47 -0300213 return errCode;
214 }
215 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300216
Markus Rechbergera52932b2008-01-05 09:55:47 -0300217 return 0;
218}
219
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300220static int em28xx_cmd(struct em28xx *dev, int cmd, int arg)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300221{
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300222 dprintk("%s transfer\n", (dev->adev.capture_stream == STREAM_ON) ?
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300223 "stop" : "start");
224
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300225 switch (cmd) {
226 case EM28XX_CAPTURE_STREAM_EN:
Nicola Soranzo55bf0e72009-02-12 14:21:52 -0300227 if (dev->adev.capture_stream == STREAM_OFF &&
228 arg == EM28XX_START_AUDIO) {
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300229 dev->adev.capture_stream = STREAM_ON;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300230 em28xx_init_audio_isoc(dev);
Nicola Soranzo55bf0e72009-02-12 14:21:52 -0300231 } else if (dev->adev.capture_stream == STREAM_ON &&
232 arg == EM28XX_STOP_AUDIO) {
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300233 dev->adev.capture_stream = STREAM_OFF;
Robert Krakoraaa5a1822009-02-08 13:09:11 -0300234 em28xx_deinit_isoc_audio(dev);
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300235 } else {
Alexey Klimov5c030de2009-02-08 01:16:32 -0300236 em28xx_errdev("An underrun very likely occurred. "
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300237 "Ignoring it.\n");
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300238 }
239 return 0;
240 default:
241 return -EINVAL;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300242 }
243}
244
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300245static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs,
246 size_t size)
247{
248 struct snd_pcm_runtime *runtime = subs->runtime;
249
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300250 dprintk("Allocating vbuffer\n");
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300251 if (runtime->dma_area) {
252 if (runtime->dma_bytes > size)
253 return 0;
254
255 vfree(runtime->dma_area);
256 }
257 runtime->dma_area = vmalloc(size);
258 if (!runtime->dma_area)
259 return -ENOMEM;
260
261 runtime->dma_bytes = size;
262
263 return 0;
264}
265
266static struct snd_pcm_hardware snd_em28xx_hw_capture = {
267 .info = SNDRV_PCM_INFO_BLOCK_TRANSFER |
268 SNDRV_PCM_INFO_MMAP |
269 SNDRV_PCM_INFO_INTERLEAVED |
270 SNDRV_PCM_INFO_MMAP_VALID,
271
272 .formats = SNDRV_PCM_FMTBIT_S16_LE,
273
274 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_KNOT,
275
276 .rate_min = 48000,
277 .rate_max = 48000,
278 .channels_min = 2,
279 .channels_max = 2,
280 .buffer_bytes_max = 62720 * 8, /* just about the value in usbaudio.c */
281 .period_bytes_min = 64, /* 12544/2, */
282 .period_bytes_max = 12544,
283 .periods_min = 2,
284 .periods_max = 98, /* 12544, */
285};
286
287static int snd_em28xx_capture_open(struct snd_pcm_substream *substream)
288{
289 struct em28xx *dev = snd_pcm_substream_chip(substream);
290 struct snd_pcm_runtime *runtime = substream->runtime;
291 int ret = 0;
292
293 dprintk("opening device and trying to acquire exclusive lock\n");
294
Mauro Carvalho Chehab83ee87a2008-06-14 09:41:18 -0300295 if (!dev) {
296 printk(KERN_ERR "BUG: em28xx can't find device struct."
297 " Can't proceed with open\n");
298 return -ENODEV;
299 }
300
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300301 /* Sets volume, mute, etc */
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300302
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300303 dev->mute = 0;
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300304 mutex_lock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300305 ret = em28xx_audio_analog_set(dev);
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300306 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300307 if (ret < 0)
308 goto err;
309
310 runtime->hw = snd_em28xx_hw_capture;
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300311 if (dev->alt == 0 && dev->adev.users == 0) {
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300312 int errCode;
313 dev->alt = 7;
314 errCode = usb_set_interface(dev->udev, 0, 7);
315 dprintk("changing alternate number to 7\n");
316 }
317
Douglas Schilling Landgrafbf510ac2009-02-08 01:11:13 -0300318 mutex_lock(&dev->lock);
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300319 dev->adev.users++;
Douglas Schilling Landgrafbf510ac2009-02-08 01:11:13 -0300320 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300321
322 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300323 dev->adev.capture_pcm_substream = substream;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300324 runtime->private_data = dev;
325
326 return 0;
327err:
328 printk(KERN_ERR "Error while configuring em28xx mixer\n");
329 return ret;
330}
331
332static int snd_em28xx_pcm_close(struct snd_pcm_substream *substream)
333{
334 struct em28xx *dev = snd_pcm_substream_chip(substream);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300335
336 dprintk("closing device\n");
337
338 dev->mute = 1;
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300339 mutex_lock(&dev->lock);
Douglas Schilling Landgrafbf510ac2009-02-08 01:11:13 -0300340 dev->adev.users--;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300341 em28xx_audio_analog_set(dev);
Robert Krakora75c74d12009-05-28 11:16:19 -0300342 if (substream->runtime->dma_area) {
343 dprintk("freeing\n");
344 vfree(substream->runtime->dma_area);
345 substream->runtime->dma_area = NULL;
346 }
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300347 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300348
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300349 return 0;
350}
351
352static int snd_em28xx_hw_capture_params(struct snd_pcm_substream *substream,
353 struct snd_pcm_hw_params *hw_params)
354{
355 unsigned int channels, rate, format;
356 int ret;
357
358 dprintk("Setting capture parameters\n");
359
360 ret = snd_pcm_alloc_vmalloc_buffer(substream,
361 params_buffer_bytes(hw_params));
362 format = params_format(hw_params);
363 rate = params_rate(hw_params);
364 channels = params_channels(hw_params);
365
366 /* TODO: set up em28xx audio chip to deliver the correct audio format,
367 current default is 48000hz multiplexed => 96000hz mono
368 which shouldn't matter since analogue TV only supports mono */
369 return 0;
370}
371
372static int snd_em28xx_hw_capture_free(struct snd_pcm_substream *substream)
373{
374 struct em28xx *dev = snd_pcm_substream_chip(substream);
375
376 dprintk("Stop capture, if needed\n");
377
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300378 if (dev->adev.capture_stream == STREAM_ON)
Douglas Schilling Landgraf22cff7b2009-02-08 01:38:10 -0300379 em28xx_cmd(dev, EM28XX_CAPTURE_STREAM_EN, EM28XX_STOP_AUDIO);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300380
381 return 0;
382}
383
384static int snd_em28xx_prepare(struct snd_pcm_substream *substream)
385{
386 return 0;
387}
388
389static int snd_em28xx_capture_trigger(struct snd_pcm_substream *substream,
390 int cmd)
391{
392 struct em28xx *dev = snd_pcm_substream_chip(substream);
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300393 int retval;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300394
Nicola Soranzo55bf0e72009-02-12 14:21:52 -0300395 dprintk("Should %s capture\n", (cmd == SNDRV_PCM_TRIGGER_START) ?
396 "start" : "stop");
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300397
398 spin_lock(&dev->adev.slock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300399 switch (cmd) {
400 case SNDRV_PCM_TRIGGER_START:
Douglas Schilling Landgraf22cff7b2009-02-08 01:38:10 -0300401 em28xx_cmd(dev, EM28XX_CAPTURE_STREAM_EN, EM28XX_START_AUDIO);
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300402 retval = 0;
403 break;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300404 case SNDRV_PCM_TRIGGER_STOP:
Douglas Schilling Landgraf22cff7b2009-02-08 01:38:10 -0300405 em28xx_cmd(dev, EM28XX_CAPTURE_STREAM_EN, EM28XX_STOP_AUDIO);
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300406 retval = 0;
407 break;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300408 default:
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300409 retval = -EINVAL;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300410 }
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300411
412 spin_unlock(&dev->adev.slock);
413 return retval;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300414}
415
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300416static snd_pcm_uframes_t snd_em28xx_capture_pointer(struct snd_pcm_substream
417 *substream)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300418{
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300419 unsigned long flags;
Robert Krakora53d12e52009-01-16 11:23:25 -0300420 struct em28xx *dev;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300421 snd_pcm_uframes_t hwptr_done;
Robert Krakora53d12e52009-01-16 11:23:25 -0300422
Markus Rechbergera52932b2008-01-05 09:55:47 -0300423 dev = snd_pcm_substream_chip(substream);
Douglas Schilling Landgraf00bc0642009-01-25 15:12:29 -0300424 spin_lock_irqsave(&dev->adev.slock, flags);
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300425 hwptr_done = dev->adev.hwptr_done_capture;
Douglas Schilling Landgraf00bc0642009-01-25 15:12:29 -0300426 spin_unlock_irqrestore(&dev->adev.slock, flags);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300427
Markus Rechbergera52932b2008-01-05 09:55:47 -0300428 return hwptr_done;
429}
430
431static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
432 unsigned long offset)
433{
434 void *pageptr = subs->runtime->dma_area + offset;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300435
Markus Rechbergera52932b2008-01-05 09:55:47 -0300436 return vmalloc_to_page(pageptr);
437}
438
439static struct snd_pcm_ops snd_em28xx_pcm_capture = {
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300440 .open = snd_em28xx_capture_open,
441 .close = snd_em28xx_pcm_close,
442 .ioctl = snd_pcm_lib_ioctl,
Markus Rechbergera52932b2008-01-05 09:55:47 -0300443 .hw_params = snd_em28xx_hw_capture_params,
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300444 .hw_free = snd_em28xx_hw_capture_free,
445 .prepare = snd_em28xx_prepare,
446 .trigger = snd_em28xx_capture_trigger,
447 .pointer = snd_em28xx_capture_pointer,
448 .page = snd_pcm_get_vmalloc_page,
Markus Rechbergera52932b2008-01-05 09:55:47 -0300449};
450
Markus Rechbergera52932b2008-01-05 09:55:47 -0300451static int em28xx_audio_init(struct em28xx *dev)
452{
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300453 struct em28xx_audio *adev = &dev->adev;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300454 struct snd_pcm *pcm;
455 struct snd_card *card;
456 static int devnr;
Devin Heitmueller65c9fd42008-11-12 02:04:53 -0300457 int err;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300458
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300459 if (dev->has_alsa_audio != 1) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300460 /* This device does not support the extension (in this case
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300461 the device is expecting the snd-usb-audio module or
462 doesn't have analog audio support at all) */
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300463 return 0;
464 }
465
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300466 printk(KERN_INFO "em28xx-audio.c: probing for em28x1 "
467 "non standard usbaudio\n");
468 printk(KERN_INFO "em28xx-audio.c: Copyright (C) 2006 Markus "
469 "Rechberger\n");
470
Takashi Iwai758021b2009-01-12 15:17:09 +0100471 err = snd_card_create(index[devnr], "Em28xx Audio", THIS_MODULE, 0,
472 &card);
473 if (err < 0)
474 return err;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300475
476 spin_lock_init(&adev->slock);
Mauro Carvalho Chehab1f6340b2008-11-07 14:24:18 -0300477 err = snd_pcm_new(card, "Em28xx Audio", 0, 0, 1, &pcm);
478 if (err < 0) {
479 snd_card_free(card);
480 return err;
481 }
482
Markus Rechbergera52932b2008-01-05 09:55:47 -0300483 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_em28xx_pcm_capture);
484 pcm->info_flags = 0;
485 pcm->private_data = dev;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300486 strcpy(pcm->name, "Empia 28xx Capture");
Nicola Soranzo7662b002009-02-19 13:41:56 -0300487
488 snd_card_set_dev(card, &dev->udev->dev);
Markus Rechbergera52932b2008-01-05 09:55:47 -0300489 strcpy(card->driver, "Empia Em28xx Audio");
490 strcpy(card->shortname, "Em28xx Audio");
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300491 strcpy(card->longname, "Empia Em28xx Audio");
Markus Rechbergera52932b2008-01-05 09:55:47 -0300492
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300493 err = snd_card_register(card);
494 if (err < 0) {
Markus Rechbergera52932b2008-01-05 09:55:47 -0300495 snd_card_free(card);
Mauro Carvalho Chehab1f6340b2008-11-07 14:24:18 -0300496 return err;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300497 }
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300498 adev->sndcard = card;
499 adev->udev = dev->udev;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300500
Markus Rechbergera52932b2008-01-05 09:55:47 -0300501 return 0;
502}
503
504static int em28xx_audio_fini(struct em28xx *dev)
505{
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300506 if (dev == NULL)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300507 return 0;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300508
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300509 if (dev->has_alsa_audio != 1) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300510 /* This device does not support the extension (in this case
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300511 the device is expecting the snd-usb-audio module or
512 doesn't have analog audio support at all) */
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300513 return 0;
514 }
515
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300516 if (dev->adev.sndcard) {
517 snd_card_free(dev->adev.sndcard);
518 dev->adev.sndcard = NULL;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300519 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300520
Markus Rechbergera52932b2008-01-05 09:55:47 -0300521 return 0;
522}
523
524static struct em28xx_ops audio_ops = {
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300525 .id = EM28XX_AUDIO,
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300526 .name = "Em28xx Audio Extension",
527 .init = em28xx_audio_init,
528 .fini = em28xx_audio_fini,
Markus Rechbergera52932b2008-01-05 09:55:47 -0300529};
530
531static int __init em28xx_alsa_register(void)
532{
Markus Rechbergera52932b2008-01-05 09:55:47 -0300533 return em28xx_register_extension(&audio_ops);
534}
535
536static void __exit em28xx_alsa_unregister(void)
537{
538 em28xx_unregister_extension(&audio_ops);
539}
540
541MODULE_LICENSE("GPL");
542MODULE_AUTHOR("Markus Rechberger <mrechberger@gmail.com>");
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300543MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
Markus Rechbergera52932b2008-01-05 09:55:47 -0300544MODULE_DESCRIPTION("Em28xx Audio driver");
545
546module_init(em28xx_alsa_register);
547module_exit(em28xx_alsa_unregister);