Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 1 | /* |
| 2 | * Empiatech em28x1 audio extension |
| 3 | * |
| 4 | * Copyright (C) 2006 Markus Rechberger <mrechberger@gmail.com> |
| 5 | * |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 6 | * Copyright (C) 2007 Mauro Carvalho Chehab <mchehab@infradead.org> |
| 7 | * - Port to work with the in-kernel driver |
| 8 | * - Several cleanups |
| 9 | * |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 10 | * 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 Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 37 | #include <linux/module.h> |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 38 | #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 Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 44 | #include <media/v4l2-common.h> |
| 45 | #include "em28xx.h" |
| 46 | |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 47 | static int debug; |
| 48 | module_param(debug, int, 0644); |
| 49 | MODULE_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 Harrison | d80e134 | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 54 | __func__, ##arg); \ |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 55 | } while (0) |
| 56 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 57 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 58 | |
Robert Krakora | aa5a182 | 2009-02-08 13:09:11 -0300 | [diff] [blame] | 59 | static int em28xx_deinit_isoc_audio(struct em28xx *dev) |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 60 | { |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 61 | int i; |
| 62 | |
| 63 | dprintk("Stopping isoc\n"); |
Douglas Schilling Landgraf | 3e099ba | 2009-02-08 10:45:34 -0300 | [diff] [blame] | 64 | for (i = 0; i < EM28XX_AUDIO_BUFS; i++) { |
Robert Krakora | 9c06210 | 2009-01-25 13:08:07 -0300 | [diff] [blame] | 65 | if (!irqs_disabled()) |
| 66 | usb_kill_urb(dev->adev.urb[i]); |
| 67 | else |
| 68 | usb_unlink_urb(dev->adev.urb[i]); |
Robert Krakora | aa5a182 | 2009-02-08 13:09:11 -0300 | [diff] [blame] | 69 | |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 70 | usb_free_urb(dev->adev.urb[i]); |
| 71 | dev->adev.urb[i] = NULL; |
Robert Krakora | 53d12e5 | 2009-01-16 11:23:25 -0300 | [diff] [blame] | 72 | |
Robert Krakora | 9c06210 | 2009-01-25 13:08:07 -0300 | [diff] [blame] | 73 | kfree(dev->adev.transfer_buffer[i]); |
| 74 | dev->adev.transfer_buffer[i] = NULL; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 75 | } |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 76 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 77 | return 0; |
| 78 | } |
| 79 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 80 | static void em28xx_audio_isocirq(struct urb *urb) |
| 81 | { |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 82 | struct em28xx *dev = urb->context; |
| 83 | int i; |
| 84 | unsigned int oldptr; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 85 | int period_elapsed = 0; |
| 86 | int status; |
| 87 | unsigned char *cp; |
| 88 | unsigned int stride; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 89 | struct snd_pcm_substream *substream; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 90 | struct snd_pcm_runtime *runtime; |
Robert Krakora | aa5a182 | 2009-02-08 13:09:11 -0300 | [diff] [blame] | 91 | |
| 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 Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 105 | if (dev->adev.capture_pcm_substream) { |
| 106 | substream = dev->adev.capture_pcm_substream; |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 107 | runtime = substream->runtime; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 108 | stride = runtime->frame_bits >> 3; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 109 | |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 110 | 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 Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 115 | |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 116 | if (!length) |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 117 | continue; |
| 118 | |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 119 | oldptr = dev->adev.hwptr_done_capture; |
Mauro Carvalho Chehab | 50f3beb | 2008-11-24 08:45:57 -0300 | [diff] [blame] | 120 | 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 Chehab | 50f3beb | 2008-11-24 08:45:57 -0300 | [diff] [blame] | 132 | snd_pcm_stream_lock(substream); |
Mauro Carvalho Chehab | 50f3beb | 2008-11-24 08:45:57 -0300 | [diff] [blame] | 133 | |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 134 | dev->adev.hwptr_done_capture += length; |
| 135 | if (dev->adev.hwptr_done_capture >= |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 136 | runtime->buffer_size) |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 137 | dev->adev.hwptr_done_capture -= |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 138 | runtime->buffer_size; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 139 | |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 140 | dev->adev.capture_transfer_done += length; |
| 141 | if (dev->adev.capture_transfer_done >= |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 142 | runtime->period_size) { |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 143 | dev->adev.capture_transfer_done -= |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 144 | runtime->period_size; |
| 145 | period_elapsed = 1; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 146 | } |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 147 | |
Mauro Carvalho Chehab | 50f3beb | 2008-11-24 08:45:57 -0300 | [diff] [blame] | 148 | snd_pcm_stream_unlock(substream); |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 149 | } |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 150 | if (period_elapsed) |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 151 | snd_pcm_period_elapsed(substream); |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 152 | } |
| 153 | urb->status = 0; |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 154 | |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 155 | status = usb_submit_urb(urb, GFP_ATOMIC); |
| 156 | if (status < 0) { |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 157 | em28xx_errdev("resubmit of audio urb failed (error=%i)\n", |
| 158 | status); |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 159 | } |
| 160 | return; |
| 161 | } |
| 162 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 163 | static int em28xx_init_audio_isoc(struct em28xx *dev) |
| 164 | { |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 165 | 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 Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 170 | |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 171 | for (i = 0; i < EM28XX_AUDIO_BUFS; i++) { |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 172 | struct urb *urb; |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 173 | int j, k; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 174 | |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 175 | dev->adev.transfer_buffer[i] = kmalloc(sb_size, GFP_ATOMIC); |
| 176 | if (!dev->adev.transfer_buffer[i]) |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 177 | return -ENOMEM; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 178 | |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 179 | memset(dev->adev.transfer_buffer[i], 0x80, sb_size); |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 180 | urb = usb_alloc_urb(EM28XX_NUM_AUDIO_PACKETS, GFP_ATOMIC); |
Douglas Schilling Landgraf | ff9b3e4 | 2008-09-04 11:20:20 -0300 | [diff] [blame] | 181 | if (!urb) { |
| 182 | em28xx_errdev("usb_alloc_urb failed!\n"); |
| 183 | for (j = 0; j < i; j++) { |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 184 | usb_free_urb(dev->adev.urb[j]); |
| 185 | kfree(dev->adev.transfer_buffer[j]); |
Douglas Schilling Landgraf | ff9b3e4 | 2008-09-04 11:20:20 -0300 | [diff] [blame] | 186 | } |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 187 | return -ENOMEM; |
Douglas Schilling Landgraf | ff9b3e4 | 2008-09-04 11:20:20 -0300 | [diff] [blame] | 188 | } |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 189 | |
| 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 Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 194 | urb->transfer_buffer = dev->adev.transfer_buffer[i]; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 195 | 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 Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 205 | } |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 206 | dev->adev.urb[i] = urb; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 207 | } |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 208 | |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 209 | for (i = 0; i < EM28XX_AUDIO_BUFS; i++) { |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 210 | errCode = usb_submit_urb(dev->adev.urb[i], GFP_ATOMIC); |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 211 | if (errCode) { |
Robert Krakora | aa5a182 | 2009-02-08 13:09:11 -0300 | [diff] [blame] | 212 | em28xx_deinit_isoc_audio(dev); |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 213 | return errCode; |
| 214 | } |
| 215 | } |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 216 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 217 | return 0; |
| 218 | } |
| 219 | |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 220 | static int em28xx_cmd(struct em28xx *dev, int cmd, int arg) |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 221 | { |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 222 | dprintk("%s transfer\n", (dev->adev.capture_stream == STREAM_ON) ? |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 223 | "stop" : "start"); |
| 224 | |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 225 | switch (cmd) { |
| 226 | case EM28XX_CAPTURE_STREAM_EN: |
Nicola Soranzo | 55bf0e7 | 2009-02-12 14:21:52 -0300 | [diff] [blame] | 227 | if (dev->adev.capture_stream == STREAM_OFF && |
| 228 | arg == EM28XX_START_AUDIO) { |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 229 | dev->adev.capture_stream = STREAM_ON; |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 230 | em28xx_init_audio_isoc(dev); |
Nicola Soranzo | 55bf0e7 | 2009-02-12 14:21:52 -0300 | [diff] [blame] | 231 | } else if (dev->adev.capture_stream == STREAM_ON && |
| 232 | arg == EM28XX_STOP_AUDIO) { |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 233 | dev->adev.capture_stream = STREAM_OFF; |
Robert Krakora | aa5a182 | 2009-02-08 13:09:11 -0300 | [diff] [blame] | 234 | em28xx_deinit_isoc_audio(dev); |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 235 | } else { |
Alexey Klimov | 5c030de | 2009-02-08 01:16:32 -0300 | [diff] [blame] | 236 | em28xx_errdev("An underrun very likely occurred. " |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 237 | "Ignoring it.\n"); |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 238 | } |
| 239 | return 0; |
| 240 | default: |
| 241 | return -EINVAL; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 242 | } |
| 243 | } |
| 244 | |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 245 | static 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 Soranzo | a1a6ee7 | 2009-02-10 23:28:24 -0300 | [diff] [blame] | 250 | dprintk("Allocating vbuffer\n"); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 251 | 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 | |
| 266 | static 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 | |
| 287 | static 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 Chehab | 83ee87a | 2008-06-14 09:41:18 -0300 | [diff] [blame] | 295 | if (!dev) { |
Filipe Rosset | 0bc2308 | 2009-11-04 15:31:25 -0300 | [diff] [blame^] | 296 | em28xx_err("BUG: em28xx can't find device struct." |
Mauro Carvalho Chehab | 83ee87a | 2008-06-14 09:41:18 -0300 | [diff] [blame] | 297 | " Can't proceed with open\n"); |
| 298 | return -ENODEV; |
| 299 | } |
| 300 | |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 301 | /* Sets volume, mute, etc */ |
Mauro Carvalho Chehab | 92ea42f | 2008-02-06 18:52:15 -0300 | [diff] [blame] | 302 | |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 303 | dev->mute = 0; |
Mauro Carvalho Chehab | 92ea42f | 2008-02-06 18:52:15 -0300 | [diff] [blame] | 304 | mutex_lock(&dev->lock); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 305 | ret = em28xx_audio_analog_set(dev); |
Mauro Carvalho Chehab | 92ea42f | 2008-02-06 18:52:15 -0300 | [diff] [blame] | 306 | mutex_unlock(&dev->lock); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 307 | if (ret < 0) |
| 308 | goto err; |
| 309 | |
| 310 | runtime->hw = snd_em28xx_hw_capture; |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 311 | if (dev->alt == 0 && dev->adev.users == 0) { |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 312 | 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 Landgraf | bf510ac | 2009-02-08 01:11:13 -0300 | [diff] [blame] | 318 | mutex_lock(&dev->lock); |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 319 | dev->adev.users++; |
Douglas Schilling Landgraf | bf510ac | 2009-02-08 01:11:13 -0300 | [diff] [blame] | 320 | mutex_unlock(&dev->lock); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 321 | |
| 322 | snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS); |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 323 | dev->adev.capture_pcm_substream = substream; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 324 | runtime->private_data = dev; |
| 325 | |
| 326 | return 0; |
| 327 | err: |
Filipe Rosset | 0bc2308 | 2009-11-04 15:31:25 -0300 | [diff] [blame^] | 328 | em28xx_err("Error while configuring em28xx mixer\n"); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 329 | return ret; |
| 330 | } |
| 331 | |
| 332 | static int snd_em28xx_pcm_close(struct snd_pcm_substream *substream) |
| 333 | { |
| 334 | struct em28xx *dev = snd_pcm_substream_chip(substream); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 335 | |
| 336 | dprintk("closing device\n"); |
| 337 | |
| 338 | dev->mute = 1; |
Mauro Carvalho Chehab | 92ea42f | 2008-02-06 18:52:15 -0300 | [diff] [blame] | 339 | mutex_lock(&dev->lock); |
Douglas Schilling Landgraf | bf510ac | 2009-02-08 01:11:13 -0300 | [diff] [blame] | 340 | dev->adev.users--; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 341 | em28xx_audio_analog_set(dev); |
Robert Krakora | 75c74d1 | 2009-05-28 11:16:19 -0300 | [diff] [blame] | 342 | if (substream->runtime->dma_area) { |
| 343 | dprintk("freeing\n"); |
| 344 | vfree(substream->runtime->dma_area); |
| 345 | substream->runtime->dma_area = NULL; |
| 346 | } |
Mauro Carvalho Chehab | 92ea42f | 2008-02-06 18:52:15 -0300 | [diff] [blame] | 347 | mutex_unlock(&dev->lock); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 348 | |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 349 | return 0; |
| 350 | } |
| 351 | |
| 352 | static 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 | |
| 372 | static 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 Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 378 | if (dev->adev.capture_stream == STREAM_ON) |
Douglas Schilling Landgraf | 22cff7b | 2009-02-08 01:38:10 -0300 | [diff] [blame] | 379 | em28xx_cmd(dev, EM28XX_CAPTURE_STREAM_EN, EM28XX_STOP_AUDIO); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 380 | |
| 381 | return 0; |
| 382 | } |
| 383 | |
| 384 | static int snd_em28xx_prepare(struct snd_pcm_substream *substream) |
| 385 | { |
Devin Heitmueller | 96fbf77 | 2009-10-15 01:14:34 -0300 | [diff] [blame] | 386 | struct em28xx *dev = snd_pcm_substream_chip(substream); |
| 387 | |
| 388 | dev->adev.hwptr_done_capture = 0; |
| 389 | dev->adev.capture_transfer_done = 0; |
| 390 | |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 391 | return 0; |
| 392 | } |
| 393 | |
| 394 | static int snd_em28xx_capture_trigger(struct snd_pcm_substream *substream, |
| 395 | int cmd) |
| 396 | { |
| 397 | struct em28xx *dev = snd_pcm_substream_chip(substream); |
Douglas Schilling Landgraf | df39ca6 | 2009-02-08 14:17:15 -0300 | [diff] [blame] | 398 | int retval; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 399 | |
Nicola Soranzo | 55bf0e7 | 2009-02-12 14:21:52 -0300 | [diff] [blame] | 400 | dprintk("Should %s capture\n", (cmd == SNDRV_PCM_TRIGGER_START) ? |
| 401 | "start" : "stop"); |
Douglas Schilling Landgraf | df39ca6 | 2009-02-08 14:17:15 -0300 | [diff] [blame] | 402 | |
| 403 | spin_lock(&dev->adev.slock); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 404 | switch (cmd) { |
| 405 | case SNDRV_PCM_TRIGGER_START: |
Douglas Schilling Landgraf | 22cff7b | 2009-02-08 01:38:10 -0300 | [diff] [blame] | 406 | em28xx_cmd(dev, EM28XX_CAPTURE_STREAM_EN, EM28XX_START_AUDIO); |
Douglas Schilling Landgraf | df39ca6 | 2009-02-08 14:17:15 -0300 | [diff] [blame] | 407 | retval = 0; |
| 408 | break; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 409 | case SNDRV_PCM_TRIGGER_STOP: |
Douglas Schilling Landgraf | 22cff7b | 2009-02-08 01:38:10 -0300 | [diff] [blame] | 410 | em28xx_cmd(dev, EM28XX_CAPTURE_STREAM_EN, EM28XX_STOP_AUDIO); |
Douglas Schilling Landgraf | df39ca6 | 2009-02-08 14:17:15 -0300 | [diff] [blame] | 411 | retval = 0; |
| 412 | break; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 413 | default: |
Douglas Schilling Landgraf | df39ca6 | 2009-02-08 14:17:15 -0300 | [diff] [blame] | 414 | retval = -EINVAL; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 415 | } |
Douglas Schilling Landgraf | df39ca6 | 2009-02-08 14:17:15 -0300 | [diff] [blame] | 416 | |
| 417 | spin_unlock(&dev->adev.slock); |
| 418 | return retval; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 419 | } |
| 420 | |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 421 | static snd_pcm_uframes_t snd_em28xx_capture_pointer(struct snd_pcm_substream |
| 422 | *substream) |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 423 | { |
Nicola Soranzo | a1a6ee7 | 2009-02-10 23:28:24 -0300 | [diff] [blame] | 424 | unsigned long flags; |
Robert Krakora | 53d12e5 | 2009-01-16 11:23:25 -0300 | [diff] [blame] | 425 | struct em28xx *dev; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 426 | snd_pcm_uframes_t hwptr_done; |
Robert Krakora | 53d12e5 | 2009-01-16 11:23:25 -0300 | [diff] [blame] | 427 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 428 | dev = snd_pcm_substream_chip(substream); |
Douglas Schilling Landgraf | 00bc064 | 2009-01-25 15:12:29 -0300 | [diff] [blame] | 429 | spin_lock_irqsave(&dev->adev.slock, flags); |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 430 | hwptr_done = dev->adev.hwptr_done_capture; |
Douglas Schilling Landgraf | 00bc064 | 2009-01-25 15:12:29 -0300 | [diff] [blame] | 431 | spin_unlock_irqrestore(&dev->adev.slock, flags); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 432 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 433 | return hwptr_done; |
| 434 | } |
| 435 | |
| 436 | static struct page *snd_pcm_get_vmalloc_page(struct snd_pcm_substream *subs, |
| 437 | unsigned long offset) |
| 438 | { |
| 439 | void *pageptr = subs->runtime->dma_area + offset; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 440 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 441 | return vmalloc_to_page(pageptr); |
| 442 | } |
| 443 | |
| 444 | static struct snd_pcm_ops snd_em28xx_pcm_capture = { |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 445 | .open = snd_em28xx_capture_open, |
| 446 | .close = snd_em28xx_pcm_close, |
| 447 | .ioctl = snd_pcm_lib_ioctl, |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 448 | .hw_params = snd_em28xx_hw_capture_params, |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 449 | .hw_free = snd_em28xx_hw_capture_free, |
| 450 | .prepare = snd_em28xx_prepare, |
| 451 | .trigger = snd_em28xx_capture_trigger, |
| 452 | .pointer = snd_em28xx_capture_pointer, |
| 453 | .page = snd_pcm_get_vmalloc_page, |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 454 | }; |
| 455 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 456 | static int em28xx_audio_init(struct em28xx *dev) |
| 457 | { |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 458 | struct em28xx_audio *adev = &dev->adev; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 459 | struct snd_pcm *pcm; |
| 460 | struct snd_card *card; |
| 461 | static int devnr; |
Devin Heitmueller | 65c9fd4 | 2008-11-12 02:04:53 -0300 | [diff] [blame] | 462 | int err; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 463 | |
Devin Heitmueller | 24a613e | 2008-11-12 02:05:19 -0300 | [diff] [blame] | 464 | if (dev->has_alsa_audio != 1) { |
Devin Heitmueller | df61918 | 2008-06-10 12:34:35 -0300 | [diff] [blame] | 465 | /* This device does not support the extension (in this case |
Devin Heitmueller | 24a613e | 2008-11-12 02:05:19 -0300 | [diff] [blame] | 466 | the device is expecting the snd-usb-audio module or |
| 467 | doesn't have analog audio support at all) */ |
Devin Heitmueller | df61918 | 2008-06-10 12:34:35 -0300 | [diff] [blame] | 468 | return 0; |
| 469 | } |
| 470 | |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 471 | printk(KERN_INFO "em28xx-audio.c: probing for em28x1 " |
| 472 | "non standard usbaudio\n"); |
| 473 | printk(KERN_INFO "em28xx-audio.c: Copyright (C) 2006 Markus " |
| 474 | "Rechberger\n"); |
| 475 | |
Takashi Iwai | 758021b | 2009-01-12 15:17:09 +0100 | [diff] [blame] | 476 | err = snd_card_create(index[devnr], "Em28xx Audio", THIS_MODULE, 0, |
| 477 | &card); |
| 478 | if (err < 0) |
| 479 | return err; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 480 | |
| 481 | spin_lock_init(&adev->slock); |
Mauro Carvalho Chehab | 1f6340b | 2008-11-07 14:24:18 -0300 | [diff] [blame] | 482 | err = snd_pcm_new(card, "Em28xx Audio", 0, 0, 1, &pcm); |
| 483 | if (err < 0) { |
| 484 | snd_card_free(card); |
| 485 | return err; |
| 486 | } |
| 487 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 488 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_em28xx_pcm_capture); |
| 489 | pcm->info_flags = 0; |
| 490 | pcm->private_data = dev; |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 491 | strcpy(pcm->name, "Empia 28xx Capture"); |
Nicola Soranzo | 7662b00 | 2009-02-19 13:41:56 -0300 | [diff] [blame] | 492 | |
| 493 | snd_card_set_dev(card, &dev->udev->dev); |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 494 | strcpy(card->driver, "Empia Em28xx Audio"); |
| 495 | strcpy(card->shortname, "Em28xx Audio"); |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 496 | strcpy(card->longname, "Empia Em28xx Audio"); |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 497 | |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 498 | err = snd_card_register(card); |
| 499 | if (err < 0) { |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 500 | snd_card_free(card); |
Mauro Carvalho Chehab | 1f6340b | 2008-11-07 14:24:18 -0300 | [diff] [blame] | 501 | return err; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 502 | } |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 503 | adev->sndcard = card; |
| 504 | adev->udev = dev->udev; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 505 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 506 | return 0; |
| 507 | } |
| 508 | |
| 509 | static int em28xx_audio_fini(struct em28xx *dev) |
| 510 | { |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 511 | if (dev == NULL) |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 512 | return 0; |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 513 | |
Devin Heitmueller | 24a613e | 2008-11-12 02:05:19 -0300 | [diff] [blame] | 514 | if (dev->has_alsa_audio != 1) { |
Devin Heitmueller | df61918 | 2008-06-10 12:34:35 -0300 | [diff] [blame] | 515 | /* This device does not support the extension (in this case |
Devin Heitmueller | 24a613e | 2008-11-12 02:05:19 -0300 | [diff] [blame] | 516 | the device is expecting the snd-usb-audio module or |
| 517 | doesn't have analog audio support at all) */ |
Devin Heitmueller | df61918 | 2008-06-10 12:34:35 -0300 | [diff] [blame] | 518 | return 0; |
| 519 | } |
| 520 | |
Mauro Carvalho Chehab | 9baed99 | 2008-12-31 09:37:33 -0300 | [diff] [blame] | 521 | if (dev->adev.sndcard) { |
| 522 | snd_card_free(dev->adev.sndcard); |
| 523 | dev->adev.sndcard = NULL; |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 524 | } |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 525 | |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 526 | return 0; |
| 527 | } |
| 528 | |
| 529 | static struct em28xx_ops audio_ops = { |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 530 | .id = EM28XX_AUDIO, |
Mauro Carvalho Chehab | 1a6f11e | 2008-01-05 09:56:24 -0300 | [diff] [blame] | 531 | .name = "Em28xx Audio Extension", |
| 532 | .init = em28xx_audio_init, |
| 533 | .fini = em28xx_audio_fini, |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 534 | }; |
| 535 | |
| 536 | static int __init em28xx_alsa_register(void) |
| 537 | { |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 538 | return em28xx_register_extension(&audio_ops); |
| 539 | } |
| 540 | |
| 541 | static void __exit em28xx_alsa_unregister(void) |
| 542 | { |
| 543 | em28xx_unregister_extension(&audio_ops); |
| 544 | } |
| 545 | |
| 546 | MODULE_LICENSE("GPL"); |
| 547 | MODULE_AUTHOR("Markus Rechberger <mrechberger@gmail.com>"); |
Mauro Carvalho Chehab | 6d79468 | 2008-01-05 09:57:31 -0300 | [diff] [blame] | 548 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>"); |
Markus Rechberger | a52932b | 2008-01-05 09:55:47 -0300 | [diff] [blame] | 549 | MODULE_DESCRIPTION("Em28xx Audio driver"); |
| 550 | |
| 551 | module_init(em28xx_alsa_register); |
| 552 | module_exit(em28xx_alsa_unregister); |