2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 #include <linux/init.h>
18 #include <linux/slab.h>
19 #include <linux/usb.h>
20 #include <linux/usb/audio.h>
22 #include <sound/control.h>
23 #include <sound/core.h>
24 #include <sound/info.h>
25 #include <sound/pcm.h>
30 #include "mixer_quirks.h"
40 * handle the quirks for the contained interfaces
42 static int create_composite_quirk(struct snd_usb_audio *chip,
43 struct usb_interface *iface,
44 struct usb_driver *driver,
45 const struct snd_usb_audio_quirk *quirk)
47 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber;
50 for (quirk = quirk->data; quirk->ifnum >= 0; ++quirk) {
51 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum);
54 if (quirk->ifnum != probed_ifnum &&
55 usb_interface_claimed(iface))
57 err = snd_usb_create_quirk(chip, iface, driver, quirk);
60 if (quirk->ifnum != probed_ifnum)
61 usb_driver_claim_interface(driver, iface, (void *)-1L);
66 static int ignore_interface_quirk(struct snd_usb_audio *chip,
67 struct usb_interface *iface,
68 struct usb_driver *driver,
69 const struct snd_usb_audio_quirk *quirk)
76 * Allow alignment on audio sub-slot (channel samples) rather than
77 * on audio slots (audio frames)
79 static int create_align_transfer_quirk(struct snd_usb_audio *chip,
80 struct usb_interface *iface,
81 struct usb_driver *driver,
82 const struct snd_usb_audio_quirk *quirk)
85 return 1; /* Continue with creating streams and mixer */
88 static int create_any_midi_quirk(struct snd_usb_audio *chip,
89 struct usb_interface *intf,
90 struct usb_driver *driver,
91 const struct snd_usb_audio_quirk *quirk)
93 return snd_usbmidi_create(chip->card, intf, &chip->midi_list, quirk);
97 * create a stream for an interface with proper descriptors
99 static int create_standard_audio_quirk(struct snd_usb_audio *chip,
100 struct usb_interface *iface,
101 struct usb_driver *driver,
102 const struct snd_usb_audio_quirk *quirk)
104 struct usb_host_interface *alts;
105 struct usb_interface_descriptor *altsd;
108 alts = &iface->altsetting[0];
109 altsd = get_iface_desc(alts);
110 err = snd_usb_parse_audio_interface(chip, altsd->bInterfaceNumber);
112 snd_printk(KERN_ERR "cannot setup if %d: error %d\n",
113 altsd->bInterfaceNumber, err);
116 /* reset the current interface */
117 usb_set_interface(chip->dev, altsd->bInterfaceNumber, 0);
122 * create a stream for an endpoint/altsetting without proper descriptors
124 static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
125 struct usb_interface *iface,
126 struct usb_driver *driver,
127 const struct snd_usb_audio_quirk *quirk)
129 struct audioformat *fp;
130 struct usb_host_interface *alts;
132 unsigned *rate_table = NULL;
134 fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
136 snd_printk(KERN_ERR "cannot memdup\n");
139 if (fp->nr_rates > MAX_NR_RATES) {
143 if (fp->nr_rates > 0) {
144 rate_table = kmemdup(fp->rate_table,
145 sizeof(int) * fp->nr_rates, GFP_KERNEL);
150 fp->rate_table = rate_table;
153 stream = (fp->endpoint & USB_DIR_IN)
154 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
155 err = snd_usb_add_audio_stream(chip, stream, fp);
161 if (fp->iface != get_iface_desc(&iface->altsetting[0])->bInterfaceNumber ||
162 fp->altset_idx >= iface->num_altsetting) {
167 alts = &iface->altsetting[fp->altset_idx];
168 fp->datainterval = snd_usb_parse_datainterval(chip, alts);
169 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
170 usb_set_interface(chip->dev, fp->iface, 0);
171 snd_usb_init_pitch(chip, fp->iface, alts, fp);
172 snd_usb_init_sample_rate(chip, fp->iface, alts, fp, fp->rate_max);
177 * Create a stream for an Edirol UA-700/UA-25/UA-4FX interface.
178 * The only way to detect the sample rate is by looking at wMaxPacketSize.
180 static int create_uaxx_quirk(struct snd_usb_audio *chip,
181 struct usb_interface *iface,
182 struct usb_driver *driver,
183 const struct snd_usb_audio_quirk *quirk)
185 static const struct audioformat ua_format = {
186 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
188 .fmt_type = UAC_FORMAT_TYPE_I,
191 .rates = SNDRV_PCM_RATE_CONTINUOUS,
193 struct usb_host_interface *alts;
194 struct usb_interface_descriptor *altsd;
195 struct audioformat *fp;
198 /* both PCM and MIDI interfaces have 2 or more altsettings */
199 if (iface->num_altsetting < 2)
201 alts = &iface->altsetting[1];
202 altsd = get_iface_desc(alts);
204 if (altsd->bNumEndpoints == 2) {
205 static const struct snd_usb_midi_endpoint_info ua700_ep = {
206 .out_cables = 0x0003,
209 static const struct snd_usb_audio_quirk ua700_quirk = {
210 .type = QUIRK_MIDI_FIXED_ENDPOINT,
213 static const struct snd_usb_midi_endpoint_info uaxx_ep = {
214 .out_cables = 0x0001,
217 static const struct snd_usb_audio_quirk uaxx_quirk = {
218 .type = QUIRK_MIDI_FIXED_ENDPOINT,
221 const struct snd_usb_audio_quirk *quirk =
222 chip->usb_id == USB_ID(0x0582, 0x002b)
223 ? &ua700_quirk : &uaxx_quirk;
224 return snd_usbmidi_create(chip->card, iface,
225 &chip->midi_list, quirk);
228 if (altsd->bNumEndpoints != 1)
231 fp = kmemdup(&ua_format, sizeof(*fp), GFP_KERNEL);
235 fp->iface = altsd->bInterfaceNumber;
236 fp->endpoint = get_endpoint(alts, 0)->bEndpointAddress;
237 fp->ep_attr = get_endpoint(alts, 0)->bmAttributes;
238 fp->datainterval = 0;
239 fp->maxpacksize = le16_to_cpu(get_endpoint(alts, 0)->wMaxPacketSize);
241 switch (fp->maxpacksize) {
243 fp->rate_max = fp->rate_min = 44100;
247 fp->rate_max = fp->rate_min = 48000;
251 fp->rate_max = fp->rate_min = 96000;
254 snd_printk(KERN_ERR "unknown sample rate\n");
259 stream = (fp->endpoint & USB_DIR_IN)
260 ? SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK;
261 err = snd_usb_add_audio_stream(chip, stream, fp);
266 usb_set_interface(chip->dev, fp->iface, 0);
271 * Create a standard mixer for the specified interface.
273 static int create_standard_mixer_quirk(struct snd_usb_audio *chip,
274 struct usb_interface *iface,
275 struct usb_driver *driver,
276 const struct snd_usb_audio_quirk *quirk)
278 if (quirk->ifnum < 0)
281 return snd_usb_create_mixer(chip, quirk->ifnum, 0);
285 * audio-interface quirks
287 * returns zero if no standard audio/MIDI parsing is needed.
288 * returns a positive value if standard audio/midi interfaces are parsed
290 * returns a negative value at error.
292 int snd_usb_create_quirk(struct snd_usb_audio *chip,
293 struct usb_interface *iface,
294 struct usb_driver *driver,
295 const struct snd_usb_audio_quirk *quirk)
297 typedef int (*quirk_func_t)(struct snd_usb_audio *,
298 struct usb_interface *,
300 const struct snd_usb_audio_quirk *);
301 static const quirk_func_t quirk_funcs[] = {
302 [QUIRK_IGNORE_INTERFACE] = ignore_interface_quirk,
303 [QUIRK_COMPOSITE] = create_composite_quirk,
304 [QUIRK_MIDI_STANDARD_INTERFACE] = create_any_midi_quirk,
305 [QUIRK_MIDI_FIXED_ENDPOINT] = create_any_midi_quirk,
306 [QUIRK_MIDI_YAMAHA] = create_any_midi_quirk,
307 [QUIRK_MIDI_MIDIMAN] = create_any_midi_quirk,
308 [QUIRK_MIDI_NOVATION] = create_any_midi_quirk,
309 [QUIRK_MIDI_MBOX2] = create_any_midi_quirk,
310 [QUIRK_MIDI_RAW_BYTES] = create_any_midi_quirk,
311 [QUIRK_MIDI_EMAGIC] = create_any_midi_quirk,
312 [QUIRK_MIDI_CME] = create_any_midi_quirk,
313 [QUIRK_MIDI_AKAI] = create_any_midi_quirk,
314 [QUIRK_MIDI_FTDI] = create_any_midi_quirk,
315 [QUIRK_AUDIO_STANDARD_INTERFACE] = create_standard_audio_quirk,
316 [QUIRK_AUDIO_FIXED_ENDPOINT] = create_fixed_stream_quirk,
317 [QUIRK_AUDIO_EDIROL_UAXX] = create_uaxx_quirk,
318 [QUIRK_AUDIO_ALIGN_TRANSFER] = create_align_transfer_quirk,
319 [QUIRK_AUDIO_STANDARD_MIXER] = create_standard_mixer_quirk,
322 if (quirk->type < QUIRK_TYPE_COUNT) {
323 return quirk_funcs[quirk->type](chip, iface, driver, quirk);
325 snd_printd(KERN_ERR "invalid quirk type %d\n", quirk->type);
334 #define EXTIGY_FIRMWARE_SIZE_OLD 794
335 #define EXTIGY_FIRMWARE_SIZE_NEW 483
337 static int snd_usb_extigy_boot_quirk(struct usb_device *dev, struct usb_interface *intf)
339 struct usb_host_config *config = dev->actconfig;
342 if (le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_OLD ||
343 le16_to_cpu(get_cfg_desc(config)->wTotalLength) == EXTIGY_FIRMWARE_SIZE_NEW) {
344 snd_printdd("sending Extigy boot sequence...\n");
345 /* Send message to force it to reconnect with full interface. */
346 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev,0),
347 0x10, 0x43, 0x0001, 0x000a, NULL, 0);
348 if (err < 0) snd_printdd("error sending boot message: %d\n", err);
349 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
350 &dev->descriptor, sizeof(dev->descriptor));
351 config = dev->actconfig;
352 if (err < 0) snd_printdd("error usb_get_descriptor: %d\n", err);
353 err = usb_reset_configuration(dev);
354 if (err < 0) snd_printdd("error usb_reset_configuration: %d\n", err);
355 snd_printdd("extigy_boot: new boot length = %d\n",
356 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
357 return -ENODEV; /* quit this anyway */
362 static int snd_usb_audigy2nx_boot_quirk(struct usb_device *dev)
366 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), 0x2a,
367 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
370 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), 0x29,
371 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_OTHER,
378 static int snd_usb_fasttrackpro_boot_quirk(struct usb_device *dev)
382 if (dev->actconfig->desc.bConfigurationValue == 1) {
383 snd_printk(KERN_INFO "usb-audio: "
384 "Fast Track Pro switching to config #2\n");
385 /* This function has to be available by the usb core module.
386 * if it is not avialable the boot quirk has to be left out
387 * and the configuration has to be set by udev or hotplug
390 err = usb_driver_set_configuration(dev, 2);
392 snd_printdd("error usb_driver_set_configuration: %d\n",
397 snd_printk(KERN_INFO "usb-audio: Fast Track Pro config OK\n");
403 * C-Media CM106/CM106+ have four 16-bit internal registers that are nicely
404 * documented in the device's data sheet.
406 static int snd_usb_cm106_write_int_reg(struct usb_device *dev, int reg, u16 value)
410 buf[1] = value & 0xff;
411 buf[2] = (value >> 8) & 0xff;
413 return snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_CONFIGURATION,
414 USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT,
418 static int snd_usb_cm106_boot_quirk(struct usb_device *dev)
421 * Enable line-out driver mode, set headphone source to front
422 * channels, enable stereo mic.
424 return snd_usb_cm106_write_int_reg(dev, 2, 0x8004);
428 * C-Media CM6206 is based on CM106 with two additional
429 * registers that are not documented in the data sheet.
430 * Values here are chosen based on sniffing USB traffic
433 static int snd_usb_cm6206_boot_quirk(struct usb_device *dev)
436 int val[] = {0x2004, 0x3000, 0xf800, 0x143f, 0x0000, 0x3000};
438 for (reg = 0; reg < ARRAY_SIZE(val); reg++) {
439 err = snd_usb_cm106_write_int_reg(dev, reg, val[reg]);
448 * This call will put the synth in "USB send" mode, i.e it will send MIDI
449 * messages through USB (this is disabled at startup). The synth will
450 * acknowledge by sending a sysex on endpoint 0x85 and by displaying a USB
451 * sign on its LCD. Values here are chosen based on sniffing USB traffic
454 static int snd_usb_accessmusic_boot_quirk(struct usb_device *dev)
456 int err, actual_length;
458 /* "midi send" enable */
459 static const u8 seq[] = { 0x4e, 0x73, 0x52, 0x01 };
461 void *buf = kmemdup(seq, ARRAY_SIZE(seq), GFP_KERNEL);
464 err = usb_interrupt_msg(dev, usb_sndintpipe(dev, 0x05), buf,
465 ARRAY_SIZE(seq), &actual_length, 1000);
474 * Some sound cards from Native Instruments are in fact compliant to the USB
475 * audio standard of version 2 and other approved USB standards, even though
476 * they come up as vendor-specific device when first connected.
478 * However, they can be told to come up with a new set of descriptors
479 * upon their next enumeration, and the interfaces announced by the new
480 * descriptors will then be handled by the kernel's class drivers. As the
481 * product ID will also change, no further checks are required.
484 static int snd_usb_nativeinstruments_boot_quirk(struct usb_device *dev)
486 int ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
487 0xaf, USB_TYPE_VENDOR | USB_RECIP_DEVICE,
488 cpu_to_le16(1), 0, NULL, 0, 1000);
493 usb_reset_device(dev);
495 /* return -EAGAIN, so the creation of an audio interface for this
496 * temporary device is aborted. The device will reconnect with a
501 static void mbox2_setup_48_24_magic(struct usb_device *dev)
506 /* Choose 48000Hz permanently */
511 /* Send the magic! */
512 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0),
513 0x01, 0x22, 0x0100, 0x0085, &temp, 0x0003);
514 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0),
515 0x81, 0xa2, 0x0100, 0x0085, &srate, 0x0003);
516 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0),
517 0x81, 0xa2, 0x0100, 0x0086, &srate, 0x0003);
518 snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0),
519 0x81, 0xa2, 0x0100, 0x0003, &srate, 0x0003);
523 /* Digidesign Mbox 2 needs to load firmware onboard
524 * and driver must wait a few seconds for initialisation.
527 #define MBOX2_FIRMWARE_SIZE 646
528 #define MBOX2_BOOT_LOADING 0x01 /* Hard coded into the device */
529 #define MBOX2_BOOT_READY 0x02 /* Hard coded into the device */
531 int snd_usb_mbox2_boot_quirk(struct usb_device *dev)
533 struct usb_host_config *config = dev->actconfig;
539 fwsize = le16_to_cpu(get_cfg_desc(config)->wTotalLength);
541 if (fwsize != MBOX2_FIRMWARE_SIZE) {
542 snd_printk(KERN_ERR "usb-audio: Invalid firmware size=%d.\n", fwsize);
546 snd_printd("usb-audio: Sending Digidesign Mbox 2 boot sequence...\n");
549 bootresponse = MBOX2_BOOT_LOADING;
550 while ((bootresponse == MBOX2_BOOT_LOADING) && (count < 10)) {
551 msleep(500); /* 0.5 second delay */
552 snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0),
553 /* Control magic - load onboard firmware */
554 0x85, 0xc0, 0x0001, 0x0000, &bootresponse, 0x0012);
555 if (bootresponse == MBOX2_BOOT_READY)
557 snd_printd("usb-audio: device not ready, resending boot sequence...\n");
561 if (bootresponse != MBOX2_BOOT_READY) {
562 snd_printk(KERN_ERR "usb-audio: Unknown bootresponse=%d, or timed out, ignoring device.\n", bootresponse);
566 snd_printdd("usb-audio: device initialised!\n");
568 err = usb_get_descriptor(dev, USB_DT_DEVICE, 0,
569 &dev->descriptor, sizeof(dev->descriptor));
570 config = dev->actconfig;
572 snd_printd("error usb_get_descriptor: %d\n", err);
574 err = usb_reset_configuration(dev);
576 snd_printd("error usb_reset_configuration: %d\n", err);
577 snd_printdd("mbox2_boot: new boot length = %d\n",
578 le16_to_cpu(get_cfg_desc(config)->wTotalLength));
580 mbox2_setup_48_24_magic(dev);
582 snd_printk(KERN_INFO "usb-audio: Digidesign Mbox 2: 24bit 48kHz");
584 return 0; /* Successful boot */
590 #define MAUDIO_SET 0x01 /* parse device_setup */
591 #define MAUDIO_SET_COMPATIBLE 0x80 /* use only "win-compatible" interfaces */
592 #define MAUDIO_SET_DTS 0x02 /* enable DTS Digital Output */
593 #define MAUDIO_SET_96K 0x04 /* 48-96KHz rate if set, 8-48KHz otherwise */
594 #define MAUDIO_SET_24B 0x08 /* 24bits sample if set, 16bits otherwise */
595 #define MAUDIO_SET_DI 0x10 /* enable Digital Input */
596 #define MAUDIO_SET_MASK 0x1f /* bit mask for setup value */
597 #define MAUDIO_SET_24B_48K_DI 0x19 /* 24bits+48KHz+Digital Input */
598 #define MAUDIO_SET_24B_48K_NOTDI 0x09 /* 24bits+48KHz+No Digital Input */
599 #define MAUDIO_SET_16B_48K_DI 0x11 /* 16bits+48KHz+Digital Input */
600 #define MAUDIO_SET_16B_48K_NOTDI 0x01 /* 16bits+48KHz+No Digital Input */
602 static int quattro_skip_setting_quirk(struct snd_usb_audio *chip,
603 int iface, int altno)
605 /* Reset ALL ifaces to 0 altsetting.
606 * Call it for every possible altsetting of every interface.
608 usb_set_interface(chip->dev, iface, 0);
609 if (chip->setup & MAUDIO_SET) {
610 if (chip->setup & MAUDIO_SET_COMPATIBLE) {
611 if (iface != 1 && iface != 2)
612 return 1; /* skip all interfaces but 1 and 2 */
615 if (iface == 1 || iface == 2)
616 return 1; /* skip interfaces 1 and 2 */
617 if ((chip->setup & MAUDIO_SET_96K) && altno != 1)
618 return 1; /* skip this altsetting */
619 mask = chip->setup & MAUDIO_SET_MASK;
620 if (mask == MAUDIO_SET_24B_48K_DI && altno != 2)
621 return 1; /* skip this altsetting */
622 if (mask == MAUDIO_SET_24B_48K_NOTDI && altno != 3)
623 return 1; /* skip this altsetting */
624 if (mask == MAUDIO_SET_16B_48K_NOTDI && altno != 4)
625 return 1; /* skip this altsetting */
628 snd_printdd(KERN_INFO
629 "using altsetting %d for interface %d config %d\n",
630 altno, iface, chip->setup);
631 return 0; /* keep this altsetting */
634 static int audiophile_skip_setting_quirk(struct snd_usb_audio *chip,
638 /* Reset ALL ifaces to 0 altsetting.
639 * Call it for every possible altsetting of every interface.
641 usb_set_interface(chip->dev, iface, 0);
643 if (chip->setup & MAUDIO_SET) {
645 if ((chip->setup & MAUDIO_SET_DTS) && altno != 6)
646 return 1; /* skip this altsetting */
647 if ((chip->setup & MAUDIO_SET_96K) && altno != 1)
648 return 1; /* skip this altsetting */
649 mask = chip->setup & MAUDIO_SET_MASK;
650 if (mask == MAUDIO_SET_24B_48K_DI && altno != 2)
651 return 1; /* skip this altsetting */
652 if (mask == MAUDIO_SET_24B_48K_NOTDI && altno != 3)
653 return 1; /* skip this altsetting */
654 if (mask == MAUDIO_SET_16B_48K_DI && altno != 4)
655 return 1; /* skip this altsetting */
656 if (mask == MAUDIO_SET_16B_48K_NOTDI && altno != 5)
657 return 1; /* skip this altsetting */
660 return 0; /* keep this altsetting */
664 static int fasttrackpro_skip_setting_quirk(struct snd_usb_audio *chip,
665 int iface, int altno)
667 /* Reset ALL ifaces to 0 altsetting.
668 * Call it for every possible altsetting of every interface.
670 usb_set_interface(chip->dev, iface, 0);
672 /* possible configuration where both inputs and only one output is
673 *used is not supported by the current setup
675 if (chip->setup & (MAUDIO_SET | MAUDIO_SET_24B)) {
676 if (chip->setup & MAUDIO_SET_96K) {
677 if (altno != 3 && altno != 6)
679 } else if (chip->setup & MAUDIO_SET_DI) {
681 return 1; /* no analog input */
682 if (altno != 2 && altno != 5)
683 return 1; /* enable only altsets 2 and 5 */
686 return 1; /* disable digialt input */
687 if (altno != 2 && altno != 5)
688 return 1; /* enalbe only altsets 2 and 5 */
691 /* keep only 16-Bit mode */
696 snd_printdd(KERN_INFO
697 "using altsetting %d for interface %d config %d\n",
698 altno, iface, chip->setup);
699 return 0; /* keep this altsetting */
702 int snd_usb_apply_interface_quirk(struct snd_usb_audio *chip,
706 /* audiophile usb: skip altsets incompatible with device_setup */
707 if (chip->usb_id == USB_ID(0x0763, 0x2003))
708 return audiophile_skip_setting_quirk(chip, iface, altno);
709 /* quattro usb: skip altsets incompatible with device_setup */
710 if (chip->usb_id == USB_ID(0x0763, 0x2001))
711 return quattro_skip_setting_quirk(chip, iface, altno);
712 /* fasttrackpro usb: skip altsets incompatible with device_setup */
713 if (chip->usb_id == USB_ID(0x0763, 0x2012))
714 return fasttrackpro_skip_setting_quirk(chip, iface, altno);
719 int snd_usb_apply_boot_quirk(struct usb_device *dev,
720 struct usb_interface *intf,
721 const struct snd_usb_audio_quirk *quirk)
723 u32 id = USB_ID(le16_to_cpu(dev->descriptor.idVendor),
724 le16_to_cpu(dev->descriptor.idProduct));
727 case USB_ID(0x041e, 0x3000):
728 /* SB Extigy needs special boot-up sequence */
729 /* if more models come, this will go to the quirk list. */
730 return snd_usb_extigy_boot_quirk(dev, intf);
732 case USB_ID(0x041e, 0x3020):
733 /* SB Audigy 2 NX needs its own boot-up magic, too */
734 return snd_usb_audigy2nx_boot_quirk(dev);
736 case USB_ID(0x10f5, 0x0200):
737 /* C-Media CM106 / Turtle Beach Audio Advantage Roadie */
738 return snd_usb_cm106_boot_quirk(dev);
740 case USB_ID(0x0d8c, 0x0102):
741 /* C-Media CM6206 / CM106-Like Sound Device */
742 case USB_ID(0x0ccd, 0x00b1): /* Terratec Aureon 7.1 USB */
743 return snd_usb_cm6206_boot_quirk(dev);
745 case USB_ID(0x0dba, 0x3000):
746 /* Digidesign Mbox 2 */
747 return snd_usb_mbox2_boot_quirk(dev);
749 case USB_ID(0x133e, 0x0815):
750 /* Access Music VirusTI Desktop */
751 return snd_usb_accessmusic_boot_quirk(dev);
753 case USB_ID(0x17cc, 0x1000): /* Komplete Audio 6 */
754 case USB_ID(0x17cc, 0x1010): /* Traktor Audio 6 */
755 case USB_ID(0x17cc, 0x1020): /* Traktor Audio 10 */
756 return snd_usb_nativeinstruments_boot_quirk(dev);
757 case USB_ID(0x0763, 0x2012): /* M-Audio Fast Track Pro USB */
758 return snd_usb_fasttrackpro_boot_quirk(dev);
765 * check if the device uses big-endian samples
767 int snd_usb_is_big_endian_format(struct snd_usb_audio *chip, struct audioformat *fp)
769 /* it depends on altsetting wether the device is big-endian or not */
770 switch (chip->usb_id) {
771 case USB_ID(0x0763, 0x2001): /* M-Audio Quattro: captured data only */
772 if (fp->altsetting == 2 || fp->altsetting == 3 ||
773 fp->altsetting == 5 || fp->altsetting == 6)
776 case USB_ID(0x0763, 0x2003): /* M-Audio Audiophile USB */
777 if (chip->setup == 0x00 ||
778 fp->altsetting == 1 || fp->altsetting == 2 ||
782 case USB_ID(0x0763, 0x2012): /* M-Audio Fast Track Pro */
783 if (fp->altsetting == 2 || fp->altsetting == 3 ||
784 fp->altsetting == 5 || fp->altsetting == 6)
792 * For E-Mu 0404USB/0202USB/TrackerPre/0204 sample rate should be set for device,
797 EMU_QUIRK_SR_44100HZ = 0,
798 EMU_QUIRK_SR_48000HZ,
799 EMU_QUIRK_SR_88200HZ,
800 EMU_QUIRK_SR_96000HZ,
801 EMU_QUIRK_SR_176400HZ,
802 EMU_QUIRK_SR_192000HZ
805 static void set_format_emu_quirk(struct snd_usb_substream *subs,
806 struct audioformat *fmt)
808 unsigned char emu_samplerate_id = 0;
810 /* When capture is active
811 * sample rate shouldn't be changed
812 * by playback substream
814 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK) {
815 if (subs->stream->substream[SNDRV_PCM_STREAM_CAPTURE].interface != -1)
819 switch (fmt->rate_min) {
821 emu_samplerate_id = EMU_QUIRK_SR_48000HZ;
824 emu_samplerate_id = EMU_QUIRK_SR_88200HZ;
827 emu_samplerate_id = EMU_QUIRK_SR_96000HZ;
830 emu_samplerate_id = EMU_QUIRK_SR_176400HZ;
833 emu_samplerate_id = EMU_QUIRK_SR_192000HZ;
836 emu_samplerate_id = EMU_QUIRK_SR_44100HZ;
839 snd_emuusb_set_samplerate(subs->stream->chip, emu_samplerate_id);
842 void snd_usb_set_format_quirk(struct snd_usb_substream *subs,
843 struct audioformat *fmt)
845 switch (subs->stream->chip->usb_id) {
846 case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */
847 case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */
848 case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */
849 case USB_ID(0x041e, 0x3f19): /* E-Mu 0204 USB */
850 set_format_emu_quirk(subs, fmt);
855 void snd_usb_endpoint_start_quirk(struct snd_usb_endpoint *ep)
858 * "Playback Design" products send bogus feedback data at the start
859 * of the stream. Ignore them.
861 if ((le16_to_cpu(ep->chip->dev->descriptor.idVendor) == 0x23ba) &&
862 ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
863 ep->skip_packets = 4;
866 void snd_usb_ctl_msg_quirk(struct usb_device *dev, unsigned int pipe,
867 __u8 request, __u8 requesttype, __u16 value,
868 __u16 index, void *data, __u16 size)
871 * "Playback Design" products need a 20ms delay after each
872 * class compliant request
874 if ((le16_to_cpu(dev->descriptor.idVendor) == 0x23ba) &&
875 (requesttype & USB_TYPE_MASK) == USB_TYPE_CLASS)