card.c 30.0 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
D
Daniel Mack 已提交
2 3 4 5 6 7 8 9 10
/*
 *   (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)
 *
11
 *   Audio Class 3.0 support by Ruslan Bilovol <ruslan.bilovol@gmail.com>
D
Daniel Mack 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 *  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>
28
#include <linux/ctype.h>
D
Daniel Mack 已提交
29 30 31 32
#include <linux/usb.h>
#include <linux/moduleparam.h>
#include <linux/mutex.h>
#include <linux/usb/audio.h>
D
Daniel Mack 已提交
33
#include <linux/usb/audio-v2.h>
34
#include <linux/usb/audio-v3.h>
35
#include <linux/module.h>
D
Daniel Mack 已提交
36

37
#include <sound/control.h>
D
Daniel Mack 已提交
38 39 40 41 42 43 44 45 46
#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"
47
#include "mixer.h"
D
Daniel Mack 已提交
48 49 50 51 52 53
#include "proc.h"
#include "quirks.h"
#include "endpoint.h"
#include "helper.h"
#include "pcm.h"
#include "format.h"
54
#include "power.h"
D
Daniel Mack 已提交
55
#include "stream.h"
56
#include "media.h"
D
Daniel Mack 已提交
57 58 59 60 61 62 63 64 65

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 */
66
static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
D
Daniel Mack 已提交
67 68 69 70
/* 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 */
71
static bool ignore_ctl_error;
72
static bool autoclock = true;
73
static char *quirk_alias[SNDRV_CARDS];
74
static char *delayed_register[SNDRV_CARDS];
75
static bool implicit_fb[SNDRV_CARDS];
D
Daniel Mack 已提交
76

77
bool snd_usb_use_vmalloc = true;
78
bool snd_usb_skip_validation;
79

D
Daniel Mack 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
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.");
95 96
module_param(autoclock, bool, 0444);
MODULE_PARM_DESC(autoclock, "Enable auto-clock selection for UAC2 devices (default: yes).");
97 98
module_param_array(quirk_alias, charp, NULL, 0444);
MODULE_PARM_DESC(quirk_alias, "Quirk aliases, e.g. 0123abcd:5678beef.");
99 100
module_param_array(delayed_register, charp, NULL, 0444);
MODULE_PARM_DESC(delayed_register, "Quirk for delayed registration, given by id:iface, e.g. 0123abcd:4.");
101 102
module_param_array(implicit_fb, bool, NULL, 0444);
MODULE_PARM_DESC(implicit_fb, "Apply generic implicit feedback sync mode.");
103 104
module_param_named(use_vmalloc, snd_usb_use_vmalloc, bool, 0444);
MODULE_PARM_DESC(use_vmalloc, "Use vmalloc for PCM intermediate buffers (default: yes).");
105 106
module_param_named(skip_validation, snd_usb_skip_validation, bool, 0444);
MODULE_PARM_DESC(skip_validation, "Skip unit descriptor validation (default: no).");
D
Daniel Mack 已提交
107 108 109 110 111 112 113 114 115 116 117 118

/*
 * 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
119
 * called from usb_audio_disconnect()
D
Daniel Mack 已提交
120
 */
121
static void snd_usb_stream_disconnect(struct snd_usb_stream *as)
D
Daniel Mack 已提交
122 123 124 125 126 127 128
{
	int idx;
	struct snd_usb_substream *subs;

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

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) {
143 144
		dev_err(&dev->dev, "%u:%d : does not exist\n",
			ctrlif, interface);
D
Daniel Mack 已提交
145 146 147
		return -EINVAL;
	}

148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
	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 已提交
168
	if (usb_interface_claimed(iface)) {
169 170
		dev_dbg(&dev->dev, "%d:%d: skipping, already claimed\n",
			ctrlif, interface);
D
Daniel Mack 已提交
171 172 173 174 175 176
		return -EINVAL;
	}

	if ((altsd->bInterfaceClass == USB_CLASS_AUDIO ||
	     altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC) &&
	    altsd->bInterfaceSubClass == USB_SUBCLASS_MIDISTREAMING) {
177 178 179
		int err = __snd_usbmidi_create(chip->card, iface,
					     &chip->midi_list, NULL,
					     chip->usb_id);
D
Daniel Mack 已提交
180
		if (err < 0) {
181 182 183
			dev_err(&dev->dev,
				"%u:%d: cannot create sequencer device\n",
				ctrlif, interface);
D
Daniel Mack 已提交
184 185 186 187 188 189 190 191 192 193
			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) {
194 195 196
		dev_dbg(&dev->dev,
			"%u:%d: skipping non-supported interface %d\n",
			ctrlif, interface, altsd->bInterfaceClass);
D
Daniel Mack 已提交
197 198 199 200 201
		/* skip non-supported classes */
		return -EINVAL;
	}

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

D
Daniel Mack 已提交
206
	if (! snd_usb_parse_audio_interface(chip, interface)) {
D
Daniel Mack 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
		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;
	int i, protocol;

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

	switch (protocol) {
230
	default:
231 232 233
		dev_warn(&dev->dev,
			 "unknown interface protocol %#02x, assuming v1\n",
			 protocol);
234
		fallthrough;
235

D
Daniel Mack 已提交
236
	case UAC_VERSION_1: {
237 238 239 240 241 242
		struct uac1_ac_header_descriptor *h1;
		int rest_bytes;

		h1 = snd_usb_find_csint_desc(host_iface->extra,
							 host_iface->extralen,
							 NULL, UAC_HEADER);
243
		if (!h1 || h1->bLength < sizeof(*h1)) {
244 245 246 247 248 249 250 251 252 253 254 255
			dev_err(&dev->dev, "cannot find UAC_HEADER\n");
			return -EINVAL;
		}

		rest_bytes = (void *)(host_iface->extra +
				host_iface->extralen) - (void *)h1;

		/* 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 已提交
256

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

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

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

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

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

		break;
	}

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

288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
		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 已提交
303
		if (!assoc) {
304
			dev_err(&dev->dev, "Audio class v2/v3 interfaces need an interface association\n");
D
Daniel Mack 已提交
305 306 307
			return -EINVAL;
		}

308 309 310 311 312 313 314 315 316 317 318 319 320 321
		if (protocol == UAC_VERSION_3) {
			int badd = assoc->bFunctionSubClass;

			if (badd != UAC3_FUNCTION_SUBCLASS_FULL_ADC_3_0 &&
			    (badd < UAC3_FUNCTION_SUBCLASS_GENERIC_IO ||
			     badd > UAC3_FUNCTION_SUBCLASS_SPEAKERPHONE)) {
				dev_err(&dev->dev,
					"Unsupported UAC3 BADD profile\n");
				return -EINVAL;
			}

			chip->badd_profile = badd;
		}

D
Daniel Mack 已提交
322 323 324 325 326 327 328 329 330 331 332 333 334 335
		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;
}

336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
/*
 * Profile name preset table
 */
struct usb_audio_device_name {
	u32 id;
	const char *vendor_name;
	const char *product_name;
	const char *profile_name;	/* override card->longname */
};

#define PROFILE_NAME(vid, pid, vendor, product, profile)	 \
	{ .id = USB_ID(vid, pid), .vendor_name = (vendor),	 \
	  .product_name = (product), .profile_name = (profile) }
#define DEVICE_NAME(vid, pid, vendor, product) \
	PROFILE_NAME(vid, pid, vendor, product, NULL)

/* vendor/product and profile name presets, sorted in device id order */
static const struct usb_audio_device_name usb_audio_names[] = {
	/* HP Thunderbolt Dock Audio Headset */
	PROFILE_NAME(0x03f0, 0x0269, "HP", "Thunderbolt Dock Audio Headset",
		     "HP-Thunderbolt-Dock-Audio-Headset"),
	/* HP Thunderbolt Dock Audio Module */
	PROFILE_NAME(0x03f0, 0x0567, "HP", "Thunderbolt Dock Audio Module",
		     "HP-Thunderbolt-Dock-Audio-Module"),

	/* Two entries for Gigabyte TRX40 Aorus Master:
	 * TRX40 Aorus Master has two USB-audio devices, one for the front
	 * headphone with ESS SABRE9218 DAC chip, while another for the rest
	 * I/O (the rear panel and the front mic) with Realtek ALC1220-VB.
	 * Here we provide two distinct names for making UCM profiles easier.
	 */
	PROFILE_NAME(0x0414, 0xa000, "Gigabyte", "Aorus Master Front Headphone",
		     "Gigabyte-Aorus-Master-Front-Headphone"),
	PROFILE_NAME(0x0414, 0xa001, "Gigabyte", "Aorus Master Main Audio",
		     "Gigabyte-Aorus-Master-Main-Audio"),

	/* Gigabyte TRX40 Aorus Pro WiFi */
	PROFILE_NAME(0x0414, 0xa002,
		     "Realtek", "ALC1220-VB-DT", "Realtek-ALC1220-VB-Desktop"),

	/* Creative/E-Mu devices */
	DEVICE_NAME(0x041e, 0x3010, "Creative Labs", "Sound Blaster MP3+"),
	/* Creative/Toshiba Multimedia Center SB-0500 */
	DEVICE_NAME(0x041e, 0x3048, "Toshiba", "SB-0500"),

	DEVICE_NAME(0x046d, 0x0990, "Logitech, Inc.", "QuickCam Pro 9000"),

383 384 385
	/* ASUS ROG Strix */
	PROFILE_NAME(0x0b05, 0x1917,
		     "Realtek", "ALC1220-VB-DT", "Realtek-ALC1220-VB-Desktop"),
386 387 388
	/* ASUS PRIME TRX40 PRO-S */
	PROFILE_NAME(0x0b05, 0x1918,
		     "Realtek", "ALC1220-VB-DT", "Realtek-ALC1220-VB-Desktop"),
389

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
	/* Dell WD15 Dock */
	PROFILE_NAME(0x0bda, 0x4014, "Dell", "WD15 Dock", "Dell-WD15-Dock"),
	/* Dell WD19 Dock */
	PROFILE_NAME(0x0bda, 0x402e, "Dell", "WD19 Dock", "Dell-WD15-Dock"),

	DEVICE_NAME(0x0ccd, 0x0028, "TerraTec", "Aureon5.1MkII"),

	/*
	 * The original product_name is "USB Sound Device", however this name
	 * is also used by the CM106 based cards, so make it unique.
	 */
	DEVICE_NAME(0x0d8c, 0x0102, NULL, "ICUSBAUDIO7D"),
	DEVICE_NAME(0x0d8c, 0x0103, NULL, "Audio Advantage MicroII"),

	/* MSI TRX40 Creator */
	PROFILE_NAME(0x0db0, 0x0d64,
		     "Realtek", "ALC1220-VB-DT", "Realtek-ALC1220-VB-Desktop"),
	/* MSI TRX40 */
	PROFILE_NAME(0x0db0, 0x543d,
		     "Realtek", "ALC1220-VB-DT", "Realtek-ALC1220-VB-Desktop"),

	/* Stanton/N2IT Final Scratch v1 device ('Scratchamp') */
	DEVICE_NAME(0x103d, 0x0100, "Stanton", "ScratchAmp"),
	DEVICE_NAME(0x103d, 0x0101, "Stanton", "ScratchAmp"),

	/* aka. Serato Scratch Live DJ Box */
	DEVICE_NAME(0x13e5, 0x0001, "Rane", "SL-1"),

	/* Lenovo ThinkStation P620 Rear Line-in, Line-out and Microphone */
	PROFILE_NAME(0x17aa, 0x1046, "Lenovo", "ThinkStation P620 Rear",
		     "Lenovo-ThinkStation-P620-Rear"),
	/* Lenovo ThinkStation P620 Internal Speaker + Front Headset */
	PROFILE_NAME(0x17aa, 0x104d, "Lenovo", "ThinkStation P620 Main",
		     "Lenovo-ThinkStation-P620-Main"),

	/* Asrock TRX40 Creator */
	PROFILE_NAME(0x26ce, 0x0a01,
		     "Realtek", "ALC1220-VB-DT", "Realtek-ALC1220-VB-Desktop"),

	{ } /* terminator */
};

static const struct usb_audio_device_name *
lookup_device_name(u32 id)
{
	static const struct usb_audio_device_name *p;

	for (p = usb_audio_names; p->id; p++)
		if (p->id == id)
			return p;
	return NULL;
}

D
Daniel Mack 已提交
443 444 445 446 447 448 449
/*
 * free the chip instance
 *
 * here we have to do not much, since pcm and controls are already freed
 *
 */

450
static void snd_usb_audio_free(struct snd_card *card)
D
Daniel Mack 已提交
451
{
452
	struct snd_usb_audio *chip = card->private_data;
453
	struct snd_usb_endpoint *ep, *n;
454

455 456
	list_for_each_entry_safe(ep, n, &chip->ep_list, list)
		snd_usb_endpoint_free(ep);
457

458
	mutex_destroy(&chip->mutex);
459 460
	if (!atomic_read(&chip->shutdown))
		dev_set_drvdata(&chip->dev->dev, NULL);
D
Daniel Mack 已提交
461 462
}

463 464 465 466 467
static void usb_audio_make_shortname(struct usb_device *dev,
				     struct snd_usb_audio *chip,
				     const struct snd_usb_audio_quirk *quirk)
{
	struct snd_card *card = chip->card;
468 469 470 471 472 473 474 475 476 477
	const struct usb_audio_device_name *preset;
	const char *s = NULL;

	preset = lookup_device_name(chip->usb_id);
	if (preset && preset->product_name)
		s = preset->product_name;
	else if (quirk && quirk->product_name)
		s = quirk->product_name;
	if (s && *s) {
		strlcpy(card->shortname, s, sizeof(card->shortname));
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
		return;
	}

	/* retrieve the device string as shortname */
	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));
	}

	strim(card->shortname);
}

static void usb_audio_make_longname(struct usb_device *dev,
				    struct snd_usb_audio *chip,
				    const struct snd_usb_audio_quirk *quirk)
{
	struct snd_card *card = chip->card;
499 500
	const struct usb_audio_device_name *preset;
	const char *s = NULL;
501 502
	int len;

503 504
	preset = lookup_device_name(chip->usb_id);

505
	/* shortcut - if any pre-defined string is given, use it */
506 507 508 509
	if (preset && preset->profile_name)
		s = preset->profile_name;
	if (s && *s) {
		strlcpy(card->longname, s, sizeof(card->longname));
510 511 512
		return;
	}

513 514 515 516 517 518
	if (preset && preset->vendor_name)
		s = preset->vendor_name;
	else if (quirk && quirk->vendor_name)
		s = quirk->vendor_name;
	if (s && *s) {
		len = strlcpy(card->longname, s, sizeof(card->longname));
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
	} else {
		/* retrieve the vendor and device strings as longname */
		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 */
	}
	if (len > 0) {
		strim(card->longname);
		if (*card->longname)
			strlcat(card->longname, " ", sizeof(card->longname));
	}

	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);

	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;
	case USB_SPEED_SUPER_PLUS:
		strlcat(card->longname, ", super speed plus", sizeof(card->longname));
		break;
	default:
		break;
	}
}

D
Daniel Mack 已提交
562 563 564
/*
 * create a chip instance and set its names.
 */
565 566
static int snd_usb_audio_create(struct usb_interface *intf,
				struct usb_device *dev, int idx,
D
Daniel Mack 已提交
567
				const struct snd_usb_audio_quirk *quirk,
568
				unsigned int usb_id,
D
Daniel Mack 已提交
569 570 571 572
				struct snd_usb_audio **rchip)
{
	struct snd_card *card;
	struct snd_usb_audio *chip;
573
	int err;
D
Daniel Mack 已提交
574 575 576 577
	char component[14];

	*rchip = NULL;

578 579 580 581
	switch (snd_usb_get_speed(dev)) {
	case USB_SPEED_LOW:
	case USB_SPEED_FULL:
	case USB_SPEED_HIGH:
582
	case USB_SPEED_WIRELESS:
583
	case USB_SPEED_SUPER:
584
	case USB_SPEED_SUPER_PLUS:
585 586
		break;
	default:
587
		dev_err(&dev->dev, "unknown device speed %d\n", snd_usb_get_speed(dev));
D
Daniel Mack 已提交
588 589 590
		return -ENXIO;
	}

591
	err = snd_card_new(&intf->dev, index[idx], id[idx], THIS_MODULE,
592
			   sizeof(*chip), &card);
D
Daniel Mack 已提交
593
	if (err < 0) {
594
		dev_err(&dev->dev, "cannot create card instance %d\n", idx);
D
Daniel Mack 已提交
595 596 597
		return err;
	}

598
	chip = card->private_data;
599
	mutex_init(&chip->mutex);
600
	init_waitqueue_head(&chip->shutdown_wait);
D
Daniel Mack 已提交
601 602 603 604
	chip->index = idx;
	chip->dev = dev;
	chip->card = card;
	chip->setup = device_setup[idx];
605
	chip->generic_implicit_fb = implicit_fb[idx];
606
	chip->autoclock = autoclock;
607
	atomic_set(&chip->active, 1); /* avoid autopm during probing */
608 609
	atomic_set(&chip->usage_count, 0);
	atomic_set(&chip->shutdown, 0);
D
Daniel Mack 已提交
610

611
	chip->usb_id = usb_id;
D
Daniel Mack 已提交
612
	INIT_LIST_HEAD(&chip->pcm_list);
613
	INIT_LIST_HEAD(&chip->ep_list);
D
Daniel Mack 已提交
614 615 616
	INIT_LIST_HEAD(&chip->midi_list);
	INIT_LIST_HEAD(&chip->mixer_list);

617
	card->private_free = snd_usb_audio_free;
D
Daniel Mack 已提交
618 619 620 621 622 623

	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);

624 625
	usb_audio_make_shortname(dev, chip, quirk);
	usb_audio_make_longname(dev, chip, quirk);
D
Daniel Mack 已提交
626 627 628 629 630 631 632

	snd_usb_audio_create_proc(chip);

	*rchip = chip;
	return 0;
}

633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
/* 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;
}

655 656 657 658 659 660 661 662 663 664 665 666 667 668 669
static bool check_delayed_register_option(struct snd_usb_audio *chip, int iface)
{
	int i;
	unsigned int id, inum;

	for (i = 0; i < ARRAY_SIZE(delayed_register); i++) {
		if (delayed_register[i] &&
		    sscanf(delayed_register[i], "%x:%x", &id, &inum) == 2 &&
		    id == chip->usb_id)
			return inum != iface;
	}

	return false;
}

670
static const struct usb_device_id usb_audio_ids[]; /* defined below */
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689

/* 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 已提交
690 691 692 693 694 695 696 697 698 699
/*
 * 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.
 */
700 701
static int usb_audio_probe(struct usb_interface *intf,
			   const struct usb_device_id *usb_id)
D
Daniel Mack 已提交
702
{
703 704 705
	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 已提交
706
	struct snd_usb_audio *chip;
707
	int i, err;
D
Daniel Mack 已提交
708 709 710 711 712 713 714 715
	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));
716 717
	if (get_alias_id(dev, &id))
		quirk = get_alias_quirk(dev, id);
D
Daniel Mack 已提交
718
	if (quirk && quirk->ifnum >= 0 && ifnum != quirk->ifnum)
719
		return -ENXIO;
D
Daniel Mack 已提交
720

721
	err = snd_usb_apply_boot_quirk(dev, intf, quirk, id);
722 723
	if (err < 0)
		return err;
D
Daniel Mack 已提交
724 725 726 727 728 729 730 731 732 733

	/*
	 * 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) {
734
			if (atomic_read(&usb_chip[i]->shutdown)) {
735
				dev_err(&dev->dev, "USB device is in the shutdown state, cannot create a card instance\n");
736
				err = -EIO;
D
Daniel Mack 已提交
737 738 739
				goto __error;
			}
			chip = usb_chip[i];
740
			atomic_inc(&chip->active); /* avoid autopm */
D
Daniel Mack 已提交
741 742 743 744
			break;
		}
	}
	if (! chip) {
745 746
		err = snd_usb_apply_boot_quirk_once(dev, intf, quirk, id);
		if (err < 0)
747
			goto __error;
748

D
Daniel Mack 已提交
749 750 751 752
		/* it's a fresh one.
		 * now look for an empty slot and create a new card instance
		 */
		for (i = 0; i < SNDRV_CARDS; i++)
753
			if (!usb_chip[i] &&
D
Daniel Mack 已提交
754 755
			    (vid[i] == -1 || vid[i] == USB_ID_VENDOR(id)) &&
			    (pid[i] == -1 || pid[i] == USB_ID_PRODUCT(id))) {
756 757 758 759 760 761 762 763 764 765 766 767
				if (enable[i]) {
					err = snd_usb_audio_create(intf, dev, i, quirk,
								   id, &chip);
					if (err < 0)
						goto __error;
					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 已提交
768
					goto __error;
769
				}
D
Daniel Mack 已提交
770 771
			}
		if (!chip) {
772
			dev_err(&dev->dev, "no available usb audio device\n");
773
			err = -ENODEV;
D
Daniel Mack 已提交
774 775 776
			goto __error;
		}
	}
777 778 779 780 781 782 783

	if (chip->num_interfaces >= MAX_CARD_INTERFACES) {
		dev_info(&dev->dev, "Too many interfaces assigned to the single USB-audio card\n");
		err = -EINVAL;
		goto __error;
	}

784
	dev_set_drvdata(&dev->dev, chip);
D
Daniel Mack 已提交
785

786 787 788 789 790 791 792
	/*
	 * 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;
793

794 795 796 797
	chip->txfr_quirk = 0;
	err = 1; /* continue */
	if (quirk && quirk->ifnum != QUIRK_NO_INTERFACE) {
		/* need some special handlings */
798 799
		err = snd_usb_create_quirk(chip, intf, &usb_audio_driver, quirk);
		if (err < 0)
800 801 802
			goto __error;
	}

D
Daniel Mack 已提交
803 804
	if (err > 0) {
		/* create normal USB audio interfaces */
805 806 807 808 809
		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 已提交
810 811 812
			goto __error;
	}

813 814 815 816 817 818 819
	if (chip->need_delayed_register) {
		dev_info(&dev->dev,
			 "Found post-registration device assignment: %08x:%02x\n",
			 chip->usb_id, ifnum);
		chip->need_delayed_register = false; /* clear again */
	}

820 821 822
	/* we are allowed to call snd_card_register() many times, but first
	 * check to see if a device needs to skip it or do anything special
	 */
823 824
	if (!snd_usb_registration_quirk(chip, ifnum) &&
	    !check_delayed_register_option(chip, ifnum)) {
825 826 827 828
		err = snd_card_register(chip->card);
		if (err < 0)
			goto __error;
	}
D
Daniel Mack 已提交
829

830 831 832 833 834
	if (quirk && quirk->shares_media_device) {
		/* don't want to fail when snd_media_device_create() fails */
		snd_media_device_create(chip, intf);
	}

D
Daniel Mack 已提交
835
	usb_chip[chip->index] = chip;
836
	chip->intf[chip->num_interfaces] = intf;
D
Daniel Mack 已提交
837
	chip->num_interfaces++;
838
	usb_set_intfdata(intf, chip);
839
	atomic_dec(&chip->active);
D
Daniel Mack 已提交
840
	mutex_unlock(&register_mutex);
841
	return 0;
D
Daniel Mack 已提交
842 843

 __error:
844
	if (chip) {
845 846 847 848
		/* chip->active is inside the chip->card object,
		 * decrement before memory is possibly returned.
		 */
		atomic_dec(&chip->active);
849 850 851
		if (!chip->num_interfaces)
			snd_card_free(chip->card);
	}
D
Daniel Mack 已提交
852
	mutex_unlock(&register_mutex);
853
	return err;
D
Daniel Mack 已提交
854 855 856 857 858 859
}

/*
 * we need to take care of counter, since disconnection can be called also
 * many times as well as usb_audio_probe().
 */
860
static void usb_audio_disconnect(struct usb_interface *intf)
D
Daniel Mack 已提交
861
{
862
	struct snd_usb_audio *chip = usb_get_intfdata(intf);
D
Daniel Mack 已提交
863
	struct snd_card *card;
864
	struct list_head *p;
D
Daniel Mack 已提交
865

866
	if (chip == (void *)-1L)
D
Daniel Mack 已提交
867 868 869
		return;

	card = chip->card;
870 871

	mutex_lock(&register_mutex);
872
	if (atomic_inc_return(&chip->shutdown) == 1) {
873
		struct snd_usb_stream *as;
874
		struct snd_usb_endpoint *ep;
875
		struct usb_mixer_interface *mixer;
876

877 878 879 880 881
		/* 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 已提交
882 883
		snd_card_disconnect(card);
		/* release the pcm resources */
884 885
		list_for_each_entry(as, &chip->pcm_list, list) {
			snd_usb_stream_disconnect(as);
D
Daniel Mack 已提交
886
		}
887
		/* release the endpoint resources */
888 889
		list_for_each_entry(ep, &chip->ep_list, list) {
			snd_usb_endpoint_release(ep);
890
		}
D
Daniel Mack 已提交
891 892 893 894
		/* release the midi resources */
		list_for_each(p, &chip->midi_list) {
			snd_usbmidi_disconnect(p);
		}
895 896 897 898 899 900 901 902
		/*
		 * Nice to check quirk && quirk->shares_media_device and
		 * then call the snd_media_device_delete(). Don't have
		 * access to the quirk here. snd_media_device_delete()
		 * accesses mixer_list
		 */
		snd_media_device_delete(chip);

D
Daniel Mack 已提交
903
		/* release mixer resources */
904 905
		list_for_each_entry(mixer, &chip->mixer_list, list) {
			snd_usb_mixer_disconnect(mixer);
D
Daniel Mack 已提交
906
		}
907 908 909 910
	}

	chip->num_interfaces--;
	if (chip->num_interfaces <= 0) {
D
Daniel Mack 已提交
911 912 913 914 915 916 917 918
		usb_chip[chip->index] = NULL;
		mutex_unlock(&register_mutex);
		snd_card_free_when_closed(card);
	} else {
		mutex_unlock(&register_mutex);
	}
}

919 920
/* lock the shutdown (disconnect) task and autoresume */
int snd_usb_lock_shutdown(struct snd_usb_audio *chip)
921
{
922
	int err;
923

924 925 926 927 928 929 930 931 932
	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;
933

934 935 936
 error:
	if (atomic_dec_and_test(&chip->usage_count))
		wake_up(&chip->shutdown_wait);
937 938 939
	return err;
}

940 941 942 943 944 945 946 947 948 949 950 951
/* 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)
{
952 953
	int i, err;

954 955
	if (atomic_read(&chip->shutdown))
		return -EIO;
956 957 958 959 960 961 962 963 964 965 966 967 968
	if (atomic_inc_return(&chip->active) != 1)
		return 0;

	for (i = 0; i < chip->num_interfaces; i++) {
		err = usb_autopm_get_interface(chip->intf[i]);
		if (err < 0) {
			/* rollback */
			while (--i >= 0)
				usb_autopm_put_interface(chip->intf[i]);
			atomic_dec(&chip->active);
			return err;
		}
	}
969 970 971
	return 0;
}

972 973
void snd_usb_autosuspend(struct snd_usb_audio *chip)
{
974 975
	int i;

976 977
	if (atomic_read(&chip->shutdown))
		return;
978 979 980 981 982
	if (!atomic_dec_and_test(&chip->active))
		return;

	for (i = 0; i < chip->num_interfaces; i++)
		usb_autopm_put_interface(chip->intf[i]);
983 984
}

D
Daniel Mack 已提交
985 986 987 988
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;
989
	struct snd_usb_endpoint *ep;
990
	struct usb_mixer_interface *mixer;
991
	struct list_head *p;
D
Daniel Mack 已提交
992 993 994 995

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

996
	if (!chip->num_suspended_intf++) {
997
		list_for_each_entry(as, &chip->pcm_list, list)
998
			snd_usb_pcm_suspend(as);
999 1000
		list_for_each_entry(ep, &chip->ep_list, list)
			snd_usb_endpoint_suspend(ep);
1001 1002
		list_for_each(p, &chip->midi_list)
			snd_usbmidi_suspend(p);
1003 1004
		list_for_each_entry(mixer, &chip->mixer_list, list)
			snd_usb_mixer_suspend(mixer);
1005
	}
1006

1007 1008 1009 1010 1011
	if (!PMSG_IS_AUTO(message) && !chip->system_suspend) {
		snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
		chip->system_suspend = chip->num_suspended_intf;
	}

D
Daniel Mack 已提交
1012 1013 1014
	return 0;
}

1015
static int __usb_audio_resume(struct usb_interface *intf, bool reset_resume)
D
Daniel Mack 已提交
1016 1017
{
	struct snd_usb_audio *chip = usb_get_intfdata(intf);
1018
	struct snd_usb_stream *as;
1019
	struct usb_mixer_interface *mixer;
1020
	struct list_head *p;
1021
	int err = 0;
D
Daniel Mack 已提交
1022 1023 1024

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

1026
	atomic_inc(&chip->active); /* avoid autopm */
1027 1028
	if (chip->num_suspended_intf > 1)
		goto out;
1029 1030 1031 1032 1033 1034 1035

	list_for_each_entry(as, &chip->pcm_list, list) {
		err = snd_usb_pcm_resume(as);
		if (err < 0)
			goto err_out;
	}

D
Daniel Mack 已提交
1036 1037
	/*
	 * ALSA leaves material resumption to user space
1038
	 * we just notify and restart the mixers
D
Daniel Mack 已提交
1039
	 */
1040
	list_for_each_entry(mixer, &chip->mixer_list, list) {
1041
		err = snd_usb_mixer_resume(mixer, reset_resume);
1042 1043 1044
		if (err < 0)
			goto err_out;
	}
D
Daniel Mack 已提交
1045

1046 1047 1048 1049
	list_for_each(p, &chip->midi_list) {
		snd_usbmidi_resume(p);
	}

1050 1051
 out:
	if (chip->num_suspended_intf == chip->system_suspend) {
1052
		snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
1053 1054 1055
		chip->system_suspend = 0;
	}
	chip->num_suspended_intf--;
D
Daniel Mack 已提交
1056

1057
err_out:
1058
	atomic_dec(&chip->active); /* allow autopm after this point */
1059
	return err;
D
Daniel Mack 已提交
1060
}
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070

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);
}
1071 1072 1073
#else
#define usb_audio_suspend	NULL
#define usb_audio_resume	NULL
1074
#define usb_audio_reset_resume	NULL
D
Daniel Mack 已提交
1075 1076
#endif		/* CONFIG_PM */

1077
static const struct usb_device_id usb_audio_ids [] = {
D
Daniel Mack 已提交
1078 1079 1080 1081 1082 1083
#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 */
};
1084
MODULE_DEVICE_TABLE(usb, usb_audio_ids);
D
Daniel Mack 已提交
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095

/*
 * 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,
1096
	.reset_resume =	usb_audio_reset_resume,
D
Daniel Mack 已提交
1097
	.id_table =	usb_audio_ids,
1098
	.supports_autosuspend = 1,
D
Daniel Mack 已提交
1099 1100
};

1101
module_usb_driver(usb_audio_driver);