blob: a3136afb2198b6efb0a5c3f424684e8e3297797e [file] [log] [blame]
Daniel Macke5779992010-03-04 19:46:13 +01001/*
2 * (Tentative) USB Audio Driver for ALSA
3 *
4 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
5 *
6 * Many codes borrowed from audio.c by
7 * Alan Cox (alan@lxorguk.ukuu.org.uk)
8 * Thomas Sailer (sailer@ife.ee.ethz.ch)
9 *
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
25 *
26 * NOTES:
27 *
28 * - async unlink should be used for avoiding the sleep inside lock.
29 * 2.4.22 usb-uhci seems buggy for async unlinking and results in
30 * oops. in such a cse, pass async_unlink=0 option.
31 * - the linked URBs would be preferred but not used so far because of
32 * the instability of unlinking.
33 * - type II is not supported properly. there is no device which supports
34 * this type *correctly*. SB extigy looks as if it supports, but it's
35 * indeed an AC3 stream packed in SPDIF frames (i.e. no real AC3 stream).
36 */
37
38
39#include <linux/bitops.h>
40#include <linux/init.h>
41#include <linux/list.h>
42#include <linux/slab.h>
43#include <linux/string.h>
Takashi Iwai3ffc1222011-03-21 12:00:00 +010044#include <linux/ctype.h>
Daniel Macke5779992010-03-04 19:46:13 +010045#include <linux/usb.h>
46#include <linux/moduleparam.h>
47#include <linux/mutex.h>
48#include <linux/usb/audio.h>
Daniel Mack7e847892010-03-11 21:13:20 +010049#include <linux/usb/audio-v2.h>
Daniel Macke5779992010-03-04 19:46:13 +010050
Daniel Mack9e386582011-05-25 09:09:01 +020051#include <sound/control.h>
Daniel Macke5779992010-03-04 19:46:13 +010052#include <sound/core.h>
53#include <sound/info.h>
54#include <sound/pcm.h>
55#include <sound/pcm_params.h>
56#include <sound/initval.h>
57
58#include "usbaudio.h"
59#include "card.h"
60#include "midi.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010061#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010062#include "proc.h"
63#include "quirks.h"
64#include "endpoint.h"
65#include "helper.h"
66#include "debug.h"
67#include "pcm.h"
68#include "urb.h"
69#include "format.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010070#include "power.h"
Daniel Macke8e8bab2011-09-12 18:54:12 +020071#include "stream.h"
Daniel Macke5779992010-03-04 19:46:13 +010072
73MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
74MODULE_DESCRIPTION("USB Audio");
75MODULE_LICENSE("GPL");
76MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
77
78
79static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
80static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
81static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
82/* Vendor/product IDs for this card */
83static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
84static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
85static int nrpacks = 8; /* max. number of packets per urb */
86static int async_unlink = 1;
87static int device_setup[SNDRV_CARDS]; /* device parameter for this card */
88static int ignore_ctl_error;
89
90module_param_array(index, int, NULL, 0444);
91MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
92module_param_array(id, charp, NULL, 0444);
93MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
94module_param_array(enable, bool, NULL, 0444);
95MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
96module_param_array(vid, int, NULL, 0444);
97MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
98module_param_array(pid, int, NULL, 0444);
99MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
100module_param(nrpacks, int, 0644);
101MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB.");
102module_param(async_unlink, bool, 0444);
103MODULE_PARM_DESC(async_unlink, "Use async unlink mode.");
104module_param_array(device_setup, int, NULL, 0444);
105MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
106module_param(ignore_ctl_error, bool, 0444);
107MODULE_PARM_DESC(ignore_ctl_error,
108 "Ignore errors from USB controller for mixer interfaces.");
109
110/*
111 * we keep the snd_usb_audio_t instances by ourselves for merging
112 * the all interfaces on the same card as one sound device.
113 */
114
115static DEFINE_MUTEX(register_mutex);
116static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
117static struct usb_driver usb_audio_driver;
118
119/*
120 * disconnect streams
121 * called from snd_usb_audio_disconnect()
122 */
123static void snd_usb_stream_disconnect(struct list_head *head)
124{
125 int idx;
126 struct snd_usb_stream *as;
127 struct snd_usb_substream *subs;
128
129 as = list_entry(head, struct snd_usb_stream, list);
130 for (idx = 0; idx < 2; idx++) {
131 subs = &as->substream[idx];
132 if (!subs->num_formats)
Takashi Iwai76195fb2010-09-08 08:27:02 +0200133 continue;
Daniel Macke5779992010-03-04 19:46:13 +0100134 snd_usb_release_substream_urbs(subs, 1);
135 subs->interface = -1;
136 }
137}
138
139static int snd_usb_create_stream(struct snd_usb_audio *chip, int ctrlif, int interface)
140{
141 struct usb_device *dev = chip->dev;
142 struct usb_host_interface *alts;
143 struct usb_interface_descriptor *altsd;
144 struct usb_interface *iface = usb_ifnum_to_if(dev, interface);
145
146 if (!iface) {
147 snd_printk(KERN_ERR "%d:%u:%d : does not exist\n",
148 dev->devnum, ctrlif, interface);
149 return -EINVAL;
150 }
151
152 if (usb_interface_claimed(iface)) {
153 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n",
154 dev->devnum, ctrlif, interface);
155 return -EINVAL;
156 }
157
158 alts = &iface->altsetting[0];
159 altsd = get_iface_desc(alts);
160 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
161 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
162 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDISTREAMING) {
163 int err = snd_usbmidi_create(chip->card, iface,
164 &chip->midi_list, NULL);
165 if (err < 0) {
166 snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n",
167 dev->devnum, ctrlif, interface);
168 return -EINVAL;
169 }
170 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
171
172 return 0;
173 }
174
175 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
176 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
177 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING) {
178 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n",
179 dev->devnum, ctrlif, interface, altsd->bInterfaceClass);
180 /* skip non-supported classes */
181 return -EINVAL;
182 }
183
184 if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
185 snd_printk(KERN_ERR "low speed audio streaming not supported\n");
186 return -EINVAL;
187 }
188
Daniel Macke8e8bab2011-09-12 18:54:12 +0200189 if (! snd_usb_parse_audio_interface(chip, interface)) {
Daniel Macke5779992010-03-04 19:46:13 +0100190 usb_set_interface(dev, interface, 0); /* reset the current interface */
191 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
192 return -EINVAL;
193 }
194
195 return 0;
196}
197
198/*
199 * parse audio control descriptor and create pcm/midi streams
200 */
201static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
202{
203 struct usb_device *dev = chip->dev;
204 struct usb_host_interface *host_iface;
205 struct usb_interface_descriptor *altsd;
206 void *control_header;
207 int i, protocol;
208
209 /* find audiocontrol interface */
210 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
211 control_header = snd_usb_find_csint_desc(host_iface->extra,
212 host_iface->extralen,
213 NULL, UAC_HEADER);
214 altsd = get_iface_desc(host_iface);
215 protocol = altsd->bInterfaceProtocol;
216
217 if (!control_header) {
218 snd_printk(KERN_ERR "cannot find UAC_HEADER\n");
219 return -EINVAL;
220 }
221
222 switch (protocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +0200223 default:
224 snd_printdd(KERN_WARNING "unknown interface protocol %#02x, assuming v1\n",
225 protocol);
226 /* fall through */
227
Daniel Macke5779992010-03-04 19:46:13 +0100228 case UAC_VERSION_1: {
Daniel Mack69da9bc2010-06-16 17:57:28 +0200229 struct uac1_ac_header_descriptor *h1 = control_header;
Daniel Macke5779992010-03-04 19:46:13 +0100230
231 if (!h1->bInCollection) {
232 snd_printk(KERN_INFO "skipping empty audio interface (v1)\n");
233 return -EINVAL;
234 }
235
236 if (h1->bLength < sizeof(*h1) + h1->bInCollection) {
237 snd_printk(KERN_ERR "invalid UAC_HEADER (v1)\n");
238 return -EINVAL;
239 }
240
241 for (i = 0; i < h1->bInCollection; i++)
242 snd_usb_create_stream(chip, ctrlif, h1->baInterfaceNr[i]);
243
244 break;
245 }
246
247 case UAC_VERSION_2: {
Daniel Macke5779992010-03-04 19:46:13 +0100248 struct usb_interface_assoc_descriptor *assoc =
249 usb_ifnum_to_if(dev, ctrlif)->intf_assoc;
250
251 if (!assoc) {
252 snd_printk(KERN_ERR "Audio class v2 interfaces need an interface association\n");
253 return -EINVAL;
254 }
255
Daniel Macke5779992010-03-04 19:46:13 +0100256 for (i = 0; i < assoc->bInterfaceCount; i++) {
257 int intf = assoc->bFirstInterface + i;
258
259 if (intf != ctrlif)
260 snd_usb_create_stream(chip, ctrlif, intf);
261 }
262
263 break;
264 }
Daniel Macke5779992010-03-04 19:46:13 +0100265 }
266
267 return 0;
268}
269
270/*
271 * free the chip instance
272 *
273 * here we have to do not much, since pcm and controls are already freed
274 *
275 */
276
277static int snd_usb_audio_free(struct snd_usb_audio *chip)
278{
279 kfree(chip);
280 return 0;
281}
282
283static int snd_usb_audio_dev_free(struct snd_device *device)
284{
285 struct snd_usb_audio *chip = device->device_data;
286 return snd_usb_audio_free(chip);
287}
288
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100289static void remove_trailing_spaces(char *str)
290{
291 char *p;
292
293 if (!*str)
294 return;
295 for (p = str + strlen(str) - 1; p >= str && isspace(*p); p--)
296 *p = 0;
297}
Daniel Macke5779992010-03-04 19:46:13 +0100298
299/*
300 * create a chip instance and set its names.
301 */
302static int snd_usb_audio_create(struct usb_device *dev, int idx,
303 const struct snd_usb_audio_quirk *quirk,
304 struct snd_usb_audio **rchip)
305{
306 struct snd_card *card;
307 struct snd_usb_audio *chip;
308 int err, len;
309 char component[14];
310 static struct snd_device_ops ops = {
311 .dev_free = snd_usb_audio_dev_free,
312 };
313
314 *rchip = NULL;
315
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700316 switch (snd_usb_get_speed(dev)) {
317 case USB_SPEED_LOW:
318 case USB_SPEED_FULL:
319 case USB_SPEED_HIGH:
320 case USB_SPEED_SUPER:
321 break;
322 default:
Daniel Macke5779992010-03-04 19:46:13 +0100323 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
324 return -ENXIO;
325 }
326
327 err = snd_card_create(index[idx], id[idx], THIS_MODULE, 0, &card);
328 if (err < 0) {
329 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
330 return err;
331 }
332
333 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
334 if (! chip) {
335 snd_card_free(card);
336 return -ENOMEM;
337 }
338
Takashi Iwai382225e2011-02-22 10:21:18 +0100339 mutex_init(&chip->shutdown_mutex);
Daniel Macke5779992010-03-04 19:46:13 +0100340 chip->index = idx;
341 chip->dev = dev;
342 chip->card = card;
343 chip->setup = device_setup[idx];
344 chip->nrpacks = nrpacks;
345 chip->async_unlink = async_unlink;
Oliver Neukum88a85162011-03-11 14:51:12 +0100346 chip->probing = 1;
Daniel Macke5779992010-03-04 19:46:13 +0100347
348 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
349 le16_to_cpu(dev->descriptor.idProduct));
350 INIT_LIST_HEAD(&chip->pcm_list);
351 INIT_LIST_HEAD(&chip->midi_list);
352 INIT_LIST_HEAD(&chip->mixer_list);
353
354 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
355 snd_usb_audio_free(chip);
356 snd_card_free(card);
357 return err;
358 }
359
360 strcpy(card->driver, "USB-Audio");
361 sprintf(component, "USB%04x:%04x",
362 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
363 snd_component_add(card, component);
364
365 /* retrieve the device string as shortname */
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100366 if (quirk && quirk->product_name && *quirk->product_name) {
Daniel Macke5779992010-03-04 19:46:13 +0100367 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
368 } else {
369 if (!dev->descriptor.iProduct ||
370 usb_string(dev, dev->descriptor.iProduct,
371 card->shortname, sizeof(card->shortname)) <= 0) {
372 /* no name available from anywhere, so use ID */
373 sprintf(card->shortname, "USB Device %#04x:%#04x",
374 USB_ID_VENDOR(chip->usb_id),
375 USB_ID_PRODUCT(chip->usb_id));
376 }
377 }
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100378 remove_trailing_spaces(card->shortname);
Daniel Macke5779992010-03-04 19:46:13 +0100379
380 /* retrieve the vendor and device strings as longname */
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100381 if (quirk && quirk->vendor_name && *quirk->vendor_name) {
Daniel Macke5779992010-03-04 19:46:13 +0100382 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
383 } else {
384 if (dev->descriptor.iManufacturer)
385 len = usb_string(dev, dev->descriptor.iManufacturer,
386 card->longname, sizeof(card->longname));
387 else
388 len = 0;
389 /* we don't really care if there isn't any vendor string */
390 }
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100391 if (len > 0) {
392 remove_trailing_spaces(card->longname);
393 if (*card->longname)
394 strlcat(card->longname, " ", sizeof(card->longname));
395 }
Daniel Macke5779992010-03-04 19:46:13 +0100396
397 strlcat(card->longname, card->shortname, sizeof(card->longname));
398
399 len = strlcat(card->longname, " at ", sizeof(card->longname));
400
401 if (len < sizeof(card->longname))
402 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
403
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700404 switch (snd_usb_get_speed(dev)) {
405 case USB_SPEED_LOW:
406 strlcat(card->longname, ", low speed", sizeof(card->longname));
407 break;
408 case USB_SPEED_FULL:
409 strlcat(card->longname, ", full speed", sizeof(card->longname));
410 break;
411 case USB_SPEED_HIGH:
412 strlcat(card->longname, ", high speed", sizeof(card->longname));
413 break;
414 case USB_SPEED_SUPER:
415 strlcat(card->longname, ", super speed", sizeof(card->longname));
416 break;
417 default:
418 break;
419 }
Daniel Macke5779992010-03-04 19:46:13 +0100420
421 snd_usb_audio_create_proc(chip);
422
423 *rchip = chip;
424 return 0;
425}
426
427/*
428 * probe the active usb device
429 *
430 * note that this can be called multiple times per a device, when it
431 * includes multiple audio control interfaces.
432 *
433 * thus we check the usb device pointer and creates the card instance
434 * only at the first time. the successive calls of this function will
435 * append the pcm interface to the corresponding card.
436 */
Pavel Roskin81b85b62011-07-06 11:20:13 -0400437static struct snd_usb_audio *
438snd_usb_audio_probe(struct usb_device *dev,
439 struct usb_interface *intf,
440 const struct usb_device_id *usb_id)
Daniel Macke5779992010-03-04 19:46:13 +0100441{
442 const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
443 int i, err;
444 struct snd_usb_audio *chip;
445 struct usb_host_interface *alts;
446 int ifnum;
447 u32 id;
448
449 alts = &intf->altsetting[0];
450 ifnum = get_iface_desc(alts)->bInterfaceNumber;
451 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
452 le16_to_cpu(dev->descriptor.idProduct));
453 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
454 goto __err_val;
455
456 if (snd_usb_apply_boot_quirk(dev, intf, quirk) < 0)
457 goto __err_val;
458
459 /*
460 * found a config. now register to ALSA
461 */
462
463 /* check whether it's already registered */
464 chip = NULL;
465 mutex_lock(&register_mutex);
466 for (i = 0; i < SNDRV_CARDS; i++) {
467 if (usb_chip[i] && usb_chip[i]->dev == dev) {
468 if (usb_chip[i]->shutdown) {
469 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
470 goto __error;
471 }
472 chip = usb_chip[i];
Oliver Neukum88a85162011-03-11 14:51:12 +0100473 chip->probing = 1;
Daniel Macke5779992010-03-04 19:46:13 +0100474 break;
475 }
476 }
477 if (! chip) {
478 /* it's a fresh one.
479 * now look for an empty slot and create a new card instance
480 */
481 for (i = 0; i < SNDRV_CARDS; i++)
482 if (enable[i] && ! usb_chip[i] &&
483 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
484 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
485 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
486 goto __error;
487 }
488 snd_card_set_dev(chip->card, &intf->dev);
Oliver Neukum88a85162011-03-11 14:51:12 +0100489 chip->pm_intf = intf;
Daniel Macke5779992010-03-04 19:46:13 +0100490 break;
491 }
492 if (!chip) {
493 printk(KERN_ERR "no available usb audio device\n");
494 goto __error;
495 }
496 }
497
Daniel Mack7b6717e2010-09-02 17:13:15 +0800498 /*
499 * For devices with more than one control interface, we assume the
500 * first contains the audio controls. We might need a more specific
501 * check here in the future.
502 */
503 if (!chip->ctrl_intf)
504 chip->ctrl_intf = alts;
Daniel Mack79f920f2010-05-31 14:51:31 +0200505
Daniel Mack5875c2c2011-05-25 09:08:59 +0200506 chip->txfr_quirk = 0;
507 err = 1; /* continue */
508 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
509 /* need some special handlings */
510 if ((err = snd_usb_create_quirk(chip, intf, &usb_audio_driver, quirk)) < 0)
511 goto __error;
512 }
513
Daniel Macke5779992010-03-04 19:46:13 +0100514 if (err > 0) {
515 /* create normal USB audio interfaces */
516 if (snd_usb_create_streams(chip, ifnum) < 0 ||
517 snd_usb_create_mixer(chip, ifnum, ignore_ctl_error) < 0) {
518 goto __error;
519 }
520 }
521
522 /* we are allowed to call snd_card_register() many times */
523 if (snd_card_register(chip->card) < 0) {
524 goto __error;
525 }
526
527 usb_chip[chip->index] = chip;
528 chip->num_interfaces++;
Oliver Neukum88a85162011-03-11 14:51:12 +0100529 chip->probing = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100530 mutex_unlock(&register_mutex);
531 return chip;
532
533 __error:
534 if (chip && !chip->num_interfaces)
535 snd_card_free(chip->card);
536 mutex_unlock(&register_mutex);
537 __err_val:
538 return NULL;
539}
540
541/*
542 * we need to take care of counter, since disconnection can be called also
543 * many times as well as usb_audio_probe().
544 */
Pavel Roskin81b85b62011-07-06 11:20:13 -0400545static void snd_usb_audio_disconnect(struct usb_device *dev,
546 struct snd_usb_audio *chip)
Daniel Macke5779992010-03-04 19:46:13 +0100547{
Daniel Macke5779992010-03-04 19:46:13 +0100548 struct snd_card *card;
549 struct list_head *p;
550
Pavel Roskin81b85b62011-07-06 11:20:13 -0400551 if (chip == (void *)-1L)
Daniel Macke5779992010-03-04 19:46:13 +0100552 return;
553
Daniel Macke5779992010-03-04 19:46:13 +0100554 card = chip->card;
555 mutex_lock(&register_mutex);
Takashi Iwai382225e2011-02-22 10:21:18 +0100556 mutex_lock(&chip->shutdown_mutex);
Daniel Macke5779992010-03-04 19:46:13 +0100557 chip->shutdown = 1;
558 chip->num_interfaces--;
559 if (chip->num_interfaces <= 0) {
560 snd_card_disconnect(card);
561 /* release the pcm resources */
562 list_for_each(p, &chip->pcm_list) {
563 snd_usb_stream_disconnect(p);
564 }
565 /* release the midi resources */
566 list_for_each(p, &chip->midi_list) {
567 snd_usbmidi_disconnect(p);
568 }
569 /* release mixer resources */
570 list_for_each(p, &chip->mixer_list) {
571 snd_usb_mixer_disconnect(p);
572 }
573 usb_chip[chip->index] = NULL;
Takashi Iwai382225e2011-02-22 10:21:18 +0100574 mutex_unlock(&chip->shutdown_mutex);
Daniel Macke5779992010-03-04 19:46:13 +0100575 mutex_unlock(&register_mutex);
576 snd_card_free_when_closed(card);
577 } else {
Takashi Iwai382225e2011-02-22 10:21:18 +0100578 mutex_unlock(&chip->shutdown_mutex);
Daniel Macke5779992010-03-04 19:46:13 +0100579 mutex_unlock(&register_mutex);
580 }
581}
582
583/*
584 * new 2.5 USB kernel API
585 */
586static int usb_audio_probe(struct usb_interface *intf,
587 const struct usb_device_id *id)
588{
Pavel Roskin81b85b62011-07-06 11:20:13 -0400589 struct snd_usb_audio *chip;
Daniel Macke5779992010-03-04 19:46:13 +0100590 chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
591 if (chip) {
592 usb_set_intfdata(intf, chip);
593 return 0;
594 } else
595 return -EIO;
596}
597
598static void usb_audio_disconnect(struct usb_interface *intf)
599{
600 snd_usb_audio_disconnect(interface_to_usbdev(intf),
601 usb_get_intfdata(intf));
602}
603
604#ifdef CONFIG_PM
Oliver Neukum88a85162011-03-11 14:51:12 +0100605
606int snd_usb_autoresume(struct snd_usb_audio *chip)
607{
608 int err = -ENODEV;
609
610 if (!chip->shutdown && !chip->probing)
611 err = usb_autopm_get_interface(chip->pm_intf);
612
613 return err;
614}
615
616void snd_usb_autosuspend(struct snd_usb_audio *chip)
617{
618 if (!chip->shutdown && !chip->probing)
619 usb_autopm_put_interface(chip->pm_intf);
620}
621
Daniel Macke5779992010-03-04 19:46:13 +0100622static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
623{
624 struct snd_usb_audio *chip = usb_get_intfdata(intf);
625 struct list_head *p;
626 struct snd_usb_stream *as;
Oliver Neukumedf7de32011-03-11 13:19:43 +0100627 struct usb_mixer_interface *mixer;
Daniel Macke5779992010-03-04 19:46:13 +0100628
629 if (chip == (void *)-1L)
630 return 0;
631
Oliver Neukum88a85162011-03-11 14:51:12 +0100632 if (!(message.event & PM_EVENT_AUTO)) {
633 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
634 if (!chip->num_suspended_intf++) {
635 list_for_each(p, &chip->pcm_list) {
636 as = list_entry(p, struct snd_usb_stream, list);
637 snd_pcm_suspend_all(as->pcm);
638 }
639 }
640 } else {
641 /*
642 * otherwise we keep the rest of the system in the dark
643 * to keep this transparent
644 */
645 if (!chip->num_suspended_intf++)
646 chip->autosuspended = 1;
Daniel Macke5779992010-03-04 19:46:13 +0100647 }
648
Oliver Neukum88a85162011-03-11 14:51:12 +0100649 list_for_each_entry(mixer, &chip->mixer_list, list)
650 snd_usb_mixer_inactivate(mixer);
651
Daniel Macke5779992010-03-04 19:46:13 +0100652 return 0;
653}
654
655static int usb_audio_resume(struct usb_interface *intf)
656{
657 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumedf7de32011-03-11 13:19:43 +0100658 struct usb_mixer_interface *mixer;
Oliver Neukum88a85162011-03-11 14:51:12 +0100659 int err = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100660
661 if (chip == (void *)-1L)
662 return 0;
663 if (--chip->num_suspended_intf)
664 return 0;
665 /*
666 * ALSA leaves material resumption to user space
Oliver Neukumedf7de32011-03-11 13:19:43 +0100667 * we just notify and restart the mixers
Daniel Macke5779992010-03-04 19:46:13 +0100668 */
Oliver Neukum88a85162011-03-11 14:51:12 +0100669 list_for_each_entry(mixer, &chip->mixer_list, list) {
670 err = snd_usb_mixer_activate(mixer);
671 if (err < 0)
672 goto err_out;
673 }
Daniel Macke5779992010-03-04 19:46:13 +0100674
Oliver Neukum88a85162011-03-11 14:51:12 +0100675 if (!chip->autosuspended)
676 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
677 chip->autosuspended = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100678
Oliver Neukum88a85162011-03-11 14:51:12 +0100679err_out:
680 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100681}
Randy Dunlap6407d472010-03-22 08:55:35 -0700682#else
683#define usb_audio_suspend NULL
684#define usb_audio_resume NULL
Daniel Macke5779992010-03-04 19:46:13 +0100685#endif /* CONFIG_PM */
686
687static struct usb_device_id usb_audio_ids [] = {
688#include "quirks-table.h"
689 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
690 .bInterfaceClass = USB_CLASS_AUDIO,
691 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL },
692 { } /* Terminating entry */
693};
694
695MODULE_DEVICE_TABLE (usb, usb_audio_ids);
696
697/*
698 * entry point for linux usb interface
699 */
700
701static struct usb_driver usb_audio_driver = {
702 .name = "snd-usb-audio",
703 .probe = usb_audio_probe,
704 .disconnect = usb_audio_disconnect,
705 .suspend = usb_audio_suspend,
706 .resume = usb_audio_resume,
707 .id_table = usb_audio_ids,
Oliver Neukum88a85162011-03-11 14:51:12 +0100708 .supports_autosuspend = 1,
Daniel Macke5779992010-03-04 19:46:13 +0100709};
710
711static int __init snd_usb_audio_init(void)
712{
713 if (nrpacks < 1 || nrpacks > MAX_PACKS) {
714 printk(KERN_WARNING "invalid nrpacks value.\n");
715 return -EINVAL;
716 }
717 return usb_register(&usb_audio_driver);
718}
719
720static void __exit snd_usb_audio_cleanup(void)
721{
722 usb_deregister(&usb_audio_driver);
723}
724
725module_init(snd_usb_audio_init);
726module_exit(snd_usb_audio_cleanup);