blob: 8abe8bd41c3544b0adb2e9c4e25b7121909ead8b [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;
Takashi Iwai37b6d892017-09-22 16:18:53 +0200290 int rest_bytes;
Daniel Macke5779992010-03-04 19:46:13 +0100291
Mayank Rana5d05d2b2013-10-18 14:46:36 +0530292 usb_iface = usb_ifnum_to_if(dev, ctrlif);
293 if (!usb_iface) {
294 snd_printk(KERN_ERR "%d:%u : does not exist\n",
295 dev->devnum, ctrlif);
296 return -EINVAL;
297 }
298
Daniel Macke5779992010-03-04 19:46:13 +0100299 /* find audiocontrol interface */
Mayank Rana5d05d2b2013-10-18 14:46:36 +0530300 host_iface = &usb_iface->altsetting[0];
301 if (!host_iface) {
302 snd_printk(KERN_ERR "Audio Control interface is not available.");
303 return -EINVAL;
304 }
305
Daniel Macke5779992010-03-04 19:46:13 +0100306 altsd = get_iface_desc(host_iface);
307 protocol = altsd->bInterfaceProtocol;
308
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530309 /*
310 * UAC 1.0 devices use AC HEADER Desc for linking AS interfaces;
311 * UAC 2.0 and 3.0 devices use IAD for linking AS interfaces
312 */
Daniel Macke5779992010-03-04 19:46:13 +0100313
314 switch (protocol) {
Clemens Ladischa2acad82010-09-03 10:53:11 +0200315 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100316 dev_warn(&dev->dev,
317 "unknown interface protocol %#02x, assuming v1\n",
318 protocol);
Clemens Ladischa2acad82010-09-03 10:53:11 +0200319 /* fall through */
320
Daniel Macke5779992010-03-04 19:46:13 +0100321 case UAC_VERSION_1: {
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530322 void *control_header;
323 struct uac1_ac_header_descriptor *h1;
Daniel Macke5779992010-03-04 19:46:13 +0100324
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530325 control_header = snd_usb_find_csint_desc(host_iface->extra,
326 host_iface->extralen, NULL, UAC_HEADER);
327 if (!control_header) {
328 dev_err(&dev->dev, "cannot find UAC_HEADER\n");
329 return -EINVAL;
330 }
331
Kyle Yan1bca48e2017-10-17 14:50:01 -0700332 rest_bytes = (void *)(host_iface->extra + host_iface->extralen) -
333 control_header;
334
335 /* just to be sure -- this shouldn't hit at all */
336 if (rest_bytes <= 0) {
337 dev_err(&dev->dev, "invalid control header\n");
338 return -EINVAL;
339 }
340
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530341 h1 = control_header;
Takashi Iwai37b6d892017-09-22 16:18:53 +0200342 if (rest_bytes < sizeof(*h1)) {
343 dev_err(&dev->dev, "too short v1 buffer descriptor\n");
344 return -EINVAL;
345 }
346
Daniel Macke5779992010-03-04 19:46:13 +0100347 if (!h1->bInCollection) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100348 dev_info(&dev->dev, "skipping empty audio interface (v1)\n");
Daniel Macke5779992010-03-04 19:46:13 +0100349 return -EINVAL;
350 }
351
Takashi Iwai37b6d892017-09-22 16:18:53 +0200352 if (rest_bytes < h1->bLength) {
353 dev_err(&dev->dev, "invalid buffer length (v1)\n");
354 return -EINVAL;
355 }
356
Daniel Macke5779992010-03-04 19:46:13 +0100357 if (h1->bLength < sizeof(*h1) + h1->bInCollection) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100358 dev_err(&dev->dev, "invalid UAC_HEADER (v1)\n");
Daniel Macke5779992010-03-04 19:46:13 +0100359 return -EINVAL;
360 }
361
362 for (i = 0; i < h1->bInCollection; i++)
363 snd_usb_create_stream(chip, ctrlif, h1->baInterfaceNr[i]);
364
365 break;
366 }
367
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530368 case UAC_VERSION_2:
369 case UAC_VERSION_3: {
Daniel Macke5779992010-03-04 19:46:13 +0100370 struct usb_interface_assoc_descriptor *assoc =
Mayank Rana5d05d2b2013-10-18 14:46:36 +0530371 usb_iface->intf_assoc;
Daniel Macke5779992010-03-04 19:46:13 +0100372 if (!assoc) {
Clemens Ladisch281a6ac2013-03-11 20:15:34 +0100373 /*
374 * Firmware writers cannot count to three. So to find
375 * the IAD on the NuForce UDH-100, also check the next
376 * interface.
377 */
378 struct usb_interface *iface =
379 usb_ifnum_to_if(dev, ctrlif + 1);
380 if (iface &&
381 iface->intf_assoc &&
382 iface->intf_assoc->bFunctionClass == USB_CLASS_AUDIO &&
383 iface->intf_assoc->bFunctionProtocol == UAC_VERSION_2)
384 assoc = iface->intf_assoc;
385 }
386
387 if (!assoc) {
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530388 dev_err(&dev->dev, "Audio class V%d interfaces need an interface association\n",
389 protocol);
Daniel Macke5779992010-03-04 19:46:13 +0100390 return -EINVAL;
391 }
392
Daniel Macke5779992010-03-04 19:46:13 +0100393 for (i = 0; i < assoc->bInterfaceCount; i++) {
394 int intf = assoc->bFirstInterface + i;
395
396 if (intf != ctrlif)
397 snd_usb_create_stream(chip, ctrlif, intf);
398 }
399
400 break;
401 }
Daniel Macke5779992010-03-04 19:46:13 +0100402 }
403
404 return 0;
405}
406
407/*
408 * free the chip instance
409 *
410 * here we have to do not much, since pcm and controls are already freed
411 *
412 */
413
414static int snd_usb_audio_free(struct snd_usb_audio *chip)
415{
Takashi Iwaia6cece92014-10-31 11:24:32 +0100416 struct snd_usb_endpoint *ep, *n;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200417
Takashi Iwaia6cece92014-10-31 11:24:32 +0100418 list_for_each_entry_safe(ep, n, &chip->ep_list, list)
419 snd_usb_endpoint_free(ep);
Takashi Iwai92a586b2014-06-25 14:24:47 +0200420
Hemant Kumar0ef9fbb2016-01-28 11:41:42 -0800421 mutex_destroy(&chip->dev_lock);
Daniel Mack596580d2012-04-12 13:51:10 +0200422 mutex_destroy(&chip->mutex);
Takashi Iwai6ff1a252016-11-14 21:46:47 +0100423 if (!atomic_read(&chip->shutdown))
424 dev_set_drvdata(&chip->dev->dev, NULL);
Daniel Macke5779992010-03-04 19:46:13 +0100425 kfree(chip);
426 return 0;
427}
428
429static int snd_usb_audio_dev_free(struct snd_device *device)
430{
431 struct snd_usb_audio *chip = device->device_data;
432 return snd_usb_audio_free(chip);
433}
434
Daniel Macke5779992010-03-04 19:46:13 +0100435/*
436 * create a chip instance and set its names.
437 */
Takashi Iwai874b8d42014-01-29 14:22:20 +0100438static int snd_usb_audio_create(struct usb_interface *intf,
439 struct usb_device *dev, int idx,
Daniel Macke5779992010-03-04 19:46:13 +0100440 const struct snd_usb_audio_quirk *quirk,
441 struct snd_usb_audio **rchip)
442{
443 struct snd_card *card;
444 struct snd_usb_audio *chip;
445 int err, len;
446 char component[14];
447 static struct snd_device_ops ops = {
448 .dev_free = snd_usb_audio_dev_free,
449 };
450
451 *rchip = NULL;
452
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700453 switch (snd_usb_get_speed(dev)) {
454 case USB_SPEED_LOW:
455 case USB_SPEED_FULL:
456 case USB_SPEED_HIGH:
Thomas Pugliesedf3774c2013-10-01 14:32:15 -0500457 case USB_SPEED_WIRELESS:
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700458 case USB_SPEED_SUPER:
Oliver Neukum748a1cc2016-05-04 14:18:39 +0200459 case USB_SPEED_SUPER_PLUS:
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700460 break;
461 default:
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100462 dev_err(&dev->dev, "unknown device speed %d\n", snd_usb_get_speed(dev));
Daniel Macke5779992010-03-04 19:46:13 +0100463 return -ENXIO;
464 }
465
Takashi Iwai874b8d42014-01-29 14:22:20 +0100466 err = snd_card_new(&intf->dev, index[idx], id[idx], THIS_MODULE,
467 0, &card);
Daniel Macke5779992010-03-04 19:46:13 +0100468 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100469 dev_err(&dev->dev, "cannot create card instance %d\n", idx);
Daniel Macke5779992010-03-04 19:46:13 +0100470 return err;
471 }
472
473 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
474 if (! chip) {
475 snd_card_free(card);
476 return -ENOMEM;
477 }
478
Daniel Mack596580d2012-04-12 13:51:10 +0200479 mutex_init(&chip->mutex);
Hemant Kumar0ef9fbb2016-01-28 11:41:42 -0800480 mutex_init(&chip->dev_lock);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200481 init_waitqueue_head(&chip->shutdown_wait);
Daniel Macke5779992010-03-04 19:46:13 +0100482 chip->index = idx;
483 chip->dev = dev;
484 chip->card = card;
485 chip->setup = device_setup[idx];
Eldad Zackef02e292013-04-03 23:18:56 +0200486 chip->autoclock = autoclock;
Takashi Iwaia6da4992015-08-26 10:20:59 +0200487 atomic_set(&chip->active, 1); /* avoid autopm during probing */
Takashi Iwai47ab1542015-08-25 16:09:00 +0200488 atomic_set(&chip->usage_count, 0);
489 atomic_set(&chip->shutdown, 0);
Daniel Macke5779992010-03-04 19:46:13 +0100490
491 chip->usb_id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
492 le16_to_cpu(dev->descriptor.idProduct));
493 INIT_LIST_HEAD(&chip->pcm_list);
Daniel Mackedcd3632012-04-12 13:51:12 +0200494 INIT_LIST_HEAD(&chip->ep_list);
Daniel Macke5779992010-03-04 19:46:13 +0100495 INIT_LIST_HEAD(&chip->midi_list);
496 INIT_LIST_HEAD(&chip->mixer_list);
497
498 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
499 snd_usb_audio_free(chip);
500 snd_card_free(card);
501 return err;
502 }
503
504 strcpy(card->driver, "USB-Audio");
505 sprintf(component, "USB%04x:%04x",
506 USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
507 snd_component_add(card, component);
508
509 /* retrieve the device string as shortname */
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100510 if (quirk && quirk->product_name && *quirk->product_name) {
Daniel Macke5779992010-03-04 19:46:13 +0100511 strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
512 } else {
513 if (!dev->descriptor.iProduct ||
514 usb_string(dev, dev->descriptor.iProduct,
515 card->shortname, sizeof(card->shortname)) <= 0) {
516 /* no name available from anywhere, so use ID */
517 sprintf(card->shortname, "USB Device %#04x:%#04x",
518 USB_ID_VENDOR(chip->usb_id),
519 USB_ID_PRODUCT(chip->usb_id));
520 }
521 }
Takashi Iwaiae366c22014-10-31 11:32:19 +0100522 strim(card->shortname);
Daniel Macke5779992010-03-04 19:46:13 +0100523
524 /* retrieve the vendor and device strings as longname */
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100525 if (quirk && quirk->vendor_name && *quirk->vendor_name) {
Daniel Macke5779992010-03-04 19:46:13 +0100526 len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
527 } else {
528 if (dev->descriptor.iManufacturer)
529 len = usb_string(dev, dev->descriptor.iManufacturer,
530 card->longname, sizeof(card->longname));
531 else
532 len = 0;
533 /* we don't really care if there isn't any vendor string */
534 }
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100535 if (len > 0) {
Takashi Iwaiae366c22014-10-31 11:32:19 +0100536 strim(card->longname);
Takashi Iwai3ffc1222011-03-21 12:00:00 +0100537 if (*card->longname)
538 strlcat(card->longname, " ", sizeof(card->longname));
539 }
Daniel Macke5779992010-03-04 19:46:13 +0100540
541 strlcat(card->longname, card->shortname, sizeof(card->longname));
542
543 len = strlcat(card->longname, " at ", sizeof(card->longname));
544
545 if (len < sizeof(card->longname))
546 usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);
547
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700548 switch (snd_usb_get_speed(dev)) {
549 case USB_SPEED_LOW:
550 strlcat(card->longname, ", low speed", sizeof(card->longname));
551 break;
552 case USB_SPEED_FULL:
553 strlcat(card->longname, ", full speed", sizeof(card->longname));
554 break;
555 case USB_SPEED_HIGH:
556 strlcat(card->longname, ", high speed", sizeof(card->longname));
557 break;
558 case USB_SPEED_SUPER:
559 strlcat(card->longname, ", super speed", sizeof(card->longname));
560 break;
Oliver Neukum748a1cc2016-05-04 14:18:39 +0200561 case USB_SPEED_SUPER_PLUS:
562 strlcat(card->longname, ", super speed plus", sizeof(card->longname));
563 break;
Paul Zimmerman4f4e8f62010-08-13 12:42:07 -0700564 default:
565 break;
566 }
Daniel Macke5779992010-03-04 19:46:13 +0100567
568 snd_usb_audio_create_proc(chip);
569
570 *rchip = chip;
571 return 0;
572}
573
Takashi Iwaie2703362016-01-11 14:39:12 +0100574/* look for a matching quirk alias id */
575static bool get_alias_id(struct usb_device *dev, unsigned int *id)
576{
577 int i;
578 unsigned int src, dst;
579
580 for (i = 0; i < ARRAY_SIZE(quirk_alias); i++) {
581 if (!quirk_alias[i] ||
582 sscanf(quirk_alias[i], "%x:%x", &src, &dst) != 2 ||
583 src != *id)
584 continue;
585 dev_info(&dev->dev,
586 "device (%04x:%04x): applying quirk alias %04x:%04x\n",
587 USB_ID_VENDOR(*id), USB_ID_PRODUCT(*id),
588 USB_ID_VENDOR(dst), USB_ID_PRODUCT(dst));
589 *id = dst;
590 return true;
591 }
592
593 return false;
594}
595
596static struct usb_device_id usb_audio_ids[]; /* defined below */
597
598/* look for the corresponding quirk */
599static const struct snd_usb_audio_quirk *
600get_alias_quirk(struct usb_device *dev, unsigned int id)
601{
602 const struct usb_device_id *p;
603
604 for (p = usb_audio_ids; p->match_flags; p++) {
605 /* FIXME: this checks only vendor:product pair in the list */
606 if ((p->match_flags & USB_DEVICE_ID_MATCH_DEVICE) ==
607 USB_DEVICE_ID_MATCH_DEVICE &&
608 p->idVendor == USB_ID_VENDOR(id) &&
609 p->idProduct == USB_ID_PRODUCT(id))
610 return (const struct snd_usb_audio_quirk *)p->driver_info;
611 }
612
613 return NULL;
614}
615
Daniel Macke5779992010-03-04 19:46:13 +0100616/*
617 * probe the active usb device
618 *
619 * note that this can be called multiple times per a device, when it
620 * includes multiple audio control interfaces.
621 *
622 * thus we check the usb device pointer and creates the card instance
623 * only at the first time. the successive calls of this function will
624 * append the pcm interface to the corresponding card.
625 */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100626static int usb_audio_probe(struct usb_interface *intf,
627 const struct usb_device_id *usb_id)
Daniel Macke5779992010-03-04 19:46:13 +0100628{
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100629 struct usb_device *dev = interface_to_usbdev(intf);
630 const struct snd_usb_audio_quirk *quirk =
631 (const struct snd_usb_audio_quirk *)usb_id->driver_info;
Daniel Macke5779992010-03-04 19:46:13 +0100632 struct snd_usb_audio *chip;
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100633 int i, err;
Daniel Macke5779992010-03-04 19:46:13 +0100634 struct usb_host_interface *alts;
635 int ifnum;
636 u32 id;
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530637 struct usb_interface_assoc_descriptor *assoc;
638
639 assoc = intf->intf_assoc;
640 if (assoc && assoc->bFunctionClass == USB_CLASS_AUDIO &&
641 assoc->bFunctionProtocol == UAC_VERSION_3 &&
Hemant Kumar38742262017-07-25 11:03:38 -0700642 assoc->bFunctionSubClass == FULL_ADC_3_0) {
Ajay Agarwalabed8d42017-02-07 16:40:09 +0530643 dev_info(&dev->dev, "No support for full-fledged ADC 3.0 yet!!\n");
644 return -EINVAL;
645 }
Daniel Macke5779992010-03-04 19:46:13 +0100646
647 alts = &intf->altsetting[0];
648 ifnum = get_iface_desc(alts)->bInterfaceNumber;
649 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
650 le16_to_cpu(dev->descriptor.idProduct));
Takashi Iwaie2703362016-01-11 14:39:12 +0100651 if (get_alias_id(dev, &id))
652 quirk = get_alias_quirk(dev, id);
Daniel Macke5779992010-03-04 19:46:13 +0100653 if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100654 return -ENXIO;
Daniel Macke5779992010-03-04 19:46:13 +0100655
Takashi Iwai79289e22016-01-11 11:33:34 +0100656 err = snd_usb_apply_boot_quirk(dev, intf, quirk, id);
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100657 if (err < 0)
658 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100659
660 /*
661 * found a config. now register to ALSA
662 */
663
664 /* check whether it's already registered */
665 chip = NULL;
666 mutex_lock(&register_mutex);
667 for (i = 0; i < SNDRV_CARDS; i++) {
668 if (usb_chip[i] && usb_chip[i]->dev == dev) {
Takashi Iwai47ab1542015-08-25 16:09:00 +0200669 if (atomic_read(&usb_chip[i]->shutdown)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100670 dev_err(&dev->dev, "USB device is in the shutdown state, cannot create a card instance\n");
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100671 err = -EIO;
Daniel Macke5779992010-03-04 19:46:13 +0100672 goto __error;
673 }
674 chip = usb_chip[i];
Takashi Iwaia6da4992015-08-26 10:20:59 +0200675 atomic_inc(&chip->active); /* avoid autopm */
Daniel Macke5779992010-03-04 19:46:13 +0100676 break;
677 }
678 }
679 if (! chip) {
680 /* it's a fresh one.
681 * now look for an empty slot and create a new card instance
682 */
683 for (i = 0; i < SNDRV_CARDS; i++)
684 if (enable[i] && ! usb_chip[i] &&
685 (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
686 (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100687 err = snd_usb_audio_create(intf, dev, i, quirk,
688 &chip);
689 if (err < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100690 goto __error;
Oliver Neukum88a85162011-03-11 14:51:12 +0100691 chip->pm_intf = intf;
Daniel Macke5779992010-03-04 19:46:13 +0100692 break;
693 }
694 if (!chip) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100695 dev_err(&dev->dev, "no available usb audio device\n");
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100696 err = -ENODEV;
Daniel Macke5779992010-03-04 19:46:13 +0100697 goto __error;
698 }
699 }
Kazuki Oikawa76df5292016-07-18 01:16:15 +0900700 dev_set_drvdata(&dev->dev, chip);
Daniel Macke5779992010-03-04 19:46:13 +0100701
Daniel Mack7b6717e2010-09-02 17:13:15 +0800702 /*
703 * For devices with more than one control interface, we assume the
704 * first contains the audio controls. We might need a more specific
705 * check here in the future.
706 */
707 if (!chip->ctrl_intf)
708 chip->ctrl_intf = alts;
Daniel Mack79f920f2010-05-31 14:51:31 +0200709
Daniel Mack5875c2c2011-05-25 09:08:59 +0200710 chip->txfr_quirk = 0;
711 err = 1; /* continue */
712 if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
713 /* need some special handlings */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100714 err = snd_usb_create_quirk(chip, intf, &usb_audio_driver, quirk);
715 if (err < 0)
Daniel Mack5875c2c2011-05-25 09:08:59 +0200716 goto __error;
717 }
718
Daniel Macke5779992010-03-04 19:46:13 +0100719 if (err > 0) {
720 /* create normal USB audio interfaces */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100721 err = snd_usb_create_streams(chip, ifnum);
722 if (err < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100723 goto __error;
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100724 err = snd_usb_create_mixer(chip, ifnum, ignore_ctl_error);
725 if (err < 0)
726 goto __error;
Daniel Macke5779992010-03-04 19:46:13 +0100727 }
728
729 /* we are allowed to call snd_card_register() many times */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100730 err = snd_card_register(chip->card);
731 if (err < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100732 goto __error;
Daniel Macke5779992010-03-04 19:46:13 +0100733
734 usb_chip[chip->index] = chip;
735 chip->num_interfaces++;
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100736 usb_set_intfdata(intf, chip);
Hemant Kumara1bd7452016-12-13 18:13:56 -0800737 intf->needs_remote_wakeup = 1;
Hemant Kumarb3e2d642016-04-01 19:13:01 -0700738 usb_enable_autosuspend(chip->dev);
Takashi Iwaia6da4992015-08-26 10:20:59 +0200739 atomic_dec(&chip->active);
Daniel Macke5779992010-03-04 19:46:13 +0100740 mutex_unlock(&register_mutex);
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100741 return 0;
Daniel Macke5779992010-03-04 19:46:13 +0100742
743 __error:
Thomas Pfaff61a6a102011-09-26 15:43:59 +0200744 if (chip) {
Hui Peng73000a42018-12-03 16:09:34 +0100745 /* chip->active is inside the chip->card object,
746 * decrement before memory is possibly returned.
747 */
748 atomic_dec(&chip->active);
Thomas Pfaff61a6a102011-09-26 15:43:59 +0200749 if (!chip->num_interfaces)
750 snd_card_free(chip->card);
Thomas Pfaff61a6a102011-09-26 15:43:59 +0200751 }
Daniel Macke5779992010-03-04 19:46:13 +0100752 mutex_unlock(&register_mutex);
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100753 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100754}
755
756/*
757 * we need to take care of counter, since disconnection can be called also
758 * many times as well as usb_audio_probe().
759 */
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100760static void usb_audio_disconnect(struct usb_interface *intf)
Daniel Macke5779992010-03-04 19:46:13 +0100761{
Takashi Iwai4c8c3a42014-10-31 11:00:23 +0100762 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Daniel Macke5779992010-03-04 19:46:13 +0100763 struct snd_card *card;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200764 struct list_head *p;
Daniel Macke5779992010-03-04 19:46:13 +0100765
Pavel Roskin81b85b62011-07-06 11:20:13 -0400766 if (chip == (void *)-1L)
Daniel Macke5779992010-03-04 19:46:13 +0100767 return;
768
Daniel Macke5779992010-03-04 19:46:13 +0100769 card = chip->card;
Takashi Iwai10e44232012-11-13 11:22:48 +0100770
Vamsi Krishna Samavedam1e634532016-09-13 14:09:37 -0700771 if (chip->disconnect_cb)
772 chip->disconnect_cb(chip);
773
Takashi Iwai10e44232012-11-13 11:22:48 +0100774 mutex_lock(&register_mutex);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200775 if (atomic_inc_return(&chip->shutdown) == 1) {
Takashi Iwaia6cece92014-10-31 11:24:32 +0100776 struct snd_usb_stream *as;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200777 struct snd_usb_endpoint *ep;
Takashi Iwaia6cece92014-10-31 11:24:32 +0100778 struct usb_mixer_interface *mixer;
Takashi Iwai92a586b2014-06-25 14:24:47 +0200779
Takashi Iwai47ab1542015-08-25 16:09:00 +0200780 /* wait until all pending tasks done;
781 * they are protected by snd_usb_lock_shutdown()
782 */
783 wait_event(chip->shutdown_wait,
784 !atomic_read(&chip->usage_count));
Daniel Macke5779992010-03-04 19:46:13 +0100785 snd_card_disconnect(card);
786 /* release the pcm resources */
Takashi Iwaia6cece92014-10-31 11:24:32 +0100787 list_for_each_entry(as, &chip->pcm_list, list) {
788 snd_usb_stream_disconnect(as);
Daniel Macke5779992010-03-04 19:46:13 +0100789 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200790 /* release the endpoint resources */
Takashi Iwai92a586b2014-06-25 14:24:47 +0200791 list_for_each_entry(ep, &chip->ep_list, list) {
792 snd_usb_endpoint_release(ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200793 }
Daniel Macke5779992010-03-04 19:46:13 +0100794 /* release the midi resources */
795 list_for_each(p, &chip->midi_list) {
796 snd_usbmidi_disconnect(p);
797 }
798 /* release mixer resources */
Takashi Iwaia6cece92014-10-31 11:24:32 +0100799 list_for_each_entry(mixer, &chip->mixer_list, list) {
800 snd_usb_mixer_disconnect(mixer);
Daniel Macke5779992010-03-04 19:46:13 +0100801 }
Takashi Iwai0725dda2014-11-05 15:08:49 +0100802 }
803
804 chip->num_interfaces--;
805 if (chip->num_interfaces <= 0) {
Daniel Macke5779992010-03-04 19:46:13 +0100806 usb_chip[chip->index] = NULL;
807 mutex_unlock(&register_mutex);
808 snd_card_free_when_closed(card);
809 } else {
810 mutex_unlock(&register_mutex);
811 }
812}
813
Takashi Iwai47ab1542015-08-25 16:09:00 +0200814/* lock the shutdown (disconnect) task and autoresume */
815int snd_usb_lock_shutdown(struct snd_usb_audio *chip)
816{
817 int err;
818
819 atomic_inc(&chip->usage_count);
820 if (atomic_read(&chip->shutdown)) {
821 err = -EIO;
822 goto error;
823 }
824 err = snd_usb_autoresume(chip);
825 if (err < 0)
826 goto error;
827 return 0;
828
829 error:
830 if (atomic_dec_and_test(&chip->usage_count))
831 wake_up(&chip->shutdown_wait);
832 return err;
833}
834
835/* autosuspend and unlock the shutdown */
836void snd_usb_unlock_shutdown(struct snd_usb_audio *chip)
837{
838 snd_usb_autosuspend(chip);
839 if (atomic_dec_and_test(&chip->usage_count))
840 wake_up(&chip->shutdown_wait);
841}
842
Daniel Macke5779992010-03-04 19:46:13 +0100843#ifdef CONFIG_PM
Oliver Neukum88a85162011-03-11 14:51:12 +0100844
845int snd_usb_autoresume(struct snd_usb_audio *chip)
846{
Takashi Iwai47ab1542015-08-25 16:09:00 +0200847 if (atomic_read(&chip->shutdown))
848 return -EIO;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200849 if (atomic_inc_return(&chip->active) == 1)
850 return usb_autopm_get_interface(chip->pm_intf);
851 return 0;
Oliver Neukum88a85162011-03-11 14:51:12 +0100852}
853
854void snd_usb_autosuspend(struct snd_usb_audio *chip)
855{
Takashi Iwai5c06d682016-01-12 14:03:33 +0100856 if (atomic_read(&chip->shutdown))
857 return;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200858 if (atomic_dec_and_test(&chip->active))
Oliver Neukum88a85162011-03-11 14:51:12 +0100859 usb_autopm_put_interface(chip->pm_intf);
860}
861
Daniel Macke5779992010-03-04 19:46:13 +0100862static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
863{
864 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Daniel Macke5779992010-03-04 19:46:13 +0100865 struct snd_usb_stream *as;
Oliver Neukumedf7de32011-03-11 13:19:43 +0100866 struct usb_mixer_interface *mixer;
Adam Goodef7881e52014-08-05 12:44:50 -0400867 struct list_head *p;
Daniel Macke5779992010-03-04 19:46:13 +0100868
869 if (chip == (void *)-1L)
870 return 0;
871
Takashi Iwai06622922015-08-26 10:23:26 +0200872 chip->autosuspended = !!PMSG_IS_AUTO(message);
873 if (!chip->autosuspended)
Oliver Neukum88a85162011-03-11 14:51:12 +0100874 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai06622922015-08-26 10:23:26 +0200875 if (!chip->num_suspended_intf++) {
876 list_for_each_entry(as, &chip->pcm_list, list) {
877 snd_pcm_suspend_all(as->pcm);
878 as->substream[0].need_setup_ep =
879 as->substream[1].need_setup_ep = true;
Antonio Ospiteaa53f982013-01-29 12:56:30 +0100880 }
Takashi Iwai06622922015-08-26 10:23:26 +0200881 list_for_each(p, &chip->midi_list)
882 snd_usbmidi_suspend(p);
Takashi Iwai1c53e722014-05-02 18:14:42 +0200883 list_for_each_entry(mixer, &chip->mixer_list, list)
884 snd_usb_mixer_suspend(mixer);
Takashi Iwai06622922015-08-26 10:23:26 +0200885 }
Oliver Neukum88a85162011-03-11 14:51:12 +0100886
Daniel Macke5779992010-03-04 19:46:13 +0100887 return 0;
888}
889
Takashi Iwai400362f2014-01-20 16:51:16 +0100890static int __usb_audio_resume(struct usb_interface *intf, bool reset_resume)
Daniel Macke5779992010-03-04 19:46:13 +0100891{
892 struct snd_usb_audio *chip = usb_get_intfdata(intf);
Oliver Neukumedf7de32011-03-11 13:19:43 +0100893 struct usb_mixer_interface *mixer;
Adam Goodef7881e52014-08-05 12:44:50 -0400894 struct list_head *p;
Oliver Neukum88a85162011-03-11 14:51:12 +0100895 int err = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100896
897 if (chip == (void *)-1L)
898 return 0;
899 if (--chip->num_suspended_intf)
900 return 0;
Takashi Iwai1ee23fe2014-05-02 18:17:06 +0200901
Takashi Iwai47ab1542015-08-25 16:09:00 +0200902 atomic_inc(&chip->active); /* avoid autopm */
Daniel Macke5779992010-03-04 19:46:13 +0100903 /*
904 * ALSA leaves material resumption to user space
Oliver Neukumedf7de32011-03-11 13:19:43 +0100905 * we just notify and restart the mixers
Daniel Macke5779992010-03-04 19:46:13 +0100906 */
Oliver Neukum88a85162011-03-11 14:51:12 +0100907 list_for_each_entry(mixer, &chip->mixer_list, list) {
Takashi Iwai400362f2014-01-20 16:51:16 +0100908 err = snd_usb_mixer_resume(mixer, reset_resume);
Oliver Neukum88a85162011-03-11 14:51:12 +0100909 if (err < 0)
910 goto err_out;
911 }
Daniel Macke5779992010-03-04 19:46:13 +0100912
Adam Goodef7881e52014-08-05 12:44:50 -0400913 list_for_each(p, &chip->midi_list) {
914 snd_usbmidi_resume(p);
915 }
916
Oliver Neukum88a85162011-03-11 14:51:12 +0100917 if (!chip->autosuspended)
918 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
919 chip->autosuspended = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100920
Oliver Neukum88a85162011-03-11 14:51:12 +0100921err_out:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200922 atomic_dec(&chip->active); /* allow autopm after this point */
Oliver Neukum88a85162011-03-11 14:51:12 +0100923 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100924}
Takashi Iwai400362f2014-01-20 16:51:16 +0100925
926static int usb_audio_resume(struct usb_interface *intf)
927{
928 return __usb_audio_resume(intf, false);
929}
930
931static int usb_audio_reset_resume(struct usb_interface *intf)
932{
933 return __usb_audio_resume(intf, true);
934}
Randy Dunlap6407d472010-03-22 08:55:35 -0700935#else
936#define usb_audio_suspend NULL
937#define usb_audio_resume NULL
Takashi Iwai400362f2014-01-20 16:51:16 +0100938#define usb_audio_reset_resume NULL
Daniel Macke5779992010-03-04 19:46:13 +0100939#endif /* CONFIG_PM */
940
941static struct usb_device_id usb_audio_ids [] = {
942#include "quirks-table.h"
943 { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
944 .bInterfaceClass = USB_CLASS_AUDIO,
945 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL },
946 { } /* Terminating entry */
947};
Eldad Zackf9d35432013-04-03 23:18:50 +0200948MODULE_DEVICE_TABLE(usb, usb_audio_ids);
Daniel Macke5779992010-03-04 19:46:13 +0100949
950/*
951 * entry point for linux usb interface
952 */
953
954static struct usb_driver usb_audio_driver = {
955 .name = "snd-usb-audio",
956 .probe = usb_audio_probe,
957 .disconnect = usb_audio_disconnect,
958 .suspend = usb_audio_suspend,
959 .resume = usb_audio_resume,
Takashi Iwai400362f2014-01-20 16:51:16 +0100960 .reset_resume = usb_audio_reset_resume,
Daniel Macke5779992010-03-04 19:46:13 +0100961 .id_table = usb_audio_ids,
Oliver Neukum88a85162011-03-11 14:51:12 +0100962 .supports_autosuspend = 1,
Daniel Macke5779992010-03-04 19:46:13 +0100963};
964
Sachin Kamat6b5a7c62013-10-09 17:22:32 +0530965module_usb_driver(usb_audio_driver);