blob: 2ad5d772cd927dda15feb6e8cd9e7904cab9ede6 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/*
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/* Creative/Toshiba Multimedia Center SB-0500 */
54{
55 USB_DEVICE(0x041e, 0x3048),
56 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
57 .vendor_name = "Toshiba",
58 .product_name = "SB-0500",
59 .ifnum = QUIRK_NO_INTERFACE
60 }
61},
62
63/* Creative/E-Mu devices */
64{
65 USB_DEVICE(0x041e, 0x3010),
66 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
67 .vendor_name = "Creative Labs",
68 .product_name = "Sound Blaster MP3+",
69 .ifnum = QUIRK_NO_INTERFACE
70 }
71},
72{
73 /* E-Mu 0202 USB */
74 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
75 .idVendor = 0x041e,
76 .idProduct = 0x3f02,
77 .bInterfaceClass = USB_CLASS_AUDIO,
78},
79{
80 /* E-Mu 0404 USB */
81 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
82 .idVendor = 0x041e,
83 .idProduct = 0x3f04,
84 .bInterfaceClass = USB_CLASS_AUDIO,
85},
86{
87 /* E-Mu Tracker Pre */
88 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
89 .idVendor = 0x041e,
90 .idProduct = 0x3f0a,
91 .bInterfaceClass = USB_CLASS_AUDIO,
92},
93{
94 /* E-Mu 0204 USB */
95 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
96 .idVendor = 0x041e,
97 .idProduct = 0x3f19,
98 .bInterfaceClass = USB_CLASS_AUDIO,
99},
100
101/*
102 * Logitech QuickCam: bDeviceClass is vendor-specific, so generic interface
103 * class matches do not take effect without an explicit ID match.
104 */
105{
106 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
107 USB_DEVICE_ID_MATCH_INT_CLASS |
108 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
109 .idVendor = 0x046d,
110 .idProduct = 0x0850,
111 .bInterfaceClass = USB_CLASS_AUDIO,
112 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
113},
114{
115 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
116 USB_DEVICE_ID_MATCH_INT_CLASS |
117 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
118 .idVendor = 0x046d,
119 .idProduct = 0x08ae,
120 .bInterfaceClass = USB_CLASS_AUDIO,
121 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
122},
123{
124 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
125 USB_DEVICE_ID_MATCH_INT_CLASS |
126 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
127 .idVendor = 0x046d,
128 .idProduct = 0x08c6,
129 .bInterfaceClass = USB_CLASS_AUDIO,
130 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
131},
132{
133 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
134 USB_DEVICE_ID_MATCH_INT_CLASS |
135 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
136 .idVendor = 0x046d,
137 .idProduct = 0x08f0,
138 .bInterfaceClass = USB_CLASS_AUDIO,
139 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
140},
141{
142 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
143 USB_DEVICE_ID_MATCH_INT_CLASS |
144 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
145 .idVendor = 0x046d,
146 .idProduct = 0x08f5,
147 .bInterfaceClass = USB_CLASS_AUDIO,
148 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
149},
150{
151 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
152 USB_DEVICE_ID_MATCH_INT_CLASS |
153 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
154 .idVendor = 0x046d,
155 .idProduct = 0x08f6,
156 .bInterfaceClass = USB_CLASS_AUDIO,
157 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
158},
159{
160 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
161 USB_DEVICE_ID_MATCH_INT_CLASS |
162 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
163 .idVendor = 0x046d,
164 .idProduct = 0x0990,
165 .bInterfaceClass = USB_CLASS_AUDIO,
166 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
167 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
168 .vendor_name = "Logitech, Inc.",
169 .product_name = "QuickCam Pro 9000",
170 .ifnum = QUIRK_NO_INTERFACE
171 }
172},
173
174/*
175 * Yamaha devices
176 */
177
178#define YAMAHA_DEVICE(id, name) { \
179 USB_DEVICE(0x0499, id), \
180 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
181 .vendor_name = "Yamaha", \
182 .product_name = name, \
183 .ifnum = QUIRK_ANY_INTERFACE, \
184 .type = QUIRK_MIDI_YAMAHA \
185 } \
186}
187#define YAMAHA_INTERFACE(id, intf, name) { \
188 USB_DEVICE_VENDOR_SPEC(0x0499, id), \
189 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
190 .vendor_name = "Yamaha", \
191 .product_name = name, \
192 .ifnum = intf, \
193 .type = QUIRK_MIDI_YAMAHA \
194 } \
195}
196YAMAHA_DEVICE(0x1000, "UX256"),
197YAMAHA_DEVICE(0x1001, "MU1000"),
198YAMAHA_DEVICE(0x1002, "MU2000"),
199YAMAHA_DEVICE(0x1003, "MU500"),
200YAMAHA_INTERFACE(0x1004, 3, "UW500"),
201YAMAHA_DEVICE(0x1005, "MOTIF6"),
202YAMAHA_DEVICE(0x1006, "MOTIF7"),
203YAMAHA_DEVICE(0x1007, "MOTIF8"),
204YAMAHA_DEVICE(0x1008, "UX96"),
205YAMAHA_DEVICE(0x1009, "UX16"),
206YAMAHA_INTERFACE(0x100a, 3, "EOS BX"),
207YAMAHA_DEVICE(0x100c, "UC-MX"),
208YAMAHA_DEVICE(0x100d, "UC-KX"),
209YAMAHA_DEVICE(0x100e, "S08"),
210YAMAHA_DEVICE(0x100f, "CLP-150"),
211YAMAHA_DEVICE(0x1010, "CLP-170"),
212YAMAHA_DEVICE(0x1011, "P-250"),
213YAMAHA_DEVICE(0x1012, "TYROS"),
214YAMAHA_DEVICE(0x1013, "PF-500"),
215YAMAHA_DEVICE(0x1014, "S90"),
216YAMAHA_DEVICE(0x1015, "MOTIF-R"),
217YAMAHA_DEVICE(0x1016, "MDP-5"),
218YAMAHA_DEVICE(0x1017, "CVP-204"),
219YAMAHA_DEVICE(0x1018, "CVP-206"),
220YAMAHA_DEVICE(0x1019, "CVP-208"),
221YAMAHA_DEVICE(0x101a, "CVP-210"),
222YAMAHA_DEVICE(0x101b, "PSR-1100"),
223YAMAHA_DEVICE(0x101c, "PSR-2100"),
224YAMAHA_DEVICE(0x101d, "CLP-175"),
225YAMAHA_DEVICE(0x101e, "PSR-K1"),
226YAMAHA_DEVICE(0x101f, "EZ-J24"),
227YAMAHA_DEVICE(0x1020, "EZ-250i"),
228YAMAHA_DEVICE(0x1021, "MOTIF ES 6"),
229YAMAHA_DEVICE(0x1022, "MOTIF ES 7"),
230YAMAHA_DEVICE(0x1023, "MOTIF ES 8"),
231YAMAHA_DEVICE(0x1024, "CVP-301"),
232YAMAHA_DEVICE(0x1025, "CVP-303"),
233YAMAHA_DEVICE(0x1026, "CVP-305"),
234YAMAHA_DEVICE(0x1027, "CVP-307"),
235YAMAHA_DEVICE(0x1028, "CVP-309"),
236YAMAHA_DEVICE(0x1029, "CVP-309GP"),
237YAMAHA_DEVICE(0x102a, "PSR-1500"),
238YAMAHA_DEVICE(0x102b, "PSR-3000"),
239YAMAHA_DEVICE(0x102e, "ELS-01/01C"),
240YAMAHA_DEVICE(0x1030, "PSR-295/293"),
241YAMAHA_DEVICE(0x1031, "DGX-205/203"),
242YAMAHA_DEVICE(0x1032, "DGX-305"),
243YAMAHA_DEVICE(0x1033, "DGX-505"),
244YAMAHA_DEVICE(0x1034, NULL),
245YAMAHA_DEVICE(0x1035, NULL),
246YAMAHA_DEVICE(0x1036, NULL),
247YAMAHA_DEVICE(0x1037, NULL),
248YAMAHA_DEVICE(0x1038, NULL),
249YAMAHA_DEVICE(0x1039, NULL),
250YAMAHA_DEVICE(0x103a, NULL),
251YAMAHA_DEVICE(0x103b, NULL),
252YAMAHA_DEVICE(0x103c, NULL),
253YAMAHA_DEVICE(0x103d, NULL),
254YAMAHA_DEVICE(0x103e, NULL),
255YAMAHA_DEVICE(0x103f, NULL),
256YAMAHA_DEVICE(0x1040, NULL),
257YAMAHA_DEVICE(0x1041, NULL),
258YAMAHA_DEVICE(0x1042, NULL),
259YAMAHA_DEVICE(0x1043, NULL),
260YAMAHA_DEVICE(0x1044, NULL),
261YAMAHA_DEVICE(0x1045, NULL),
262YAMAHA_INTERFACE(0x104e, 0, NULL),
263YAMAHA_DEVICE(0x104f, NULL),
264YAMAHA_DEVICE(0x1050, NULL),
265YAMAHA_DEVICE(0x1051, NULL),
266YAMAHA_DEVICE(0x1052, NULL),
267YAMAHA_INTERFACE(0x1053, 0, NULL),
268YAMAHA_INTERFACE(0x1054, 0, NULL),
269YAMAHA_DEVICE(0x1055, NULL),
270YAMAHA_DEVICE(0x1056, NULL),
271YAMAHA_DEVICE(0x1057, NULL),
272YAMAHA_DEVICE(0x1058, NULL),
273YAMAHA_DEVICE(0x1059, NULL),
274YAMAHA_DEVICE(0x105a, NULL),
275YAMAHA_DEVICE(0x105b, NULL),
276YAMAHA_DEVICE(0x105c, NULL),
277YAMAHA_DEVICE(0x105d, NULL),
278{
279 USB_DEVICE(0x0499, 0x1503),
280 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
281 /* .vendor_name = "Yamaha", */
282 /* .product_name = "MOX6/MOX8", */
283 .ifnum = QUIRK_ANY_INTERFACE,
284 .type = QUIRK_COMPOSITE,
285 .data = (const struct snd_usb_audio_quirk[]) {
286 {
287 .ifnum = 1,
288 .type = QUIRK_AUDIO_STANDARD_INTERFACE
289 },
290 {
291 .ifnum = 2,
292 .type = QUIRK_AUDIO_STANDARD_INTERFACE
293 },
294 {
295 .ifnum = 3,
296 .type = QUIRK_MIDI_YAMAHA
297 },
298 {
299 .ifnum = -1
300 }
301 }
302 }
303},
304{
305 USB_DEVICE(0x0499, 0x1509),
306 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
307 /* .vendor_name = "Yamaha", */
308 /* .product_name = "Steinberg UR22", */
309 .ifnum = QUIRK_ANY_INTERFACE,
310 .type = QUIRK_COMPOSITE,
311 .data = (const struct snd_usb_audio_quirk[]) {
312 {
313 .ifnum = 1,
314 .type = QUIRK_AUDIO_STANDARD_INTERFACE
315 },
316 {
317 .ifnum = 2,
318 .type = QUIRK_AUDIO_STANDARD_INTERFACE
319 },
320 {
321 .ifnum = 3,
322 .type = QUIRK_MIDI_YAMAHA
323 },
324 {
325 .ifnum = 4,
326 .type = QUIRK_IGNORE_INTERFACE
327 },
328 {
329 .ifnum = -1
330 }
331 }
332 }
333},
334YAMAHA_DEVICE(0x2000, "DGP-7"),
335YAMAHA_DEVICE(0x2001, "DGP-5"),
336YAMAHA_DEVICE(0x2002, NULL),
337YAMAHA_DEVICE(0x2003, NULL),
338YAMAHA_DEVICE(0x5000, "CS1D"),
339YAMAHA_DEVICE(0x5001, "DSP1D"),
340YAMAHA_DEVICE(0x5002, "DME32"),
341YAMAHA_DEVICE(0x5003, "DM2000"),
342YAMAHA_DEVICE(0x5004, "02R96"),
343YAMAHA_DEVICE(0x5005, "ACU16-C"),
344YAMAHA_DEVICE(0x5006, "NHB32-C"),
345YAMAHA_DEVICE(0x5007, "DM1000"),
346YAMAHA_DEVICE(0x5008, "01V96"),
347YAMAHA_DEVICE(0x5009, "SPX2000"),
348YAMAHA_DEVICE(0x500a, "PM5D"),
349YAMAHA_DEVICE(0x500b, "DME64N"),
350YAMAHA_DEVICE(0x500c, "DME24N"),
351YAMAHA_DEVICE(0x500d, NULL),
352YAMAHA_DEVICE(0x500e, NULL),
353YAMAHA_DEVICE(0x500f, NULL),
354YAMAHA_DEVICE(0x7000, "DTX"),
355YAMAHA_DEVICE(0x7010, "UB99"),
356#undef YAMAHA_DEVICE
357#undef YAMAHA_INTERFACE
358
359/*
360 * Roland/RolandED/Edirol/BOSS devices
361 */
362{
363 USB_DEVICE(0x0582, 0x0000),
364 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
365 .vendor_name = "Roland",
366 .product_name = "UA-100",
367 .ifnum = QUIRK_ANY_INTERFACE,
368 .type = QUIRK_COMPOSITE,
369 .data = (const struct snd_usb_audio_quirk[]) {
370 {
371 .ifnum = 0,
372 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
373 .data = & (const struct audioformat) {
374 .formats = SNDRV_PCM_FMTBIT_S16_LE,
375 .channels = 4,
376 .iface = 0,
377 .altsetting = 1,
378 .altset_idx = 1,
379 .attributes = 0,
380 .endpoint = 0x01,
381 .ep_attr = 0x09,
382 .rates = SNDRV_PCM_RATE_CONTINUOUS,
383 .rate_min = 44100,
384 .rate_max = 44100,
385 }
386 },
387 {
388 .ifnum = 1,
389 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
390 .data = & (const struct audioformat) {
391 .formats = SNDRV_PCM_FMTBIT_S16_LE,
392 .channels = 2,
393 .iface = 1,
394 .altsetting = 1,
395 .altset_idx = 1,
396 .attributes = UAC_EP_CS_ATTR_FILL_MAX,
397 .endpoint = 0x81,
398 .ep_attr = 0x05,
399 .rates = SNDRV_PCM_RATE_CONTINUOUS,
400 .rate_min = 44100,
401 .rate_max = 44100,
402 }
403 },
404 {
405 .ifnum = 2,
406 .type = QUIRK_MIDI_FIXED_ENDPOINT,
407 .data = & (const struct snd_usb_midi_endpoint_info) {
408 .out_cables = 0x0007,
409 .in_cables = 0x0007
410 }
411 },
412 {
413 .ifnum = -1
414 }
415 }
416 }
417},
418{
419 USB_DEVICE(0x0582, 0x0002),
420 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
421 .vendor_name = "EDIROL",
422 .product_name = "UM-4",
423 .ifnum = QUIRK_ANY_INTERFACE,
424 .type = QUIRK_COMPOSITE,
425 .data = (const struct snd_usb_audio_quirk[]) {
426 {
427 .ifnum = 0,
428 .type = QUIRK_IGNORE_INTERFACE
429 },
430 {
431 .ifnum = 1,
432 .type = QUIRK_IGNORE_INTERFACE
433 },
434 {
435 .ifnum = 2,
436 .type = QUIRK_MIDI_FIXED_ENDPOINT,
437 .data = & (const struct snd_usb_midi_endpoint_info) {
438 .out_cables = 0x000f,
439 .in_cables = 0x000f
440 }
441 },
442 {
443 .ifnum = -1
444 }
445 }
446 }
447},
448{
449 USB_DEVICE(0x0582, 0x0003),
450 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
451 .vendor_name = "Roland",
452 .product_name = "SC-8850",
453 .ifnum = QUIRK_ANY_INTERFACE,
454 .type = QUIRK_COMPOSITE,
455 .data = (const struct snd_usb_audio_quirk[]) {
456 {
457 .ifnum = 0,
458 .type = QUIRK_IGNORE_INTERFACE
459 },
460 {
461 .ifnum = 1,
462 .type = QUIRK_IGNORE_INTERFACE
463 },
464 {
465 .ifnum = 2,
466 .type = QUIRK_MIDI_FIXED_ENDPOINT,
467 .data = & (const struct snd_usb_midi_endpoint_info) {
468 .out_cables = 0x003f,
469 .in_cables = 0x003f
470 }
471 },
472 {
473 .ifnum = -1
474 }
475 }
476 }
477},
478{
479 USB_DEVICE(0x0582, 0x0004),
480 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
481 .vendor_name = "Roland",
482 .product_name = "U-8",
483 .ifnum = QUIRK_ANY_INTERFACE,
484 .type = QUIRK_COMPOSITE,
485 .data = (const struct snd_usb_audio_quirk[]) {
486 {
487 .ifnum = 0,
488 .type = QUIRK_IGNORE_INTERFACE
489 },
490 {
491 .ifnum = 1,
492 .type = QUIRK_IGNORE_INTERFACE
493 },
494 {
495 .ifnum = 2,
496 .type = QUIRK_MIDI_FIXED_ENDPOINT,
497 .data = & (const struct snd_usb_midi_endpoint_info) {
498 .out_cables = 0x0005,
499 .in_cables = 0x0005
500 }
501 },
502 {
503 .ifnum = -1
504 }
505 }
506 }
507},
508{
509 /* Has ID 0x0099 when not in "Advanced Driver" mode.
510 * The UM-2EX has only one input, but we cannot detect this. */
511 USB_DEVICE(0x0582, 0x0005),
512 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
513 .vendor_name = "EDIROL",
514 .product_name = "UM-2",
515 .ifnum = QUIRK_ANY_INTERFACE,
516 .type = QUIRK_COMPOSITE,
517 .data = (const struct snd_usb_audio_quirk[]) {
518 {
519 .ifnum = 0,
520 .type = QUIRK_IGNORE_INTERFACE
521 },
522 {
523 .ifnum = 1,
524 .type = QUIRK_IGNORE_INTERFACE
525 },
526 {
527 .ifnum = 2,
528 .type = QUIRK_MIDI_FIXED_ENDPOINT,
529 .data = & (const struct snd_usb_midi_endpoint_info) {
530 .out_cables = 0x0003,
531 .in_cables = 0x0003
532 }
533 },
534 {
535 .ifnum = -1
536 }
537 }
538 }
539},
540{
541 USB_DEVICE(0x0582, 0x0007),
542 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
543 .vendor_name = "Roland",
544 .product_name = "SC-8820",
545 .ifnum = QUIRK_ANY_INTERFACE,
546 .type = QUIRK_COMPOSITE,
547 .data = (const struct snd_usb_audio_quirk[]) {
548 {
549 .ifnum = 0,
550 .type = QUIRK_IGNORE_INTERFACE
551 },
552 {
553 .ifnum = 1,
554 .type = QUIRK_IGNORE_INTERFACE
555 },
556 {
557 .ifnum = 2,
558 .type = QUIRK_MIDI_FIXED_ENDPOINT,
559 .data = & (const struct snd_usb_midi_endpoint_info) {
560 .out_cables = 0x0013,
561 .in_cables = 0x0013
562 }
563 },
564 {
565 .ifnum = -1
566 }
567 }
568 }
569},
570{
571 USB_DEVICE(0x0582, 0x0008),
572 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
573 .vendor_name = "Roland",
574 .product_name = "PC-300",
575 .ifnum = QUIRK_ANY_INTERFACE,
576 .type = QUIRK_COMPOSITE,
577 .data = (const struct snd_usb_audio_quirk[]) {
578 {
579 .ifnum = 0,
580 .type = QUIRK_IGNORE_INTERFACE
581 },
582 {
583 .ifnum = 1,
584 .type = QUIRK_IGNORE_INTERFACE
585 },
586 {
587 .ifnum = 2,
588 .type = QUIRK_MIDI_FIXED_ENDPOINT,
589 .data = & (const struct snd_usb_midi_endpoint_info) {
590 .out_cables = 0x0001,
591 .in_cables = 0x0001
592 }
593 },
594 {
595 .ifnum = -1
596 }
597 }
598 }
599},
600{
601 /* has ID 0x009d when not in "Advanced Driver" mode */
602 USB_DEVICE(0x0582, 0x0009),
603 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
604 .vendor_name = "EDIROL",
605 .product_name = "UM-1",
606 .ifnum = QUIRK_ANY_INTERFACE,
607 .type = QUIRK_COMPOSITE,
608 .data = (const struct snd_usb_audio_quirk[]) {
609 {
610 .ifnum = 0,
611 .type = QUIRK_IGNORE_INTERFACE
612 },
613 {
614 .ifnum = 1,
615 .type = QUIRK_IGNORE_INTERFACE
616 },
617 {
618 .ifnum = 2,
619 .type = QUIRK_MIDI_FIXED_ENDPOINT,
620 .data = & (const struct snd_usb_midi_endpoint_info) {
621 .out_cables = 0x0001,
622 .in_cables = 0x0001
623 }
624 },
625 {
626 .ifnum = -1
627 }
628 }
629 }
630},
631{
632 USB_DEVICE(0x0582, 0x000b),
633 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
634 .vendor_name = "Roland",
635 .product_name = "SK-500",
636 .ifnum = QUIRK_ANY_INTERFACE,
637 .type = QUIRK_COMPOSITE,
638 .data = (const struct snd_usb_audio_quirk[]) {
639 {
640 .ifnum = 0,
641 .type = QUIRK_IGNORE_INTERFACE
642 },
643 {
644 .ifnum = 1,
645 .type = QUIRK_IGNORE_INTERFACE
646 },
647 {
648 .ifnum = 2,
649 .type = QUIRK_MIDI_FIXED_ENDPOINT,
650 .data = & (const struct snd_usb_midi_endpoint_info) {
651 .out_cables = 0x0013,
652 .in_cables = 0x0013
653 }
654 },
655 {
656 .ifnum = -1
657 }
658 }
659 }
660},
661{
662 /* thanks to Emiliano Grilli <emillo@libero.it>
663 * for helping researching this data */
664 USB_DEVICE(0x0582, 0x000c),
665 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
666 .vendor_name = "Roland",
667 .product_name = "SC-D70",
668 .ifnum = QUIRK_ANY_INTERFACE,
669 .type = QUIRK_COMPOSITE,
670 .data = (const struct snd_usb_audio_quirk[]) {
671 {
672 .ifnum = 0,
673 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
674 .data = & (const struct audioformat) {
675 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
676 .channels = 2,
677 .iface = 0,
678 .altsetting = 1,
679 .altset_idx = 1,
680 .attributes = 0,
681 .endpoint = 0x01,
682 .ep_attr = 0x01,
683 .rates = SNDRV_PCM_RATE_CONTINUOUS,
684 .rate_min = 44100,
685 .rate_max = 44100,
686 }
687 },
688 {
689 .ifnum = 1,
690 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
691 .data = & (const struct audioformat) {
692 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
693 .channels = 2,
694 .iface = 1,
695 .altsetting = 1,
696 .altset_idx = 1,
697 .attributes = 0,
698 .endpoint = 0x81,
699 .ep_attr = 0x01,
700 .rates = SNDRV_PCM_RATE_CONTINUOUS,
701 .rate_min = 44100,
702 .rate_max = 44100,
703 }
704 },
705 {
706 .ifnum = 2,
707 .type = QUIRK_MIDI_FIXED_ENDPOINT,
708 .data = & (const struct snd_usb_midi_endpoint_info) {
709 .out_cables = 0x0007,
710 .in_cables = 0x0007
711 }
712 },
713 {
714 .ifnum = -1
715 }
716 }
717 }
718},
719{ /*
720 * This quirk is for the "Advanced Driver" mode of the Edirol UA-5.
721 * If the advanced mode switch at the back of the unit is off, the
722 * UA-5 has ID 0x0582/0x0011 and is standard compliant (no quirks),
723 * but offers only 16-bit PCM.
724 * In advanced mode, the UA-5 will output S24_3LE samples (two
725 * channels) at the rate indicated on the front switch, including
726 * the 96kHz sample rate.
727 */
728 USB_DEVICE(0x0582, 0x0010),
729 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
730 .vendor_name = "EDIROL",
731 .product_name = "UA-5",
732 .ifnum = QUIRK_ANY_INTERFACE,
733 .type = QUIRK_COMPOSITE,
734 .data = (const struct snd_usb_audio_quirk[]) {
735 {
736 .ifnum = 1,
737 .type = QUIRK_AUDIO_STANDARD_INTERFACE
738 },
739 {
740 .ifnum = 2,
741 .type = QUIRK_AUDIO_STANDARD_INTERFACE
742 },
743 {
744 .ifnum = -1
745 }
746 }
747 }
748},
749{
750 /* has ID 0x0013 when not in "Advanced Driver" mode */
751 USB_DEVICE(0x0582, 0x0012),
752 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
753 .vendor_name = "Roland",
754 .product_name = "XV-5050",
755 .ifnum = 0,
756 .type = QUIRK_MIDI_FIXED_ENDPOINT,
757 .data = & (const struct snd_usb_midi_endpoint_info) {
758 .out_cables = 0x0001,
759 .in_cables = 0x0001
760 }
761 }
762},
763{
764 /* has ID 0x0015 when not in "Advanced Driver" mode */
765 USB_DEVICE(0x0582, 0x0014),
766 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
767 .vendor_name = "EDIROL",
768 .product_name = "UM-880",
769 .ifnum = 0,
770 .type = QUIRK_MIDI_FIXED_ENDPOINT,
771 .data = & (const struct snd_usb_midi_endpoint_info) {
772 .out_cables = 0x01ff,
773 .in_cables = 0x01ff
774 }
775 }
776},
777{
778 /* has ID 0x0017 when not in "Advanced Driver" mode */
779 USB_DEVICE(0x0582, 0x0016),
780 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
781 .vendor_name = "EDIROL",
782 .product_name = "SD-90",
783 .ifnum = QUIRK_ANY_INTERFACE,
784 .type = QUIRK_COMPOSITE,
785 .data = (const struct snd_usb_audio_quirk[]) {
786 {
787 .ifnum = 0,
788 .type = QUIRK_AUDIO_STANDARD_INTERFACE
789 },
790 {
791 .ifnum = 1,
792 .type = QUIRK_AUDIO_STANDARD_INTERFACE
793 },
794 {
795 .ifnum = 2,
796 .type = QUIRK_MIDI_FIXED_ENDPOINT,
797 .data = & (const struct snd_usb_midi_endpoint_info) {
798 .out_cables = 0x000f,
799 .in_cables = 0x000f
800 }
801 },
802 {
803 .ifnum = -1
804 }
805 }
806 }
807},
808{
809 /* has ID 0x001c when not in "Advanced Driver" mode */
810 USB_DEVICE(0x0582, 0x001b),
811 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
812 .vendor_name = "Roland",
813 .product_name = "MMP-2",
814 .ifnum = QUIRK_ANY_INTERFACE,
815 .type = QUIRK_COMPOSITE,
816 .data = (const struct snd_usb_audio_quirk[]) {
817 {
818 .ifnum = 0,
819 .type = QUIRK_IGNORE_INTERFACE
820 },
821 {
822 .ifnum = 1,
823 .type = QUIRK_IGNORE_INTERFACE
824 },
825 {
826 .ifnum = 2,
827 .type = QUIRK_MIDI_FIXED_ENDPOINT,
828 .data = & (const struct snd_usb_midi_endpoint_info) {
829 .out_cables = 0x0001,
830 .in_cables = 0x0001
831 }
832 },
833 {
834 .ifnum = -1
835 }
836 }
837 }
838},
839{
840 /* has ID 0x001e when not in "Advanced Driver" mode */
841 USB_DEVICE(0x0582, 0x001d),
842 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
843 .vendor_name = "Roland",
844 .product_name = "V-SYNTH",
845 .ifnum = 0,
846 .type = QUIRK_MIDI_FIXED_ENDPOINT,
847 .data = & (const struct snd_usb_midi_endpoint_info) {
848 .out_cables = 0x0001,
849 .in_cables = 0x0001
850 }
851 }
852},
853{
854 /* has ID 0x0024 when not in "Advanced Driver" mode */
855 USB_DEVICE(0x0582, 0x0023),
856 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
857 .vendor_name = "EDIROL",
858 .product_name = "UM-550",
859 .ifnum = 0,
860 .type = QUIRK_MIDI_FIXED_ENDPOINT,
861 .data = & (const struct snd_usb_midi_endpoint_info) {
862 .out_cables = 0x003f,
863 .in_cables = 0x003f
864 }
865 }
866},
867{
868 /*
869 * This quirk is for the "Advanced Driver" mode. If off, the UA-20
870 * has ID 0x0026 and is standard compliant, but has only 16-bit PCM
871 * and no MIDI.
872 */
873 USB_DEVICE(0x0582, 0x0025),
874 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
875 .vendor_name = "EDIROL",
876 .product_name = "UA-20",
877 .ifnum = QUIRK_ANY_INTERFACE,
878 .type = QUIRK_COMPOSITE,
879 .data = (const struct snd_usb_audio_quirk[]) {
880 {
881 .ifnum = 0,
882 .type = QUIRK_IGNORE_INTERFACE
883 },
884 {
885 .ifnum = 1,
886 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
887 .data = & (const struct audioformat) {
888 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
889 .channels = 2,
890 .iface = 1,
891 .altsetting = 1,
892 .altset_idx = 1,
893 .attributes = 0,
894 .endpoint = 0x01,
895 .ep_attr = 0x01,
896 .rates = SNDRV_PCM_RATE_CONTINUOUS,
897 .rate_min = 44100,
898 .rate_max = 44100,
899 }
900 },
901 {
902 .ifnum = 2,
903 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
904 .data = & (const struct audioformat) {
905 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
906 .channels = 2,
907 .iface = 2,
908 .altsetting = 1,
909 .altset_idx = 1,
910 .attributes = 0,
911 .endpoint = 0x82,
912 .ep_attr = 0x01,
913 .rates = SNDRV_PCM_RATE_CONTINUOUS,
914 .rate_min = 44100,
915 .rate_max = 44100,
916 }
917 },
918 {
919 .ifnum = 3,
920 .type = QUIRK_MIDI_FIXED_ENDPOINT,
921 .data = & (const struct snd_usb_midi_endpoint_info) {
922 .out_cables = 0x0001,
923 .in_cables = 0x0001
924 }
925 },
926 {
927 .ifnum = -1
928 }
929 }
930 }
931},
932{
933 /* has ID 0x0028 when not in "Advanced Driver" mode */
934 USB_DEVICE(0x0582, 0x0027),
935 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
936 .vendor_name = "EDIROL",
937 .product_name = "SD-20",
938 .ifnum = 0,
939 .type = QUIRK_MIDI_FIXED_ENDPOINT,
940 .data = & (const struct snd_usb_midi_endpoint_info) {
941 .out_cables = 0x0003,
942 .in_cables = 0x0007
943 }
944 }
945},
946{
947 /* has ID 0x002a when not in "Advanced Driver" mode */
948 USB_DEVICE(0x0582, 0x0029),
949 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
950 .vendor_name = "EDIROL",
951 .product_name = "SD-80",
952 .ifnum = 0,
953 .type = QUIRK_MIDI_FIXED_ENDPOINT,
954 .data = & (const struct snd_usb_midi_endpoint_info) {
955 .out_cables = 0x000f,
956 .in_cables = 0x000f
957 }
958 }
959},
960{ /*
961 * This quirk is for the "Advanced" modes of the Edirol UA-700.
962 * If the sample format switch is not in an advanced setting, the
963 * UA-700 has ID 0x0582/0x002c and is standard compliant (no quirks),
964 * but offers only 16-bit PCM and no MIDI.
965 */
966 USB_DEVICE_VENDOR_SPEC(0x0582, 0x002b),
967 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
968 .vendor_name = "EDIROL",
969 .product_name = "UA-700",
970 .ifnum = QUIRK_ANY_INTERFACE,
971 .type = QUIRK_COMPOSITE,
972 .data = (const struct snd_usb_audio_quirk[]) {
973 {
974 .ifnum = 1,
975 .type = QUIRK_AUDIO_EDIROL_UAXX
976 },
977 {
978 .ifnum = 2,
979 .type = QUIRK_AUDIO_EDIROL_UAXX
980 },
981 {
982 .ifnum = 3,
983 .type = QUIRK_AUDIO_EDIROL_UAXX
984 },
985 {
986 .ifnum = -1
987 }
988 }
989 }
990},
991{
992 /* has ID 0x002e when not in "Advanced Driver" mode */
993 USB_DEVICE(0x0582, 0x002d),
994 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
995 .vendor_name = "Roland",
996 .product_name = "XV-2020",
997 .ifnum = 0,
998 .type = QUIRK_MIDI_FIXED_ENDPOINT,
999 .data = & (const struct snd_usb_midi_endpoint_info) {
1000 .out_cables = 0x0001,
1001 .in_cables = 0x0001
1002 }
1003 }
1004},
1005{
1006 /* has ID 0x0030 when not in "Advanced Driver" mode */
1007 USB_DEVICE(0x0582, 0x002f),
1008 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1009 .vendor_name = "Roland",
1010 .product_name = "VariOS",
1011 .ifnum = 0,
1012 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1013 .data = & (const struct snd_usb_midi_endpoint_info) {
1014 .out_cables = 0x0007,
1015 .in_cables = 0x0007
1016 }
1017 }
1018},
1019{
1020 /* has ID 0x0034 when not in "Advanced Driver" mode */
1021 USB_DEVICE(0x0582, 0x0033),
1022 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1023 .vendor_name = "EDIROL",
1024 .product_name = "PCR",
1025 .ifnum = 0,
1026 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1027 .data = & (const struct snd_usb_midi_endpoint_info) {
1028 .out_cables = 0x0003,
1029 .in_cables = 0x0007
1030 }
1031 }
1032},
1033 /* TODO: add Roland M-1000 support */
1034{
1035 /*
1036 * Has ID 0x0038 when not in "Advanced Driver" mode;
1037 * later revisions use IDs 0x0054 and 0x00a2.
1038 */
1039 USB_DEVICE(0x0582, 0x0037),
1040 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1041 .vendor_name = "Roland",
1042 .product_name = "Digital Piano",
1043 .ifnum = 0,
1044 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1045 .data = & (const struct snd_usb_midi_endpoint_info) {
1046 .out_cables = 0x0001,
1047 .in_cables = 0x0001
1048 }
1049 }
1050},
1051{
1052 /*
1053 * This quirk is for the "Advanced Driver" mode. If off, the GS-10
1054 * has ID 0x003c and is standard compliant, but has only 16-bit PCM
1055 * and no MIDI.
1056 */
1057 USB_DEVICE_VENDOR_SPEC(0x0582, 0x003b),
1058 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1059 .vendor_name = "BOSS",
1060 .product_name = "GS-10",
1061 .ifnum = QUIRK_ANY_INTERFACE,
1062 .type = QUIRK_COMPOSITE,
1063 .data = & (const struct snd_usb_audio_quirk[]) {
1064 {
1065 .ifnum = 1,
1066 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1067 },
1068 {
1069 .ifnum = 2,
1070 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1071 },
1072 {
1073 .ifnum = 3,
1074 .type = QUIRK_MIDI_STANDARD_INTERFACE
1075 },
1076 {
1077 .ifnum = -1
1078 }
1079 }
1080 }
1081},
1082{
1083 /* has ID 0x0041 when not in "Advanced Driver" mode */
1084 USB_DEVICE(0x0582, 0x0040),
1085 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1086 .vendor_name = "Roland",
1087 .product_name = "GI-20",
1088 .ifnum = 0,
1089 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1090 .data = & (const struct snd_usb_midi_endpoint_info) {
1091 .out_cables = 0x0001,
1092 .in_cables = 0x0001
1093 }
1094 }
1095},
1096{
1097 /* has ID 0x0043 when not in "Advanced Driver" mode */
1098 USB_DEVICE(0x0582, 0x0042),
1099 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1100 .vendor_name = "Roland",
1101 .product_name = "RS-70",
1102 .ifnum = 0,
1103 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1104 .data = & (const struct snd_usb_midi_endpoint_info) {
1105 .out_cables = 0x0001,
1106 .in_cables = 0x0001
1107 }
1108 }
1109},
1110{
1111 /* has ID 0x0049 when not in "Advanced Driver" mode */
1112 USB_DEVICE(0x0582, 0x0047),
1113 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1114 /* .vendor_name = "EDIROL", */
1115 /* .product_name = "UR-80", */
1116 .ifnum = QUIRK_ANY_INTERFACE,
1117 .type = QUIRK_COMPOSITE,
1118 .data = (const struct snd_usb_audio_quirk[]) {
1119 /* in the 96 kHz modes, only interface 1 is there */
1120 {
1121 .ifnum = 1,
1122 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1123 },
1124 {
1125 .ifnum = 2,
1126 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1127 },
1128 {
1129 .ifnum = -1
1130 }
1131 }
1132 }
1133},
1134{
1135 /* has ID 0x004a when not in "Advanced Driver" mode */
1136 USB_DEVICE(0x0582, 0x0048),
1137 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1138 /* .vendor_name = "EDIROL", */
1139 /* .product_name = "UR-80", */
1140 .ifnum = 0,
1141 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1142 .data = & (const struct snd_usb_midi_endpoint_info) {
1143 .out_cables = 0x0003,
1144 .in_cables = 0x0007
1145 }
1146 }
1147},
1148 /* TODO: add Edirol M-100FX support */
1149{
1150 /* has ID 0x004e when not in "Advanced Driver" mode */
1151 USB_DEVICE(0x0582, 0x004c),
1152 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1153 .vendor_name = "EDIROL",
1154 .product_name = "PCR-A",
1155 .ifnum = QUIRK_ANY_INTERFACE,
1156 .type = QUIRK_COMPOSITE,
1157 .data = (const struct snd_usb_audio_quirk[]) {
1158 {
1159 .ifnum = 1,
1160 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1161 },
1162 {
1163 .ifnum = 2,
1164 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1165 },
1166 {
1167 .ifnum = -1
1168 }
1169 }
1170 }
1171},
1172{
1173 /* has ID 0x004f when not in "Advanced Driver" mode */
1174 USB_DEVICE(0x0582, 0x004d),
1175 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1176 .vendor_name = "EDIROL",
1177 .product_name = "PCR-A",
1178 .ifnum = 0,
1179 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1180 .data = & (const struct snd_usb_midi_endpoint_info) {
1181 .out_cables = 0x0003,
1182 .in_cables = 0x0007
1183 }
1184 }
1185},
1186{
1187 /*
1188 * This quirk is for the "Advanced Driver" mode. If off, the UA-3FX
1189 * is standard compliant, but has only 16-bit PCM.
1190 */
1191 USB_DEVICE(0x0582, 0x0050),
1192 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1193 .vendor_name = "EDIROL",
1194 .product_name = "UA-3FX",
1195 .ifnum = QUIRK_ANY_INTERFACE,
1196 .type = QUIRK_COMPOSITE,
1197 .data = (const struct snd_usb_audio_quirk[]) {
1198 {
1199 .ifnum = 1,
1200 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1201 },
1202 {
1203 .ifnum = 2,
1204 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1205 },
1206 {
1207 .ifnum = -1
1208 }
1209 }
1210 }
1211},
1212{
1213 USB_DEVICE(0x0582, 0x0052),
1214 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1215 .vendor_name = "EDIROL",
1216 .product_name = "UM-1SX",
1217 .ifnum = 0,
1218 .type = QUIRK_MIDI_STANDARD_INTERFACE
1219 }
1220},
1221{
1222 USB_DEVICE(0x0582, 0x0060),
1223 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1224 .vendor_name = "Roland",
1225 .product_name = "EXR Series",
1226 .ifnum = 0,
1227 .type = QUIRK_MIDI_STANDARD_INTERFACE
1228 }
1229},
1230{
1231 /* has ID 0x0066 when not in "Advanced Driver" mode */
1232 USB_DEVICE(0x0582, 0x0064),
1233 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1234 /* .vendor_name = "EDIROL", */
1235 /* .product_name = "PCR-1", */
1236 .ifnum = QUIRK_ANY_INTERFACE,
1237 .type = QUIRK_COMPOSITE,
1238 .data = (const struct snd_usb_audio_quirk[]) {
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 0x0067 when not in "Advanced Driver" mode */
1255 USB_DEVICE(0x0582, 0x0065),
1256 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1257 /* .vendor_name = "EDIROL", */
1258 /* .product_name = "PCR-1", */
1259 .ifnum = 0,
1260 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1261 .data = & (const struct snd_usb_midi_endpoint_info) {
1262 .out_cables = 0x0001,
1263 .in_cables = 0x0003
1264 }
1265 }
1266},
1267{
1268 /* has ID 0x006b when not in "Advanced Driver" mode */
1269 USB_DEVICE_VENDOR_SPEC(0x0582, 0x006a),
1270 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1271 .vendor_name = "Roland",
1272 .product_name = "SP-606",
1273 .ifnum = 3,
1274 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1275 .data = & (const struct snd_usb_midi_endpoint_info) {
1276 .out_cables = 0x0001,
1277 .in_cables = 0x0001
1278 }
1279 }
1280},
1281{
1282 /* has ID 0x006e when not in "Advanced Driver" mode */
1283 USB_DEVICE(0x0582, 0x006d),
1284 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1285 .vendor_name = "Roland",
1286 .product_name = "FANTOM-X",
1287 .ifnum = 0,
1288 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1289 .data = & (const struct snd_usb_midi_endpoint_info) {
1290 .out_cables = 0x0001,
1291 .in_cables = 0x0001
1292 }
1293 }
1294},
1295{ /*
1296 * This quirk is for the "Advanced" modes of the Edirol UA-25.
1297 * If the switch is not in an advanced setting, the UA-25 has
1298 * ID 0x0582/0x0073 and is standard compliant (no quirks), but
1299 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1300 */
1301 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0074),
1302 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1303 .vendor_name = "EDIROL",
1304 .product_name = "UA-25",
1305 .ifnum = QUIRK_ANY_INTERFACE,
1306 .type = QUIRK_COMPOSITE,
1307 .data = (const struct snd_usb_audio_quirk[]) {
1308 {
1309 .ifnum = 0,
1310 .type = QUIRK_AUDIO_EDIROL_UAXX
1311 },
1312 {
1313 .ifnum = 1,
1314 .type = QUIRK_AUDIO_EDIROL_UAXX
1315 },
1316 {
1317 .ifnum = 2,
1318 .type = QUIRK_AUDIO_EDIROL_UAXX
1319 },
1320 {
1321 .ifnum = -1
1322 }
1323 }
1324 }
1325},
1326{
1327 /* has ID 0x0076 when not in "Advanced Driver" mode */
1328 USB_DEVICE(0x0582, 0x0075),
1329 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1330 .vendor_name = "BOSS",
1331 .product_name = "DR-880",
1332 .ifnum = 0,
1333 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1334 .data = & (const struct snd_usb_midi_endpoint_info) {
1335 .out_cables = 0x0001,
1336 .in_cables = 0x0001
1337 }
1338 }
1339},
1340{
1341 /* has ID 0x007b when not in "Advanced Driver" mode */
1342 USB_DEVICE_VENDOR_SPEC(0x0582, 0x007a),
1343 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1344 .vendor_name = "Roland",
1345 /* "RD" or "RD-700SX"? */
1346 .ifnum = 0,
1347 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1348 .data = & (const struct snd_usb_midi_endpoint_info) {
1349 .out_cables = 0x0003,
1350 .in_cables = 0x0003
1351 }
1352 }
1353},
1354{
1355 /* has ID 0x0081 when not in "Advanced Driver" mode */
1356 USB_DEVICE(0x0582, 0x0080),
1357 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1358 .vendor_name = "Roland",
1359 .product_name = "G-70",
1360 .ifnum = 0,
1361 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1362 .data = & (const struct snd_usb_midi_endpoint_info) {
1363 .out_cables = 0x0001,
1364 .in_cables = 0x0001
1365 }
1366 }
1367},
1368 /* TODO: add Roland V-SYNTH XT support */
1369 /* TODO: add BOSS GT-PRO support */
1370{
1371 /* has ID 0x008c when not in "Advanced Driver" mode */
1372 USB_DEVICE(0x0582, 0x008b),
1373 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1374 .vendor_name = "EDIROL",
1375 .product_name = "PC-50",
1376 .ifnum = 0,
1377 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1378 .data = & (const struct snd_usb_midi_endpoint_info) {
1379 .out_cables = 0x0001,
1380 .in_cables = 0x0001
1381 }
1382 }
1383},
1384 /* TODO: add Edirol PC-80 support */
1385{
1386 USB_DEVICE(0x0582, 0x0096),
1387 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1388 .vendor_name = "EDIROL",
1389 .product_name = "UA-1EX",
1390 .ifnum = QUIRK_ANY_INTERFACE,
1391 .type = QUIRK_COMPOSITE,
1392 .data = (const struct snd_usb_audio_quirk[]) {
1393 {
1394 .ifnum = 0,
1395 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1396 },
1397 {
1398 .ifnum = 1,
1399 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1400 },
1401 {
1402 .ifnum = -1
1403 }
1404 }
1405 }
1406},
1407{
1408 USB_DEVICE(0x0582, 0x009a),
1409 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1410 .vendor_name = "EDIROL",
1411 .product_name = "UM-3EX",
1412 .ifnum = 0,
1413 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1414 .data = & (const struct snd_usb_midi_endpoint_info) {
1415 .out_cables = 0x000f,
1416 .in_cables = 0x000f
1417 }
1418 }
1419},
1420{
1421 /*
1422 * This quirk is for the "Advanced Driver" mode. If off, the UA-4FX
1423 * is standard compliant, but has only 16-bit PCM and no MIDI.
1424 */
1425 USB_DEVICE(0x0582, 0x00a3),
1426 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1427 .vendor_name = "EDIROL",
1428 .product_name = "UA-4FX",
1429 .ifnum = QUIRK_ANY_INTERFACE,
1430 .type = QUIRK_COMPOSITE,
1431 .data = (const struct snd_usb_audio_quirk[]) {
1432 {
1433 .ifnum = 0,
1434 .type = QUIRK_AUDIO_EDIROL_UAXX
1435 },
1436 {
1437 .ifnum = 1,
1438 .type = QUIRK_AUDIO_EDIROL_UAXX
1439 },
1440 {
1441 .ifnum = 2,
1442 .type = QUIRK_AUDIO_EDIROL_UAXX
1443 },
1444 {
1445 .ifnum = -1
1446 }
1447 }
1448 }
1449},
1450 /* TODO: add Edirol MD-P1 support */
1451{
1452 USB_DEVICE(0x582, 0x00a6),
1453 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1454 .vendor_name = "Roland",
1455 .product_name = "Juno-G",
1456 .ifnum = 0,
1457 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1458 .data = & (const struct snd_usb_midi_endpoint_info) {
1459 .out_cables = 0x0001,
1460 .in_cables = 0x0001
1461 }
1462 }
1463},
1464{
1465 /* Roland SH-201 */
1466 USB_DEVICE(0x0582, 0x00ad),
1467 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1468 .vendor_name = "Roland",
1469 .product_name = "SH-201",
1470 .ifnum = QUIRK_ANY_INTERFACE,
1471 .type = QUIRK_COMPOSITE,
1472 .data = (const struct snd_usb_audio_quirk[]) {
1473 {
1474 .ifnum = 0,
1475 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1476 },
1477 {
1478 .ifnum = 1,
1479 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1480 },
1481 {
1482 .ifnum = 2,
1483 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1484 .data = & (const struct snd_usb_midi_endpoint_info) {
1485 .out_cables = 0x0001,
1486 .in_cables = 0x0001
1487 }
1488 },
1489 {
1490 .ifnum = -1
1491 }
1492 }
1493 }
1494},
1495{
1496 /* Roland SonicCell */
1497 USB_DEVICE(0x0582, 0x00c2),
1498 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1499 .vendor_name = "Roland",
1500 .product_name = "SonicCell",
1501 .ifnum = QUIRK_ANY_INTERFACE,
1502 .type = QUIRK_COMPOSITE,
1503 .data = (const struct snd_usb_audio_quirk[]) {
1504 {
1505 .ifnum = 0,
1506 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1507 },
1508 {
1509 .ifnum = 1,
1510 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1511 },
1512 {
1513 .ifnum = 2,
1514 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1515 .data = & (const struct snd_usb_midi_endpoint_info) {
1516 .out_cables = 0x0001,
1517 .in_cables = 0x0001
1518 }
1519 },
1520 {
1521 .ifnum = -1
1522 }
1523 }
1524 }
1525},
1526{
1527 /* Edirol M-16DX */
1528 /* FIXME: This quirk gives a good-working capture stream but the
1529 * playback seems problematic because of lacking of sync
1530 * with capture stream. It needs to sync with the capture
1531 * clock. As now, you'll get frequent sound distortions
1532 * via the playback.
1533 */
1534 USB_DEVICE(0x0582, 0x00c4),
1535 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1536 .ifnum = QUIRK_ANY_INTERFACE,
1537 .type = QUIRK_COMPOSITE,
1538 .data = (const struct snd_usb_audio_quirk[]) {
1539 {
1540 .ifnum = 0,
1541 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1542 },
1543 {
1544 .ifnum = 1,
1545 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1546 },
1547 {
1548 .ifnum = 2,
1549 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1550 .data = & (const struct snd_usb_midi_endpoint_info) {
1551 .out_cables = 0x0001,
1552 .in_cables = 0x0001
1553 }
1554 },
1555 {
1556 .ifnum = -1
1557 }
1558 }
1559 }
1560},
1561{
1562 /* BOSS GT-10 */
1563 USB_DEVICE(0x0582, 0x00da),
1564 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1565 .ifnum = QUIRK_ANY_INTERFACE,
1566 .type = QUIRK_COMPOSITE,
1567 .data = (const struct snd_usb_audio_quirk[]) {
1568 {
1569 .ifnum = 0,
1570 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1571 },
1572 {
1573 .ifnum = 1,
1574 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1575 },
1576 {
1577 .ifnum = 2,
1578 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1579 .data = & (const struct snd_usb_midi_endpoint_info) {
1580 .out_cables = 0x0001,
1581 .in_cables = 0x0001
1582 }
1583 },
1584 {
1585 .ifnum = -1
1586 }
1587 }
1588 }
1589},
1590{
1591 /* Advanced modes of the Edirol UA-25EX.
1592 * For the standard mode, UA-25EX has ID 0582:00e7, which
1593 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1594 */
1595 USB_DEVICE_VENDOR_SPEC(0x0582, 0x00e6),
1596 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1597 .vendor_name = "EDIROL",
1598 .product_name = "UA-25EX",
1599 .ifnum = QUIRK_ANY_INTERFACE,
1600 .type = QUIRK_COMPOSITE,
1601 .data = (const struct snd_usb_audio_quirk[]) {
1602 {
1603 .ifnum = 0,
1604 .type = QUIRK_AUDIO_EDIROL_UAXX
1605 },
1606 {
1607 .ifnum = 1,
1608 .type = QUIRK_AUDIO_EDIROL_UAXX
1609 },
1610 {
1611 .ifnum = 2,
1612 .type = QUIRK_AUDIO_EDIROL_UAXX
1613 },
1614 {
1615 .ifnum = -1
1616 }
1617 }
1618 }
1619},
1620{
1621 /* has ID 0x00ea when not in Advanced Driver mode */
1622 USB_DEVICE_VENDOR_SPEC(0x0582, 0x00e9),
1623 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1624 /* .vendor_name = "Roland", */
1625 /* .product_name = "UA-1G", */
1626 .ifnum = QUIRK_ANY_INTERFACE,
1627 .type = QUIRK_COMPOSITE,
1628 .data = (const struct snd_usb_audio_quirk[]) {
1629 {
1630 .ifnum = 0,
1631 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1632 },
1633 {
1634 .ifnum = 1,
1635 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1636 },
1637 {
1638 .ifnum = -1
1639 }
1640 }
1641 }
1642},
1643{
1644 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0104),
1645 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1646 /* .vendor_name = "Roland", */
1647 /* .product_name = "UM-1G", */
1648 .ifnum = 0,
1649 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1650 .data = & (const struct snd_usb_midi_endpoint_info) {
1651 .out_cables = 0x0001,
1652 .in_cables = 0x0001
1653 }
1654 }
1655},
1656{
1657 /* Edirol UM-3G */
1658 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0108),
1659 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1660 .ifnum = 0,
1661 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1662 .data = & (const struct snd_usb_midi_endpoint_info) {
1663 .out_cables = 0x0007,
1664 .in_cables = 0x0007
1665 }
1666 }
1667},
1668{
1669 /* Boss JS-8 Jam Station */
1670 USB_DEVICE(0x0582, 0x0109),
1671 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1672 /* .vendor_name = "BOSS", */
1673 /* .product_name = "JS-8", */
1674 .ifnum = QUIRK_ANY_INTERFACE,
1675 .type = QUIRK_COMPOSITE,
1676 .data = (const struct snd_usb_audio_quirk[]) {
1677 {
1678 .ifnum = 0,
1679 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1680 },
1681 {
1682 .ifnum = 1,
1683 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1684 },
1685 {
1686 .ifnum = 2,
1687 .type = QUIRK_MIDI_STANDARD_INTERFACE
1688 },
1689 {
1690 .ifnum = -1
1691 }
1692 }
1693 }
1694},
1695{
1696 /* has ID 0x0110 when not in Advanced Driver mode */
1697 USB_DEVICE_VENDOR_SPEC(0x0582, 0x010f),
1698 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1699 /* .vendor_name = "Roland", */
1700 /* .product_name = "A-PRO", */
1701 .ifnum = 0,
1702 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1703 .data = & (const struct snd_usb_midi_endpoint_info) {
1704 .out_cables = 0x0003,
1705 .in_cables = 0x0007
1706 }
1707 }
1708},
1709{
1710 /* Roland GAIA SH-01 */
1711 USB_DEVICE(0x0582, 0x0111),
1712 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
1713 .vendor_name = "Roland",
1714 .product_name = "GAIA",
1715 .ifnum = QUIRK_ANY_INTERFACE,
1716 .type = QUIRK_COMPOSITE,
1717 .data = (const struct snd_usb_audio_quirk[]) {
1718 {
1719 .ifnum = 0,
1720 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1721 },
1722 {
1723 .ifnum = 1,
1724 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1725 },
1726 {
1727 .ifnum = 2,
1728 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1729 .data = &(const struct snd_usb_midi_endpoint_info) {
1730 .out_cables = 0x0003,
1731 .in_cables = 0x0003
1732 }
1733 },
1734 {
1735 .ifnum = -1
1736 }
1737 }
1738 }
1739},
1740{
1741 USB_DEVICE(0x0582, 0x0113),
1742 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1743 /* .vendor_name = "BOSS", */
1744 /* .product_name = "ME-25", */
1745 .ifnum = QUIRK_ANY_INTERFACE,
1746 .type = QUIRK_COMPOSITE,
1747 .data = (const struct snd_usb_audio_quirk[]) {
1748 {
1749 .ifnum = 0,
1750 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1751 },
1752 {
1753 .ifnum = 1,
1754 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1755 },
1756 {
1757 .ifnum = 2,
1758 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1759 .data = & (const struct snd_usb_midi_endpoint_info) {
1760 .out_cables = 0x0001,
1761 .in_cables = 0x0001
1762 }
1763 },
1764 {
1765 .ifnum = -1
1766 }
1767 }
1768 }
1769},
1770{
1771 USB_DEVICE(0x0582, 0x0127),
1772 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1773 /* .vendor_name = "Roland", */
1774 /* .product_name = "GR-55", */
1775 .ifnum = QUIRK_ANY_INTERFACE,
1776 .type = QUIRK_COMPOSITE,
1777 .data = (const struct snd_usb_audio_quirk[]) {
1778 {
1779 .ifnum = 0,
1780 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1781 },
1782 {
1783 .ifnum = 1,
1784 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1785 },
1786 {
1787 .ifnum = 2,
1788 .type = QUIRK_MIDI_STANDARD_INTERFACE
1789 },
1790 {
1791 .ifnum = -1
1792 }
1793 }
1794 }
1795},
1796{
1797 /* Added support for Roland UM-ONE which differs from UM-1 */
1798 USB_DEVICE(0x0582, 0x012a),
1799 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1800 /* .vendor_name = "ROLAND", */
1801 /* .product_name = "UM-ONE", */
1802 .ifnum = 0,
1803 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1804 .data = & (const struct snd_usb_midi_endpoint_info) {
1805 .out_cables = 0x0001,
1806 .in_cables = 0x0003
1807 }
1808 }
1809},
1810{
1811 USB_DEVICE(0x0582, 0x011e),
1812 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1813 /* .vendor_name = "BOSS", */
1814 /* .product_name = "BR-800", */
1815 .ifnum = QUIRK_ANY_INTERFACE,
1816 .type = QUIRK_COMPOSITE,
1817 .data = (const struct snd_usb_audio_quirk[]) {
1818 {
1819 .ifnum = 0,
1820 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1821 },
1822 {
1823 .ifnum = 1,
1824 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1825 },
1826 {
1827 .ifnum = 2,
1828 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1829 .data = & (const struct snd_usb_midi_endpoint_info) {
1830 .out_cables = 0x0001,
1831 .in_cables = 0x0001
1832 }
1833 },
1834 {
1835 .ifnum = -1
1836 }
1837 }
1838 }
1839},
1840{
1841 USB_DEVICE(0x0582, 0x0130),
1842 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1843 /* .vendor_name = "BOSS", */
1844 /* .product_name = "MICRO BR-80", */
1845 .ifnum = QUIRK_ANY_INTERFACE,
1846 .type = QUIRK_COMPOSITE,
1847 .data = (const struct snd_usb_audio_quirk[]) {
1848 {
1849 .ifnum = 0,
1850 .type = QUIRK_IGNORE_INTERFACE
1851 },
1852 {
1853 .ifnum = 1,
1854 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1855 },
1856 {
1857 .ifnum = 2,
1858 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1859 },
1860 {
1861 .ifnum = 3,
1862 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1863 .data = & (const struct snd_usb_midi_endpoint_info) {
1864 .out_cables = 0x0001,
1865 .in_cables = 0x0001
1866 }
1867 },
1868 {
1869 .ifnum = -1
1870 }
1871 }
1872 }
1873},
1874{
1875 USB_DEVICE(0x0582, 0x0159),
1876 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1877 /* .vendor_name = "Roland", */
1878 /* .product_name = "UA-22", */
1879 .ifnum = QUIRK_ANY_INTERFACE,
1880 .type = QUIRK_COMPOSITE,
1881 .data = (const struct snd_usb_audio_quirk[]) {
1882 {
1883 .ifnum = 0,
1884 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1885 },
1886 {
1887 .ifnum = 1,
1888 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1889 },
1890 {
1891 .ifnum = 2,
1892 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1893 .data = & (const struct snd_usb_midi_endpoint_info) {
1894 .out_cables = 0x0001,
1895 .in_cables = 0x0001
1896 }
1897 },
1898 {
1899 .ifnum = -1
1900 }
1901 }
1902 }
1903},
1904
1905/* Guillemot devices */
1906{
1907 /*
1908 * This is for the "Windows Edition" where the external MIDI ports are
1909 * the only MIDI ports; the control data is reported through HID
1910 * interfaces. The "Macintosh Edition" has ID 0xd002 and uses standard
1911 * compliant USB MIDI ports for external MIDI and controls.
1912 */
1913 USB_DEVICE_VENDOR_SPEC(0x06f8, 0xb000),
1914 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1915 .vendor_name = "Hercules",
1916 .product_name = "DJ Console (WE)",
1917 .ifnum = 4,
1918 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1919 .data = & (const struct snd_usb_midi_endpoint_info) {
1920 .out_cables = 0x0001,
1921 .in_cables = 0x0001
1922 }
1923 }
1924},
1925
1926/* Midiman/M-Audio devices */
1927{
1928 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1002),
1929 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1930 .vendor_name = "M-Audio",
1931 .product_name = "MidiSport 2x2",
1932 .ifnum = QUIRK_ANY_INTERFACE,
1933 .type = QUIRK_MIDI_MIDIMAN,
1934 .data = & (const struct snd_usb_midi_endpoint_info) {
1935 .out_cables = 0x0003,
1936 .in_cables = 0x0003
1937 }
1938 }
1939},
1940{
1941 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1011),
1942 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1943 .vendor_name = "M-Audio",
1944 .product_name = "MidiSport 1x1",
1945 .ifnum = QUIRK_ANY_INTERFACE,
1946 .type = QUIRK_MIDI_MIDIMAN,
1947 .data = & (const struct snd_usb_midi_endpoint_info) {
1948 .out_cables = 0x0001,
1949 .in_cables = 0x0001
1950 }
1951 }
1952},
1953{
1954 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1015),
1955 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1956 .vendor_name = "M-Audio",
1957 .product_name = "Keystation",
1958 .ifnum = QUIRK_ANY_INTERFACE,
1959 .type = QUIRK_MIDI_MIDIMAN,
1960 .data = & (const struct snd_usb_midi_endpoint_info) {
1961 .out_cables = 0x0001,
1962 .in_cables = 0x0001
1963 }
1964 }
1965},
1966{
1967 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1021),
1968 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1969 .vendor_name = "M-Audio",
1970 .product_name = "MidiSport 4x4",
1971 .ifnum = QUIRK_ANY_INTERFACE,
1972 .type = QUIRK_MIDI_MIDIMAN,
1973 .data = & (const struct snd_usb_midi_endpoint_info) {
1974 .out_cables = 0x000f,
1975 .in_cables = 0x000f
1976 }
1977 }
1978},
1979{
1980 /*
1981 * For hardware revision 1.05; in the later revisions (1.10 and
1982 * 1.21), 0x1031 is the ID for the device without firmware.
1983 * Thanks to Olaf Giesbrecht <Olaf_Giesbrecht@yahoo.de>
1984 */
1985 USB_DEVICE_VER(0x0763, 0x1031, 0x0100, 0x0109),
1986 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1987 .vendor_name = "M-Audio",
1988 .product_name = "MidiSport 8x8",
1989 .ifnum = QUIRK_ANY_INTERFACE,
1990 .type = QUIRK_MIDI_MIDIMAN,
1991 .data = & (const struct snd_usb_midi_endpoint_info) {
1992 .out_cables = 0x01ff,
1993 .in_cables = 0x01ff
1994 }
1995 }
1996},
1997{
1998 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1033),
1999 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2000 .vendor_name = "M-Audio",
2001 .product_name = "MidiSport 8x8",
2002 .ifnum = QUIRK_ANY_INTERFACE,
2003 .type = QUIRK_MIDI_MIDIMAN,
2004 .data = & (const struct snd_usb_midi_endpoint_info) {
2005 .out_cables = 0x01ff,
2006 .in_cables = 0x01ff
2007 }
2008 }
2009},
2010{
2011 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1041),
2012 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2013 .vendor_name = "M-Audio",
2014 .product_name = "MidiSport 2x4",
2015 .ifnum = QUIRK_ANY_INTERFACE,
2016 .type = QUIRK_MIDI_MIDIMAN,
2017 .data = & (const struct snd_usb_midi_endpoint_info) {
2018 .out_cables = 0x000f,
2019 .in_cables = 0x0003
2020 }
2021 }
2022},
2023{
2024 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2001),
2025 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2026 .vendor_name = "M-Audio",
2027 .product_name = "Quattro",
2028 .ifnum = QUIRK_ANY_INTERFACE,
2029 .type = QUIRK_COMPOSITE,
2030 .data = & (const struct snd_usb_audio_quirk[]) {
2031 /*
2032 * Interfaces 0-2 are "Windows-compatible", 16-bit only,
2033 * and share endpoints with the other interfaces.
2034 * Ignore them. The other interfaces can do 24 bits,
2035 * but captured samples are big-endian (see usbaudio.c).
2036 */
2037 {
2038 .ifnum = 0,
2039 .type = QUIRK_IGNORE_INTERFACE
2040 },
2041 {
2042 .ifnum = 1,
2043 .type = QUIRK_IGNORE_INTERFACE
2044 },
2045 {
2046 .ifnum = 2,
2047 .type = QUIRK_IGNORE_INTERFACE
2048 },
2049 {
2050 .ifnum = 3,
2051 .type = QUIRK_IGNORE_INTERFACE
2052 },
2053 {
2054 .ifnum = 4,
2055 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2056 },
2057 {
2058 .ifnum = 5,
2059 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2060 },
2061 {
2062 .ifnum = 6,
2063 .type = QUIRK_IGNORE_INTERFACE
2064 },
2065 {
2066 .ifnum = 7,
2067 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2068 },
2069 {
2070 .ifnum = 8,
2071 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2072 },
2073 {
2074 .ifnum = 9,
2075 .type = QUIRK_MIDI_MIDIMAN,
2076 .data = & (const struct snd_usb_midi_endpoint_info) {
2077 .out_cables = 0x0001,
2078 .in_cables = 0x0001
2079 }
2080 },
2081 {
2082 .ifnum = -1
2083 }
2084 }
2085 }
2086},
2087{
2088 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2003),
2089 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2090 .vendor_name = "M-Audio",
2091 .product_name = "AudioPhile",
2092 .ifnum = 6,
2093 .type = QUIRK_MIDI_MIDIMAN,
2094 .data = & (const struct snd_usb_midi_endpoint_info) {
2095 .out_cables = 0x0001,
2096 .in_cables = 0x0001
2097 }
2098 }
2099},
2100{
2101 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2008),
2102 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2103 .vendor_name = "M-Audio",
2104 .product_name = "Ozone",
2105 .ifnum = 3,
2106 .type = QUIRK_MIDI_MIDIMAN,
2107 .data = & (const struct snd_usb_midi_endpoint_info) {
2108 .out_cables = 0x0001,
2109 .in_cables = 0x0001
2110 }
2111 }
2112},
2113{
2114 USB_DEVICE_VENDOR_SPEC(0x0763, 0x200d),
2115 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2116 .vendor_name = "M-Audio",
2117 .product_name = "OmniStudio",
2118 .ifnum = QUIRK_ANY_INTERFACE,
2119 .type = QUIRK_COMPOSITE,
2120 .data = & (const struct snd_usb_audio_quirk[]) {
2121 {
2122 .ifnum = 0,
2123 .type = QUIRK_IGNORE_INTERFACE
2124 },
2125 {
2126 .ifnum = 1,
2127 .type = QUIRK_IGNORE_INTERFACE
2128 },
2129 {
2130 .ifnum = 2,
2131 .type = QUIRK_IGNORE_INTERFACE
2132 },
2133 {
2134 .ifnum = 3,
2135 .type = QUIRK_IGNORE_INTERFACE
2136 },
2137 {
2138 .ifnum = 4,
2139 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2140 },
2141 {
2142 .ifnum = 5,
2143 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2144 },
2145 {
2146 .ifnum = 6,
2147 .type = QUIRK_IGNORE_INTERFACE
2148 },
2149 {
2150 .ifnum = 7,
2151 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2152 },
2153 {
2154 .ifnum = 8,
2155 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2156 },
2157 {
2158 .ifnum = 9,
2159 .type = QUIRK_MIDI_MIDIMAN,
2160 .data = & (const struct snd_usb_midi_endpoint_info) {
2161 .out_cables = 0x0001,
2162 .in_cables = 0x0001
2163 }
2164 },
2165 {
2166 .ifnum = -1
2167 }
2168 }
2169 }
2170},
2171{
2172 USB_DEVICE(0x0763, 0x2019),
2173 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2174 /* .vendor_name = "M-Audio", */
2175 /* .product_name = "Ozone Academic", */
2176 .ifnum = QUIRK_ANY_INTERFACE,
2177 .type = QUIRK_COMPOSITE,
2178 .data = & (const struct snd_usb_audio_quirk[]) {
2179 {
2180 .ifnum = 0,
2181 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2182 },
2183 {
2184 .ifnum = 1,
2185 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2186 },
2187 {
2188 .ifnum = 2,
2189 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2190 },
2191 {
2192 .ifnum = 3,
2193 .type = QUIRK_MIDI_MIDIMAN,
2194 .data = & (const struct snd_usb_midi_endpoint_info) {
2195 .out_cables = 0x0001,
2196 .in_cables = 0x0001
2197 }
2198 },
2199 {
2200 .ifnum = -1
2201 }
2202 }
2203 }
2204},
2205{
2206 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2080),
2207 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2208 /* .vendor_name = "M-Audio", */
2209 /* .product_name = "Fast Track Ultra", */
2210 .ifnum = QUIRK_ANY_INTERFACE,
2211 .type = QUIRK_COMPOSITE,
2212 .data = & (const struct snd_usb_audio_quirk[]) {
2213 {
2214 .ifnum = 0,
2215 .type = QUIRK_AUDIO_STANDARD_MIXER,
2216 },
2217 {
2218 .ifnum = 1,
2219 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2220 .data = & (const struct audioformat) {
2221 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2222 .channels = 8,
2223 .iface = 1,
2224 .altsetting = 1,
2225 .altset_idx = 1,
2226 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2227 .endpoint = 0x01,
2228 .ep_attr = 0x09,
2229 .rates = SNDRV_PCM_RATE_44100 |
2230 SNDRV_PCM_RATE_48000 |
2231 SNDRV_PCM_RATE_88200 |
2232 SNDRV_PCM_RATE_96000,
2233 .rate_min = 44100,
2234 .rate_max = 96000,
2235 .nr_rates = 4,
2236 .rate_table = (unsigned int[]) {
2237 44100, 48000, 88200, 96000
2238 }
2239 }
2240 },
2241 {
2242 .ifnum = 2,
2243 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2244 .data = & (const struct audioformat) {
2245 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2246 .channels = 8,
2247 .iface = 2,
2248 .altsetting = 1,
2249 .altset_idx = 1,
2250 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2251 .endpoint = 0x81,
2252 .ep_attr = 0x05,
2253 .rates = SNDRV_PCM_RATE_44100 |
2254 SNDRV_PCM_RATE_48000 |
2255 SNDRV_PCM_RATE_88200 |
2256 SNDRV_PCM_RATE_96000,
2257 .rate_min = 44100,
2258 .rate_max = 96000,
2259 .nr_rates = 4,
2260 .rate_table = (unsigned int[]) {
2261 44100, 48000, 88200, 96000
2262 }
2263 }
2264 },
2265 /* interface 3 (MIDI) is standard compliant */
2266 {
2267 .ifnum = -1
2268 }
2269 }
2270 }
2271},
2272{
2273 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2081),
2274 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2275 /* .vendor_name = "M-Audio", */
2276 /* .product_name = "Fast Track Ultra 8R", */
2277 .ifnum = QUIRK_ANY_INTERFACE,
2278 .type = QUIRK_COMPOSITE,
2279 .data = & (const struct snd_usb_audio_quirk[]) {
2280 {
2281 .ifnum = 0,
2282 .type = QUIRK_AUDIO_STANDARD_MIXER,
2283 },
2284 {
2285 .ifnum = 1,
2286 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2287 .data = & (const struct audioformat) {
2288 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2289 .channels = 8,
2290 .iface = 1,
2291 .altsetting = 1,
2292 .altset_idx = 1,
2293 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2294 .endpoint = 0x01,
2295 .ep_attr = 0x09,
2296 .rates = SNDRV_PCM_RATE_44100 |
2297 SNDRV_PCM_RATE_48000 |
2298 SNDRV_PCM_RATE_88200 |
2299 SNDRV_PCM_RATE_96000,
2300 .rate_min = 44100,
2301 .rate_max = 96000,
2302 .nr_rates = 4,
2303 .rate_table = (unsigned int[]) {
2304 44100, 48000, 88200, 96000
2305 }
2306 }
2307 },
2308 {
2309 .ifnum = 2,
2310 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2311 .data = & (const struct audioformat) {
2312 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2313 .channels = 8,
2314 .iface = 2,
2315 .altsetting = 1,
2316 .altset_idx = 1,
2317 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2318 .endpoint = 0x81,
2319 .ep_attr = 0x05,
2320 .rates = SNDRV_PCM_RATE_44100 |
2321 SNDRV_PCM_RATE_48000 |
2322 SNDRV_PCM_RATE_88200 |
2323 SNDRV_PCM_RATE_96000,
2324 .rate_min = 44100,
2325 .rate_max = 96000,
2326 .nr_rates = 4,
2327 .rate_table = (unsigned int[]) {
2328 44100, 48000, 88200, 96000
2329 }
2330 }
2331 },
2332 /* interface 3 (MIDI) is standard compliant */
2333 {
2334 .ifnum = -1
2335 }
2336 }
2337 }
2338},
2339
2340/* Casio devices */
2341{
2342 USB_DEVICE(0x07cf, 0x6801),
2343 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2344 .vendor_name = "Casio",
2345 .product_name = "PL-40R",
2346 .ifnum = 0,
2347 .type = QUIRK_MIDI_YAMAHA
2348 }
2349},
2350{
2351 /* this ID is used by several devices without a product ID */
2352 USB_DEVICE(0x07cf, 0x6802),
2353 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2354 .vendor_name = "Casio",
2355 .product_name = "Keyboard",
2356 .ifnum = 0,
2357 .type = QUIRK_MIDI_YAMAHA
2358 }
2359},
2360
2361/* Mark of the Unicorn devices */
2362{
2363 /* thanks to Robert A. Lerche <ral 'at' msbit.com> */
2364 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
2365 USB_DEVICE_ID_MATCH_PRODUCT |
2366 USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
2367 .idVendor = 0x07fd,
2368 .idProduct = 0x0001,
2369 .bDeviceSubClass = 2,
2370 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2371 .vendor_name = "MOTU",
2372 .product_name = "Fastlane",
2373 .ifnum = QUIRK_ANY_INTERFACE,
2374 .type = QUIRK_COMPOSITE,
2375 .data = & (const struct snd_usb_audio_quirk[]) {
2376 {
2377 .ifnum = 0,
2378 .type = QUIRK_MIDI_RAW_BYTES
2379 },
2380 {
2381 .ifnum = 1,
2382 .type = QUIRK_IGNORE_INTERFACE
2383 },
2384 {
2385 .ifnum = -1
2386 }
2387 }
2388 }
2389},
2390
2391/* Emagic devices */
2392{
2393 USB_DEVICE(0x086a, 0x0001),
2394 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2395 .vendor_name = "Emagic",
2396 /* .product_name = "Unitor8", */
2397 .ifnum = 2,
2398 .type = QUIRK_MIDI_EMAGIC,
2399 .data = & (const struct snd_usb_midi_endpoint_info) {
2400 .out_cables = 0x80ff,
2401 .in_cables = 0x80ff
2402 }
2403 }
2404},
2405{
2406 USB_DEVICE(0x086a, 0x0002),
2407 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2408 .vendor_name = "Emagic",
2409 /* .product_name = "AMT8", */
2410 .ifnum = 2,
2411 .type = QUIRK_MIDI_EMAGIC,
2412 .data = & (const struct snd_usb_midi_endpoint_info) {
2413 .out_cables = 0x80ff,
2414 .in_cables = 0x80ff
2415 }
2416 }
2417},
2418{
2419 USB_DEVICE(0x086a, 0x0003),
2420 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2421 .vendor_name = "Emagic",
2422 /* .product_name = "MT4", */
2423 .ifnum = 2,
2424 .type = QUIRK_MIDI_EMAGIC,
2425 .data = & (const struct snd_usb_midi_endpoint_info) {
2426 .out_cables = 0x800f,
2427 .in_cables = 0x8003
2428 }
2429 }
2430},
2431
2432/* KORG devices */
2433{
2434 USB_DEVICE_VENDOR_SPEC(0x0944, 0x0200),
2435 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2436 .vendor_name = "KORG, Inc.",
2437 /* .product_name = "PANDORA PX5D", */
2438 .ifnum = 3,
2439 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2440 }
2441},
2442
2443{
2444 USB_DEVICE_VENDOR_SPEC(0x0944, 0x0201),
2445 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2446 .vendor_name = "KORG, Inc.",
2447 /* .product_name = "ToneLab ST", */
2448 .ifnum = 3,
2449 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2450 }
2451},
2452
2453/* AKAI devices */
2454{
2455 USB_DEVICE(0x09e8, 0x0062),
2456 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2457 .vendor_name = "AKAI",
2458 .product_name = "MPD16",
2459 .ifnum = 0,
2460 .type = QUIRK_MIDI_AKAI,
2461 }
2462},
2463
2464/* TerraTec devices */
2465{
2466 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0012),
2467 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2468 .vendor_name = "TerraTec",
2469 .product_name = "PHASE 26",
2470 .ifnum = 3,
2471 .type = QUIRK_MIDI_STANDARD_INTERFACE
2472 }
2473},
2474{
2475 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0013),
2476 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2477 .vendor_name = "TerraTec",
2478 .product_name = "PHASE 26",
2479 .ifnum = 3,
2480 .type = QUIRK_MIDI_STANDARD_INTERFACE
2481 }
2482},
2483{
2484 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0014),
2485 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2486 .vendor_name = "TerraTec",
2487 .product_name = "PHASE 26",
2488 .ifnum = 3,
2489 .type = QUIRK_MIDI_STANDARD_INTERFACE
2490 }
2491},
2492{
2493 USB_DEVICE(0x0ccd, 0x0028),
2494 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2495 .vendor_name = "TerraTec",
2496 .product_name = "Aureon5.1MkII",
2497 .ifnum = QUIRK_NO_INTERFACE
2498 }
2499},
2500{
2501 USB_DEVICE(0x0ccd, 0x0035),
2502 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2503 .vendor_name = "Miditech",
2504 .product_name = "Play'n Roll",
2505 .ifnum = 0,
2506 .type = QUIRK_MIDI_CME
2507 }
2508},
2509
2510/* Stanton/N2IT Final Scratch v1 device ('Scratchamp') */
2511{
2512 USB_DEVICE(0x103d, 0x0100),
2513 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2514 .vendor_name = "Stanton",
2515 .product_name = "ScratchAmp",
2516 .ifnum = QUIRK_NO_INTERFACE
2517 }
2518},
2519{
2520 USB_DEVICE(0x103d, 0x0101),
2521 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2522 .vendor_name = "Stanton",
2523 .product_name = "ScratchAmp",
2524 .ifnum = QUIRK_NO_INTERFACE
2525 }
2526},
2527
2528/* Novation EMS devices */
2529{
2530 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0001),
2531 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2532 .vendor_name = "Novation",
2533 .product_name = "ReMOTE Audio/XStation",
2534 .ifnum = 4,
2535 .type = QUIRK_MIDI_NOVATION
2536 }
2537},
2538{
2539 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0002),
2540 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2541 .vendor_name = "Novation",
2542 .product_name = "Speedio",
2543 .ifnum = 3,
2544 .type = QUIRK_MIDI_NOVATION
2545 }
2546},
2547{
2548 USB_DEVICE(0x1235, 0x000e),
2549 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2550 /* .vendor_name = "Novation", */
2551 /* .product_name = "Launchpad", */
2552 .ifnum = 0,
2553 .type = QUIRK_MIDI_RAW_BYTES
2554 }
2555},
2556{
2557 USB_DEVICE_VENDOR_SPEC(0x1235, 0x4661),
2558 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2559 .vendor_name = "Novation",
2560 .product_name = "ReMOTE25",
2561 .ifnum = 0,
2562 .type = QUIRK_MIDI_NOVATION
2563 }
2564},
2565
2566/* Access Music devices */
2567{
2568 /* VirusTI Desktop */
2569 USB_DEVICE_VENDOR_SPEC(0x133e, 0x0815),
2570 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2571 .ifnum = QUIRK_ANY_INTERFACE,
2572 .type = QUIRK_COMPOSITE,
2573 .data = &(const struct snd_usb_audio_quirk[]) {
2574 {
2575 .ifnum = 3,
2576 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2577 .data = &(const struct snd_usb_midi_endpoint_info) {
2578 .out_cables = 0x0003,
2579 .in_cables = 0x0003
2580 }
2581 },
2582 {
2583 .ifnum = 4,
2584 .type = QUIRK_IGNORE_INTERFACE
2585 },
2586 {
2587 .ifnum = -1
2588 }
2589 }
2590 }
2591},
2592
2593/* */
2594{
2595 /* aka. Serato Scratch Live DJ Box */
2596 USB_DEVICE(0x13e5, 0x0001),
2597 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2598 .vendor_name = "Rane",
2599 .product_name = "SL-1",
2600 .ifnum = QUIRK_NO_INTERFACE
2601 }
2602},
2603
2604/* Native Instruments MK2 series */
2605{
2606 /* Komplete Audio 6 */
2607 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2608 .idVendor = 0x17cc,
2609 .idProduct = 0x1000,
2610},
2611{
2612 /* Traktor Audio 6 */
2613 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2614 .idVendor = 0x17cc,
2615 .idProduct = 0x1010,
2616},
2617{
2618 /* Traktor Audio 10 */
2619 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2620 .idVendor = 0x17cc,
2621 .idProduct = 0x1020,
2622},
2623
2624/* KeithMcMillen Stringport */
2625{
2626 USB_DEVICE(0x1f38, 0x0001),
2627 .bInterfaceClass = USB_CLASS_AUDIO,
2628},
2629
2630/* Miditech devices */
2631{
2632 USB_DEVICE(0x4752, 0x0011),
2633 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2634 .vendor_name = "Miditech",
2635 .product_name = "Midistart-2",
2636 .ifnum = 0,
2637 .type = QUIRK_MIDI_CME
2638 }
2639},
2640
2641/* Central Music devices */
2642{
2643 /* this ID used by both Miditech MidiStudio-2 and CME UF-x */
2644 USB_DEVICE(0x7104, 0x2202),
2645 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2646 .ifnum = 0,
2647 .type = QUIRK_MIDI_CME
2648 }
2649},
2650
2651/* Hauppauge HVR-950Q and HVR-850 */
2652{
2653 USB_DEVICE_VENDOR_SPEC(0x2040, 0x7200),
2654 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2655 USB_DEVICE_ID_MATCH_INT_CLASS |
2656 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2657 .bInterfaceClass = USB_CLASS_AUDIO,
2658 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2659 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2660 .vendor_name = "Hauppauge",
2661 .product_name = "HVR-950Q",
2662 .ifnum = QUIRK_ANY_INTERFACE,
2663 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2664 }
2665},
2666{
2667 USB_DEVICE_VENDOR_SPEC(0x2040, 0x7240),
2668 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2669 USB_DEVICE_ID_MATCH_INT_CLASS |
2670 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2671 .bInterfaceClass = USB_CLASS_AUDIO,
2672 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2673 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2674 .vendor_name = "Hauppauge",
2675 .product_name = "HVR-850",
2676 .ifnum = QUIRK_ANY_INTERFACE,
2677 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2678 }
2679},
2680{
2681 USB_DEVICE_VENDOR_SPEC(0x2040, 0x7210),
2682 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2683 USB_DEVICE_ID_MATCH_INT_CLASS |
2684 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2685 .bInterfaceClass = USB_CLASS_AUDIO,
2686 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2687 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2688 .vendor_name = "Hauppauge",
2689 .product_name = "HVR-950Q",
2690 .ifnum = QUIRK_ANY_INTERFACE,
2691 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2692 }
2693},
2694{
2695 USB_DEVICE_VENDOR_SPEC(0x2040, 0x7217),
2696 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2697 USB_DEVICE_ID_MATCH_INT_CLASS |
2698 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2699 .bInterfaceClass = USB_CLASS_AUDIO,
2700 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2701 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2702 .vendor_name = "Hauppauge",
2703 .product_name = "HVR-950Q",
2704 .ifnum = QUIRK_ANY_INTERFACE,
2705 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2706 }
2707},
2708{
2709 USB_DEVICE_VENDOR_SPEC(0x2040, 0x721b),
2710 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2711 USB_DEVICE_ID_MATCH_INT_CLASS |
2712 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2713 .bInterfaceClass = USB_CLASS_AUDIO,
2714 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2715 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2716 .vendor_name = "Hauppauge",
2717 .product_name = "HVR-950Q",
2718 .ifnum = QUIRK_ANY_INTERFACE,
2719 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2720 }
2721},
2722{
2723 USB_DEVICE_VENDOR_SPEC(0x2040, 0x721e),
2724 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2725 USB_DEVICE_ID_MATCH_INT_CLASS |
2726 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2727 .bInterfaceClass = USB_CLASS_AUDIO,
2728 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2729 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2730 .vendor_name = "Hauppauge",
2731 .product_name = "HVR-950Q",
2732 .ifnum = QUIRK_ANY_INTERFACE,
2733 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2734 }
2735},
2736{
2737 USB_DEVICE_VENDOR_SPEC(0x2040, 0x721f),
2738 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2739 USB_DEVICE_ID_MATCH_INT_CLASS |
2740 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2741 .bInterfaceClass = USB_CLASS_AUDIO,
2742 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2743 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2744 .vendor_name = "Hauppauge",
2745 .product_name = "HVR-950Q",
2746 .ifnum = QUIRK_ANY_INTERFACE,
2747 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2748 }
2749},
2750{
2751 USB_DEVICE_VENDOR_SPEC(0x2040, 0x7280),
2752 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2753 USB_DEVICE_ID_MATCH_INT_CLASS |
2754 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2755 .bInterfaceClass = USB_CLASS_AUDIO,
2756 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2757 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2758 .vendor_name = "Hauppauge",
2759 .product_name = "HVR-950Q",
2760 .ifnum = QUIRK_ANY_INTERFACE,
2761 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2762 }
2763},
2764{
2765 USB_DEVICE_VENDOR_SPEC(0x0fd9, 0x0008),
2766 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2767 USB_DEVICE_ID_MATCH_INT_CLASS |
2768 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2769 .bInterfaceClass = USB_CLASS_AUDIO,
2770 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2771 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2772 .vendor_name = "Hauppauge",
2773 .product_name = "HVR-950Q",
2774 .ifnum = QUIRK_ANY_INTERFACE,
2775 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2776 }
2777},
2778
2779/* Digidesign Mbox */
2780{
2781 /* Thanks to Clemens Ladisch <clemens@ladisch.de> */
2782 USB_DEVICE(0x0dba, 0x1000),
2783 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2784 .vendor_name = "Digidesign",
2785 .product_name = "MBox",
2786 .ifnum = QUIRK_ANY_INTERFACE,
2787 .type = QUIRK_COMPOSITE,
2788 .data = (const struct snd_usb_audio_quirk[]){
2789 {
2790 .ifnum = 0,
2791 .type = QUIRK_IGNORE_INTERFACE,
2792 },
2793 {
2794 .ifnum = 1,
2795 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2796 .data = &(const struct audioformat) {
2797 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2798 .channels = 2,
2799 .iface = 1,
2800 .altsetting = 1,
2801 .altset_idx = 1,
2802 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2803 .endpoint = 0x02,
2804 .ep_attr = 0x01,
2805 .maxpacksize = 0x130,
2806 .rates = SNDRV_PCM_RATE_44100 |
2807 SNDRV_PCM_RATE_48000,
2808 .rate_min = 44100,
2809 .rate_max = 48000,
2810 .nr_rates = 2,
2811 .rate_table = (unsigned int[]) {
2812 44100, 48000
2813 }
2814 }
2815 },
2816 {
2817 .ifnum = -1
2818 }
2819 }
2820
2821 }
2822},
2823
2824/* Microsoft XboxLive Headset/Xbox Communicator */
2825{
2826 USB_DEVICE(0x045e, 0x0283),
2827 .bInterfaceClass = USB_CLASS_PER_INTERFACE,
2828 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2829 .vendor_name = "Microsoft",
2830 .product_name = "XboxLive Headset/Xbox Communicator",
2831 .ifnum = QUIRK_ANY_INTERFACE,
2832 .type = QUIRK_COMPOSITE,
2833 .data = &(const struct snd_usb_audio_quirk[]) {
2834 {
2835 /* playback */
2836 .ifnum = 0,
2837 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2838 .data = &(const struct audioformat) {
2839 .formats = SNDRV_PCM_FMTBIT_S16_LE,
2840 .channels = 1,
2841 .iface = 0,
2842 .altsetting = 0,
2843 .altset_idx = 0,
2844 .attributes = 0,
2845 .endpoint = 0x04,
2846 .ep_attr = 0x05,
2847 .rates = SNDRV_PCM_RATE_CONTINUOUS,
2848 .rate_min = 22050,
2849 .rate_max = 22050
2850 }
2851 },
2852 {
2853 /* capture */
2854 .ifnum = 1,
2855 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2856 .data = &(const struct audioformat) {
2857 .formats = SNDRV_PCM_FMTBIT_S16_LE,
2858 .channels = 1,
2859 .iface = 1,
2860 .altsetting = 0,
2861 .altset_idx = 0,
2862 .attributes = 0,
2863 .endpoint = 0x85,
2864 .ep_attr = 0x05,
2865 .rates = SNDRV_PCM_RATE_CONTINUOUS,
2866 .rate_min = 16000,
2867 .rate_max = 16000
2868 }
2869 },
2870 {
2871 .ifnum = -1
2872 }
2873 }
2874 }
2875},
2876
2877{
2878 /*
2879 * Some USB MIDI devices don't have an audio control interface,
2880 * so we have to grab MIDI streaming interfaces here.
2881 */
2882 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS |
2883 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2884 .bInterfaceClass = USB_CLASS_AUDIO,
2885 .bInterfaceSubClass = USB_SUBCLASS_MIDISTREAMING,
2886 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2887 .ifnum = QUIRK_ANY_INTERFACE,
2888 .type = QUIRK_MIDI_STANDARD_INTERFACE
2889 }
2890},
2891
2892#undef USB_DEVICE_VENDOR_SPEC