blob: a87a5267c2faf8a8926167c46f571e3a2239354d [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 *
Daniel Macke5779992010-03-04 19:46:13 +010028 * - the linked URBs would be preferred but not used so far because of
29 * the instability of unlinking.
30 * - type II is not supported properly. there is no device which supports
31 * this type *correctly*. SB extigy looks as if it supports, but it's
32 * indeed an AC3 stream packed in SPDIF frames (i.e. no real AC3 stream).
33 */
34
35
36#include <linux/bitops.h>
37#include <linux/init.h>
38#include <linux/list.h>
39#include <linux/slab.h>
40#include <linux/string.h>
Takashi Iwai3ffc1222011-03-21 12:00:00 +010041#include <linux/ctype.h>
Daniel Macke5779992010-03-04 19:46:13 +010042#include <linux/usb.h>
43#include <linux/moduleparam.h>
44#include <linux/mutex.h>
45#include <linux/usb/audio.h>
Daniel Mack7e847892010-03-11 21:13:20 +010046#include <linux/usb/audio-v2.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040047#include <linux/module.h>
Ajay Agarwalabed8d42017-02-07 16:40:09 +053048#include <linux/usb/audio-v3.h>
Daniel Macke5779992010-03-04 19:46:13 +010049
Daniel Mack9e386582011-05-25 09:09:01 +020050#include <sound/control.h>
Daniel Macke5779992010-03-04 19:46:13 +010051#include <sound/core.h>
52#include <sound/info.h>
53#include <sound/pcm.h>
54#include <sound/pcm_params.h>
55#include <sound/initval.h>
56
57#include "usbaudio.h"
58#include "card.h"
59#include "midi.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010060#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010061#include "proc.h"
62#include "quirks.h"
63#include "endpoint.h"
64#include "helper.h"
65#include "debug.h"
66#include "pcm.h"
Daniel Macke5779992010-03-04 19:46:13 +010067#include "format.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010068#include "power.h"
Daniel Macke8e8bab2011-09-12 18:54:12 +020069#include "stream.h"
Daniel Macke5779992010-03-04 19:46:13 +010070
71MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
72MODULE_DESCRIPTION("USB Audio");
73MODULE_LICENSE("GPL");
74MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
75
76
77static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
78static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103079static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
Daniel Macke5779992010-03-04 19:46:13 +010080/* Vendor/product IDs for this card */
81static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
82static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
Daniel Macke5779992010-03-04 19:46:13 +010083static int device_setup[SNDRV_CARDS]; /* device parameter for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103084static bool ignore_ctl_error;
Eldad Zackef02e292013-04-03 23:18:56 +020085static bool autoclock = true;
Takashi Iwaie2703362016-01-11 14:39:12 +010086static char *quirk_alias[SNDRV_CARDS];
Daniel Macke5779992010-03-04 19:46:13 +010087
88module_param_array(index, int, NULL, 0444);
89MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
90module_param_array(id, charp, NULL, 0444);
91MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
92module_param_array(enable, bool, NULL, 0444);
93MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
94module_param_array(vid, int, NULL, 0444);
95MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
96module_param_array(pid, int, NULL, 0444);
97MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
Daniel Macke5779992010-03-04 19:46:13 +010098module_param_array(device_setup, int, NULL, 0444);
99MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
100module_param(ignore_ctl_error, bool, 0444);
101MODULE_PARM_DESC(ignore_ctl_error,
102 "Ignore errors from USB controller for mixer interfaces.");
Eldad Zackef02e292013-04-03 23:18:56 +0200103module_param(autoclock, bool, 0444);
104MODULE_PARM_DESC(autoclock, "Enable auto-clock selection for UAC2 devices (default: yes).");
Takashi Iwaie2703362016-01-11 14:39:12 +0100105module_param_array(quirk_alias, charp, NULL, 0444);
106MODULE_PARM_DESC(quirk_alias, "Quirk aliases, e.g. 0123abcd:5678beef.");
Daniel Macke5779992010-03-04 19:46:13 +0100107
108/*
109 * we keep the snd_usb_audio_t instances by ourselves for merging
110 * the all interfaces on the same card as one sound device.
111 */
112
113static DEFINE_MUTEX(register_mutex);
114static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
115static struct usb_driver usb_audio_driver;
116
Hemant Kumar9d9dac12016-03-07 14:46:31 -0800117struct snd_usb_substream *find_snd_usb_substream(unsigned int card_num,
118 unsigned int pcm_idx, unsigned int direction, struct snd_usb_audio
119 **uchip, void (*disconnect_cb)(struct snd_usb_audio *chip))
120{
121 int idx;
122 struct snd_usb_stream *as;
123 struct snd_usb_substream *subs = NULL;
124 struct snd_usb_audio *chip = NULL;
125
126 mutex_lock(&register_mutex);
127 /*
128 * legacy audio snd card number assignment is dynamic. Hence
129 * search using chip->card->number
130 */
131 for (idx = 0; idx < SNDRV_CARDS; idx++) {
132 if (!usb_chip[idx])
133 continue;
134 if (usb_chip[idx]->card->number == card_num) {
135 chip = usb_chip[idx];
136 break;
137 }
138 }
139
140 if (!chip || atomic_read(&chip->shutdown)) {
141 pr_debug("%s: instance of usb crad # %d does not exist\n",
142 __func__, card_num);
143 goto err;
144 }
145
146 if (pcm_idx >= chip->pcm_devs) {
147 pr_err("%s: invalid pcm dev number %u > %d\n", __func__,
148 pcm_idx, chip->pcm_devs);
149 goto err;
150 }
151
152 if (direction > SNDRV_PCM_STREAM_CAPTURE) {
153 pr_err("%s: invalid direction %u\n", __func__, direction);
154 goto err;
155 }
156
157 list_for_each_entry(as, &chip->pcm_list, list) {
158 if (as->pcm_index == pcm_idx) {
159 subs = &as->substream[direction];
160 if (subs->interface < 0 && !subs->data_endpoint &&
161 !subs->sync_endpoint) {
162 pr_debug("%s: stream disconnected, bail out\n",
163 __func__);
164 subs = NULL;
165 goto err;
166 }
167 goto done;
168 }
169 }
170
171done:
172 chip->card_num = card_num;
173 chip->disconnect_cb = disconnect_cb;
174err:
175 *uchip = chip;
176 if (!subs)
177 pr_debug("%s: substream instance not found\n", __func__);
178 mutex_unlock(&register_mutex);
179 return subs;
180}
181
Daniel Macke5779992010-03-04 19:46:13 +0100182/*
183 * disconnect streams
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100184 * called from usb_audio_disconnect()
Daniel Macke5779992010-03-04 19:46:13 +0100185 */
Takashi Iwaia6cece92014-10-31 11:24:32 +0100186static void snd_usb_stream_disconnect(struct snd_usb_stream *as)
Daniel Macke5779992010-03-04 19:46:13 +0100187{
188 int idx;
Daniel Macke5779992010-03-04 19:46:13 +0100189 struct snd_usb_substream *subs;
190
Daniel Macke5779992010-03-04 19:46:13 +0100191 for (idx = 0; idx < 2; idx++) {
192 subs = &as->substream[idx];
193 if (!subs->num_formats)
Takashi Iwai76195fb2010-09-08 08:27:02 +0200194 continue;
Daniel Macke5779992010-03-04 19:46:13 +0100195 subs->interface = -1;
Daniel Mackedcd3632012-04-12 13:51:12 +0200196 subs->data_endpoint = NULL;
197 subs->sync_endpoint = NULL;
Daniel Macke5779992010-03-04 19:46:13 +0100198 }
199}
200
201static int snd_usb_create_stream(struct snd_usb_audio *chip, int ctrlif, int interface)
202{
203 struct usb_device *dev = chip->dev;
204 struct usb_host_interface *alts;
205 struct usb_interface_descriptor *altsd;
206 struct usb_interface *iface = usb_ifnum_to_if(dev, interface);
207
208 if (!iface) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100209 dev_err(&dev->dev, "%u:%d : does not exist\n",
210 ctrlif, interface);
Daniel Macke5779992010-03-04 19:46:13 +0100211 return -EINVAL;
212 }
213
Clemens Ladisch342cda292013-06-15 11:21:09 +0200214 alts = &iface->altsetting[0];
215 altsd = get_iface_desc(alts);
216
217 /*
218 * Android with both accessory and audio interfaces enabled gets the
219 * interface numbers wrong.
220 */
221 if ((chip->usb_id == USB_ID(0x18d1, 0x2d04) ||
222 chip->usb_id == USB_ID(0x18d1, 0x2d05)) &&
223 interface == 0 &&
224 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC &&
225 altsd->bInterfaceSubClass == USB_SUBCLASS_VENDOR_SPEC) {
226 interface = 2;
227 iface = usb_ifnum_to_if(dev, interface);
228 if (!iface)
229 return -EINVAL;
230 alts = &iface->altsetting[0];
231 altsd = get_iface_desc(alts);
232 }
233
Daniel Macke5779992010-03-04 19:46:13 +0100234 if (usb_interface_claimed(iface)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100235 dev_dbg(&dev->dev, "%d:%d: skipping, already claimed\n",
236 ctrlif, interface);
Daniel Macke5779992010-03-04 19:46:13 +0100237 return -EINVAL;
238 }
239
Daniel Macke5779992010-03-04 19:46:13 +0100240 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
241 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
242 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDISTREAMING) {
Takashi Iwai79289e22016-01-11 11:33:34 +0100243 int err = __snd_usbmidi_create(chip->card, iface,
244 &chip->midi_list, NULL,
245 chip->usb_id);
Daniel Macke5779992010-03-04 19:46:13 +0100246 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100247 dev_err(&dev->dev,
248 "%u:%d: cannot create sequencer device\n",
249 ctrlif, interface);
Daniel Macke5779992010-03-04 19:46:13 +0100250 return -EINVAL;
251 }
252 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
253
254 return 0;
255 }
256
257 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
258 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
259 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100260 dev_dbg(&dev->dev,
261 "%u:%d: skipping non-supported interface %d\n",
262 ctrlif, interface, altsd->bInterfaceClass);
Daniel Macke5779992010-03-04 19:46:13 +0100263 /* skip non-supported classes */
264 return -EINVAL;
265 }
266
267 if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100268 dev_err(&dev->dev, "low speed audio streaming not supported\n");
Daniel Macke5779992010-03-04 19:46:13 +0100269 return -EINVAL;
270 }
271
Daniel Macke8e8bab2011-09-12 18:54:12 +0200272 if (! snd_usb_parse_audio_interface(chip, interface)) {
Daniel Macke5779992010-03-04 19:46:13 +0100273 usb_set_interface(dev, interface, 0); /* reset the current interface */
274 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
Daniel Macke5779992010-03-04 19:46:13 +0100275 }
276
277 return 0;
278}
279
280/*
281 * parse audio control descriptor and create pcm/midi streams
282 */
283static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
284{
285 struct usb_device *dev = chip->dev;
286 struct usb_host_interface *host_iface;
287 struct usb_interface_descriptor *altsd;
Mayank Rana5d05d2b2013-10-18 14:46:36 +0530288 struct usb_interface *usb_iface;
Daniel Macke5779992010-03-04 19:46:13 +0100289 int i, protocol;
290
Mayank Rana5d05d2b2013-10-18 14:46:36 +0530291 usb_iface = usb_ifnum_to_if(dev, ctrlif);
292 if (!usb_iface) {
293 snd_printk(KERN_ERR "%d:%u : does not exist\n",
294 dev->devnum, ctrlif);
295 return -EINVAL;
296 }
297
Daniel Macke5779992010-03-04 19:46:13 +0100298 /* find audiocontrol interface */
Mayank Rana5d05d2b2013-10-18 14:46:36 +0530299 host_iface = &usb_iface->altsetting[0];
300 if (!host_iface) {
301 snd_printk(KERN_ERR "Audio Control interface is not available.");
302 return -EINVAL;
303 }
304
Daniel Macke5779992010-03-04 19:46:13 +0100305 altsd = get_iface_desc(host_iface);
306 protocol = altsd->bInterfaceProtocol;
307
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530308 /*
309 * UAC 1.0 devices use AC HEADER Desc for linking AS interfaces;
310 * UAC 2.0 and 3.0 devices use IAD for linking AS interfaces
311 */
Daniel Macke5779992010-03-04 19:46:13 +0100312
313 switch (protocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +0200314 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100315 dev_warn(&dev->dev,
316 "unknown interface protocol %#02x, assuming v1\n",
317 protocol);
Clemens Ladischa2acad82010-09-03 10:53:11 +0200318 /* fall through */
319
Daniel Macke5779992010-03-04 19:46:13 +0100320 case UAC_VERSION_1: {
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530321 void *control_header;
322 struct uac1_ac_header_descriptor *h1;
Daniel Macke5779992010-03-04 19:46:13 +0100323
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530324 control_header = snd_usb_find_csint_desc(host_iface->extra,
325 host_iface->extralen, NULL, UAC_HEADER);
326 if (!control_header) {
327 dev_err(&dev->dev, "cannot find UAC_HEADER\n");
328 return -EINVAL;
329 }
330
331 h1 = control_header;
Daniel Macke5779992010-03-04 19:46:13 +0100332 if (!h1->bInCollection) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100333 dev_info(&dev->dev, "skipping empty audio interface (v1)\n");
Daniel Macke5779992010-03-04 19:46:13 +0100334 return -EINVAL;
335 }
336
337 if (h1->bLength < sizeof(*h1) + h1->bInCollection) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100338 dev_err(&dev->dev, "invalid UAC_HEADER (v1)\n");
Daniel Macke5779992010-03-04 19:46:13 +0100339 return -EINVAL;
340 }
341
342 for (i = 0; i < h1->bInCollection; i++)
343 snd_usb_create_stream(chip, ctrlif, h1->baInterfaceNr[i]);
344
345 break;
346 }
347
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530348 case UAC_VERSION_2:
349 case UAC_VERSION_3: {
Daniel Macke5779992010-03-04 19:46:13 +0100350 struct usb_interface_assoc_descriptor *assoc =
Mayank Rana5d05d2b2013-10-18 14:46:36 +0530351 usb_iface->intf_assoc;
Daniel Macke5779992010-03-04 19:46:13 +0100352 if (!assoc) {
Clemens Ladisch281a6ac2013-03-11 20:15:34 +0100353 /*
354 * Firmware writers cannot count to three. So to find
355 * the IAD on the NuForce UDH-100, also check the next
356 * interface.
357 */
358 struct usb_interface *iface =
359 usb_ifnum_to_if(dev, ctrlif + 1);
360 if (iface &&
361 iface->intf_assoc &&
362 iface->intf_assoc->bFunctionClass == USB_CLASS_AUDIO &&
363 iface->intf_assoc->bFunctionProtocol == UAC_VERSION_2)
364 assoc = iface->intf_assoc;
365 }
366
367 if (!assoc) {
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530368 dev_err(&dev->dev, "Audio class V%d interfaces need an interface association\n",
369 protocol);
Daniel Macke5779992010-03-04 19:46:13 +0100370 return -EINVAL;
371 }
372
Daniel Macke5779992010-03-04 19:46:13 +0100373 for (i = 0; i < assoc->bInterfaceCount; i++) {
374 int intf = assoc->bFirstInterface + i;
375
376 if (intf != ctrlif)
377 snd_usb_create_stream(chip, ctrlif, intf);
378 }
379
380 break;
381 }
Daniel Macke5779992010-03-04 19:46:13 +0100382 }
383
384 return 0;
385}
386
387/*
388 * free the chip instance
389 *
390 * here we have to do not much, since pcm and controls are already freed
391 *
392 */
393
394static int snd_usb_audio_free(struct snd_usb_audio *chip)
395{
Takashi Iwaia6cece92014-10-31 11:24:32 +0100396 struct snd_usb_endpoint *ep, *n;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200397
Takashi Iwaia6cece92014-10-31 11:24:32 +0100398 list_for_each_entry_safe(ep, n, &chip->ep_list, list)
399 snd_usb_endpoint_free(ep);
Takashi Iwai92a586b2014-06-25 14:24:47 +0200400
Hemant Kumar0ef9fbb2016-01-28 11:41:42 -0800401 mutex_destroy(&chip->dev_lock);
Daniel Mack596580d2012-04-12 13:51:10 +0200402 mutex_destroy(&chip->mutex);
Takashi Iwai6ff1a252016-11-14 21:46:47 +0100403 if (!atomic_read(&chip->shutdown))
404 dev_set_drvdata(&chip->dev->dev, NULL);
Daniel Macke5779992010-03-04 19:46:13 +0100405 kfree(chip);
406 return 0;
407}
408
409static int snd_usb_audio_dev_free(struct snd_device *device)
410{
411 struct snd_usb_audio *chip = device->device_data;
412 return snd_usb_audio_free(chip);
413}
414
Daniel Macke5779992010-03-04 19:46:13 +0100415/*
416 * create a chip instance and set its names.
417 */
Takashi Iwai874b8d42014-01-29 14:22:20 +0100418static int snd_usb_audio_create(struct usb_interface *intf,
419 struct usb_device *dev, int idx,
Daniel Macke5779992010-03-04 19:46:13 +0100420 const struct snd_usb_audio_quirk *quirk,
421 struct snd_usb_audio **rchip)
422{
423 struct snd_card *card;
424 struct snd_usb_audio *chip;
425 int err, len;
426 char component[14];
427 static struct snd_device_ops ops = {
428 .dev_free = snd_usb_audio_dev_free,
429 };
430
431 *rchip = NULL;
432
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700433 switch (snd_usb_get_speed(dev)) {
434 case USB_SPEED_LOW:
435 case USB_SPEED_FULL:
436 case USB_SPEED_HIGH:
Thomas Pugliesedf3774c2013-10-01 14:32:15 -0500437 case USB_SPEED_WIRELESS:
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700438 case USB_SPEED_SUPER:
Oliver Neukum748a1cc2016-05-04 14:18:39 +0200439 case USB_SPEED_SUPER_PLUS:
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700440 break;
441 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100442 dev_err(&dev->dev, "unknown device speed %d\n", snd_usb_get_speed(dev));
Daniel Macke5779992010-03-04 19:46:13 +0100443 return -ENXIO;
444 }
445
Takashi Iwai874b8d42014-01-29 14:22:20 +0100446 err = snd_card_new(&intf->dev, index[idx], id[idx], THIS_MODULE,
447 0, &card);
Daniel Macke5779992010-03-04 19:46:13 +0100448 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100449 dev_err(&dev->dev, "cannot create card instance %d\n", idx);
Daniel Macke5779992010-03-04 19:46:13 +0100450 return err;
451 }
452
453 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
454 if (! chip) {
455 snd_card_free(card);
456 return -ENOMEM;
457 }
458
Daniel Mack596580d2012-04-12 13:51:10 +0200459 mutex_init(&chip->mutex);
Hemant Kumar0ef9fbb2016-01-28 11:41:42 -0800460 mutex_init(&chip->dev_lock);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200461 init_waitqueue_head(&chip->shutdown_wait);
Daniel Macke5779992010-03-04 19:46:13 +0100462 chip->index = idx;
463 chip->dev = dev;
464 chip->card = card;
465 chip->setup = device_setup[idx];
Eldad Zackef02e292013-04-03 23:18:56 +0200466 chip->autoclock = autoclock;
Takashi Iwaia6da4992015-08-26 10:20:59 +0200467 atomic_set(&chip->active, 1); /* avoid autopm during probing */
Takashi Iwai47ab1542015-08-25 16:09:00 +0200468 atomic_set(&chip->usage_count, 0);
469 atomic_set(&chip->shutdown, 0);
Daniel Macke5779992010-03-04 19:46:13 +0100470
471 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
472 le16_to_cpu(dev->descriptor.idProduct));
473 INIT_LIST_HEAD(&chip->pcm_list);
Daniel Mackedcd3632012-04-12 13:51:12 +0200474 INIT_LIST_HEAD(&chip->ep_list);
Daniel Macke5779992010-03-04 19:46:13 +0100475 INIT_LIST_HEAD(&chip->midi_list);
476 INIT_LIST_HEAD(&chip->mixer_list);
477
478 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
479 snd_usb_audio_free(chip);
480 snd_card_free(card);
481 return err;
482 }
483
484 strcpy(card->driver, "USB-Audio");
485 sprintf(component, "USB%04x:%04x",
486 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
487 snd_component_add(card, component);
488
489 /* retrieve the device string as shortname */
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100490 if (quirk && quirk->product_name && *quirk->product_name) {
Daniel Macke5779992010-03-04 19:46:13 +0100491 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
492 } else {
493 if (!dev->descriptor.iProduct ||
494 usb_string(dev, dev->descriptor.iProduct,
495 card->shortname, sizeof(card->shortname)) <= 0) {
496 /* no name available from anywhere, so use ID */
497 sprintf(card->shortname, "USB Device %#04x:%#04x",
498 USB_ID_VENDOR(chip->usb_id),
499 USB_ID_PRODUCT(chip->usb_id));
500 }
501 }
Takashi Iwaiae366c22014-10-31 11:32:19 +0100502 strim(card->shortname);
Daniel Macke5779992010-03-04 19:46:13 +0100503
504 /* retrieve the vendor and device strings as longname */
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100505 if (quirk && quirk->vendor_name && *quirk->vendor_name) {
Daniel Macke5779992010-03-04 19:46:13 +0100506 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
507 } else {
508 if (dev->descriptor.iManufacturer)
509 len = usb_string(dev, dev->descriptor.iManufacturer,
510 card->longname, sizeof(card->longname));
511 else
512 len = 0;
513 /* we don't really care if there isn't any vendor string */
514 }
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100515 if (len > 0) {
Takashi Iwaiae366c22014-10-31 11:32:19 +0100516 strim(card->longname);
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100517 if (*card->longname)
518 strlcat(card->longname, " ", sizeof(card->longname));
519 }
Daniel Macke5779992010-03-04 19:46:13 +0100520
521 strlcat(card->longname, card->shortname, sizeof(card->longname));
522
523 len = strlcat(card->longname, " at ", sizeof(card->longname));
524
525 if (len < sizeof(card->longname))
526 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
527
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700528 switch (snd_usb_get_speed(dev)) {
529 case USB_SPEED_LOW:
530 strlcat(card->longname, ", low speed", sizeof(card->longname));
531 break;
532 case USB_SPEED_FULL:
533 strlcat(card->longname, ", full speed", sizeof(card->longname));
534 break;
535 case USB_SPEED_HIGH:
536 strlcat(card->longname, ", high speed", sizeof(card->longname));
537 break;
538 case USB_SPEED_SUPER:
539 strlcat(card->longname, ", super speed", sizeof(card->longname));
540 break;
Oliver Neukum748a1cc2016-05-04 14:18:39 +0200541 case USB_SPEED_SUPER_PLUS:
542 strlcat(card->longname, ", super speed plus", sizeof(card->longname));
543 break;
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700544 default:
545 break;
546 }
Daniel Macke5779992010-03-04 19:46:13 +0100547
548 snd_usb_audio_create_proc(chip);
549
550 *rchip = chip;
551 return 0;
552}
553
Takashi Iwaie2703362016-01-11 14:39:12 +0100554/* look for a matching quirk alias id */
555static bool get_alias_id(struct usb_device *dev, unsigned int *id)
556{
557 int i;
558 unsigned int src, dst;
559
560 for (i = 0; i < ARRAY_SIZE(quirk_alias); i++) {
561 if (!quirk_alias[i] ||
562 sscanf(quirk_alias[i], "%x:%x", &src, &dst) != 2 ||
563 src != *id)
564 continue;
565 dev_info(&dev->dev,
566 "device (%04x:%04x): applying quirk alias %04x:%04x\n",
567 USB_ID_VENDOR(*id), USB_ID_PRODUCT(*id),
568 USB_ID_VENDOR(dst), USB_ID_PRODUCT(dst));
569 *id = dst;
570 return true;
571 }
572
573 return false;
574}
575
576static struct usb_device_id usb_audio_ids[]; /* defined below */
577
578/* look for the corresponding quirk */
579static const struct snd_usb_audio_quirk *
580get_alias_quirk(struct usb_device *dev, unsigned int id)
581{
582 const struct usb_device_id *p;
583
584 for (p = usb_audio_ids; p->match_flags; p++) {
585 /* FIXME: this checks only vendor:product pair in the list */
586 if ((p->match_flags & USB_DEVICE_ID_MATCH_DEVICE) ==
587 USB_DEVICE_ID_MATCH_DEVICE &&
588 p->idVendor == USB_ID_VENDOR(id) &&
589 p->idProduct == USB_ID_PRODUCT(id))
590 return (const struct snd_usb_audio_quirk *)p->driver_info;
591 }
592
593 return NULL;
594}
595
Daniel Macke5779992010-03-04 19:46:13 +0100596/*
597 * probe the active usb device
598 *
599 * note that this can be called multiple times per a device, when it
600 * includes multiple audio control interfaces.
601 *
602 * thus we check the usb device pointer and creates the card instance
603 * only at the first time. the successive calls of this function will
604 * append the pcm interface to the corresponding card.
605 */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100606static int usb_audio_probe(struct usb_interface *intf,
607 const struct usb_device_id *usb_id)
Daniel Macke5779992010-03-04 19:46:13 +0100608{
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100609 struct usb_device *dev = interface_to_usbdev(intf);
610 const struct snd_usb_audio_quirk *quirk =
611 (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Daniel Macke5779992010-03-04 19:46:13 +0100612 struct snd_usb_audio *chip;
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100613 int i, err;
Daniel Macke5779992010-03-04 19:46:13 +0100614 struct usb_host_interface *alts;
615 int ifnum;
616 u32 id;
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530617 struct usb_interface_assoc_descriptor *assoc;
618
619 assoc = intf->intf_assoc;
620 if (assoc && assoc->bFunctionClass == USB_CLASS_AUDIO &&
621 assoc->bFunctionProtocol == UAC_VERSION_3 &&
Hemant Kumar38742262017-07-25 11:03:38 -0700622 assoc->bFunctionSubClass == FULL_ADC_3_0) {
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530623 dev_info(&dev->dev, "No support for full-fledged ADC 3.0 yet!!\n");
624 return -EINVAL;
625 }
Daniel Macke5779992010-03-04 19:46:13 +0100626
627 alts = &intf->altsetting[0];
628 ifnum = get_iface_desc(alts)->bInterfaceNumber;
629 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
630 le16_to_cpu(dev->descriptor.idProduct));
Takashi Iwaie2703362016-01-11 14:39:12 +0100631 if (get_alias_id(dev, &id))
632 quirk = get_alias_quirk(dev, id);
Daniel Macke5779992010-03-04 19:46:13 +0100633 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100634 return -ENXIO;
Daniel Macke5779992010-03-04 19:46:13 +0100635
Takashi Iwai79289e22016-01-11 11:33:34 +0100636 err = snd_usb_apply_boot_quirk(dev, intf, quirk, id);
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100637 if (err < 0)
638 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100639
640 /*
641 * found a config. now register to ALSA
642 */
643
644 /* check whether it's already registered */
645 chip = NULL;
646 mutex_lock(&register_mutex);
647 for (i = 0; i < SNDRV_CARDS; i++) {
648 if (usb_chip[i] && usb_chip[i]->dev == dev) {
Takashi Iwai47ab1542015-08-25 16:09:00 +0200649 if (atomic_read(&usb_chip[i]->shutdown)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100650 dev_err(&dev->dev, "USB device is in the shutdown state, cannot create a card instance\n");
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100651 err = -EIO;
Daniel Macke5779992010-03-04 19:46:13 +0100652 goto __error;
653 }
654 chip = usb_chip[i];
Takashi Iwaia6da4992015-08-26 10:20:59 +0200655 atomic_inc(&chip->active); /* avoid autopm */
Daniel Macke5779992010-03-04 19:46:13 +0100656 break;
657 }
658 }
659 if (! chip) {
660 /* it's a fresh one.
661 * now look for an empty slot and create a new card instance
662 */
663 for (i = 0; i < SNDRV_CARDS; i++)
664 if (enable[i] && ! usb_chip[i] &&
665 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
666 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100667 err = snd_usb_audio_create(intf, dev, i, quirk,
668 &chip);
669 if (err < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100670 goto __error;
Oliver Neukum88a85162011-03-11 14:51:12 +0100671 chip->pm_intf = intf;
Daniel Macke5779992010-03-04 19:46:13 +0100672 break;
673 }
674 if (!chip) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100675 dev_err(&dev->dev, "no available usb audio device\n");
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100676 err = -ENODEV;
Daniel Macke5779992010-03-04 19:46:13 +0100677 goto __error;
678 }
679 }
Kazuki Oikawa76df5292016-07-18 01:16:15 +0900680 dev_set_drvdata(&dev->dev, chip);
Daniel Macke5779992010-03-04 19:46:13 +0100681
Daniel Mack7b6717e2010-09-02 17:13:15 +0800682 /*
683 * For devices with more than one control interface, we assume the
684 * first contains the audio controls. We might need a more specific
685 * check here in the future.
686 */
687 if (!chip->ctrl_intf)
688 chip->ctrl_intf = alts;
Daniel Mack79f920f2010-05-31 14:51:31 +0200689
Daniel Mack5875c2c2011-05-25 09:08:59 +0200690 chip->txfr_quirk = 0;
691 err = 1; /* continue */
692 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
693 /* need some special handlings */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100694 err = snd_usb_create_quirk(chip, intf, &usb_audio_driver, quirk);
695 if (err < 0)
Daniel Mack5875c2c2011-05-25 09:08:59 +0200696 goto __error;
697 }
698
Daniel Macke5779992010-03-04 19:46:13 +0100699 if (err > 0) {
700 /* create normal USB audio interfaces */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100701 err = snd_usb_create_streams(chip, ifnum);
702 if (err < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100703 goto __error;
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100704 err = snd_usb_create_mixer(chip, ifnum, ignore_ctl_error);
705 if (err < 0)
706 goto __error;
Daniel Macke5779992010-03-04 19:46:13 +0100707 }
708
709 /* we are allowed to call snd_card_register() many times */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100710 err = snd_card_register(chip->card);
711 if (err < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100712 goto __error;
Daniel Macke5779992010-03-04 19:46:13 +0100713
714 usb_chip[chip->index] = chip;
715 chip->num_interfaces++;
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100716 usb_set_intfdata(intf, chip);
Hemant Kumara1bd7452016-12-13 18:13:56 -0800717 intf->needs_remote_wakeup = 1;
Hemant Kumarb3e2d642016-04-01 19:13:01 -0700718 usb_enable_autosuspend(chip->dev);
Takashi Iwaia6da4992015-08-26 10:20:59 +0200719 atomic_dec(&chip->active);
Daniel Macke5779992010-03-04 19:46:13 +0100720 mutex_unlock(&register_mutex);
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100721 return 0;
Daniel Macke5779992010-03-04 19:46:13 +0100722
723 __error:
Thomas Pfaff61a6a102011-09-26 15:43:59 +0200724 if (chip) {
725 if (!chip->num_interfaces)
726 snd_card_free(chip->card);
Takashi Iwaia6da4992015-08-26 10:20:59 +0200727 atomic_dec(&chip->active);
Thomas Pfaff61a6a102011-09-26 15:43:59 +0200728 }
Daniel Macke5779992010-03-04 19:46:13 +0100729 mutex_unlock(&register_mutex);
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100730 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100731}
732
733/*
734 * we need to take care of counter, since disconnection can be called also
735 * many times as well as usb_audio_probe().
736 */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100737static void usb_audio_disconnect(struct usb_interface *intf)
Daniel Macke5779992010-03-04 19:46:13 +0100738{
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100739 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Daniel Macke5779992010-03-04 19:46:13 +0100740 struct snd_card *card;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200741 struct list_head *p;
Daniel Macke5779992010-03-04 19:46:13 +0100742
Pavel Roskin81b85b62011-07-06 11:20:13 -0400743 if (chip == (void *)-1L)
Daniel Macke5779992010-03-04 19:46:13 +0100744 return;
745
Daniel Macke5779992010-03-04 19:46:13 +0100746 card = chip->card;
Takashi Iwai10e44232012-11-13 11:22:48 +0100747
Vamsi Krishna Samavedam1e634532016-09-13 14:09:37 -0700748 if (chip->disconnect_cb)
749 chip->disconnect_cb(chip);
750
Takashi Iwai10e44232012-11-13 11:22:48 +0100751 mutex_lock(&register_mutex);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200752 if (atomic_inc_return(&chip->shutdown) == 1) {
Takashi Iwaia6cece92014-10-31 11:24:32 +0100753 struct snd_usb_stream *as;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200754 struct snd_usb_endpoint *ep;
Takashi Iwaia6cece92014-10-31 11:24:32 +0100755 struct usb_mixer_interface *mixer;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200756
Takashi Iwai47ab1542015-08-25 16:09:00 +0200757 /* wait until all pending tasks done;
758 * they are protected by snd_usb_lock_shutdown()
759 */
760 wait_event(chip->shutdown_wait,
761 !atomic_read(&chip->usage_count));
Daniel Macke5779992010-03-04 19:46:13 +0100762 snd_card_disconnect(card);
763 /* release the pcm resources */
Takashi Iwaia6cece92014-10-31 11:24:32 +0100764 list_for_each_entry(as, &chip->pcm_list, list) {
765 snd_usb_stream_disconnect(as);
Daniel Macke5779992010-03-04 19:46:13 +0100766 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200767 /* release the endpoint resources */
Takashi Iwai92a586b2014-06-25 14:24:47 +0200768 list_for_each_entry(ep, &chip->ep_list, list) {
769 snd_usb_endpoint_release(ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200770 }
Daniel Macke5779992010-03-04 19:46:13 +0100771 /* release the midi resources */
772 list_for_each(p, &chip->midi_list) {
773 snd_usbmidi_disconnect(p);
774 }
775 /* release mixer resources */
Takashi Iwaia6cece92014-10-31 11:24:32 +0100776 list_for_each_entry(mixer, &chip->mixer_list, list) {
777 snd_usb_mixer_disconnect(mixer);
Daniel Macke5779992010-03-04 19:46:13 +0100778 }
Takashi Iwai0725dda2014-11-05 15:08:49 +0100779 }
780
781 chip->num_interfaces--;
782 if (chip->num_interfaces <= 0) {
Daniel Macke5779992010-03-04 19:46:13 +0100783 usb_chip[chip->index] = NULL;
784 mutex_unlock(&register_mutex);
785 snd_card_free_when_closed(card);
786 } else {
787 mutex_unlock(&register_mutex);
788 }
789}
790
Takashi Iwai47ab1542015-08-25 16:09:00 +0200791/* lock the shutdown (disconnect) task and autoresume */
792int snd_usb_lock_shutdown(struct snd_usb_audio *chip)
793{
794 int err;
795
796 atomic_inc(&chip->usage_count);
797 if (atomic_read(&chip->shutdown)) {
798 err = -EIO;
799 goto error;
800 }
801 err = snd_usb_autoresume(chip);
802 if (err < 0)
803 goto error;
804 return 0;
805
806 error:
807 if (atomic_dec_and_test(&chip->usage_count))
808 wake_up(&chip->shutdown_wait);
809 return err;
810}
811
812/* autosuspend and unlock the shutdown */
813void snd_usb_unlock_shutdown(struct snd_usb_audio *chip)
814{
815 snd_usb_autosuspend(chip);
816 if (atomic_dec_and_test(&chip->usage_count))
817 wake_up(&chip->shutdown_wait);
818}
819
Daniel Macke5779992010-03-04 19:46:13 +0100820#ifdef CONFIG_PM
Oliver Neukum88a85162011-03-11 14:51:12 +0100821
822int snd_usb_autoresume(struct snd_usb_audio *chip)
823{
Takashi Iwai47ab1542015-08-25 16:09:00 +0200824 if (atomic_read(&chip->shutdown))
825 return -EIO;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200826 if (atomic_inc_return(&chip->active) == 1)
827 return usb_autopm_get_interface(chip->pm_intf);
828 return 0;
Oliver Neukum88a85162011-03-11 14:51:12 +0100829}
830
831void snd_usb_autosuspend(struct snd_usb_audio *chip)
832{
Takashi Iwai5c06d682016-01-12 14:03:33 +0100833 if (atomic_read(&chip->shutdown))
834 return;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200835 if (atomic_dec_and_test(&chip->active))
Oliver Neukum88a85162011-03-11 14:51:12 +0100836 usb_autopm_put_interface(chip->pm_intf);
837}
838
Daniel Macke5779992010-03-04 19:46:13 +0100839static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
840{
841 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Daniel Macke5779992010-03-04 19:46:13 +0100842 struct snd_usb_stream *as;
Oliver Neukumedf7de32011-03-11 13:19:43 +0100843 struct usb_mixer_interface *mixer;
Adam Goodef7881e52014-08-05 12:44:50 -0400844 struct list_head *p;
Daniel Macke5779992010-03-04 19:46:13 +0100845
846 if (chip == (void *)-1L)
847 return 0;
848
Takashi Iwai06622922015-08-26 10:23:26 +0200849 chip->autosuspended = !!PMSG_IS_AUTO(message);
850 if (!chip->autosuspended)
Oliver Neukum88a85162011-03-11 14:51:12 +0100851 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai06622922015-08-26 10:23:26 +0200852 if (!chip->num_suspended_intf++) {
853 list_for_each_entry(as, &chip->pcm_list, list) {
854 snd_pcm_suspend_all(as->pcm);
855 as->substream[0].need_setup_ep =
856 as->substream[1].need_setup_ep = true;
Antonio Ospiteaa53f982013-01-29 12:56:30 +0100857 }
Takashi Iwai06622922015-08-26 10:23:26 +0200858 list_for_each(p, &chip->midi_list)
859 snd_usbmidi_suspend(p);
Takashi Iwai1c53e722014-05-02 18:14:42 +0200860 list_for_each_entry(mixer, &chip->mixer_list, list)
861 snd_usb_mixer_suspend(mixer);
Takashi Iwai06622922015-08-26 10:23:26 +0200862 }
Oliver Neukum88a85162011-03-11 14:51:12 +0100863
Daniel Macke5779992010-03-04 19:46:13 +0100864 return 0;
865}
866
Takashi Iwai400362f2014-01-20 16:51:16 +0100867static int __usb_audio_resume(struct usb_interface *intf, bool reset_resume)
Daniel Macke5779992010-03-04 19:46:13 +0100868{
869 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumedf7de32011-03-11 13:19:43 +0100870 struct usb_mixer_interface *mixer;
Adam Goodef7881e52014-08-05 12:44:50 -0400871 struct list_head *p;
Oliver Neukum88a85162011-03-11 14:51:12 +0100872 int err = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100873
874 if (chip == (void *)-1L)
875 return 0;
876 if (--chip->num_suspended_intf)
877 return 0;
Takashi Iwai1ee23fe2014-05-02 18:17:06 +0200878
Takashi Iwai47ab1542015-08-25 16:09:00 +0200879 atomic_inc(&chip->active); /* avoid autopm */
Daniel Macke5779992010-03-04 19:46:13 +0100880 /*
881 * ALSA leaves material resumption to user space
Oliver Neukumedf7de32011-03-11 13:19:43 +0100882 * we just notify and restart the mixers
Daniel Macke5779992010-03-04 19:46:13 +0100883 */
Oliver Neukum88a85162011-03-11 14:51:12 +0100884 list_for_each_entry(mixer, &chip->mixer_list, list) {
Takashi Iwai400362f2014-01-20 16:51:16 +0100885 err = snd_usb_mixer_resume(mixer, reset_resume);
Oliver Neukum88a85162011-03-11 14:51:12 +0100886 if (err < 0)
887 goto err_out;
888 }
Daniel Macke5779992010-03-04 19:46:13 +0100889
Adam Goodef7881e52014-08-05 12:44:50 -0400890 list_for_each(p, &chip->midi_list) {
891 snd_usbmidi_resume(p);
892 }
893
Oliver Neukum88a85162011-03-11 14:51:12 +0100894 if (!chip->autosuspended)
895 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
896 chip->autosuspended = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100897
Oliver Neukum88a85162011-03-11 14:51:12 +0100898err_out:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200899 atomic_dec(&chip->active); /* allow autopm after this point */
Oliver Neukum88a85162011-03-11 14:51:12 +0100900 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100901}
Takashi Iwai400362f2014-01-20 16:51:16 +0100902
903static int usb_audio_resume(struct usb_interface *intf)
904{
905 return __usb_audio_resume(intf, false);
906}
907
908static int usb_audio_reset_resume(struct usb_interface *intf)
909{
910 return __usb_audio_resume(intf, true);
911}
Randy Dunlap6407d472010-03-22 08:55:35 -0700912#else
913#define usb_audio_suspend NULL
914#define usb_audio_resume NULL
Takashi Iwai400362f2014-01-20 16:51:16 +0100915#define usb_audio_reset_resume NULL
Daniel Macke5779992010-03-04 19:46:13 +0100916#endif /* CONFIG_PM */
917
918static struct usb_device_id usb_audio_ids [] = {
919#include "quirks-table.h"
920 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
921 .bInterfaceClass = USB_CLASS_AUDIO,
922 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL },
923 { } /* Terminating entry */
924};
Eldad Zackf9d35432013-04-03 23:18:50 +0200925MODULE_DEVICE_TABLE(usb, usb_audio_ids);
Daniel Macke5779992010-03-04 19:46:13 +0100926
927/*
928 * entry point for linux usb interface
929 */
930
931static struct usb_driver usb_audio_driver = {
932 .name = "snd-usb-audio",
933 .probe = usb_audio_probe,
934 .disconnect = usb_audio_disconnect,
935 .suspend = usb_audio_suspend,
936 .resume = usb_audio_resume,
Takashi Iwai400362f2014-01-20 16:51:16 +0100937 .reset_resume = usb_audio_reset_resume,
Daniel Macke5779992010-03-04 19:46:13 +0100938 .id_table = usb_audio_ids,
Oliver Neukum88a85162011-03-11 14:51:12 +0100939 .supports_autosuspend = 1,
Daniel Macke5779992010-03-04 19:46:13 +0100940};
941
Sachin Kamat6b5a7c62013-10-09 17:22:32 +0530942module_usb_driver(usb_audio_driver);