Loading...
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * ALSA USB Audio Driver
4 *
5 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>,
6 * Clemens Ladisch <clemens@ladisch.de>
7 */
8
9/*
10 * The contents of this file are part of the driver's id_table.
11 *
12 * In a perfect world, this file would be empty.
13 */
14
15/*
16 * Use this for devices where other interfaces are standard compliant,
17 * to prevent the quirk being applied to those interfaces. (To work with
18 * hotplugging, bDeviceClass must be set to USB_CLASS_PER_INTERFACE.)
19 */
20#define USB_DEVICE_VENDOR_SPEC(vend, prod) \
21 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | \
22 USB_DEVICE_ID_MATCH_PRODUCT | \
23 USB_DEVICE_ID_MATCH_INT_CLASS, \
24 .idVendor = vend, \
25 .idProduct = prod, \
26 .bInterfaceClass = USB_CLASS_VENDOR_SPEC
27
28/* A standard entry matching with vid/pid and the audio class/subclass */
29#define USB_AUDIO_DEVICE(vend, prod) \
30 .match_flags = USB_DEVICE_ID_MATCH_DEVICE | \
31 USB_DEVICE_ID_MATCH_INT_CLASS | \
32 USB_DEVICE_ID_MATCH_INT_SUBCLASS, \
33 .idVendor = vend, \
34 .idProduct = prod, \
35 .bInterfaceClass = USB_CLASS_AUDIO, \
36 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
37
38/* FTDI devices */
39{
40 USB_DEVICE(0x0403, 0xb8d8),
41 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
42 /* .vendor_name = "STARR LABS", */
43 /* .product_name = "Starr Labs MIDI USB device", */
44 .ifnum = 0,
45 .type = QUIRK_MIDI_FTDI
46 }
47},
48
49{
50 /* Creative BT-D1 */
51 USB_DEVICE(0x041e, 0x0005),
52 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
53 .ifnum = 1,
54 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
55 .data = &(const struct audioformat) {
56 .formats = SNDRV_PCM_FMTBIT_S16_LE,
57 .channels = 2,
58 .iface = 1,
59 .altsetting = 1,
60 .altset_idx = 1,
61 .endpoint = 0x03,
62 .ep_attr = USB_ENDPOINT_XFER_ISOC,
63 .attributes = 0,
64 .rates = SNDRV_PCM_RATE_CONTINUOUS,
65 .rate_min = 48000,
66 .rate_max = 48000,
67 }
68 }
69},
70
71/* E-Mu 0202 USB */
72{ USB_DEVICE_VENDOR_SPEC(0x041e, 0x3f02) },
73/* E-Mu 0404 USB */
74{ USB_DEVICE_VENDOR_SPEC(0x041e, 0x3f04) },
75/* E-Mu Tracker Pre */
76{ USB_DEVICE_VENDOR_SPEC(0x041e, 0x3f0a) },
77/* E-Mu 0204 USB */
78{ USB_DEVICE_VENDOR_SPEC(0x041e, 0x3f19) },
79
80/*
81 * Creative Technology, Ltd Live! Cam Sync HD [VF0770]
82 * The device advertises 8 formats, but only a rate of 48kHz is honored by the
83 * hardware and 24 bits give chopped audio, so only report the one working
84 * combination.
85 */
86{
87 USB_DEVICE(0x041e, 0x4095),
88 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
89 .ifnum = QUIRK_ANY_INTERFACE,
90 .type = QUIRK_COMPOSITE,
91 .data = &(const struct snd_usb_audio_quirk[]) {
92 {
93 .ifnum = 2,
94 .type = QUIRK_AUDIO_STANDARD_MIXER,
95 },
96 {
97 .ifnum = 3,
98 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
99 .data = &(const struct audioformat) {
100 .formats = SNDRV_PCM_FMTBIT_S16_LE,
101 .channels = 2,
102 .fmt_bits = 16,
103 .iface = 3,
104 .altsetting = 4,
105 .altset_idx = 4,
106 .endpoint = 0x82,
107 .ep_attr = 0x05,
108 .rates = SNDRV_PCM_RATE_48000,
109 .rate_min = 48000,
110 .rate_max = 48000,
111 .nr_rates = 1,
112 .rate_table = (unsigned int[]) { 48000 },
113 },
114 },
115 {
116 .ifnum = -1
117 },
118 },
119 },
120},
121
122/*
123 * HP Wireless Audio
124 * When not ignored, causes instability issues for some users, forcing them to
125 * skip the entire module.
126 */
127{
128 USB_DEVICE(0x0424, 0xb832),
129 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
130 .vendor_name = "Standard Microsystems Corp.",
131 .product_name = "HP Wireless Audio",
132 .ifnum = QUIRK_ANY_INTERFACE,
133 .type = QUIRK_COMPOSITE,
134 .data = (const struct snd_usb_audio_quirk[]) {
135 /* Mixer */
136 {
137 .ifnum = 0,
138 .type = QUIRK_IGNORE_INTERFACE,
139 },
140 /* Playback */
141 {
142 .ifnum = 1,
143 .type = QUIRK_IGNORE_INTERFACE,
144 },
145 /* Capture */
146 {
147 .ifnum = 2,
148 .type = QUIRK_IGNORE_INTERFACE,
149 },
150 /* HID Device, .ifnum = 3 */
151 {
152 .ifnum = -1,
153 }
154 }
155 }
156},
157
158/*
159 * Logitech QuickCam: bDeviceClass is vendor-specific, so generic interface
160 * class matches do not take effect without an explicit ID match.
161 */
162{ USB_AUDIO_DEVICE(0x046d, 0x0850) },
163{ USB_AUDIO_DEVICE(0x046d, 0x08ae) },
164{ USB_AUDIO_DEVICE(0x046d, 0x08c6) },
165{ USB_AUDIO_DEVICE(0x046d, 0x08f0) },
166{ USB_AUDIO_DEVICE(0x046d, 0x08f5) },
167{ USB_AUDIO_DEVICE(0x046d, 0x08f6) },
168{ USB_AUDIO_DEVICE(0x046d, 0x0990) },
169
170/*
171 * Yamaha devices
172 */
173
174#define YAMAHA_DEVICE(id, name) { \
175 USB_DEVICE(0x0499, id), \
176 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
177 .vendor_name = "Yamaha", \
178 .product_name = name, \
179 .ifnum = QUIRK_ANY_INTERFACE, \
180 .type = QUIRK_MIDI_YAMAHA \
181 } \
182}
183#define YAMAHA_INTERFACE(id, intf, name) { \
184 USB_DEVICE_VENDOR_SPEC(0x0499, id), \
185 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
186 .vendor_name = "Yamaha", \
187 .product_name = name, \
188 .ifnum = intf, \
189 .type = QUIRK_MIDI_YAMAHA \
190 } \
191}
192YAMAHA_DEVICE(0x1000, "UX256"),
193YAMAHA_DEVICE(0x1001, "MU1000"),
194YAMAHA_DEVICE(0x1002, "MU2000"),
195YAMAHA_DEVICE(0x1003, "MU500"),
196YAMAHA_INTERFACE(0x1004, 3, "UW500"),
197YAMAHA_DEVICE(0x1005, "MOTIF6"),
198YAMAHA_DEVICE(0x1006, "MOTIF7"),
199YAMAHA_DEVICE(0x1007, "MOTIF8"),
200YAMAHA_DEVICE(0x1008, "UX96"),
201YAMAHA_DEVICE(0x1009, "UX16"),
202YAMAHA_INTERFACE(0x100a, 3, "EOS BX"),
203YAMAHA_DEVICE(0x100c, "UC-MX"),
204YAMAHA_DEVICE(0x100d, "UC-KX"),
205YAMAHA_DEVICE(0x100e, "S08"),
206YAMAHA_DEVICE(0x100f, "CLP-150"),
207YAMAHA_DEVICE(0x1010, "CLP-170"),
208YAMAHA_DEVICE(0x1011, "P-250"),
209YAMAHA_DEVICE(0x1012, "TYROS"),
210YAMAHA_DEVICE(0x1013, "PF-500"),
211YAMAHA_DEVICE(0x1014, "S90"),
212YAMAHA_DEVICE(0x1015, "MOTIF-R"),
213YAMAHA_DEVICE(0x1016, "MDP-5"),
214YAMAHA_DEVICE(0x1017, "CVP-204"),
215YAMAHA_DEVICE(0x1018, "CVP-206"),
216YAMAHA_DEVICE(0x1019, "CVP-208"),
217YAMAHA_DEVICE(0x101a, "CVP-210"),
218YAMAHA_DEVICE(0x101b, "PSR-1100"),
219YAMAHA_DEVICE(0x101c, "PSR-2100"),
220YAMAHA_DEVICE(0x101d, "CLP-175"),
221YAMAHA_DEVICE(0x101e, "PSR-K1"),
222YAMAHA_DEVICE(0x101f, "EZ-J24"),
223YAMAHA_DEVICE(0x1020, "EZ-250i"),
224YAMAHA_DEVICE(0x1021, "MOTIF ES 6"),
225YAMAHA_DEVICE(0x1022, "MOTIF ES 7"),
226YAMAHA_DEVICE(0x1023, "MOTIF ES 8"),
227YAMAHA_DEVICE(0x1024, "CVP-301"),
228YAMAHA_DEVICE(0x1025, "CVP-303"),
229YAMAHA_DEVICE(0x1026, "CVP-305"),
230YAMAHA_DEVICE(0x1027, "CVP-307"),
231YAMAHA_DEVICE(0x1028, "CVP-309"),
232YAMAHA_DEVICE(0x1029, "CVP-309GP"),
233YAMAHA_DEVICE(0x102a, "PSR-1500"),
234YAMAHA_DEVICE(0x102b, "PSR-3000"),
235YAMAHA_DEVICE(0x102e, "ELS-01/01C"),
236YAMAHA_DEVICE(0x1030, "PSR-295/293"),
237YAMAHA_DEVICE(0x1031, "DGX-205/203"),
238YAMAHA_DEVICE(0x1032, "DGX-305"),
239YAMAHA_DEVICE(0x1033, "DGX-505"),
240YAMAHA_DEVICE(0x1034, NULL),
241YAMAHA_DEVICE(0x1035, NULL),
242YAMAHA_DEVICE(0x1036, NULL),
243YAMAHA_DEVICE(0x1037, NULL),
244YAMAHA_DEVICE(0x1038, NULL),
245YAMAHA_DEVICE(0x1039, NULL),
246YAMAHA_DEVICE(0x103a, NULL),
247YAMAHA_DEVICE(0x103b, NULL),
248YAMAHA_DEVICE(0x103c, NULL),
249YAMAHA_DEVICE(0x103d, NULL),
250YAMAHA_DEVICE(0x103e, NULL),
251YAMAHA_DEVICE(0x103f, NULL),
252YAMAHA_DEVICE(0x1040, NULL),
253YAMAHA_DEVICE(0x1041, NULL),
254YAMAHA_DEVICE(0x1042, NULL),
255YAMAHA_DEVICE(0x1043, NULL),
256YAMAHA_DEVICE(0x1044, NULL),
257YAMAHA_DEVICE(0x1045, NULL),
258YAMAHA_INTERFACE(0x104e, 0, NULL),
259YAMAHA_DEVICE(0x104f, NULL),
260YAMAHA_DEVICE(0x1050, NULL),
261YAMAHA_DEVICE(0x1051, NULL),
262YAMAHA_DEVICE(0x1052, NULL),
263YAMAHA_INTERFACE(0x1053, 0, NULL),
264YAMAHA_INTERFACE(0x1054, 0, NULL),
265YAMAHA_DEVICE(0x1055, NULL),
266YAMAHA_DEVICE(0x1056, NULL),
267YAMAHA_DEVICE(0x1057, NULL),
268YAMAHA_DEVICE(0x1058, NULL),
269YAMAHA_DEVICE(0x1059, NULL),
270YAMAHA_DEVICE(0x105a, NULL),
271YAMAHA_DEVICE(0x105b, NULL),
272YAMAHA_DEVICE(0x105c, NULL),
273YAMAHA_DEVICE(0x105d, NULL),
274{
275 USB_DEVICE(0x0499, 0x1503),
276 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
277 /* .vendor_name = "Yamaha", */
278 /* .product_name = "MOX6/MOX8", */
279 .ifnum = QUIRK_ANY_INTERFACE,
280 .type = QUIRK_COMPOSITE,
281 .data = (const struct snd_usb_audio_quirk[]) {
282 {
283 .ifnum = 1,
284 .type = QUIRK_AUDIO_STANDARD_INTERFACE
285 },
286 {
287 .ifnum = 2,
288 .type = QUIRK_AUDIO_STANDARD_INTERFACE
289 },
290 {
291 .ifnum = 3,
292 .type = QUIRK_MIDI_YAMAHA
293 },
294 {
295 .ifnum = -1
296 }
297 }
298 }
299},
300{
301 USB_DEVICE(0x0499, 0x1507),
302 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
303 /* .vendor_name = "Yamaha", */
304 /* .product_name = "THR10", */
305 .ifnum = QUIRK_ANY_INTERFACE,
306 .type = QUIRK_COMPOSITE,
307 .data = (const struct snd_usb_audio_quirk[]) {
308 {
309 .ifnum = 1,
310 .type = QUIRK_AUDIO_STANDARD_INTERFACE
311 },
312 {
313 .ifnum = 2,
314 .type = QUIRK_AUDIO_STANDARD_INTERFACE
315 },
316 {
317 .ifnum = 3,
318 .type = QUIRK_MIDI_YAMAHA
319 },
320 {
321 .ifnum = -1
322 }
323 }
324 }
325},
326{
327 USB_DEVICE(0x0499, 0x1509),
328 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
329 /* .vendor_name = "Yamaha", */
330 /* .product_name = "Steinberg UR22", */
331 .ifnum = QUIRK_ANY_INTERFACE,
332 .type = QUIRK_COMPOSITE,
333 .data = (const struct snd_usb_audio_quirk[]) {
334 {
335 .ifnum = 1,
336 .type = QUIRK_AUDIO_STANDARD_INTERFACE
337 },
338 {
339 .ifnum = 2,
340 .type = QUIRK_AUDIO_STANDARD_INTERFACE
341 },
342 {
343 .ifnum = 3,
344 .type = QUIRK_MIDI_YAMAHA
345 },
346 {
347 .ifnum = 4,
348 .type = QUIRK_IGNORE_INTERFACE
349 },
350 {
351 .ifnum = -1
352 }
353 }
354 }
355},
356{
357 USB_DEVICE(0x0499, 0x150a),
358 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
359 /* .vendor_name = "Yamaha", */
360 /* .product_name = "THR5A", */
361 .ifnum = QUIRK_ANY_INTERFACE,
362 .type = QUIRK_COMPOSITE,
363 .data = (const struct snd_usb_audio_quirk[]) {
364 {
365 .ifnum = 1,
366 .type = QUIRK_AUDIO_STANDARD_INTERFACE
367 },
368 {
369 .ifnum = 2,
370 .type = QUIRK_AUDIO_STANDARD_INTERFACE
371 },
372 {
373 .ifnum = 3,
374 .type = QUIRK_MIDI_YAMAHA
375 },
376 {
377 .ifnum = -1
378 }
379 }
380 }
381},
382{
383 USB_DEVICE(0x0499, 0x150c),
384 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
385 /* .vendor_name = "Yamaha", */
386 /* .product_name = "THR10C", */
387 .ifnum = QUIRK_ANY_INTERFACE,
388 .type = QUIRK_COMPOSITE,
389 .data = (const struct snd_usb_audio_quirk[]) {
390 {
391 .ifnum = 1,
392 .type = QUIRK_AUDIO_STANDARD_INTERFACE
393 },
394 {
395 .ifnum = 2,
396 .type = QUIRK_AUDIO_STANDARD_INTERFACE
397 },
398 {
399 .ifnum = 3,
400 .type = QUIRK_MIDI_YAMAHA
401 },
402 {
403 .ifnum = -1
404 }
405 }
406 }
407},
408YAMAHA_DEVICE(0x2000, "DGP-7"),
409YAMAHA_DEVICE(0x2001, "DGP-5"),
410YAMAHA_DEVICE(0x2002, NULL),
411YAMAHA_DEVICE(0x2003, NULL),
412YAMAHA_DEVICE(0x5000, "CS1D"),
413YAMAHA_DEVICE(0x5001, "DSP1D"),
414YAMAHA_DEVICE(0x5002, "DME32"),
415YAMAHA_DEVICE(0x5003, "DM2000"),
416YAMAHA_DEVICE(0x5004, "02R96"),
417YAMAHA_DEVICE(0x5005, "ACU16-C"),
418YAMAHA_DEVICE(0x5006, "NHB32-C"),
419YAMAHA_DEVICE(0x5007, "DM1000"),
420YAMAHA_DEVICE(0x5008, "01V96"),
421YAMAHA_DEVICE(0x5009, "SPX2000"),
422YAMAHA_DEVICE(0x500a, "PM5D"),
423YAMAHA_DEVICE(0x500b, "DME64N"),
424YAMAHA_DEVICE(0x500c, "DME24N"),
425YAMAHA_DEVICE(0x500d, NULL),
426YAMAHA_DEVICE(0x500e, NULL),
427YAMAHA_DEVICE(0x500f, NULL),
428YAMAHA_DEVICE(0x7000, "DTX"),
429YAMAHA_DEVICE(0x7010, "UB99"),
430#undef YAMAHA_DEVICE
431#undef YAMAHA_INTERFACE
432/* this catches most recent vendor-specific Yamaha devices */
433{
434 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
435 USB_DEVICE_ID_MATCH_INT_CLASS,
436 .idVendor = 0x0499,
437 .bInterfaceClass = USB_CLASS_VENDOR_SPEC,
438 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
439 .ifnum = QUIRK_ANY_INTERFACE,
440 .type = QUIRK_AUTODETECT
441 }
442},
443
444/*
445 * Roland/RolandED/Edirol/BOSS devices
446 */
447{
448 USB_DEVICE(0x0582, 0x0000),
449 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
450 .vendor_name = "Roland",
451 .product_name = "UA-100",
452 .ifnum = QUIRK_ANY_INTERFACE,
453 .type = QUIRK_COMPOSITE,
454 .data = (const struct snd_usb_audio_quirk[]) {
455 {
456 .ifnum = 0,
457 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
458 .data = & (const struct audioformat) {
459 .formats = SNDRV_PCM_FMTBIT_S16_LE,
460 .channels = 4,
461 .iface = 0,
462 .altsetting = 1,
463 .altset_idx = 1,
464 .attributes = 0,
465 .endpoint = 0x01,
466 .ep_attr = 0x09,
467 .rates = SNDRV_PCM_RATE_CONTINUOUS,
468 .rate_min = 44100,
469 .rate_max = 44100,
470 }
471 },
472 {
473 .ifnum = 1,
474 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
475 .data = & (const struct audioformat) {
476 .formats = SNDRV_PCM_FMTBIT_S16_LE,
477 .channels = 2,
478 .iface = 1,
479 .altsetting = 1,
480 .altset_idx = 1,
481 .attributes = UAC_EP_CS_ATTR_FILL_MAX,
482 .endpoint = 0x81,
483 .ep_attr = 0x05,
484 .rates = SNDRV_PCM_RATE_CONTINUOUS,
485 .rate_min = 44100,
486 .rate_max = 44100,
487 }
488 },
489 {
490 .ifnum = 2,
491 .type = QUIRK_MIDI_FIXED_ENDPOINT,
492 .data = & (const struct snd_usb_midi_endpoint_info) {
493 .out_cables = 0x0007,
494 .in_cables = 0x0007
495 }
496 },
497 {
498 .ifnum = -1
499 }
500 }
501 }
502},
503{
504 USB_DEVICE(0x0582, 0x0002),
505 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
506 .vendor_name = "EDIROL",
507 .product_name = "UM-4",
508 .ifnum = QUIRK_ANY_INTERFACE,
509 .type = QUIRK_COMPOSITE,
510 .data = (const struct snd_usb_audio_quirk[]) {
511 {
512 .ifnum = 0,
513 .type = QUIRK_IGNORE_INTERFACE
514 },
515 {
516 .ifnum = 1,
517 .type = QUIRK_IGNORE_INTERFACE
518 },
519 {
520 .ifnum = 2,
521 .type = QUIRK_MIDI_FIXED_ENDPOINT,
522 .data = & (const struct snd_usb_midi_endpoint_info) {
523 .out_cables = 0x000f,
524 .in_cables = 0x000f
525 }
526 },
527 {
528 .ifnum = -1
529 }
530 }
531 }
532},
533{
534 USB_DEVICE(0x0582, 0x0003),
535 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
536 .vendor_name = "Roland",
537 .product_name = "SC-8850",
538 .ifnum = QUIRK_ANY_INTERFACE,
539 .type = QUIRK_COMPOSITE,
540 .data = (const struct snd_usb_audio_quirk[]) {
541 {
542 .ifnum = 0,
543 .type = QUIRK_IGNORE_INTERFACE
544 },
545 {
546 .ifnum = 1,
547 .type = QUIRK_IGNORE_INTERFACE
548 },
549 {
550 .ifnum = 2,
551 .type = QUIRK_MIDI_FIXED_ENDPOINT,
552 .data = & (const struct snd_usb_midi_endpoint_info) {
553 .out_cables = 0x003f,
554 .in_cables = 0x003f
555 }
556 },
557 {
558 .ifnum = -1
559 }
560 }
561 }
562},
563{
564 USB_DEVICE(0x0582, 0x0004),
565 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
566 .vendor_name = "Roland",
567 .product_name = "U-8",
568 .ifnum = QUIRK_ANY_INTERFACE,
569 .type = QUIRK_COMPOSITE,
570 .data = (const struct snd_usb_audio_quirk[]) {
571 {
572 .ifnum = 0,
573 .type = QUIRK_IGNORE_INTERFACE
574 },
575 {
576 .ifnum = 1,
577 .type = QUIRK_IGNORE_INTERFACE
578 },
579 {
580 .ifnum = 2,
581 .type = QUIRK_MIDI_FIXED_ENDPOINT,
582 .data = & (const struct snd_usb_midi_endpoint_info) {
583 .out_cables = 0x0005,
584 .in_cables = 0x0005
585 }
586 },
587 {
588 .ifnum = -1
589 }
590 }
591 }
592},
593{
594 /* Has ID 0x0099 when not in "Advanced Driver" mode.
595 * The UM-2EX has only one input, but we cannot detect this. */
596 USB_DEVICE(0x0582, 0x0005),
597 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
598 .vendor_name = "EDIROL",
599 .product_name = "UM-2",
600 .ifnum = QUIRK_ANY_INTERFACE,
601 .type = QUIRK_COMPOSITE,
602 .data = (const struct snd_usb_audio_quirk[]) {
603 {
604 .ifnum = 0,
605 .type = QUIRK_IGNORE_INTERFACE
606 },
607 {
608 .ifnum = 1,
609 .type = QUIRK_IGNORE_INTERFACE
610 },
611 {
612 .ifnum = 2,
613 .type = QUIRK_MIDI_FIXED_ENDPOINT,
614 .data = & (const struct snd_usb_midi_endpoint_info) {
615 .out_cables = 0x0003,
616 .in_cables = 0x0003
617 }
618 },
619 {
620 .ifnum = -1
621 }
622 }
623 }
624},
625{
626 USB_DEVICE(0x0582, 0x0007),
627 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
628 .vendor_name = "Roland",
629 .product_name = "SC-8820",
630 .ifnum = QUIRK_ANY_INTERFACE,
631 .type = QUIRK_COMPOSITE,
632 .data = (const struct snd_usb_audio_quirk[]) {
633 {
634 .ifnum = 0,
635 .type = QUIRK_IGNORE_INTERFACE
636 },
637 {
638 .ifnum = 1,
639 .type = QUIRK_IGNORE_INTERFACE
640 },
641 {
642 .ifnum = 2,
643 .type = QUIRK_MIDI_FIXED_ENDPOINT,
644 .data = & (const struct snd_usb_midi_endpoint_info) {
645 .out_cables = 0x0013,
646 .in_cables = 0x0013
647 }
648 },
649 {
650 .ifnum = -1
651 }
652 }
653 }
654},
655{
656 USB_DEVICE(0x0582, 0x0008),
657 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
658 .vendor_name = "Roland",
659 .product_name = "PC-300",
660 .ifnum = QUIRK_ANY_INTERFACE,
661 .type = QUIRK_COMPOSITE,
662 .data = (const struct snd_usb_audio_quirk[]) {
663 {
664 .ifnum = 0,
665 .type = QUIRK_IGNORE_INTERFACE
666 },
667 {
668 .ifnum = 1,
669 .type = QUIRK_IGNORE_INTERFACE
670 },
671 {
672 .ifnum = 2,
673 .type = QUIRK_MIDI_FIXED_ENDPOINT,
674 .data = & (const struct snd_usb_midi_endpoint_info) {
675 .out_cables = 0x0001,
676 .in_cables = 0x0001
677 }
678 },
679 {
680 .ifnum = -1
681 }
682 }
683 }
684},
685{
686 /* has ID 0x009d when not in "Advanced Driver" mode */
687 USB_DEVICE(0x0582, 0x0009),
688 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
689 .vendor_name = "EDIROL",
690 .product_name = "UM-1",
691 .ifnum = QUIRK_ANY_INTERFACE,
692 .type = QUIRK_COMPOSITE,
693 .data = (const struct snd_usb_audio_quirk[]) {
694 {
695 .ifnum = 0,
696 .type = QUIRK_IGNORE_INTERFACE
697 },
698 {
699 .ifnum = 1,
700 .type = QUIRK_IGNORE_INTERFACE
701 },
702 {
703 .ifnum = 2,
704 .type = QUIRK_MIDI_FIXED_ENDPOINT,
705 .data = & (const struct snd_usb_midi_endpoint_info) {
706 .out_cables = 0x0001,
707 .in_cables = 0x0001
708 }
709 },
710 {
711 .ifnum = -1
712 }
713 }
714 }
715},
716{
717 USB_DEVICE(0x0582, 0x000b),
718 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
719 .vendor_name = "Roland",
720 .product_name = "SK-500",
721 .ifnum = QUIRK_ANY_INTERFACE,
722 .type = QUIRK_COMPOSITE,
723 .data = (const struct snd_usb_audio_quirk[]) {
724 {
725 .ifnum = 0,
726 .type = QUIRK_IGNORE_INTERFACE
727 },
728 {
729 .ifnum = 1,
730 .type = QUIRK_IGNORE_INTERFACE
731 },
732 {
733 .ifnum = 2,
734 .type = QUIRK_MIDI_FIXED_ENDPOINT,
735 .data = & (const struct snd_usb_midi_endpoint_info) {
736 .out_cables = 0x0013,
737 .in_cables = 0x0013
738 }
739 },
740 {
741 .ifnum = -1
742 }
743 }
744 }
745},
746{
747 /* thanks to Emiliano Grilli <emillo@libero.it>
748 * for helping researching this data */
749 USB_DEVICE(0x0582, 0x000c),
750 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
751 .vendor_name = "Roland",
752 .product_name = "SC-D70",
753 .ifnum = QUIRK_ANY_INTERFACE,
754 .type = QUIRK_COMPOSITE,
755 .data = (const struct snd_usb_audio_quirk[]) {
756 {
757 .ifnum = 0,
758 .type = QUIRK_AUDIO_STANDARD_INTERFACE
759 },
760 {
761 .ifnum = 1,
762 .type = QUIRK_AUDIO_STANDARD_INTERFACE
763 },
764 {
765 .ifnum = 2,
766 .type = QUIRK_MIDI_FIXED_ENDPOINT,
767 .data = & (const struct snd_usb_midi_endpoint_info) {
768 .out_cables = 0x0007,
769 .in_cables = 0x0007
770 }
771 },
772 {
773 .ifnum = -1
774 }
775 }
776 }
777},
778{ /*
779 * This quirk is for the "Advanced Driver" mode of the Edirol UA-5.
780 * If the advanced mode switch at the back of the unit is off, the
781 * UA-5 has ID 0x0582/0x0011 and is standard compliant (no quirks),
782 * but offers only 16-bit PCM.
783 * In advanced mode, the UA-5 will output S24_3LE samples (two
784 * channels) at the rate indicated on the front switch, including
785 * the 96kHz sample rate.
786 */
787 USB_DEVICE(0x0582, 0x0010),
788 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
789 .vendor_name = "EDIROL",
790 .product_name = "UA-5",
791 .ifnum = QUIRK_ANY_INTERFACE,
792 .type = QUIRK_COMPOSITE,
793 .data = (const struct snd_usb_audio_quirk[]) {
794 {
795 .ifnum = 1,
796 .type = QUIRK_AUDIO_STANDARD_INTERFACE
797 },
798 {
799 .ifnum = 2,
800 .type = QUIRK_AUDIO_STANDARD_INTERFACE
801 },
802 {
803 .ifnum = -1
804 }
805 }
806 }
807},
808{
809 /* has ID 0x0013 when not in "Advanced Driver" mode */
810 USB_DEVICE(0x0582, 0x0012),
811 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
812 .vendor_name = "Roland",
813 .product_name = "XV-5050",
814 .ifnum = 0,
815 .type = QUIRK_MIDI_FIXED_ENDPOINT,
816 .data = & (const struct snd_usb_midi_endpoint_info) {
817 .out_cables = 0x0001,
818 .in_cables = 0x0001
819 }
820 }
821},
822{
823 /* has ID 0x0015 when not in "Advanced Driver" mode */
824 USB_DEVICE(0x0582, 0x0014),
825 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
826 .vendor_name = "EDIROL",
827 .product_name = "UM-880",
828 .ifnum = 0,
829 .type = QUIRK_MIDI_FIXED_ENDPOINT,
830 .data = & (const struct snd_usb_midi_endpoint_info) {
831 .out_cables = 0x01ff,
832 .in_cables = 0x01ff
833 }
834 }
835},
836{
837 /* has ID 0x0017 when not in "Advanced Driver" mode */
838 USB_DEVICE(0x0582, 0x0016),
839 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
840 .vendor_name = "EDIROL",
841 .product_name = "SD-90",
842 .ifnum = QUIRK_ANY_INTERFACE,
843 .type = QUIRK_COMPOSITE,
844 .data = (const struct snd_usb_audio_quirk[]) {
845 {
846 .ifnum = 0,
847 .type = QUIRK_AUDIO_STANDARD_INTERFACE
848 },
849 {
850 .ifnum = 1,
851 .type = QUIRK_AUDIO_STANDARD_INTERFACE
852 },
853 {
854 .ifnum = 2,
855 .type = QUIRK_MIDI_FIXED_ENDPOINT,
856 .data = & (const struct snd_usb_midi_endpoint_info) {
857 .out_cables = 0x000f,
858 .in_cables = 0x000f
859 }
860 },
861 {
862 .ifnum = -1
863 }
864 }
865 }
866},
867{
868 /* has ID 0x001c when not in "Advanced Driver" mode */
869 USB_DEVICE(0x0582, 0x001b),
870 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
871 .vendor_name = "Roland",
872 .product_name = "MMP-2",
873 .ifnum = QUIRK_ANY_INTERFACE,
874 .type = QUIRK_COMPOSITE,
875 .data = (const struct snd_usb_audio_quirk[]) {
876 {
877 .ifnum = 0,
878 .type = QUIRK_IGNORE_INTERFACE
879 },
880 {
881 .ifnum = 1,
882 .type = QUIRK_IGNORE_INTERFACE
883 },
884 {
885 .ifnum = 2,
886 .type = QUIRK_MIDI_FIXED_ENDPOINT,
887 .data = & (const struct snd_usb_midi_endpoint_info) {
888 .out_cables = 0x0001,
889 .in_cables = 0x0001
890 }
891 },
892 {
893 .ifnum = -1
894 }
895 }
896 }
897},
898{
899 /* has ID 0x001e when not in "Advanced Driver" mode */
900 USB_DEVICE(0x0582, 0x001d),
901 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
902 .vendor_name = "Roland",
903 .product_name = "V-SYNTH",
904 .ifnum = 0,
905 .type = QUIRK_MIDI_FIXED_ENDPOINT,
906 .data = & (const struct snd_usb_midi_endpoint_info) {
907 .out_cables = 0x0001,
908 .in_cables = 0x0001
909 }
910 }
911},
912{
913 /* has ID 0x0024 when not in "Advanced Driver" mode */
914 USB_DEVICE(0x0582, 0x0023),
915 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
916 .vendor_name = "EDIROL",
917 .product_name = "UM-550",
918 .ifnum = 0,
919 .type = QUIRK_MIDI_FIXED_ENDPOINT,
920 .data = & (const struct snd_usb_midi_endpoint_info) {
921 .out_cables = 0x003f,
922 .in_cables = 0x003f
923 }
924 }
925},
926{
927 /*
928 * This quirk is for the "Advanced Driver" mode. If off, the UA-20
929 * has ID 0x0026 and is standard compliant, but has only 16-bit PCM
930 * and no MIDI.
931 */
932 USB_DEVICE(0x0582, 0x0025),
933 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
934 .vendor_name = "EDIROL",
935 .product_name = "UA-20",
936 .ifnum = QUIRK_ANY_INTERFACE,
937 .type = QUIRK_COMPOSITE,
938 .data = (const struct snd_usb_audio_quirk[]) {
939 {
940 .ifnum = 0,
941 .type = QUIRK_IGNORE_INTERFACE
942 },
943 {
944 .ifnum = 1,
945 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
946 .data = & (const struct audioformat) {
947 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
948 .channels = 2,
949 .iface = 1,
950 .altsetting = 1,
951 .altset_idx = 1,
952 .attributes = 0,
953 .endpoint = 0x01,
954 .ep_attr = 0x01,
955 .rates = SNDRV_PCM_RATE_CONTINUOUS,
956 .rate_min = 44100,
957 .rate_max = 44100,
958 }
959 },
960 {
961 .ifnum = 2,
962 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
963 .data = & (const struct audioformat) {
964 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
965 .channels = 2,
966 .iface = 2,
967 .altsetting = 1,
968 .altset_idx = 1,
969 .attributes = 0,
970 .endpoint = 0x82,
971 .ep_attr = 0x01,
972 .rates = SNDRV_PCM_RATE_CONTINUOUS,
973 .rate_min = 44100,
974 .rate_max = 44100,
975 }
976 },
977 {
978 .ifnum = 3,
979 .type = QUIRK_MIDI_FIXED_ENDPOINT,
980 .data = & (const struct snd_usb_midi_endpoint_info) {
981 .out_cables = 0x0001,
982 .in_cables = 0x0001
983 }
984 },
985 {
986 .ifnum = -1
987 }
988 }
989 }
990},
991{
992 /* has ID 0x0028 when not in "Advanced Driver" mode */
993 USB_DEVICE(0x0582, 0x0027),
994 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
995 .vendor_name = "EDIROL",
996 .product_name = "SD-20",
997 .ifnum = 0,
998 .type = QUIRK_MIDI_FIXED_ENDPOINT,
999 .data = & (const struct snd_usb_midi_endpoint_info) {
1000 .out_cables = 0x0003,
1001 .in_cables = 0x0007
1002 }
1003 }
1004},
1005{
1006 /* has ID 0x002a when not in "Advanced Driver" mode */
1007 USB_DEVICE(0x0582, 0x0029),
1008 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1009 .vendor_name = "EDIROL",
1010 .product_name = "SD-80",
1011 .ifnum = 0,
1012 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1013 .data = & (const struct snd_usb_midi_endpoint_info) {
1014 .out_cables = 0x000f,
1015 .in_cables = 0x000f
1016 }
1017 }
1018},
1019{ /*
1020 * This quirk is for the "Advanced" modes of the Edirol UA-700.
1021 * If the sample format switch is not in an advanced setting, the
1022 * UA-700 has ID 0x0582/0x002c and is standard compliant (no quirks),
1023 * but offers only 16-bit PCM and no MIDI.
1024 */
1025 USB_DEVICE_VENDOR_SPEC(0x0582, 0x002b),
1026 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1027 .vendor_name = "EDIROL",
1028 .product_name = "UA-700",
1029 .ifnum = QUIRK_ANY_INTERFACE,
1030 .type = QUIRK_COMPOSITE,
1031 .data = (const struct snd_usb_audio_quirk[]) {
1032 {
1033 .ifnum = 1,
1034 .type = QUIRK_AUDIO_EDIROL_UAXX
1035 },
1036 {
1037 .ifnum = 2,
1038 .type = QUIRK_AUDIO_EDIROL_UAXX
1039 },
1040 {
1041 .ifnum = 3,
1042 .type = QUIRK_AUDIO_EDIROL_UAXX
1043 },
1044 {
1045 .ifnum = -1
1046 }
1047 }
1048 }
1049},
1050{
1051 /* has ID 0x002e when not in "Advanced Driver" mode */
1052 USB_DEVICE(0x0582, 0x002d),
1053 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1054 .vendor_name = "Roland",
1055 .product_name = "XV-2020",
1056 .ifnum = 0,
1057 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1058 .data = & (const struct snd_usb_midi_endpoint_info) {
1059 .out_cables = 0x0001,
1060 .in_cables = 0x0001
1061 }
1062 }
1063},
1064{
1065 /* has ID 0x0030 when not in "Advanced Driver" mode */
1066 USB_DEVICE(0x0582, 0x002f),
1067 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1068 .vendor_name = "Roland",
1069 .product_name = "VariOS",
1070 .ifnum = 0,
1071 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1072 .data = & (const struct snd_usb_midi_endpoint_info) {
1073 .out_cables = 0x0007,
1074 .in_cables = 0x0007
1075 }
1076 }
1077},
1078{
1079 /* has ID 0x0034 when not in "Advanced Driver" mode */
1080 USB_DEVICE(0x0582, 0x0033),
1081 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1082 .vendor_name = "EDIROL",
1083 .product_name = "PCR",
1084 .ifnum = 0,
1085 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1086 .data = & (const struct snd_usb_midi_endpoint_info) {
1087 .out_cables = 0x0003,
1088 .in_cables = 0x0007
1089 }
1090 }
1091},
1092{
1093 /*
1094 * Has ID 0x0038 when not in "Advanced Driver" mode;
1095 * later revisions use IDs 0x0054 and 0x00a2.
1096 */
1097 USB_DEVICE(0x0582, 0x0037),
1098 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1099 .vendor_name = "Roland",
1100 .product_name = "Digital Piano",
1101 .ifnum = 0,
1102 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1103 .data = & (const struct snd_usb_midi_endpoint_info) {
1104 .out_cables = 0x0001,
1105 .in_cables = 0x0001
1106 }
1107 }
1108},
1109{
1110 /*
1111 * This quirk is for the "Advanced Driver" mode. If off, the GS-10
1112 * has ID 0x003c and is standard compliant, but has only 16-bit PCM
1113 * and no MIDI.
1114 */
1115 USB_DEVICE_VENDOR_SPEC(0x0582, 0x003b),
1116 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1117 .vendor_name = "BOSS",
1118 .product_name = "GS-10",
1119 .ifnum = QUIRK_ANY_INTERFACE,
1120 .type = QUIRK_COMPOSITE,
1121 .data = & (const struct snd_usb_audio_quirk[]) {
1122 {
1123 .ifnum = 1,
1124 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1125 },
1126 {
1127 .ifnum = 2,
1128 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1129 },
1130 {
1131 .ifnum = 3,
1132 .type = QUIRK_MIDI_STANDARD_INTERFACE
1133 },
1134 {
1135 .ifnum = -1
1136 }
1137 }
1138 }
1139},
1140{
1141 /* has ID 0x0041 when not in "Advanced Driver" mode */
1142 USB_DEVICE(0x0582, 0x0040),
1143 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1144 .vendor_name = "Roland",
1145 .product_name = "GI-20",
1146 .ifnum = 0,
1147 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1148 .data = & (const struct snd_usb_midi_endpoint_info) {
1149 .out_cables = 0x0001,
1150 .in_cables = 0x0001
1151 }
1152 }
1153},
1154{
1155 /* has ID 0x0043 when not in "Advanced Driver" mode */
1156 USB_DEVICE(0x0582, 0x0042),
1157 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1158 .vendor_name = "Roland",
1159 .product_name = "RS-70",
1160 .ifnum = 0,
1161 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1162 .data = & (const struct snd_usb_midi_endpoint_info) {
1163 .out_cables = 0x0001,
1164 .in_cables = 0x0001
1165 }
1166 }
1167},
1168{
1169 /* has ID 0x0049 when not in "Advanced Driver" mode */
1170 USB_DEVICE(0x0582, 0x0047),
1171 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1172 /* .vendor_name = "EDIROL", */
1173 /* .product_name = "UR-80", */
1174 .ifnum = QUIRK_ANY_INTERFACE,
1175 .type = QUIRK_COMPOSITE,
1176 .data = (const struct snd_usb_audio_quirk[]) {
1177 /* in the 96 kHz modes, only interface 1 is there */
1178 {
1179 .ifnum = 1,
1180 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1181 },
1182 {
1183 .ifnum = 2,
1184 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1185 },
1186 {
1187 .ifnum = -1
1188 }
1189 }
1190 }
1191},
1192{
1193 /* has ID 0x004a when not in "Advanced Driver" mode */
1194 USB_DEVICE(0x0582, 0x0048),
1195 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1196 /* .vendor_name = "EDIROL", */
1197 /* .product_name = "UR-80", */
1198 .ifnum = 0,
1199 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1200 .data = & (const struct snd_usb_midi_endpoint_info) {
1201 .out_cables = 0x0003,
1202 .in_cables = 0x0007
1203 }
1204 }
1205},
1206{
1207 /* has ID 0x004e when not in "Advanced Driver" mode */
1208 USB_DEVICE(0x0582, 0x004c),
1209 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1210 .vendor_name = "EDIROL",
1211 .product_name = "PCR-A",
1212 .ifnum = QUIRK_ANY_INTERFACE,
1213 .type = QUIRK_COMPOSITE,
1214 .data = (const struct snd_usb_audio_quirk[]) {
1215 {
1216 .ifnum = 1,
1217 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1218 },
1219 {
1220 .ifnum = 2,
1221 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1222 },
1223 {
1224 .ifnum = -1
1225 }
1226 }
1227 }
1228},
1229{
1230 /* has ID 0x004f when not in "Advanced Driver" mode */
1231 USB_DEVICE(0x0582, 0x004d),
1232 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1233 .vendor_name = "EDIROL",
1234 .product_name = "PCR-A",
1235 .ifnum = 0,
1236 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1237 .data = & (const struct snd_usb_midi_endpoint_info) {
1238 .out_cables = 0x0003,
1239 .in_cables = 0x0007
1240 }
1241 }
1242},
1243{
1244 /*
1245 * This quirk is for the "Advanced Driver" mode. If off, the UA-3FX
1246 * is standard compliant, but has only 16-bit PCM.
1247 */
1248 USB_DEVICE(0x0582, 0x0050),
1249 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1250 .vendor_name = "EDIROL",
1251 .product_name = "UA-3FX",
1252 .ifnum = QUIRK_ANY_INTERFACE,
1253 .type = QUIRK_COMPOSITE,
1254 .data = (const struct snd_usb_audio_quirk[]) {
1255 {
1256 .ifnum = 1,
1257 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1258 },
1259 {
1260 .ifnum = 2,
1261 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1262 },
1263 {
1264 .ifnum = -1
1265 }
1266 }
1267 }
1268},
1269{
1270 USB_DEVICE(0x0582, 0x0052),
1271 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1272 .vendor_name = "EDIROL",
1273 .product_name = "UM-1SX",
1274 .ifnum = 0,
1275 .type = QUIRK_MIDI_STANDARD_INTERFACE
1276 }
1277},
1278{
1279 USB_DEVICE(0x0582, 0x0060),
1280 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1281 .vendor_name = "Roland",
1282 .product_name = "EXR Series",
1283 .ifnum = 0,
1284 .type = QUIRK_MIDI_STANDARD_INTERFACE
1285 }
1286},
1287{
1288 /* has ID 0x0066 when not in "Advanced Driver" mode */
1289 USB_DEVICE(0x0582, 0x0064),
1290 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1291 /* .vendor_name = "EDIROL", */
1292 /* .product_name = "PCR-1", */
1293 .ifnum = QUIRK_ANY_INTERFACE,
1294 .type = QUIRK_COMPOSITE,
1295 .data = (const struct snd_usb_audio_quirk[]) {
1296 {
1297 .ifnum = 1,
1298 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1299 },
1300 {
1301 .ifnum = 2,
1302 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1303 },
1304 {
1305 .ifnum = -1
1306 }
1307 }
1308 }
1309},
1310{
1311 /* has ID 0x0067 when not in "Advanced Driver" mode */
1312 USB_DEVICE(0x0582, 0x0065),
1313 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1314 /* .vendor_name = "EDIROL", */
1315 /* .product_name = "PCR-1", */
1316 .ifnum = 0,
1317 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1318 .data = & (const struct snd_usb_midi_endpoint_info) {
1319 .out_cables = 0x0001,
1320 .in_cables = 0x0003
1321 }
1322 }
1323},
1324{
1325 /* has ID 0x006e when not in "Advanced Driver" mode */
1326 USB_DEVICE(0x0582, 0x006d),
1327 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1328 .vendor_name = "Roland",
1329 .product_name = "FANTOM-X",
1330 .ifnum = 0,
1331 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1332 .data = & (const struct snd_usb_midi_endpoint_info) {
1333 .out_cables = 0x0001,
1334 .in_cables = 0x0001
1335 }
1336 }
1337},
1338{ /*
1339 * This quirk is for the "Advanced" modes of the Edirol UA-25.
1340 * If the switch is not in an advanced setting, the UA-25 has
1341 * ID 0x0582/0x0073 and is standard compliant (no quirks), but
1342 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1343 */
1344 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0074),
1345 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1346 .vendor_name = "EDIROL",
1347 .product_name = "UA-25",
1348 .ifnum = QUIRK_ANY_INTERFACE,
1349 .type = QUIRK_COMPOSITE,
1350 .data = (const struct snd_usb_audio_quirk[]) {
1351 {
1352 .ifnum = 0,
1353 .type = QUIRK_AUDIO_EDIROL_UAXX
1354 },
1355 {
1356 .ifnum = 1,
1357 .type = QUIRK_AUDIO_EDIROL_UAXX
1358 },
1359 {
1360 .ifnum = 2,
1361 .type = QUIRK_AUDIO_EDIROL_UAXX
1362 },
1363 {
1364 .ifnum = -1
1365 }
1366 }
1367 }
1368},
1369{
1370 /* has ID 0x0076 when not in "Advanced Driver" mode */
1371 USB_DEVICE(0x0582, 0x0075),
1372 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1373 .vendor_name = "BOSS",
1374 .product_name = "DR-880",
1375 .ifnum = 0,
1376 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1377 .data = & (const struct snd_usb_midi_endpoint_info) {
1378 .out_cables = 0x0001,
1379 .in_cables = 0x0001
1380 }
1381 }
1382},
1383{
1384 /* has ID 0x007b when not in "Advanced Driver" mode */
1385 USB_DEVICE_VENDOR_SPEC(0x0582, 0x007a),
1386 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1387 .vendor_name = "Roland",
1388 /* "RD" or "RD-700SX"? */
1389 .ifnum = 0,
1390 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1391 .data = & (const struct snd_usb_midi_endpoint_info) {
1392 .out_cables = 0x0003,
1393 .in_cables = 0x0003
1394 }
1395 }
1396},
1397{
1398 /* has ID 0x0081 when not in "Advanced Driver" mode */
1399 USB_DEVICE(0x0582, 0x0080),
1400 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1401 .vendor_name = "Roland",
1402 .product_name = "G-70",
1403 .ifnum = 0,
1404 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1405 .data = & (const struct snd_usb_midi_endpoint_info) {
1406 .out_cables = 0x0001,
1407 .in_cables = 0x0001
1408 }
1409 }
1410},
1411{
1412 /* has ID 0x008c when not in "Advanced Driver" mode */
1413 USB_DEVICE(0x0582, 0x008b),
1414 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1415 .vendor_name = "EDIROL",
1416 .product_name = "PC-50",
1417 .ifnum = 0,
1418 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1419 .data = & (const struct snd_usb_midi_endpoint_info) {
1420 .out_cables = 0x0001,
1421 .in_cables = 0x0001
1422 }
1423 }
1424},
1425{
1426 /*
1427 * This quirk is for the "Advanced Driver" mode. If off, the UA-4FX
1428 * is standard compliant, but has only 16-bit PCM and no MIDI.
1429 */
1430 USB_DEVICE(0x0582, 0x00a3),
1431 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1432 .vendor_name = "EDIROL",
1433 .product_name = "UA-4FX",
1434 .ifnum = QUIRK_ANY_INTERFACE,
1435 .type = QUIRK_COMPOSITE,
1436 .data = (const struct snd_usb_audio_quirk[]) {
1437 {
1438 .ifnum = 0,
1439 .type = QUIRK_AUDIO_EDIROL_UAXX
1440 },
1441 {
1442 .ifnum = 1,
1443 .type = QUIRK_AUDIO_EDIROL_UAXX
1444 },
1445 {
1446 .ifnum = 2,
1447 .type = QUIRK_AUDIO_EDIROL_UAXX
1448 },
1449 {
1450 .ifnum = -1
1451 }
1452 }
1453 }
1454},
1455{
1456 /* Edirol M-16DX */
1457 USB_DEVICE(0x0582, 0x00c4),
1458 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1459 .ifnum = QUIRK_ANY_INTERFACE,
1460 .type = QUIRK_COMPOSITE,
1461 .data = (const struct snd_usb_audio_quirk[]) {
1462 {
1463 .ifnum = 0,
1464 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1465 },
1466 {
1467 .ifnum = 1,
1468 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1469 },
1470 {
1471 .ifnum = 2,
1472 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1473 .data = & (const struct snd_usb_midi_endpoint_info) {
1474 .out_cables = 0x0001,
1475 .in_cables = 0x0001
1476 }
1477 },
1478 {
1479 .ifnum = -1
1480 }
1481 }
1482 }
1483},
1484{
1485 /* Advanced modes of the Edirol UA-25EX.
1486 * For the standard mode, UA-25EX has ID 0582:00e7, which
1487 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1488 */
1489 USB_DEVICE_VENDOR_SPEC(0x0582, 0x00e6),
1490 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1491 .vendor_name = "EDIROL",
1492 .product_name = "UA-25EX",
1493 .ifnum = QUIRK_ANY_INTERFACE,
1494 .type = QUIRK_COMPOSITE,
1495 .data = (const struct snd_usb_audio_quirk[]) {
1496 {
1497 .ifnum = 0,
1498 .type = QUIRK_AUDIO_EDIROL_UAXX
1499 },
1500 {
1501 .ifnum = 1,
1502 .type = QUIRK_AUDIO_EDIROL_UAXX
1503 },
1504 {
1505 .ifnum = 2,
1506 .type = QUIRK_AUDIO_EDIROL_UAXX
1507 },
1508 {
1509 .ifnum = -1
1510 }
1511 }
1512 }
1513},
1514{
1515 /* Edirol UM-3G */
1516 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0108),
1517 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1518 .ifnum = 0,
1519 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1520 .data = & (const struct snd_usb_midi_endpoint_info) {
1521 .out_cables = 0x0007,
1522 .in_cables = 0x0007
1523 }
1524 }
1525},
1526{
1527 /* BOSS ME-25 */
1528 USB_DEVICE(0x0582, 0x0113),
1529 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1530 .ifnum = QUIRK_ANY_INTERFACE,
1531 .type = QUIRK_COMPOSITE,
1532 .data = (const struct snd_usb_audio_quirk[]) {
1533 {
1534 .ifnum = 0,
1535 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1536 },
1537 {
1538 .ifnum = 1,
1539 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1540 },
1541 {
1542 .ifnum = 2,
1543 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1544 .data = & (const struct snd_usb_midi_endpoint_info) {
1545 .out_cables = 0x0001,
1546 .in_cables = 0x0001
1547 }
1548 },
1549 {
1550 .ifnum = -1
1551 }
1552 }
1553 }
1554},
1555{
1556 /* only 44.1 kHz works at the moment */
1557 USB_DEVICE(0x0582, 0x0120),
1558 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1559 /* .vendor_name = "Roland", */
1560 /* .product_name = "OCTO-CAPTURE", */
1561 .ifnum = QUIRK_ANY_INTERFACE,
1562 .type = QUIRK_COMPOSITE,
1563 .data = (const struct snd_usb_audio_quirk[]) {
1564 {
1565 .ifnum = 0,
1566 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1567 .data = & (const struct audioformat) {
1568 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1569 .channels = 10,
1570 .iface = 0,
1571 .altsetting = 1,
1572 .altset_idx = 1,
1573 .endpoint = 0x05,
1574 .ep_attr = 0x05,
1575 .rates = SNDRV_PCM_RATE_44100,
1576 .rate_min = 44100,
1577 .rate_max = 44100,
1578 .nr_rates = 1,
1579 .rate_table = (unsigned int[]) { 44100 }
1580 }
1581 },
1582 {
1583 .ifnum = 1,
1584 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1585 .data = & (const struct audioformat) {
1586 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1587 .channels = 12,
1588 .iface = 1,
1589 .altsetting = 1,
1590 .altset_idx = 1,
1591 .endpoint = 0x85,
1592 .ep_attr = 0x25,
1593 .rates = SNDRV_PCM_RATE_44100,
1594 .rate_min = 44100,
1595 .rate_max = 44100,
1596 .nr_rates = 1,
1597 .rate_table = (unsigned int[]) { 44100 }
1598 }
1599 },
1600 {
1601 .ifnum = 2,
1602 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1603 .data = & (const struct snd_usb_midi_endpoint_info) {
1604 .out_cables = 0x0001,
1605 .in_cables = 0x0001
1606 }
1607 },
1608 {
1609 .ifnum = 3,
1610 .type = QUIRK_IGNORE_INTERFACE
1611 },
1612 {
1613 .ifnum = 4,
1614 .type = QUIRK_IGNORE_INTERFACE
1615 },
1616 {
1617 .ifnum = -1
1618 }
1619 }
1620 }
1621},
1622{
1623 /* only 44.1 kHz works at the moment */
1624 USB_DEVICE(0x0582, 0x012f),
1625 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1626 /* .vendor_name = "Roland", */
1627 /* .product_name = "QUAD-CAPTURE", */
1628 .ifnum = QUIRK_ANY_INTERFACE,
1629 .type = QUIRK_COMPOSITE,
1630 .data = (const struct snd_usb_audio_quirk[]) {
1631 {
1632 .ifnum = 0,
1633 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1634 .data = & (const struct audioformat) {
1635 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1636 .channels = 4,
1637 .iface = 0,
1638 .altsetting = 1,
1639 .altset_idx = 1,
1640 .endpoint = 0x05,
1641 .ep_attr = 0x05,
1642 .rates = SNDRV_PCM_RATE_44100,
1643 .rate_min = 44100,
1644 .rate_max = 44100,
1645 .nr_rates = 1,
1646 .rate_table = (unsigned int[]) { 44100 }
1647 }
1648 },
1649 {
1650 .ifnum = 1,
1651 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1652 .data = & (const struct audioformat) {
1653 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1654 .channels = 6,
1655 .iface = 1,
1656 .altsetting = 1,
1657 .altset_idx = 1,
1658 .endpoint = 0x85,
1659 .ep_attr = 0x25,
1660 .rates = SNDRV_PCM_RATE_44100,
1661 .rate_min = 44100,
1662 .rate_max = 44100,
1663 .nr_rates = 1,
1664 .rate_table = (unsigned int[]) { 44100 }
1665 }
1666 },
1667 {
1668 .ifnum = 2,
1669 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1670 .data = & (const struct snd_usb_midi_endpoint_info) {
1671 .out_cables = 0x0001,
1672 .in_cables = 0x0001
1673 }
1674 },
1675 {
1676 .ifnum = 3,
1677 .type = QUIRK_IGNORE_INTERFACE
1678 },
1679 {
1680 .ifnum = 4,
1681 .type = QUIRK_IGNORE_INTERFACE
1682 },
1683 {
1684 .ifnum = -1
1685 }
1686 }
1687 }
1688},
1689{
1690 USB_DEVICE(0x0582, 0x0159),
1691 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1692 /* .vendor_name = "Roland", */
1693 /* .product_name = "UA-22", */
1694 .ifnum = QUIRK_ANY_INTERFACE,
1695 .type = QUIRK_COMPOSITE,
1696 .data = (const struct snd_usb_audio_quirk[]) {
1697 {
1698 .ifnum = 0,
1699 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1700 },
1701 {
1702 .ifnum = 1,
1703 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1704 },
1705 {
1706 .ifnum = 2,
1707 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1708 .data = & (const struct snd_usb_midi_endpoint_info) {
1709 .out_cables = 0x0001,
1710 .in_cables = 0x0001
1711 }
1712 },
1713 {
1714 .ifnum = -1
1715 }
1716 }
1717 }
1718},
1719
1720/* UA101 and co are supported by another driver */
1721{
1722 USB_DEVICE(0x0582, 0x0044), /* UA-1000 high speed */
1723 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1724 .ifnum = QUIRK_NODEV_INTERFACE
1725 },
1726},
1727{
1728 USB_DEVICE(0x0582, 0x007d), /* UA-101 high speed */
1729 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1730 .ifnum = QUIRK_NODEV_INTERFACE
1731 },
1732},
1733{
1734 USB_DEVICE(0x0582, 0x008d), /* UA-101 full speed */
1735 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1736 .ifnum = QUIRK_NODEV_INTERFACE
1737 },
1738},
1739
1740/* this catches most recent vendor-specific Roland devices */
1741{
1742 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
1743 USB_DEVICE_ID_MATCH_INT_CLASS,
1744 .idVendor = 0x0582,
1745 .bInterfaceClass = USB_CLASS_VENDOR_SPEC,
1746 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
1747 .ifnum = QUIRK_ANY_INTERFACE,
1748 .type = QUIRK_AUTODETECT
1749 }
1750},
1751
1752/* Guillemot devices */
1753{
1754 /*
1755 * This is for the "Windows Edition" where the external MIDI ports are
1756 * the only MIDI ports; the control data is reported through HID
1757 * interfaces. The "Macintosh Edition" has ID 0xd002 and uses standard
1758 * compliant USB MIDI ports for external MIDI and controls.
1759 */
1760 USB_DEVICE_VENDOR_SPEC(0x06f8, 0xb000),
1761 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1762 .vendor_name = "Hercules",
1763 .product_name = "DJ Console (WE)",
1764 .ifnum = 4,
1765 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1766 .data = & (const struct snd_usb_midi_endpoint_info) {
1767 .out_cables = 0x0001,
1768 .in_cables = 0x0001
1769 }
1770 }
1771},
1772
1773/* Midiman/M-Audio devices */
1774{
1775 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1002),
1776 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1777 .vendor_name = "M-Audio",
1778 .product_name = "MidiSport 2x2",
1779 .ifnum = QUIRK_ANY_INTERFACE,
1780 .type = QUIRK_MIDI_MIDIMAN,
1781 .data = & (const struct snd_usb_midi_endpoint_info) {
1782 .out_cables = 0x0003,
1783 .in_cables = 0x0003
1784 }
1785 }
1786},
1787{
1788 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1011),
1789 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1790 .vendor_name = "M-Audio",
1791 .product_name = "MidiSport 1x1",
1792 .ifnum = QUIRK_ANY_INTERFACE,
1793 .type = QUIRK_MIDI_MIDIMAN,
1794 .data = & (const struct snd_usb_midi_endpoint_info) {
1795 .out_cables = 0x0001,
1796 .in_cables = 0x0001
1797 }
1798 }
1799},
1800{
1801 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1015),
1802 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1803 .vendor_name = "M-Audio",
1804 .product_name = "Keystation",
1805 .ifnum = QUIRK_ANY_INTERFACE,
1806 .type = QUIRK_MIDI_MIDIMAN,
1807 .data = & (const struct snd_usb_midi_endpoint_info) {
1808 .out_cables = 0x0001,
1809 .in_cables = 0x0001
1810 }
1811 }
1812},
1813{
1814 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1021),
1815 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1816 .vendor_name = "M-Audio",
1817 .product_name = "MidiSport 4x4",
1818 .ifnum = QUIRK_ANY_INTERFACE,
1819 .type = QUIRK_MIDI_MIDIMAN,
1820 .data = & (const struct snd_usb_midi_endpoint_info) {
1821 .out_cables = 0x000f,
1822 .in_cables = 0x000f
1823 }
1824 }
1825},
1826{
1827 /*
1828 * For hardware revision 1.05; in the later revisions (1.10 and
1829 * 1.21), 0x1031 is the ID for the device without firmware.
1830 * Thanks to Olaf Giesbrecht <Olaf_Giesbrecht@yahoo.de>
1831 */
1832 USB_DEVICE_VER(0x0763, 0x1031, 0x0100, 0x0109),
1833 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1834 .vendor_name = "M-Audio",
1835 .product_name = "MidiSport 8x8",
1836 .ifnum = QUIRK_ANY_INTERFACE,
1837 .type = QUIRK_MIDI_MIDIMAN,
1838 .data = & (const struct snd_usb_midi_endpoint_info) {
1839 .out_cables = 0x01ff,
1840 .in_cables = 0x01ff
1841 }
1842 }
1843},
1844{
1845 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1033),
1846 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1847 .vendor_name = "M-Audio",
1848 .product_name = "MidiSport 8x8",
1849 .ifnum = QUIRK_ANY_INTERFACE,
1850 .type = QUIRK_MIDI_MIDIMAN,
1851 .data = & (const struct snd_usb_midi_endpoint_info) {
1852 .out_cables = 0x01ff,
1853 .in_cables = 0x01ff
1854 }
1855 }
1856},
1857{
1858 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1041),
1859 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1860 .vendor_name = "M-Audio",
1861 .product_name = "MidiSport 2x4",
1862 .ifnum = QUIRK_ANY_INTERFACE,
1863 .type = QUIRK_MIDI_MIDIMAN,
1864 .data = & (const struct snd_usb_midi_endpoint_info) {
1865 .out_cables = 0x000f,
1866 .in_cables = 0x0003
1867 }
1868 }
1869},
1870{
1871 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2001),
1872 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1873 .vendor_name = "M-Audio",
1874 .product_name = "Quattro",
1875 .ifnum = QUIRK_ANY_INTERFACE,
1876 .type = QUIRK_COMPOSITE,
1877 .data = & (const struct snd_usb_audio_quirk[]) {
1878 /*
1879 * Interfaces 0-2 are "Windows-compatible", 16-bit only,
1880 * and share endpoints with the other interfaces.
1881 * Ignore them. The other interfaces can do 24 bits,
1882 * but captured samples are big-endian (see usbaudio.c).
1883 */
1884 {
1885 .ifnum = 0,
1886 .type = QUIRK_IGNORE_INTERFACE
1887 },
1888 {
1889 .ifnum = 1,
1890 .type = QUIRK_IGNORE_INTERFACE
1891 },
1892 {
1893 .ifnum = 2,
1894 .type = QUIRK_IGNORE_INTERFACE
1895 },
1896 {
1897 .ifnum = 3,
1898 .type = QUIRK_IGNORE_INTERFACE
1899 },
1900 {
1901 .ifnum = 4,
1902 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1903 },
1904 {
1905 .ifnum = 5,
1906 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1907 },
1908 {
1909 .ifnum = 6,
1910 .type = QUIRK_IGNORE_INTERFACE
1911 },
1912 {
1913 .ifnum = 7,
1914 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1915 },
1916 {
1917 .ifnum = 8,
1918 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1919 },
1920 {
1921 .ifnum = 9,
1922 .type = QUIRK_MIDI_MIDIMAN,
1923 .data = & (const struct snd_usb_midi_endpoint_info) {
1924 .out_cables = 0x0001,
1925 .in_cables = 0x0001
1926 }
1927 },
1928 {
1929 .ifnum = -1
1930 }
1931 }
1932 }
1933},
1934{
1935 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2003),
1936 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1937 .vendor_name = "M-Audio",
1938 .product_name = "AudioPhile",
1939 .ifnum = 6,
1940 .type = QUIRK_MIDI_MIDIMAN,
1941 .data = & (const struct snd_usb_midi_endpoint_info) {
1942 .out_cables = 0x0001,
1943 .in_cables = 0x0001
1944 }
1945 }
1946},
1947{
1948 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2008),
1949 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1950 .vendor_name = "M-Audio",
1951 .product_name = "Ozone",
1952 .ifnum = 3,
1953 .type = QUIRK_MIDI_MIDIMAN,
1954 .data = & (const struct snd_usb_midi_endpoint_info) {
1955 .out_cables = 0x0001,
1956 .in_cables = 0x0001
1957 }
1958 }
1959},
1960{
1961 USB_DEVICE_VENDOR_SPEC(0x0763, 0x200d),
1962 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1963 .vendor_name = "M-Audio",
1964 .product_name = "OmniStudio",
1965 .ifnum = QUIRK_ANY_INTERFACE,
1966 .type = QUIRK_COMPOSITE,
1967 .data = & (const struct snd_usb_audio_quirk[]) {
1968 {
1969 .ifnum = 0,
1970 .type = QUIRK_IGNORE_INTERFACE
1971 },
1972 {
1973 .ifnum = 1,
1974 .type = QUIRK_IGNORE_INTERFACE
1975 },
1976 {
1977 .ifnum = 2,
1978 .type = QUIRK_IGNORE_INTERFACE
1979 },
1980 {
1981 .ifnum = 3,
1982 .type = QUIRK_IGNORE_INTERFACE
1983 },
1984 {
1985 .ifnum = 4,
1986 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1987 },
1988 {
1989 .ifnum = 5,
1990 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1991 },
1992 {
1993 .ifnum = 6,
1994 .type = QUIRK_IGNORE_INTERFACE
1995 },
1996 {
1997 .ifnum = 7,
1998 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1999 },
2000 {
2001 .ifnum = 8,
2002 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2003 },
2004 {
2005 .ifnum = 9,
2006 .type = QUIRK_MIDI_MIDIMAN,
2007 .data = & (const struct snd_usb_midi_endpoint_info) {
2008 .out_cables = 0x0001,
2009 .in_cables = 0x0001
2010 }
2011 },
2012 {
2013 .ifnum = -1
2014 }
2015 }
2016 }
2017},
2018{
2019 USB_DEVICE(0x0763, 0x2019),
2020 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2021 /* .vendor_name = "M-Audio", */
2022 /* .product_name = "Ozone Academic", */
2023 .ifnum = QUIRK_ANY_INTERFACE,
2024 .type = QUIRK_COMPOSITE,
2025 .data = & (const struct snd_usb_audio_quirk[]) {
2026 {
2027 .ifnum = 0,
2028 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2029 },
2030 {
2031 .ifnum = 1,
2032 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2033 },
2034 {
2035 .ifnum = 2,
2036 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2037 },
2038 {
2039 .ifnum = 3,
2040 .type = QUIRK_MIDI_MIDIMAN,
2041 .data = & (const struct snd_usb_midi_endpoint_info) {
2042 .out_cables = 0x0001,
2043 .in_cables = 0x0001
2044 }
2045 },
2046 {
2047 .ifnum = -1
2048 }
2049 }
2050 }
2051},
2052{
2053 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2030),
2054 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2055 /* .vendor_name = "M-Audio", */
2056 /* .product_name = "Fast Track C400", */
2057 .ifnum = QUIRK_ANY_INTERFACE,
2058 .type = QUIRK_COMPOSITE,
2059 .data = &(const struct snd_usb_audio_quirk[]) {
2060 {
2061 .ifnum = 1,
2062 .type = QUIRK_AUDIO_STANDARD_MIXER,
2063 },
2064 /* Playback */
2065 {
2066 .ifnum = 2,
2067 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2068 .data = &(const struct audioformat) {
2069 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2070 .channels = 6,
2071 .iface = 2,
2072 .altsetting = 1,
2073 .altset_idx = 1,
2074 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2075 .endpoint = 0x01,
2076 .ep_attr = 0x09,
2077 .rates = SNDRV_PCM_RATE_44100 |
2078 SNDRV_PCM_RATE_48000 |
2079 SNDRV_PCM_RATE_88200 |
2080 SNDRV_PCM_RATE_96000,
2081 .rate_min = 44100,
2082 .rate_max = 96000,
2083 .nr_rates = 4,
2084 .rate_table = (unsigned int[]) {
2085 44100, 48000, 88200, 96000
2086 },
2087 .clock = 0x80,
2088 }
2089 },
2090 /* Capture */
2091 {
2092 .ifnum = 3,
2093 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2094 .data = &(const struct audioformat) {
2095 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2096 .channels = 4,
2097 .iface = 3,
2098 .altsetting = 1,
2099 .altset_idx = 1,
2100 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2101 .endpoint = 0x81,
2102 .ep_attr = 0x05,
2103 .rates = SNDRV_PCM_RATE_44100 |
2104 SNDRV_PCM_RATE_48000 |
2105 SNDRV_PCM_RATE_88200 |
2106 SNDRV_PCM_RATE_96000,
2107 .rate_min = 44100,
2108 .rate_max = 96000,
2109 .nr_rates = 4,
2110 .rate_table = (unsigned int[]) {
2111 44100, 48000, 88200, 96000
2112 },
2113 .clock = 0x80,
2114 }
2115 },
2116 /* MIDI */
2117 {
2118 .ifnum = -1 /* Interface = 4 */
2119 }
2120 }
2121 }
2122},
2123{
2124 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2031),
2125 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2126 /* .vendor_name = "M-Audio", */
2127 /* .product_name = "Fast Track C600", */
2128 .ifnum = QUIRK_ANY_INTERFACE,
2129 .type = QUIRK_COMPOSITE,
2130 .data = &(const struct snd_usb_audio_quirk[]) {
2131 {
2132 .ifnum = 1,
2133 .type = QUIRK_AUDIO_STANDARD_MIXER,
2134 },
2135 /* Playback */
2136 {
2137 .ifnum = 2,
2138 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2139 .data = &(const struct audioformat) {
2140 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2141 .channels = 8,
2142 .iface = 2,
2143 .altsetting = 1,
2144 .altset_idx = 1,
2145 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2146 .endpoint = 0x01,
2147 .ep_attr = 0x09,
2148 .rates = SNDRV_PCM_RATE_44100 |
2149 SNDRV_PCM_RATE_48000 |
2150 SNDRV_PCM_RATE_88200 |
2151 SNDRV_PCM_RATE_96000,
2152 .rate_min = 44100,
2153 .rate_max = 96000,
2154 .nr_rates = 4,
2155 .rate_table = (unsigned int[]) {
2156 44100, 48000, 88200, 96000
2157 },
2158 .clock = 0x80,
2159 }
2160 },
2161 /* Capture */
2162 {
2163 .ifnum = 3,
2164 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2165 .data = &(const struct audioformat) {
2166 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2167 .channels = 6,
2168 .iface = 3,
2169 .altsetting = 1,
2170 .altset_idx = 1,
2171 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2172 .endpoint = 0x81,
2173 .ep_attr = 0x05,
2174 .rates = SNDRV_PCM_RATE_44100 |
2175 SNDRV_PCM_RATE_48000 |
2176 SNDRV_PCM_RATE_88200 |
2177 SNDRV_PCM_RATE_96000,
2178 .rate_min = 44100,
2179 .rate_max = 96000,
2180 .nr_rates = 4,
2181 .rate_table = (unsigned int[]) {
2182 44100, 48000, 88200, 96000
2183 },
2184 .clock = 0x80,
2185 }
2186 },
2187 /* MIDI */
2188 {
2189 .ifnum = -1 /* Interface = 4 */
2190 }
2191 }
2192 }
2193},
2194{
2195 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2080),
2196 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2197 /* .vendor_name = "M-Audio", */
2198 /* .product_name = "Fast Track Ultra", */
2199 .ifnum = QUIRK_ANY_INTERFACE,
2200 .type = QUIRK_COMPOSITE,
2201 .data = & (const struct snd_usb_audio_quirk[]) {
2202 {
2203 .ifnum = 0,
2204 .type = QUIRK_AUDIO_STANDARD_MIXER,
2205 },
2206 {
2207 .ifnum = 1,
2208 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2209 .data = & (const struct audioformat) {
2210 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2211 .channels = 8,
2212 .iface = 1,
2213 .altsetting = 1,
2214 .altset_idx = 1,
2215 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2216 .endpoint = 0x01,
2217 .ep_attr = 0x09,
2218 .rates = SNDRV_PCM_RATE_44100 |
2219 SNDRV_PCM_RATE_48000 |
2220 SNDRV_PCM_RATE_88200 |
2221 SNDRV_PCM_RATE_96000,
2222 .rate_min = 44100,
2223 .rate_max = 96000,
2224 .nr_rates = 4,
2225 .rate_table = (unsigned int[]) {
2226 44100, 48000, 88200, 96000
2227 }
2228 }
2229 },
2230 {
2231 .ifnum = 2,
2232 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2233 .data = & (const struct audioformat) {
2234 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2235 .channels = 8,
2236 .iface = 2,
2237 .altsetting = 1,
2238 .altset_idx = 1,
2239 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2240 .endpoint = 0x81,
2241 .ep_attr = 0x05,
2242 .rates = SNDRV_PCM_RATE_44100 |
2243 SNDRV_PCM_RATE_48000 |
2244 SNDRV_PCM_RATE_88200 |
2245 SNDRV_PCM_RATE_96000,
2246 .rate_min = 44100,
2247 .rate_max = 96000,
2248 .nr_rates = 4,
2249 .rate_table = (unsigned int[]) {
2250 44100, 48000, 88200, 96000
2251 }
2252 }
2253 },
2254 /* interface 3 (MIDI) is standard compliant */
2255 {
2256 .ifnum = -1
2257 }
2258 }
2259 }
2260},
2261{
2262 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2081),
2263 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2264 /* .vendor_name = "M-Audio", */
2265 /* .product_name = "Fast Track Ultra 8R", */
2266 .ifnum = QUIRK_ANY_INTERFACE,
2267 .type = QUIRK_COMPOSITE,
2268 .data = & (const struct snd_usb_audio_quirk[]) {
2269 {
2270 .ifnum = 0,
2271 .type = QUIRK_AUDIO_STANDARD_MIXER,
2272 },
2273 {
2274 .ifnum = 1,
2275 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2276 .data = & (const struct audioformat) {
2277 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2278 .channels = 8,
2279 .iface = 1,
2280 .altsetting = 1,
2281 .altset_idx = 1,
2282 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2283 .endpoint = 0x01,
2284 .ep_attr = 0x09,
2285 .rates = SNDRV_PCM_RATE_44100 |
2286 SNDRV_PCM_RATE_48000 |
2287 SNDRV_PCM_RATE_88200 |
2288 SNDRV_PCM_RATE_96000,
2289 .rate_min = 44100,
2290 .rate_max = 96000,
2291 .nr_rates = 4,
2292 .rate_table = (unsigned int[]) {
2293 44100, 48000, 88200, 96000
2294 }
2295 }
2296 },
2297 {
2298 .ifnum = 2,
2299 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2300 .data = & (const struct audioformat) {
2301 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2302 .channels = 8,
2303 .iface = 2,
2304 .altsetting = 1,
2305 .altset_idx = 1,
2306 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2307 .endpoint = 0x81,
2308 .ep_attr = 0x05,
2309 .rates = SNDRV_PCM_RATE_44100 |
2310 SNDRV_PCM_RATE_48000 |
2311 SNDRV_PCM_RATE_88200 |
2312 SNDRV_PCM_RATE_96000,
2313 .rate_min = 44100,
2314 .rate_max = 96000,
2315 .nr_rates = 4,
2316 .rate_table = (unsigned int[]) {
2317 44100, 48000, 88200, 96000
2318 }
2319 }
2320 },
2321 /* interface 3 (MIDI) is standard compliant */
2322 {
2323 .ifnum = -1
2324 }
2325 }
2326 }
2327},
2328
2329/* Casio devices */
2330{
2331 USB_DEVICE(0x07cf, 0x6801),
2332 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2333 .vendor_name = "Casio",
2334 .product_name = "PL-40R",
2335 .ifnum = 0,
2336 .type = QUIRK_MIDI_YAMAHA
2337 }
2338},
2339{
2340 /* this ID is used by several devices without a product ID */
2341 USB_DEVICE(0x07cf, 0x6802),
2342 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2343 .vendor_name = "Casio",
2344 .product_name = "Keyboard",
2345 .ifnum = 0,
2346 .type = QUIRK_MIDI_YAMAHA
2347 }
2348},
2349
2350/* Mark of the Unicorn devices */
2351{
2352 /* thanks to Robert A. Lerche <ral 'at' msbit.com> */
2353 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
2354 USB_DEVICE_ID_MATCH_PRODUCT |
2355 USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
2356 .idVendor = 0x07fd,
2357 .idProduct = 0x0001,
2358 .bDeviceSubClass = 2,
2359 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2360 .vendor_name = "MOTU",
2361 .product_name = "Fastlane",
2362 .ifnum = QUIRK_ANY_INTERFACE,
2363 .type = QUIRK_COMPOSITE,
2364 .data = & (const struct snd_usb_audio_quirk[]) {
2365 {
2366 .ifnum = 0,
2367 .type = QUIRK_MIDI_RAW_BYTES
2368 },
2369 {
2370 .ifnum = 1,
2371 .type = QUIRK_IGNORE_INTERFACE
2372 },
2373 {
2374 .ifnum = -1
2375 }
2376 }
2377 }
2378},
2379
2380/* Emagic devices */
2381{
2382 USB_DEVICE(0x086a, 0x0001),
2383 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2384 .vendor_name = "Emagic",
2385 .product_name = "Unitor8",
2386 .ifnum = 2,
2387 .type = QUIRK_MIDI_EMAGIC,
2388 .data = & (const struct snd_usb_midi_endpoint_info) {
2389 .out_cables = 0x80ff,
2390 .in_cables = 0x80ff
2391 }
2392 }
2393},
2394{
2395 USB_DEVICE(0x086a, 0x0002),
2396 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2397 .vendor_name = "Emagic",
2398 /* .product_name = "AMT8", */
2399 .ifnum = 2,
2400 .type = QUIRK_MIDI_EMAGIC,
2401 .data = & (const struct snd_usb_midi_endpoint_info) {
2402 .out_cables = 0x80ff,
2403 .in_cables = 0x80ff
2404 }
2405 }
2406},
2407{
2408 USB_DEVICE(0x086a, 0x0003),
2409 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2410 .vendor_name = "Emagic",
2411 /* .product_name = "MT4", */
2412 .ifnum = 2,
2413 .type = QUIRK_MIDI_EMAGIC,
2414 .data = & (const struct snd_usb_midi_endpoint_info) {
2415 .out_cables = 0x800f,
2416 .in_cables = 0x8003
2417 }
2418 }
2419},
2420
2421/* KORG devices */
2422{
2423 USB_DEVICE_VENDOR_SPEC(0x0944, 0x0200),
2424 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2425 .vendor_name = "KORG, Inc.",
2426 /* .product_name = "PANDORA PX5D", */
2427 .ifnum = 3,
2428 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2429 }
2430},
2431
2432{
2433 USB_DEVICE_VENDOR_SPEC(0x0944, 0x0201),
2434 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2435 .vendor_name = "KORG, Inc.",
2436 /* .product_name = "ToneLab ST", */
2437 .ifnum = 3,
2438 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2439 }
2440},
2441
2442{
2443 USB_DEVICE_VENDOR_SPEC(0x0944, 0x0204),
2444 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2445 .vendor_name = "KORG, Inc.",
2446 /* .product_name = "ToneLab EX", */
2447 .ifnum = 3,
2448 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2449 }
2450},
2451
2452/* AKAI devices */
2453{
2454 USB_DEVICE(0x09e8, 0x0062),
2455 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2456 .vendor_name = "AKAI",
2457 .product_name = "MPD16",
2458 .ifnum = 0,
2459 .type = QUIRK_MIDI_AKAI,
2460 }
2461},
2462
2463{
2464 /* Akai MPC Element */
2465 USB_DEVICE(0x09e8, 0x0021),
2466 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2467 .ifnum = QUIRK_ANY_INTERFACE,
2468 .type = QUIRK_COMPOSITE,
2469 .data = & (const struct snd_usb_audio_quirk[]) {
2470 {
2471 .ifnum = 0,
2472 .type = QUIRK_IGNORE_INTERFACE
2473 },
2474 {
2475 .ifnum = 1,
2476 .type = QUIRK_MIDI_STANDARD_INTERFACE
2477 },
2478 {
2479 .ifnum = -1
2480 }
2481 }
2482 }
2483},
2484
2485/* Steinberg devices */
2486{
2487 /* Steinberg MI2 */
2488 USB_DEVICE_VENDOR_SPEC(0x0a4e, 0x2040),
2489 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2490 .ifnum = QUIRK_ANY_INTERFACE,
2491 .type = QUIRK_COMPOSITE,
2492 .data = & (const struct snd_usb_audio_quirk[]) {
2493 {
2494 .ifnum = 0,
2495 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2496 },
2497 {
2498 .ifnum = 1,
2499 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2500 },
2501 {
2502 .ifnum = 2,
2503 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2504 },
2505 {
2506 .ifnum = 3,
2507 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2508 .data = &(const struct snd_usb_midi_endpoint_info) {
2509 .out_cables = 0x0001,
2510 .in_cables = 0x0001
2511 }
2512 },
2513 {
2514 .ifnum = -1
2515 }
2516 }
2517 }
2518},
2519{
2520 /* Steinberg MI4 */
2521 USB_DEVICE_VENDOR_SPEC(0x0a4e, 0x4040),
2522 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2523 .ifnum = QUIRK_ANY_INTERFACE,
2524 .type = QUIRK_COMPOSITE,
2525 .data = & (const struct snd_usb_audio_quirk[]) {
2526 {
2527 .ifnum = 0,
2528 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2529 },
2530 {
2531 .ifnum = 1,
2532 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2533 },
2534 {
2535 .ifnum = 2,
2536 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2537 },
2538 {
2539 .ifnum = 3,
2540 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2541 .data = &(const struct snd_usb_midi_endpoint_info) {
2542 .out_cables = 0x0001,
2543 .in_cables = 0x0001
2544 }
2545 },
2546 {
2547 .ifnum = -1
2548 }
2549 }
2550 }
2551},
2552
2553/* TerraTec devices */
2554{
2555 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0012),
2556 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2557 .vendor_name = "TerraTec",
2558 .product_name = "PHASE 26",
2559 .ifnum = 3,
2560 .type = QUIRK_MIDI_STANDARD_INTERFACE
2561 }
2562},
2563{
2564 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0013),
2565 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2566 .vendor_name = "TerraTec",
2567 .product_name = "PHASE 26",
2568 .ifnum = 3,
2569 .type = QUIRK_MIDI_STANDARD_INTERFACE
2570 }
2571},
2572{
2573 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0014),
2574 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2575 .vendor_name = "TerraTec",
2576 .product_name = "PHASE 26",
2577 .ifnum = 3,
2578 .type = QUIRK_MIDI_STANDARD_INTERFACE
2579 }
2580},
2581{
2582 USB_DEVICE(0x0ccd, 0x0035),
2583 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2584 .vendor_name = "Miditech",
2585 .product_name = "Play'n Roll",
2586 .ifnum = 0,
2587 .type = QUIRK_MIDI_CME
2588 }
2589},
2590
2591/* Novation EMS devices */
2592{
2593 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0001),
2594 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2595 .vendor_name = "Novation",
2596 .product_name = "ReMOTE Audio/XStation",
2597 .ifnum = 4,
2598 .type = QUIRK_MIDI_NOVATION
2599 }
2600},
2601{
2602 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0002),
2603 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2604 .vendor_name = "Novation",
2605 .product_name = "Speedio",
2606 .ifnum = 3,
2607 .type = QUIRK_MIDI_NOVATION
2608 }
2609},
2610{
2611 USB_DEVICE(0x1235, 0x000a),
2612 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2613 /* .vendor_name = "Novation", */
2614 /* .product_name = "Nocturn", */
2615 .ifnum = 0,
2616 .type = QUIRK_MIDI_RAW_BYTES
2617 }
2618},
2619{
2620 USB_DEVICE(0x1235, 0x000e),
2621 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2622 /* .vendor_name = "Novation", */
2623 /* .product_name = "Launchpad", */
2624 .ifnum = 0,
2625 .type = QUIRK_MIDI_RAW_BYTES
2626 }
2627},
2628{
2629 USB_DEVICE(0x1235, 0x0010),
2630 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2631 .vendor_name = "Focusrite",
2632 .product_name = "Saffire 6 USB",
2633 .ifnum = QUIRK_ANY_INTERFACE,
2634 .type = QUIRK_COMPOSITE,
2635 .data = (const struct snd_usb_audio_quirk[]) {
2636 {
2637 .ifnum = 0,
2638 .type = QUIRK_AUDIO_STANDARD_MIXER,
2639 },
2640 {
2641 .ifnum = 0,
2642 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2643 .data = &(const struct audioformat) {
2644 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2645 .channels = 4,
2646 .iface = 0,
2647 .altsetting = 1,
2648 .altset_idx = 1,
2649 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2650 .endpoint = 0x01,
2651 .ep_attr = USB_ENDPOINT_XFER_ISOC,
2652 .datainterval = 1,
2653 .maxpacksize = 0x024c,
2654 .rates = SNDRV_PCM_RATE_44100 |
2655 SNDRV_PCM_RATE_48000,
2656 .rate_min = 44100,
2657 .rate_max = 48000,
2658 .nr_rates = 2,
2659 .rate_table = (unsigned int[]) {
2660 44100, 48000
2661 }
2662 }
2663 },
2664 {
2665 .ifnum = 0,
2666 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2667 .data = &(const struct audioformat) {
2668 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2669 .channels = 2,
2670 .iface = 0,
2671 .altsetting = 1,
2672 .altset_idx = 1,
2673 .attributes = 0,
2674 .endpoint = 0x82,
2675 .ep_attr = USB_ENDPOINT_XFER_ISOC,
2676 .datainterval = 1,
2677 .maxpacksize = 0x0126,
2678 .rates = SNDRV_PCM_RATE_44100 |
2679 SNDRV_PCM_RATE_48000,
2680 .rate_min = 44100,
2681 .rate_max = 48000,
2682 .nr_rates = 2,
2683 .rate_table = (unsigned int[]) {
2684 44100, 48000
2685 }
2686 }
2687 },
2688 {
2689 .ifnum = 1,
2690 .type = QUIRK_MIDI_RAW_BYTES
2691 },
2692 {
2693 .ifnum = -1
2694 }
2695 }
2696 }
2697},
2698{
2699 USB_DEVICE(0x1235, 0x0018),
2700 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2701 .vendor_name = "Novation",
2702 .product_name = "Twitch",
2703 .ifnum = QUIRK_ANY_INTERFACE,
2704 .type = QUIRK_COMPOSITE,
2705 .data = (const struct snd_usb_audio_quirk[]) {
2706 {
2707 .ifnum = 0,
2708 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2709 .data = & (const struct audioformat) {
2710 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2711 .channels = 4,
2712 .iface = 0,
2713 .altsetting = 1,
2714 .altset_idx = 1,
2715 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2716 .endpoint = 0x01,
2717 .ep_attr = USB_ENDPOINT_XFER_ISOC,
2718 .rates = SNDRV_PCM_RATE_44100 |
2719 SNDRV_PCM_RATE_48000,
2720 .rate_min = 44100,
2721 .rate_max = 48000,
2722 .nr_rates = 2,
2723 .rate_table = (unsigned int[]) {
2724 44100, 48000
2725 }
2726 }
2727 },
2728 {
2729 .ifnum = 1,
2730 .type = QUIRK_MIDI_RAW_BYTES
2731 },
2732 {
2733 .ifnum = -1
2734 }
2735 }
2736 }
2737},
2738{
2739 USB_DEVICE_VENDOR_SPEC(0x1235, 0x4661),
2740 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2741 .vendor_name = "Novation",
2742 .product_name = "ReMOTE25",
2743 .ifnum = 0,
2744 .type = QUIRK_MIDI_NOVATION
2745 }
2746},
2747
2748/* Access Music devices */
2749{
2750 /* VirusTI Desktop */
2751 USB_DEVICE_VENDOR_SPEC(0x133e, 0x0815),
2752 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2753 .ifnum = QUIRK_ANY_INTERFACE,
2754 .type = QUIRK_COMPOSITE,
2755 .data = &(const struct snd_usb_audio_quirk[]) {
2756 {
2757 .ifnum = 3,
2758 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2759 .data = &(const struct snd_usb_midi_endpoint_info) {
2760 .out_cables = 0x0003,
2761 .in_cables = 0x0003
2762 }
2763 },
2764 {
2765 .ifnum = 4,
2766 .type = QUIRK_IGNORE_INTERFACE
2767 },
2768 {
2769 .ifnum = -1
2770 }
2771 }
2772 }
2773},
2774
2775/* Lenovo ThinkStation P620 Rear Line-in, Line-out and Microphone */
2776{
2777 USB_DEVICE(0x17aa, 0x1046),
2778 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2779 .ifnum = QUIRK_ANY_INTERFACE,
2780 .type = QUIRK_SETUP_DISABLE_AUTOSUSPEND
2781 }
2782},
2783/* Lenovo ThinkStation P620 Internal Speaker + Front Headset */
2784{
2785 USB_DEVICE(0x17aa, 0x104d),
2786 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2787 .ifnum = QUIRK_ANY_INTERFACE,
2788 .type = QUIRK_SETUP_DISABLE_AUTOSUSPEND
2789 }
2790},
2791
2792/* Native Instruments MK2 series */
2793{
2794 /* Komplete Audio 6 */
2795 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2796 .idVendor = 0x17cc,
2797 .idProduct = 0x1000,
2798},
2799{
2800 /* Traktor Audio 6 */
2801 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2802 .idVendor = 0x17cc,
2803 .idProduct = 0x1010,
2804},
2805{
2806 /* Traktor Audio 10 */
2807 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2808 .idVendor = 0x17cc,
2809 .idProduct = 0x1020,
2810},
2811
2812/* QinHeng devices */
2813{
2814 USB_DEVICE(0x1a86, 0x752d),
2815 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2816 .vendor_name = "QinHeng",
2817 .product_name = "CH345",
2818 .ifnum = 1,
2819 .type = QUIRK_MIDI_CH345
2820 }
2821},
2822
2823/* KeithMcMillen Stringport */
2824{ USB_DEVICE(0x1f38, 0x0001) }, /* FIXME: should be more restrictive matching */
2825
2826/* Miditech devices */
2827{
2828 USB_DEVICE(0x4752, 0x0011),
2829 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2830 .vendor_name = "Miditech",
2831 .product_name = "Midistart-2",
2832 .ifnum = 0,
2833 .type = QUIRK_MIDI_CME
2834 }
2835},
2836
2837/* Central Music devices */
2838{
2839 /* this ID used by both Miditech MidiStudio-2 and CME UF-x */
2840 USB_DEVICE(0x7104, 0x2202),
2841 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2842 .ifnum = 0,
2843 .type = QUIRK_MIDI_CME
2844 }
2845},
2846
2847/*
2848 * Auvitek au0828 devices with audio interface.
2849 * This should be kept in sync with drivers/media/usb/au0828/au0828-cards.c
2850 * Please notice that some drivers are DVB only, and don't need to be
2851 * here. That's the case, for example, of DVICO_FUSIONHDTV7.
2852 */
2853
2854#define AU0828_DEVICE(vid, pid, vname, pname) { \
2855 USB_AUDIO_DEVICE(vid, pid), \
2856 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) { \
2857 .vendor_name = vname, \
2858 .product_name = pname, \
2859 .ifnum = QUIRK_ANY_INTERFACE, \
2860 .type = QUIRK_AUDIO_ALIGN_TRANSFER, \
2861 .shares_media_device = 1, \
2862 } \
2863}
2864
2865AU0828_DEVICE(0x2040, 0x7200, "Hauppauge", "HVR-950Q"),
2866AU0828_DEVICE(0x2040, 0x7240, "Hauppauge", "HVR-850"),
2867AU0828_DEVICE(0x2040, 0x7210, "Hauppauge", "HVR-950Q"),
2868AU0828_DEVICE(0x2040, 0x7217, "Hauppauge", "HVR-950Q"),
2869AU0828_DEVICE(0x2040, 0x721b, "Hauppauge", "HVR-950Q"),
2870AU0828_DEVICE(0x2040, 0x721e, "Hauppauge", "HVR-950Q"),
2871AU0828_DEVICE(0x2040, 0x721f, "Hauppauge", "HVR-950Q"),
2872AU0828_DEVICE(0x2040, 0x7280, "Hauppauge", "HVR-950Q"),
2873AU0828_DEVICE(0x0fd9, 0x0008, "Hauppauge", "HVR-950Q"),
2874AU0828_DEVICE(0x2040, 0x7201, "Hauppauge", "HVR-950Q-MXL"),
2875AU0828_DEVICE(0x2040, 0x7211, "Hauppauge", "HVR-950Q-MXL"),
2876AU0828_DEVICE(0x2040, 0x7281, "Hauppauge", "HVR-950Q-MXL"),
2877AU0828_DEVICE(0x05e1, 0x0480, "Hauppauge", "Woodbury"),
2878AU0828_DEVICE(0x2040, 0x8200, "Hauppauge", "Woodbury"),
2879AU0828_DEVICE(0x2040, 0x7260, "Hauppauge", "HVR-950Q"),
2880AU0828_DEVICE(0x2040, 0x7213, "Hauppauge", "HVR-950Q"),
2881AU0828_DEVICE(0x2040, 0x7270, "Hauppauge", "HVR-950Q"),
2882
2883/* Syntek STK1160 */
2884{
2885 USB_AUDIO_DEVICE(0x05e1, 0x0408),
2886 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2887 .vendor_name = "Syntek",
2888 .product_name = "STK1160",
2889 .ifnum = QUIRK_ANY_INTERFACE,
2890 .type = QUIRK_AUDIO_ALIGN_TRANSFER
2891 }
2892},
2893
2894/* Digidesign Mbox */
2895{
2896 /* Thanks to Clemens Ladisch <clemens@ladisch.de> */
2897 USB_DEVICE(0x0dba, 0x1000),
2898 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2899 .vendor_name = "Digidesign",
2900 .product_name = "MBox",
2901 .ifnum = QUIRK_ANY_INTERFACE,
2902 .type = QUIRK_COMPOSITE,
2903 .data = (const struct snd_usb_audio_quirk[]){
2904 {
2905 .ifnum = 0,
2906 .type = QUIRK_AUDIO_STANDARD_MIXER,
2907 },
2908 {
2909 .ifnum = 1,
2910 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2911 .data = &(const struct audioformat) {
2912 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2913 .channels = 2,
2914 .iface = 1,
2915 .altsetting = 1,
2916 .altset_idx = 1,
2917 .attributes = 0x4,
2918 .endpoint = 0x02,
2919 .ep_attr = USB_ENDPOINT_XFER_ISOC |
2920 USB_ENDPOINT_SYNC_SYNC,
2921 .maxpacksize = 0x130,
2922 .rates = SNDRV_PCM_RATE_48000,
2923 .rate_min = 48000,
2924 .rate_max = 48000,
2925 .nr_rates = 1,
2926 .rate_table = (unsigned int[]) {
2927 48000
2928 }
2929 }
2930 },
2931 {
2932 .ifnum = 1,
2933 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2934 .data = &(const struct audioformat) {
2935 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2936 .channels = 2,
2937 .iface = 1,
2938 .altsetting = 1,
2939 .altset_idx = 1,
2940 .attributes = 0x4,
2941 .endpoint = 0x81,
2942 .ep_attr = USB_ENDPOINT_XFER_ISOC |
2943 USB_ENDPOINT_SYNC_ASYNC,
2944 .maxpacksize = 0x130,
2945 .rates = SNDRV_PCM_RATE_48000,
2946 .rate_min = 48000,
2947 .rate_max = 48000,
2948 .nr_rates = 1,
2949 .rate_table = (unsigned int[]) {
2950 48000
2951 }
2952 }
2953 },
2954 {
2955 .ifnum = -1
2956 }
2957 }
2958 }
2959},
2960
2961/* DIGIDESIGN MBOX 2 */
2962{
2963 USB_DEVICE(0x0dba, 0x3000),
2964 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2965 .vendor_name = "Digidesign",
2966 .product_name = "Mbox 2",
2967 .ifnum = QUIRK_ANY_INTERFACE,
2968 .type = QUIRK_COMPOSITE,
2969 .data = (const struct snd_usb_audio_quirk[]) {
2970 {
2971 .ifnum = 0,
2972 .type = QUIRK_IGNORE_INTERFACE
2973 },
2974 {
2975 .ifnum = 1,
2976 .type = QUIRK_IGNORE_INTERFACE
2977 },
2978 {
2979 .ifnum = 2,
2980 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2981 .data = &(const struct audioformat) {
2982 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2983 .channels = 2,
2984 .iface = 2,
2985 .altsetting = 2,
2986 .altset_idx = 1,
2987 .attributes = 0x00,
2988 .endpoint = 0x03,
2989 .ep_attr = USB_ENDPOINT_SYNC_ASYNC,
2990 .rates = SNDRV_PCM_RATE_48000,
2991 .rate_min = 48000,
2992 .rate_max = 48000,
2993 .nr_rates = 1,
2994 .rate_table = (unsigned int[]) {
2995 48000
2996 }
2997 }
2998 },
2999 {
3000 .ifnum = 3,
3001 .type = QUIRK_IGNORE_INTERFACE
3002 },
3003 {
3004 .ifnum = 4,
3005 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3006 .data = &(const struct audioformat) {
3007 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
3008 .channels = 2,
3009 .iface = 4,
3010 .altsetting = 2,
3011 .altset_idx = 1,
3012 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3013 .endpoint = 0x85,
3014 .ep_attr = USB_ENDPOINT_SYNC_SYNC,
3015 .rates = SNDRV_PCM_RATE_48000,
3016 .rate_min = 48000,
3017 .rate_max = 48000,
3018 .nr_rates = 1,
3019 .rate_table = (unsigned int[]) {
3020 48000
3021 }
3022 }
3023 },
3024 {
3025 .ifnum = 5,
3026 .type = QUIRK_IGNORE_INTERFACE
3027 },
3028 {
3029 .ifnum = 6,
3030 .type = QUIRK_MIDI_MIDIMAN,
3031 .data = &(const struct snd_usb_midi_endpoint_info) {
3032 .out_ep = 0x02,
3033 .out_cables = 0x0001,
3034 .in_ep = 0x81,
3035 .in_interval = 0x01,
3036 .in_cables = 0x0001
3037 }
3038 },
3039 {
3040 .ifnum = -1
3041 }
3042 }
3043 }
3044},
3045{
3046 /* Tascam US122 MKII - playback-only support */
3047 USB_DEVICE_VENDOR_SPEC(0x0644, 0x8021),
3048 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3049 .vendor_name = "TASCAM",
3050 .product_name = "US122 MKII",
3051 .ifnum = QUIRK_ANY_INTERFACE,
3052 .type = QUIRK_COMPOSITE,
3053 .data = (const struct snd_usb_audio_quirk[]) {
3054 {
3055 .ifnum = 0,
3056 .type = QUIRK_IGNORE_INTERFACE
3057 },
3058 {
3059 .ifnum = 1,
3060 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3061 .data = &(const struct audioformat) {
3062 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3063 .channels = 2,
3064 .iface = 1,
3065 .altsetting = 1,
3066 .altset_idx = 1,
3067 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3068 .endpoint = 0x02,
3069 .ep_attr = USB_ENDPOINT_XFER_ISOC,
3070 .rates = SNDRV_PCM_RATE_44100 |
3071 SNDRV_PCM_RATE_48000 |
3072 SNDRV_PCM_RATE_88200 |
3073 SNDRV_PCM_RATE_96000,
3074 .rate_min = 44100,
3075 .rate_max = 96000,
3076 .nr_rates = 4,
3077 .rate_table = (unsigned int[]) {
3078 44100, 48000, 88200, 96000
3079 }
3080 }
3081 },
3082 {
3083 .ifnum = -1
3084 }
3085 }
3086 }
3087},
3088
3089/* Denon DN-X1600 */
3090{
3091 USB_AUDIO_DEVICE(0x154e, 0x500e),
3092 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3093 .vendor_name = "Denon",
3094 .product_name = "DN-X1600",
3095 .ifnum = QUIRK_ANY_INTERFACE,
3096 .type = QUIRK_COMPOSITE,
3097 .data = (const struct snd_usb_audio_quirk[]){
3098 {
3099 .ifnum = 0,
3100 .type = QUIRK_IGNORE_INTERFACE,
3101 },
3102 {
3103 .ifnum = 1,
3104 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3105 .data = &(const struct audioformat) {
3106 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3107 .channels = 8,
3108 .iface = 1,
3109 .altsetting = 1,
3110 .altset_idx = 1,
3111 .attributes = 0x0,
3112 .endpoint = 0x01,
3113 .ep_attr = USB_ENDPOINT_XFER_ISOC |
3114 USB_ENDPOINT_SYNC_ADAPTIVE,
3115 .maxpacksize = 0x138,
3116 .rates = SNDRV_PCM_RATE_48000,
3117 .rate_min = 48000,
3118 .rate_max = 48000,
3119 .nr_rates = 1,
3120 .rate_table = (unsigned int[]) {
3121 48000
3122 }
3123 }
3124 },
3125 {
3126 .ifnum = 2,
3127 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3128 .data = &(const struct audioformat) {
3129 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3130 .channels = 8,
3131 .iface = 2,
3132 .altsetting = 1,
3133 .altset_idx = 1,
3134 .attributes = 0x0,
3135 .endpoint = 0x85,
3136 .ep_attr = USB_ENDPOINT_XFER_ISOC |
3137 USB_ENDPOINT_SYNC_ADAPTIVE,
3138 .maxpacksize = 0x138,
3139 .rates = SNDRV_PCM_RATE_48000,
3140 .rate_min = 48000,
3141 .rate_max = 48000,
3142 .nr_rates = 1,
3143 .rate_table = (unsigned int[]) {
3144 48000
3145 }
3146 }
3147 },
3148 {
3149 .ifnum = 4,
3150 .type = QUIRK_MIDI_STANDARD_INTERFACE,
3151 },
3152 {
3153 .ifnum = -1
3154 }
3155 }
3156 }
3157},
3158
3159/* Microsoft XboxLive Headset/Xbox Communicator */
3160{
3161 USB_DEVICE(0x045e, 0x0283),
3162 .bInterfaceClass = USB_CLASS_PER_INTERFACE,
3163 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3164 .vendor_name = "Microsoft",
3165 .product_name = "XboxLive Headset/Xbox Communicator",
3166 .ifnum = QUIRK_ANY_INTERFACE,
3167 .type = QUIRK_COMPOSITE,
3168 .data = &(const struct snd_usb_audio_quirk[]) {
3169 {
3170 /* playback */
3171 .ifnum = 0,
3172 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3173 .data = &(const struct audioformat) {
3174 .formats = SNDRV_PCM_FMTBIT_S16_LE,
3175 .channels = 1,
3176 .iface = 0,
3177 .altsetting = 0,
3178 .altset_idx = 0,
3179 .attributes = 0,
3180 .endpoint = 0x04,
3181 .ep_attr = 0x05,
3182 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3183 .rate_min = 22050,
3184 .rate_max = 22050
3185 }
3186 },
3187 {
3188 /* capture */
3189 .ifnum = 1,
3190 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3191 .data = &(const struct audioformat) {
3192 .formats = SNDRV_PCM_FMTBIT_S16_LE,
3193 .channels = 1,
3194 .iface = 1,
3195 .altsetting = 0,
3196 .altset_idx = 0,
3197 .attributes = 0,
3198 .endpoint = 0x85,
3199 .ep_attr = 0x05,
3200 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3201 .rate_min = 16000,
3202 .rate_max = 16000
3203 }
3204 },
3205 {
3206 .ifnum = -1
3207 }
3208 }
3209 }
3210},
3211
3212/* Reloop Play */
3213{
3214 USB_DEVICE(0x200c, 0x100b),
3215 .bInterfaceClass = USB_CLASS_PER_INTERFACE,
3216 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3217 .ifnum = QUIRK_ANY_INTERFACE,
3218 .type = QUIRK_COMPOSITE,
3219 .data = &(const struct snd_usb_audio_quirk[]) {
3220 {
3221 .ifnum = 0,
3222 .type = QUIRK_AUDIO_STANDARD_MIXER,
3223 },
3224 {
3225 .ifnum = 1,
3226 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3227 .data = &(const struct audioformat) {
3228 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3229 .channels = 4,
3230 .iface = 1,
3231 .altsetting = 1,
3232 .altset_idx = 1,
3233 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3234 .endpoint = 0x01,
3235 .ep_attr = USB_ENDPOINT_SYNC_ADAPTIVE,
3236 .rates = SNDRV_PCM_RATE_44100 |
3237 SNDRV_PCM_RATE_48000,
3238 .rate_min = 44100,
3239 .rate_max = 48000,
3240 .nr_rates = 2,
3241 .rate_table = (unsigned int[]) {
3242 44100, 48000
3243 }
3244 }
3245 },
3246 {
3247 .ifnum = -1
3248 }
3249 }
3250 }
3251},
3252
3253{
3254 /*
3255 * ZOOM R16/24 in audio interface mode.
3256 * Playback requires an extra four byte LE length indicator
3257 * at the start of each isochronous packet. This quirk is
3258 * enabled in create_standard_audio_quirk().
3259 */
3260 USB_DEVICE(0x1686, 0x00dd),
3261 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
3262 .ifnum = QUIRK_ANY_INTERFACE,
3263 .type = QUIRK_COMPOSITE,
3264 .data = (const struct snd_usb_audio_quirk[]) {
3265 {
3266 /* Playback */
3267 .ifnum = 1,
3268 .type = QUIRK_AUDIO_STANDARD_INTERFACE,
3269 },
3270 {
3271 /* Capture */
3272 .ifnum = 2,
3273 .type = QUIRK_AUDIO_STANDARD_INTERFACE,
3274 },
3275 {
3276 /* Midi */
3277 .ifnum = 3,
3278 .type = QUIRK_MIDI_STANDARD_INTERFACE
3279 },
3280 {
3281 .ifnum = -1
3282 },
3283 }
3284 }
3285},
3286
3287{
3288 /*
3289 * Some USB MIDI devices don't have an audio control interface,
3290 * so we have to grab MIDI streaming interfaces here.
3291 */
3292 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS |
3293 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
3294 .bInterfaceClass = USB_CLASS_AUDIO,
3295 .bInterfaceSubClass = USB_SUBCLASS_MIDISTREAMING,
3296 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
3297 .ifnum = QUIRK_ANY_INTERFACE,
3298 .type = QUIRK_MIDI_STANDARD_INTERFACE
3299 }
3300},
3301
3302/* disabled due to regression for other devices;
3303 * see https://bugzilla.kernel.org/show_bug.cgi?id=199905
3304 */
3305#if 0
3306{
3307 /*
3308 * Nura's first gen headphones use Cambridge Silicon Radio's vendor
3309 * ID, but it looks like the product ID actually is only for Nura.
3310 * The capture interface does not work at all (even on Windows),
3311 * and only the 48 kHz sample rate works for the playback interface.
3312 */
3313 USB_DEVICE(0x0a12, 0x1243),
3314 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3315 .ifnum = QUIRK_ANY_INTERFACE,
3316 .type = QUIRK_COMPOSITE,
3317 .data = (const struct snd_usb_audio_quirk[]) {
3318 {
3319 .ifnum = 0,
3320 .type = QUIRK_AUDIO_STANDARD_MIXER,
3321 },
3322 /* Capture */
3323 {
3324 .ifnum = 1,
3325 .type = QUIRK_IGNORE_INTERFACE,
3326 },
3327 /* Playback */
3328 {
3329 .ifnum = 2,
3330 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3331 .data = &(const struct audioformat) {
3332 .formats = SNDRV_PCM_FMTBIT_S16_LE,
3333 .channels = 2,
3334 .iface = 2,
3335 .altsetting = 1,
3336 .altset_idx = 1,
3337 .attributes = UAC_EP_CS_ATTR_FILL_MAX |
3338 UAC_EP_CS_ATTR_SAMPLE_RATE,
3339 .endpoint = 0x03,
3340 .ep_attr = USB_ENDPOINT_XFER_ISOC,
3341 .rates = SNDRV_PCM_RATE_48000,
3342 .rate_min = 48000,
3343 .rate_max = 48000,
3344 .nr_rates = 1,
3345 .rate_table = (unsigned int[]) {
3346 48000
3347 }
3348 }
3349 },
3350 {
3351 .ifnum = -1
3352 },
3353 }
3354 }
3355},
3356#endif /* disabled */
3357
3358{
3359 /*
3360 * Bower's & Wilkins PX headphones only support the 48 kHz sample rate
3361 * even though it advertises more. The capture interface doesn't work
3362 * even on windows.
3363 */
3364 USB_DEVICE(0x19b5, 0x0021),
3365 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3366 .ifnum = QUIRK_ANY_INTERFACE,
3367 .type = QUIRK_COMPOSITE,
3368 .data = (const struct snd_usb_audio_quirk[]) {
3369 {
3370 .ifnum = 0,
3371 .type = QUIRK_AUDIO_STANDARD_MIXER,
3372 },
3373 /* Playback */
3374 {
3375 .ifnum = 1,
3376 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3377 .data = &(const struct audioformat) {
3378 .formats = SNDRV_PCM_FMTBIT_S16_LE,
3379 .channels = 2,
3380 .iface = 1,
3381 .altsetting = 1,
3382 .altset_idx = 1,
3383 .attributes = UAC_EP_CS_ATTR_FILL_MAX |
3384 UAC_EP_CS_ATTR_SAMPLE_RATE,
3385 .endpoint = 0x03,
3386 .ep_attr = USB_ENDPOINT_XFER_ISOC,
3387 .rates = SNDRV_PCM_RATE_48000,
3388 .rate_min = 48000,
3389 .rate_max = 48000,
3390 .nr_rates = 1,
3391 .rate_table = (unsigned int[]) {
3392 48000
3393 }
3394 }
3395 },
3396 {
3397 .ifnum = -1
3398 },
3399 }
3400 }
3401},
3402/* MOTU Microbook II */
3403{
3404 USB_DEVICE_VENDOR_SPEC(0x07fd, 0x0004),
3405 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3406 .vendor_name = "MOTU",
3407 .product_name = "MicroBookII",
3408 .ifnum = QUIRK_ANY_INTERFACE,
3409 .type = QUIRK_COMPOSITE,
3410 .data = (const struct snd_usb_audio_quirk[]) {
3411 {
3412 .ifnum = 0,
3413 .type = QUIRK_AUDIO_STANDARD_MIXER,
3414 },
3415 {
3416 .ifnum = 0,
3417 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3418 .data = &(const struct audioformat) {
3419 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
3420 .channels = 6,
3421 .iface = 0,
3422 .altsetting = 1,
3423 .altset_idx = 1,
3424 .attributes = 0,
3425 .endpoint = 0x84,
3426 .rates = SNDRV_PCM_RATE_96000,
3427 .ep_attr = USB_ENDPOINT_XFER_ISOC |
3428 USB_ENDPOINT_SYNC_ASYNC,
3429 .rate_min = 96000,
3430 .rate_max = 96000,
3431 .nr_rates = 1,
3432 .maxpacksize = 0x00d8,
3433 .rate_table = (unsigned int[]) {
3434 96000
3435 }
3436 }
3437 },
3438 {
3439 .ifnum = 0,
3440 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3441 .data = &(const struct audioformat) {
3442 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
3443 .channels = 8,
3444 .iface = 0,
3445 .altsetting = 1,
3446 .altset_idx = 1,
3447 .attributes = 0,
3448 .endpoint = 0x03,
3449 .rates = SNDRV_PCM_RATE_96000,
3450 .ep_attr = USB_ENDPOINT_XFER_ISOC |
3451 USB_ENDPOINT_SYNC_ASYNC,
3452 .rate_min = 96000,
3453 .rate_max = 96000,
3454 .nr_rates = 1,
3455 .maxpacksize = 0x0120,
3456 .rate_table = (unsigned int[]) {
3457 96000
3458 }
3459 }
3460 },
3461 {
3462 .ifnum = -1
3463 }
3464 }
3465 }
3466},
3467{
3468 /*
3469 * PIONEER DJ DDJ-SX3
3470 * PCM is 12 channels out, 10 channels in @ 44.1 fixed
3471 * interface 0, vendor class alt setting 1 for endpoints 5 and 0x86
3472 * The feedback for the output is the input.
3473 */
3474 USB_DEVICE_VENDOR_SPEC(0x2b73, 0x0023),
3475 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3476 .ifnum = QUIRK_ANY_INTERFACE,
3477 .type = QUIRK_COMPOSITE,
3478 .data = (const struct snd_usb_audio_quirk[]) {
3479 {
3480 .ifnum = 0,
3481 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3482 .data = &(const struct audioformat) {
3483 .formats = SNDRV_PCM_FMTBIT_S32_LE,
3484 .channels = 12,
3485 .iface = 0,
3486 .altsetting = 1,
3487 .altset_idx = 1,
3488 .endpoint = 0x05,
3489 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3490 USB_ENDPOINT_SYNC_ASYNC,
3491 .rates = SNDRV_PCM_RATE_44100,
3492 .rate_min = 44100,
3493 .rate_max = 44100,
3494 .nr_rates = 1,
3495 .rate_table = (unsigned int[]) { 44100 }
3496 }
3497 },
3498 {
3499 .ifnum = 0,
3500 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3501 .data = &(const struct audioformat) {
3502 .formats = SNDRV_PCM_FMTBIT_S32_LE,
3503 .channels = 10,
3504 .iface = 0,
3505 .altsetting = 1,
3506 .altset_idx = 1,
3507 .endpoint = 0x86,
3508 .ep_idx = 1,
3509 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3510 USB_ENDPOINT_SYNC_ASYNC|
3511 USB_ENDPOINT_USAGE_IMPLICIT_FB,
3512 .rates = SNDRV_PCM_RATE_44100,
3513 .rate_min = 44100,
3514 .rate_max = 44100,
3515 .nr_rates = 1,
3516 .rate_table = (unsigned int[]) { 44100 }
3517 }
3518 },
3519 {
3520 .ifnum = -1
3521 }
3522 }
3523 }
3524},
3525{
3526 /*
3527 * Pioneer DJ DJM-250MK2
3528 * PCM is 8 channels out @ 48 fixed (endpoint 0x01)
3529 * and 8 channels in @ 48 fixed (endpoint 0x82).
3530 *
3531 * Both playback and recording is working, even simultaneously.
3532 *
3533 * Playback channels could be mapped to:
3534 * - CH1
3535 * - CH2
3536 * - AUX
3537 *
3538 * Recording channels could be mapped to:
3539 * - Post CH1 Fader
3540 * - Post CH2 Fader
3541 * - Cross Fader A
3542 * - Cross Fader B
3543 * - MIC
3544 * - AUX
3545 * - REC OUT
3546 *
3547 * There is remaining problem with recording directly from PHONO/LINE.
3548 * If we map a channel to:
3549 * - CH1 Control Tone PHONO
3550 * - CH1 Control Tone LINE
3551 * - CH2 Control Tone PHONO
3552 * - CH2 Control Tone LINE
3553 * it is silent.
3554 * There is no signal even on other operating systems with official drivers.
3555 * The signal appears only when a supported application is started.
3556 * This needs to be investigated yet...
3557 * (there is quite a lot communication on the USB in both directions)
3558 *
3559 * In current version this mixer could be used for playback
3560 * and for recording from vinyls (through Post CH* Fader)
3561 * but not for DVS (Digital Vinyl Systems) like in Mixxx.
3562 */
3563 USB_DEVICE_VENDOR_SPEC(0x2b73, 0x0017),
3564 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3565 .ifnum = QUIRK_ANY_INTERFACE,
3566 .type = QUIRK_COMPOSITE,
3567 .data = (const struct snd_usb_audio_quirk[]) {
3568 {
3569 .ifnum = 0,
3570 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3571 .data = &(const struct audioformat) {
3572 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3573 .channels = 8, // outputs
3574 .iface = 0,
3575 .altsetting = 1,
3576 .altset_idx = 1,
3577 .endpoint = 0x01,
3578 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3579 USB_ENDPOINT_SYNC_ASYNC,
3580 .rates = SNDRV_PCM_RATE_48000,
3581 .rate_min = 48000,
3582 .rate_max = 48000,
3583 .nr_rates = 1,
3584 .rate_table = (unsigned int[]) { 48000 }
3585 }
3586 },
3587 {
3588 .ifnum = 0,
3589 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3590 .data = &(const struct audioformat) {
3591 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3592 .channels = 8, // inputs
3593 .iface = 0,
3594 .altsetting = 1,
3595 .altset_idx = 1,
3596 .endpoint = 0x82,
3597 .ep_idx = 1,
3598 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3599 USB_ENDPOINT_SYNC_ASYNC|
3600 USB_ENDPOINT_USAGE_IMPLICIT_FB,
3601 .rates = SNDRV_PCM_RATE_48000,
3602 .rate_min = 48000,
3603 .rate_max = 48000,
3604 .nr_rates = 1,
3605 .rate_table = (unsigned int[]) { 48000 }
3606 }
3607 },
3608 {
3609 .ifnum = -1
3610 }
3611 }
3612 }
3613},
3614{
3615 /*
3616 * PIONEER DJ DDJ-RB
3617 * PCM is 4 channels out, 2 dummy channels in @ 44.1 fixed
3618 * The feedback for the output is the dummy input.
3619 */
3620 USB_DEVICE_VENDOR_SPEC(0x2b73, 0x000e),
3621 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3622 .ifnum = QUIRK_ANY_INTERFACE,
3623 .type = QUIRK_COMPOSITE,
3624 .data = (const struct snd_usb_audio_quirk[]) {
3625 {
3626 .ifnum = 0,
3627 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3628 .data = &(const struct audioformat) {
3629 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3630 .channels = 4,
3631 .iface = 0,
3632 .altsetting = 1,
3633 .altset_idx = 1,
3634 .endpoint = 0x01,
3635 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3636 USB_ENDPOINT_SYNC_ASYNC,
3637 .rates = SNDRV_PCM_RATE_44100,
3638 .rate_min = 44100,
3639 .rate_max = 44100,
3640 .nr_rates = 1,
3641 .rate_table = (unsigned int[]) { 44100 }
3642 }
3643 },
3644 {
3645 .ifnum = 0,
3646 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3647 .data = &(const struct audioformat) {
3648 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3649 .channels = 2,
3650 .iface = 0,
3651 .altsetting = 1,
3652 .altset_idx = 1,
3653 .endpoint = 0x82,
3654 .ep_idx = 1,
3655 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3656 USB_ENDPOINT_SYNC_ASYNC|
3657 USB_ENDPOINT_USAGE_IMPLICIT_FB,
3658 .rates = SNDRV_PCM_RATE_44100,
3659 .rate_min = 44100,
3660 .rate_max = 44100,
3661 .nr_rates = 1,
3662 .rate_table = (unsigned int[]) { 44100 }
3663 }
3664 },
3665 {
3666 .ifnum = -1
3667 }
3668 }
3669 }
3670},
3671
3672{
3673 /*
3674 * PIONEER DJ DDJ-RR
3675 * PCM is 6 channels out & 4 channels in @ 44.1 fixed
3676 */
3677 USB_DEVICE_VENDOR_SPEC(0x2b73, 0x000d),
3678 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3679 .ifnum = QUIRK_ANY_INTERFACE,
3680 .type = QUIRK_COMPOSITE,
3681 .data = (const struct snd_usb_audio_quirk[]) {
3682 {
3683 .ifnum = 0,
3684 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3685 .data = &(const struct audioformat) {
3686 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3687 .channels = 6, //Master, Headphones & Booth
3688 .iface = 0,
3689 .altsetting = 1,
3690 .altset_idx = 1,
3691 .endpoint = 0x01,
3692 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3693 USB_ENDPOINT_SYNC_ASYNC,
3694 .rates = SNDRV_PCM_RATE_44100,
3695 .rate_min = 44100,
3696 .rate_max = 44100,
3697 .nr_rates = 1,
3698 .rate_table = (unsigned int[]) { 44100 }
3699 }
3700 },
3701 {
3702 .ifnum = 0,
3703 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3704 .data = &(const struct audioformat) {
3705 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3706 .channels = 4, //2x RCA inputs (CH1 & CH2)
3707 .iface = 0,
3708 .altsetting = 1,
3709 .altset_idx = 1,
3710 .endpoint = 0x82,
3711 .ep_idx = 1,
3712 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3713 USB_ENDPOINT_SYNC_ASYNC|
3714 USB_ENDPOINT_USAGE_IMPLICIT_FB,
3715 .rates = SNDRV_PCM_RATE_44100,
3716 .rate_min = 44100,
3717 .rate_max = 44100,
3718 .nr_rates = 1,
3719 .rate_table = (unsigned int[]) { 44100 }
3720 }
3721 },
3722 {
3723 .ifnum = -1
3724 }
3725 }
3726 }
3727},
3728
3729{
3730 /*
3731 * PIONEER DJ DDJ-SR2
3732 * PCM is 4 channels out, 6 channels in @ 44.1 fixed
3733 * The Feedback for the output is the input
3734 */
3735 USB_DEVICE_VENDOR_SPEC(0x2b73, 0x001e),
3736 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3737 .ifnum = QUIRK_ANY_INTERFACE,
3738 .type = QUIRK_COMPOSITE,
3739 .data = (const struct snd_usb_audio_quirk[]) {
3740 {
3741 .ifnum = 0,
3742 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3743 .data = &(const struct audioformat) {
3744 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3745 .channels = 4,
3746 .iface = 0,
3747 .altsetting = 1,
3748 .altset_idx = 1,
3749 .endpoint = 0x01,
3750 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3751 USB_ENDPOINT_SYNC_ASYNC,
3752 .rates = SNDRV_PCM_RATE_44100,
3753 .rate_min = 44100,
3754 .rate_max = 44100,
3755 .nr_rates = 1,
3756 .rate_table = (unsigned int[]) { 44100 }
3757 }
3758 },
3759 {
3760 .ifnum = 0,
3761 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3762 .data = &(const struct audioformat) {
3763 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3764 .channels = 6,
3765 .iface = 0,
3766 .altsetting = 1,
3767 .altset_idx = 1,
3768 .endpoint = 0x82,
3769 .ep_idx = 1,
3770 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3771 USB_ENDPOINT_SYNC_ASYNC|
3772 USB_ENDPOINT_USAGE_IMPLICIT_FB,
3773 .rates = SNDRV_PCM_RATE_44100,
3774 .rate_min = 44100,
3775 .rate_max = 44100,
3776 .nr_rates = 1,
3777 .rate_table = (unsigned int[]) { 44100 }
3778 }
3779 },
3780 {
3781 .ifnum = -1
3782 }
3783 }
3784 }
3785},
3786
3787{
3788 /*
3789 * Pioneer DJ DJM-900NXS2
3790 * 10 channels playback & 12 channels capture @ 44.1/48/96kHz S24LE
3791 */
3792 USB_DEVICE_VENDOR_SPEC(0x2b73, 0x000a),
3793 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3794 .ifnum = QUIRK_ANY_INTERFACE,
3795 .type = QUIRK_COMPOSITE,
3796 .data = (const struct snd_usb_audio_quirk[]) {
3797 {
3798 .ifnum = 0,
3799 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3800 .data = &(const struct audioformat) {
3801 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3802 .channels = 10,
3803 .iface = 0,
3804 .altsetting = 1,
3805 .altset_idx = 1,
3806 .endpoint = 0x01,
3807 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3808 USB_ENDPOINT_SYNC_ASYNC,
3809 .rates = SNDRV_PCM_RATE_44100|
3810 SNDRV_PCM_RATE_48000|
3811 SNDRV_PCM_RATE_96000,
3812 .rate_min = 44100,
3813 .rate_max = 96000,
3814 .nr_rates = 3,
3815 .rate_table = (unsigned int[]) {
3816 44100, 48000, 96000
3817 }
3818 }
3819 },
3820 {
3821 .ifnum = 0,
3822 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3823 .data = &(const struct audioformat) {
3824 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3825 .channels = 12,
3826 .iface = 0,
3827 .altsetting = 1,
3828 .altset_idx = 1,
3829 .endpoint = 0x82,
3830 .ep_idx = 1,
3831 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3832 USB_ENDPOINT_SYNC_ASYNC|
3833 USB_ENDPOINT_USAGE_IMPLICIT_FB,
3834 .rates = SNDRV_PCM_RATE_44100|
3835 SNDRV_PCM_RATE_48000|
3836 SNDRV_PCM_RATE_96000,
3837 .rate_min = 44100,
3838 .rate_max = 96000,
3839 .nr_rates = 3,
3840 .rate_table = (unsigned int[]) {
3841 44100, 48000, 96000
3842 }
3843 }
3844 },
3845 {
3846 .ifnum = -1
3847 }
3848 }
3849 }
3850},
3851
3852/*
3853 * MacroSilicon MS2109 based HDMI capture cards
3854 *
3855 * These claim 96kHz 1ch in the descriptors, but are actually 48kHz 2ch.
3856 * They also need QUIRK_AUDIO_ALIGN_TRANSFER, which makes one wonder if
3857 * they pretend to be 96kHz mono as a workaround for stereo being broken
3858 * by that...
3859 *
3860 * They also have an issue with initial stream alignment that causes the
3861 * channels to be swapped and out of phase, which is dealt with in quirks.c.
3862 */
3863{
3864 USB_AUDIO_DEVICE(0x534d, 0x2109),
3865 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3866 .vendor_name = "MacroSilicon",
3867 .product_name = "MS2109",
3868 .ifnum = QUIRK_ANY_INTERFACE,
3869 .type = QUIRK_COMPOSITE,
3870 .data = &(const struct snd_usb_audio_quirk[]) {
3871 {
3872 .ifnum = 2,
3873 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
3874 },
3875 {
3876 .ifnum = 2,
3877 .type = QUIRK_AUDIO_STANDARD_MIXER,
3878 },
3879 {
3880 .ifnum = 3,
3881 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3882 .data = &(const struct audioformat) {
3883 .formats = SNDRV_PCM_FMTBIT_S16_LE,
3884 .channels = 2,
3885 .iface = 3,
3886 .altsetting = 1,
3887 .altset_idx = 1,
3888 .attributes = 0,
3889 .endpoint = 0x82,
3890 .ep_attr = USB_ENDPOINT_XFER_ISOC |
3891 USB_ENDPOINT_SYNC_ASYNC,
3892 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3893 .rate_min = 48000,
3894 .rate_max = 48000,
3895 }
3896 },
3897 {
3898 .ifnum = -1
3899 }
3900 }
3901 }
3902},
3903{
3904 /*
3905 * Pioneer DJ DJM-750
3906 * 8 channels playback & 8 channels capture @ 44.1/48/96kHz S24LE
3907 */
3908 USB_DEVICE_VENDOR_SPEC(0x08e4, 0x017f),
3909 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3910 .ifnum = QUIRK_ANY_INTERFACE,
3911 .type = QUIRK_COMPOSITE,
3912 .data = (const struct snd_usb_audio_quirk[]) {
3913 {
3914 .ifnum = 0,
3915 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3916 .data = &(const struct audioformat) {
3917 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3918 .channels = 8,
3919 .iface = 0,
3920 .altsetting = 1,
3921 .altset_idx = 1,
3922 .endpoint = 0x05,
3923 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3924 USB_ENDPOINT_SYNC_ASYNC,
3925 .rates = SNDRV_PCM_RATE_44100|
3926 SNDRV_PCM_RATE_48000|
3927 SNDRV_PCM_RATE_96000,
3928 .rate_min = 44100,
3929 .rate_max = 96000,
3930 .nr_rates = 3,
3931 .rate_table = (unsigned int[]) { 44100, 48000, 96000 }
3932 }
3933 },
3934 {
3935 .ifnum = 0,
3936 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3937 .data = &(const struct audioformat) {
3938 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3939 .channels = 8,
3940 .iface = 0,
3941 .altsetting = 1,
3942 .altset_idx = 1,
3943 .endpoint = 0x86,
3944 .ep_idx = 1,
3945 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3946 USB_ENDPOINT_SYNC_ASYNC|
3947 USB_ENDPOINT_USAGE_IMPLICIT_FB,
3948 .rates = SNDRV_PCM_RATE_44100|
3949 SNDRV_PCM_RATE_48000|
3950 SNDRV_PCM_RATE_96000,
3951 .rate_min = 44100,
3952 .rate_max = 96000,
3953 .nr_rates = 3,
3954 .rate_table = (unsigned int[]) { 44100, 48000, 96000 }
3955 }
3956 },
3957 {
3958 .ifnum = -1
3959 }
3960 }
3961 }
3962},
3963{
3964 /*
3965 * Pioneer DJ DJM-850
3966 * 8 channels playback and 8 channels capture @ 44.1/48/96kHz S24LE
3967 * Playback on EP 0x05
3968 * Capture on EP 0x86
3969 */
3970 USB_DEVICE_VENDOR_SPEC(0x08e4, 0x0163),
3971 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3972 .ifnum = QUIRK_ANY_INTERFACE,
3973 .type = QUIRK_COMPOSITE,
3974 .data = (const struct snd_usb_audio_quirk[]) {
3975 {
3976 .ifnum = 0,
3977 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3978 .data = &(const struct audioformat) {
3979 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3980 .channels = 8,
3981 .iface = 0,
3982 .altsetting = 1,
3983 .altset_idx = 1,
3984 .endpoint = 0x05,
3985 .ep_attr = USB_ENDPOINT_XFER_ISOC|
3986 USB_ENDPOINT_SYNC_ASYNC|
3987 USB_ENDPOINT_USAGE_DATA,
3988 .rates = SNDRV_PCM_RATE_44100|
3989 SNDRV_PCM_RATE_48000|
3990 SNDRV_PCM_RATE_96000,
3991 .rate_min = 44100,
3992 .rate_max = 96000,
3993 .nr_rates = 3,
3994 .rate_table = (unsigned int[]) { 44100, 48000, 96000 }
3995 }
3996 },
3997 {
3998 .ifnum = 0,
3999 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4000 .data = &(const struct audioformat) {
4001 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
4002 .channels = 8,
4003 .iface = 0,
4004 .altsetting = 1,
4005 .altset_idx = 1,
4006 .endpoint = 0x86,
4007 .ep_idx = 1,
4008 .ep_attr = USB_ENDPOINT_XFER_ISOC|
4009 USB_ENDPOINT_SYNC_ASYNC|
4010 USB_ENDPOINT_USAGE_DATA,
4011 .rates = SNDRV_PCM_RATE_44100|
4012 SNDRV_PCM_RATE_48000|
4013 SNDRV_PCM_RATE_96000,
4014 .rate_min = 44100,
4015 .rate_max = 96000,
4016 .nr_rates = 3,
4017 .rate_table = (unsigned int[]) { 44100, 48000, 96000 }
4018 }
4019 },
4020 {
4021 .ifnum = -1
4022 }
4023 }
4024 }
4025},
4026{
4027 /*
4028 * Pioneer DJ DJM-450
4029 * PCM is 8 channels out @ 48 fixed (endpoint 0x01)
4030 * and 8 channels in @ 48 fixed (endpoint 0x82).
4031 */
4032 USB_DEVICE_VENDOR_SPEC(0x2b73, 0x0013),
4033 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
4034 .ifnum = QUIRK_ANY_INTERFACE,
4035 .type = QUIRK_COMPOSITE,
4036 .data = (const struct snd_usb_audio_quirk[]) {
4037 {
4038 .ifnum = 0,
4039 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4040 .data = &(const struct audioformat) {
4041 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
4042 .channels = 8, // outputs
4043 .iface = 0,
4044 .altsetting = 1,
4045 .altset_idx = 1,
4046 .endpoint = 0x01,
4047 .ep_attr = USB_ENDPOINT_XFER_ISOC|
4048 USB_ENDPOINT_SYNC_ASYNC,
4049 .rates = SNDRV_PCM_RATE_48000,
4050 .rate_min = 48000,
4051 .rate_max = 48000,
4052 .nr_rates = 1,
4053 .rate_table = (unsigned int[]) { 48000 }
4054 }
4055 },
4056 {
4057 .ifnum = 0,
4058 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4059 .data = &(const struct audioformat) {
4060 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
4061 .channels = 8, // inputs
4062 .iface = 0,
4063 .altsetting = 1,
4064 .altset_idx = 1,
4065 .endpoint = 0x82,
4066 .ep_idx = 1,
4067 .ep_attr = USB_ENDPOINT_XFER_ISOC|
4068 USB_ENDPOINT_SYNC_ASYNC|
4069 USB_ENDPOINT_USAGE_IMPLICIT_FB,
4070 .rates = SNDRV_PCM_RATE_48000,
4071 .rate_min = 48000,
4072 .rate_max = 48000,
4073 .nr_rates = 1,
4074 .rate_table = (unsigned int[]) { 48000 }
4075 }
4076 },
4077 {
4078 .ifnum = -1
4079 }
4080 }
4081 }
4082},
4083{
4084 /*
4085 * Sennheiser GSP670
4086 * Change order of interfaces loaded
4087 */
4088 USB_DEVICE(0x1395, 0x0300),
4089 .bInterfaceClass = USB_CLASS_PER_INTERFACE,
4090 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
4091 .ifnum = QUIRK_ANY_INTERFACE,
4092 .type = QUIRK_COMPOSITE,
4093 .data = &(const struct snd_usb_audio_quirk[]) {
4094 // Communication
4095 {
4096 .ifnum = 3,
4097 .type = QUIRK_AUDIO_STANDARD_INTERFACE
4098 },
4099 // Recording
4100 {
4101 .ifnum = 4,
4102 .type = QUIRK_AUDIO_STANDARD_INTERFACE
4103 },
4104 // Main
4105 {
4106 .ifnum = 1,
4107 .type = QUIRK_AUDIO_STANDARD_INTERFACE
4108 },
4109 {
4110 .ifnum = -1
4111 }
4112 }
4113 }
4114},
4115
4116#undef USB_DEVICE_VENDOR_SPEC
4117#undef USB_AUDIO_DEVICE
1/*
2 * ALSA USB Audio Driver
3 *
4 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>,
5 * Clemens Ladisch <clemens@ladisch.de>
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23/*
24 * The contents of this file are part of the driver's id_table.
25 *
26 * In a perfect world, this file would be empty.
27 */
28
29/*
30 * Use this for devices where other interfaces are standard compliant,
31 * to prevent the quirk being applied to those interfaces. (To work with
32 * hotplugging, bDeviceClass must be set to USB_CLASS_PER_INTERFACE.)
33 */
34#define USB_DEVICE_VENDOR_SPEC(vend, prod) \
35 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | \
36 USB_DEVICE_ID_MATCH_PRODUCT | \
37 USB_DEVICE_ID_MATCH_INT_CLASS, \
38 .idVendor = vend, \
39 .idProduct = prod, \
40 .bInterfaceClass = USB_CLASS_VENDOR_SPEC
41
42/* FTDI devices */
43{
44 USB_DEVICE(0x0403, 0xb8d8),
45 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
46 /* .vendor_name = "STARR LABS", */
47 /* .product_name = "Starr Labs MIDI USB device", */
48 .ifnum = 0,
49 .type = QUIRK_MIDI_FTDI
50 }
51},
52
53{
54 /* Creative BT-D1 */
55 USB_DEVICE(0x041e, 0x0005),
56 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
57 .ifnum = 1,
58 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
59 .data = &(const struct audioformat) {
60 .formats = SNDRV_PCM_FMTBIT_S16_LE,
61 .channels = 2,
62 .iface = 1,
63 .altsetting = 1,
64 .altset_idx = 1,
65 .endpoint = 0x03,
66 .ep_attr = USB_ENDPOINT_XFER_ISOC,
67 .attributes = 0,
68 .rates = SNDRV_PCM_RATE_CONTINUOUS,
69 .rate_min = 48000,
70 .rate_max = 48000,
71 }
72 }
73},
74
75/* Creative/E-Mu devices */
76{
77 USB_DEVICE(0x041e, 0x3010),
78 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
79 .vendor_name = "Creative Labs",
80 .product_name = "Sound Blaster MP3+",
81 .ifnum = QUIRK_NO_INTERFACE
82 }
83},
84/* Creative/Toshiba Multimedia Center SB-0500 */
85{
86 USB_DEVICE(0x041e, 0x3048),
87 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
88 .vendor_name = "Toshiba",
89 .product_name = "SB-0500",
90 .ifnum = QUIRK_NO_INTERFACE
91 }
92},
93{
94 /* E-Mu 0202 USB */
95 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
96 .idVendor = 0x041e,
97 .idProduct = 0x3f02,
98 .bInterfaceClass = USB_CLASS_AUDIO,
99},
100{
101 /* E-Mu 0404 USB */
102 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
103 .idVendor = 0x041e,
104 .idProduct = 0x3f04,
105 .bInterfaceClass = USB_CLASS_AUDIO,
106},
107{
108 /* E-Mu Tracker Pre */
109 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
110 .idVendor = 0x041e,
111 .idProduct = 0x3f0a,
112 .bInterfaceClass = USB_CLASS_AUDIO,
113},
114{
115 /* E-Mu 0204 USB */
116 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
117 .idVendor = 0x041e,
118 .idProduct = 0x3f19,
119 .bInterfaceClass = USB_CLASS_AUDIO,
120},
121
122/*
123 * HP Wireless Audio
124 * When not ignored, causes instability issues for some users, forcing them to
125 * blacklist the entire module.
126 */
127{
128 USB_DEVICE(0x0424, 0xb832),
129 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
130 .vendor_name = "Standard Microsystems Corp.",
131 .product_name = "HP Wireless Audio",
132 .ifnum = QUIRK_ANY_INTERFACE,
133 .type = QUIRK_COMPOSITE,
134 .data = (const struct snd_usb_audio_quirk[]) {
135 /* Mixer */
136 {
137 .ifnum = 0,
138 .type = QUIRK_IGNORE_INTERFACE,
139 },
140 /* Playback */
141 {
142 .ifnum = 1,
143 .type = QUIRK_IGNORE_INTERFACE,
144 },
145 /* Capture */
146 {
147 .ifnum = 2,
148 .type = QUIRK_IGNORE_INTERFACE,
149 },
150 /* HID Device, .ifnum = 3 */
151 {
152 .ifnum = -1,
153 }
154 }
155 }
156},
157
158/*
159 * Logitech QuickCam: bDeviceClass is vendor-specific, so generic interface
160 * class matches do not take effect without an explicit ID match.
161 */
162{
163 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
164 USB_DEVICE_ID_MATCH_INT_CLASS |
165 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
166 .idVendor = 0x046d,
167 .idProduct = 0x0850,
168 .bInterfaceClass = USB_CLASS_AUDIO,
169 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
170},
171{
172 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
173 USB_DEVICE_ID_MATCH_INT_CLASS |
174 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
175 .idVendor = 0x046d,
176 .idProduct = 0x08ae,
177 .bInterfaceClass = USB_CLASS_AUDIO,
178 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
179},
180{
181 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
182 USB_DEVICE_ID_MATCH_INT_CLASS |
183 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
184 .idVendor = 0x046d,
185 .idProduct = 0x08c6,
186 .bInterfaceClass = USB_CLASS_AUDIO,
187 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
188},
189{
190 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
191 USB_DEVICE_ID_MATCH_INT_CLASS |
192 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
193 .idVendor = 0x046d,
194 .idProduct = 0x08f0,
195 .bInterfaceClass = USB_CLASS_AUDIO,
196 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
197},
198{
199 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
200 USB_DEVICE_ID_MATCH_INT_CLASS |
201 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
202 .idVendor = 0x046d,
203 .idProduct = 0x08f5,
204 .bInterfaceClass = USB_CLASS_AUDIO,
205 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
206},
207{
208 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
209 USB_DEVICE_ID_MATCH_INT_CLASS |
210 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
211 .idVendor = 0x046d,
212 .idProduct = 0x08f6,
213 .bInterfaceClass = USB_CLASS_AUDIO,
214 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
215},
216{
217 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
218 USB_DEVICE_ID_MATCH_INT_CLASS |
219 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
220 .idVendor = 0x046d,
221 .idProduct = 0x0990,
222 .bInterfaceClass = USB_CLASS_AUDIO,
223 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
224 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
225 .vendor_name = "Logitech, Inc.",
226 .product_name = "QuickCam Pro 9000",
227 .ifnum = QUIRK_NO_INTERFACE
228 }
229},
230
231/*
232 * Yamaha devices
233 */
234
235#define YAMAHA_DEVICE(id, name) { \
236 USB_DEVICE(0x0499, id), \
237 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
238 .vendor_name = "Yamaha", \
239 .product_name = name, \
240 .ifnum = QUIRK_ANY_INTERFACE, \
241 .type = QUIRK_MIDI_YAMAHA \
242 } \
243}
244#define YAMAHA_INTERFACE(id, intf, name) { \
245 USB_DEVICE_VENDOR_SPEC(0x0499, id), \
246 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
247 .vendor_name = "Yamaha", \
248 .product_name = name, \
249 .ifnum = intf, \
250 .type = QUIRK_MIDI_YAMAHA \
251 } \
252}
253YAMAHA_DEVICE(0x1000, "UX256"),
254YAMAHA_DEVICE(0x1001, "MU1000"),
255YAMAHA_DEVICE(0x1002, "MU2000"),
256YAMAHA_DEVICE(0x1003, "MU500"),
257YAMAHA_INTERFACE(0x1004, 3, "UW500"),
258YAMAHA_DEVICE(0x1005, "MOTIF6"),
259YAMAHA_DEVICE(0x1006, "MOTIF7"),
260YAMAHA_DEVICE(0x1007, "MOTIF8"),
261YAMAHA_DEVICE(0x1008, "UX96"),
262YAMAHA_DEVICE(0x1009, "UX16"),
263YAMAHA_INTERFACE(0x100a, 3, "EOS BX"),
264YAMAHA_DEVICE(0x100c, "UC-MX"),
265YAMAHA_DEVICE(0x100d, "UC-KX"),
266YAMAHA_DEVICE(0x100e, "S08"),
267YAMAHA_DEVICE(0x100f, "CLP-150"),
268YAMAHA_DEVICE(0x1010, "CLP-170"),
269YAMAHA_DEVICE(0x1011, "P-250"),
270YAMAHA_DEVICE(0x1012, "TYROS"),
271YAMAHA_DEVICE(0x1013, "PF-500"),
272YAMAHA_DEVICE(0x1014, "S90"),
273YAMAHA_DEVICE(0x1015, "MOTIF-R"),
274YAMAHA_DEVICE(0x1016, "MDP-5"),
275YAMAHA_DEVICE(0x1017, "CVP-204"),
276YAMAHA_DEVICE(0x1018, "CVP-206"),
277YAMAHA_DEVICE(0x1019, "CVP-208"),
278YAMAHA_DEVICE(0x101a, "CVP-210"),
279YAMAHA_DEVICE(0x101b, "PSR-1100"),
280YAMAHA_DEVICE(0x101c, "PSR-2100"),
281YAMAHA_DEVICE(0x101d, "CLP-175"),
282YAMAHA_DEVICE(0x101e, "PSR-K1"),
283YAMAHA_DEVICE(0x101f, "EZ-J24"),
284YAMAHA_DEVICE(0x1020, "EZ-250i"),
285YAMAHA_DEVICE(0x1021, "MOTIF ES 6"),
286YAMAHA_DEVICE(0x1022, "MOTIF ES 7"),
287YAMAHA_DEVICE(0x1023, "MOTIF ES 8"),
288YAMAHA_DEVICE(0x1024, "CVP-301"),
289YAMAHA_DEVICE(0x1025, "CVP-303"),
290YAMAHA_DEVICE(0x1026, "CVP-305"),
291YAMAHA_DEVICE(0x1027, "CVP-307"),
292YAMAHA_DEVICE(0x1028, "CVP-309"),
293YAMAHA_DEVICE(0x1029, "CVP-309GP"),
294YAMAHA_DEVICE(0x102a, "PSR-1500"),
295YAMAHA_DEVICE(0x102b, "PSR-3000"),
296YAMAHA_DEVICE(0x102e, "ELS-01/01C"),
297YAMAHA_DEVICE(0x1030, "PSR-295/293"),
298YAMAHA_DEVICE(0x1031, "DGX-205/203"),
299YAMAHA_DEVICE(0x1032, "DGX-305"),
300YAMAHA_DEVICE(0x1033, "DGX-505"),
301YAMAHA_DEVICE(0x1034, NULL),
302YAMAHA_DEVICE(0x1035, NULL),
303YAMAHA_DEVICE(0x1036, NULL),
304YAMAHA_DEVICE(0x1037, NULL),
305YAMAHA_DEVICE(0x1038, NULL),
306YAMAHA_DEVICE(0x1039, NULL),
307YAMAHA_DEVICE(0x103a, NULL),
308YAMAHA_DEVICE(0x103b, NULL),
309YAMAHA_DEVICE(0x103c, NULL),
310YAMAHA_DEVICE(0x103d, NULL),
311YAMAHA_DEVICE(0x103e, NULL),
312YAMAHA_DEVICE(0x103f, NULL),
313YAMAHA_DEVICE(0x1040, NULL),
314YAMAHA_DEVICE(0x1041, NULL),
315YAMAHA_DEVICE(0x1042, NULL),
316YAMAHA_DEVICE(0x1043, NULL),
317YAMAHA_DEVICE(0x1044, NULL),
318YAMAHA_DEVICE(0x1045, NULL),
319YAMAHA_INTERFACE(0x104e, 0, NULL),
320YAMAHA_DEVICE(0x104f, NULL),
321YAMAHA_DEVICE(0x1050, NULL),
322YAMAHA_DEVICE(0x1051, NULL),
323YAMAHA_DEVICE(0x1052, NULL),
324YAMAHA_INTERFACE(0x1053, 0, NULL),
325YAMAHA_INTERFACE(0x1054, 0, NULL),
326YAMAHA_DEVICE(0x1055, NULL),
327YAMAHA_DEVICE(0x1056, NULL),
328YAMAHA_DEVICE(0x1057, NULL),
329YAMAHA_DEVICE(0x1058, NULL),
330YAMAHA_DEVICE(0x1059, NULL),
331YAMAHA_DEVICE(0x105a, NULL),
332YAMAHA_DEVICE(0x105b, NULL),
333YAMAHA_DEVICE(0x105c, NULL),
334YAMAHA_DEVICE(0x105d, NULL),
335{
336 USB_DEVICE(0x0499, 0x1503),
337 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
338 /* .vendor_name = "Yamaha", */
339 /* .product_name = "MOX6/MOX8", */
340 .ifnum = QUIRK_ANY_INTERFACE,
341 .type = QUIRK_COMPOSITE,
342 .data = (const struct snd_usb_audio_quirk[]) {
343 {
344 .ifnum = 1,
345 .type = QUIRK_AUDIO_STANDARD_INTERFACE
346 },
347 {
348 .ifnum = 2,
349 .type = QUIRK_AUDIO_STANDARD_INTERFACE
350 },
351 {
352 .ifnum = 3,
353 .type = QUIRK_MIDI_YAMAHA
354 },
355 {
356 .ifnum = -1
357 }
358 }
359 }
360},
361{
362 USB_DEVICE(0x0499, 0x1507),
363 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
364 /* .vendor_name = "Yamaha", */
365 /* .product_name = "THR10", */
366 .ifnum = QUIRK_ANY_INTERFACE,
367 .type = QUIRK_COMPOSITE,
368 .data = (const struct snd_usb_audio_quirk[]) {
369 {
370 .ifnum = 1,
371 .type = QUIRK_AUDIO_STANDARD_INTERFACE
372 },
373 {
374 .ifnum = 2,
375 .type = QUIRK_AUDIO_STANDARD_INTERFACE
376 },
377 {
378 .ifnum = 3,
379 .type = QUIRK_MIDI_YAMAHA
380 },
381 {
382 .ifnum = -1
383 }
384 }
385 }
386},
387{
388 USB_DEVICE(0x0499, 0x1509),
389 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
390 /* .vendor_name = "Yamaha", */
391 /* .product_name = "Steinberg UR22", */
392 .ifnum = QUIRK_ANY_INTERFACE,
393 .type = QUIRK_COMPOSITE,
394 .data = (const struct snd_usb_audio_quirk[]) {
395 {
396 .ifnum = 1,
397 .type = QUIRK_AUDIO_STANDARD_INTERFACE
398 },
399 {
400 .ifnum = 2,
401 .type = QUIRK_AUDIO_STANDARD_INTERFACE
402 },
403 {
404 .ifnum = 3,
405 .type = QUIRK_MIDI_YAMAHA
406 },
407 {
408 .ifnum = 4,
409 .type = QUIRK_IGNORE_INTERFACE
410 },
411 {
412 .ifnum = -1
413 }
414 }
415 }
416},
417{
418 USB_DEVICE(0x0499, 0x150a),
419 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
420 /* .vendor_name = "Yamaha", */
421 /* .product_name = "THR5A", */
422 .ifnum = QUIRK_ANY_INTERFACE,
423 .type = QUIRK_COMPOSITE,
424 .data = (const struct snd_usb_audio_quirk[]) {
425 {
426 .ifnum = 1,
427 .type = QUIRK_AUDIO_STANDARD_INTERFACE
428 },
429 {
430 .ifnum = 2,
431 .type = QUIRK_AUDIO_STANDARD_INTERFACE
432 },
433 {
434 .ifnum = 3,
435 .type = QUIRK_MIDI_YAMAHA
436 },
437 {
438 .ifnum = -1
439 }
440 }
441 }
442},
443{
444 USB_DEVICE(0x0499, 0x150c),
445 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
446 /* .vendor_name = "Yamaha", */
447 /* .product_name = "THR10C", */
448 .ifnum = QUIRK_ANY_INTERFACE,
449 .type = QUIRK_COMPOSITE,
450 .data = (const struct snd_usb_audio_quirk[]) {
451 {
452 .ifnum = 1,
453 .type = QUIRK_AUDIO_STANDARD_INTERFACE
454 },
455 {
456 .ifnum = 2,
457 .type = QUIRK_AUDIO_STANDARD_INTERFACE
458 },
459 {
460 .ifnum = 3,
461 .type = QUIRK_MIDI_YAMAHA
462 },
463 {
464 .ifnum = -1
465 }
466 }
467 }
468},
469YAMAHA_DEVICE(0x2000, "DGP-7"),
470YAMAHA_DEVICE(0x2001, "DGP-5"),
471YAMAHA_DEVICE(0x2002, NULL),
472YAMAHA_DEVICE(0x2003, NULL),
473YAMAHA_DEVICE(0x5000, "CS1D"),
474YAMAHA_DEVICE(0x5001, "DSP1D"),
475YAMAHA_DEVICE(0x5002, "DME32"),
476YAMAHA_DEVICE(0x5003, "DM2000"),
477YAMAHA_DEVICE(0x5004, "02R96"),
478YAMAHA_DEVICE(0x5005, "ACU16-C"),
479YAMAHA_DEVICE(0x5006, "NHB32-C"),
480YAMAHA_DEVICE(0x5007, "DM1000"),
481YAMAHA_DEVICE(0x5008, "01V96"),
482YAMAHA_DEVICE(0x5009, "SPX2000"),
483YAMAHA_DEVICE(0x500a, "PM5D"),
484YAMAHA_DEVICE(0x500b, "DME64N"),
485YAMAHA_DEVICE(0x500c, "DME24N"),
486YAMAHA_DEVICE(0x500d, NULL),
487YAMAHA_DEVICE(0x500e, NULL),
488YAMAHA_DEVICE(0x500f, NULL),
489YAMAHA_DEVICE(0x7000, "DTX"),
490YAMAHA_DEVICE(0x7010, "UB99"),
491#undef YAMAHA_DEVICE
492#undef YAMAHA_INTERFACE
493/* this catches most recent vendor-specific Yamaha devices */
494{
495 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
496 USB_DEVICE_ID_MATCH_INT_CLASS,
497 .idVendor = 0x0499,
498 .bInterfaceClass = USB_CLASS_VENDOR_SPEC,
499 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
500 .ifnum = QUIRK_ANY_INTERFACE,
501 .type = QUIRK_AUTODETECT
502 }
503},
504
505/*
506 * Roland/RolandED/Edirol/BOSS devices
507 */
508{
509 USB_DEVICE(0x0582, 0x0000),
510 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
511 .vendor_name = "Roland",
512 .product_name = "UA-100",
513 .ifnum = QUIRK_ANY_INTERFACE,
514 .type = QUIRK_COMPOSITE,
515 .data = (const struct snd_usb_audio_quirk[]) {
516 {
517 .ifnum = 0,
518 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
519 .data = & (const struct audioformat) {
520 .formats = SNDRV_PCM_FMTBIT_S16_LE,
521 .channels = 4,
522 .iface = 0,
523 .altsetting = 1,
524 .altset_idx = 1,
525 .attributes = 0,
526 .endpoint = 0x01,
527 .ep_attr = 0x09,
528 .rates = SNDRV_PCM_RATE_CONTINUOUS,
529 .rate_min = 44100,
530 .rate_max = 44100,
531 }
532 },
533 {
534 .ifnum = 1,
535 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
536 .data = & (const struct audioformat) {
537 .formats = SNDRV_PCM_FMTBIT_S16_LE,
538 .channels = 2,
539 .iface = 1,
540 .altsetting = 1,
541 .altset_idx = 1,
542 .attributes = UAC_EP_CS_ATTR_FILL_MAX,
543 .endpoint = 0x81,
544 .ep_attr = 0x05,
545 .rates = SNDRV_PCM_RATE_CONTINUOUS,
546 .rate_min = 44100,
547 .rate_max = 44100,
548 }
549 },
550 {
551 .ifnum = 2,
552 .type = QUIRK_MIDI_FIXED_ENDPOINT,
553 .data = & (const struct snd_usb_midi_endpoint_info) {
554 .out_cables = 0x0007,
555 .in_cables = 0x0007
556 }
557 },
558 {
559 .ifnum = -1
560 }
561 }
562 }
563},
564{
565 USB_DEVICE(0x0582, 0x0002),
566 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
567 .vendor_name = "EDIROL",
568 .product_name = "UM-4",
569 .ifnum = QUIRK_ANY_INTERFACE,
570 .type = QUIRK_COMPOSITE,
571 .data = (const struct snd_usb_audio_quirk[]) {
572 {
573 .ifnum = 0,
574 .type = QUIRK_IGNORE_INTERFACE
575 },
576 {
577 .ifnum = 1,
578 .type = QUIRK_IGNORE_INTERFACE
579 },
580 {
581 .ifnum = 2,
582 .type = QUIRK_MIDI_FIXED_ENDPOINT,
583 .data = & (const struct snd_usb_midi_endpoint_info) {
584 .out_cables = 0x000f,
585 .in_cables = 0x000f
586 }
587 },
588 {
589 .ifnum = -1
590 }
591 }
592 }
593},
594{
595 USB_DEVICE(0x0582, 0x0003),
596 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
597 .vendor_name = "Roland",
598 .product_name = "SC-8850",
599 .ifnum = QUIRK_ANY_INTERFACE,
600 .type = QUIRK_COMPOSITE,
601 .data = (const struct snd_usb_audio_quirk[]) {
602 {
603 .ifnum = 0,
604 .type = QUIRK_IGNORE_INTERFACE
605 },
606 {
607 .ifnum = 1,
608 .type = QUIRK_IGNORE_INTERFACE
609 },
610 {
611 .ifnum = 2,
612 .type = QUIRK_MIDI_FIXED_ENDPOINT,
613 .data = & (const struct snd_usb_midi_endpoint_info) {
614 .out_cables = 0x003f,
615 .in_cables = 0x003f
616 }
617 },
618 {
619 .ifnum = -1
620 }
621 }
622 }
623},
624{
625 USB_DEVICE(0x0582, 0x0004),
626 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
627 .vendor_name = "Roland",
628 .product_name = "U-8",
629 .ifnum = QUIRK_ANY_INTERFACE,
630 .type = QUIRK_COMPOSITE,
631 .data = (const struct snd_usb_audio_quirk[]) {
632 {
633 .ifnum = 0,
634 .type = QUIRK_IGNORE_INTERFACE
635 },
636 {
637 .ifnum = 1,
638 .type = QUIRK_IGNORE_INTERFACE
639 },
640 {
641 .ifnum = 2,
642 .type = QUIRK_MIDI_FIXED_ENDPOINT,
643 .data = & (const struct snd_usb_midi_endpoint_info) {
644 .out_cables = 0x0005,
645 .in_cables = 0x0005
646 }
647 },
648 {
649 .ifnum = -1
650 }
651 }
652 }
653},
654{
655 /* Has ID 0x0099 when not in "Advanced Driver" mode.
656 * The UM-2EX has only one input, but we cannot detect this. */
657 USB_DEVICE(0x0582, 0x0005),
658 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
659 .vendor_name = "EDIROL",
660 .product_name = "UM-2",
661 .ifnum = QUIRK_ANY_INTERFACE,
662 .type = QUIRK_COMPOSITE,
663 .data = (const struct snd_usb_audio_quirk[]) {
664 {
665 .ifnum = 0,
666 .type = QUIRK_IGNORE_INTERFACE
667 },
668 {
669 .ifnum = 1,
670 .type = QUIRK_IGNORE_INTERFACE
671 },
672 {
673 .ifnum = 2,
674 .type = QUIRK_MIDI_FIXED_ENDPOINT,
675 .data = & (const struct snd_usb_midi_endpoint_info) {
676 .out_cables = 0x0003,
677 .in_cables = 0x0003
678 }
679 },
680 {
681 .ifnum = -1
682 }
683 }
684 }
685},
686{
687 USB_DEVICE(0x0582, 0x0007),
688 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
689 .vendor_name = "Roland",
690 .product_name = "SC-8820",
691 .ifnum = QUIRK_ANY_INTERFACE,
692 .type = QUIRK_COMPOSITE,
693 .data = (const struct snd_usb_audio_quirk[]) {
694 {
695 .ifnum = 0,
696 .type = QUIRK_IGNORE_INTERFACE
697 },
698 {
699 .ifnum = 1,
700 .type = QUIRK_IGNORE_INTERFACE
701 },
702 {
703 .ifnum = 2,
704 .type = QUIRK_MIDI_FIXED_ENDPOINT,
705 .data = & (const struct snd_usb_midi_endpoint_info) {
706 .out_cables = 0x0013,
707 .in_cables = 0x0013
708 }
709 },
710 {
711 .ifnum = -1
712 }
713 }
714 }
715},
716{
717 USB_DEVICE(0x0582, 0x0008),
718 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
719 .vendor_name = "Roland",
720 .product_name = "PC-300",
721 .ifnum = QUIRK_ANY_INTERFACE,
722 .type = QUIRK_COMPOSITE,
723 .data = (const struct snd_usb_audio_quirk[]) {
724 {
725 .ifnum = 0,
726 .type = QUIRK_IGNORE_INTERFACE
727 },
728 {
729 .ifnum = 1,
730 .type = QUIRK_IGNORE_INTERFACE
731 },
732 {
733 .ifnum = 2,
734 .type = QUIRK_MIDI_FIXED_ENDPOINT,
735 .data = & (const struct snd_usb_midi_endpoint_info) {
736 .out_cables = 0x0001,
737 .in_cables = 0x0001
738 }
739 },
740 {
741 .ifnum = -1
742 }
743 }
744 }
745},
746{
747 /* has ID 0x009d when not in "Advanced Driver" mode */
748 USB_DEVICE(0x0582, 0x0009),
749 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
750 .vendor_name = "EDIROL",
751 .product_name = "UM-1",
752 .ifnum = QUIRK_ANY_INTERFACE,
753 .type = QUIRK_COMPOSITE,
754 .data = (const struct snd_usb_audio_quirk[]) {
755 {
756 .ifnum = 0,
757 .type = QUIRK_IGNORE_INTERFACE
758 },
759 {
760 .ifnum = 1,
761 .type = QUIRK_IGNORE_INTERFACE
762 },
763 {
764 .ifnum = 2,
765 .type = QUIRK_MIDI_FIXED_ENDPOINT,
766 .data = & (const struct snd_usb_midi_endpoint_info) {
767 .out_cables = 0x0001,
768 .in_cables = 0x0001
769 }
770 },
771 {
772 .ifnum = -1
773 }
774 }
775 }
776},
777{
778 USB_DEVICE(0x0582, 0x000b),
779 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
780 .vendor_name = "Roland",
781 .product_name = "SK-500",
782 .ifnum = QUIRK_ANY_INTERFACE,
783 .type = QUIRK_COMPOSITE,
784 .data = (const struct snd_usb_audio_quirk[]) {
785 {
786 .ifnum = 0,
787 .type = QUIRK_IGNORE_INTERFACE
788 },
789 {
790 .ifnum = 1,
791 .type = QUIRK_IGNORE_INTERFACE
792 },
793 {
794 .ifnum = 2,
795 .type = QUIRK_MIDI_FIXED_ENDPOINT,
796 .data = & (const struct snd_usb_midi_endpoint_info) {
797 .out_cables = 0x0013,
798 .in_cables = 0x0013
799 }
800 },
801 {
802 .ifnum = -1
803 }
804 }
805 }
806},
807{
808 /* thanks to Emiliano Grilli <emillo@libero.it>
809 * for helping researching this data */
810 USB_DEVICE(0x0582, 0x000c),
811 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
812 .vendor_name = "Roland",
813 .product_name = "SC-D70",
814 .ifnum = QUIRK_ANY_INTERFACE,
815 .type = QUIRK_COMPOSITE,
816 .data = (const struct snd_usb_audio_quirk[]) {
817 {
818 .ifnum = 0,
819 .type = QUIRK_AUDIO_STANDARD_INTERFACE
820 },
821 {
822 .ifnum = 1,
823 .type = QUIRK_AUDIO_STANDARD_INTERFACE
824 },
825 {
826 .ifnum = 2,
827 .type = QUIRK_MIDI_FIXED_ENDPOINT,
828 .data = & (const struct snd_usb_midi_endpoint_info) {
829 .out_cables = 0x0007,
830 .in_cables = 0x0007
831 }
832 },
833 {
834 .ifnum = -1
835 }
836 }
837 }
838},
839{ /*
840 * This quirk is for the "Advanced Driver" mode of the Edirol UA-5.
841 * If the advanced mode switch at the back of the unit is off, the
842 * UA-5 has ID 0x0582/0x0011 and is standard compliant (no quirks),
843 * but offers only 16-bit PCM.
844 * In advanced mode, the UA-5 will output S24_3LE samples (two
845 * channels) at the rate indicated on the front switch, including
846 * the 96kHz sample rate.
847 */
848 USB_DEVICE(0x0582, 0x0010),
849 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
850 .vendor_name = "EDIROL",
851 .product_name = "UA-5",
852 .ifnum = QUIRK_ANY_INTERFACE,
853 .type = QUIRK_COMPOSITE,
854 .data = (const struct snd_usb_audio_quirk[]) {
855 {
856 .ifnum = 1,
857 .type = QUIRK_AUDIO_STANDARD_INTERFACE
858 },
859 {
860 .ifnum = 2,
861 .type = QUIRK_AUDIO_STANDARD_INTERFACE
862 },
863 {
864 .ifnum = -1
865 }
866 }
867 }
868},
869{
870 /* has ID 0x0013 when not in "Advanced Driver" mode */
871 USB_DEVICE(0x0582, 0x0012),
872 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
873 .vendor_name = "Roland",
874 .product_name = "XV-5050",
875 .ifnum = 0,
876 .type = QUIRK_MIDI_FIXED_ENDPOINT,
877 .data = & (const struct snd_usb_midi_endpoint_info) {
878 .out_cables = 0x0001,
879 .in_cables = 0x0001
880 }
881 }
882},
883{
884 /* has ID 0x0015 when not in "Advanced Driver" mode */
885 USB_DEVICE(0x0582, 0x0014),
886 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
887 .vendor_name = "EDIROL",
888 .product_name = "UM-880",
889 .ifnum = 0,
890 .type = QUIRK_MIDI_FIXED_ENDPOINT,
891 .data = & (const struct snd_usb_midi_endpoint_info) {
892 .out_cables = 0x01ff,
893 .in_cables = 0x01ff
894 }
895 }
896},
897{
898 /* has ID 0x0017 when not in "Advanced Driver" mode */
899 USB_DEVICE(0x0582, 0x0016),
900 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
901 .vendor_name = "EDIROL",
902 .product_name = "SD-90",
903 .ifnum = QUIRK_ANY_INTERFACE,
904 .type = QUIRK_COMPOSITE,
905 .data = (const struct snd_usb_audio_quirk[]) {
906 {
907 .ifnum = 0,
908 .type = QUIRK_AUDIO_STANDARD_INTERFACE
909 },
910 {
911 .ifnum = 1,
912 .type = QUIRK_AUDIO_STANDARD_INTERFACE
913 },
914 {
915 .ifnum = 2,
916 .type = QUIRK_MIDI_FIXED_ENDPOINT,
917 .data = & (const struct snd_usb_midi_endpoint_info) {
918 .out_cables = 0x000f,
919 .in_cables = 0x000f
920 }
921 },
922 {
923 .ifnum = -1
924 }
925 }
926 }
927},
928{
929 /* has ID 0x001c when not in "Advanced Driver" mode */
930 USB_DEVICE(0x0582, 0x001b),
931 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
932 .vendor_name = "Roland",
933 .product_name = "MMP-2",
934 .ifnum = QUIRK_ANY_INTERFACE,
935 .type = QUIRK_COMPOSITE,
936 .data = (const struct snd_usb_audio_quirk[]) {
937 {
938 .ifnum = 0,
939 .type = QUIRK_IGNORE_INTERFACE
940 },
941 {
942 .ifnum = 1,
943 .type = QUIRK_IGNORE_INTERFACE
944 },
945 {
946 .ifnum = 2,
947 .type = QUIRK_MIDI_FIXED_ENDPOINT,
948 .data = & (const struct snd_usb_midi_endpoint_info) {
949 .out_cables = 0x0001,
950 .in_cables = 0x0001
951 }
952 },
953 {
954 .ifnum = -1
955 }
956 }
957 }
958},
959{
960 /* has ID 0x001e when not in "Advanced Driver" mode */
961 USB_DEVICE(0x0582, 0x001d),
962 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
963 .vendor_name = "Roland",
964 .product_name = "V-SYNTH",
965 .ifnum = 0,
966 .type = QUIRK_MIDI_FIXED_ENDPOINT,
967 .data = & (const struct snd_usb_midi_endpoint_info) {
968 .out_cables = 0x0001,
969 .in_cables = 0x0001
970 }
971 }
972},
973{
974 /* has ID 0x0024 when not in "Advanced Driver" mode */
975 USB_DEVICE(0x0582, 0x0023),
976 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
977 .vendor_name = "EDIROL",
978 .product_name = "UM-550",
979 .ifnum = 0,
980 .type = QUIRK_MIDI_FIXED_ENDPOINT,
981 .data = & (const struct snd_usb_midi_endpoint_info) {
982 .out_cables = 0x003f,
983 .in_cables = 0x003f
984 }
985 }
986},
987{
988 /*
989 * This quirk is for the "Advanced Driver" mode. If off, the UA-20
990 * has ID 0x0026 and is standard compliant, but has only 16-bit PCM
991 * and no MIDI.
992 */
993 USB_DEVICE(0x0582, 0x0025),
994 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
995 .vendor_name = "EDIROL",
996 .product_name = "UA-20",
997 .ifnum = QUIRK_ANY_INTERFACE,
998 .type = QUIRK_COMPOSITE,
999 .data = (const struct snd_usb_audio_quirk[]) {
1000 {
1001 .ifnum = 0,
1002 .type = QUIRK_IGNORE_INTERFACE
1003 },
1004 {
1005 .ifnum = 1,
1006 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1007 .data = & (const struct audioformat) {
1008 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
1009 .channels = 2,
1010 .iface = 1,
1011 .altsetting = 1,
1012 .altset_idx = 1,
1013 .attributes = 0,
1014 .endpoint = 0x01,
1015 .ep_attr = 0x01,
1016 .rates = SNDRV_PCM_RATE_CONTINUOUS,
1017 .rate_min = 44100,
1018 .rate_max = 44100,
1019 }
1020 },
1021 {
1022 .ifnum = 2,
1023 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1024 .data = & (const struct audioformat) {
1025 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
1026 .channels = 2,
1027 .iface = 2,
1028 .altsetting = 1,
1029 .altset_idx = 1,
1030 .attributes = 0,
1031 .endpoint = 0x82,
1032 .ep_attr = 0x01,
1033 .rates = SNDRV_PCM_RATE_CONTINUOUS,
1034 .rate_min = 44100,
1035 .rate_max = 44100,
1036 }
1037 },
1038 {
1039 .ifnum = 3,
1040 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1041 .data = & (const struct snd_usb_midi_endpoint_info) {
1042 .out_cables = 0x0001,
1043 .in_cables = 0x0001
1044 }
1045 },
1046 {
1047 .ifnum = -1
1048 }
1049 }
1050 }
1051},
1052{
1053 /* has ID 0x0028 when not in "Advanced Driver" mode */
1054 USB_DEVICE(0x0582, 0x0027),
1055 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1056 .vendor_name = "EDIROL",
1057 .product_name = "SD-20",
1058 .ifnum = 0,
1059 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1060 .data = & (const struct snd_usb_midi_endpoint_info) {
1061 .out_cables = 0x0003,
1062 .in_cables = 0x0007
1063 }
1064 }
1065},
1066{
1067 /* has ID 0x002a when not in "Advanced Driver" mode */
1068 USB_DEVICE(0x0582, 0x0029),
1069 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1070 .vendor_name = "EDIROL",
1071 .product_name = "SD-80",
1072 .ifnum = 0,
1073 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1074 .data = & (const struct snd_usb_midi_endpoint_info) {
1075 .out_cables = 0x000f,
1076 .in_cables = 0x000f
1077 }
1078 }
1079},
1080{ /*
1081 * This quirk is for the "Advanced" modes of the Edirol UA-700.
1082 * If the sample format switch is not in an advanced setting, the
1083 * UA-700 has ID 0x0582/0x002c and is standard compliant (no quirks),
1084 * but offers only 16-bit PCM and no MIDI.
1085 */
1086 USB_DEVICE_VENDOR_SPEC(0x0582, 0x002b),
1087 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1088 .vendor_name = "EDIROL",
1089 .product_name = "UA-700",
1090 .ifnum = QUIRK_ANY_INTERFACE,
1091 .type = QUIRK_COMPOSITE,
1092 .data = (const struct snd_usb_audio_quirk[]) {
1093 {
1094 .ifnum = 1,
1095 .type = QUIRK_AUDIO_EDIROL_UAXX
1096 },
1097 {
1098 .ifnum = 2,
1099 .type = QUIRK_AUDIO_EDIROL_UAXX
1100 },
1101 {
1102 .ifnum = 3,
1103 .type = QUIRK_AUDIO_EDIROL_UAXX
1104 },
1105 {
1106 .ifnum = -1
1107 }
1108 }
1109 }
1110},
1111{
1112 /* has ID 0x002e when not in "Advanced Driver" mode */
1113 USB_DEVICE(0x0582, 0x002d),
1114 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1115 .vendor_name = "Roland",
1116 .product_name = "XV-2020",
1117 .ifnum = 0,
1118 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1119 .data = & (const struct snd_usb_midi_endpoint_info) {
1120 .out_cables = 0x0001,
1121 .in_cables = 0x0001
1122 }
1123 }
1124},
1125{
1126 /* has ID 0x0030 when not in "Advanced Driver" mode */
1127 USB_DEVICE(0x0582, 0x002f),
1128 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1129 .vendor_name = "Roland",
1130 .product_name = "VariOS",
1131 .ifnum = 0,
1132 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1133 .data = & (const struct snd_usb_midi_endpoint_info) {
1134 .out_cables = 0x0007,
1135 .in_cables = 0x0007
1136 }
1137 }
1138},
1139{
1140 /* has ID 0x0034 when not in "Advanced Driver" mode */
1141 USB_DEVICE(0x0582, 0x0033),
1142 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1143 .vendor_name = "EDIROL",
1144 .product_name = "PCR",
1145 .ifnum = 0,
1146 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1147 .data = & (const struct snd_usb_midi_endpoint_info) {
1148 .out_cables = 0x0003,
1149 .in_cables = 0x0007
1150 }
1151 }
1152},
1153{
1154 /*
1155 * Has ID 0x0038 when not in "Advanced Driver" mode;
1156 * later revisions use IDs 0x0054 and 0x00a2.
1157 */
1158 USB_DEVICE(0x0582, 0x0037),
1159 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1160 .vendor_name = "Roland",
1161 .product_name = "Digital Piano",
1162 .ifnum = 0,
1163 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1164 .data = & (const struct snd_usb_midi_endpoint_info) {
1165 .out_cables = 0x0001,
1166 .in_cables = 0x0001
1167 }
1168 }
1169},
1170{
1171 /*
1172 * This quirk is for the "Advanced Driver" mode. If off, the GS-10
1173 * has ID 0x003c and is standard compliant, but has only 16-bit PCM
1174 * and no MIDI.
1175 */
1176 USB_DEVICE_VENDOR_SPEC(0x0582, 0x003b),
1177 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1178 .vendor_name = "BOSS",
1179 .product_name = "GS-10",
1180 .ifnum = QUIRK_ANY_INTERFACE,
1181 .type = QUIRK_COMPOSITE,
1182 .data = & (const struct snd_usb_audio_quirk[]) {
1183 {
1184 .ifnum = 1,
1185 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1186 },
1187 {
1188 .ifnum = 2,
1189 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1190 },
1191 {
1192 .ifnum = 3,
1193 .type = QUIRK_MIDI_STANDARD_INTERFACE
1194 },
1195 {
1196 .ifnum = -1
1197 }
1198 }
1199 }
1200},
1201{
1202 /* has ID 0x0041 when not in "Advanced Driver" mode */
1203 USB_DEVICE(0x0582, 0x0040),
1204 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1205 .vendor_name = "Roland",
1206 .product_name = "GI-20",
1207 .ifnum = 0,
1208 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1209 .data = & (const struct snd_usb_midi_endpoint_info) {
1210 .out_cables = 0x0001,
1211 .in_cables = 0x0001
1212 }
1213 }
1214},
1215{
1216 /* has ID 0x0043 when not in "Advanced Driver" mode */
1217 USB_DEVICE(0x0582, 0x0042),
1218 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1219 .vendor_name = "Roland",
1220 .product_name = "RS-70",
1221 .ifnum = 0,
1222 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1223 .data = & (const struct snd_usb_midi_endpoint_info) {
1224 .out_cables = 0x0001,
1225 .in_cables = 0x0001
1226 }
1227 }
1228},
1229{
1230 /* has ID 0x0049 when not in "Advanced Driver" mode */
1231 USB_DEVICE(0x0582, 0x0047),
1232 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1233 /* .vendor_name = "EDIROL", */
1234 /* .product_name = "UR-80", */
1235 .ifnum = QUIRK_ANY_INTERFACE,
1236 .type = QUIRK_COMPOSITE,
1237 .data = (const struct snd_usb_audio_quirk[]) {
1238 /* in the 96 kHz modes, only interface 1 is there */
1239 {
1240 .ifnum = 1,
1241 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1242 },
1243 {
1244 .ifnum = 2,
1245 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1246 },
1247 {
1248 .ifnum = -1
1249 }
1250 }
1251 }
1252},
1253{
1254 /* has ID 0x004a when not in "Advanced Driver" mode */
1255 USB_DEVICE(0x0582, 0x0048),
1256 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1257 /* .vendor_name = "EDIROL", */
1258 /* .product_name = "UR-80", */
1259 .ifnum = 0,
1260 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1261 .data = & (const struct snd_usb_midi_endpoint_info) {
1262 .out_cables = 0x0003,
1263 .in_cables = 0x0007
1264 }
1265 }
1266},
1267{
1268 /* has ID 0x004e when not in "Advanced Driver" mode */
1269 USB_DEVICE(0x0582, 0x004c),
1270 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1271 .vendor_name = "EDIROL",
1272 .product_name = "PCR-A",
1273 .ifnum = QUIRK_ANY_INTERFACE,
1274 .type = QUIRK_COMPOSITE,
1275 .data = (const struct snd_usb_audio_quirk[]) {
1276 {
1277 .ifnum = 1,
1278 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1279 },
1280 {
1281 .ifnum = 2,
1282 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1283 },
1284 {
1285 .ifnum = -1
1286 }
1287 }
1288 }
1289},
1290{
1291 /* has ID 0x004f when not in "Advanced Driver" mode */
1292 USB_DEVICE(0x0582, 0x004d),
1293 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1294 .vendor_name = "EDIROL",
1295 .product_name = "PCR-A",
1296 .ifnum = 0,
1297 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1298 .data = & (const struct snd_usb_midi_endpoint_info) {
1299 .out_cables = 0x0003,
1300 .in_cables = 0x0007
1301 }
1302 }
1303},
1304{
1305 /*
1306 * This quirk is for the "Advanced Driver" mode. If off, the UA-3FX
1307 * is standard compliant, but has only 16-bit PCM.
1308 */
1309 USB_DEVICE(0x0582, 0x0050),
1310 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1311 .vendor_name = "EDIROL",
1312 .product_name = "UA-3FX",
1313 .ifnum = QUIRK_ANY_INTERFACE,
1314 .type = QUIRK_COMPOSITE,
1315 .data = (const struct snd_usb_audio_quirk[]) {
1316 {
1317 .ifnum = 1,
1318 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1319 },
1320 {
1321 .ifnum = 2,
1322 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1323 },
1324 {
1325 .ifnum = -1
1326 }
1327 }
1328 }
1329},
1330{
1331 USB_DEVICE(0x0582, 0x0052),
1332 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1333 .vendor_name = "EDIROL",
1334 .product_name = "UM-1SX",
1335 .ifnum = 0,
1336 .type = QUIRK_MIDI_STANDARD_INTERFACE
1337 }
1338},
1339{
1340 USB_DEVICE(0x0582, 0x0060),
1341 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1342 .vendor_name = "Roland",
1343 .product_name = "EXR Series",
1344 .ifnum = 0,
1345 .type = QUIRK_MIDI_STANDARD_INTERFACE
1346 }
1347},
1348{
1349 /* has ID 0x0066 when not in "Advanced Driver" mode */
1350 USB_DEVICE(0x0582, 0x0064),
1351 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1352 /* .vendor_name = "EDIROL", */
1353 /* .product_name = "PCR-1", */
1354 .ifnum = QUIRK_ANY_INTERFACE,
1355 .type = QUIRK_COMPOSITE,
1356 .data = (const struct snd_usb_audio_quirk[]) {
1357 {
1358 .ifnum = 1,
1359 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1360 },
1361 {
1362 .ifnum = 2,
1363 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1364 },
1365 {
1366 .ifnum = -1
1367 }
1368 }
1369 }
1370},
1371{
1372 /* has ID 0x0067 when not in "Advanced Driver" mode */
1373 USB_DEVICE(0x0582, 0x0065),
1374 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1375 /* .vendor_name = "EDIROL", */
1376 /* .product_name = "PCR-1", */
1377 .ifnum = 0,
1378 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1379 .data = & (const struct snd_usb_midi_endpoint_info) {
1380 .out_cables = 0x0001,
1381 .in_cables = 0x0003
1382 }
1383 }
1384},
1385{
1386 /* has ID 0x006e when not in "Advanced Driver" mode */
1387 USB_DEVICE(0x0582, 0x006d),
1388 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1389 .vendor_name = "Roland",
1390 .product_name = "FANTOM-X",
1391 .ifnum = 0,
1392 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1393 .data = & (const struct snd_usb_midi_endpoint_info) {
1394 .out_cables = 0x0001,
1395 .in_cables = 0x0001
1396 }
1397 }
1398},
1399{ /*
1400 * This quirk is for the "Advanced" modes of the Edirol UA-25.
1401 * If the switch is not in an advanced setting, the UA-25 has
1402 * ID 0x0582/0x0073 and is standard compliant (no quirks), but
1403 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1404 */
1405 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0074),
1406 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1407 .vendor_name = "EDIROL",
1408 .product_name = "UA-25",
1409 .ifnum = QUIRK_ANY_INTERFACE,
1410 .type = QUIRK_COMPOSITE,
1411 .data = (const struct snd_usb_audio_quirk[]) {
1412 {
1413 .ifnum = 0,
1414 .type = QUIRK_AUDIO_EDIROL_UAXX
1415 },
1416 {
1417 .ifnum = 1,
1418 .type = QUIRK_AUDIO_EDIROL_UAXX
1419 },
1420 {
1421 .ifnum = 2,
1422 .type = QUIRK_AUDIO_EDIROL_UAXX
1423 },
1424 {
1425 .ifnum = -1
1426 }
1427 }
1428 }
1429},
1430{
1431 /* has ID 0x0076 when not in "Advanced Driver" mode */
1432 USB_DEVICE(0x0582, 0x0075),
1433 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1434 .vendor_name = "BOSS",
1435 .product_name = "DR-880",
1436 .ifnum = 0,
1437 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1438 .data = & (const struct snd_usb_midi_endpoint_info) {
1439 .out_cables = 0x0001,
1440 .in_cables = 0x0001
1441 }
1442 }
1443},
1444{
1445 /* has ID 0x007b when not in "Advanced Driver" mode */
1446 USB_DEVICE_VENDOR_SPEC(0x0582, 0x007a),
1447 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1448 .vendor_name = "Roland",
1449 /* "RD" or "RD-700SX"? */
1450 .ifnum = 0,
1451 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1452 .data = & (const struct snd_usb_midi_endpoint_info) {
1453 .out_cables = 0x0003,
1454 .in_cables = 0x0003
1455 }
1456 }
1457},
1458{
1459 /* has ID 0x0081 when not in "Advanced Driver" mode */
1460 USB_DEVICE(0x0582, 0x0080),
1461 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1462 .vendor_name = "Roland",
1463 .product_name = "G-70",
1464 .ifnum = 0,
1465 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1466 .data = & (const struct snd_usb_midi_endpoint_info) {
1467 .out_cables = 0x0001,
1468 .in_cables = 0x0001
1469 }
1470 }
1471},
1472{
1473 /* has ID 0x008c when not in "Advanced Driver" mode */
1474 USB_DEVICE(0x0582, 0x008b),
1475 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1476 .vendor_name = "EDIROL",
1477 .product_name = "PC-50",
1478 .ifnum = 0,
1479 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1480 .data = & (const struct snd_usb_midi_endpoint_info) {
1481 .out_cables = 0x0001,
1482 .in_cables = 0x0001
1483 }
1484 }
1485},
1486{
1487 /*
1488 * This quirk is for the "Advanced Driver" mode. If off, the UA-4FX
1489 * is standard compliant, but has only 16-bit PCM and no MIDI.
1490 */
1491 USB_DEVICE(0x0582, 0x00a3),
1492 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1493 .vendor_name = "EDIROL",
1494 .product_name = "UA-4FX",
1495 .ifnum = QUIRK_ANY_INTERFACE,
1496 .type = QUIRK_COMPOSITE,
1497 .data = (const struct snd_usb_audio_quirk[]) {
1498 {
1499 .ifnum = 0,
1500 .type = QUIRK_AUDIO_EDIROL_UAXX
1501 },
1502 {
1503 .ifnum = 1,
1504 .type = QUIRK_AUDIO_EDIROL_UAXX
1505 },
1506 {
1507 .ifnum = 2,
1508 .type = QUIRK_AUDIO_EDIROL_UAXX
1509 },
1510 {
1511 .ifnum = -1
1512 }
1513 }
1514 }
1515},
1516{
1517 /* Edirol M-16DX */
1518 USB_DEVICE(0x0582, 0x00c4),
1519 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1520 .ifnum = QUIRK_ANY_INTERFACE,
1521 .type = QUIRK_COMPOSITE,
1522 .data = (const struct snd_usb_audio_quirk[]) {
1523 {
1524 .ifnum = 0,
1525 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1526 },
1527 {
1528 .ifnum = 1,
1529 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1530 },
1531 {
1532 .ifnum = 2,
1533 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1534 .data = & (const struct snd_usb_midi_endpoint_info) {
1535 .out_cables = 0x0001,
1536 .in_cables = 0x0001
1537 }
1538 },
1539 {
1540 .ifnum = -1
1541 }
1542 }
1543 }
1544},
1545{
1546 /* Advanced modes of the Edirol UA-25EX.
1547 * For the standard mode, UA-25EX has ID 0582:00e7, which
1548 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1549 */
1550 USB_DEVICE_VENDOR_SPEC(0x0582, 0x00e6),
1551 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1552 .vendor_name = "EDIROL",
1553 .product_name = "UA-25EX",
1554 .ifnum = QUIRK_ANY_INTERFACE,
1555 .type = QUIRK_COMPOSITE,
1556 .data = (const struct snd_usb_audio_quirk[]) {
1557 {
1558 .ifnum = 0,
1559 .type = QUIRK_AUDIO_EDIROL_UAXX
1560 },
1561 {
1562 .ifnum = 1,
1563 .type = QUIRK_AUDIO_EDIROL_UAXX
1564 },
1565 {
1566 .ifnum = 2,
1567 .type = QUIRK_AUDIO_EDIROL_UAXX
1568 },
1569 {
1570 .ifnum = -1
1571 }
1572 }
1573 }
1574},
1575{
1576 /* Edirol UM-3G */
1577 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0108),
1578 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1579 .ifnum = 0,
1580 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1581 .data = & (const struct snd_usb_midi_endpoint_info) {
1582 .out_cables = 0x0007,
1583 .in_cables = 0x0007
1584 }
1585 }
1586},
1587{
1588 /* BOSS ME-25 */
1589 USB_DEVICE(0x0582, 0x0113),
1590 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1591 .ifnum = QUIRK_ANY_INTERFACE,
1592 .type = QUIRK_COMPOSITE,
1593 .data = (const struct snd_usb_audio_quirk[]) {
1594 {
1595 .ifnum = 0,
1596 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1597 },
1598 {
1599 .ifnum = 1,
1600 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1601 },
1602 {
1603 .ifnum = 2,
1604 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1605 .data = & (const struct snd_usb_midi_endpoint_info) {
1606 .out_cables = 0x0001,
1607 .in_cables = 0x0001
1608 }
1609 },
1610 {
1611 .ifnum = -1
1612 }
1613 }
1614 }
1615},
1616{
1617 /* only 44.1 kHz works at the moment */
1618 USB_DEVICE(0x0582, 0x0120),
1619 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1620 /* .vendor_name = "Roland", */
1621 /* .product_name = "OCTO-CAPTURE", */
1622 .ifnum = QUIRK_ANY_INTERFACE,
1623 .type = QUIRK_COMPOSITE,
1624 .data = (const struct snd_usb_audio_quirk[]) {
1625 {
1626 .ifnum = 0,
1627 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1628 .data = & (const struct audioformat) {
1629 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1630 .channels = 10,
1631 .iface = 0,
1632 .altsetting = 1,
1633 .altset_idx = 1,
1634 .endpoint = 0x05,
1635 .ep_attr = 0x05,
1636 .rates = SNDRV_PCM_RATE_44100,
1637 .rate_min = 44100,
1638 .rate_max = 44100,
1639 .nr_rates = 1,
1640 .rate_table = (unsigned int[]) { 44100 }
1641 }
1642 },
1643 {
1644 .ifnum = 1,
1645 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1646 .data = & (const struct audioformat) {
1647 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1648 .channels = 12,
1649 .iface = 1,
1650 .altsetting = 1,
1651 .altset_idx = 1,
1652 .endpoint = 0x85,
1653 .ep_attr = 0x25,
1654 .rates = SNDRV_PCM_RATE_44100,
1655 .rate_min = 44100,
1656 .rate_max = 44100,
1657 .nr_rates = 1,
1658 .rate_table = (unsigned int[]) { 44100 }
1659 }
1660 },
1661 {
1662 .ifnum = 2,
1663 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1664 .data = & (const struct snd_usb_midi_endpoint_info) {
1665 .out_cables = 0x0001,
1666 .in_cables = 0x0001
1667 }
1668 },
1669 {
1670 .ifnum = 3,
1671 .type = QUIRK_IGNORE_INTERFACE
1672 },
1673 {
1674 .ifnum = 4,
1675 .type = QUIRK_IGNORE_INTERFACE
1676 },
1677 {
1678 .ifnum = -1
1679 }
1680 }
1681 }
1682},
1683{
1684 /* only 44.1 kHz works at the moment */
1685 USB_DEVICE(0x0582, 0x012f),
1686 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1687 /* .vendor_name = "Roland", */
1688 /* .product_name = "QUAD-CAPTURE", */
1689 .ifnum = QUIRK_ANY_INTERFACE,
1690 .type = QUIRK_COMPOSITE,
1691 .data = (const struct snd_usb_audio_quirk[]) {
1692 {
1693 .ifnum = 0,
1694 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1695 .data = & (const struct audioformat) {
1696 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1697 .channels = 4,
1698 .iface = 0,
1699 .altsetting = 1,
1700 .altset_idx = 1,
1701 .endpoint = 0x05,
1702 .ep_attr = 0x05,
1703 .rates = SNDRV_PCM_RATE_44100,
1704 .rate_min = 44100,
1705 .rate_max = 44100,
1706 .nr_rates = 1,
1707 .rate_table = (unsigned int[]) { 44100 }
1708 }
1709 },
1710 {
1711 .ifnum = 1,
1712 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1713 .data = & (const struct audioformat) {
1714 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1715 .channels = 6,
1716 .iface = 1,
1717 .altsetting = 1,
1718 .altset_idx = 1,
1719 .endpoint = 0x85,
1720 .ep_attr = 0x25,
1721 .rates = SNDRV_PCM_RATE_44100,
1722 .rate_min = 44100,
1723 .rate_max = 44100,
1724 .nr_rates = 1,
1725 .rate_table = (unsigned int[]) { 44100 }
1726 }
1727 },
1728 {
1729 .ifnum = 2,
1730 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1731 .data = & (const struct snd_usb_midi_endpoint_info) {
1732 .out_cables = 0x0001,
1733 .in_cables = 0x0001
1734 }
1735 },
1736 {
1737 .ifnum = 3,
1738 .type = QUIRK_IGNORE_INTERFACE
1739 },
1740 {
1741 .ifnum = 4,
1742 .type = QUIRK_IGNORE_INTERFACE
1743 },
1744 {
1745 .ifnum = -1
1746 }
1747 }
1748 }
1749},
1750{
1751 USB_DEVICE(0x0582, 0x0159),
1752 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1753 /* .vendor_name = "Roland", */
1754 /* .product_name = "UA-22", */
1755 .ifnum = QUIRK_ANY_INTERFACE,
1756 .type = QUIRK_COMPOSITE,
1757 .data = (const struct snd_usb_audio_quirk[]) {
1758 {
1759 .ifnum = 0,
1760 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1761 },
1762 {
1763 .ifnum = 1,
1764 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1765 },
1766 {
1767 .ifnum = 2,
1768 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1769 .data = & (const struct snd_usb_midi_endpoint_info) {
1770 .out_cables = 0x0001,
1771 .in_cables = 0x0001
1772 }
1773 },
1774 {
1775 .ifnum = -1
1776 }
1777 }
1778 }
1779},
1780/* this catches most recent vendor-specific Roland devices */
1781{
1782 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
1783 USB_DEVICE_ID_MATCH_INT_CLASS,
1784 .idVendor = 0x0582,
1785 .bInterfaceClass = USB_CLASS_VENDOR_SPEC,
1786 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
1787 .ifnum = QUIRK_ANY_INTERFACE,
1788 .type = QUIRK_AUTODETECT
1789 }
1790},
1791
1792/* Guillemot devices */
1793{
1794 /*
1795 * This is for the "Windows Edition" where the external MIDI ports are
1796 * the only MIDI ports; the control data is reported through HID
1797 * interfaces. The "Macintosh Edition" has ID 0xd002 and uses standard
1798 * compliant USB MIDI ports for external MIDI and controls.
1799 */
1800 USB_DEVICE_VENDOR_SPEC(0x06f8, 0xb000),
1801 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1802 .vendor_name = "Hercules",
1803 .product_name = "DJ Console (WE)",
1804 .ifnum = 4,
1805 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1806 .data = & (const struct snd_usb_midi_endpoint_info) {
1807 .out_cables = 0x0001,
1808 .in_cables = 0x0001
1809 }
1810 }
1811},
1812
1813/* Midiman/M-Audio devices */
1814{
1815 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1002),
1816 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1817 .vendor_name = "M-Audio",
1818 .product_name = "MidiSport 2x2",
1819 .ifnum = QUIRK_ANY_INTERFACE,
1820 .type = QUIRK_MIDI_MIDIMAN,
1821 .data = & (const struct snd_usb_midi_endpoint_info) {
1822 .out_cables = 0x0003,
1823 .in_cables = 0x0003
1824 }
1825 }
1826},
1827{
1828 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1011),
1829 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1830 .vendor_name = "M-Audio",
1831 .product_name = "MidiSport 1x1",
1832 .ifnum = QUIRK_ANY_INTERFACE,
1833 .type = QUIRK_MIDI_MIDIMAN,
1834 .data = & (const struct snd_usb_midi_endpoint_info) {
1835 .out_cables = 0x0001,
1836 .in_cables = 0x0001
1837 }
1838 }
1839},
1840{
1841 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1015),
1842 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1843 .vendor_name = "M-Audio",
1844 .product_name = "Keystation",
1845 .ifnum = QUIRK_ANY_INTERFACE,
1846 .type = QUIRK_MIDI_MIDIMAN,
1847 .data = & (const struct snd_usb_midi_endpoint_info) {
1848 .out_cables = 0x0001,
1849 .in_cables = 0x0001
1850 }
1851 }
1852},
1853{
1854 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1021),
1855 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1856 .vendor_name = "M-Audio",
1857 .product_name = "MidiSport 4x4",
1858 .ifnum = QUIRK_ANY_INTERFACE,
1859 .type = QUIRK_MIDI_MIDIMAN,
1860 .data = & (const struct snd_usb_midi_endpoint_info) {
1861 .out_cables = 0x000f,
1862 .in_cables = 0x000f
1863 }
1864 }
1865},
1866{
1867 /*
1868 * For hardware revision 1.05; in the later revisions (1.10 and
1869 * 1.21), 0x1031 is the ID for the device without firmware.
1870 * Thanks to Olaf Giesbrecht <Olaf_Giesbrecht@yahoo.de>
1871 */
1872 USB_DEVICE_VER(0x0763, 0x1031, 0x0100, 0x0109),
1873 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1874 .vendor_name = "M-Audio",
1875 .product_name = "MidiSport 8x8",
1876 .ifnum = QUIRK_ANY_INTERFACE,
1877 .type = QUIRK_MIDI_MIDIMAN,
1878 .data = & (const struct snd_usb_midi_endpoint_info) {
1879 .out_cables = 0x01ff,
1880 .in_cables = 0x01ff
1881 }
1882 }
1883},
1884{
1885 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1033),
1886 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1887 .vendor_name = "M-Audio",
1888 .product_name = "MidiSport 8x8",
1889 .ifnum = QUIRK_ANY_INTERFACE,
1890 .type = QUIRK_MIDI_MIDIMAN,
1891 .data = & (const struct snd_usb_midi_endpoint_info) {
1892 .out_cables = 0x01ff,
1893 .in_cables = 0x01ff
1894 }
1895 }
1896},
1897{
1898 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1041),
1899 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1900 .vendor_name = "M-Audio",
1901 .product_name = "MidiSport 2x4",
1902 .ifnum = QUIRK_ANY_INTERFACE,
1903 .type = QUIRK_MIDI_MIDIMAN,
1904 .data = & (const struct snd_usb_midi_endpoint_info) {
1905 .out_cables = 0x000f,
1906 .in_cables = 0x0003
1907 }
1908 }
1909},
1910{
1911 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2001),
1912 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1913 .vendor_name = "M-Audio",
1914 .product_name = "Quattro",
1915 .ifnum = QUIRK_ANY_INTERFACE,
1916 .type = QUIRK_COMPOSITE,
1917 .data = & (const struct snd_usb_audio_quirk[]) {
1918 /*
1919 * Interfaces 0-2 are "Windows-compatible", 16-bit only,
1920 * and share endpoints with the other interfaces.
1921 * Ignore them. The other interfaces can do 24 bits,
1922 * but captured samples are big-endian (see usbaudio.c).
1923 */
1924 {
1925 .ifnum = 0,
1926 .type = QUIRK_IGNORE_INTERFACE
1927 },
1928 {
1929 .ifnum = 1,
1930 .type = QUIRK_IGNORE_INTERFACE
1931 },
1932 {
1933 .ifnum = 2,
1934 .type = QUIRK_IGNORE_INTERFACE
1935 },
1936 {
1937 .ifnum = 3,
1938 .type = QUIRK_IGNORE_INTERFACE
1939 },
1940 {
1941 .ifnum = 4,
1942 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1943 },
1944 {
1945 .ifnum = 5,
1946 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1947 },
1948 {
1949 .ifnum = 6,
1950 .type = QUIRK_IGNORE_INTERFACE
1951 },
1952 {
1953 .ifnum = 7,
1954 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1955 },
1956 {
1957 .ifnum = 8,
1958 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1959 },
1960 {
1961 .ifnum = 9,
1962 .type = QUIRK_MIDI_MIDIMAN,
1963 .data = & (const struct snd_usb_midi_endpoint_info) {
1964 .out_cables = 0x0001,
1965 .in_cables = 0x0001
1966 }
1967 },
1968 {
1969 .ifnum = -1
1970 }
1971 }
1972 }
1973},
1974{
1975 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2003),
1976 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1977 .vendor_name = "M-Audio",
1978 .product_name = "AudioPhile",
1979 .ifnum = 6,
1980 .type = QUIRK_MIDI_MIDIMAN,
1981 .data = & (const struct snd_usb_midi_endpoint_info) {
1982 .out_cables = 0x0001,
1983 .in_cables = 0x0001
1984 }
1985 }
1986},
1987{
1988 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2008),
1989 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1990 .vendor_name = "M-Audio",
1991 .product_name = "Ozone",
1992 .ifnum = 3,
1993 .type = QUIRK_MIDI_MIDIMAN,
1994 .data = & (const struct snd_usb_midi_endpoint_info) {
1995 .out_cables = 0x0001,
1996 .in_cables = 0x0001
1997 }
1998 }
1999},
2000{
2001 USB_DEVICE_VENDOR_SPEC(0x0763, 0x200d),
2002 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2003 .vendor_name = "M-Audio",
2004 .product_name = "OmniStudio",
2005 .ifnum = QUIRK_ANY_INTERFACE,
2006 .type = QUIRK_COMPOSITE,
2007 .data = & (const struct snd_usb_audio_quirk[]) {
2008 {
2009 .ifnum = 0,
2010 .type = QUIRK_IGNORE_INTERFACE
2011 },
2012 {
2013 .ifnum = 1,
2014 .type = QUIRK_IGNORE_INTERFACE
2015 },
2016 {
2017 .ifnum = 2,
2018 .type = QUIRK_IGNORE_INTERFACE
2019 },
2020 {
2021 .ifnum = 3,
2022 .type = QUIRK_IGNORE_INTERFACE
2023 },
2024 {
2025 .ifnum = 4,
2026 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2027 },
2028 {
2029 .ifnum = 5,
2030 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2031 },
2032 {
2033 .ifnum = 6,
2034 .type = QUIRK_IGNORE_INTERFACE
2035 },
2036 {
2037 .ifnum = 7,
2038 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2039 },
2040 {
2041 .ifnum = 8,
2042 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2043 },
2044 {
2045 .ifnum = 9,
2046 .type = QUIRK_MIDI_MIDIMAN,
2047 .data = & (const struct snd_usb_midi_endpoint_info) {
2048 .out_cables = 0x0001,
2049 .in_cables = 0x0001
2050 }
2051 },
2052 {
2053 .ifnum = -1
2054 }
2055 }
2056 }
2057},
2058{
2059 USB_DEVICE(0x0763, 0x2019),
2060 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2061 /* .vendor_name = "M-Audio", */
2062 /* .product_name = "Ozone Academic", */
2063 .ifnum = QUIRK_ANY_INTERFACE,
2064 .type = QUIRK_COMPOSITE,
2065 .data = & (const struct snd_usb_audio_quirk[]) {
2066 {
2067 .ifnum = 0,
2068 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2069 },
2070 {
2071 .ifnum = 1,
2072 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2073 },
2074 {
2075 .ifnum = 2,
2076 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2077 },
2078 {
2079 .ifnum = 3,
2080 .type = QUIRK_MIDI_MIDIMAN,
2081 .data = & (const struct snd_usb_midi_endpoint_info) {
2082 .out_cables = 0x0001,
2083 .in_cables = 0x0001
2084 }
2085 },
2086 {
2087 .ifnum = -1
2088 }
2089 }
2090 }
2091},
2092{
2093 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2030),
2094 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2095 /* .vendor_name = "M-Audio", */
2096 /* .product_name = "Fast Track C400", */
2097 .ifnum = QUIRK_ANY_INTERFACE,
2098 .type = QUIRK_COMPOSITE,
2099 .data = &(const struct snd_usb_audio_quirk[]) {
2100 {
2101 .ifnum = 1,
2102 .type = QUIRK_AUDIO_STANDARD_MIXER,
2103 },
2104 /* Playback */
2105 {
2106 .ifnum = 2,
2107 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2108 .data = &(const struct audioformat) {
2109 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2110 .channels = 6,
2111 .iface = 2,
2112 .altsetting = 1,
2113 .altset_idx = 1,
2114 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2115 .endpoint = 0x01,
2116 .ep_attr = 0x09,
2117 .rates = SNDRV_PCM_RATE_44100 |
2118 SNDRV_PCM_RATE_48000 |
2119 SNDRV_PCM_RATE_88200 |
2120 SNDRV_PCM_RATE_96000,
2121 .rate_min = 44100,
2122 .rate_max = 96000,
2123 .nr_rates = 4,
2124 .rate_table = (unsigned int[]) {
2125 44100, 48000, 88200, 96000
2126 },
2127 .clock = 0x80,
2128 }
2129 },
2130 /* Capture */
2131 {
2132 .ifnum = 3,
2133 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2134 .data = &(const struct audioformat) {
2135 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2136 .channels = 4,
2137 .iface = 3,
2138 .altsetting = 1,
2139 .altset_idx = 1,
2140 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2141 .endpoint = 0x81,
2142 .ep_attr = 0x05,
2143 .rates = SNDRV_PCM_RATE_44100 |
2144 SNDRV_PCM_RATE_48000 |
2145 SNDRV_PCM_RATE_88200 |
2146 SNDRV_PCM_RATE_96000,
2147 .rate_min = 44100,
2148 .rate_max = 96000,
2149 .nr_rates = 4,
2150 .rate_table = (unsigned int[]) {
2151 44100, 48000, 88200, 96000
2152 },
2153 .clock = 0x80,
2154 }
2155 },
2156 /* MIDI */
2157 {
2158 .ifnum = -1 /* Interface = 4 */
2159 }
2160 }
2161 }
2162},
2163{
2164 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2031),
2165 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2166 /* .vendor_name = "M-Audio", */
2167 /* .product_name = "Fast Track C600", */
2168 .ifnum = QUIRK_ANY_INTERFACE,
2169 .type = QUIRK_COMPOSITE,
2170 .data = &(const struct snd_usb_audio_quirk[]) {
2171 {
2172 .ifnum = 1,
2173 .type = QUIRK_AUDIO_STANDARD_MIXER,
2174 },
2175 /* Playback */
2176 {
2177 .ifnum = 2,
2178 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2179 .data = &(const struct audioformat) {
2180 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2181 .channels = 8,
2182 .iface = 2,
2183 .altsetting = 1,
2184 .altset_idx = 1,
2185 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2186 .endpoint = 0x01,
2187 .ep_attr = 0x09,
2188 .rates = SNDRV_PCM_RATE_44100 |
2189 SNDRV_PCM_RATE_48000 |
2190 SNDRV_PCM_RATE_88200 |
2191 SNDRV_PCM_RATE_96000,
2192 .rate_min = 44100,
2193 .rate_max = 96000,
2194 .nr_rates = 4,
2195 .rate_table = (unsigned int[]) {
2196 44100, 48000, 88200, 96000
2197 },
2198 .clock = 0x80,
2199 }
2200 },
2201 /* Capture */
2202 {
2203 .ifnum = 3,
2204 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2205 .data = &(const struct audioformat) {
2206 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2207 .channels = 6,
2208 .iface = 3,
2209 .altsetting = 1,
2210 .altset_idx = 1,
2211 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2212 .endpoint = 0x81,
2213 .ep_attr = 0x05,
2214 .rates = SNDRV_PCM_RATE_44100 |
2215 SNDRV_PCM_RATE_48000 |
2216 SNDRV_PCM_RATE_88200 |
2217 SNDRV_PCM_RATE_96000,
2218 .rate_min = 44100,
2219 .rate_max = 96000,
2220 .nr_rates = 4,
2221 .rate_table = (unsigned int[]) {
2222 44100, 48000, 88200, 96000
2223 },
2224 .clock = 0x80,
2225 }
2226 },
2227 /* MIDI */
2228 {
2229 .ifnum = -1 /* Interface = 4 */
2230 }
2231 }
2232 }
2233},
2234{
2235 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2080),
2236 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2237 /* .vendor_name = "M-Audio", */
2238 /* .product_name = "Fast Track Ultra", */
2239 .ifnum = QUIRK_ANY_INTERFACE,
2240 .type = QUIRK_COMPOSITE,
2241 .data = & (const struct snd_usb_audio_quirk[]) {
2242 {
2243 .ifnum = 0,
2244 .type = QUIRK_AUDIO_STANDARD_MIXER,
2245 },
2246 {
2247 .ifnum = 1,
2248 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2249 .data = & (const struct audioformat) {
2250 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2251 .channels = 8,
2252 .iface = 1,
2253 .altsetting = 1,
2254 .altset_idx = 1,
2255 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2256 .endpoint = 0x01,
2257 .ep_attr = 0x09,
2258 .rates = SNDRV_PCM_RATE_44100 |
2259 SNDRV_PCM_RATE_48000 |
2260 SNDRV_PCM_RATE_88200 |
2261 SNDRV_PCM_RATE_96000,
2262 .rate_min = 44100,
2263 .rate_max = 96000,
2264 .nr_rates = 4,
2265 .rate_table = (unsigned int[]) {
2266 44100, 48000, 88200, 96000
2267 }
2268 }
2269 },
2270 {
2271 .ifnum = 2,
2272 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2273 .data = & (const struct audioformat) {
2274 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2275 .channels = 8,
2276 .iface = 2,
2277 .altsetting = 1,
2278 .altset_idx = 1,
2279 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2280 .endpoint = 0x81,
2281 .ep_attr = 0x05,
2282 .rates = SNDRV_PCM_RATE_44100 |
2283 SNDRV_PCM_RATE_48000 |
2284 SNDRV_PCM_RATE_88200 |
2285 SNDRV_PCM_RATE_96000,
2286 .rate_min = 44100,
2287 .rate_max = 96000,
2288 .nr_rates = 4,
2289 .rate_table = (unsigned int[]) {
2290 44100, 48000, 88200, 96000
2291 }
2292 }
2293 },
2294 /* interface 3 (MIDI) is standard compliant */
2295 {
2296 .ifnum = -1
2297 }
2298 }
2299 }
2300},
2301{
2302 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2081),
2303 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2304 /* .vendor_name = "M-Audio", */
2305 /* .product_name = "Fast Track Ultra 8R", */
2306 .ifnum = QUIRK_ANY_INTERFACE,
2307 .type = QUIRK_COMPOSITE,
2308 .data = & (const struct snd_usb_audio_quirk[]) {
2309 {
2310 .ifnum = 0,
2311 .type = QUIRK_AUDIO_STANDARD_MIXER,
2312 },
2313 {
2314 .ifnum = 1,
2315 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2316 .data = & (const struct audioformat) {
2317 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2318 .channels = 8,
2319 .iface = 1,
2320 .altsetting = 1,
2321 .altset_idx = 1,
2322 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2323 .endpoint = 0x01,
2324 .ep_attr = 0x09,
2325 .rates = SNDRV_PCM_RATE_44100 |
2326 SNDRV_PCM_RATE_48000 |
2327 SNDRV_PCM_RATE_88200 |
2328 SNDRV_PCM_RATE_96000,
2329 .rate_min = 44100,
2330 .rate_max = 96000,
2331 .nr_rates = 4,
2332 .rate_table = (unsigned int[]) {
2333 44100, 48000, 88200, 96000
2334 }
2335 }
2336 },
2337 {
2338 .ifnum = 2,
2339 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2340 .data = & (const struct audioformat) {
2341 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2342 .channels = 8,
2343 .iface = 2,
2344 .altsetting = 1,
2345 .altset_idx = 1,
2346 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2347 .endpoint = 0x81,
2348 .ep_attr = 0x05,
2349 .rates = SNDRV_PCM_RATE_44100 |
2350 SNDRV_PCM_RATE_48000 |
2351 SNDRV_PCM_RATE_88200 |
2352 SNDRV_PCM_RATE_96000,
2353 .rate_min = 44100,
2354 .rate_max = 96000,
2355 .nr_rates = 4,
2356 .rate_table = (unsigned int[]) {
2357 44100, 48000, 88200, 96000
2358 }
2359 }
2360 },
2361 /* interface 3 (MIDI) is standard compliant */
2362 {
2363 .ifnum = -1
2364 }
2365 }
2366 }
2367},
2368
2369/* Casio devices */
2370{
2371 USB_DEVICE(0x07cf, 0x6801),
2372 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2373 .vendor_name = "Casio",
2374 .product_name = "PL-40R",
2375 .ifnum = 0,
2376 .type = QUIRK_MIDI_YAMAHA
2377 }
2378},
2379{
2380 /* this ID is used by several devices without a product ID */
2381 USB_DEVICE(0x07cf, 0x6802),
2382 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2383 .vendor_name = "Casio",
2384 .product_name = "Keyboard",
2385 .ifnum = 0,
2386 .type = QUIRK_MIDI_YAMAHA
2387 }
2388},
2389
2390/* Mark of the Unicorn devices */
2391{
2392 /* thanks to Robert A. Lerche <ral 'at' msbit.com> */
2393 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
2394 USB_DEVICE_ID_MATCH_PRODUCT |
2395 USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
2396 .idVendor = 0x07fd,
2397 .idProduct = 0x0001,
2398 .bDeviceSubClass = 2,
2399 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2400 .vendor_name = "MOTU",
2401 .product_name = "Fastlane",
2402 .ifnum = QUIRK_ANY_INTERFACE,
2403 .type = QUIRK_COMPOSITE,
2404 .data = & (const struct snd_usb_audio_quirk[]) {
2405 {
2406 .ifnum = 0,
2407 .type = QUIRK_MIDI_RAW_BYTES
2408 },
2409 {
2410 .ifnum = 1,
2411 .type = QUIRK_IGNORE_INTERFACE
2412 },
2413 {
2414 .ifnum = -1
2415 }
2416 }
2417 }
2418},
2419
2420/* Emagic devices */
2421{
2422 USB_DEVICE(0x086a, 0x0001),
2423 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2424 .vendor_name = "Emagic",
2425 /* .product_name = "Unitor8", */
2426 .ifnum = 2,
2427 .type = QUIRK_MIDI_EMAGIC,
2428 .data = & (const struct snd_usb_midi_endpoint_info) {
2429 .out_cables = 0x80ff,
2430 .in_cables = 0x80ff
2431 }
2432 }
2433},
2434{
2435 USB_DEVICE(0x086a, 0x0002),
2436 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2437 .vendor_name = "Emagic",
2438 /* .product_name = "AMT8", */
2439 .ifnum = 2,
2440 .type = QUIRK_MIDI_EMAGIC,
2441 .data = & (const struct snd_usb_midi_endpoint_info) {
2442 .out_cables = 0x80ff,
2443 .in_cables = 0x80ff
2444 }
2445 }
2446},
2447{
2448 USB_DEVICE(0x086a, 0x0003),
2449 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2450 .vendor_name = "Emagic",
2451 /* .product_name = "MT4", */
2452 .ifnum = 2,
2453 .type = QUIRK_MIDI_EMAGIC,
2454 .data = & (const struct snd_usb_midi_endpoint_info) {
2455 .out_cables = 0x800f,
2456 .in_cables = 0x8003
2457 }
2458 }
2459},
2460
2461/* KORG devices */
2462{
2463 USB_DEVICE_VENDOR_SPEC(0x0944, 0x0200),
2464 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2465 .vendor_name = "KORG, Inc.",
2466 /* .product_name = "PANDORA PX5D", */
2467 .ifnum = 3,
2468 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2469 }
2470},
2471
2472{
2473 USB_DEVICE_VENDOR_SPEC(0x0944, 0x0201),
2474 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2475 .vendor_name = "KORG, Inc.",
2476 /* .product_name = "ToneLab ST", */
2477 .ifnum = 3,
2478 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2479 }
2480},
2481
2482/* AKAI devices */
2483{
2484 USB_DEVICE(0x09e8, 0x0062),
2485 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2486 .vendor_name = "AKAI",
2487 .product_name = "MPD16",
2488 .ifnum = 0,
2489 .type = QUIRK_MIDI_AKAI,
2490 }
2491},
2492
2493{
2494 /* Akai MPC Element */
2495 USB_DEVICE(0x09e8, 0x0021),
2496 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2497 .ifnum = QUIRK_ANY_INTERFACE,
2498 .type = QUIRK_COMPOSITE,
2499 .data = & (const struct snd_usb_audio_quirk[]) {
2500 {
2501 .ifnum = 0,
2502 .type = QUIRK_IGNORE_INTERFACE
2503 },
2504 {
2505 .ifnum = 1,
2506 .type = QUIRK_MIDI_STANDARD_INTERFACE
2507 },
2508 {
2509 .ifnum = -1
2510 }
2511 }
2512 }
2513},
2514
2515/* Steinberg devices */
2516{
2517 /* Steinberg MI2 */
2518 USB_DEVICE_VENDOR_SPEC(0x0a4e, 0x2040),
2519 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2520 .ifnum = QUIRK_ANY_INTERFACE,
2521 .type = QUIRK_COMPOSITE,
2522 .data = & (const struct snd_usb_audio_quirk[]) {
2523 {
2524 .ifnum = 0,
2525 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2526 },
2527 {
2528 .ifnum = 1,
2529 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2530 },
2531 {
2532 .ifnum = 2,
2533 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2534 },
2535 {
2536 .ifnum = 3,
2537 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2538 .data = &(const struct snd_usb_midi_endpoint_info) {
2539 .out_cables = 0x0001,
2540 .in_cables = 0x0001
2541 }
2542 },
2543 {
2544 .ifnum = -1
2545 }
2546 }
2547 }
2548},
2549{
2550 /* Steinberg MI4 */
2551 USB_DEVICE_VENDOR_SPEC(0x0a4e, 0x4040),
2552 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2553 .ifnum = QUIRK_ANY_INTERFACE,
2554 .type = QUIRK_COMPOSITE,
2555 .data = & (const struct snd_usb_audio_quirk[]) {
2556 {
2557 .ifnum = 0,
2558 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2559 },
2560 {
2561 .ifnum = 1,
2562 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2563 },
2564 {
2565 .ifnum = 2,
2566 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2567 },
2568 {
2569 .ifnum = 3,
2570 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2571 .data = &(const struct snd_usb_midi_endpoint_info) {
2572 .out_cables = 0x0001,
2573 .in_cables = 0x0001
2574 }
2575 },
2576 {
2577 .ifnum = -1
2578 }
2579 }
2580 }
2581},
2582
2583/* TerraTec devices */
2584{
2585 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0012),
2586 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2587 .vendor_name = "TerraTec",
2588 .product_name = "PHASE 26",
2589 .ifnum = 3,
2590 .type = QUIRK_MIDI_STANDARD_INTERFACE
2591 }
2592},
2593{
2594 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0013),
2595 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2596 .vendor_name = "TerraTec",
2597 .product_name = "PHASE 26",
2598 .ifnum = 3,
2599 .type = QUIRK_MIDI_STANDARD_INTERFACE
2600 }
2601},
2602{
2603 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0014),
2604 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2605 .vendor_name = "TerraTec",
2606 .product_name = "PHASE 26",
2607 .ifnum = 3,
2608 .type = QUIRK_MIDI_STANDARD_INTERFACE
2609 }
2610},
2611{
2612 USB_DEVICE(0x0ccd, 0x0028),
2613 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2614 .vendor_name = "TerraTec",
2615 .product_name = "Aureon5.1MkII",
2616 .ifnum = QUIRK_NO_INTERFACE
2617 }
2618},
2619{
2620 USB_DEVICE(0x0ccd, 0x0035),
2621 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2622 .vendor_name = "Miditech",
2623 .product_name = "Play'n Roll",
2624 .ifnum = 0,
2625 .type = QUIRK_MIDI_CME
2626 }
2627},
2628
2629/* Stanton/N2IT Final Scratch v1 device ('Scratchamp') */
2630{
2631 USB_DEVICE(0x103d, 0x0100),
2632 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2633 .vendor_name = "Stanton",
2634 .product_name = "ScratchAmp",
2635 .ifnum = QUIRK_NO_INTERFACE
2636 }
2637},
2638{
2639 USB_DEVICE(0x103d, 0x0101),
2640 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2641 .vendor_name = "Stanton",
2642 .product_name = "ScratchAmp",
2643 .ifnum = QUIRK_NO_INTERFACE
2644 }
2645},
2646
2647/* Novation EMS devices */
2648{
2649 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0001),
2650 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2651 .vendor_name = "Novation",
2652 .product_name = "ReMOTE Audio/XStation",
2653 .ifnum = 4,
2654 .type = QUIRK_MIDI_NOVATION
2655 }
2656},
2657{
2658 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0002),
2659 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2660 .vendor_name = "Novation",
2661 .product_name = "Speedio",
2662 .ifnum = 3,
2663 .type = QUIRK_MIDI_NOVATION
2664 }
2665},
2666{
2667 USB_DEVICE(0x1235, 0x000a),
2668 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2669 /* .vendor_name = "Novation", */
2670 /* .product_name = "Nocturn", */
2671 .ifnum = 0,
2672 .type = QUIRK_MIDI_RAW_BYTES
2673 }
2674},
2675{
2676 USB_DEVICE(0x1235, 0x000e),
2677 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2678 /* .vendor_name = "Novation", */
2679 /* .product_name = "Launchpad", */
2680 .ifnum = 0,
2681 .type = QUIRK_MIDI_RAW_BYTES
2682 }
2683},
2684{
2685 USB_DEVICE(0x1235, 0x0010),
2686 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2687 .vendor_name = "Focusrite",
2688 .product_name = "Saffire 6 USB",
2689 .ifnum = QUIRK_ANY_INTERFACE,
2690 .type = QUIRK_COMPOSITE,
2691 .data = (const struct snd_usb_audio_quirk[]) {
2692 {
2693 .ifnum = 0,
2694 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2695 .data = &(const struct audioformat) {
2696 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2697 .channels = 4,
2698 .iface = 0,
2699 .altsetting = 1,
2700 .altset_idx = 1,
2701 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2702 .endpoint = 0x01,
2703 .ep_attr = USB_ENDPOINT_XFER_ISOC,
2704 .rates = SNDRV_PCM_RATE_44100 |
2705 SNDRV_PCM_RATE_48000,
2706 .rate_min = 44100,
2707 .rate_max = 48000,
2708 .nr_rates = 2,
2709 .rate_table = (unsigned int[]) {
2710 44100, 48000
2711 }
2712 }
2713 },
2714 {
2715 .ifnum = 1,
2716 .type = QUIRK_MIDI_RAW_BYTES
2717 },
2718 {
2719 .ifnum = -1
2720 }
2721 }
2722 }
2723},
2724{
2725 USB_DEVICE(0x1235, 0x0018),
2726 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2727 .vendor_name = "Novation",
2728 .product_name = "Twitch",
2729 .ifnum = QUIRK_ANY_INTERFACE,
2730 .type = QUIRK_COMPOSITE,
2731 .data = (const struct snd_usb_audio_quirk[]) {
2732 {
2733 .ifnum = 0,
2734 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2735 .data = & (const struct audioformat) {
2736 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2737 .channels = 4,
2738 .iface = 0,
2739 .altsetting = 1,
2740 .altset_idx = 1,
2741 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2742 .endpoint = 0x01,
2743 .ep_attr = USB_ENDPOINT_XFER_ISOC,
2744 .rates = SNDRV_PCM_RATE_44100 |
2745 SNDRV_PCM_RATE_48000,
2746 .rate_min = 44100,
2747 .rate_max = 48000,
2748 .nr_rates = 2,
2749 .rate_table = (unsigned int[]) {
2750 44100, 48000
2751 }
2752 }
2753 },
2754 {
2755 .ifnum = 1,
2756 .type = QUIRK_MIDI_RAW_BYTES
2757 },
2758 {
2759 .ifnum = -1
2760 }
2761 }
2762 }
2763},
2764{
2765 USB_DEVICE_VENDOR_SPEC(0x1235, 0x4661),
2766 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2767 .vendor_name = "Novation",
2768 .product_name = "ReMOTE25",
2769 .ifnum = 0,
2770 .type = QUIRK_MIDI_NOVATION
2771 }
2772},
2773
2774/* Access Music devices */
2775{
2776 /* VirusTI Desktop */
2777 USB_DEVICE_VENDOR_SPEC(0x133e, 0x0815),
2778 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2779 .ifnum = QUIRK_ANY_INTERFACE,
2780 .type = QUIRK_COMPOSITE,
2781 .data = &(const struct snd_usb_audio_quirk[]) {
2782 {
2783 .ifnum = 3,
2784 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2785 .data = &(const struct snd_usb_midi_endpoint_info) {
2786 .out_cables = 0x0003,
2787 .in_cables = 0x0003
2788 }
2789 },
2790 {
2791 .ifnum = 4,
2792 .type = QUIRK_IGNORE_INTERFACE
2793 },
2794 {
2795 .ifnum = -1
2796 }
2797 }
2798 }
2799},
2800
2801/* */
2802{
2803 /* aka. Serato Scratch Live DJ Box */
2804 USB_DEVICE(0x13e5, 0x0001),
2805 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2806 .vendor_name = "Rane",
2807 .product_name = "SL-1",
2808 .ifnum = QUIRK_NO_INTERFACE
2809 }
2810},
2811
2812/* Native Instruments MK2 series */
2813{
2814 /* Komplete Audio 6 */
2815 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2816 .idVendor = 0x17cc,
2817 .idProduct = 0x1000,
2818},
2819{
2820 /* Traktor Audio 6 */
2821 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2822 .idVendor = 0x17cc,
2823 .idProduct = 0x1010,
2824},
2825{
2826 /* Traktor Audio 10 */
2827 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2828 .idVendor = 0x17cc,
2829 .idProduct = 0x1020,
2830},
2831
2832/* QinHeng devices */
2833{
2834 USB_DEVICE(0x1a86, 0x752d),
2835 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2836 .vendor_name = "QinHeng",
2837 .product_name = "CH345",
2838 .ifnum = 1,
2839 .type = QUIRK_MIDI_CH345
2840 }
2841},
2842
2843/* KeithMcMillen Stringport */
2844{
2845 USB_DEVICE(0x1f38, 0x0001),
2846 .bInterfaceClass = USB_CLASS_AUDIO,
2847},
2848
2849/* Miditech devices */
2850{
2851 USB_DEVICE(0x4752, 0x0011),
2852 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2853 .vendor_name = "Miditech",
2854 .product_name = "Midistart-2",
2855 .ifnum = 0,
2856 .type = QUIRK_MIDI_CME
2857 }
2858},
2859
2860/* Central Music devices */
2861{
2862 /* this ID used by both Miditech MidiStudio-2 and CME UF-x */
2863 USB_DEVICE(0x7104, 0x2202),
2864 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2865 .ifnum = 0,
2866 .type = QUIRK_MIDI_CME
2867 }
2868},
2869
2870/*
2871 * Auvitek au0828 devices with audio interface.
2872 * This should be kept in sync with drivers/media/usb/au0828/au0828-cards.c
2873 * Please notice that some drivers are DVB only, and don't need to be
2874 * here. That's the case, for example, of DVICO_FUSIONHDTV7.
2875 */
2876
2877#define AU0828_DEVICE(vid, pid, vname, pname) { \
2878 USB_DEVICE_VENDOR_SPEC(vid, pid), \
2879 .match_flags = USB_DEVICE_ID_MATCH_DEVICE | \
2880 USB_DEVICE_ID_MATCH_INT_CLASS | \
2881 USB_DEVICE_ID_MATCH_INT_SUBCLASS, \
2882 .bInterfaceClass = USB_CLASS_AUDIO, \
2883 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL, \
2884 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) { \
2885 .vendor_name = vname, \
2886 .product_name = pname, \
2887 .ifnum = QUIRK_ANY_INTERFACE, \
2888 .type = QUIRK_AUDIO_ALIGN_TRANSFER, \
2889 } \
2890}
2891
2892AU0828_DEVICE(0x2040, 0x7200, "Hauppauge", "HVR-950Q"),
2893AU0828_DEVICE(0x2040, 0x7240, "Hauppauge", "HVR-850"),
2894AU0828_DEVICE(0x2040, 0x7210, "Hauppauge", "HVR-950Q"),
2895AU0828_DEVICE(0x2040, 0x7217, "Hauppauge", "HVR-950Q"),
2896AU0828_DEVICE(0x2040, 0x721b, "Hauppauge", "HVR-950Q"),
2897AU0828_DEVICE(0x2040, 0x721e, "Hauppauge", "HVR-950Q"),
2898AU0828_DEVICE(0x2040, 0x721f, "Hauppauge", "HVR-950Q"),
2899AU0828_DEVICE(0x2040, 0x7280, "Hauppauge", "HVR-950Q"),
2900AU0828_DEVICE(0x0fd9, 0x0008, "Hauppauge", "HVR-950Q"),
2901AU0828_DEVICE(0x2040, 0x7201, "Hauppauge", "HVR-950Q-MXL"),
2902AU0828_DEVICE(0x2040, 0x7211, "Hauppauge", "HVR-950Q-MXL"),
2903AU0828_DEVICE(0x2040, 0x7281, "Hauppauge", "HVR-950Q-MXL"),
2904AU0828_DEVICE(0x05e1, 0x0480, "Hauppauge", "Woodbury"),
2905AU0828_DEVICE(0x2040, 0x8200, "Hauppauge", "Woodbury"),
2906AU0828_DEVICE(0x2040, 0x7260, "Hauppauge", "HVR-950Q"),
2907AU0828_DEVICE(0x2040, 0x7213, "Hauppauge", "HVR-950Q"),
2908AU0828_DEVICE(0x2040, 0x7270, "Hauppauge", "HVR-950Q"),
2909
2910/* Syntek STK1160 */
2911{
2912 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2913 USB_DEVICE_ID_MATCH_INT_CLASS |
2914 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2915 .idVendor = 0x05e1,
2916 .idProduct = 0x0408,
2917 .bInterfaceClass = USB_CLASS_AUDIO,
2918 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2919 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2920 .vendor_name = "Syntek",
2921 .product_name = "STK1160",
2922 .ifnum = QUIRK_ANY_INTERFACE,
2923 .type = QUIRK_AUDIO_ALIGN_TRANSFER
2924 }
2925},
2926
2927/* Digidesign Mbox */
2928{
2929 /* Thanks to Clemens Ladisch <clemens@ladisch.de> */
2930 USB_DEVICE(0x0dba, 0x1000),
2931 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2932 .vendor_name = "Digidesign",
2933 .product_name = "MBox",
2934 .ifnum = QUIRK_ANY_INTERFACE,
2935 .type = QUIRK_COMPOSITE,
2936 .data = (const struct snd_usb_audio_quirk[]){
2937 {
2938 .ifnum = 0,
2939 .type = QUIRK_AUDIO_STANDARD_MIXER,
2940 },
2941 {
2942 .ifnum = 1,
2943 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2944 .data = &(const struct audioformat) {
2945 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2946 .channels = 2,
2947 .iface = 1,
2948 .altsetting = 1,
2949 .altset_idx = 1,
2950 .attributes = 0x4,
2951 .endpoint = 0x02,
2952 .ep_attr = USB_ENDPOINT_XFER_ISOC |
2953 USB_ENDPOINT_SYNC_SYNC,
2954 .maxpacksize = 0x130,
2955 .rates = SNDRV_PCM_RATE_48000,
2956 .rate_min = 48000,
2957 .rate_max = 48000,
2958 .nr_rates = 1,
2959 .rate_table = (unsigned int[]) {
2960 48000
2961 }
2962 }
2963 },
2964 {
2965 .ifnum = 1,
2966 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2967 .data = &(const struct audioformat) {
2968 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2969 .channels = 2,
2970 .iface = 1,
2971 .altsetting = 1,
2972 .altset_idx = 1,
2973 .attributes = 0x4,
2974 .endpoint = 0x81,
2975 .ep_attr = USB_ENDPOINT_XFER_ISOC |
2976 USB_ENDPOINT_SYNC_ASYNC,
2977 .maxpacksize = 0x130,
2978 .rates = SNDRV_PCM_RATE_48000,
2979 .rate_min = 48000,
2980 .rate_max = 48000,
2981 .nr_rates = 1,
2982 .rate_table = (unsigned int[]) {
2983 48000
2984 }
2985 }
2986 },
2987 {
2988 .ifnum = -1
2989 }
2990 }
2991 }
2992},
2993
2994/* DIGIDESIGN MBOX 2 */
2995{
2996 USB_DEVICE(0x0dba, 0x3000),
2997 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2998 .vendor_name = "Digidesign",
2999 .product_name = "Mbox 2",
3000 .ifnum = QUIRK_ANY_INTERFACE,
3001 .type = QUIRK_COMPOSITE,
3002 .data = (const struct snd_usb_audio_quirk[]) {
3003 {
3004 .ifnum = 0,
3005 .type = QUIRK_IGNORE_INTERFACE
3006 },
3007 {
3008 .ifnum = 1,
3009 .type = QUIRK_IGNORE_INTERFACE
3010 },
3011 {
3012 .ifnum = 2,
3013 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3014 .data = &(const struct audioformat) {
3015 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
3016 .channels = 2,
3017 .iface = 2,
3018 .altsetting = 2,
3019 .altset_idx = 1,
3020 .attributes = 0x00,
3021 .endpoint = 0x03,
3022 .ep_attr = USB_ENDPOINT_SYNC_ASYNC,
3023 .rates = SNDRV_PCM_RATE_48000,
3024 .rate_min = 48000,
3025 .rate_max = 48000,
3026 .nr_rates = 1,
3027 .rate_table = (unsigned int[]) {
3028 48000
3029 }
3030 }
3031 },
3032 {
3033 .ifnum = 3,
3034 .type = QUIRK_IGNORE_INTERFACE
3035 },
3036 {
3037 .ifnum = 4,
3038 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3039 .data = &(const struct audioformat) {
3040 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
3041 .channels = 2,
3042 .iface = 4,
3043 .altsetting = 2,
3044 .altset_idx = 1,
3045 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3046 .endpoint = 0x85,
3047 .ep_attr = USB_ENDPOINT_SYNC_SYNC,
3048 .rates = SNDRV_PCM_RATE_48000,
3049 .rate_min = 48000,
3050 .rate_max = 48000,
3051 .nr_rates = 1,
3052 .rate_table = (unsigned int[]) {
3053 48000
3054 }
3055 }
3056 },
3057 {
3058 .ifnum = 5,
3059 .type = QUIRK_IGNORE_INTERFACE
3060 },
3061 {
3062 .ifnum = 6,
3063 .type = QUIRK_MIDI_MIDIMAN,
3064 .data = &(const struct snd_usb_midi_endpoint_info) {
3065 .out_ep = 0x02,
3066 .out_cables = 0x0001,
3067 .in_ep = 0x81,
3068 .in_interval = 0x01,
3069 .in_cables = 0x0001
3070 }
3071 },
3072 {
3073 .ifnum = -1
3074 }
3075 }
3076 }
3077},
3078{
3079 /* Tascam US122 MKII - playback-only support */
3080 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
3081 .idVendor = 0x0644,
3082 .idProduct = 0x8021,
3083 .bInterfaceClass = USB_CLASS_AUDIO,
3084 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3085 .vendor_name = "TASCAM",
3086 .product_name = "US122 MKII",
3087 .ifnum = QUIRK_ANY_INTERFACE,
3088 .type = QUIRK_COMPOSITE,
3089 .data = (const struct snd_usb_audio_quirk[]) {
3090 {
3091 .ifnum = 0,
3092 .type = QUIRK_IGNORE_INTERFACE
3093 },
3094 {
3095 .ifnum = 1,
3096 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3097 .data = &(const struct audioformat) {
3098 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3099 .channels = 2,
3100 .iface = 1,
3101 .altsetting = 1,
3102 .altset_idx = 1,
3103 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3104 .endpoint = 0x02,
3105 .ep_attr = USB_ENDPOINT_XFER_ISOC,
3106 .rates = SNDRV_PCM_RATE_44100 |
3107 SNDRV_PCM_RATE_48000 |
3108 SNDRV_PCM_RATE_88200 |
3109 SNDRV_PCM_RATE_96000,
3110 .rate_min = 44100,
3111 .rate_max = 96000,
3112 .nr_rates = 4,
3113 .rate_table = (unsigned int[]) {
3114 44100, 48000, 88200, 96000
3115 }
3116 }
3117 },
3118 {
3119 .ifnum = -1
3120 }
3121 }
3122 }
3123},
3124
3125/* Microsoft XboxLive Headset/Xbox Communicator */
3126{
3127 USB_DEVICE(0x045e, 0x0283),
3128 .bInterfaceClass = USB_CLASS_PER_INTERFACE,
3129 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3130 .vendor_name = "Microsoft",
3131 .product_name = "XboxLive Headset/Xbox Communicator",
3132 .ifnum = QUIRK_ANY_INTERFACE,
3133 .type = QUIRK_COMPOSITE,
3134 .data = &(const struct snd_usb_audio_quirk[]) {
3135 {
3136 /* playback */
3137 .ifnum = 0,
3138 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3139 .data = &(const struct audioformat) {
3140 .formats = SNDRV_PCM_FMTBIT_S16_LE,
3141 .channels = 1,
3142 .iface = 0,
3143 .altsetting = 0,
3144 .altset_idx = 0,
3145 .attributes = 0,
3146 .endpoint = 0x04,
3147 .ep_attr = 0x05,
3148 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3149 .rate_min = 22050,
3150 .rate_max = 22050
3151 }
3152 },
3153 {
3154 /* capture */
3155 .ifnum = 1,
3156 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3157 .data = &(const struct audioformat) {
3158 .formats = SNDRV_PCM_FMTBIT_S16_LE,
3159 .channels = 1,
3160 .iface = 1,
3161 .altsetting = 0,
3162 .altset_idx = 0,
3163 .attributes = 0,
3164 .endpoint = 0x85,
3165 .ep_attr = 0x05,
3166 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3167 .rate_min = 16000,
3168 .rate_max = 16000
3169 }
3170 },
3171 {
3172 .ifnum = -1
3173 }
3174 }
3175 }
3176},
3177
3178/* Reloop Play */
3179{
3180 USB_DEVICE(0x200c, 0x100b),
3181 .bInterfaceClass = USB_CLASS_PER_INTERFACE,
3182 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3183 .ifnum = QUIRK_ANY_INTERFACE,
3184 .type = QUIRK_COMPOSITE,
3185 .data = &(const struct snd_usb_audio_quirk[]) {
3186 {
3187 .ifnum = 0,
3188 .type = QUIRK_AUDIO_STANDARD_MIXER,
3189 },
3190 {
3191 .ifnum = 1,
3192 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3193 .data = &(const struct audioformat) {
3194 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3195 .channels = 4,
3196 .iface = 1,
3197 .altsetting = 1,
3198 .altset_idx = 1,
3199 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3200 .endpoint = 0x01,
3201 .ep_attr = USB_ENDPOINT_SYNC_ADAPTIVE,
3202 .rates = SNDRV_PCM_RATE_44100 |
3203 SNDRV_PCM_RATE_48000,
3204 .rate_min = 44100,
3205 .rate_max = 48000,
3206 .nr_rates = 2,
3207 .rate_table = (unsigned int[]) {
3208 44100, 48000
3209 }
3210 }
3211 },
3212 {
3213 .ifnum = -1
3214 }
3215 }
3216 }
3217},
3218
3219{
3220 /*
3221 * ZOOM R16/24 in audio interface mode.
3222 * Playback requires an extra four byte LE length indicator
3223 * at the start of each isochronous packet. This quirk is
3224 * enabled in create_standard_audio_quirk().
3225 */
3226 USB_DEVICE(0x1686, 0x00dd),
3227 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
3228 .ifnum = QUIRK_ANY_INTERFACE,
3229 .type = QUIRK_COMPOSITE,
3230 .data = (const struct snd_usb_audio_quirk[]) {
3231 {
3232 /* Playback */
3233 .ifnum = 1,
3234 .type = QUIRK_AUDIO_STANDARD_INTERFACE,
3235 },
3236 {
3237 /* Capture */
3238 .ifnum = 2,
3239 .type = QUIRK_AUDIO_STANDARD_INTERFACE,
3240 },
3241 {
3242 /* Midi */
3243 .ifnum = 3,
3244 .type = QUIRK_MIDI_STANDARD_INTERFACE
3245 },
3246 {
3247 .ifnum = -1
3248 },
3249 }
3250 }
3251},
3252
3253{
3254 /*
3255 * Some USB MIDI devices don't have an audio control interface,
3256 * so we have to grab MIDI streaming interfaces here.
3257 */
3258 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS |
3259 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
3260 .bInterfaceClass = USB_CLASS_AUDIO,
3261 .bInterfaceSubClass = USB_SUBCLASS_MIDISTREAMING,
3262 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
3263 .ifnum = QUIRK_ANY_INTERFACE,
3264 .type = QUIRK_MIDI_STANDARD_INTERFACE
3265 }
3266},
3267
3268{
3269 /*
3270 * The original product_name is "USB Sound Device", however this name
3271 * is also used by the CM106 based cards, so make it unique.
3272 */
3273 USB_DEVICE(0x0d8c, 0x0103),
3274 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3275 .product_name = "Audio Advantage MicroII",
3276 .ifnum = QUIRK_NO_INTERFACE
3277 }
3278},
3279
3280#undef USB_DEVICE_VENDOR_SPEC