tcp: enforce tcp_min_snd_mss in tcp_mtu_probing()
[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         int rest_bytes;
226
227         /* find audiocontrol interface */
228         host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
229         control_header = snd_usb_find_csint_desc(host_iface->extra,
230                                                  host_iface->extralen,
231                                                  NULL, UAC_HEADER);
232         altsd = get_iface_desc(host_iface);
233         protocol = altsd->bInterfaceProtocol;
234
235         if (!control_header) {
236                 snd_printk(KERN_ERR "cannot find UAC_HEADER\n");
237                 return -EINVAL;
238         }
239
240         rest_bytes = (void *)(host_iface->extra + host_iface->extralen) -
241                 control_header;
242
243         /* just to be sure -- this shouldn't hit at all */
244         if (rest_bytes <= 0) {
245                 dev_err(&dev->dev, "invalid control header\n");
246                 return -EINVAL;
247         }
248
249         switch (protocol) {
250         default:
251                 snd_printdd(KERN_WARNING "unknown interface protocol %#02x, assuming v1\n",
252                             protocol);
253                 /* fall through */
254
255         case UAC_VERSION_1: {
256                 struct uac1_ac_header_descriptor *h1 = control_header;
257
258                 if (rest_bytes < sizeof(*h1)) {
259                         dev_err(&dev->dev, "too short v1 buffer descriptor\n");
260                         return -EINVAL;
261                 }
262
263                 if (!h1->bInCollection) {
264                         snd_printk(KERN_INFO "skipping empty audio interface (v1)\n");
265                         return -EINVAL;
266                 }
267
268                 if (rest_bytes < h1->bLength) {
269                         dev_err(&dev->dev, "invalid buffer length (v1)\n");
270                         return -EINVAL;
271                 }
272
273                 if (h1->bLength < sizeof(*h1) + h1->bInCollection) {
274                         snd_printk(KERN_ERR "invalid UAC_HEADER (v1)\n");
275                         return -EINVAL;
276                 }
277
278                 for (i = 0; i < h1->bInCollection; i++)
279                         snd_usb_create_stream(chip, ctrlif, h1->baInterfaceNr[i]);
280
281                 break;
282         }
283
284         case UAC_VERSION_2: {
285                 struct usb_interface_assoc_descriptor *assoc =
286                         usb_ifnum_to_if(dev, ctrlif)->intf_assoc;
287
288                 if (!assoc) {
289                         snd_printk(KERN_ERR "Audio class v2 interfaces need an interface association\n");
290                         return -EINVAL;
291                 }
292
293                 for (i = 0; i < assoc->bInterfaceCount; i++) {
294                         int intf = assoc->bFirstInterface + i;
295
296                         if (intf != ctrlif)
297                                 snd_usb_create_stream(chip, ctrlif, intf);
298                 }
299
300                 break;
301         }
302         }
303
304         return 0;
305 }
306
307 /*
308  * free the chip instance
309  *
310  * here we have to do not much, since pcm and controls are already freed
311  *
312  */
313
314 static int snd_usb_audio_free(struct snd_usb_audio *chip)
315 {
316         kfree(chip);
317         return 0;
318 }
319
320 static int snd_usb_audio_dev_free(struct snd_device *device)
321 {
322         struct snd_usb_audio *chip = device->device_data;
323         return snd_usb_audio_free(chip);
324 }
325
326 static void remove_trailing_spaces(char *str)
327 {
328         char *p;
329
330         if (!*str)
331                 return;
332         for (p = str + strlen(str) - 1; p >= str && isspace(*p); p--)
333                 *p = 0;
334 }
335
336 /*
337  * create a chip instance and set its names.
338  */
339 static int snd_usb_audio_create(struct usb_device *dev, int idx,
340                                 const struct snd_usb_audio_quirk *quirk,
341                                 struct snd_usb_audio **rchip)
342 {
343         struct snd_card *card;
344         struct snd_usb_audio *chip;
345         int err, len;
346         char component[14];
347         static struct snd_device_ops ops = {
348                 .dev_free =     snd_usb_audio_dev_free,
349         };
350
351         *rchip = NULL;
352
353         switch (snd_usb_get_speed(dev)) {
354         case USB_SPEED_LOW:
355         case USB_SPEED_FULL:
356         case USB_SPEED_HIGH:
357         case USB_SPEED_SUPER:
358                 break;
359         default:
360                 snd_printk(KERN_ERR "unknown device speed %d\n", snd_usb_get_speed(dev));
361                 return -ENXIO;
362         }
363
364         err = snd_card_create(index[idx], id[idx], THIS_MODULE, 0, &card);
365         if (err < 0) {
366                 snd_printk(KERN_ERR "cannot create card instance %d\n", idx);
367                 return err;
368         }
369
370         chip = kzalloc(sizeof(*chip), GFP_KERNEL);
371         if (! chip) {
372                 snd_card_free(card);
373                 return -ENOMEM;
374         }
375
376         init_rwsem(&chip->shutdown_rwsem);
377         chip->index = idx;
378         chip->dev = dev;
379         chip->card = card;
380         chip->setup = device_setup[idx];
381         chip->nrpacks = nrpacks;
382         chip->async_unlink = async_unlink;
383         chip->probing = 1;
384
385         chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
386                               le16_to_cpu(dev->descriptor.idProduct));
387         INIT_LIST_HEAD(&chip->pcm_list);
388         INIT_LIST_HEAD(&chip->midi_list);
389         INIT_LIST_HEAD(&chip->mixer_list);
390
391         if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
392                 snd_usb_audio_free(chip);
393                 snd_card_free(card);
394                 return err;
395         }
396
397         strcpy(card->driver, "USB-Audio");
398         sprintf(component, "USB%04x:%04x",
399                 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
400         snd_component_add(card, component);
401
402         /* retrieve the device string as shortname */
403         if (quirk && quirk->product_name && *quirk->product_name) {
404                 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
405         } else {
406                 if (!dev->descriptor.iProduct ||
407                     usb_string(dev, dev->descriptor.iProduct,
408                     card->shortname, sizeof(card->shortname)) <= 0) {
409                         /* no name available from anywhere, so use ID */
410                         sprintf(card->shortname, "USB Device %#04x:%#04x",
411                                 USB_ID_VENDOR(chip->usb_id),
412                                 USB_ID_PRODUCT(chip->usb_id));
413                 }
414         }
415         remove_trailing_spaces(card->shortname);
416
417         /* retrieve the vendor and device strings as longname */
418         if (quirk && quirk->vendor_name && *quirk->vendor_name) {
419                 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
420         } else {
421                 if (dev->descriptor.iManufacturer)
422                         len = usb_string(dev, dev->descriptor.iManufacturer,
423                                          card->longname, sizeof(card->longname));
424                 else
425                         len = 0;
426                 /* we don't really care if there isn't any vendor string */
427         }
428         if (len > 0) {
429                 remove_trailing_spaces(card->longname);
430                 if (*card->longname)
431                         strlcat(card->longname, " ", sizeof(card->longname));
432         }
433
434         strlcat(card->longname, card->shortname, sizeof(card->longname));
435
436         len = strlcat(card->longname, " at ", sizeof(card->longname));
437
438         if (len < sizeof(card->longname))
439                 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
440
441         switch (snd_usb_get_speed(dev)) {
442         case USB_SPEED_LOW:
443                 strlcat(card->longname, ", low speed", sizeof(card->longname));
444                 break;
445         case USB_SPEED_FULL:
446                 strlcat(card->longname, ", full speed", sizeof(card->longname));
447                 break;
448         case USB_SPEED_HIGH:
449                 strlcat(card->longname, ", high speed", sizeof(card->longname));
450                 break;
451         case USB_SPEED_SUPER:
452                 strlcat(card->longname, ", super speed", sizeof(card->longname));
453                 break;
454         default:
455                 break;
456         }
457
458         snd_usb_audio_create_proc(chip);
459
460         *rchip = chip;
461         return 0;
462 }
463
464 /*
465  * probe the active usb device
466  *
467  * note that this can be called multiple times per a device, when it
468  * includes multiple audio control interfaces.
469  *
470  * thus we check the usb device pointer and creates the card instance
471  * only at the first time.  the successive calls of this function will
472  * append the pcm interface to the corresponding card.
473  */
474 static struct snd_usb_audio *
475 snd_usb_audio_probe(struct usb_device *dev,
476                     struct usb_interface *intf,
477                     const struct usb_device_id *usb_id)
478 {
479         const struct snd_usb_audio_quirk *quirk = (const struct snd_usb_audio_quirk *)usb_id->driver_info;
480         int i, err;
481         struct snd_usb_audio *chip;
482         struct usb_host_interface *alts;
483         int ifnum;
484         u32 id;
485
486         alts = &intf->altsetting[0];
487         ifnum = get_iface_desc(alts)->bInterfaceNumber;
488         id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
489                     le16_to_cpu(dev->descriptor.idProduct));
490         if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
491                 goto __err_val;
492
493         if (snd_usb_apply_boot_quirk(dev, intf, quirk) < 0)
494                 goto __err_val;
495
496         /*
497          * found a config.  now register to ALSA
498          */
499
500         /* check whether it's already registered */
501         chip = NULL;
502         mutex_lock(&register_mutex);
503         for (i = 0; i < SNDRV_CARDS; i++) {
504                 if (usb_chip[i] && usb_chip[i]->dev == dev) {
505                         if (usb_chip[i]->shutdown) {
506                                 snd_printk(KERN_ERR "USB device is in the shutdown state, cannot create a card instance\n");
507                                 goto __error;
508                         }
509                         chip = usb_chip[i];
510                         chip->probing = 1;
511                         break;
512                 }
513         }
514         if (! chip) {
515                 /* it's a fresh one.
516                  * now look for an empty slot and create a new card instance
517                  */
518                 for (i = 0; i < SNDRV_CARDS; i++)
519                         if (enable[i] && ! usb_chip[i] &&
520                             (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
521                             (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
522                                 if (snd_usb_audio_create(dev, i, quirk, &chip) < 0) {
523                                         goto __error;
524                                 }
525                                 snd_card_set_dev(chip->card, &intf->dev);
526                                 chip->pm_intf = intf;
527                                 break;
528                         }
529                 if (!chip) {
530                         printk(KERN_ERR "no available usb audio device\n");
531                         goto __error;
532                 }
533         }
534
535         /*
536          * For devices with more than one control interface, we assume the
537          * first contains the audio controls. We might need a more specific
538          * check here in the future.
539          */
540         if (!chip->ctrl_intf)
541                 chip->ctrl_intf = alts;
542
543         chip->txfr_quirk = 0;
544         err = 1; /* continue */
545         if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
546                 /* need some special handlings */
547                 if ((err = snd_usb_create_quirk(chip, intf, &usb_audio_driver, quirk)) < 0)
548                         goto __error;
549         }
550
551         if (err > 0) {
552                 /* create normal USB audio interfaces */
553                 if (snd_usb_create_streams(chip, ifnum) < 0 ||
554                     snd_usb_create_mixer(chip, ifnum, ignore_ctl_error) < 0) {
555                         goto __error;
556                 }
557         }
558
559         /* we are allowed to call snd_card_register() many times */
560         if (snd_card_register(chip->card) < 0) {
561                 goto __error;
562         }
563
564         usb_chip[chip->index] = chip;
565         chip->num_interfaces++;
566         chip->probing = 0;
567         mutex_unlock(&register_mutex);
568         return chip;
569
570  __error:
571         if (chip) {
572                 if (!chip->num_interfaces)
573                         snd_card_free(chip->card);
574                 chip->probing = 0;
575         }
576         mutex_unlock(&register_mutex);
577  __err_val:
578         return NULL;
579 }
580
581 /*
582  * we need to take care of counter, since disconnection can be called also
583  * many times as well as usb_audio_probe().
584  */
585 static void snd_usb_audio_disconnect(struct usb_device *dev,
586                                      struct snd_usb_audio *chip)
587 {
588         struct snd_card *card;
589         struct list_head *p;
590         bool was_shutdown;
591
592         if (chip == (void *)-1L)
593                 return;
594
595         card = chip->card;
596         down_write(&chip->shutdown_rwsem);
597         was_shutdown = chip->shutdown;
598         chip->shutdown = 1;
599         up_write(&chip->shutdown_rwsem);
600
601         mutex_lock(&register_mutex);
602         if (!was_shutdown) {
603                 snd_card_disconnect(card);
604                 /* release the pcm resources */
605                 list_for_each(p, &chip->pcm_list) {
606                         snd_usb_stream_disconnect(p);
607                 }
608                 /* release the midi resources */
609                 list_for_each(p, &chip->midi_list) {
610                         snd_usbmidi_disconnect(p);
611                 }
612                 /* release mixer resources */
613                 list_for_each(p, &chip->mixer_list) {
614                         snd_usb_mixer_disconnect(p);
615                 }
616         }
617
618         chip->num_interfaces--;
619         if (chip->num_interfaces <= 0) {
620                 usb_chip[chip->index] = NULL;
621                 mutex_unlock(&register_mutex);
622                 snd_card_free_when_closed(card);
623         } else {
624                 mutex_unlock(&register_mutex);
625         }
626 }
627
628 /*
629  * new 2.5 USB kernel API
630  */
631 static int usb_audio_probe(struct usb_interface *intf,
632                            const struct usb_device_id *id)
633 {
634         struct snd_usb_audio *chip;
635         chip = snd_usb_audio_probe(interface_to_usbdev(intf), intf, id);
636         if (chip) {
637                 usb_set_intfdata(intf, chip);
638                 return 0;
639         } else
640                 return -EIO;
641 }
642
643 static void usb_audio_disconnect(struct usb_interface *intf)
644 {
645         snd_usb_audio_disconnect(interface_to_usbdev(intf),
646                                  usb_get_intfdata(intf));
647 }
648
649 #ifdef CONFIG_PM
650
651 int snd_usb_autoresume(struct snd_usb_audio *chip)
652 {
653         int err = -ENODEV;
654
655         down_read(&chip->shutdown_rwsem);
656         if (chip->probing)
657                 err = 0;
658         else if (!chip->shutdown)
659                 err = usb_autopm_get_interface(chip->pm_intf);
660         up_read(&chip->shutdown_rwsem);
661
662         return err;
663 }
664
665 void snd_usb_autosuspend(struct snd_usb_audio *chip)
666 {
667         down_read(&chip->shutdown_rwsem);
668         if (!chip->shutdown && !chip->probing)
669                 usb_autopm_put_interface(chip->pm_intf);
670         up_read(&chip->shutdown_rwsem);
671 }
672
673 static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
674 {
675         struct snd_usb_audio *chip = usb_get_intfdata(intf);
676         struct list_head *p;
677         struct snd_usb_stream *as;
678         struct usb_mixer_interface *mixer;
679
680         if (chip == (void *)-1L)
681                 return 0;
682
683         if (!PMSG_IS_AUTO(message)) {
684                 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
685                 if (!chip->num_suspended_intf++) {
686                         list_for_each(p, &chip->pcm_list) {
687                                 as = list_entry(p, struct snd_usb_stream, list);
688                                 snd_pcm_suspend_all(as->pcm);
689                         }
690                 }
691         } else {
692                 /*
693                  * otherwise we keep the rest of the system in the dark
694                  * to keep this transparent
695                  */
696                 if (!chip->num_suspended_intf++)
697                         chip->autosuspended = 1;
698         }
699
700         list_for_each_entry(mixer, &chip->mixer_list, list)
701                 snd_usb_mixer_inactivate(mixer);
702
703         return 0;
704 }
705
706 static int usb_audio_resume(struct usb_interface *intf)
707 {
708         struct snd_usb_audio *chip = usb_get_intfdata(intf);
709         struct usb_mixer_interface *mixer;
710         int err = 0;
711
712         if (chip == (void *)-1L)
713                 return 0;
714         if (--chip->num_suspended_intf)
715                 return 0;
716         /*
717          * ALSA leaves material resumption to user space
718          * we just notify and restart the mixers
719          */
720         list_for_each_entry(mixer, &chip->mixer_list, list) {
721                 err = snd_usb_mixer_activate(mixer);
722                 if (err < 0)
723                         goto err_out;
724         }
725
726         if (!chip->autosuspended)
727                 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
728         chip->autosuspended = 0;
729
730 err_out:
731         return err;
732 }
733 #else
734 #define usb_audio_suspend       NULL
735 #define usb_audio_resume        NULL
736 #endif          /* CONFIG_PM */
737
738 static struct usb_device_id usb_audio_ids [] = {
739 #include "quirks-table.h"
740     { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
741       .bInterfaceClass = USB_CLASS_AUDIO,
742       .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL },
743     { }                                         /* Terminating entry */
744 };
745
746 MODULE_DEVICE_TABLE (usb, usb_audio_ids);
747
748 /*
749  * entry point for linux usb interface
750  */
751
752 static struct usb_driver usb_audio_driver = {
753         .name =         "snd-usb-audio",
754         .probe =        usb_audio_probe,
755         .disconnect =   usb_audio_disconnect,
756         .suspend =      usb_audio_suspend,
757         .resume =       usb_audio_resume,
758         .id_table =     usb_audio_ids,
759         .supports_autosuspend = 1,
760 };
761
762 static int __init snd_usb_audio_init(void)
763 {
764         if (nrpacks < 1 || nrpacks > MAX_PACKS) {
765                 printk(KERN_WARNING "invalid nrpacks value.\n");
766                 return -EINVAL;
767         }
768         return usb_register(&usb_audio_driver);
769 }
770
771 static void __exit snd_usb_audio_cleanup(void)
772 {
773         usb_deregister(&usb_audio_driver);
774 }
775
776 module_init(snd_usb_audio_init);
777 module_exit(snd_usb_audio_cleanup);