blob: 746a72e23cf9f704e0acaf50a407c56f9f96f84b [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 *
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +020010 * Audio Class 3.0 support by Ruslan Bilovol <ruslan.bilovol@gmail.com>
Daniel Macke5779992010-03-04 19:46:13 +010011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
26 *
27 * NOTES:
28 *
Daniel Macke5779992010-03-04 19:46:13 +010029 * - the linked URBs would be preferred but not used so far because of
30 * the instability of unlinking.
31 * - type II is not supported properly. there is no device which supports
32 * this type *correctly*. SB extigy looks as if it supports, but it's
33 * indeed an AC3 stream packed in SPDIF frames (i.e. no real AC3 stream).
34 */
35
36
37#include <linux/bitops.h>
38#include <linux/init.h>
39#include <linux/list.h>
40#include <linux/slab.h>
41#include <linux/string.h>
Takashi Iwai3ffc1222011-03-21 12:00:00 +010042#include <linux/ctype.h>
Daniel Macke5779992010-03-04 19:46:13 +010043#include <linux/usb.h>
44#include <linux/moduleparam.h>
45#include <linux/mutex.h>
46#include <linux/usb/audio.h>
Daniel Mack7e847892010-03-11 21:13:20 +010047#include <linux/usb/audio-v2.h>
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +020048#include <linux/usb/audio-v3.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040049#include <linux/module.h>
Daniel Macke5779992010-03-04 19:46:13 +010050
Daniel Mack9e386582011-05-25 09:09:01 +020051#include <sound/control.h>
Daniel Macke5779992010-03-04 19:46:13 +010052#include <sound/core.h>
53#include <sound/info.h>
54#include <sound/pcm.h>
55#include <sound/pcm_params.h>
56#include <sound/initval.h>
57
58#include "usbaudio.h"
59#include "card.h"
60#include "midi.h"
Daniel Mackf0b5e632010-03-11 21:13:23 +010061#include "mixer.h"
Daniel Macke5779992010-03-04 19:46:13 +010062#include "proc.h"
63#include "quirks.h"
64#include "endpoint.h"
65#include "helper.h"
66#include "debug.h"
67#include "pcm.h"
Daniel Macke5779992010-03-04 19:46:13 +010068#include "format.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010069#include "power.h"
Daniel Macke8e8bab2011-09-12 18:54:12 +020070#include "stream.h"
Daniel Macke5779992010-03-04 19:46:13 +010071
72MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
73MODULE_DESCRIPTION("USB Audio");
74MODULE_LICENSE("GPL");
75MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
76
77
78static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
79static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103080static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
Daniel Macke5779992010-03-04 19:46:13 +010081/* Vendor/product IDs for this card */
82static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
83static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
Daniel Macke5779992010-03-04 19:46:13 +010084static int device_setup[SNDRV_CARDS]; /* device parameter for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103085static bool ignore_ctl_error;
Eldad Zackef02e292013-04-03 23:18:56 +020086static bool autoclock = true;
Takashi Iwaie2703362016-01-11 14:39:12 +010087static char *quirk_alias[SNDRV_CARDS];
Daniel Macke5779992010-03-04 19:46:13 +010088
Takashi Iwaif274baa2018-05-27 13:01:17 +020089bool snd_usb_use_vmalloc = true;
90
Daniel Macke5779992010-03-04 19:46:13 +010091module_param_array(index, int, NULL, 0444);
92MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
93module_param_array(id, charp, NULL, 0444);
94MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
95module_param_array(enable, bool, NULL, 0444);
96MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
97module_param_array(vid, int, NULL, 0444);
98MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
99module_param_array(pid, int, NULL, 0444);
100MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
Daniel Macke5779992010-03-04 19:46:13 +0100101module_param_array(device_setup, int, NULL, 0444);
102MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
103module_param(ignore_ctl_error, bool, 0444);
104MODULE_PARM_DESC(ignore_ctl_error,
105 "Ignore errors from USB controller for mixer interfaces.");
Eldad Zackef02e292013-04-03 23:18:56 +0200106module_param(autoclock, bool, 0444);
107MODULE_PARM_DESC(autoclock, "Enable auto-clock selection for UAC2 devices (default: yes).");
Takashi Iwaie2703362016-01-11 14:39:12 +0100108module_param_array(quirk_alias, charp, NULL, 0444);
109MODULE_PARM_DESC(quirk_alias, "Quirk aliases, e.g. 0123abcd:5678beef.");
Takashi Iwaif274baa2018-05-27 13:01:17 +0200110module_param_named(use_vmalloc, snd_usb_use_vmalloc, bool, 0444);
111MODULE_PARM_DESC(use_vmalloc, "Use vmalloc for PCM intermediate buffers (default: yes).");
Daniel Macke5779992010-03-04 19:46:13 +0100112
113/*
114 * we keep the snd_usb_audio_t instances by ourselves for merging
115 * the all interfaces on the same card as one sound device.
116 */
117
118static DEFINE_MUTEX(register_mutex);
119static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
120static struct usb_driver usb_audio_driver;
121
122/*
123 * disconnect streams
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100124 * called from usb_audio_disconnect()
Daniel Macke5779992010-03-04 19:46:13 +0100125 */
Takashi Iwaia6cece92014-10-31 11:24:32 +0100126static void snd_usb_stream_disconnect(struct snd_usb_stream *as)
Daniel Macke5779992010-03-04 19:46:13 +0100127{
128 int idx;
Daniel Macke5779992010-03-04 19:46:13 +0100129 struct snd_usb_substream *subs;
130
Daniel Macke5779992010-03-04 19:46:13 +0100131 for (idx = 0; idx < 2; idx++) {
132 subs = &as->substream[idx];
133 if (!subs->num_formats)
Takashi Iwai76195fb2010-09-08 08:27:02 +0200134 continue;
Daniel Macke5779992010-03-04 19:46:13 +0100135 subs->interface = -1;
Daniel Mackedcd3632012-04-12 13:51:12 +0200136 subs->data_endpoint = NULL;
137 subs->sync_endpoint = NULL;
Daniel Macke5779992010-03-04 19:46:13 +0100138 }
139}
140
141static int snd_usb_create_stream(struct snd_usb_audio *chip, int ctrlif, int interface)
142{
143 struct usb_device *dev = chip->dev;
144 struct usb_host_interface *alts;
145 struct usb_interface_descriptor *altsd;
146 struct usb_interface *iface = usb_ifnum_to_if(dev, interface);
147
148 if (!iface) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100149 dev_err(&dev->dev, "%u:%d : does not exist\n",
150 ctrlif, interface);
Daniel Macke5779992010-03-04 19:46:13 +0100151 return -EINVAL;
152 }
153
Clemens Ladisch342cda292013-06-15 11:21:09 +0200154 alts = &iface->altsetting[0];
155 altsd = get_iface_desc(alts);
156
157 /*
158 * Android with both accessory and audio interfaces enabled gets the
159 * interface numbers wrong.
160 */
161 if ((chip->usb_id == USB_ID(0x18d1, 0x2d04) ||
162 chip->usb_id == USB_ID(0x18d1, 0x2d05)) &&
163 interface == 0 &&
164 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC &&
165 altsd->bInterfaceSubClass == USB_SUBCLASS_VENDOR_SPEC) {
166 interface = 2;
167 iface = usb_ifnum_to_if(dev, interface);
168 if (!iface)
169 return -EINVAL;
170 alts = &iface->altsetting[0];
171 altsd = get_iface_desc(alts);
172 }
173
Daniel Macke5779992010-03-04 19:46:13 +0100174 if (usb_interface_claimed(iface)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100175 dev_dbg(&dev->dev, "%d:%d: skipping, already claimed\n",
176 ctrlif, interface);
Daniel Macke5779992010-03-04 19:46:13 +0100177 return -EINVAL;
178 }
179
Daniel Macke5779992010-03-04 19:46:13 +0100180 if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
181 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
182 altsd->bInterfaceSubClass == USB_SUBCLASS_MIDISTREAMING) {
Takashi Iwai79289e22016-01-11 11:33:34 +0100183 int err = __snd_usbmidi_create(chip->card, iface,
184 &chip->midi_list, NULL,
185 chip->usb_id);
Daniel Macke5779992010-03-04 19:46:13 +0100186 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100187 dev_err(&dev->dev,
188 "%u:%d: cannot create sequencer device\n",
189 ctrlif, interface);
Daniel Macke5779992010-03-04 19:46:13 +0100190 return -EINVAL;
191 }
192 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
193
194 return 0;
195 }
196
197 if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
198 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
199 altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100200 dev_dbg(&dev->dev,
201 "%u:%d: skipping non-supported interface %d\n",
202 ctrlif, interface, altsd->bInterfaceClass);
Daniel Macke5779992010-03-04 19:46:13 +0100203 /* skip non-supported classes */
204 return -EINVAL;
205 }
206
207 if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100208 dev_err(&dev->dev, "low speed audio streaming not supported\n");
Daniel Macke5779992010-03-04 19:46:13 +0100209 return -EINVAL;
210 }
211
Daniel Macke8e8bab2011-09-12 18:54:12 +0200212 if (! snd_usb_parse_audio_interface(chip, interface)) {
Daniel Macke5779992010-03-04 19:46:13 +0100213 usb_set_interface(dev, interface, 0); /* reset the current interface */
214 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
Daniel Macke5779992010-03-04 19:46:13 +0100215 }
216
217 return 0;
218}
219
220/*
221 * parse audio control descriptor and create pcm/midi streams
222 */
223static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
224{
225 struct usb_device *dev = chip->dev;
226 struct usb_host_interface *host_iface;
227 struct usb_interface_descriptor *altsd;
Daniel Macke5779992010-03-04 19:46:13 +0100228 int i, protocol;
229
230 /* find audiocontrol interface */
231 host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
Daniel Macke5779992010-03-04 19:46:13 +0100232 altsd = get_iface_desc(host_iface);
233 protocol = altsd->bInterfaceProtocol;
234
Daniel Macke5779992010-03-04 19:46:13 +0100235 switch (protocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +0200236 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100237 dev_warn(&dev->dev,
238 "unknown interface protocol %#02x, assuming v1\n",
239 protocol);
Clemens Ladischa2acad82010-09-03 10:53:11 +0200240 /* fall through */
241
Daniel Macke5779992010-03-04 19:46:13 +0100242 case UAC_VERSION_1: {
Jorge Sanjuan3763f612018-05-04 04:24:01 +0300243 struct uac1_ac_header_descriptor *h1;
244 int rest_bytes;
245
246 h1 = snd_usb_find_csint_desc(host_iface->extra,
247 host_iface->extralen,
248 NULL, UAC_HEADER);
Takashi Iwai378f9df2019-01-02 17:12:21 +0100249 if (!h1 || h1->bLength < sizeof(*h1)) {
Jorge Sanjuan3763f612018-05-04 04:24:01 +0300250 dev_err(&dev->dev, "cannot find UAC_HEADER\n");
251 return -EINVAL;
252 }
253
254 rest_bytes = (void *)(host_iface->extra +
255 host_iface->extralen) - (void *)h1;
256
257 /* just to be sure -- this shouldn't hit at all */
258 if (rest_bytes <= 0) {
259 dev_err(&dev->dev, "invalid control header\n");
260 return -EINVAL;
261 }
Daniel Macke5779992010-03-04 19:46:13 +0100262
Takashi Iwaibfc81a82017-09-22 16:18:53 +0200263 if (rest_bytes < sizeof(*h1)) {
264 dev_err(&dev->dev, "too short v1 buffer descriptor\n");
265 return -EINVAL;
266 }
267
Daniel Macke5779992010-03-04 19:46:13 +0100268 if (!h1->bInCollection) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100269 dev_info(&dev->dev, "skipping empty audio interface (v1)\n");
Daniel Macke5779992010-03-04 19:46:13 +0100270 return -EINVAL;
271 }
272
Takashi Iwaibfc81a82017-09-22 16:18:53 +0200273 if (rest_bytes < h1->bLength) {
274 dev_err(&dev->dev, "invalid buffer length (v1)\n");
275 return -EINVAL;
276 }
277
Daniel Macke5779992010-03-04 19:46:13 +0100278 if (h1->bLength < sizeof(*h1) + h1->bInCollection) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100279 dev_err(&dev->dev, "invalid UAC_HEADER (v1)\n");
Daniel Macke5779992010-03-04 19:46:13 +0100280 return -EINVAL;
281 }
282
283 for (i = 0; i < h1->bInCollection; i++)
284 snd_usb_create_stream(chip, ctrlif, h1->baInterfaceNr[i]);
285
286 break;
287 }
288
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200289 case UAC_VERSION_2:
290 case UAC_VERSION_3: {
Daniel Macke5779992010-03-04 19:46:13 +0100291 struct usb_interface_assoc_descriptor *assoc =
292 usb_ifnum_to_if(dev, ctrlif)->intf_assoc;
293
294 if (!assoc) {
Clemens Ladisch281a6ac2013-03-11 20:15:34 +0100295 /*
296 * Firmware writers cannot count to three. So to find
297 * the IAD on the NuForce UDH-100, also check the next
298 * interface.
299 */
300 struct usb_interface *iface =
301 usb_ifnum_to_if(dev, ctrlif + 1);
302 if (iface &&
303 iface->intf_assoc &&
304 iface->intf_assoc->bFunctionClass == USB_CLASS_AUDIO &&
305 iface->intf_assoc->bFunctionProtocol == UAC_VERSION_2)
306 assoc = iface->intf_assoc;
307 }
308
309 if (!assoc) {
Ruslan Bilovol9a2fe9b2018-03-21 02:03:59 +0200310 dev_err(&dev->dev, "Audio class v2/v3 interfaces need an interface association\n");
Daniel Macke5779992010-03-04 19:46:13 +0100311 return -EINVAL;
312 }
313
Ruslan Bilovol17156f22018-05-04 04:24:04 +0300314 if (protocol == UAC_VERSION_3) {
315 int badd = assoc->bFunctionSubClass;
316
317 if (badd != UAC3_FUNCTION_SUBCLASS_FULL_ADC_3_0 &&
318 (badd < UAC3_FUNCTION_SUBCLASS_GENERIC_IO ||
319 badd > UAC3_FUNCTION_SUBCLASS_SPEAKERPHONE)) {
320 dev_err(&dev->dev,
321 "Unsupported UAC3 BADD profile\n");
322 return -EINVAL;
323 }
324
325 chip->badd_profile = badd;
326 }
327
Daniel Macke5779992010-03-04 19:46:13 +0100328 for (i = 0; i < assoc->bInterfaceCount; i++) {
329 int intf = assoc->bFirstInterface + i;
330
331 if (intf != ctrlif)
332 snd_usb_create_stream(chip, ctrlif, intf);
333 }
334
335 break;
336 }
Daniel Macke5779992010-03-04 19:46:13 +0100337 }
338
339 return 0;
340}
341
342/*
343 * free the chip instance
344 *
345 * here we have to do not much, since pcm and controls are already freed
346 *
347 */
348
Takashi Iwai011ae2b2018-05-27 15:07:01 +0200349static void snd_usb_audio_free(struct snd_card *card)
Daniel Macke5779992010-03-04 19:46:13 +0100350{
Takashi Iwai011ae2b2018-05-27 15:07:01 +0200351 struct snd_usb_audio *chip = card->private_data;
Takashi Iwaia6cece92014-10-31 11:24:32 +0100352 struct snd_usb_endpoint *ep, *n;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200353
Takashi Iwaia6cece92014-10-31 11:24:32 +0100354 list_for_each_entry_safe(ep, n, &chip->ep_list, list)
355 snd_usb_endpoint_free(ep);
Takashi Iwai92a586b2014-06-25 14:24:47 +0200356
Daniel Mack596580d2012-04-12 13:51:10 +0200357 mutex_destroy(&chip->mutex);
Takashi Iwai6ff1a252016-11-14 21:46:47 +0100358 if (!atomic_read(&chip->shutdown))
359 dev_set_drvdata(&chip->dev->dev, NULL);
Daniel Macke5779992010-03-04 19:46:13 +0100360}
361
Takashi Iwai07eca5f2018-05-02 14:45:37 +0200362static void usb_audio_make_shortname(struct usb_device *dev,
363 struct snd_usb_audio *chip,
364 const struct snd_usb_audio_quirk *quirk)
365{
366 struct snd_card *card = chip->card;
367
368 if (quirk && quirk->product_name && *quirk->product_name) {
369 strlcpy(card->shortname, quirk->product_name,
370 sizeof(card->shortname));
371 return;
372 }
373
374 /* retrieve the device string as shortname */
375 if (!dev->descriptor.iProduct ||
376 usb_string(dev, dev->descriptor.iProduct,
377 card->shortname, sizeof(card->shortname)) <= 0) {
378 /* no name available from anywhere, so use ID */
379 sprintf(card->shortname, "USB Device %#04x:%#04x",
380 USB_ID_VENDOR(chip->usb_id),
381 USB_ID_PRODUCT(chip->usb_id));
382 }
383
384 strim(card->shortname);
385}
386
387static void usb_audio_make_longname(struct usb_device *dev,
388 struct snd_usb_audio *chip,
389 const struct snd_usb_audio_quirk *quirk)
390{
391 struct snd_card *card = chip->card;
392 int len;
393
394 /* shortcut - if any pre-defined string is given, use it */
395 if (quirk && quirk->profile_name && *quirk->profile_name) {
396 strlcpy(card->longname, quirk->profile_name,
397 sizeof(card->longname));
398 return;
399 }
400
401 if (quirk && quirk->vendor_name && *quirk->vendor_name) {
402 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
403 } else {
404 /* retrieve the vendor and device strings as longname */
405 if (dev->descriptor.iManufacturer)
406 len = usb_string(dev, dev->descriptor.iManufacturer,
407 card->longname, sizeof(card->longname));
408 else
409 len = 0;
410 /* we don't really care if there isn't any vendor string */
411 }
412 if (len > 0) {
413 strim(card->longname);
414 if (*card->longname)
415 strlcat(card->longname, " ", sizeof(card->longname));
416 }
417
418 strlcat(card->longname, card->shortname, sizeof(card->longname));
419
420 len = strlcat(card->longname, " at ", sizeof(card->longname));
421
422 if (len < sizeof(card->longname))
423 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
424
425 switch (snd_usb_get_speed(dev)) {
426 case USB_SPEED_LOW:
427 strlcat(card->longname, ", low speed", sizeof(card->longname));
428 break;
429 case USB_SPEED_FULL:
430 strlcat(card->longname, ", full speed", sizeof(card->longname));
431 break;
432 case USB_SPEED_HIGH:
433 strlcat(card->longname, ", high speed", sizeof(card->longname));
434 break;
435 case USB_SPEED_SUPER:
436 strlcat(card->longname, ", super speed", sizeof(card->longname));
437 break;
438 case USB_SPEED_SUPER_PLUS:
439 strlcat(card->longname, ", super speed plus", sizeof(card->longname));
440 break;
441 default:
442 break;
443 }
444}
445
Daniel Macke5779992010-03-04 19:46:13 +0100446/*
447 * create a chip instance and set its names.
448 */
Takashi Iwai874b8d42014-01-29 14:22:20 +0100449static int snd_usb_audio_create(struct usb_interface *intf,
450 struct usb_device *dev, int idx,
Daniel Macke5779992010-03-04 19:46:13 +0100451 const struct snd_usb_audio_quirk *quirk,
Takashi Iwai03a1f482017-03-31 11:19:19 +0200452 unsigned int usb_id,
Daniel Macke5779992010-03-04 19:46:13 +0100453 struct snd_usb_audio **rchip)
454{
455 struct snd_card *card;
456 struct snd_usb_audio *chip;
Takashi Iwai07eca5f2018-05-02 14:45:37 +0200457 int err;
Daniel Macke5779992010-03-04 19:46:13 +0100458 char component[14];
Daniel Macke5779992010-03-04 19:46:13 +0100459
460 *rchip = NULL;
461
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700462 switch (snd_usb_get_speed(dev)) {
463 case USB_SPEED_LOW:
464 case USB_SPEED_FULL:
465 case USB_SPEED_HIGH:
Thomas Pugliesedf3774c2013-10-01 14:32:15 -0500466 case USB_SPEED_WIRELESS:
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700467 case USB_SPEED_SUPER:
Oliver Neukum748a1cc2016-05-04 14:18:39 +0200468 case USB_SPEED_SUPER_PLUS:
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700469 break;
470 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100471 dev_err(&dev->dev, "unknown device speed %d\n", snd_usb_get_speed(dev));
Daniel Macke5779992010-03-04 19:46:13 +0100472 return -ENXIO;
473 }
474
Takashi Iwai874b8d42014-01-29 14:22:20 +0100475 err = snd_card_new(&intf->dev, index[idx], id[idx], THIS_MODULE,
Takashi Iwai011ae2b2018-05-27 15:07:01 +0200476 sizeof(*chip), &card);
Daniel Macke5779992010-03-04 19:46:13 +0100477 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100478 dev_err(&dev->dev, "cannot create card instance %d\n", idx);
Daniel Macke5779992010-03-04 19:46:13 +0100479 return err;
480 }
481
Takashi Iwai011ae2b2018-05-27 15:07:01 +0200482 chip = card->private_data;
Daniel Mack596580d2012-04-12 13:51:10 +0200483 mutex_init(&chip->mutex);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200484 init_waitqueue_head(&chip->shutdown_wait);
Daniel Macke5779992010-03-04 19:46:13 +0100485 chip->index = idx;
486 chip->dev = dev;
487 chip->card = card;
488 chip->setup = device_setup[idx];
Eldad Zackef02e292013-04-03 23:18:56 +0200489 chip->autoclock = autoclock;
Takashi Iwaia6da4992015-08-26 10:20:59 +0200490 atomic_set(&chip->active, 1); /* avoid autopm during probing */
Takashi Iwai47ab1542015-08-25 16:09:00 +0200491 atomic_set(&chip->usage_count, 0);
492 atomic_set(&chip->shutdown, 0);
Daniel Macke5779992010-03-04 19:46:13 +0100493
Takashi Iwai03a1f482017-03-31 11:19:19 +0200494 chip->usb_id = usb_id;
Daniel Macke5779992010-03-04 19:46:13 +0100495 INIT_LIST_HEAD(&chip->pcm_list);
Daniel Mackedcd3632012-04-12 13:51:12 +0200496 INIT_LIST_HEAD(&chip->ep_list);
Daniel Macke5779992010-03-04 19:46:13 +0100497 INIT_LIST_HEAD(&chip->midi_list);
498 INIT_LIST_HEAD(&chip->mixer_list);
499
Takashi Iwai011ae2b2018-05-27 15:07:01 +0200500 card->private_free = snd_usb_audio_free;
Daniel Macke5779992010-03-04 19:46:13 +0100501
502 strcpy(card->driver, "USB-Audio");
503 sprintf(component, "USB%04x:%04x",
504 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
505 snd_component_add(card, component);
506
Takashi Iwai07eca5f2018-05-02 14:45:37 +0200507 usb_audio_make_shortname(dev, chip, quirk);
508 usb_audio_make_longname(dev, chip, quirk);
Daniel Macke5779992010-03-04 19:46:13 +0100509
510 snd_usb_audio_create_proc(chip);
511
512 *rchip = chip;
513 return 0;
514}
515
Takashi Iwaie2703362016-01-11 14:39:12 +0100516/* look for a matching quirk alias id */
517static bool get_alias_id(struct usb_device *dev, unsigned int *id)
518{
519 int i;
520 unsigned int src, dst;
521
522 for (i = 0; i < ARRAY_SIZE(quirk_alias); i++) {
523 if (!quirk_alias[i] ||
524 sscanf(quirk_alias[i], "%x:%x", &src, &dst) != 2 ||
525 src != *id)
526 continue;
527 dev_info(&dev->dev,
528 "device (%04x:%04x): applying quirk alias %04x:%04x\n",
529 USB_ID_VENDOR(*id), USB_ID_PRODUCT(*id),
530 USB_ID_VENDOR(dst), USB_ID_PRODUCT(dst));
531 *id = dst;
532 return true;
533 }
534
535 return false;
536}
537
Arvind Yadav8824ae22017-08-06 12:18:56 +0530538static const struct usb_device_id usb_audio_ids[]; /* defined below */
Takashi Iwaie2703362016-01-11 14:39:12 +0100539
540/* look for the corresponding quirk */
541static const struct snd_usb_audio_quirk *
542get_alias_quirk(struct usb_device *dev, unsigned int id)
543{
544 const struct usb_device_id *p;
545
546 for (p = usb_audio_ids; p->match_flags; p++) {
547 /* FIXME: this checks only vendor:product pair in the list */
548 if ((p->match_flags & USB_DEVICE_ID_MATCH_DEVICE) ==
549 USB_DEVICE_ID_MATCH_DEVICE &&
550 p->idVendor == USB_ID_VENDOR(id) &&
551 p->idProduct == USB_ID_PRODUCT(id))
552 return (const struct snd_usb_audio_quirk *)p->driver_info;
553 }
554
555 return NULL;
556}
557
Daniel Macke5779992010-03-04 19:46:13 +0100558/*
559 * probe the active usb device
560 *
561 * note that this can be called multiple times per a device, when it
562 * includes multiple audio control interfaces.
563 *
564 * thus we check the usb device pointer and creates the card instance
565 * only at the first time. the successive calls of this function will
566 * append the pcm interface to the corresponding card.
567 */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100568static int usb_audio_probe(struct usb_interface *intf,
569 const struct usb_device_id *usb_id)
Daniel Macke5779992010-03-04 19:46:13 +0100570{
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100571 struct usb_device *dev = interface_to_usbdev(intf);
572 const struct snd_usb_audio_quirk *quirk =
573 (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Daniel Macke5779992010-03-04 19:46:13 +0100574 struct snd_usb_audio *chip;
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100575 int i, err;
Daniel Macke5779992010-03-04 19:46:13 +0100576 struct usb_host_interface *alts;
577 int ifnum;
578 u32 id;
579
580 alts = &intf->altsetting[0];
581 ifnum = get_iface_desc(alts)->bInterfaceNumber;
582 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
583 le16_to_cpu(dev->descriptor.idProduct));
Takashi Iwaie2703362016-01-11 14:39:12 +0100584 if (get_alias_id(dev, &id))
585 quirk = get_alias_quirk(dev, id);
Daniel Macke5779992010-03-04 19:46:13 +0100586 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100587 return -ENXIO;
Daniel Macke5779992010-03-04 19:46:13 +0100588
Takashi Iwai79289e22016-01-11 11:33:34 +0100589 err = snd_usb_apply_boot_quirk(dev, intf, quirk, id);
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100590 if (err < 0)
591 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100592
593 /*
594 * found a config. now register to ALSA
595 */
596
597 /* check whether it's already registered */
598 chip = NULL;
599 mutex_lock(&register_mutex);
600 for (i = 0; i < SNDRV_CARDS; i++) {
601 if (usb_chip[i] && usb_chip[i]->dev == dev) {
Takashi Iwai47ab1542015-08-25 16:09:00 +0200602 if (atomic_read(&usb_chip[i]->shutdown)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100603 dev_err(&dev->dev, "USB device is in the shutdown state, cannot create a card instance\n");
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100604 err = -EIO;
Daniel Macke5779992010-03-04 19:46:13 +0100605 goto __error;
606 }
607 chip = usb_chip[i];
Takashi Iwaia6da4992015-08-26 10:20:59 +0200608 atomic_inc(&chip->active); /* avoid autopm */
Daniel Macke5779992010-03-04 19:46:13 +0100609 break;
610 }
611 }
612 if (! chip) {
613 /* it's a fresh one.
614 * now look for an empty slot and create a new card instance
615 */
616 for (i = 0; i < SNDRV_CARDS; i++)
Tamaki Nishino108884e2017-11-30 20:27:52 +0900617 if (!usb_chip[i] &&
Daniel Macke5779992010-03-04 19:46:13 +0100618 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
619 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Tamaki Nishino108884e2017-11-30 20:27:52 +0900620 if (enable[i]) {
621 err = snd_usb_audio_create(intf, dev, i, quirk,
622 id, &chip);
623 if (err < 0)
624 goto __error;
625 chip->pm_intf = intf;
626 break;
627 } else if (vid[i] != -1 || pid[i] != -1) {
628 dev_info(&dev->dev,
629 "device (%04x:%04x) is disabled\n",
630 USB_ID_VENDOR(id),
631 USB_ID_PRODUCT(id));
632 err = -ENOENT;
Daniel Macke5779992010-03-04 19:46:13 +0100633 goto __error;
Tamaki Nishino108884e2017-11-30 20:27:52 +0900634 }
Daniel Macke5779992010-03-04 19:46:13 +0100635 }
636 if (!chip) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100637 dev_err(&dev->dev, "no available usb audio device\n");
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100638 err = -ENODEV;
Daniel Macke5779992010-03-04 19:46:13 +0100639 goto __error;
640 }
641 }
Kazuki Oikawa76df5292016-07-18 01:16:15 +0900642 dev_set_drvdata(&dev->dev, chip);
Daniel Macke5779992010-03-04 19:46:13 +0100643
Daniel Mack7b6717e2010-09-02 17:13:15 +0800644 /*
645 * For devices with more than one control interface, we assume the
646 * first contains the audio controls. We might need a more specific
647 * check here in the future.
648 */
649 if (!chip->ctrl_intf)
650 chip->ctrl_intf = alts;
Daniel Mack79f920f2010-05-31 14:51:31 +0200651
Daniel Mack5875c2c2011-05-25 09:08:59 +0200652 chip->txfr_quirk = 0;
653 err = 1; /* continue */
654 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
655 /* need some special handlings */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100656 err = snd_usb_create_quirk(chip, intf, &usb_audio_driver, quirk);
657 if (err < 0)
Daniel Mack5875c2c2011-05-25 09:08:59 +0200658 goto __error;
659 }
660
Daniel Macke5779992010-03-04 19:46:13 +0100661 if (err > 0) {
662 /* create normal USB audio interfaces */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100663 err = snd_usb_create_streams(chip, ifnum);
664 if (err < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100665 goto __error;
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100666 err = snd_usb_create_mixer(chip, ifnum, ignore_ctl_error);
667 if (err < 0)
668 goto __error;
Daniel Macke5779992010-03-04 19:46:13 +0100669 }
670
671 /* we are allowed to call snd_card_register() many times */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100672 err = snd_card_register(chip->card);
673 if (err < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100674 goto __error;
Daniel Macke5779992010-03-04 19:46:13 +0100675
676 usb_chip[chip->index] = chip;
677 chip->num_interfaces++;
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100678 usb_set_intfdata(intf, chip);
Takashi Iwaia6da4992015-08-26 10:20:59 +0200679 atomic_dec(&chip->active);
Daniel Macke5779992010-03-04 19:46:13 +0100680 mutex_unlock(&register_mutex);
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100681 return 0;
Daniel Macke5779992010-03-04 19:46:13 +0100682
683 __error:
Thomas Pfaff61a6a102011-09-26 15:43:59 +0200684 if (chip) {
Hui Penga7e719a2018-12-03 16:09:34 +0100685 /* chip->active is inside the chip->card object,
686 * decrement before memory is possibly returned.
687 */
688 atomic_dec(&chip->active);
Thomas Pfaff61a6a102011-09-26 15:43:59 +0200689 if (!chip->num_interfaces)
690 snd_card_free(chip->card);
Thomas Pfaff61a6a102011-09-26 15:43:59 +0200691 }
Daniel Macke5779992010-03-04 19:46:13 +0100692 mutex_unlock(&register_mutex);
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100693 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100694}
695
696/*
697 * we need to take care of counter, since disconnection can be called also
698 * many times as well as usb_audio_probe().
699 */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100700static void usb_audio_disconnect(struct usb_interface *intf)
Daniel Macke5779992010-03-04 19:46:13 +0100701{
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100702 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Daniel Macke5779992010-03-04 19:46:13 +0100703 struct snd_card *card;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200704 struct list_head *p;
Daniel Macke5779992010-03-04 19:46:13 +0100705
Pavel Roskin81b85b62011-07-06 11:20:13 -0400706 if (chip == (void *)-1L)
Daniel Macke5779992010-03-04 19:46:13 +0100707 return;
708
Daniel Macke5779992010-03-04 19:46:13 +0100709 card = chip->card;
Takashi Iwai10e44232012-11-13 11:22:48 +0100710
711 mutex_lock(&register_mutex);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200712 if (atomic_inc_return(&chip->shutdown) == 1) {
Takashi Iwaia6cece92014-10-31 11:24:32 +0100713 struct snd_usb_stream *as;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200714 struct snd_usb_endpoint *ep;
Takashi Iwaia6cece92014-10-31 11:24:32 +0100715 struct usb_mixer_interface *mixer;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200716
Takashi Iwai47ab1542015-08-25 16:09:00 +0200717 /* wait until all pending tasks done;
718 * they are protected by snd_usb_lock_shutdown()
719 */
720 wait_event(chip->shutdown_wait,
721 !atomic_read(&chip->usage_count));
Daniel Macke5779992010-03-04 19:46:13 +0100722 snd_card_disconnect(card);
723 /* release the pcm resources */
Takashi Iwaia6cece92014-10-31 11:24:32 +0100724 list_for_each_entry(as, &chip->pcm_list, list) {
725 snd_usb_stream_disconnect(as);
Daniel Macke5779992010-03-04 19:46:13 +0100726 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200727 /* release the endpoint resources */
Takashi Iwai92a586b2014-06-25 14:24:47 +0200728 list_for_each_entry(ep, &chip->ep_list, list) {
729 snd_usb_endpoint_release(ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200730 }
Daniel Macke5779992010-03-04 19:46:13 +0100731 /* release the midi resources */
732 list_for_each(p, &chip->midi_list) {
733 snd_usbmidi_disconnect(p);
734 }
735 /* release mixer resources */
Takashi Iwaia6cece92014-10-31 11:24:32 +0100736 list_for_each_entry(mixer, &chip->mixer_list, list) {
737 snd_usb_mixer_disconnect(mixer);
Daniel Macke5779992010-03-04 19:46:13 +0100738 }
Takashi Iwai0725dda2014-11-05 15:08:49 +0100739 }
740
741 chip->num_interfaces--;
742 if (chip->num_interfaces <= 0) {
Daniel Macke5779992010-03-04 19:46:13 +0100743 usb_chip[chip->index] = NULL;
744 mutex_unlock(&register_mutex);
745 snd_card_free_when_closed(card);
746 } else {
747 mutex_unlock(&register_mutex);
748 }
749}
750
Takashi Iwai47ab1542015-08-25 16:09:00 +0200751/* lock the shutdown (disconnect) task and autoresume */
752int snd_usb_lock_shutdown(struct snd_usb_audio *chip)
753{
754 int err;
755
756 atomic_inc(&chip->usage_count);
757 if (atomic_read(&chip->shutdown)) {
758 err = -EIO;
759 goto error;
760 }
761 err = snd_usb_autoresume(chip);
762 if (err < 0)
763 goto error;
764 return 0;
765
766 error:
767 if (atomic_dec_and_test(&chip->usage_count))
768 wake_up(&chip->shutdown_wait);
769 return err;
770}
771
772/* autosuspend and unlock the shutdown */
773void snd_usb_unlock_shutdown(struct snd_usb_audio *chip)
774{
775 snd_usb_autosuspend(chip);
776 if (atomic_dec_and_test(&chip->usage_count))
777 wake_up(&chip->shutdown_wait);
778}
779
Daniel Macke5779992010-03-04 19:46:13 +0100780#ifdef CONFIG_PM
Oliver Neukum88a85162011-03-11 14:51:12 +0100781
782int snd_usb_autoresume(struct snd_usb_audio *chip)
783{
Takashi Iwai47ab1542015-08-25 16:09:00 +0200784 if (atomic_read(&chip->shutdown))
785 return -EIO;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200786 if (atomic_inc_return(&chip->active) == 1)
787 return usb_autopm_get_interface(chip->pm_intf);
788 return 0;
Oliver Neukum88a85162011-03-11 14:51:12 +0100789}
790
791void snd_usb_autosuspend(struct snd_usb_audio *chip)
792{
Takashi Iwai5c06d682016-01-12 14:03:33 +0100793 if (atomic_read(&chip->shutdown))
794 return;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200795 if (atomic_dec_and_test(&chip->active))
Oliver Neukum88a85162011-03-11 14:51:12 +0100796 usb_autopm_put_interface(chip->pm_intf);
797}
798
Daniel Macke5779992010-03-04 19:46:13 +0100799static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
800{
801 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Daniel Macke5779992010-03-04 19:46:13 +0100802 struct snd_usb_stream *as;
Oliver Neukumedf7de32011-03-11 13:19:43 +0100803 struct usb_mixer_interface *mixer;
Adam Goodef7881e52014-08-05 12:44:50 -0400804 struct list_head *p;
Daniel Macke5779992010-03-04 19:46:13 +0100805
806 if (chip == (void *)-1L)
807 return 0;
808
Takashi Iwai06622922015-08-26 10:23:26 +0200809 chip->autosuspended = !!PMSG_IS_AUTO(message);
810 if (!chip->autosuspended)
Oliver Neukum88a85162011-03-11 14:51:12 +0100811 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai06622922015-08-26 10:23:26 +0200812 if (!chip->num_suspended_intf++) {
813 list_for_each_entry(as, &chip->pcm_list, list) {
814 snd_pcm_suspend_all(as->pcm);
Jorge Sanjuan3f59aa12018-07-31 13:28:44 +0100815 snd_usb_pcm_suspend(as);
Takashi Iwai06622922015-08-26 10:23:26 +0200816 as->substream[0].need_setup_ep =
817 as->substream[1].need_setup_ep = true;
Antonio Ospiteaa53f982013-01-29 12:56:30 +0100818 }
Takashi Iwai06622922015-08-26 10:23:26 +0200819 list_for_each(p, &chip->midi_list)
820 snd_usbmidi_suspend(p);
Takashi Iwai1c53e722014-05-02 18:14:42 +0200821 list_for_each_entry(mixer, &chip->mixer_list, list)
822 snd_usb_mixer_suspend(mixer);
Takashi Iwai06622922015-08-26 10:23:26 +0200823 }
Oliver Neukum88a85162011-03-11 14:51:12 +0100824
Daniel Macke5779992010-03-04 19:46:13 +0100825 return 0;
826}
827
Takashi Iwai400362f2014-01-20 16:51:16 +0100828static int __usb_audio_resume(struct usb_interface *intf, bool reset_resume)
Daniel Macke5779992010-03-04 19:46:13 +0100829{
830 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Jorge Sanjuan3f59aa12018-07-31 13:28:44 +0100831 struct snd_usb_stream *as;
Oliver Neukumedf7de32011-03-11 13:19:43 +0100832 struct usb_mixer_interface *mixer;
Adam Goodef7881e52014-08-05 12:44:50 -0400833 struct list_head *p;
Oliver Neukum88a85162011-03-11 14:51:12 +0100834 int err = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100835
836 if (chip == (void *)-1L)
837 return 0;
838 if (--chip->num_suspended_intf)
839 return 0;
Takashi Iwai1ee23fe2014-05-02 18:17:06 +0200840
Takashi Iwai47ab1542015-08-25 16:09:00 +0200841 atomic_inc(&chip->active); /* avoid autopm */
Jorge Sanjuan3f59aa12018-07-31 13:28:44 +0100842
843 list_for_each_entry(as, &chip->pcm_list, list) {
844 err = snd_usb_pcm_resume(as);
845 if (err < 0)
846 goto err_out;
847 }
848
Daniel Macke5779992010-03-04 19:46:13 +0100849 /*
850 * ALSA leaves material resumption to user space
Oliver Neukumedf7de32011-03-11 13:19:43 +0100851 * we just notify and restart the mixers
Daniel Macke5779992010-03-04 19:46:13 +0100852 */
Oliver Neukum88a85162011-03-11 14:51:12 +0100853 list_for_each_entry(mixer, &chip->mixer_list, list) {
Takashi Iwai400362f2014-01-20 16:51:16 +0100854 err = snd_usb_mixer_resume(mixer, reset_resume);
Oliver Neukum88a85162011-03-11 14:51:12 +0100855 if (err < 0)
856 goto err_out;
857 }
Daniel Macke5779992010-03-04 19:46:13 +0100858
Adam Goodef7881e52014-08-05 12:44:50 -0400859 list_for_each(p, &chip->midi_list) {
860 snd_usbmidi_resume(p);
861 }
862
Oliver Neukum88a85162011-03-11 14:51:12 +0100863 if (!chip->autosuspended)
864 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
865 chip->autosuspended = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100866
Oliver Neukum88a85162011-03-11 14:51:12 +0100867err_out:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200868 atomic_dec(&chip->active); /* allow autopm after this point */
Oliver Neukum88a85162011-03-11 14:51:12 +0100869 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100870}
Takashi Iwai400362f2014-01-20 16:51:16 +0100871
872static int usb_audio_resume(struct usb_interface *intf)
873{
874 return __usb_audio_resume(intf, false);
875}
876
877static int usb_audio_reset_resume(struct usb_interface *intf)
878{
879 return __usb_audio_resume(intf, true);
880}
Randy Dunlap6407d472010-03-22 08:55:35 -0700881#else
882#define usb_audio_suspend NULL
883#define usb_audio_resume NULL
Takashi Iwai400362f2014-01-20 16:51:16 +0100884#define usb_audio_reset_resume NULL
Daniel Macke5779992010-03-04 19:46:13 +0100885#endif /* CONFIG_PM */
886
Arvind Yadav8824ae22017-08-06 12:18:56 +0530887static const struct usb_device_id usb_audio_ids [] = {
Daniel Macke5779992010-03-04 19:46:13 +0100888#include "quirks-table.h"
889 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
890 .bInterfaceClass = USB_CLASS_AUDIO,
891 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL },
892 { } /* Terminating entry */
893};
Eldad Zackf9d35432013-04-03 23:18:50 +0200894MODULE_DEVICE_TABLE(usb, usb_audio_ids);
Daniel Macke5779992010-03-04 19:46:13 +0100895
896/*
897 * entry point for linux usb interface
898 */
899
900static struct usb_driver usb_audio_driver = {
901 .name = "snd-usb-audio",
902 .probe = usb_audio_probe,
903 .disconnect = usb_audio_disconnect,
904 .suspend = usb_audio_suspend,
905 .resume = usb_audio_resume,
Takashi Iwai400362f2014-01-20 16:51:16 +0100906 .reset_resume = usb_audio_reset_resume,
Daniel Macke5779992010-03-04 19:46:13 +0100907 .id_table = usb_audio_ids,
Oliver Neukum88a85162011-03-11 14:51:12 +0100908 .supports_autosuspend = 1,
Daniel Macke5779992010-03-04 19:46:13 +0100909};
910
Sachin Kamat6b5a7c62013-10-09 17:22:32 +0530911module_usb_driver(usb_audio_driver);