blob: 6296697d025fb2a6913fe46fd6393249927df58d [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:
Douglas Schilling Landgraf22cff7b2009-02-08 01:38:10 -0300227 if (dev->adev.capture_stream == STREAM_OFF && arg == EM28XX_START_AUDIO) {
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300228 dev->adev.capture_stream = STREAM_ON;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300229 em28xx_init_audio_isoc(dev);
Douglas Schilling Landgraf22cff7b2009-02-08 01:38:10 -0300230 } else if (dev->adev.capture_stream == STREAM_ON && arg == EM28XX_STOP_AUDIO) {
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300231 dev->adev.capture_stream = STREAM_OFF;
Robert Krakoraaa5a1822009-02-08 13:09:11 -0300232 em28xx_deinit_isoc_audio(dev);
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300233 } else {
Alexey Klimov5c030de2009-02-08 01:16:32 -0300234 em28xx_errdev("An underrun very likely occurred. "
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300235 "Ignoring it.\n");
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300236 }
237 return 0;
238 default:
239 return -EINVAL;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300240 }
241}
242
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300243static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs,
244 size_t size)
245{
246 struct snd_pcm_runtime *runtime = subs->runtime;
247
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300248 dprintk("Allocating vbuffer\n");
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300249 if (runtime->dma_area) {
250 if (runtime->dma_bytes > size)
251 return 0;
252
253 vfree(runtime->dma_area);
254 }
255 runtime->dma_area = vmalloc(size);
256 if (!runtime->dma_area)
257 return -ENOMEM;
258
259 runtime->dma_bytes = size;
260
261 return 0;
262}
263
264static struct snd_pcm_hardware snd_em28xx_hw_capture = {
265 .info = SNDRV_PCM_INFO_BLOCK_TRANSFER |
266 SNDRV_PCM_INFO_MMAP |
267 SNDRV_PCM_INFO_INTERLEAVED |
268 SNDRV_PCM_INFO_MMAP_VALID,
269
270 .formats = SNDRV_PCM_FMTBIT_S16_LE,
271
272 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_KNOT,
273
274 .rate_min = 48000,
275 .rate_max = 48000,
276 .channels_min = 2,
277 .channels_max = 2,
278 .buffer_bytes_max = 62720 * 8, /* just about the value in usbaudio.c */
279 .period_bytes_min = 64, /* 12544/2, */
280 .period_bytes_max = 12544,
281 .periods_min = 2,
282 .periods_max = 98, /* 12544, */
283};
284
285static int snd_em28xx_capture_open(struct snd_pcm_substream *substream)
286{
287 struct em28xx *dev = snd_pcm_substream_chip(substream);
288 struct snd_pcm_runtime *runtime = substream->runtime;
289 int ret = 0;
290
291 dprintk("opening device and trying to acquire exclusive lock\n");
292
Mauro Carvalho Chehab83ee87a2008-06-14 09:41:18 -0300293 if (!dev) {
294 printk(KERN_ERR "BUG: em28xx can't find device struct."
295 " Can't proceed with open\n");
296 return -ENODEV;
297 }
298
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300299 /* Sets volume, mute, etc */
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300300
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300301 dev->mute = 0;
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300302 mutex_lock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300303 ret = em28xx_audio_analog_set(dev);
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300304 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300305 if (ret < 0)
306 goto err;
307
308 runtime->hw = snd_em28xx_hw_capture;
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300309 if (dev->alt == 0 && dev->adev.users == 0) {
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300310 int errCode;
311 dev->alt = 7;
312 errCode = usb_set_interface(dev->udev, 0, 7);
313 dprintk("changing alternate number to 7\n");
314 }
315
Douglas Schilling Landgrafbf510ac2009-02-08 01:11:13 -0300316 mutex_lock(&dev->lock);
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300317 dev->adev.users++;
Douglas Schilling Landgrafbf510ac2009-02-08 01:11:13 -0300318 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300319
320 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300321 dev->adev.capture_pcm_substream = substream;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300322 runtime->private_data = dev;
323
324 return 0;
325err:
326 printk(KERN_ERR "Error while configuring em28xx mixer\n");
327 return ret;
328}
329
330static int snd_em28xx_pcm_close(struct snd_pcm_substream *substream)
331{
332 struct em28xx *dev = snd_pcm_substream_chip(substream);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300333
334 dprintk("closing device\n");
335
336 dev->mute = 1;
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300337 mutex_lock(&dev->lock);
Douglas Schilling Landgrafbf510ac2009-02-08 01:11:13 -0300338 dev->adev.users--;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300339 em28xx_audio_analog_set(dev);
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300340 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300341
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300342 return 0;
343}
344
345static int snd_em28xx_hw_capture_params(struct snd_pcm_substream *substream,
346 struct snd_pcm_hw_params *hw_params)
347{
348 unsigned int channels, rate, format;
349 int ret;
350
351 dprintk("Setting capture parameters\n");
352
353 ret = snd_pcm_alloc_vmalloc_buffer(substream,
354 params_buffer_bytes(hw_params));
355 format = params_format(hw_params);
356 rate = params_rate(hw_params);
357 channels = params_channels(hw_params);
358
359 /* TODO: set up em28xx audio chip to deliver the correct audio format,
360 current default is 48000hz multiplexed => 96000hz mono
361 which shouldn't matter since analogue TV only supports mono */
362 return 0;
363}
364
365static int snd_em28xx_hw_capture_free(struct snd_pcm_substream *substream)
366{
367 struct em28xx *dev = snd_pcm_substream_chip(substream);
368
369 dprintk("Stop capture, if needed\n");
370
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300371 if (dev->adev.capture_stream == STREAM_ON)
Douglas Schilling Landgraf22cff7b2009-02-08 01:38:10 -0300372 em28xx_cmd(dev, EM28XX_CAPTURE_STREAM_EN, EM28XX_STOP_AUDIO);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300373
374 return 0;
375}
376
377static int snd_em28xx_prepare(struct snd_pcm_substream *substream)
378{
379 return 0;
380}
381
382static int snd_em28xx_capture_trigger(struct snd_pcm_substream *substream,
383 int cmd)
384{
385 struct em28xx *dev = snd_pcm_substream_chip(substream);
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300386 int retval;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300387
388 dprintk("Should %s capture\n", (cmd == SNDRV_PCM_TRIGGER_START)?
389 "start": "stop");
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300390
391 spin_lock(&dev->adev.slock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300392 switch (cmd) {
393 case SNDRV_PCM_TRIGGER_START:
Douglas Schilling Landgraf22cff7b2009-02-08 01:38:10 -0300394 em28xx_cmd(dev, EM28XX_CAPTURE_STREAM_EN, EM28XX_START_AUDIO);
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300395 retval = 0;
396 break;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300397 case SNDRV_PCM_TRIGGER_STOP:
Douglas Schilling Landgraf22cff7b2009-02-08 01:38:10 -0300398 em28xx_cmd(dev, EM28XX_CAPTURE_STREAM_EN, EM28XX_STOP_AUDIO);
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300399 retval = 0;
400 break;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300401 default:
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300402 retval = -EINVAL;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300403 }
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300404
405 spin_unlock(&dev->adev.slock);
406 return retval;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300407}
408
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300409static snd_pcm_uframes_t snd_em28xx_capture_pointer(struct snd_pcm_substream
410 *substream)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300411{
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300412 unsigned long flags;
Robert Krakora53d12e52009-01-16 11:23:25 -0300413 struct em28xx *dev;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300414 snd_pcm_uframes_t hwptr_done;
Robert Krakora53d12e52009-01-16 11:23:25 -0300415
Markus Rechbergera52932b2008-01-05 09:55:47 -0300416 dev = snd_pcm_substream_chip(substream);
Douglas Schilling Landgraf00bc0642009-01-25 15:12:29 -0300417 spin_lock_irqsave(&dev->adev.slock, flags);
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300418 hwptr_done = dev->adev.hwptr_done_capture;
Douglas Schilling Landgraf00bc0642009-01-25 15:12:29 -0300419 spin_unlock_irqrestore(&dev->adev.slock, flags);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300420
Markus Rechbergera52932b2008-01-05 09:55:47 -0300421 return hwptr_done;
422}
423
424static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
425 unsigned long offset)
426{
427 void *pageptr = subs->runtime->dma_area + offset;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300428
Markus Rechbergera52932b2008-01-05 09:55:47 -0300429 return vmalloc_to_page(pageptr);
430}
431
432static struct snd_pcm_ops snd_em28xx_pcm_capture = {
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300433 .open = snd_em28xx_capture_open,
434 .close = snd_em28xx_pcm_close,
435 .ioctl = snd_pcm_lib_ioctl,
Markus Rechbergera52932b2008-01-05 09:55:47 -0300436 .hw_params = snd_em28xx_hw_capture_params,
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300437 .hw_free = snd_em28xx_hw_capture_free,
438 .prepare = snd_em28xx_prepare,
439 .trigger = snd_em28xx_capture_trigger,
440 .pointer = snd_em28xx_capture_pointer,
441 .page = snd_pcm_get_vmalloc_page,
Markus Rechbergera52932b2008-01-05 09:55:47 -0300442};
443
Markus Rechbergera52932b2008-01-05 09:55:47 -0300444static int em28xx_audio_init(struct em28xx *dev)
445{
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300446 struct em28xx_audio *adev = &dev->adev;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300447 struct snd_pcm *pcm;
448 struct snd_card *card;
449 static int devnr;
Devin Heitmueller65c9fd42008-11-12 02:04:53 -0300450 int err;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300451
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300452 if (dev->has_alsa_audio != 1) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300453 /* This device does not support the extension (in this case
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300454 the device is expecting the snd-usb-audio module or
455 doesn't have analog audio support at all) */
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300456 return 0;
457 }
458
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300459 printk(KERN_INFO "em28xx-audio.c: probing for em28x1 "
460 "non standard usbaudio\n");
461 printk(KERN_INFO "em28xx-audio.c: Copyright (C) 2006 Markus "
462 "Rechberger\n");
463
Takashi Iwai758021b2009-01-12 15:17:09 +0100464 err = snd_card_create(index[devnr], "Em28xx Audio", THIS_MODULE, 0,
465 &card);
466 if (err < 0)
467 return err;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300468
469 spin_lock_init(&adev->slock);
Mauro Carvalho Chehab1f6340b2008-11-07 14:24:18 -0300470 err = snd_pcm_new(card, "Em28xx Audio", 0, 0, 1, &pcm);
471 if (err < 0) {
472 snd_card_free(card);
473 return err;
474 }
475
Markus Rechbergera52932b2008-01-05 09:55:47 -0300476 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_em28xx_pcm_capture);
477 pcm->info_flags = 0;
478 pcm->private_data = dev;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300479 strcpy(pcm->name, "Empia 28xx Capture");
Nicola Soranzo7662b002009-02-19 13:41:56 -0300480
481 snd_card_set_dev(card, &dev->udev->dev);
Markus Rechbergera52932b2008-01-05 09:55:47 -0300482 strcpy(card->driver, "Empia Em28xx Audio");
483 strcpy(card->shortname, "Em28xx Audio");
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300484 strcpy(card->longname, "Empia Em28xx Audio");
Markus Rechbergera52932b2008-01-05 09:55:47 -0300485
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300486 err = snd_card_register(card);
487 if (err < 0) {
Markus Rechbergera52932b2008-01-05 09:55:47 -0300488 snd_card_free(card);
Mauro Carvalho Chehab1f6340b2008-11-07 14:24:18 -0300489 return err;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300490 }
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300491 adev->sndcard = card;
492 adev->udev = dev->udev;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300493
Markus Rechbergera52932b2008-01-05 09:55:47 -0300494 return 0;
495}
496
497static int em28xx_audio_fini(struct em28xx *dev)
498{
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300499 if (dev == NULL)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300500 return 0;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300501
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300502 if (dev->has_alsa_audio != 1) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300503 /* This device does not support the extension (in this case
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300504 the device is expecting the snd-usb-audio module or
505 doesn't have analog audio support at all) */
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300506 return 0;
507 }
508
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300509 if (dev->adev.sndcard) {
510 snd_card_free(dev->adev.sndcard);
511 dev->adev.sndcard = NULL;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300512 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300513
Markus Rechbergera52932b2008-01-05 09:55:47 -0300514 return 0;
515}
516
517static struct em28xx_ops audio_ops = {
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300518 .id = EM28XX_AUDIO,
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300519 .name = "Em28xx Audio Extension",
520 .init = em28xx_audio_init,
521 .fini = em28xx_audio_fini,
Markus Rechbergera52932b2008-01-05 09:55:47 -0300522};
523
524static int __init em28xx_alsa_register(void)
525{
Markus Rechbergera52932b2008-01-05 09:55:47 -0300526 return em28xx_register_extension(&audio_ops);
527}
528
529static void __exit em28xx_alsa_unregister(void)
530{
531 em28xx_unregister_extension(&audio_ops);
532}
533
534MODULE_LICENSE("GPL");
535MODULE_AUTHOR("Markus Rechberger <mrechberger@gmail.com>");
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300536MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
Markus Rechbergera52932b2008-01-05 09:55:47 -0300537MODULE_DESCRIPTION("Em28xx Audio driver");
538
539module_init(em28xx_alsa_register);
540module_exit(em28xx_alsa_unregister);