card.c 23.2 KB
Newer Older
D
Daniel Mack 已提交
1 2 3 4 5 6 7 8 9
/*
 *   (Tentative) USB Audio Driver for ALSA
 *
 *   Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
 *
 *   Many codes borrowed from audio.c by
 *	    Alan Cox (alan@lxorguk.ukuu.org.uk)
 *	    Thomas Sailer (sailer@ife.ee.ethz.ch)
 *
10
 *   Audio Class 3.0 support by Ruslan Bilovol <ruslan.bilovol@gmail.com>
D
Daniel Mack 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 *
 *  NOTES:
 *
 *   - the linked URBs would be preferred but not used so far because of
 *     the instability of unlinking.
 *   - type II is not supported properly.  there is no device which supports
 *     this type *correctly*.  SB extigy looks as if it supports, but it's
 *     indeed an AC3 stream packed in SPDIF frames (i.e. no real AC3 stream).
 */


#include <linux/bitops.h>
#include <linux/init.h>
#include <linux/list.h>
#include <linux/slab.h>
#include <linux/string.h>
42
#include <linux/ctype.h>
D
Daniel Mack 已提交
43 44 45 46
#include <linux/usb.h>
#include <linux/moduleparam.h>
#include <linux/mutex.h>
#include <linux/usb/audio.h>
D
Daniel Mack 已提交
47
#include <linux/usb/audio-v2.h>
48
#include <linux/usb/audio-v3.h>
49
#include <linux/module.h>
D
Daniel Mack 已提交
50

51
#include <sound/control.h>
D
Daniel Mack 已提交
52 53 54 55 56 57 58 59 60
#include <sound/core.h>
#include <sound/info.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/initval.h>

#include "usbaudio.h"
#include "card.h"
#include "midi.h"
61
#include "mixer.h"
D
Daniel Mack 已提交
62 63 64 65 66 67 68
#include "proc.h"
#include "quirks.h"
#include "endpoint.h"
#include "helper.h"
#include "debug.h"
#include "pcm.h"
#include "format.h"
69
#include "power.h"
D
Daniel Mack 已提交
70
#include "stream.h"
D
Daniel Mack 已提交
71 72 73 74 75 76 77 78 79

MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
MODULE_DESCRIPTION("USB Audio");
MODULE_LICENSE("GPL");
MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");


static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;	/* Index 0-MAX */
static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;	/* ID for this card */
80
static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
D
Daniel Mack 已提交
81 82 83 84
/* Vendor/product IDs for this card */
static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
static int device_setup[SNDRV_CARDS]; /* device parameter for this card */
85
static bool ignore_ctl_error;
86
static bool autoclock = true;
87
static char *quirk_alias[SNDRV_CARDS];
D
Daniel Mack 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

module_param_array(index, int, NULL, 0444);
MODULE_PARM_DESC(index, "Index value for the USB audio adapter.");
module_param_array(id, charp, NULL, 0444);
MODULE_PARM_DESC(id, "ID string for the USB audio adapter.");
module_param_array(enable, bool, NULL, 0444);
MODULE_PARM_DESC(enable, "Enable USB audio adapter.");
module_param_array(vid, int, NULL, 0444);
MODULE_PARM_DESC(vid, "Vendor ID for the USB audio device.");
module_param_array(pid, int, NULL, 0444);
MODULE_PARM_DESC(pid, "Product ID for the USB audio device.");
module_param_array(device_setup, int, NULL, 0444);
MODULE_PARM_DESC(device_setup, "Specific device setup (if needed).");
module_param(ignore_ctl_error, bool, 0444);
MODULE_PARM_DESC(ignore_ctl_error,
		 "Ignore errors from USB controller for mixer interfaces.");
104 105
module_param(autoclock, bool, 0444);
MODULE_PARM_DESC(autoclock, "Enable auto-clock selection for UAC2 devices (default: yes).");
106 107
module_param_array(quirk_alias, charp, NULL, 0444);
MODULE_PARM_DESC(quirk_alias, "Quirk aliases, e.g. 0123abcd:5678beef.");
D
Daniel Mack 已提交
108 109 110 111 112 113 114 115 116 117 118 119

/*
 * we keep the snd_usb_audio_t instances by ourselves for merging
 * the all interfaces on the same card as one sound device.
 */

static DEFINE_MUTEX(register_mutex);
static struct snd_usb_audio *usb_chip[SNDRV_CARDS];
static struct usb_driver usb_audio_driver;

/*
 * disconnect streams
120
 * called from usb_audio_disconnect()
D
Daniel Mack 已提交
121
 */
122
static void snd_usb_stream_disconnect(struct snd_usb_stream *as)
D
Daniel Mack 已提交
123 124 125 126 127 128 129
{
	int idx;
	struct snd_usb_substream *subs;

	for (idx = 0; idx < 2; idx++) {
		subs = &as->substream[idx];
		if (!subs->num_formats)
130
			continue;
D
Daniel Mack 已提交
131
		subs->interface = -1;
132 133
		subs->data_endpoint = NULL;
		subs->sync_endpoint = NULL;
D
Daniel Mack 已提交
134 135 136 137 138 139 140 141 142 143 144
	}
}

static int snd_usb_create_stream(struct snd_usb_audio *chip, int ctrlif, int interface)
{
	struct usb_device *dev = chip->dev;
	struct usb_host_interface *alts;
	struct usb_interface_descriptor *altsd;
	struct usb_interface *iface = usb_ifnum_to_if(dev, interface);

	if (!iface) {
145 146
		dev_err(&dev->dev, "%u:%d : does not exist\n",
			ctrlif, interface);
D
Daniel Mack 已提交
147 148 149
		return -EINVAL;
	}

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
	alts = &iface->altsetting[0];
	altsd = get_iface_desc(alts);

	/*
	 * Android with both accessory and audio interfaces enabled gets the
	 * interface numbers wrong.
	 */
	if ((chip->usb_id == USB_ID(0x18d1, 0x2d04) ||
	     chip->usb_id == USB_ID(0x18d1, 0x2d05)) &&
	    interface == 0 &&
	    altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC &&
	    altsd->bInterfaceSubClass == USB_SUBCLASS_VENDOR_SPEC) {
		interface = 2;
		iface = usb_ifnum_to_if(dev, interface);
		if (!iface)
			return -EINVAL;
		alts = &iface->altsetting[0];
		altsd = get_iface_desc(alts);
	}

D
Daniel Mack 已提交
170
	if (usb_interface_claimed(iface)) {
171 172
		dev_dbg(&dev->dev, "%d:%d: skipping, already claimed\n",
			ctrlif, interface);
D
Daniel Mack 已提交
173 174 175 176 177 178
		return -EINVAL;
	}

	if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
	     altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
	    altsd->bInterfaceSubClass == USB_SUBCLASS_MIDISTREAMING) {
179 180 181
		int err = __snd_usbmidi_create(chip->card, iface,
					     &chip->midi_list, NULL,
					     chip->usb_id);
D
Daniel Mack 已提交
182
		if (err < 0) {
183 184 185
			dev_err(&dev->dev,
				"%u:%d: cannot create sequencer device\n",
				ctrlif, interface);
D
Daniel Mack 已提交
186 187 188 189 190 191 192 193 194 195
			return -EINVAL;
		}
		usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);

		return 0;
	}

	if ((altsd->bInterfaceClass != USB_CLASS_AUDIO &&
	     altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC) ||
	    altsd->bInterfaceSubClass != USB_SUBCLASS_AUDIOSTREAMING) {
196 197 198
		dev_dbg(&dev->dev,
			"%u:%d: skipping non-supported interface %d\n",
			ctrlif, interface, altsd->bInterfaceClass);
D
Daniel Mack 已提交
199 200 201 202 203
		/* skip non-supported classes */
		return -EINVAL;
	}

	if (snd_usb_get_speed(dev) == USB_SPEED_LOW) {
204
		dev_err(&dev->dev, "low speed audio streaming not supported\n");
D
Daniel Mack 已提交
205 206 207
		return -EINVAL;
	}

D
Daniel Mack 已提交
208
	if (! snd_usb_parse_audio_interface(chip, interface)) {
D
Daniel Mack 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
		usb_set_interface(dev, interface, 0); /* reset the current interface */
		usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L);
	}

	return 0;
}

/*
 * parse audio control descriptor and create pcm/midi streams
 */
static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
{
	struct usb_device *dev = chip->dev;
	struct usb_host_interface *host_iface;
	struct usb_interface_descriptor *altsd;
	void *control_header;
	int i, protocol;
226
	int rest_bytes;
D
Daniel Mack 已提交
227 228 229 230 231 232 233 234 235 236

	/* find audiocontrol interface */
	host_iface = &usb_ifnum_to_if(dev, ctrlif)->altsetting[0];
	control_header = snd_usb_find_csint_desc(host_iface->extra,
						 host_iface->extralen,
						 NULL, UAC_HEADER);
	altsd = get_iface_desc(host_iface);
	protocol = altsd->bInterfaceProtocol;

	if (!control_header) {
237
		dev_err(&dev->dev, "cannot find UAC_HEADER\n");
D
Daniel Mack 已提交
238 239 240
		return -EINVAL;
	}

241 242 243 244 245 246 247 248 249
	rest_bytes = (void *)(host_iface->extra + host_iface->extralen) -
		control_header;

	/* just to be sure -- this shouldn't hit at all */
	if (rest_bytes <= 0) {
		dev_err(&dev->dev, "invalid control header\n");
		return -EINVAL;
	}

D
Daniel Mack 已提交
250
	switch (protocol) {
251
	default:
252 253 254
		dev_warn(&dev->dev,
			 "unknown interface protocol %#02x, assuming v1\n",
			 protocol);
255 256
		/* fall through */

D
Daniel Mack 已提交
257
	case UAC_VERSION_1: {
258
		struct uac1_ac_header_descriptor *h1 = control_header;
D
Daniel Mack 已提交
259

260 261 262 263 264
		if (rest_bytes < sizeof(*h1)) {
			dev_err(&dev->dev, "too short v1 buffer descriptor\n");
			return -EINVAL;
		}

D
Daniel Mack 已提交
265
		if (!h1->bInCollection) {
266
			dev_info(&dev->dev, "skipping empty audio interface (v1)\n");
D
Daniel Mack 已提交
267 268 269
			return -EINVAL;
		}

270 271 272 273 274
		if (rest_bytes < h1->bLength) {
			dev_err(&dev->dev, "invalid buffer length (v1)\n");
			return -EINVAL;
		}

D
Daniel Mack 已提交
275
		if (h1->bLength < sizeof(*h1) + h1->bInCollection) {
276
			dev_err(&dev->dev, "invalid UAC_HEADER (v1)\n");
D
Daniel Mack 已提交
277 278 279 280 281 282 283 284 285
			return -EINVAL;
		}

		for (i = 0; i < h1->bInCollection; i++)
			snd_usb_create_stream(chip, ctrlif, h1->baInterfaceNr[i]);

		break;
	}

286 287
	case UAC_VERSION_2:
	case UAC_VERSION_3: {
D
Daniel Mack 已提交
288 289 290
		struct usb_interface_assoc_descriptor *assoc =
			usb_ifnum_to_if(dev, ctrlif)->intf_assoc;

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
		if (!assoc) {
			/*
			 * Firmware writers cannot count to three.  So to find
			 * the IAD on the NuForce UDH-100, also check the next
			 * interface.
			 */
			struct usb_interface *iface =
				usb_ifnum_to_if(dev, ctrlif + 1);
			if (iface &&
			    iface->intf_assoc &&
			    iface->intf_assoc->bFunctionClass == USB_CLASS_AUDIO &&
			    iface->intf_assoc->bFunctionProtocol == UAC_VERSION_2)
				assoc = iface->intf_assoc;
		}

D
Daniel Mack 已提交
306
		if (!assoc) {
307
			dev_err(&dev->dev, "Audio class v2/v3 interfaces need an interface association\n");
D
Daniel Mack 已提交
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
			return -EINVAL;
		}

		for (i = 0; i < assoc->bInterfaceCount; i++) {
			int intf = assoc->bFirstInterface + i;

			if (intf != ctrlif)
				snd_usb_create_stream(chip, ctrlif, intf);
		}

		break;
	}
	}

	return 0;
}

/*
 * free the chip instance
 *
 * here we have to do not much, since pcm and controls are already freed
 *
 */

static int snd_usb_audio_free(struct snd_usb_audio *chip)
{
334
	struct snd_usb_endpoint *ep, *n;
335

336 337
	list_for_each_entry_safe(ep, n, &chip->ep_list, list)
		snd_usb_endpoint_free(ep);
338

339
	mutex_destroy(&chip->mutex);
340 341
	if (!atomic_read(&chip->shutdown))
		dev_set_drvdata(&chip->dev->dev, NULL);
D
Daniel Mack 已提交
342 343 344 345 346 347 348 349 350 351 352 353 354
	kfree(chip);
	return 0;
}

static int snd_usb_audio_dev_free(struct snd_device *device)
{
	struct snd_usb_audio *chip = device->device_data;
	return snd_usb_audio_free(chip);
}

/*
 * create a chip instance and set its names.
 */
355 356
static int snd_usb_audio_create(struct usb_interface *intf,
				struct usb_device *dev, int idx,
D
Daniel Mack 已提交
357
				const struct snd_usb_audio_quirk *quirk,
358
				unsigned int usb_id,
D
Daniel Mack 已提交
359 360 361 362 363 364 365 366 367 368 369 370
				struct snd_usb_audio **rchip)
{
	struct snd_card *card;
	struct snd_usb_audio *chip;
	int err, len;
	char component[14];
	static struct snd_device_ops ops = {
		.dev_free =	snd_usb_audio_dev_free,
	};

	*rchip = NULL;

371 372 373 374
	switch (snd_usb_get_speed(dev)) {
	case USB_SPEED_LOW:
	case USB_SPEED_FULL:
	case USB_SPEED_HIGH:
375
	case USB_SPEED_WIRELESS:
376
	case USB_SPEED_SUPER:
377
	case USB_SPEED_SUPER_PLUS:
378 379
		break;
	default:
380
		dev_err(&dev->dev, "unknown device speed %d\n", snd_usb_get_speed(dev));
D
Daniel Mack 已提交
381 382 383
		return -ENXIO;
	}

384 385
	err = snd_card_new(&intf->dev, index[idx], id[idx], THIS_MODULE,
			   0, &card);
D
Daniel Mack 已提交
386
	if (err < 0) {
387
		dev_err(&dev->dev, "cannot create card instance %d\n", idx);
D
Daniel Mack 已提交
388 389 390 391 392 393 394 395 396
		return err;
	}

	chip = kzalloc(sizeof(*chip), GFP_KERNEL);
	if (! chip) {
		snd_card_free(card);
		return -ENOMEM;
	}

397
	mutex_init(&chip->mutex);
398
	init_waitqueue_head(&chip->shutdown_wait);
D
Daniel Mack 已提交
399 400 401 402
	chip->index = idx;
	chip->dev = dev;
	chip->card = card;
	chip->setup = device_setup[idx];
403
	chip->autoclock = autoclock;
404
	atomic_set(&chip->active, 1); /* avoid autopm during probing */
405 406
	atomic_set(&chip->usage_count, 0);
	atomic_set(&chip->shutdown, 0);
D
Daniel Mack 已提交
407

408
	chip->usb_id = usb_id;
D
Daniel Mack 已提交
409
	INIT_LIST_HEAD(&chip->pcm_list);
410
	INIT_LIST_HEAD(&chip->ep_list);
D
Daniel Mack 已提交
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
	INIT_LIST_HEAD(&chip->midi_list);
	INIT_LIST_HEAD(&chip->mixer_list);

	if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
		snd_usb_audio_free(chip);
		snd_card_free(card);
		return err;
	}

	strcpy(card->driver, "USB-Audio");
	sprintf(component, "USB%04x:%04x",
		USB_ID_VENDOR(chip->usb_id), USB_ID_PRODUCT(chip->usb_id));
	snd_component_add(card, component);

	/* retrieve the device string as shortname */
426
	if (quirk && quirk->product_name && *quirk->product_name) {
D
Daniel Mack 已提交
427 428 429 430 431 432 433 434 435 436 437
		strlcpy(card->shortname, quirk->product_name, sizeof(card->shortname));
	} else {
		if (!dev->descriptor.iProduct ||
		    usb_string(dev, dev->descriptor.iProduct,
		    card->shortname, sizeof(card->shortname)) <= 0) {
			/* no name available from anywhere, so use ID */
			sprintf(card->shortname, "USB Device %#04x:%#04x",
				USB_ID_VENDOR(chip->usb_id),
				USB_ID_PRODUCT(chip->usb_id));
		}
	}
438
	strim(card->shortname);
D
Daniel Mack 已提交
439 440

	/* retrieve the vendor and device strings as longname */
441
	if (quirk && quirk->vendor_name && *quirk->vendor_name) {
D
Daniel Mack 已提交
442 443 444 445 446 447 448 449 450
		len = strlcpy(card->longname, quirk->vendor_name, sizeof(card->longname));
	} else {
		if (dev->descriptor.iManufacturer)
			len = usb_string(dev, dev->descriptor.iManufacturer,
					 card->longname, sizeof(card->longname));
		else
			len = 0;
		/* we don't really care if there isn't any vendor string */
	}
451
	if (len > 0) {
452
		strim(card->longname);
453 454 455
		if (*card->longname)
			strlcat(card->longname, " ", sizeof(card->longname));
	}
D
Daniel Mack 已提交
456 457 458 459 460 461 462 463

	strlcat(card->longname, card->shortname, sizeof(card->longname));

	len = strlcat(card->longname, " at ", sizeof(card->longname));

	if (len < sizeof(card->longname))
		usb_make_path(dev, card->longname + len, sizeof(card->longname) - len);

464 465 466 467 468 469 470 471 472 473 474 475 476
	switch (snd_usb_get_speed(dev)) {
	case USB_SPEED_LOW:
		strlcat(card->longname, ", low speed", sizeof(card->longname));
		break;
	case USB_SPEED_FULL:
		strlcat(card->longname, ", full speed", sizeof(card->longname));
		break;
	case USB_SPEED_HIGH:
		strlcat(card->longname, ", high speed", sizeof(card->longname));
		break;
	case USB_SPEED_SUPER:
		strlcat(card->longname, ", super speed", sizeof(card->longname));
		break;
477 478 479
	case USB_SPEED_SUPER_PLUS:
		strlcat(card->longname, ", super speed plus", sizeof(card->longname));
		break;
480 481 482
	default:
		break;
	}
D
Daniel Mack 已提交
483 484 485 486 487 488 489

	snd_usb_audio_create_proc(chip);

	*rchip = chip;
	return 0;
}

490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
/* look for a matching quirk alias id */
static bool get_alias_id(struct usb_device *dev, unsigned int *id)
{
	int i;
	unsigned int src, dst;

	for (i = 0; i < ARRAY_SIZE(quirk_alias); i++) {
		if (!quirk_alias[i] ||
		    sscanf(quirk_alias[i], "%x:%x", &src, &dst) != 2 ||
		    src != *id)
			continue;
		dev_info(&dev->dev,
			 "device (%04x:%04x): applying quirk alias %04x:%04x\n",
			 USB_ID_VENDOR(*id), USB_ID_PRODUCT(*id),
			 USB_ID_VENDOR(dst), USB_ID_PRODUCT(dst));
		*id = dst;
		return true;
	}

	return false;
}

512
static const struct usb_device_id usb_audio_ids[]; /* defined below */
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531

/* look for the corresponding quirk */
static const struct snd_usb_audio_quirk *
get_alias_quirk(struct usb_device *dev, unsigned int id)
{
	const struct usb_device_id *p;

	for (p = usb_audio_ids; p->match_flags; p++) {
		/* FIXME: this checks only vendor:product pair in the list */
		if ((p->match_flags & USB_DEVICE_ID_MATCH_DEVICE) ==
		    USB_DEVICE_ID_MATCH_DEVICE &&
		    p->idVendor == USB_ID_VENDOR(id) &&
		    p->idProduct == USB_ID_PRODUCT(id))
			return (const struct snd_usb_audio_quirk *)p->driver_info;
	}

	return NULL;
}

D
Daniel Mack 已提交
532 533 534 535 536 537 538 539 540 541
/*
 * probe the active usb device
 *
 * note that this can be called multiple times per a device, when it
 * includes multiple audio control interfaces.
 *
 * thus we check the usb device pointer and creates the card instance
 * only at the first time.  the successive calls of this function will
 * append the pcm interface to the corresponding card.
 */
542 543
static int usb_audio_probe(struct usb_interface *intf,
			   const struct usb_device_id *usb_id)
D
Daniel Mack 已提交
544
{
545 546 547
	struct usb_device *dev = interface_to_usbdev(intf);
	const struct snd_usb_audio_quirk *quirk =
		(const struct snd_usb_audio_quirk *)usb_id->driver_info;
D
Daniel Mack 已提交
548
	struct snd_usb_audio *chip;
549
	int i, err;
D
Daniel Mack 已提交
550 551 552 553 554 555 556 557
	struct usb_host_interface *alts;
	int ifnum;
	u32 id;

	alts = &intf->altsetting[0];
	ifnum = get_iface_desc(alts)->bInterfaceNumber;
	id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
		    le16_to_cpu(dev->descriptor.idProduct));
558 559
	if (get_alias_id(dev, &id))
		quirk = get_alias_quirk(dev, id);
D
Daniel Mack 已提交
560
	if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
561
		return -ENXIO;
D
Daniel Mack 已提交
562

563
	err = snd_usb_apply_boot_quirk(dev, intf, quirk, id);
564 565
	if (err < 0)
		return err;
D
Daniel Mack 已提交
566 567 568 569 570 571 572 573 574 575

	/*
	 * found a config.  now register to ALSA
	 */

	/* check whether it's already registered */
	chip = NULL;
	mutex_lock(&register_mutex);
	for (i = 0; i < SNDRV_CARDS; i++) {
		if (usb_chip[i] && usb_chip[i]->dev == dev) {
576
			if (atomic_read(&usb_chip[i]->shutdown)) {
577
				dev_err(&dev->dev, "USB device is in the shutdown state, cannot create a card instance\n");
578
				err = -EIO;
D
Daniel Mack 已提交
579 580 581
				goto __error;
			}
			chip = usb_chip[i];
582
			atomic_inc(&chip->active); /* avoid autopm */
D
Daniel Mack 已提交
583 584 585 586 587 588 589 590
			break;
		}
	}
	if (! chip) {
		/* it's a fresh one.
		 * now look for an empty slot and create a new card instance
		 */
		for (i = 0; i < SNDRV_CARDS; i++)
591
			if (!usb_chip[i] &&
D
Daniel Mack 已提交
592 593
			    (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
			    (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
594 595 596 597 598 599 600 601 602 603 604 605 606
				if (enable[i]) {
					err = snd_usb_audio_create(intf, dev, i, quirk,
								   id, &chip);
					if (err < 0)
						goto __error;
					chip->pm_intf = intf;
					break;
				} else if (vid[i] != -1 || pid[i] != -1) {
					dev_info(&dev->dev,
						 "device (%04x:%04x) is disabled\n",
						 USB_ID_VENDOR(id),
						 USB_ID_PRODUCT(id));
					err = -ENOENT;
D
Daniel Mack 已提交
607
					goto __error;
608
				}
D
Daniel Mack 已提交
609 610
			}
		if (!chip) {
611
			dev_err(&dev->dev, "no available usb audio device\n");
612
			err = -ENODEV;
D
Daniel Mack 已提交
613 614 615
			goto __error;
		}
	}
616
	dev_set_drvdata(&dev->dev, chip);
D
Daniel Mack 已提交
617

618 619 620 621 622 623 624
	/*
	 * For devices with more than one control interface, we assume the
	 * first contains the audio controls. We might need a more specific
	 * check here in the future.
	 */
	if (!chip->ctrl_intf)
		chip->ctrl_intf = alts;
625

626 627 628 629
	chip->txfr_quirk = 0;
	err = 1; /* continue */
	if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
		/* need some special handlings */
630 631
		err = snd_usb_create_quirk(chip, intf, &usb_audio_driver, quirk);
		if (err < 0)
632 633 634
			goto __error;
	}

D
Daniel Mack 已提交
635 636
	if (err > 0) {
		/* create normal USB audio interfaces */
637 638 639 640 641
		err = snd_usb_create_streams(chip, ifnum);
		if (err < 0)
			goto __error;
		err = snd_usb_create_mixer(chip, ifnum, ignore_ctl_error);
		if (err < 0)
D
Daniel Mack 已提交
642 643 644 645
			goto __error;
	}

	/* we are allowed to call snd_card_register() many times */
646 647
	err = snd_card_register(chip->card);
	if (err < 0)
D
Daniel Mack 已提交
648 649 650 651
		goto __error;

	usb_chip[chip->index] = chip;
	chip->num_interfaces++;
652
	usb_set_intfdata(intf, chip);
653
	atomic_dec(&chip->active);
D
Daniel Mack 已提交
654
	mutex_unlock(&register_mutex);
655
	return 0;
D
Daniel Mack 已提交
656 657

 __error:
658 659 660
	if (chip) {
		if (!chip->num_interfaces)
			snd_card_free(chip->card);
661
		atomic_dec(&chip->active);
662
	}
D
Daniel Mack 已提交
663
	mutex_unlock(&register_mutex);
664
	return err;
D
Daniel Mack 已提交
665 666 667 668 669 670
}

/*
 * we need to take care of counter, since disconnection can be called also
 * many times as well as usb_audio_probe().
 */
671
static void usb_audio_disconnect(struct usb_interface *intf)
D
Daniel Mack 已提交
672
{
673
	struct snd_usb_audio *chip = usb_get_intfdata(intf);
D
Daniel Mack 已提交
674
	struct snd_card *card;
675
	struct list_head *p;
D
Daniel Mack 已提交
676

677
	if (chip == (void *)-1L)
D
Daniel Mack 已提交
678 679 680
		return;

	card = chip->card;
681 682

	mutex_lock(&register_mutex);
683
	if (atomic_inc_return(&chip->shutdown) == 1) {
684
		struct snd_usb_stream *as;
685
		struct snd_usb_endpoint *ep;
686
		struct usb_mixer_interface *mixer;
687

688 689 690 691 692
		/* wait until all pending tasks done;
		 * they are protected by snd_usb_lock_shutdown()
		 */
		wait_event(chip->shutdown_wait,
			   !atomic_read(&chip->usage_count));
D
Daniel Mack 已提交
693 694
		snd_card_disconnect(card);
		/* release the pcm resources */
695 696
		list_for_each_entry(as, &chip->pcm_list, list) {
			snd_usb_stream_disconnect(as);
D
Daniel Mack 已提交
697
		}
698
		/* release the endpoint resources */
699 700
		list_for_each_entry(ep, &chip->ep_list, list) {
			snd_usb_endpoint_release(ep);
701
		}
D
Daniel Mack 已提交
702 703 704 705 706
		/* release the midi resources */
		list_for_each(p, &chip->midi_list) {
			snd_usbmidi_disconnect(p);
		}
		/* release mixer resources */
707 708
		list_for_each_entry(mixer, &chip->mixer_list, list) {
			snd_usb_mixer_disconnect(mixer);
D
Daniel Mack 已提交
709
		}
710 711 712 713
	}

	chip->num_interfaces--;
	if (chip->num_interfaces <= 0) {
D
Daniel Mack 已提交
714 715 716 717 718 719 720 721
		usb_chip[chip->index] = NULL;
		mutex_unlock(&register_mutex);
		snd_card_free_when_closed(card);
	} else {
		mutex_unlock(&register_mutex);
	}
}

722 723
/* lock the shutdown (disconnect) task and autoresume */
int snd_usb_lock_shutdown(struct snd_usb_audio *chip)
724
{
725
	int err;
726

727 728 729 730 731 732 733 734 735
	atomic_inc(&chip->usage_count);
	if (atomic_read(&chip->shutdown)) {
		err = -EIO;
		goto error;
	}
	err = snd_usb_autoresume(chip);
	if (err < 0)
		goto error;
	return 0;
736

737 738 739
 error:
	if (atomic_dec_and_test(&chip->usage_count))
		wake_up(&chip->shutdown_wait);
740 741 742
	return err;
}

743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761
/* autosuspend and unlock the shutdown */
void snd_usb_unlock_shutdown(struct snd_usb_audio *chip)
{
	snd_usb_autosuspend(chip);
	if (atomic_dec_and_test(&chip->usage_count))
		wake_up(&chip->shutdown_wait);
}

#ifdef CONFIG_PM

int snd_usb_autoresume(struct snd_usb_audio *chip)
{
	if (atomic_read(&chip->shutdown))
		return -EIO;
	if (atomic_inc_return(&chip->active) == 1)
		return usb_autopm_get_interface(chip->pm_intf);
	return 0;
}

762 763
void snd_usb_autosuspend(struct snd_usb_audio *chip)
{
764 765
	if (atomic_read(&chip->shutdown))
		return;
766
	if (atomic_dec_and_test(&chip->active))
767 768 769
		usb_autopm_put_interface(chip->pm_intf);
}

D
Daniel Mack 已提交
770 771 772 773
static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message)
{
	struct snd_usb_audio *chip = usb_get_intfdata(intf);
	struct snd_usb_stream *as;
774
	struct usb_mixer_interface *mixer;
775
	struct list_head *p;
D
Daniel Mack 已提交
776 777 778 779

	if (chip == (void *)-1L)
		return 0;

780 781
	chip->autosuspended = !!PMSG_IS_AUTO(message);
	if (!chip->autosuspended)
782
		snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
783 784 785 786 787
	if (!chip->num_suspended_intf++) {
		list_for_each_entry(as, &chip->pcm_list, list) {
			snd_pcm_suspend_all(as->pcm);
			as->substream[0].need_setup_ep =
				as->substream[1].need_setup_ep = true;
788
		}
789 790
		list_for_each(p, &chip->midi_list)
			snd_usbmidi_suspend(p);
791 792
		list_for_each_entry(mixer, &chip->mixer_list, list)
			snd_usb_mixer_suspend(mixer);
793
	}
794

D
Daniel Mack 已提交
795 796 797
	return 0;
}

798
static int __usb_audio_resume(struct usb_interface *intf, bool reset_resume)
D
Daniel Mack 已提交
799 800
{
	struct snd_usb_audio *chip = usb_get_intfdata(intf);
801
	struct usb_mixer_interface *mixer;
802
	struct list_head *p;
803
	int err = 0;
D
Daniel Mack 已提交
804 805 806 807 808

	if (chip == (void *)-1L)
		return 0;
	if (--chip->num_suspended_intf)
		return 0;
809

810
	atomic_inc(&chip->active); /* avoid autopm */
D
Daniel Mack 已提交
811 812
	/*
	 * ALSA leaves material resumption to user space
813
	 * we just notify and restart the mixers
D
Daniel Mack 已提交
814
	 */
815
	list_for_each_entry(mixer, &chip->mixer_list, list) {
816
		err = snd_usb_mixer_resume(mixer, reset_resume);
817 818 819
		if (err < 0)
			goto err_out;
	}
D
Daniel Mack 已提交
820

821 822 823 824
	list_for_each(p, &chip->midi_list) {
		snd_usbmidi_resume(p);
	}

825 826 827
	if (!chip->autosuspended)
		snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
	chip->autosuspended = 0;
D
Daniel Mack 已提交
828

829
err_out:
830
	atomic_dec(&chip->active); /* allow autopm after this point */
831
	return err;
D
Daniel Mack 已提交
832
}
833 834 835 836 837 838 839 840 841 842

static int usb_audio_resume(struct usb_interface *intf)
{
	return __usb_audio_resume(intf, false);
}

static int usb_audio_reset_resume(struct usb_interface *intf)
{
	return __usb_audio_resume(intf, true);
}
843 844 845
#else
#define usb_audio_suspend	NULL
#define usb_audio_resume	NULL
846
#define usb_audio_reset_resume	NULL
D
Daniel Mack 已提交
847 848
#endif		/* CONFIG_PM */

849
static const struct usb_device_id usb_audio_ids [] = {
D
Daniel Mack 已提交
850 851 852 853 854 855
#include "quirks-table.h"
    { .match_flags = (USB_DEVICE_ID_MATCH_INT_CLASS | USB_DEVICE_ID_MATCH_INT_SUBCLASS),
      .bInterfaceClass = USB_CLASS_AUDIO,
      .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL },
    { }						/* Terminating entry */
};
856
MODULE_DEVICE_TABLE(usb, usb_audio_ids);
D
Daniel Mack 已提交
857 858 859 860 861 862 863 864 865 866 867

/*
 * entry point for linux usb interface
 */

static struct usb_driver usb_audio_driver = {
	.name =		"snd-usb-audio",
	.probe =	usb_audio_probe,
	.disconnect =	usb_audio_disconnect,
	.suspend =	usb_audio_suspend,
	.resume =	usb_audio_resume,
868
	.reset_resume =	usb_audio_reset_resume,
D
Daniel Mack 已提交
869
	.id_table =	usb_audio_ids,
870
	.supports_autosuspend = 1,
D
Daniel Mack 已提交
871 872
};

873
module_usb_driver(usb_audio_driver);