ALSA: usb-audio: Fix bogus error return in snd_usb_create_stream()
[pandora-kernel.git] / sound / usb / card.c
1 /*
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>
44 #include <linux/ctype.h>
45 #include <linux/usb.h>
46 #include <linux/moduleparam.h>
47 #include <linux/mutex.h>
48 #include <linux/usb/audio.h>
49 #include <linux/usb/audio-v2.h>
50 #include <linux/module.h>
51
52 #include <sound/control.h>
53 #include <sound/core.h>
54 #include <sound/info.h>
55 #include <sound/pcm.h>
56 #include <sound/pcm_params.h>
57 #include <sound/initval.h>
58
59 #include "usbaudio.h"
60 #include "card.h"
61 #include "midi.h"
62 #include "mixer.h"
63 #include "proc.h"
64 #include "quirks.h"
65 #include "endpoint.h"
66 #include "helper.h"
67 #include "debug.h"
68 #include "pcm.h"
69 #include "format.h"
70 #include "power.h"
71 #include "stream.h"
72
73 MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
74 MODULE_DESCRIPTION("USB Audio");
75 MODULE_LICENSE("GPL");
76 MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
77
78
79 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;      /* Index 0-MAX */
80 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;       /* ID for this card */
81 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
82 /* Vendor/product IDs for this card */
83 static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
84 static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
85 static int nrpacks = 8;         /* max. number of packets per urb */
86 static int async_unlink = 1;
87 static int device_setup[SNDRV_CARDS]; /* device parameter for this card */
88 static int ignore_ctl_error;
89
90 module_param_array(index, int, NULL, 0444);
91 MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
92 module_param_array(id, charp, NULL, 0444);
93 MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
94 module_param_array(enable, bool, NULL, 0444);
95 MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
96 module_param_array(vid, int, NULL, 0444);
97 MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
98 module_param_array(pid, int, NULL, 0444);
99 MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
100 module_param(nrpacks, int, 0644);
101 MODULE_PARM_DESC(nrpacks, "Max. number of packets per URB.");
102 module_param(async_unlink, bool, 0444);
103 MODULE_PARM_DESC(async_unlink, "Use async unlink mode.");
104 module_param_array(device_setup, int, NULL, 0444);
105 MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
106 module_param(ignore_ctl_error, bool, 0444);
107 MODULE_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
115 static DEFINE_MUTEX(register_mutex);
116 static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
117 static struct usb_driver usb_audio_driver;
118
119 /*
120  * disconnect streams
121  * called from snd_usb_audio_disconnect()
122  */
123 static 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)
133                         continue;
134                 snd_usb_release_substream_urbs(subs, 1);
135                 subs->interface = -1;
136         }
137 }
138
139 static 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         alts = &iface->altsetting[0];
153         altsd = get_iface_desc(alts);
154
155         /*
156          * Android with both accessory and audio interfaces enabled gets the
157          * interface numbers wrong.
158          */
159         if ((chip->usb_id == USB_ID(0x18d1, 0x2d04) ||
160              chip->usb_id == USB_ID(0x18d1, 0x2d05)) &&
161             interface == 0 &&
162             altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC &&
163             altsd->bInterfaceSubClass == USB_SUBCLASS_VENDOR_SPEC) {
164                 interface = 2;
165                 iface = usb_ifnum_to_if(dev, interface);
166                 if (!iface)
167                         return -EINVAL;
168                 alts = &iface->altsetting[0];
169                 altsd = get_iface_desc(alts);
170         }
171
172         if (usb_interface_claimed(iface)) {
173                 snd_printdd(KERN_INFO "%d:%d:%d: skipping, already claimed\n",
174                                                 dev->devnum, ctrlif, interface);
175                 return -EINVAL;
176         }
177
178         if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
179              altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
180             altsd->bInterfaceSubClass == USB_SUBCLASS_MIDISTREAMING) {
181                 int err = snd_usbmidi_create(chip->card, iface,
182                                              &chip->midi_list, NULL);
183                 if (err < 0) {
184                         snd_printk(KERN_ERR "%d:%u:%d: cannot create sequencer device\n",
185                                                 dev->devnum, ctrlif, interface);
186                         return -EINVAL;
187                 }
188                 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
189
190                 return 0;
191         }
192
193         if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
194              altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
195             altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING) {
196                 snd_printdd(KERN_ERR "%d:%u:%d: skipping non-supported interface %d\n",
197                                         dev->devnum, ctrlif, interface, altsd->bInterfaceClass);
198                 /* skip non-supported classes */
199                 return -EINVAL;
200         }
201
202         if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
203                 snd_printk(KERN_ERR "low speed audio streaming not supported\n");
204                 return -EINVAL;
205         }
206
207         if (! snd_usb_parse_audio_interface(chip, interface)) {
208                 usb_set_interface(dev, interface, 0); /* reset the current interface */
209                 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
210         }
211
212         return 0;
213 }
214
215 /*
216  * parse audio control descriptor and create pcm/midi streams
217  */
218 static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
219 {
220         struct usb_device *dev = chip->dev;
221         struct usb_host_interface *host_iface;
222         struct usb_interface_descriptor *altsd;
223         void *control_header;
224         int i, protocol;
225
226         /* find audiocontrol interface */
227         host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
228         control_header = snd_usb_find_csint_desc(host_iface->extra,
229                                                  host_iface->extralen,
230                                                  NULL, UAC_HEADER);
231         altsd = get_iface_desc(host_iface);
232         protocol = altsd->bInterfaceProtocol;
233
234         if (!control_header) {
235                 snd_printk(KERN_ERR "cannot find UAC_HEADER\n");
236                 return -EINVAL;
237         }
238
239         switch (protocol) {
240         default:
241                 snd_printdd(KERN_WARNING "unknown interface protocol %#02x, assuming v1\n",
242                             protocol);
243                 /* fall through */
244
245         case UAC_VERSION_1: {
246                 struct uac1_ac_header_descriptor *h1 = control_header;
247
248                 if (!h1->bInCollection) {
249                         snd_printk(KERN_INFO "skipping empty audio interface (v1)\n");
250                         return -EINVAL;
251                 }
252
253                 if (h1->bLength < sizeof(*h1) + h1->bInCollection) {
254                         snd_printk(KERN_ERR "invalid UAC_HEADER (v1)\n");
255                         return -EINVAL;
256                 }
257
258                 for (i = 0; i < h1->bInCollection; i++)
259                         snd_usb_create_stream(chip, ctrlif, h1->baInterfaceNr[i]);
260
261                 break;
262         }
263
264         case UAC_VERSION_2: {
265                 struct usb_interface_assoc_descriptor *assoc =
266                         usb_ifnum_to_if(dev, ctrlif)->intf_assoc;
267
268                 if (!assoc) {
269                         snd_printk(KERN_ERR "Audio class v2 interfaces need an interface association\n");
270                         return -EINVAL;
271                 }
272
273                 for (i = 0; i < assoc->bInterfaceCount; i++) {
274                         int intf = assoc->bFirstInterface + i;
275
276                         if (intf != ctrlif)
277                                 snd_usb_create_stream(chip, ctrlif, intf);
278                 }
279
280                 break;
281         }
282         }
283
284         return 0;
285 }
286
287 /*
288  * free the chip instance
289  *
290  * here we have to do not much, since pcm and controls are already freed
291  *
292  */
293
294 static int snd_usb_audio_free(struct snd_usb_audio *chip)
295 {
296         kfree(chip);
297         return 0;
298 }
299
300 static int snd_usb_audio_dev_free(struct snd_device *device)
301 {
302         struct snd_usb_audio *chip = device->device_data;
303         return snd_usb_audio_free(chip);
304 }
305
306 static void remove_trailing_spaces(char *str)
307 {
308         char *p;
309
310         if (!*str)
311                 return;
312         for (p = str + strlen(str) - 1; p >= str && isspace(*p); p--)
313                 *p = 0;
314 }
315
316 /*
317  * create a chip instance and set its names.
318  */
319 static int snd_usb_audio_create(struct usb_device *dev, int idx,
320                                 const struct snd_usb_audio_quirk *quirk,
321                                 struct snd_usb_audio **rchip)
322 {
323         struct snd_card *card;
324         struct snd_usb_audio *chip;
325         int err, len;
326         char component[14];
327         static struct snd_device_ops ops = {
328                 .dev_free =     snd_usb_audio_dev_free,
329         };
330
331         *rchip = NULL;
332
333         switch (snd_usb_get_speed(dev)) {
334         case USB_SPEED_LOW:
335         case USB_SPEED_FULL:
336         case USB_SPEED_HIGH:
337         case USB_SPEED_SUPER:
338                 break;
339         default:
340                 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
341                 return -ENXIO;
342         }
343
344         err = snd_card_create(index[idx], id[idx], THIS_MODULE, 0, &card);
345         if (err < 0) {
346                 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
347                 return err;
348         }
349
350         chip = kzalloc(sizeof(*chip), GFP_KERNEL);
351         if (! chip) {
352                 snd_card_free(card);
353                 return -ENOMEM;
354         }
355
356         init_rwsem(&chip->shutdown_rwsem);
357         chip->index = idx;
358         chip->dev = dev;
359         chip->card = card;
360         chip->setup = device_setup[idx];
361         chip->nrpacks = nrpacks;
362         chip->async_unlink = async_unlink;
363         chip->probing = 1;
364
365         chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
366                               le16_to_cpu(dev->descriptor.idProduct));
367         INIT_LIST_HEAD(&chip->pcm_list);
368         INIT_LIST_HEAD(&chip->midi_list);
369         INIT_LIST_HEAD(&chip->mixer_list);
370
371         if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
372                 snd_usb_audio_free(chip);
373                 snd_card_free(card);
374                 return err;
375         }
376
377         strcpy(card->driver, "USB-Audio");
378         sprintf(component, "USB%04x:%04x",
379                 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
380         snd_component_add(card, component);
381
382         /* retrieve the device string as shortname */
383         if (quirk && quirk->product_name && *quirk->product_name) {
384                 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
385         } else {
386                 if (!dev->descriptor.iProduct ||
387                     usb_string(dev, dev->descriptor.iProduct,
388                     card->shortname, sizeof(card->shortname)) <= 0) {
389                         /* no name available from anywhere, so use ID */
390                         sprintf(card->shortname, "USB Device %#04x:%#04x",
391                                 USB_ID_VENDOR(chip->usb_id),
392                                 USB_ID_PRODUCT(chip->usb_id));
393                 }
394         }
395         remove_trailing_spaces(card->shortname);
396
397         /* retrieve the vendor and device strings as longname */
398         if (quirk && quirk->vendor_name && *quirk->vendor_name) {
399                 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
400         } else {
401                 if (dev->descriptor.iManufacturer)
402                         len = usb_string(dev, dev->descriptor.iManufacturer,
403                                          card->longname, sizeof(card->longname));
404                 else
405                         len = 0;
406                 /* we don't really care if there isn't any vendor string */
407         }
408         if (len > 0) {
409                 remove_trailing_spaces(card->longname);
410                 if (*card->longname)
411                         strlcat(card->longname, " ", sizeof(card->longname));
412         }
413
414         strlcat(card->longname, card->shortname, sizeof(card->longname));
415
416         len = strlcat(card->longname, " at ", sizeof(card->longname));
417
418         if (len < sizeof(card->longname))
419                 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
420
421         switch (snd_usb_get_speed(dev)) {
422         case USB_SPEED_LOW:
423                 strlcat(card->longname, ", low speed", sizeof(card->longname));
424                 break;
425         case USB_SPEED_FULL:
426                 strlcat(card->longname, ", full speed", sizeof(card->longname));
427                 break;
428         case USB_SPEED_HIGH:
429                 strlcat(card->longname, ", high speed", sizeof(card->longname));
430                 break;
431         case USB_SPEED_SUPER:
432                 strlcat(card->longname, ", super speed", sizeof(card->longname));
433                 break;
434         default:
435                 break;
436         }
437
438         snd_usb_audio_create_proc(chip);
439
440         *rchip = chip;
441         return 0;
442 }
443
444 /*
445  * probe the active usb device
446  *
447  * note that this can be called multiple times per a device, when it
448  * includes multiple audio control interfaces.
449  *
450  * thus we check the usb device pointer and creates the card instance
451  * only at the first time.  the successive calls of this function will
452  * append the pcm interface to the corresponding card.
453  */
454 static struct snd_usb_audio *
455 snd_usb_audio_probe(struct usb_device *dev,
456                     struct usb_interface *intf,
457                     const struct usb_device_id *usb_id)
458 {
459         const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
460         int i, err;
461         struct snd_usb_audio *chip;
462         struct usb_host_interface *alts;
463         int ifnum;
464         u32 id;
465
466         alts = &intf->altsetting[0];
467         ifnum = get_iface_desc(alts)->bInterfaceNumber;
468         id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
469                     le16_to_cpu(dev->descriptor.idProduct));
470         if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
471                 goto __err_val;
472
473         if (snd_usb_apply_boot_quirk(dev, intf, quirk) < 0)
474                 goto __err_val;
475
476         /*
477          * found a config.  now register to ALSA
478          */
479
480         /* check whether it's already registered */
481         chip = NULL;
482         mutex_lock(&register_mutex);
483         for (i = 0; i < SNDRV_CARDS; i++) {
484                 if (usb_chip[i] && usb_chip[i]->dev == dev) {
485                         if (usb_chip[i]->shutdown) {
486                                 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
487                                 goto __error;
488                         }
489                         chip = usb_chip[i];
490                         chip->probing = 1;
491                         break;
492                 }
493         }
494         if (! chip) {
495                 /* it's a fresh one.
496                  * now look for an empty slot and create a new card instance
497                  */
498                 for (i = 0; i < SNDRV_CARDS; i++)
499                         if (enable[i] && ! usb_chip[i] &&
500                             (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
501                             (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
502                                 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
503                                         goto __error;
504                                 }
505                                 snd_card_set_dev(chip->card, &intf->dev);
506                                 chip->pm_intf = intf;
507                                 break;
508                         }
509                 if (!chip) {
510                         printk(KERN_ERR "no available usb audio device\n");
511                         goto __error;
512                 }
513         }
514
515         /*
516          * For devices with more than one control interface, we assume the
517          * first contains the audio controls. We might need a more specific
518          * check here in the future.
519          */
520         if (!chip->ctrl_intf)
521                 chip->ctrl_intf = alts;
522
523         chip->txfr_quirk = 0;
524         err = 1; /* continue */
525         if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
526                 /* need some special handlings */
527                 if ((err = snd_usb_create_quirk(chip, intf, &usb_audio_driver, quirk)) < 0)
528                         goto __error;
529         }
530
531         if (err > 0) {
532                 /* create normal USB audio interfaces */
533                 if (snd_usb_create_streams(chip, ifnum) < 0 ||
534                     snd_usb_create_mixer(chip, ifnum, ignore_ctl_error) < 0) {
535                         goto __error;
536                 }
537         }
538
539         /* we are allowed to call snd_card_register() many times */
540         if (snd_card_register(chip->card) < 0) {
541                 goto __error;
542         }
543
544         usb_chip[chip->index] = chip;
545         chip->num_interfaces++;
546         chip->probing = 0;
547         mutex_unlock(&register_mutex);
548         return chip;
549
550  __error:
551         if (chip) {
552                 if (!chip->num_interfaces)
553                         snd_card_free(chip->card);
554                 chip->probing = 0;
555         }
556         mutex_unlock(&register_mutex);
557  __err_val:
558         return NULL;
559 }
560
561 /*
562  * we need to take care of counter, since disconnection can be called also
563  * many times as well as usb_audio_probe().
564  */
565 static void snd_usb_audio_disconnect(struct usb_device *dev,
566                                      struct snd_usb_audio *chip)
567 {
568         struct snd_card *card;
569         struct list_head *p;
570         bool was_shutdown;
571
572         if (chip == (void *)-1L)
573                 return;
574
575         card = chip->card;
576         down_write(&chip->shutdown_rwsem);
577         was_shutdown = chip->shutdown;
578         chip->shutdown = 1;
579         up_write(&chip->shutdown_rwsem);
580
581         mutex_lock(&register_mutex);
582         if (!was_shutdown) {
583                 snd_card_disconnect(card);
584                 /* release the pcm resources */
585                 list_for_each(p, &chip->pcm_list) {
586                         snd_usb_stream_disconnect(p);
587                 }
588                 /* release the midi resources */
589                 list_for_each(p, &chip->midi_list) {
590                         snd_usbmidi_disconnect(p);
591                 }
592                 /* release mixer resources */
593                 list_for_each(p, &chip->mixer_list) {
594                         snd_usb_mixer_disconnect(p);
595                 }
596         }
597
598         chip->num_interfaces--;
599         if (chip->num_interfaces <= 0) {
600                 usb_chip[chip->index] = NULL;
601                 mutex_unlock(&register_mutex);
602                 snd_card_free_when_closed(card);
603         } else {
604                 mutex_unlock(&register_mutex);
605         }
606 }
607
608 /*
609  * new 2.5 USB kernel API
610  */
611 static int usb_audio_probe(struct usb_interface *intf,
612                            const struct usb_device_id *id)
613 {
614         struct snd_usb_audio *chip;
615         chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
616         if (chip) {
617                 usb_set_intfdata(intf, chip);
618                 return 0;
619         } else
620                 return -EIO;
621 }
622
623 static void usb_audio_disconnect(struct usb_interface *intf)
624 {
625         snd_usb_audio_disconnect(interface_to_usbdev(intf),
626                                  usb_get_intfdata(intf));
627 }
628
629 #ifdef CONFIG_PM
630
631 int snd_usb_autoresume(struct snd_usb_audio *chip)
632 {
633         int err = -ENODEV;
634
635         down_read(&chip->shutdown_rwsem);
636         if (chip->probing)
637                 err = 0;
638         else if (!chip->shutdown)
639                 err = usb_autopm_get_interface(chip->pm_intf);
640         up_read(&chip->shutdown_rwsem);
641
642         return err;
643 }
644
645 void snd_usb_autosuspend(struct snd_usb_audio *chip)
646 {
647         down_read(&chip->shutdown_rwsem);
648         if (!chip->shutdown && !chip->probing)
649                 usb_autopm_put_interface(chip->pm_intf);
650         up_read(&chip->shutdown_rwsem);
651 }
652
653 static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
654 {
655         struct snd_usb_audio *chip = usb_get_intfdata(intf);
656         struct list_head *p;
657         struct snd_usb_stream *as;
658         struct usb_mixer_interface *mixer;
659
660         if (chip == (void *)-1L)
661                 return 0;
662
663         if (!PMSG_IS_AUTO(message)) {
664                 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
665                 if (!chip->num_suspended_intf++) {
666                         list_for_each(p, &chip->pcm_list) {
667                                 as = list_entry(p, struct snd_usb_stream, list);
668                                 snd_pcm_suspend_all(as->pcm);
669                         }
670                 }
671         } else {
672                 /*
673                  * otherwise we keep the rest of the system in the dark
674                  * to keep this transparent
675                  */
676                 if (!chip->num_suspended_intf++)
677                         chip->autosuspended = 1;
678         }
679
680         list_for_each_entry(mixer, &chip->mixer_list, list)
681                 snd_usb_mixer_inactivate(mixer);
682
683         return 0;
684 }
685
686 static int usb_audio_resume(struct usb_interface *intf)
687 {
688         struct snd_usb_audio *chip = usb_get_intfdata(intf);
689         struct usb_mixer_interface *mixer;
690         int err = 0;
691
692         if (chip == (void *)-1L)
693                 return 0;
694         if (--chip->num_suspended_intf)
695                 return 0;
696         /*
697          * ALSA leaves material resumption to user space
698          * we just notify and restart the mixers
699          */
700         list_for_each_entry(mixer, &chip->mixer_list, list) {
701                 err = snd_usb_mixer_activate(mixer);
702                 if (err < 0)
703                         goto err_out;
704         }
705
706         if (!chip->autosuspended)
707                 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
708         chip->autosuspended = 0;
709
710 err_out:
711         return err;
712 }
713 #else
714 #define usb_audio_suspend       NULL
715 #define usb_audio_resume        NULL
716 #endif          /* CONFIG_PM */
717
718 static struct usb_device_id usb_audio_ids [] = {
719 #include "quirks-table.h"
720     { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
721       .bInterfaceClass = USB_CLASS_AUDIO,
722       .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL },
723     { }                                         /* Terminating entry */
724 };
725
726 MODULE_DEVICE_TABLE (usb, usb_audio_ids);
727
728 /*
729  * entry point for linux usb interface
730  */
731
732 static struct usb_driver usb_audio_driver = {
733         .name =         "snd-usb-audio",
734         .probe =        usb_audio_probe,
735         .disconnect =   usb_audio_disconnect,
736         .suspend =      usb_audio_suspend,
737         .resume =       usb_audio_resume,
738         .id_table =     usb_audio_ids,
739         .supports_autosuspend = 1,
740 };
741
742 static int __init snd_usb_audio_init(void)
743 {
744         if (nrpacks < 1 || nrpacks > MAX_PACKS) {
745                 printk(KERN_WARNING "invalid nrpacks value.\n");
746                 return -EINVAL;
747         }
748         return usb_register(&usb_audio_driver);
749 }
750
751 static void __exit snd_usb_audio_cleanup(void)
752 {
753         usb_deregister(&usb_audio_driver);
754 }
755
756 module_init(snd_usb_audio_init);
757 module_exit(snd_usb_audio_cleanup);