blob: a24e1770db489b307777954cb6f8b3b693d98dd5 [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 Chehab39a96b42010-10-09 15:53:58 -0300105 if (atomic_read(&dev->stream_started) == 0)
106 return;
107
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300108 if (dev->adev.capture_pcm_substream) {
109 substream = dev->adev.capture_pcm_substream;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300110 runtime = substream->runtime;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300111 stride = runtime->frame_bits >> 3;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300112
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300113 for (i = 0; i < urb->number_of_packets; i++) {
114 int length =
115 urb->iso_frame_desc[i].actual_length / stride;
116 cp = (unsigned char *)urb->transfer_buffer +
117 urb->iso_frame_desc[i].offset;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300118
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300119 if (!length)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300120 continue;
121
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300122 oldptr = dev->adev.hwptr_done_capture;
Mauro Carvalho Chehab50f3beb2008-11-24 08:45:57 -0300123 if (oldptr + length >= runtime->buffer_size) {
124 unsigned int cnt =
125 runtime->buffer_size - oldptr;
126 memcpy(runtime->dma_area + oldptr * stride, cp,
127 cnt * stride);
128 memcpy(runtime->dma_area, cp + cnt * stride,
129 length * stride - cnt * stride);
130 } else {
131 memcpy(runtime->dma_area + oldptr * stride, cp,
132 length * stride);
133 }
134
Mauro Carvalho Chehab50f3beb2008-11-24 08:45:57 -0300135 snd_pcm_stream_lock(substream);
Mauro Carvalho Chehab50f3beb2008-11-24 08:45:57 -0300136
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300137 dev->adev.hwptr_done_capture += length;
138 if (dev->adev.hwptr_done_capture >=
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300139 runtime->buffer_size)
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300140 dev->adev.hwptr_done_capture -=
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300141 runtime->buffer_size;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300142
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300143 dev->adev.capture_transfer_done += length;
144 if (dev->adev.capture_transfer_done >=
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300145 runtime->period_size) {
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300146 dev->adev.capture_transfer_done -=
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300147 runtime->period_size;
148 period_elapsed = 1;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300149 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300150
Mauro Carvalho Chehab50f3beb2008-11-24 08:45:57 -0300151 snd_pcm_stream_unlock(substream);
Markus Rechbergera52932b2008-01-05 09:55:47 -0300152 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300153 if (period_elapsed)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300154 snd_pcm_period_elapsed(substream);
Markus Rechbergera52932b2008-01-05 09:55:47 -0300155 }
156 urb->status = 0;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300157
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300158 status = usb_submit_urb(urb, GFP_ATOMIC);
159 if (status < 0) {
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300160 em28xx_errdev("resubmit of audio urb failed (error=%i)\n",
161 status);
Markus Rechbergera52932b2008-01-05 09:55:47 -0300162 }
163 return;
164}
165
Markus Rechbergera52932b2008-01-05 09:55:47 -0300166static int em28xx_init_audio_isoc(struct em28xx *dev)
167{
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300168 int i, errCode;
169 const int sb_size = EM28XX_NUM_AUDIO_PACKETS *
170 EM28XX_AUDIO_MAX_PACKET_SIZE;
171
172 dprintk("Starting isoc transfers\n");
Markus Rechbergera52932b2008-01-05 09:55:47 -0300173
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300174 for (i = 0; i < EM28XX_AUDIO_BUFS; i++) {
Markus Rechbergera52932b2008-01-05 09:55:47 -0300175 struct urb *urb;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300176 int j, k;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300177
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300178 dev->adev.transfer_buffer[i] = kmalloc(sb_size, GFP_ATOMIC);
179 if (!dev->adev.transfer_buffer[i])
Markus Rechbergera52932b2008-01-05 09:55:47 -0300180 return -ENOMEM;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300181
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300182 memset(dev->adev.transfer_buffer[i], 0x80, sb_size);
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300183 urb = usb_alloc_urb(EM28XX_NUM_AUDIO_PACKETS, GFP_ATOMIC);
Douglas Schilling Landgrafff9b3e42008-09-04 11:20:20 -0300184 if (!urb) {
185 em28xx_errdev("usb_alloc_urb failed!\n");
186 for (j = 0; j < i; j++) {
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300187 usb_free_urb(dev->adev.urb[j]);
188 kfree(dev->adev.transfer_buffer[j]);
Douglas Schilling Landgrafff9b3e42008-09-04 11:20:20 -0300189 }
Markus Rechbergera52932b2008-01-05 09:55:47 -0300190 return -ENOMEM;
Douglas Schilling Landgrafff9b3e42008-09-04 11:20:20 -0300191 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300192
193 urb->dev = dev->udev;
194 urb->context = dev;
195 urb->pipe = usb_rcvisocpipe(dev->udev, 0x83);
196 urb->transfer_flags = URB_ISO_ASAP;
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300197 urb->transfer_buffer = dev->adev.transfer_buffer[i];
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300198 urb->interval = 1;
199 urb->complete = em28xx_audio_isocirq;
200 urb->number_of_packets = EM28XX_NUM_AUDIO_PACKETS;
201 urb->transfer_buffer_length = sb_size;
202
203 for (j = k = 0; j < EM28XX_NUM_AUDIO_PACKETS;
204 j++, k += EM28XX_AUDIO_MAX_PACKET_SIZE) {
205 urb->iso_frame_desc[j].offset = k;
206 urb->iso_frame_desc[j].length =
207 EM28XX_AUDIO_MAX_PACKET_SIZE;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300208 }
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300209 dev->adev.urb[i] = urb;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300210 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300211
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300212 for (i = 0; i < EM28XX_AUDIO_BUFS; i++) {
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300213 errCode = usb_submit_urb(dev->adev.urb[i], GFP_ATOMIC);
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300214 if (errCode) {
Robert Krakoraaa5a1822009-02-08 13:09:11 -0300215 em28xx_deinit_isoc_audio(dev);
Markus Rechbergera52932b2008-01-05 09:55:47 -0300216 return errCode;
217 }
218 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300219
Markus Rechbergera52932b2008-01-05 09:55:47 -0300220 return 0;
221}
222
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300223static int snd_pcm_alloc_vmalloc_buffer(struct snd_pcm_substream *subs,
224 size_t size)
225{
226 struct snd_pcm_runtime *runtime = subs->runtime;
227
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300228 dprintk("Allocating vbuffer\n");
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300229 if (runtime->dma_area) {
230 if (runtime->dma_bytes > size)
231 return 0;
232
233 vfree(runtime->dma_area);
234 }
235 runtime->dma_area = vmalloc(size);
236 if (!runtime->dma_area)
237 return -ENOMEM;
238
239 runtime->dma_bytes = size;
240
241 return 0;
242}
243
244static struct snd_pcm_hardware snd_em28xx_hw_capture = {
245 .info = SNDRV_PCM_INFO_BLOCK_TRANSFER |
246 SNDRV_PCM_INFO_MMAP |
247 SNDRV_PCM_INFO_INTERLEAVED |
248 SNDRV_PCM_INFO_MMAP_VALID,
249
250 .formats = SNDRV_PCM_FMTBIT_S16_LE,
251
252 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_KNOT,
253
254 .rate_min = 48000,
255 .rate_max = 48000,
256 .channels_min = 2,
257 .channels_max = 2,
258 .buffer_bytes_max = 62720 * 8, /* just about the value in usbaudio.c */
259 .period_bytes_min = 64, /* 12544/2, */
260 .period_bytes_max = 12544,
261 .periods_min = 2,
262 .periods_max = 98, /* 12544, */
263};
264
265static int snd_em28xx_capture_open(struct snd_pcm_substream *substream)
266{
267 struct em28xx *dev = snd_pcm_substream_chip(substream);
268 struct snd_pcm_runtime *runtime = substream->runtime;
269 int ret = 0;
270
271 dprintk("opening device and trying to acquire exclusive lock\n");
272
Mauro Carvalho Chehab83ee87a2008-06-14 09:41:18 -0300273 if (!dev) {
Filipe Rosset0bc23082009-11-04 15:31:25 -0300274 em28xx_err("BUG: em28xx can't find device struct."
Mauro Carvalho Chehab83ee87a2008-06-14 09:41:18 -0300275 " Can't proceed with open\n");
276 return -ENODEV;
277 }
278
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300279 /* Sets volume, mute, etc */
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300280
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300281 dev->mute = 0;
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300282 mutex_lock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300283 ret = em28xx_audio_analog_set(dev);
284 if (ret < 0)
285 goto err;
286
287 runtime->hw = snd_em28xx_hw_capture;
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300288 if (dev->alt == 0 && dev->adev.users == 0) {
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300289 dev->alt = 7;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300290 dprintk("changing alternate number to 7\n");
Mauro Carvalho Chehab00d2e7a2011-06-17 20:28:51 -0300291 usb_set_interface(dev->udev, 0, 7);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300292 }
293
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300294 dev->adev.users++;
Douglas Schilling Landgrafbf510ac2009-02-08 01:11:13 -0300295 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300296
297 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300298 dev->adev.capture_pcm_substream = substream;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300299 runtime->private_data = dev;
300
301 return 0;
302err:
Mauro Carvalho Chehab39a96b42010-10-09 15:53:58 -0300303 mutex_unlock(&dev->lock);
304
Filipe Rosset0bc23082009-11-04 15:31:25 -0300305 em28xx_err("Error while configuring em28xx mixer\n");
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300306 return ret;
307}
308
309static int snd_em28xx_pcm_close(struct snd_pcm_substream *substream)
310{
311 struct em28xx *dev = snd_pcm_substream_chip(substream);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300312
313 dprintk("closing device\n");
314
315 dev->mute = 1;
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300316 mutex_lock(&dev->lock);
Douglas Schilling Landgrafbf510ac2009-02-08 01:11:13 -0300317 dev->adev.users--;
Mauro Carvalho Chehab39a96b42010-10-09 15:53:58 -0300318 if (atomic_read(&dev->stream_started) > 0) {
319 atomic_set(&dev->stream_started, 0);
320 schedule_work(&dev->wq_trigger);
321 }
322
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300323 em28xx_audio_analog_set(dev);
Robert Krakora75c74d12009-05-28 11:16:19 -0300324 if (substream->runtime->dma_area) {
325 dprintk("freeing\n");
326 vfree(substream->runtime->dma_area);
327 substream->runtime->dma_area = NULL;
328 }
Mauro Carvalho Chehab92ea42f2008-02-06 18:52:15 -0300329 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300330
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300331 return 0;
332}
333
334static int snd_em28xx_hw_capture_params(struct snd_pcm_substream *substream,
335 struct snd_pcm_hw_params *hw_params)
336{
337 unsigned int channels, rate, format;
338 int ret;
339
340 dprintk("Setting capture parameters\n");
341
342 ret = snd_pcm_alloc_vmalloc_buffer(substream,
343 params_buffer_bytes(hw_params));
Mauro Carvalho Chehab00d2e7a2011-06-17 20:28:51 -0300344 if (ret < 0)
345 return ret;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300346 format = params_format(hw_params);
347 rate = params_rate(hw_params);
348 channels = params_channels(hw_params);
349
350 /* TODO: set up em28xx audio chip to deliver the correct audio format,
351 current default is 48000hz multiplexed => 96000hz mono
352 which shouldn't matter since analogue TV only supports mono */
353 return 0;
354}
355
356static int snd_em28xx_hw_capture_free(struct snd_pcm_substream *substream)
357{
358 struct em28xx *dev = snd_pcm_substream_chip(substream);
359
360 dprintk("Stop capture, if needed\n");
361
Mauro Carvalho Chehab39a96b42010-10-09 15:53:58 -0300362 if (atomic_read(&dev->stream_started) > 0) {
363 atomic_set(&dev->stream_started, 0);
364 schedule_work(&dev->wq_trigger);
365 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300366
367 return 0;
368}
369
370static int snd_em28xx_prepare(struct snd_pcm_substream *substream)
371{
Devin Heitmueller96fbf772009-10-15 01:14:34 -0300372 struct em28xx *dev = snd_pcm_substream_chip(substream);
373
374 dev->adev.hwptr_done_capture = 0;
375 dev->adev.capture_transfer_done = 0;
376
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300377 return 0;
378}
379
Mauro Carvalho Chehab39a96b42010-10-09 15:53:58 -0300380static void audio_trigger(struct work_struct *work)
381{
382 struct em28xx *dev = container_of(work, struct em28xx, wq_trigger);
383
384 if (atomic_read(&dev->stream_started)) {
385 dprintk("starting capture");
386 em28xx_init_audio_isoc(dev);
387 } else {
388 dprintk("stopping capture");
389 em28xx_deinit_isoc_audio(dev);
390 }
391}
392
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300393static int snd_em28xx_capture_trigger(struct snd_pcm_substream *substream,
394 int cmd)
395{
396 struct em28xx *dev = snd_pcm_substream_chip(substream);
Mauro Carvalho Chehab00d2e7a2011-06-17 20:28:51 -0300397 int retval = 0;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300398
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300399 switch (cmd) {
400 case SNDRV_PCM_TRIGGER_START:
Mauro Carvalho Chehab39a96b42010-10-09 15:53:58 -0300401 atomic_set(&dev->stream_started, 1);
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300402 break;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300403 case SNDRV_PCM_TRIGGER_STOP:
Mauro Carvalho Chehab39a96b42010-10-09 15:53:58 -0300404 atomic_set(&dev->stream_started, 1);
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300405 break;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300406 default:
Douglas Schilling Landgrafdf39ca62009-02-08 14:17:15 -0300407 retval = -EINVAL;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300408 }
Mauro Carvalho Chehab39a96b42010-10-09 15:53:58 -0300409 schedule_work(&dev->wq_trigger);
Mauro Carvalho Chehab00d2e7a2011-06-17 20:28:51 -0300410 return retval;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300411}
412
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300413static snd_pcm_uframes_t snd_em28xx_capture_pointer(struct snd_pcm_substream
414 *substream)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300415{
Nicola Soranzoa1a6ee72009-02-10 23:28:24 -0300416 unsigned long flags;
Robert Krakora53d12e52009-01-16 11:23:25 -0300417 struct em28xx *dev;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300418 snd_pcm_uframes_t hwptr_done;
Robert Krakora53d12e52009-01-16 11:23:25 -0300419
Markus Rechbergera52932b2008-01-05 09:55:47 -0300420 dev = snd_pcm_substream_chip(substream);
Douglas Schilling Landgraf00bc0642009-01-25 15:12:29 -0300421 spin_lock_irqsave(&dev->adev.slock, flags);
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300422 hwptr_done = dev->adev.hwptr_done_capture;
Douglas Schilling Landgraf00bc0642009-01-25 15:12:29 -0300423 spin_unlock_irqrestore(&dev->adev.slock, flags);
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300424
Markus Rechbergera52932b2008-01-05 09:55:47 -0300425 return hwptr_done;
426}
427
428static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs,
429 unsigned long offset)
430{
431 void *pageptr = subs->runtime->dma_area + offset;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300432
Markus Rechbergera52932b2008-01-05 09:55:47 -0300433 return vmalloc_to_page(pageptr);
434}
435
436static struct snd_pcm_ops snd_em28xx_pcm_capture = {
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300437 .open = snd_em28xx_capture_open,
438 .close = snd_em28xx_pcm_close,
439 .ioctl = snd_pcm_lib_ioctl,
Markus Rechbergera52932b2008-01-05 09:55:47 -0300440 .hw_params = snd_em28xx_hw_capture_params,
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300441 .hw_free = snd_em28xx_hw_capture_free,
442 .prepare = snd_em28xx_prepare,
443 .trigger = snd_em28xx_capture_trigger,
444 .pointer = snd_em28xx_capture_pointer,
445 .page = snd_pcm_get_vmalloc_page,
Markus Rechbergera52932b2008-01-05 09:55:47 -0300446};
447
Markus Rechbergera52932b2008-01-05 09:55:47 -0300448static int em28xx_audio_init(struct em28xx *dev)
449{
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300450 struct em28xx_audio *adev = &dev->adev;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300451 struct snd_pcm *pcm;
452 struct snd_card *card;
453 static int devnr;
Devin Heitmueller65c9fd42008-11-12 02:04:53 -0300454 int err;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300455
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300456 if (dev->has_alsa_audio != 1) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300457 /* This device does not support the extension (in this case
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300458 the device is expecting the snd-usb-audio module or
459 doesn't have analog audio support at all) */
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300460 return 0;
461 }
462
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300463 printk(KERN_INFO "em28xx-audio.c: probing for em28x1 "
464 "non standard usbaudio\n");
465 printk(KERN_INFO "em28xx-audio.c: Copyright (C) 2006 Markus "
466 "Rechberger\n");
467
Takashi Iwai758021b2009-01-12 15:17:09 +0100468 err = snd_card_create(index[devnr], "Em28xx Audio", THIS_MODULE, 0,
469 &card);
470 if (err < 0)
471 return err;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300472
473 spin_lock_init(&adev->slock);
Mauro Carvalho Chehab1f6340b2008-11-07 14:24:18 -0300474 err = snd_pcm_new(card, "Em28xx Audio", 0, 0, 1, &pcm);
475 if (err < 0) {
476 snd_card_free(card);
477 return err;
478 }
479
Markus Rechbergera52932b2008-01-05 09:55:47 -0300480 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_em28xx_pcm_capture);
481 pcm->info_flags = 0;
482 pcm->private_data = dev;
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300483 strcpy(pcm->name, "Empia 28xx Capture");
Nicola Soranzo7662b002009-02-19 13:41:56 -0300484
485 snd_card_set_dev(card, &dev->udev->dev);
Dan Carpenter4a3eaee2010-03-23 08:40:43 -0300486 strcpy(card->driver, "Em28xx-Audio");
Markus Rechbergera52932b2008-01-05 09:55:47 -0300487 strcpy(card->shortname, "Em28xx Audio");
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300488 strcpy(card->longname, "Empia Em28xx Audio");
Markus Rechbergera52932b2008-01-05 09:55:47 -0300489
Mauro Carvalho Chehab39a96b42010-10-09 15:53:58 -0300490 INIT_WORK(&dev->wq_trigger, audio_trigger);
491
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300492 err = snd_card_register(card);
493 if (err < 0) {
Markus Rechbergera52932b2008-01-05 09:55:47 -0300494 snd_card_free(card);
Mauro Carvalho Chehab1f6340b2008-11-07 14:24:18 -0300495 return err;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300496 }
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300497 adev->sndcard = card;
498 adev->udev = dev->udev;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300499
Markus Rechbergera52932b2008-01-05 09:55:47 -0300500 return 0;
501}
502
503static int em28xx_audio_fini(struct em28xx *dev)
504{
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300505 if (dev == NULL)
Markus Rechbergera52932b2008-01-05 09:55:47 -0300506 return 0;
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300507
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300508 if (dev->has_alsa_audio != 1) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300509 /* This device does not support the extension (in this case
Devin Heitmueller24a613e2008-11-12 02:05:19 -0300510 the device is expecting the snd-usb-audio module or
511 doesn't have analog audio support at all) */
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300512 return 0;
513 }
514
Mauro Carvalho Chehab9baed992008-12-31 09:37:33 -0300515 if (dev->adev.sndcard) {
516 snd_card_free(dev->adev.sndcard);
517 dev->adev.sndcard = NULL;
Markus Rechbergera52932b2008-01-05 09:55:47 -0300518 }
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300519
Markus Rechbergera52932b2008-01-05 09:55:47 -0300520 return 0;
521}
522
523static struct em28xx_ops audio_ops = {
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300524 .id = EM28XX_AUDIO,
Mauro Carvalho Chehab1a6f11e2008-01-05 09:56:24 -0300525 .name = "Em28xx Audio Extension",
526 .init = em28xx_audio_init,
527 .fini = em28xx_audio_fini,
Markus Rechbergera52932b2008-01-05 09:55:47 -0300528};
529
530static int __init em28xx_alsa_register(void)
531{
Markus Rechbergera52932b2008-01-05 09:55:47 -0300532 return em28xx_register_extension(&audio_ops);
533}
534
535static void __exit em28xx_alsa_unregister(void)
536{
537 em28xx_unregister_extension(&audio_ops);
538}
539
540MODULE_LICENSE("GPL");
541MODULE_AUTHOR("Markus Rechberger <mrechberger@gmail.com>");
Mauro Carvalho Chehab6d794682008-01-05 09:57:31 -0300542MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
Markus Rechbergera52932b2008-01-05 09:55:47 -0300543MODULE_DESCRIPTION("Em28xx Audio driver");
544
545module_init(em28xx_alsa_register);
546module_exit(em28xx_alsa_unregister);