GNU Linux-libre 5.15.82-gnu
[releases.git] / sound / usb / quirks-table.h
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_AUDIO_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 }
192 YAMAHA_DEVICE(0x1000, "UX256"),
193 YAMAHA_DEVICE(0x1001, "MU1000"),
194 YAMAHA_DEVICE(0x1002, "MU2000"),
195 YAMAHA_DEVICE(0x1003, "MU500"),
196 YAMAHA_INTERFACE(0x1004, 3, "UW500"),
197 YAMAHA_DEVICE(0x1005, "MOTIF6"),
198 YAMAHA_DEVICE(0x1006, "MOTIF7"),
199 YAMAHA_DEVICE(0x1007, "MOTIF8"),
200 YAMAHA_DEVICE(0x1008, "UX96"),
201 YAMAHA_DEVICE(0x1009, "UX16"),
202 YAMAHA_INTERFACE(0x100a, 3, "EOS BX"),
203 YAMAHA_DEVICE(0x100c, "UC-MX"),
204 YAMAHA_DEVICE(0x100d, "UC-KX"),
205 YAMAHA_DEVICE(0x100e, "S08"),
206 YAMAHA_DEVICE(0x100f, "CLP-150"),
207 YAMAHA_DEVICE(0x1010, "CLP-170"),
208 YAMAHA_DEVICE(0x1011, "P-250"),
209 YAMAHA_DEVICE(0x1012, "TYROS"),
210 YAMAHA_DEVICE(0x1013, "PF-500"),
211 YAMAHA_DEVICE(0x1014, "S90"),
212 YAMAHA_DEVICE(0x1015, "MOTIF-R"),
213 YAMAHA_DEVICE(0x1016, "MDP-5"),
214 YAMAHA_DEVICE(0x1017, "CVP-204"),
215 YAMAHA_DEVICE(0x1018, "CVP-206"),
216 YAMAHA_DEVICE(0x1019, "CVP-208"),
217 YAMAHA_DEVICE(0x101a, "CVP-210"),
218 YAMAHA_DEVICE(0x101b, "PSR-1100"),
219 YAMAHA_DEVICE(0x101c, "PSR-2100"),
220 YAMAHA_DEVICE(0x101d, "CLP-175"),
221 YAMAHA_DEVICE(0x101e, "PSR-K1"),
222 YAMAHA_DEVICE(0x101f, "EZ-J24"),
223 YAMAHA_DEVICE(0x1020, "EZ-250i"),
224 YAMAHA_DEVICE(0x1021, "MOTIF ES 6"),
225 YAMAHA_DEVICE(0x1022, "MOTIF ES 7"),
226 YAMAHA_DEVICE(0x1023, "MOTIF ES 8"),
227 YAMAHA_DEVICE(0x1024, "CVP-301"),
228 YAMAHA_DEVICE(0x1025, "CVP-303"),
229 YAMAHA_DEVICE(0x1026, "CVP-305"),
230 YAMAHA_DEVICE(0x1027, "CVP-307"),
231 YAMAHA_DEVICE(0x1028, "CVP-309"),
232 YAMAHA_DEVICE(0x1029, "CVP-309GP"),
233 YAMAHA_DEVICE(0x102a, "PSR-1500"),
234 YAMAHA_DEVICE(0x102b, "PSR-3000"),
235 YAMAHA_DEVICE(0x102e, "ELS-01/01C"),
236 YAMAHA_DEVICE(0x1030, "PSR-295/293"),
237 YAMAHA_DEVICE(0x1031, "DGX-205/203"),
238 YAMAHA_DEVICE(0x1032, "DGX-305"),
239 YAMAHA_DEVICE(0x1033, "DGX-505"),
240 YAMAHA_DEVICE(0x1034, NULL),
241 YAMAHA_DEVICE(0x1035, NULL),
242 YAMAHA_DEVICE(0x1036, NULL),
243 YAMAHA_DEVICE(0x1037, NULL),
244 YAMAHA_DEVICE(0x1038, NULL),
245 YAMAHA_DEVICE(0x1039, NULL),
246 YAMAHA_DEVICE(0x103a, NULL),
247 YAMAHA_DEVICE(0x103b, NULL),
248 YAMAHA_DEVICE(0x103c, NULL),
249 YAMAHA_DEVICE(0x103d, NULL),
250 YAMAHA_DEVICE(0x103e, NULL),
251 YAMAHA_DEVICE(0x103f, NULL),
252 YAMAHA_DEVICE(0x1040, NULL),
253 YAMAHA_DEVICE(0x1041, NULL),
254 YAMAHA_DEVICE(0x1042, NULL),
255 YAMAHA_DEVICE(0x1043, NULL),
256 YAMAHA_DEVICE(0x1044, NULL),
257 YAMAHA_DEVICE(0x1045, NULL),
258 YAMAHA_INTERFACE(0x104e, 0, NULL),
259 YAMAHA_DEVICE(0x104f, NULL),
260 YAMAHA_DEVICE(0x1050, NULL),
261 YAMAHA_DEVICE(0x1051, NULL),
262 YAMAHA_DEVICE(0x1052, NULL),
263 YAMAHA_INTERFACE(0x1053, 0, NULL),
264 YAMAHA_INTERFACE(0x1054, 0, NULL),
265 YAMAHA_DEVICE(0x1055, NULL),
266 YAMAHA_DEVICE(0x1056, NULL),
267 YAMAHA_DEVICE(0x1057, NULL),
268 YAMAHA_DEVICE(0x1058, NULL),
269 YAMAHA_DEVICE(0x1059, NULL),
270 YAMAHA_DEVICE(0x105a, NULL),
271 YAMAHA_DEVICE(0x105b, NULL),
272 YAMAHA_DEVICE(0x105c, NULL),
273 YAMAHA_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 },
408 YAMAHA_DEVICE(0x2000, "DGP-7"),
409 YAMAHA_DEVICE(0x2001, "DGP-5"),
410 YAMAHA_DEVICE(0x2002, NULL),
411 YAMAHA_DEVICE(0x2003, NULL),
412 YAMAHA_DEVICE(0x5000, "CS1D"),
413 YAMAHA_DEVICE(0x5001, "DSP1D"),
414 YAMAHA_DEVICE(0x5002, "DME32"),
415 YAMAHA_DEVICE(0x5003, "DM2000"),
416 YAMAHA_DEVICE(0x5004, "02R96"),
417 YAMAHA_DEVICE(0x5005, "ACU16-C"),
418 YAMAHA_DEVICE(0x5006, "NHB32-C"),
419 YAMAHA_DEVICE(0x5007, "DM1000"),
420 YAMAHA_DEVICE(0x5008, "01V96"),
421 YAMAHA_DEVICE(0x5009, "SPX2000"),
422 YAMAHA_DEVICE(0x500a, "PM5D"),
423 YAMAHA_DEVICE(0x500b, "DME64N"),
424 YAMAHA_DEVICE(0x500c, "DME24N"),
425 YAMAHA_DEVICE(0x500d, NULL),
426 YAMAHA_DEVICE(0x500e, NULL),
427 YAMAHA_DEVICE(0x500f, NULL),
428 YAMAHA_DEVICE(0x7000, "DTX"),
429 YAMAHA_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         /* M-Audio Micro */
2054         USB_DEVICE_VENDOR_SPEC(0x0763, 0x201a),
2055 },
2056 {
2057         USB_DEVICE_VENDOR_SPEC(0x0763, 0x2030),
2058         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2059                 /* .vendor_name = "M-Audio", */
2060                 /* .product_name = "Fast Track C400", */
2061                 .ifnum = QUIRK_ANY_INTERFACE,
2062                 .type = QUIRK_COMPOSITE,
2063                 .data = &(const struct snd_usb_audio_quirk[]) {
2064                         {
2065                                 .ifnum = 1,
2066                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
2067                         },
2068                         /* Playback */
2069                         {
2070                                 .ifnum = 2,
2071                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2072                                 .data = &(const struct audioformat) {
2073                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2074                                         .channels = 6,
2075                                         .iface = 2,
2076                                         .altsetting = 1,
2077                                         .altset_idx = 1,
2078                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2079                                         .endpoint = 0x01,
2080                                         .ep_attr = 0x09,
2081                                         .rates = SNDRV_PCM_RATE_44100 |
2082                                                  SNDRV_PCM_RATE_48000 |
2083                                                  SNDRV_PCM_RATE_88200 |
2084                                                  SNDRV_PCM_RATE_96000,
2085                                         .rate_min = 44100,
2086                                         .rate_max = 96000,
2087                                         .nr_rates = 4,
2088                                         .rate_table = (unsigned int[]) {
2089                                                         44100, 48000, 88200, 96000
2090                                         },
2091                                         .clock = 0x80,
2092                                 }
2093                         },
2094                         /* Capture */
2095                         {
2096                                 .ifnum = 3,
2097                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2098                                 .data = &(const struct audioformat) {
2099                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2100                                         .channels = 4,
2101                                         .iface = 3,
2102                                         .altsetting = 1,
2103                                         .altset_idx = 1,
2104                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2105                                         .endpoint = 0x81,
2106                                         .ep_attr = 0x05,
2107                                         .rates = SNDRV_PCM_RATE_44100 |
2108                                                  SNDRV_PCM_RATE_48000 |
2109                                                  SNDRV_PCM_RATE_88200 |
2110                                                  SNDRV_PCM_RATE_96000,
2111                                         .rate_min = 44100,
2112                                         .rate_max = 96000,
2113                                         .nr_rates = 4,
2114                                         .rate_table = (unsigned int[]) {
2115                                                 44100, 48000, 88200, 96000
2116                                         },
2117                                         .clock = 0x80,
2118                                 }
2119                         },
2120                         /* MIDI */
2121                         {
2122                                 .ifnum = -1 /* Interface = 4 */
2123                         }
2124                 }
2125         }
2126 },
2127 {
2128         USB_DEVICE_VENDOR_SPEC(0x0763, 0x2031),
2129         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2130                 /* .vendor_name = "M-Audio", */
2131                 /* .product_name = "Fast Track C600", */
2132                 .ifnum = QUIRK_ANY_INTERFACE,
2133                 .type = QUIRK_COMPOSITE,
2134                 .data = &(const struct snd_usb_audio_quirk[]) {
2135                         {
2136                                 .ifnum = 1,
2137                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
2138                         },
2139                         /* Playback */
2140                         {
2141                                 .ifnum = 2,
2142                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2143                                 .data = &(const struct audioformat) {
2144                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2145                                         .channels = 8,
2146                                         .iface = 2,
2147                                         .altsetting = 1,
2148                                         .altset_idx = 1,
2149                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2150                                         .endpoint = 0x01,
2151                                         .ep_attr = 0x09,
2152                                         .rates = SNDRV_PCM_RATE_44100 |
2153                                                  SNDRV_PCM_RATE_48000 |
2154                                                  SNDRV_PCM_RATE_88200 |
2155                                                  SNDRV_PCM_RATE_96000,
2156                                         .rate_min = 44100,
2157                                         .rate_max = 96000,
2158                                         .nr_rates = 4,
2159                                         .rate_table = (unsigned int[]) {
2160                                                         44100, 48000, 88200, 96000
2161                                         },
2162                                         .clock = 0x80,
2163                                 }
2164                         },
2165                         /* Capture */
2166                         {
2167                                 .ifnum = 3,
2168                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2169                                 .data = &(const struct audioformat) {
2170                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2171                                         .channels = 6,
2172                                         .iface = 3,
2173                                         .altsetting = 1,
2174                                         .altset_idx = 1,
2175                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2176                                         .endpoint = 0x81,
2177                                         .ep_attr = 0x05,
2178                                         .rates = SNDRV_PCM_RATE_44100 |
2179                                                  SNDRV_PCM_RATE_48000 |
2180                                                  SNDRV_PCM_RATE_88200 |
2181                                                  SNDRV_PCM_RATE_96000,
2182                                         .rate_min = 44100,
2183                                         .rate_max = 96000,
2184                                         .nr_rates = 4,
2185                                         .rate_table = (unsigned int[]) {
2186                                                 44100, 48000, 88200, 96000
2187                                         },
2188                                         .clock = 0x80,
2189                                 }
2190                         },
2191                         /* MIDI */
2192                         {
2193                                 .ifnum = -1 /* Interface = 4 */
2194                         }
2195                 }
2196         }
2197 },
2198 {
2199         USB_DEVICE_VENDOR_SPEC(0x0763, 0x2080),
2200         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2201                 /* .vendor_name = "M-Audio", */
2202                 /* .product_name = "Fast Track Ultra", */
2203                 .ifnum = QUIRK_ANY_INTERFACE,
2204                 .type = QUIRK_COMPOSITE,
2205                 .data = & (const struct snd_usb_audio_quirk[]) {
2206                         {
2207                                 .ifnum = 0,
2208                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
2209                         },
2210                         {
2211                                 .ifnum = 1,
2212                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2213                                 .data = & (const struct audioformat) {
2214                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2215                                         .channels = 8,
2216                                         .iface = 1,
2217                                         .altsetting = 1,
2218                                         .altset_idx = 1,
2219                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2220                                         .endpoint = 0x01,
2221                                         .ep_attr = 0x09,
2222                                         .rates = SNDRV_PCM_RATE_44100 |
2223                                                  SNDRV_PCM_RATE_48000 |
2224                                                  SNDRV_PCM_RATE_88200 |
2225                                                  SNDRV_PCM_RATE_96000,
2226                                         .rate_min = 44100,
2227                                         .rate_max = 96000,
2228                                         .nr_rates = 4,
2229                                         .rate_table = (unsigned int[]) {
2230                                                 44100, 48000, 88200, 96000
2231                                         }
2232                                 }
2233                         },
2234                         {
2235                                 .ifnum = 2,
2236                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2237                                 .data = & (const struct audioformat) {
2238                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2239                                         .channels = 8,
2240                                         .iface = 2,
2241                                         .altsetting = 1,
2242                                         .altset_idx = 1,
2243                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2244                                         .endpoint = 0x81,
2245                                         .ep_attr = 0x05,
2246                                         .rates = SNDRV_PCM_RATE_44100 |
2247                                                  SNDRV_PCM_RATE_48000 |
2248                                                  SNDRV_PCM_RATE_88200 |
2249                                                  SNDRV_PCM_RATE_96000,
2250                                         .rate_min = 44100,
2251                                         .rate_max = 96000,
2252                                         .nr_rates = 4,
2253                                         .rate_table = (unsigned int[]) {
2254                                                 44100, 48000, 88200, 96000
2255                                         }
2256                                 }
2257                         },
2258                         /* interface 3 (MIDI) is standard compliant */
2259                         {
2260                                 .ifnum = -1
2261                         }
2262                 }
2263         }
2264 },
2265 {
2266         USB_DEVICE_VENDOR_SPEC(0x0763, 0x2081),
2267         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2268                 /* .vendor_name = "M-Audio", */
2269                 /* .product_name = "Fast Track Ultra 8R", */
2270                 .ifnum = QUIRK_ANY_INTERFACE,
2271                 .type = QUIRK_COMPOSITE,
2272                 .data = & (const struct snd_usb_audio_quirk[]) {
2273                         {
2274                                 .ifnum = 0,
2275                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
2276                         },
2277                         {
2278                                 .ifnum = 1,
2279                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2280                                 .data = & (const struct audioformat) {
2281                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2282                                         .channels = 8,
2283                                         .iface = 1,
2284                                         .altsetting = 1,
2285                                         .altset_idx = 1,
2286                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2287                                         .endpoint = 0x01,
2288                                         .ep_attr = 0x09,
2289                                         .rates = SNDRV_PCM_RATE_44100 |
2290                                                  SNDRV_PCM_RATE_48000 |
2291                                                  SNDRV_PCM_RATE_88200 |
2292                                                  SNDRV_PCM_RATE_96000,
2293                                         .rate_min = 44100,
2294                                         .rate_max = 96000,
2295                                         .nr_rates = 4,
2296                                         .rate_table = (unsigned int[]) {
2297                                                         44100, 48000, 88200, 96000
2298                                         }
2299                                 }
2300                         },
2301                         {
2302                                 .ifnum = 2,
2303                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2304                                 .data = & (const struct audioformat) {
2305                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2306                                         .channels = 8,
2307                                         .iface = 2,
2308                                         .altsetting = 1,
2309                                         .altset_idx = 1,
2310                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2311                                         .endpoint = 0x81,
2312                                         .ep_attr = 0x05,
2313                                         .rates = SNDRV_PCM_RATE_44100 |
2314                                                  SNDRV_PCM_RATE_48000 |
2315                                                  SNDRV_PCM_RATE_88200 |
2316                                                  SNDRV_PCM_RATE_96000,
2317                                         .rate_min = 44100,
2318                                         .rate_max = 96000,
2319                                         .nr_rates = 4,
2320                                         .rate_table = (unsigned int[]) {
2321                                                 44100, 48000, 88200, 96000
2322                                         }
2323                                 }
2324                         },
2325                         /* interface 3 (MIDI) is standard compliant */
2326                         {
2327                                 .ifnum = -1
2328                         }
2329                 }
2330         }
2331 },
2332
2333 /* Casio devices */
2334 {
2335         USB_DEVICE(0x07cf, 0x6801),
2336         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2337                 .vendor_name = "Casio",
2338                 .product_name = "PL-40R",
2339                 .ifnum = 0,
2340                 .type = QUIRK_MIDI_YAMAHA
2341         }
2342 },
2343 {
2344         /* this ID is used by several devices without a product ID */
2345         USB_DEVICE(0x07cf, 0x6802),
2346         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2347                 .vendor_name = "Casio",
2348                 .product_name = "Keyboard",
2349                 .ifnum = 0,
2350                 .type = QUIRK_MIDI_YAMAHA
2351         }
2352 },
2353
2354 /* Mark of the Unicorn devices */
2355 {
2356         /* thanks to Robert A. Lerche <ral 'at' msbit.com> */
2357         .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
2358                        USB_DEVICE_ID_MATCH_PRODUCT |
2359                        USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
2360         .idVendor = 0x07fd,
2361         .idProduct = 0x0001,
2362         .bDeviceSubClass = 2,
2363         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2364                 .vendor_name = "MOTU",
2365                 .product_name = "Fastlane",
2366                 .ifnum = QUIRK_ANY_INTERFACE,
2367                 .type = QUIRK_COMPOSITE,
2368                 .data = & (const struct snd_usb_audio_quirk[]) {
2369                         {
2370                                 .ifnum = 0,
2371                                 .type = QUIRK_MIDI_RAW_BYTES
2372                         },
2373                         {
2374                                 .ifnum = 1,
2375                                 .type = QUIRK_IGNORE_INTERFACE
2376                         },
2377                         {
2378                                 .ifnum = -1
2379                         }
2380                 }
2381         }
2382 },
2383
2384 /* Emagic devices */
2385 {
2386         USB_DEVICE(0x086a, 0x0001),
2387         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2388                 .vendor_name = "Emagic",
2389                 .product_name = "Unitor8",
2390                 .ifnum = 2,
2391                 .type = QUIRK_MIDI_EMAGIC,
2392                 .data = & (const struct snd_usb_midi_endpoint_info) {
2393                         .out_cables = 0x80ff,
2394                         .in_cables  = 0x80ff
2395                 }
2396         }
2397 },
2398 {
2399         USB_DEVICE(0x086a, 0x0002),
2400         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2401                 .vendor_name = "Emagic",
2402                 /* .product_name = "AMT8", */
2403                 .ifnum = 2,
2404                 .type = QUIRK_MIDI_EMAGIC,
2405                 .data = & (const struct snd_usb_midi_endpoint_info) {
2406                         .out_cables = 0x80ff,
2407                         .in_cables  = 0x80ff
2408                 }
2409         }
2410 },
2411 {
2412         USB_DEVICE(0x086a, 0x0003),
2413         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2414                 .vendor_name = "Emagic",
2415                 /* .product_name = "MT4", */
2416                 .ifnum = 2,
2417                 .type = QUIRK_MIDI_EMAGIC,
2418                 .data = & (const struct snd_usb_midi_endpoint_info) {
2419                         .out_cables = 0x800f,
2420                         .in_cables  = 0x8003
2421                 }
2422         }
2423 },
2424
2425 /* KORG devices */
2426 {
2427         USB_DEVICE_VENDOR_SPEC(0x0944, 0x0200),
2428         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2429                 .vendor_name = "KORG, Inc.",
2430                 /* .product_name = "PANDORA PX5D", */
2431                 .ifnum = 3,
2432                 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2433         }
2434 },
2435
2436 {
2437         USB_DEVICE_VENDOR_SPEC(0x0944, 0x0201),
2438         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2439                 .vendor_name = "KORG, Inc.",
2440                 /* .product_name = "ToneLab ST", */
2441                 .ifnum = 3,
2442                 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2443         }
2444 },
2445
2446 {
2447         USB_DEVICE_VENDOR_SPEC(0x0944, 0x0204),
2448         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2449                 .vendor_name = "KORG, Inc.",
2450                 /* .product_name = "ToneLab EX", */
2451                 .ifnum = 3,
2452                 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2453         }
2454 },
2455
2456 /* AKAI devices */
2457 {
2458         USB_DEVICE(0x09e8, 0x0062),
2459         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2460                 .vendor_name = "AKAI",
2461                 .product_name = "MPD16",
2462                 .ifnum = 0,
2463                 .type = QUIRK_MIDI_AKAI,
2464         }
2465 },
2466
2467 {
2468         /* Akai MPC Element */
2469         USB_DEVICE(0x09e8, 0x0021),
2470         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2471                 .ifnum = QUIRK_ANY_INTERFACE,
2472                 .type = QUIRK_COMPOSITE,
2473                 .data = & (const struct snd_usb_audio_quirk[]) {
2474                         {
2475                                 .ifnum = 0,
2476                                 .type = QUIRK_IGNORE_INTERFACE
2477                         },
2478                         {
2479                                 .ifnum = 1,
2480                                 .type = QUIRK_MIDI_STANDARD_INTERFACE
2481                         },
2482                         {
2483                                 .ifnum = -1
2484                         }
2485                 }
2486         }
2487 },
2488
2489 /* Steinberg devices */
2490 {
2491         /* Steinberg MI2 */
2492         USB_DEVICE_VENDOR_SPEC(0x0a4e, 0x2040),
2493         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2494                 .ifnum = QUIRK_ANY_INTERFACE,
2495                 .type = QUIRK_COMPOSITE,
2496                 .data = & (const struct snd_usb_audio_quirk[]) {
2497                         {
2498                                 .ifnum = 0,
2499                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2500                         },
2501                         {
2502                                 .ifnum = 1,
2503                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2504                         },
2505                         {
2506                                 .ifnum = 2,
2507                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2508                         },
2509                         {
2510                                 .ifnum = 3,
2511                                 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2512                                 .data = &(const struct snd_usb_midi_endpoint_info) {
2513                                         .out_cables = 0x0001,
2514                                         .in_cables  = 0x0001
2515                                 }
2516                         },
2517                         {
2518                                 .ifnum = -1
2519                         }
2520                 }
2521         }
2522 },
2523 {
2524         /* Steinberg MI4 */
2525         USB_DEVICE_VENDOR_SPEC(0x0a4e, 0x4040),
2526         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2527                 .ifnum = QUIRK_ANY_INTERFACE,
2528                 .type = QUIRK_COMPOSITE,
2529                 .data = & (const struct snd_usb_audio_quirk[]) {
2530                         {
2531                                 .ifnum = 0,
2532                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2533                         },
2534                         {
2535                                 .ifnum = 1,
2536                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2537                         },
2538                         {
2539                                 .ifnum = 2,
2540                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2541                         },
2542                         {
2543                                 .ifnum = 3,
2544                                 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2545                                 .data = &(const struct snd_usb_midi_endpoint_info) {
2546                                         .out_cables = 0x0001,
2547                                         .in_cables  = 0x0001
2548                                 }
2549                         },
2550                         {
2551                                 .ifnum = -1
2552                         }
2553                 }
2554         }
2555 },
2556
2557 /* TerraTec devices */
2558 {
2559         USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0012),
2560         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2561                 .vendor_name = "TerraTec",
2562                 .product_name = "PHASE 26",
2563                 .ifnum = 3,
2564                 .type = QUIRK_MIDI_STANDARD_INTERFACE
2565         }
2566 },
2567 {
2568         USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0013),
2569         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2570                 .vendor_name = "TerraTec",
2571                 .product_name = "PHASE 26",
2572                 .ifnum = 3,
2573                 .type = QUIRK_MIDI_STANDARD_INTERFACE
2574         }
2575 },
2576 {
2577         USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0014),
2578         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2579                 .vendor_name = "TerraTec",
2580                 .product_name = "PHASE 26",
2581                 .ifnum = 3,
2582                 .type = QUIRK_MIDI_STANDARD_INTERFACE
2583         }
2584 },
2585 {
2586         USB_DEVICE(0x0ccd, 0x0035),
2587         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2588                 .vendor_name = "Miditech",
2589                 .product_name = "Play'n Roll",
2590                 .ifnum = 0,
2591                 .type = QUIRK_MIDI_CME
2592         }
2593 },
2594
2595 /* Novation EMS devices */
2596 {
2597         USB_DEVICE_VENDOR_SPEC(0x1235, 0x0001),
2598         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2599                 .vendor_name = "Novation",
2600                 .product_name = "ReMOTE Audio/XStation",
2601                 .ifnum = 4,
2602                 .type = QUIRK_MIDI_NOVATION
2603         }
2604 },
2605 {
2606         USB_DEVICE_VENDOR_SPEC(0x1235, 0x0002),
2607         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2608                 .vendor_name = "Novation",
2609                 .product_name = "Speedio",
2610                 .ifnum = 3,
2611                 .type = QUIRK_MIDI_NOVATION
2612         }
2613 },
2614 {
2615         USB_DEVICE(0x1235, 0x000a),
2616         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2617                 /* .vendor_name = "Novation", */
2618                 /* .product_name = "Nocturn", */
2619                 .ifnum = 0,
2620                 .type = QUIRK_MIDI_RAW_BYTES
2621         }
2622 },
2623 {
2624         USB_DEVICE(0x1235, 0x000e),
2625         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2626                 /* .vendor_name = "Novation", */
2627                 /* .product_name = "Launchpad", */
2628                 .ifnum = 0,
2629                 .type = QUIRK_MIDI_RAW_BYTES
2630         }
2631 },
2632 {
2633         USB_DEVICE(0x1235, 0x0010),
2634         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2635                 .vendor_name = "Focusrite",
2636                 .product_name = "Saffire 6 USB",
2637                 .ifnum = QUIRK_ANY_INTERFACE,
2638                 .type = QUIRK_COMPOSITE,
2639                 .data = (const struct snd_usb_audio_quirk[]) {
2640                         {
2641                                 .ifnum = 0,
2642                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
2643                         },
2644                         {
2645                                 .ifnum = 0,
2646                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2647                                 .data = &(const struct audioformat) {
2648                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2649                                         .channels = 4,
2650                                         .iface = 0,
2651                                         .altsetting = 1,
2652                                         .altset_idx = 1,
2653                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2654                                         .endpoint = 0x01,
2655                                         .ep_attr = USB_ENDPOINT_XFER_ISOC,
2656                                         .datainterval = 1,
2657                                         .maxpacksize = 0x024c,
2658                                         .rates = SNDRV_PCM_RATE_44100 |
2659                                                  SNDRV_PCM_RATE_48000,
2660                                         .rate_min = 44100,
2661                                         .rate_max = 48000,
2662                                         .nr_rates = 2,
2663                                         .rate_table = (unsigned int[]) {
2664                                                 44100, 48000
2665                                         },
2666                                         .sync_ep = 0x82,
2667                                         .sync_iface = 0,
2668                                         .sync_altsetting = 1,
2669                                         .sync_ep_idx = 1,
2670                                         .implicit_fb = 1,
2671                                 }
2672                         },
2673                         {
2674                                 .ifnum = 0,
2675                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2676                                 .data = &(const struct audioformat) {
2677                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2678                                         .channels = 2,
2679                                         .iface = 0,
2680                                         .altsetting = 1,
2681                                         .altset_idx = 1,
2682                                         .attributes = 0,
2683                                         .endpoint = 0x82,
2684                                         .ep_idx = 1,
2685                                         .ep_attr = USB_ENDPOINT_XFER_ISOC,
2686                                         .datainterval = 1,
2687                                         .maxpacksize = 0x0126,
2688                                         .rates = SNDRV_PCM_RATE_44100 |
2689                                                  SNDRV_PCM_RATE_48000,
2690                                         .rate_min = 44100,
2691                                         .rate_max = 48000,
2692                                         .nr_rates = 2,
2693                                         .rate_table = (unsigned int[]) {
2694                                                 44100, 48000
2695                                         }
2696                                 }
2697                         },
2698                         {
2699                                 .ifnum = 1,
2700                                 .type = QUIRK_MIDI_RAW_BYTES
2701                         },
2702                         {
2703                                 .ifnum = -1
2704                         }
2705                 }
2706         }
2707 },
2708 {
2709         USB_DEVICE(0x1235, 0x0018),
2710         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2711                 .vendor_name = "Novation",
2712                 .product_name = "Twitch",
2713                 .ifnum = QUIRK_ANY_INTERFACE,
2714                 .type = QUIRK_COMPOSITE,
2715                 .data = (const struct snd_usb_audio_quirk[]) {
2716                         {
2717                                 .ifnum = 0,
2718                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2719                                 .data = & (const struct audioformat) {
2720                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2721                                         .channels = 4,
2722                                         .iface = 0,
2723                                         .altsetting = 1,
2724                                         .altset_idx = 1,
2725                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2726                                         .endpoint = 0x01,
2727                                         .ep_attr = USB_ENDPOINT_XFER_ISOC,
2728                                         .rates = SNDRV_PCM_RATE_44100 |
2729                                                  SNDRV_PCM_RATE_48000,
2730                                         .rate_min = 44100,
2731                                         .rate_max = 48000,
2732                                         .nr_rates = 2,
2733                                         .rate_table = (unsigned int[]) {
2734                                                 44100, 48000
2735                                         }
2736                                 }
2737                         },
2738                         {
2739                                 .ifnum = 1,
2740                                 .type = QUIRK_MIDI_RAW_BYTES
2741                         },
2742                         {
2743                                 .ifnum = -1
2744                         }
2745                 }
2746         }
2747 },
2748 {
2749         USB_DEVICE_VENDOR_SPEC(0x1235, 0x4661),
2750         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2751                 .vendor_name = "Novation",
2752                 .product_name = "ReMOTE25",
2753                 .ifnum = 0,
2754                 .type = QUIRK_MIDI_NOVATION
2755         }
2756 },
2757
2758 /* Access Music devices */
2759 {
2760         /* VirusTI Desktop */
2761         USB_DEVICE_VENDOR_SPEC(0x133e, 0x0815),
2762         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2763                 .ifnum = QUIRK_ANY_INTERFACE,
2764                 .type = QUIRK_COMPOSITE,
2765                 .data = &(const struct snd_usb_audio_quirk[]) {
2766                         {
2767                                 .ifnum = 3,
2768                                 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2769                                 .data = &(const struct snd_usb_midi_endpoint_info) {
2770                                         .out_cables = 0x0003,
2771                                         .in_cables  = 0x0003
2772                                 }
2773                         },
2774                         {
2775                                 .ifnum = 4,
2776                                 .type = QUIRK_IGNORE_INTERFACE
2777                         },
2778                         {
2779                                 .ifnum = -1
2780                         }
2781                 }
2782         }
2783 },
2784
2785 /* Native Instruments MK2 series */
2786 {
2787         /* Komplete Audio 6 */
2788         .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2789         .idVendor = 0x17cc,
2790         .idProduct = 0x1000,
2791 },
2792 {
2793         /* Traktor Audio 6 */
2794         .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2795         .idVendor = 0x17cc,
2796         .idProduct = 0x1010,
2797 },
2798 {
2799         /* Traktor Audio 10 */
2800         .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2801         .idVendor = 0x17cc,
2802         .idProduct = 0x1020,
2803 },
2804
2805 /* QinHeng devices */
2806 {
2807         USB_DEVICE(0x1a86, 0x752d),
2808         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2809                 .vendor_name = "QinHeng",
2810                 .product_name = "CH345",
2811                 .ifnum = 1,
2812                 .type = QUIRK_MIDI_CH345
2813         }
2814 },
2815
2816 /* KeithMcMillen Stringport */
2817 { USB_DEVICE(0x1f38, 0x0001) }, /* FIXME: should be more restrictive matching */
2818
2819 /* Miditech devices */
2820 {
2821         USB_DEVICE(0x4752, 0x0011),
2822         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2823                 .vendor_name = "Miditech",
2824                 .product_name = "Midistart-2",
2825                 .ifnum = 0,
2826                 .type = QUIRK_MIDI_CME
2827         }
2828 },
2829
2830 /* Central Music devices */
2831 {
2832         /* this ID used by both Miditech MidiStudio-2 and CME UF-x */
2833         USB_DEVICE(0x7104, 0x2202),
2834         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2835                 .ifnum = 0,
2836                 .type = QUIRK_MIDI_CME
2837         }
2838 },
2839
2840 /* Digidesign Mbox */
2841 {
2842         /* Thanks to Clemens Ladisch <clemens@ladisch.de> */
2843         USB_DEVICE(0x0dba, 0x1000),
2844         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2845                 .vendor_name = "Digidesign",
2846                 .product_name = "MBox",
2847                 .ifnum = QUIRK_ANY_INTERFACE,
2848                 .type = QUIRK_COMPOSITE,
2849                 .data = (const struct snd_usb_audio_quirk[]){
2850                         {
2851                                 .ifnum = 0,
2852                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
2853                         },
2854                         {
2855                                 .ifnum = 1,
2856                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2857                                 .data = &(const struct audioformat) {
2858                                         .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2859                                         .channels = 2,
2860                                         .iface = 1,
2861                                         .altsetting = 1,
2862                                         .altset_idx = 1,
2863                                         .attributes = 0x4,
2864                                         .endpoint = 0x02,
2865                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
2866                                                 USB_ENDPOINT_SYNC_SYNC,
2867                                         .maxpacksize = 0x130,
2868                                         .rates = SNDRV_PCM_RATE_48000,
2869                                         .rate_min = 48000,
2870                                         .rate_max = 48000,
2871                                         .nr_rates = 1,
2872                                         .rate_table = (unsigned int[]) {
2873                                                 48000
2874                                         }
2875                                 }
2876                         },
2877                         {
2878                                 .ifnum = 1,
2879                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2880                                 .data = &(const struct audioformat) {
2881                                         .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2882                                         .channels = 2,
2883                                         .iface = 1,
2884                                         .altsetting = 1,
2885                                         .altset_idx = 1,
2886                                         .attributes = 0x4,
2887                                         .endpoint = 0x81,
2888                                         .ep_idx = 1,
2889                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
2890                                                 USB_ENDPOINT_SYNC_ASYNC,
2891                                         .maxpacksize = 0x130,
2892                                         .rates = SNDRV_PCM_RATE_48000,
2893                                         .rate_min = 48000,
2894                                         .rate_max = 48000,
2895                                         .nr_rates = 1,
2896                                         .rate_table = (unsigned int[]) {
2897                                                 48000
2898                                         }
2899                                 }
2900                         },
2901                         {
2902                                 .ifnum = -1
2903                         }
2904                 }
2905         }
2906 },
2907
2908 /* DIGIDESIGN MBOX 2 */
2909 {
2910         USB_DEVICE(0x0dba, 0x3000),
2911         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2912                 .vendor_name = "Digidesign",
2913                 .product_name = "Mbox 2",
2914                 .ifnum = QUIRK_ANY_INTERFACE,
2915                 .type = QUIRK_COMPOSITE,
2916                 .data = (const struct snd_usb_audio_quirk[]) {
2917                         {
2918                                 .ifnum = 0,
2919                                 .type = QUIRK_IGNORE_INTERFACE
2920                         },
2921                         {
2922                                 .ifnum = 1,
2923                                 .type = QUIRK_IGNORE_INTERFACE
2924                         },
2925                         {
2926                                 .ifnum = 2,
2927                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2928                                 .data = &(const struct audioformat) {
2929                                         .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2930                                         .channels = 2,
2931                                         .iface = 2,
2932                                         .altsetting = 2,
2933                                         .altset_idx = 1,
2934                                         .attributes = 0x00,
2935                                         .endpoint = 0x03,
2936                                         .ep_attr = USB_ENDPOINT_SYNC_ASYNC,
2937                                         .rates = SNDRV_PCM_RATE_48000,
2938                                         .rate_min = 48000,
2939                                         .rate_max = 48000,
2940                                         .nr_rates = 1,
2941                                         .rate_table = (unsigned int[]) {
2942                                                 48000
2943                                         }
2944                                 }
2945                         },
2946                         {
2947                                 .ifnum = 3,
2948                                 .type = QUIRK_IGNORE_INTERFACE
2949                         },
2950                         {
2951                                 .ifnum = 4,
2952                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2953                                 .data = &(const struct audioformat) {
2954                                 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2955                                         .channels = 2,
2956                                         .iface = 4,
2957                                         .altsetting = 2,
2958                                         .altset_idx = 1,
2959                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2960                                         .endpoint = 0x85,
2961                                         .ep_attr = USB_ENDPOINT_SYNC_SYNC,
2962                                         .rates = SNDRV_PCM_RATE_48000,
2963                                         .rate_min = 48000,
2964                                         .rate_max = 48000,
2965                                         .nr_rates = 1,
2966                                         .rate_table = (unsigned int[]) {
2967                                                 48000
2968                                         }
2969                                 }
2970                         },
2971                         {
2972                                 .ifnum = 5,
2973                                 .type = QUIRK_IGNORE_INTERFACE
2974                         },
2975                         {
2976                                 .ifnum = 6,
2977                                 .type = QUIRK_MIDI_MIDIMAN,
2978                                 .data = &(const struct snd_usb_midi_endpoint_info) {
2979                                         .out_ep =  0x02,
2980                                         .out_cables = 0x0001,
2981                                         .in_ep = 0x81,
2982                                         .in_interval = 0x01,
2983                                         .in_cables = 0x0001
2984                                 }
2985                         },
2986                         {
2987                                 .ifnum = -1
2988                         }
2989                 }
2990         }
2991 },
2992 {
2993         /* Tascam US122 MKII - playback-only support */
2994         USB_DEVICE_VENDOR_SPEC(0x0644, 0x8021),
2995         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2996                 .vendor_name = "TASCAM",
2997                 .product_name = "US122 MKII",
2998                 .ifnum = QUIRK_ANY_INTERFACE,
2999                 .type = QUIRK_COMPOSITE,
3000                 .data = (const struct snd_usb_audio_quirk[]) {
3001                         {
3002                                 .ifnum = 0,
3003                                 .type = QUIRK_IGNORE_INTERFACE
3004                         },
3005                         {
3006                                 .ifnum = 1,
3007                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3008                                 .data = &(const struct audioformat) {
3009                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3010                                         .channels = 2,
3011                                         .iface = 1,
3012                                         .altsetting = 1,
3013                                         .altset_idx = 1,
3014                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3015                                         .endpoint = 0x02,
3016                                         .ep_attr = USB_ENDPOINT_XFER_ISOC,
3017                                         .rates = SNDRV_PCM_RATE_44100 |
3018                                                  SNDRV_PCM_RATE_48000 |
3019                                                  SNDRV_PCM_RATE_88200 |
3020                                                  SNDRV_PCM_RATE_96000,
3021                                         .rate_min = 44100,
3022                                         .rate_max = 96000,
3023                                         .nr_rates = 4,
3024                                         .rate_table = (unsigned int[]) {
3025                                                 44100, 48000, 88200, 96000
3026                                         }
3027                                 }
3028                         },
3029                         {
3030                                 .ifnum = -1
3031                         }
3032                 }
3033         }
3034 },
3035
3036 /* Denon DN-X1600 */
3037 {
3038         USB_AUDIO_DEVICE(0x154e, 0x500e),
3039         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3040                 .vendor_name = "Denon",
3041                 .product_name = "DN-X1600",
3042                 .ifnum = QUIRK_ANY_INTERFACE,
3043                 .type = QUIRK_COMPOSITE,
3044                 .data = (const struct snd_usb_audio_quirk[]){
3045                         {
3046                                 .ifnum = 0,
3047                                 .type = QUIRK_IGNORE_INTERFACE,
3048                         },
3049                         {
3050                                 .ifnum = 1,
3051                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3052                                 .data = &(const struct audioformat) {
3053                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3054                                         .channels = 8,
3055                                         .iface = 1,
3056                                         .altsetting = 1,
3057                                         .altset_idx = 1,
3058                                         .attributes = 0x0,
3059                                         .endpoint = 0x01,
3060                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
3061                                                 USB_ENDPOINT_SYNC_ADAPTIVE,
3062                                         .maxpacksize = 0x138,
3063                                         .rates = SNDRV_PCM_RATE_48000,
3064                                         .rate_min = 48000,
3065                                         .rate_max = 48000,
3066                                         .nr_rates = 1,
3067                                         .rate_table = (unsigned int[]) {
3068                                                 48000
3069                                         }
3070                                 }
3071                         },
3072                         {
3073                                 .ifnum = 2,
3074                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3075                                 .data = &(const struct audioformat) {
3076                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3077                                         .channels = 8,
3078                                         .iface = 2,
3079                                         .altsetting = 1,
3080                                         .altset_idx = 1,
3081                                         .attributes = 0x0,
3082                                         .endpoint = 0x85,
3083                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
3084                                                 USB_ENDPOINT_SYNC_ADAPTIVE,
3085                                         .maxpacksize = 0x138,
3086                                         .rates = SNDRV_PCM_RATE_48000,
3087                                         .rate_min = 48000,
3088                                         .rate_max = 48000,
3089                                         .nr_rates = 1,
3090                                         .rate_table = (unsigned int[]) {
3091                                                 48000
3092                                         }
3093                                 }
3094                         },
3095                         {
3096                                 .ifnum = 4,
3097                                 .type = QUIRK_MIDI_STANDARD_INTERFACE,
3098                         },
3099                         {
3100                                 .ifnum = -1
3101                         }
3102                 }
3103         }
3104 },
3105
3106 /* Microsoft XboxLive Headset/Xbox Communicator */
3107 {
3108         USB_DEVICE(0x045e, 0x0283),
3109         .bInterfaceClass = USB_CLASS_PER_INTERFACE,
3110         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3111                 .vendor_name = "Microsoft",
3112                 .product_name = "XboxLive Headset/Xbox Communicator",
3113                 .ifnum = QUIRK_ANY_INTERFACE,
3114                 .type = QUIRK_COMPOSITE,
3115                 .data = &(const struct snd_usb_audio_quirk[]) {
3116                         {
3117                                 /* playback */
3118                                 .ifnum = 0,
3119                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3120                                 .data = &(const struct audioformat) {
3121                                         .formats = SNDRV_PCM_FMTBIT_S16_LE,
3122                                         .channels = 1,
3123                                         .iface = 0,
3124                                         .altsetting = 0,
3125                                         .altset_idx = 0,
3126                                         .attributes = 0,
3127                                         .endpoint = 0x04,
3128                                         .ep_attr = 0x05,
3129                                         .rates = SNDRV_PCM_RATE_CONTINUOUS,
3130                                         .rate_min = 22050,
3131                                         .rate_max = 22050
3132                                 }
3133                         },
3134                         {
3135                                 /* capture */
3136                                 .ifnum = 1,
3137                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3138                                 .data = &(const struct audioformat) {
3139                                         .formats = SNDRV_PCM_FMTBIT_S16_LE,
3140                                         .channels = 1,
3141                                         .iface = 1,
3142                                         .altsetting = 0,
3143                                         .altset_idx = 0,
3144                                         .attributes = 0,
3145                                         .endpoint = 0x85,
3146                                         .ep_attr = 0x05,
3147                                         .rates = SNDRV_PCM_RATE_CONTINUOUS,
3148                                         .rate_min = 16000,
3149                                         .rate_max = 16000
3150                                 }
3151                         },
3152                         {
3153                                 .ifnum = -1
3154                         }
3155                 }
3156         }
3157 },
3158
3159 /* Reloop Play */
3160 {
3161         USB_DEVICE(0x200c, 0x100b),
3162         .bInterfaceClass = USB_CLASS_PER_INTERFACE,
3163         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3164                 .ifnum = QUIRK_ANY_INTERFACE,
3165                 .type = QUIRK_COMPOSITE,
3166                 .data = &(const struct snd_usb_audio_quirk[]) {
3167                         {
3168                                 .ifnum = 0,
3169                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
3170                         },
3171                         {
3172                                 .ifnum = 1,
3173                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3174                                 .data = &(const struct audioformat) {
3175                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3176                                         .channels = 4,
3177                                         .iface = 1,
3178                                         .altsetting = 1,
3179                                         .altset_idx = 1,
3180                                         .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3181                                         .endpoint = 0x01,
3182                                         .ep_attr = USB_ENDPOINT_SYNC_ADAPTIVE,
3183                                         .rates = SNDRV_PCM_RATE_44100 |
3184                                                  SNDRV_PCM_RATE_48000,
3185                                         .rate_min = 44100,
3186                                         .rate_max = 48000,
3187                                         .nr_rates = 2,
3188                                         .rate_table = (unsigned int[]) {
3189                                                 44100, 48000
3190                                         }
3191                                 }
3192                         },
3193                         {
3194                                 .ifnum = -1
3195                         }
3196                 }
3197         }
3198 },
3199
3200 {
3201         /*
3202          * ZOOM R16/24 in audio interface mode.
3203          * Playback requires an extra four byte LE length indicator
3204          * at the start of each isochronous packet. This quirk is
3205          * enabled in create_standard_audio_quirk().
3206          */
3207         USB_DEVICE(0x1686, 0x00dd),
3208         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
3209                 .ifnum = QUIRK_ANY_INTERFACE,
3210                 .type = QUIRK_COMPOSITE,
3211                 .data = (const struct snd_usb_audio_quirk[]) {
3212                         {
3213                                 /* Playback  */
3214                                 .ifnum = 1,
3215                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE,
3216                         },
3217                         {
3218                                 /* Capture */
3219                                 .ifnum = 2,
3220                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE,
3221                         },
3222                         {
3223                                 /* Midi */
3224                                 .ifnum = 3,
3225                                 .type = QUIRK_MIDI_STANDARD_INTERFACE
3226                         },
3227                         {
3228                                 .ifnum = -1
3229                         },
3230                 }
3231         }
3232 },
3233
3234 {
3235         /*
3236          * Some USB MIDI devices don't have an audio control interface,
3237          * so we have to grab MIDI streaming interfaces here.
3238          */
3239         .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS |
3240                        USB_DEVICE_ID_MATCH_INT_SUBCLASS,
3241         .bInterfaceClass = USB_CLASS_AUDIO,
3242         .bInterfaceSubClass = USB_SUBCLASS_MIDISTREAMING,
3243         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
3244                 .ifnum = QUIRK_ANY_INTERFACE,
3245                 .type = QUIRK_MIDI_STANDARD_INTERFACE
3246         }
3247 },
3248
3249 /* Rane SL-1 */
3250 {
3251         USB_DEVICE(0x13e5, 0x0001),
3252         .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
3253                 .ifnum = QUIRK_ANY_INTERFACE,
3254                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
3255         }
3256 },
3257
3258 /* disabled due to regression for other devices;
3259  * see https://bugzilla.kernel.org/show_bug.cgi?id=199905
3260  */
3261 #if 0
3262 {
3263         /*
3264          * Nura's first gen headphones use Cambridge Silicon Radio's vendor
3265          * ID, but it looks like the product ID actually is only for Nura.
3266          * The capture interface does not work at all (even on Windows),
3267          * and only the 48 kHz sample rate works for the playback interface.
3268          */
3269         USB_DEVICE(0x0a12, 0x1243),
3270         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3271                 .ifnum = QUIRK_ANY_INTERFACE,
3272                 .type = QUIRK_COMPOSITE,
3273                 .data = (const struct snd_usb_audio_quirk[]) {
3274                         {
3275                                 .ifnum = 0,
3276                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
3277                         },
3278                         /* Capture */
3279                         {
3280                                 .ifnum = 1,
3281                                 .type = QUIRK_IGNORE_INTERFACE,
3282                         },
3283                         /* Playback */
3284                         {
3285                                 .ifnum = 2,
3286                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3287                                 .data = &(const struct audioformat) {
3288                                         .formats = SNDRV_PCM_FMTBIT_S16_LE,
3289                                         .channels = 2,
3290                                         .iface = 2,
3291                                         .altsetting = 1,
3292                                         .altset_idx = 1,
3293                                         .attributes = UAC_EP_CS_ATTR_FILL_MAX |
3294                                                 UAC_EP_CS_ATTR_SAMPLE_RATE,
3295                                         .endpoint = 0x03,
3296                                         .ep_attr = USB_ENDPOINT_XFER_ISOC,
3297                                         .rates = SNDRV_PCM_RATE_48000,
3298                                         .rate_min = 48000,
3299                                         .rate_max = 48000,
3300                                         .nr_rates = 1,
3301                                         .rate_table = (unsigned int[]) {
3302                                                 48000
3303                                         }
3304                                 }
3305                         },
3306                         {
3307                                 .ifnum = -1
3308                         },
3309                 }
3310         }
3311 },
3312 #endif /* disabled */
3313
3314 {
3315         /*
3316          * Bower's & Wilkins PX headphones only support the 48 kHz sample rate
3317          * even though it advertises more. The capture interface doesn't work
3318          * even on windows.
3319          */
3320         USB_DEVICE(0x19b5, 0x0021),
3321         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3322                 .ifnum = QUIRK_ANY_INTERFACE,
3323                 .type = QUIRK_COMPOSITE,
3324                 .data = (const struct snd_usb_audio_quirk[]) {
3325                         {
3326                                 .ifnum = 0,
3327                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
3328                         },
3329                         /* Playback */
3330                         {
3331                                 .ifnum = 1,
3332                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3333                                 .data = &(const struct audioformat) {
3334                                         .formats = SNDRV_PCM_FMTBIT_S16_LE,
3335                                         .channels = 2,
3336                                         .iface = 1,
3337                                         .altsetting = 1,
3338                                         .altset_idx = 1,
3339                                         .attributes = UAC_EP_CS_ATTR_FILL_MAX |
3340                                                 UAC_EP_CS_ATTR_SAMPLE_RATE,
3341                                         .endpoint = 0x03,
3342                                         .ep_attr = USB_ENDPOINT_XFER_ISOC,
3343                                         .rates = SNDRV_PCM_RATE_48000,
3344                                         .rate_min = 48000,
3345                                         .rate_max = 48000,
3346                                         .nr_rates = 1,
3347                                         .rate_table = (unsigned int[]) {
3348                                                 48000
3349                                         }
3350                                 }
3351                         },
3352                         {
3353                                 .ifnum = -1
3354                         },
3355                 }
3356         }
3357 },
3358 /* MOTU Microbook II */
3359 {
3360         USB_DEVICE_VENDOR_SPEC(0x07fd, 0x0004),
3361         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3362                 .vendor_name = "MOTU",
3363                 .product_name = "MicroBookII",
3364                 .ifnum = QUIRK_ANY_INTERFACE,
3365                 .type = QUIRK_COMPOSITE,
3366                 .data = (const struct snd_usb_audio_quirk[]) {
3367                         {
3368                                 .ifnum = 0,
3369                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
3370                         },
3371                         {
3372                                 .ifnum = 0,
3373                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3374                                 .data = &(const struct audioformat) {
3375                                         .formats = SNDRV_PCM_FMTBIT_S24_3BE,
3376                                         .channels = 6,
3377                                         .iface = 0,
3378                                         .altsetting = 1,
3379                                         .altset_idx = 1,
3380                                         .attributes = 0,
3381                                         .endpoint = 0x84,
3382                                         .rates = SNDRV_PCM_RATE_96000,
3383                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
3384                                                    USB_ENDPOINT_SYNC_ASYNC,
3385                                         .rate_min = 96000,
3386                                         .rate_max = 96000,
3387                                         .nr_rates = 1,
3388                                         .maxpacksize = 0x00d8,
3389                                         .rate_table = (unsigned int[]) {
3390                                                 96000
3391                                         }
3392                                 }
3393                         },
3394                         {
3395                                 .ifnum = 0,
3396                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3397                                 .data = &(const struct audioformat) {
3398                                         .formats = SNDRV_PCM_FMTBIT_S24_3BE,
3399                                         .channels = 8,
3400                                         .iface = 0,
3401                                         .altsetting = 1,
3402                                         .altset_idx = 1,
3403                                         .attributes = 0,
3404                                         .endpoint = 0x03,
3405                                         .ep_idx = 1,
3406                                         .rates = SNDRV_PCM_RATE_96000,
3407                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
3408                                                    USB_ENDPOINT_SYNC_ASYNC,
3409                                         .rate_min = 96000,
3410                                         .rate_max = 96000,
3411                                         .nr_rates = 1,
3412                                         .maxpacksize = 0x0120,
3413                                         .rate_table = (unsigned int[]) {
3414                                                 96000
3415                                         }
3416                                 }
3417                         },
3418                         {
3419                                 .ifnum = -1
3420                         }
3421                 }
3422         }
3423 },
3424 {
3425         /*
3426          * PIONEER DJ DDJ-SX3
3427          * PCM is 12 channels out, 10 channels in @ 44.1 fixed
3428          * interface 0, vendor class alt setting 1 for endpoints 5 and 0x86
3429          * The feedback for the output is the input.
3430          */
3431         USB_DEVICE_VENDOR_SPEC(0x2b73, 0x0023),
3432         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3433                 .ifnum = QUIRK_ANY_INTERFACE,
3434                 .type = QUIRK_COMPOSITE,
3435                 .data = (const struct snd_usb_audio_quirk[]) {
3436                         {
3437                                 .ifnum = 0,
3438                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3439                                 .data = &(const struct audioformat) {
3440                                         .formats = SNDRV_PCM_FMTBIT_S32_LE,
3441                                         .channels = 12,
3442                                         .iface = 0,
3443                                         .altsetting = 1,
3444                                         .altset_idx = 1,
3445                                         .endpoint = 0x05,
3446                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3447                                                    USB_ENDPOINT_SYNC_ASYNC,
3448                                         .rates = SNDRV_PCM_RATE_44100,
3449                                         .rate_min = 44100,
3450                                         .rate_max = 44100,
3451                                         .nr_rates = 1,
3452                                         .rate_table = (unsigned int[]) { 44100 }
3453                                 }
3454                         },
3455                         {
3456                                 .ifnum = 0,
3457                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3458                                 .data = &(const struct audioformat) {
3459                                         .formats = SNDRV_PCM_FMTBIT_S32_LE,
3460                                         .channels = 10,
3461                                         .iface = 0,
3462                                         .altsetting = 1,
3463                                         .altset_idx = 1,
3464                                         .endpoint = 0x86,
3465                                         .ep_idx = 1,
3466                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3467                                                  USB_ENDPOINT_SYNC_ASYNC|
3468                                                  USB_ENDPOINT_USAGE_IMPLICIT_FB,
3469                                         .rates = SNDRV_PCM_RATE_44100,
3470                                         .rate_min = 44100,
3471                                         .rate_max = 44100,
3472                                         .nr_rates = 1,
3473                                         .rate_table = (unsigned int[]) { 44100 }
3474                                 }
3475                         },
3476                         {
3477                                 .ifnum = -1
3478                         }
3479                 }
3480         }
3481 },
3482 {
3483         /*
3484          * Pioneer DJ DJM-250MK2
3485          * PCM is 8 channels out @ 48 fixed (endpoint 0x01)
3486          * and 8 channels in @ 48 fixed (endpoint 0x82).
3487          *
3488          * Both playback and recording is working, even simultaneously.
3489          *
3490          * Playback channels could be mapped to:
3491          *  - CH1
3492          *  - CH2
3493          *  - AUX
3494          *
3495          * Recording channels could be mapped to:
3496          *  - Post CH1 Fader
3497          *  - Post CH2 Fader
3498          *  - Cross Fader A
3499          *  - Cross Fader B
3500          *  - MIC
3501          *  - AUX
3502          *  - REC OUT
3503          *
3504          * There is remaining problem with recording directly from PHONO/LINE.
3505          * If we map a channel to:
3506          *  - CH1 Control Tone PHONO
3507          *  - CH1 Control Tone LINE
3508          *  - CH2 Control Tone PHONO
3509          *  - CH2 Control Tone LINE
3510          * it is silent.
3511          * There is no signal even on other operating systems with official drivers.
3512          * The signal appears only when a supported application is started.
3513          * This needs to be investigated yet...
3514          * (there is quite a lot communication on the USB in both directions)
3515          *
3516          * In current version this mixer could be used for playback
3517          * and for recording from vinyls (through Post CH* Fader)
3518          * but not for DVS (Digital Vinyl Systems) like in Mixxx.
3519          */
3520         USB_DEVICE_VENDOR_SPEC(0x2b73, 0x0017),
3521         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3522                 .ifnum = QUIRK_ANY_INTERFACE,
3523                 .type = QUIRK_COMPOSITE,
3524                 .data = (const struct snd_usb_audio_quirk[]) {
3525                         {
3526                                 .ifnum = 0,
3527                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3528                                 .data = &(const struct audioformat) {
3529                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3530                                         .channels = 8, // outputs
3531                                         .iface = 0,
3532                                         .altsetting = 1,
3533                                         .altset_idx = 1,
3534                                         .endpoint = 0x01,
3535                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3536                                                 USB_ENDPOINT_SYNC_ASYNC,
3537                                         .rates = SNDRV_PCM_RATE_48000,
3538                                         .rate_min = 48000,
3539                                         .rate_max = 48000,
3540                                         .nr_rates = 1,
3541                                         .rate_table = (unsigned int[]) { 48000 }
3542                                         }
3543                         },
3544                         {
3545                                 .ifnum = 0,
3546                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3547                                 .data = &(const struct audioformat) {
3548                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3549                                         .channels = 8, // inputs
3550                                         .iface = 0,
3551                                         .altsetting = 1,
3552                                         .altset_idx = 1,
3553                                         .endpoint = 0x82,
3554                                         .ep_idx = 1,
3555                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3556                                                 USB_ENDPOINT_SYNC_ASYNC|
3557                                                 USB_ENDPOINT_USAGE_IMPLICIT_FB,
3558                                         .rates = SNDRV_PCM_RATE_48000,
3559                                         .rate_min = 48000,
3560                                         .rate_max = 48000,
3561                                         .nr_rates = 1,
3562                                         .rate_table = (unsigned int[]) { 48000 }
3563                                 }
3564                         },
3565                         {
3566                                 .ifnum = -1
3567                         }
3568                 }
3569         }
3570 },
3571 {
3572         /*
3573          * PIONEER DJ DDJ-RB
3574          * PCM is 4 channels out, 2 dummy channels in @ 44.1 fixed
3575          * The feedback for the output is the dummy input.
3576          */
3577         USB_DEVICE_VENDOR_SPEC(0x2b73, 0x000e),
3578         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3579                 .ifnum = QUIRK_ANY_INTERFACE,
3580                 .type = QUIRK_COMPOSITE,
3581                 .data = (const struct snd_usb_audio_quirk[]) {
3582                         {
3583                                 .ifnum = 0,
3584                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3585                                 .data = &(const struct audioformat) {
3586                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3587                                         .channels = 4,
3588                                         .iface = 0,
3589                                         .altsetting = 1,
3590                                         .altset_idx = 1,
3591                                         .endpoint = 0x01,
3592                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3593                                                    USB_ENDPOINT_SYNC_ASYNC,
3594                                         .rates = SNDRV_PCM_RATE_44100,
3595                                         .rate_min = 44100,
3596                                         .rate_max = 44100,
3597                                         .nr_rates = 1,
3598                                         .rate_table = (unsigned int[]) { 44100 }
3599                                 }
3600                         },
3601                         {
3602                                 .ifnum = 0,
3603                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3604                                 .data = &(const struct audioformat) {
3605                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3606                                         .channels = 2,
3607                                         .iface = 0,
3608                                         .altsetting = 1,
3609                                         .altset_idx = 1,
3610                                         .endpoint = 0x82,
3611                                         .ep_idx = 1,
3612                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3613                                                  USB_ENDPOINT_SYNC_ASYNC|
3614                                                  USB_ENDPOINT_USAGE_IMPLICIT_FB,
3615                                         .rates = SNDRV_PCM_RATE_44100,
3616                                         .rate_min = 44100,
3617                                         .rate_max = 44100,
3618                                         .nr_rates = 1,
3619                                         .rate_table = (unsigned int[]) { 44100 }
3620                                 }
3621                         },
3622                         {
3623                                 .ifnum = -1
3624                         }
3625                 }
3626         }
3627 },
3628
3629 {
3630         /*
3631          * PIONEER DJ DDJ-RR
3632          * PCM is 6 channels out & 4 channels in @ 44.1 fixed
3633          */
3634         USB_DEVICE_VENDOR_SPEC(0x2b73, 0x000d),
3635         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3636                 .ifnum = QUIRK_ANY_INTERFACE,
3637                 .type = QUIRK_COMPOSITE,
3638                 .data = (const struct snd_usb_audio_quirk[]) {
3639                         {
3640                                 .ifnum = 0,
3641                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3642                                 .data = &(const struct audioformat) {
3643                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3644                                         .channels = 6, //Master, Headphones & Booth
3645                                         .iface = 0,
3646                                         .altsetting = 1,
3647                                         .altset_idx = 1,
3648                                         .endpoint = 0x01,
3649                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3650                                                    USB_ENDPOINT_SYNC_ASYNC,
3651                                         .rates = SNDRV_PCM_RATE_44100,
3652                                         .rate_min = 44100,
3653                                         .rate_max = 44100,
3654                                         .nr_rates = 1,
3655                                         .rate_table = (unsigned int[]) { 44100 }
3656                                 }
3657                         },
3658                         {
3659                                 .ifnum = 0,
3660                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3661                                 .data = &(const struct audioformat) {
3662                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3663                                         .channels = 4, //2x RCA inputs (CH1 & CH2)
3664                                         .iface = 0,
3665                                         .altsetting = 1,
3666                                         .altset_idx = 1,
3667                                         .endpoint = 0x82,
3668                                         .ep_idx = 1,
3669                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3670                                                  USB_ENDPOINT_SYNC_ASYNC|
3671                                                  USB_ENDPOINT_USAGE_IMPLICIT_FB,
3672                                         .rates = SNDRV_PCM_RATE_44100,
3673                                         .rate_min = 44100,
3674                                         .rate_max = 44100,
3675                                         .nr_rates = 1,
3676                                         .rate_table = (unsigned int[]) { 44100 }
3677                                 }
3678                         },
3679                         {
3680                                 .ifnum = -1
3681                         }
3682                 }
3683         }
3684 },
3685
3686 {
3687         /*
3688          * PIONEER DJ DDJ-SR2
3689          * PCM is 4 channels out, 6 channels in @ 44.1 fixed
3690          * The Feedback for the output is the input
3691          */
3692         USB_DEVICE_VENDOR_SPEC(0x2b73, 0x001e),
3693                 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3694                 .ifnum = QUIRK_ANY_INTERFACE,
3695                 .type = QUIRK_COMPOSITE,
3696                 .data = (const struct snd_usb_audio_quirk[]) {
3697                         {
3698                                 .ifnum = 0,
3699                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3700                                 .data = &(const struct audioformat) {
3701                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3702                                         .channels = 4,
3703                                         .iface = 0,
3704                                         .altsetting = 1,
3705                                         .altset_idx = 1,
3706                                         .endpoint = 0x01,
3707                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3708                                                 USB_ENDPOINT_SYNC_ASYNC,
3709                                         .rates = SNDRV_PCM_RATE_44100,
3710                                         .rate_min = 44100,
3711                                         .rate_max = 44100,
3712                                         .nr_rates = 1,
3713                                         .rate_table = (unsigned int[]) { 44100 }
3714                                 }
3715                         },
3716                         {
3717                                 .ifnum = 0,
3718                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3719                                 .data = &(const struct audioformat) {
3720                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3721                                         .channels = 6,
3722                                         .iface = 0,
3723                                         .altsetting = 1,
3724                                         .altset_idx = 1,
3725                                         .endpoint = 0x82,
3726                                         .ep_idx = 1,
3727                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3728                                                 USB_ENDPOINT_SYNC_ASYNC|
3729                                         USB_ENDPOINT_USAGE_IMPLICIT_FB,
3730                                         .rates = SNDRV_PCM_RATE_44100,
3731                                         .rate_min = 44100,
3732                                         .rate_max = 44100,
3733                                         .nr_rates = 1,
3734                                         .rate_table = (unsigned int[]) { 44100 }
3735                                 }
3736                         },
3737                         {
3738                                 .ifnum = -1
3739                         }
3740                 }
3741         }
3742 },
3743
3744 {
3745         /*
3746          * Pioneer DJ DJM-900NXS2
3747          * 10 channels playback & 12 channels capture @ 44.1/48/96kHz S24LE
3748          */
3749         USB_DEVICE_VENDOR_SPEC(0x2b73, 0x000a),
3750         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3751                 .ifnum = QUIRK_ANY_INTERFACE,
3752                 .type = QUIRK_COMPOSITE,
3753                 .data = (const struct snd_usb_audio_quirk[]) {
3754                         {
3755                                 .ifnum = 0,
3756                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3757                                 .data = &(const struct audioformat) {
3758                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3759                                         .channels = 10,
3760                                         .iface = 0,
3761                                         .altsetting = 1,
3762                                         .altset_idx = 1,
3763                                         .endpoint = 0x01,
3764                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3765                                             USB_ENDPOINT_SYNC_ASYNC,
3766                                         .rates = SNDRV_PCM_RATE_44100|
3767                                             SNDRV_PCM_RATE_48000|
3768                                             SNDRV_PCM_RATE_96000,
3769                                         .rate_min = 44100,
3770                                         .rate_max = 96000,
3771                                         .nr_rates = 3,
3772                                         .rate_table = (unsigned int[]) {
3773                                                 44100, 48000, 96000
3774                                         }
3775                                 }
3776                         },
3777                         {
3778                                 .ifnum = 0,
3779                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3780                                 .data = &(const struct audioformat) {
3781                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3782                                         .channels = 12,
3783                                         .iface = 0,
3784                                         .altsetting = 1,
3785                                         .altset_idx = 1,
3786                                         .endpoint = 0x82,
3787                                         .ep_idx = 1,
3788                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3789                                             USB_ENDPOINT_SYNC_ASYNC|
3790                                             USB_ENDPOINT_USAGE_IMPLICIT_FB,
3791                                         .rates = SNDRV_PCM_RATE_44100|
3792                                             SNDRV_PCM_RATE_48000|
3793                                             SNDRV_PCM_RATE_96000,
3794                                         .rate_min = 44100,
3795                                         .rate_max = 96000,
3796                                         .nr_rates = 3,
3797                                         .rate_table = (unsigned int[]) {
3798                                                 44100, 48000, 96000
3799                                         }
3800                                 }
3801                         },
3802                         {
3803                                 .ifnum = -1
3804                         }
3805                 }
3806         }
3807 },
3808
3809 /*
3810  * MacroSilicon MS2100/MS2106 based AV capture cards
3811  *
3812  * These claim 96kHz 1ch in the descriptors, but are actually 48kHz 2ch.
3813  * They also need QUIRK_FLAG_ALIGN_TRANSFER, which makes one wonder if
3814  * they pretend to be 96kHz mono as a workaround for stereo being broken
3815  * by that...
3816  *
3817  * They also have an issue with initial stream alignment that causes the
3818  * channels to be swapped and out of phase, which is dealt with in quirks.c.
3819  */
3820 {
3821         USB_AUDIO_DEVICE(0x534d, 0x0021),
3822         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3823                 .vendor_name = "MacroSilicon",
3824                 .product_name = "MS210x",
3825                 .ifnum = QUIRK_ANY_INTERFACE,
3826                 .type = QUIRK_COMPOSITE,
3827                 .data = &(const struct snd_usb_audio_quirk[]) {
3828                         {
3829                                 .ifnum = 2,
3830                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
3831                         },
3832                         {
3833                                 .ifnum = 3,
3834                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3835                                 .data = &(const struct audioformat) {
3836                                         .formats = SNDRV_PCM_FMTBIT_S16_LE,
3837                                         .channels = 2,
3838                                         .iface = 3,
3839                                         .altsetting = 1,
3840                                         .altset_idx = 1,
3841                                         .attributes = 0,
3842                                         .endpoint = 0x82,
3843                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
3844                                                 USB_ENDPOINT_SYNC_ASYNC,
3845                                         .rates = SNDRV_PCM_RATE_CONTINUOUS,
3846                                         .rate_min = 48000,
3847                                         .rate_max = 48000,
3848                                 }
3849                         },
3850                         {
3851                                 .ifnum = -1
3852                         }
3853                 }
3854         }
3855 },
3856
3857 /*
3858  * MacroSilicon MS2109 based HDMI capture cards
3859  *
3860  * These claim 96kHz 1ch in the descriptors, but are actually 48kHz 2ch.
3861  * They also need QUIRK_FLAG_ALIGN_TRANSFER, which makes one wonder if
3862  * they pretend to be 96kHz mono as a workaround for stereo being broken
3863  * by that...
3864  *
3865  * They also have an issue with initial stream alignment that causes the
3866  * channels to be swapped and out of phase, which is dealt with in quirks.c.
3867  */
3868 {
3869         USB_AUDIO_DEVICE(0x534d, 0x2109),
3870         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3871                 .vendor_name = "MacroSilicon",
3872                 .product_name = "MS2109",
3873                 .ifnum = QUIRK_ANY_INTERFACE,
3874                 .type = QUIRK_COMPOSITE,
3875                 .data = &(const struct snd_usb_audio_quirk[]) {
3876                         {
3877                                 .ifnum = 2,
3878                                 .type = QUIRK_AUDIO_STANDARD_MIXER,
3879                         },
3880                         {
3881                                 .ifnum = 3,
3882                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3883                                 .data = &(const struct audioformat) {
3884                                         .formats = SNDRV_PCM_FMTBIT_S16_LE,
3885                                         .channels = 2,
3886                                         .iface = 3,
3887                                         .altsetting = 1,
3888                                         .altset_idx = 1,
3889                                         .attributes = 0,
3890                                         .endpoint = 0x82,
3891                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
3892                                                 USB_ENDPOINT_SYNC_ASYNC,
3893                                         .rates = SNDRV_PCM_RATE_CONTINUOUS,
3894                                         .rate_min = 48000,
3895                                         .rate_max = 48000,
3896                                 }
3897                         },
3898                         {
3899                                 .ifnum = -1
3900                         }
3901                 }
3902         }
3903 },
3904 {
3905         /*
3906          * Pioneer DJ DJM-750
3907          * 8 channels playback & 8 channels capture @ 44.1/48/96kHz S24LE
3908          */
3909         USB_DEVICE_VENDOR_SPEC(0x08e4, 0x017f),
3910         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3911                 .ifnum = QUIRK_ANY_INTERFACE,
3912                 .type = QUIRK_COMPOSITE,
3913                 .data = (const struct snd_usb_audio_quirk[]) {
3914                         {
3915                                 .ifnum = 0,
3916                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3917                                 .data = &(const struct audioformat) {
3918                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3919                                         .channels = 8,
3920                                         .iface = 0,
3921                                         .altsetting = 1,
3922                                         .altset_idx = 1,
3923                                         .endpoint = 0x05,
3924                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3925                                             USB_ENDPOINT_SYNC_ASYNC,
3926                                         .rates = SNDRV_PCM_RATE_44100|
3927                                                 SNDRV_PCM_RATE_48000|
3928                                                 SNDRV_PCM_RATE_96000,
3929                                         .rate_min = 44100,
3930                                         .rate_max = 96000,
3931                                         .nr_rates = 3,
3932                                         .rate_table = (unsigned int[]) { 44100, 48000, 96000 }
3933                                 }
3934                         },
3935                         {
3936                                 .ifnum = 0,
3937                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3938                                 .data = &(const struct audioformat) {
3939                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3940                                         .channels = 8,
3941                                         .iface = 0,
3942                                         .altsetting = 1,
3943                                         .altset_idx = 1,
3944                                         .endpoint = 0x86,
3945                                         .ep_idx = 1,
3946                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3947                                                 USB_ENDPOINT_SYNC_ASYNC|
3948                                                 USB_ENDPOINT_USAGE_IMPLICIT_FB,
3949                                         .rates = SNDRV_PCM_RATE_44100|
3950                                                 SNDRV_PCM_RATE_48000|
3951                                                 SNDRV_PCM_RATE_96000,
3952                                         .rate_min = 44100,
3953                                         .rate_max = 96000,
3954                                         .nr_rates = 3,
3955                                         .rate_table = (unsigned int[]) { 44100, 48000, 96000 }
3956                                 }
3957                         },
3958                         {
3959                                 .ifnum = -1
3960                         }
3961                 }
3962         }
3963 },
3964 {
3965         /*
3966          * Pioneer DJ DJM-750MK2
3967          * 10 channels playback & 12 channels capture @ 48kHz S24LE
3968          */
3969         USB_DEVICE_VENDOR_SPEC(0x2b73, 0x001b),
3970         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3971                 .ifnum = QUIRK_ANY_INTERFACE,
3972                 .type = QUIRK_COMPOSITE,
3973                 .data = (const struct snd_usb_audio_quirk[]) {
3974                         {
3975                                 .ifnum = 0,
3976                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3977                                 .data = &(const struct audioformat) {
3978                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3979                                         .channels = 10,
3980                                         .iface = 0,
3981                                         .altsetting = 1,
3982                                         .altset_idx = 1,
3983                                         .endpoint = 0x01,
3984                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
3985                                             USB_ENDPOINT_SYNC_ASYNC,
3986                                         .rates = SNDRV_PCM_RATE_48000,
3987                                         .rate_min = 48000,
3988                                         .rate_max = 48000,
3989                                         .nr_rates = 1,
3990                                         .rate_table = (unsigned int[]) {
3991                                                 48000
3992                                         }
3993                                 }
3994                         },
3995                         {
3996                                 .ifnum = 0,
3997                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3998                                 .data = &(const struct audioformat) {
3999                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
4000                                         .channels = 12,
4001                                         .iface = 0,
4002                                         .altsetting = 1,
4003                                         .altset_idx = 1,
4004                                         .endpoint = 0x82,
4005                                         .ep_idx = 1,
4006                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
4007                                                 USB_ENDPOINT_SYNC_ASYNC|
4008                                                 USB_ENDPOINT_USAGE_IMPLICIT_FB,
4009                                         .rates = SNDRV_PCM_RATE_48000,
4010                                         .rate_min = 48000,
4011                                         .rate_max = 48000,
4012                                         .nr_rates = 1,
4013                                         .rate_table = (unsigned int[]) { 48000 }
4014                                 }
4015                         },
4016                         {
4017                                 .ifnum = -1
4018                         }
4019                 }
4020         }
4021 },
4022 {
4023         /*
4024          * Pioneer DJ DJM-850
4025          * 8 channels playback and 8 channels capture @ 44.1/48/96kHz S24LE
4026          * Playback on EP 0x05
4027          * Capture on EP 0x86
4028          */
4029         USB_DEVICE_VENDOR_SPEC(0x08e4, 0x0163),
4030         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
4031                 .ifnum = QUIRK_ANY_INTERFACE,
4032                 .type = QUIRK_COMPOSITE,
4033                 .data = (const struct snd_usb_audio_quirk[]) {
4034                         {
4035                                 .ifnum = 0,
4036                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4037                                 .data = &(const struct audioformat) {
4038                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
4039                                         .channels = 8,
4040                                         .iface = 0,
4041                                         .altsetting = 1,
4042                                         .altset_idx = 1,
4043                                         .endpoint = 0x05,
4044                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
4045                                             USB_ENDPOINT_SYNC_ASYNC|
4046                                                 USB_ENDPOINT_USAGE_DATA,
4047                                         .rates = SNDRV_PCM_RATE_44100|
4048                                                 SNDRV_PCM_RATE_48000|
4049                                                 SNDRV_PCM_RATE_96000,
4050                                         .rate_min = 44100,
4051                                         .rate_max = 96000,
4052                                         .nr_rates = 3,
4053                                         .rate_table = (unsigned int[]) { 44100, 48000, 96000 }
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,
4062                                         .iface = 0,
4063                                         .altsetting = 1,
4064                                         .altset_idx = 1,
4065                                         .endpoint = 0x86,
4066                                         .ep_idx = 1,
4067                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
4068                                                 USB_ENDPOINT_SYNC_ASYNC|
4069                                                 USB_ENDPOINT_USAGE_DATA,
4070                                         .rates = SNDRV_PCM_RATE_44100|
4071                                                 SNDRV_PCM_RATE_48000|
4072                                                 SNDRV_PCM_RATE_96000,
4073                                         .rate_min = 44100,
4074                                         .rate_max = 96000,
4075                                         .nr_rates = 3,
4076                                         .rate_table = (unsigned int[]) { 44100, 48000, 96000 }
4077                                 }
4078                         },
4079                         {
4080                                 .ifnum = -1
4081                         }
4082                 }
4083         }
4084 },
4085 {
4086         /*
4087          * Pioneer DJ DJM-450
4088          * PCM is 8 channels out @ 48 fixed (endpoint 0x01)
4089          * and 8 channels in @ 48 fixed (endpoint 0x82).
4090          */
4091         USB_DEVICE_VENDOR_SPEC(0x2b73, 0x0013),
4092         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
4093                 .ifnum = QUIRK_ANY_INTERFACE,
4094                 .type = QUIRK_COMPOSITE,
4095                 .data = (const struct snd_usb_audio_quirk[]) {
4096                         {
4097                                 .ifnum = 0,
4098                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4099                                 .data = &(const struct audioformat) {
4100                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
4101                                         .channels = 8, // outputs
4102                                         .iface = 0,
4103                                         .altsetting = 1,
4104                                         .altset_idx = 1,
4105                                         .endpoint = 0x01,
4106                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
4107                                                 USB_ENDPOINT_SYNC_ASYNC,
4108                                         .rates = SNDRV_PCM_RATE_48000,
4109                                         .rate_min = 48000,
4110                                         .rate_max = 48000,
4111                                         .nr_rates = 1,
4112                                         .rate_table = (unsigned int[]) { 48000 }
4113                                         }
4114                         },
4115                         {
4116                                 .ifnum = 0,
4117                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4118                                 .data = &(const struct audioformat) {
4119                                         .formats = SNDRV_PCM_FMTBIT_S24_3LE,
4120                                         .channels = 8, // inputs
4121                                         .iface = 0,
4122                                         .altsetting = 1,
4123                                         .altset_idx = 1,
4124                                         .endpoint = 0x82,
4125                                         .ep_idx = 1,
4126                                         .ep_attr = USB_ENDPOINT_XFER_ISOC|
4127                                                 USB_ENDPOINT_SYNC_ASYNC|
4128                                                 USB_ENDPOINT_USAGE_IMPLICIT_FB,
4129                                         .rates = SNDRV_PCM_RATE_48000,
4130                                         .rate_min = 48000,
4131                                         .rate_max = 48000,
4132                                         .nr_rates = 1,
4133                                         .rate_table = (unsigned int[]) { 48000 }
4134                                 }
4135                         },
4136                         {
4137                                 .ifnum = -1
4138                         }
4139                 }
4140         }
4141 },
4142 {
4143         /*
4144          * Sennheiser GSP670
4145          * Change order of interfaces loaded
4146          */
4147         USB_DEVICE(0x1395, 0x0300),
4148         .bInterfaceClass = USB_CLASS_PER_INTERFACE,
4149         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
4150                 .ifnum = QUIRK_ANY_INTERFACE,
4151                 .type = QUIRK_COMPOSITE,
4152                 .data = &(const struct snd_usb_audio_quirk[]) {
4153                         // Communication
4154                         {
4155                                 .ifnum = 3,
4156                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
4157                         },
4158                         // Recording
4159                         {
4160                                 .ifnum = 4,
4161                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
4162                         },
4163                         // Main
4164                         {
4165                                 .ifnum = 1,
4166                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
4167                         },
4168                         {
4169                                 .ifnum = -1
4170                         }
4171                 }
4172         }
4173 },
4174 {
4175         /*
4176          * Fiero SC-01 (firmware v1.0.0 @ 48 kHz)
4177          */
4178         USB_DEVICE(0x2b53, 0x0023),
4179         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
4180                 .vendor_name = "Fiero",
4181                 .product_name = "SC-01",
4182                 .ifnum = QUIRK_ANY_INTERFACE,
4183                 .type = QUIRK_COMPOSITE,
4184                 .data = &(const struct snd_usb_audio_quirk[]) {
4185                         {
4186                                 .ifnum = 0,
4187                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
4188                         },
4189                         /* Playback */
4190                         {
4191                                 .ifnum = 1,
4192                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4193                                 .data = &(const struct audioformat) {
4194                                         .formats = SNDRV_PCM_FMTBIT_S32_LE,
4195                                         .channels = 2,
4196                                         .fmt_bits = 24,
4197                                         .iface = 1,
4198                                         .altsetting = 1,
4199                                         .altset_idx = 1,
4200                                         .endpoint = 0x01,
4201                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
4202                                                    USB_ENDPOINT_SYNC_ASYNC,
4203                                         .rates = SNDRV_PCM_RATE_48000,
4204                                         .rate_min = 48000,
4205                                         .rate_max = 48000,
4206                                         .nr_rates = 1,
4207                                         .rate_table = (unsigned int[]) { 48000 },
4208                                         .clock = 0x29
4209                                 }
4210                         },
4211                         /* Capture */
4212                         {
4213                                 .ifnum = 2,
4214                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4215                                 .data = &(const struct audioformat) {
4216                                         .formats = SNDRV_PCM_FMTBIT_S32_LE,
4217                                         .channels = 2,
4218                                         .fmt_bits = 24,
4219                                         .iface = 2,
4220                                         .altsetting = 1,
4221                                         .altset_idx = 1,
4222                                         .endpoint = 0x82,
4223                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
4224                                                    USB_ENDPOINT_SYNC_ASYNC |
4225                                                    USB_ENDPOINT_USAGE_IMPLICIT_FB,
4226                                         .rates = SNDRV_PCM_RATE_48000,
4227                                         .rate_min = 48000,
4228                                         .rate_max = 48000,
4229                                         .nr_rates = 1,
4230                                         .rate_table = (unsigned int[]) { 48000 },
4231                                         .clock = 0x29
4232                                 }
4233                         },
4234                         {
4235                                 .ifnum = -1
4236                         }
4237                 }
4238         }
4239 },
4240 {
4241         /*
4242          * Fiero SC-01 (firmware v1.0.0 @ 96 kHz)
4243          */
4244         USB_DEVICE(0x2b53, 0x0024),
4245         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
4246                 .vendor_name = "Fiero",
4247                 .product_name = "SC-01",
4248                 .ifnum = QUIRK_ANY_INTERFACE,
4249                 .type = QUIRK_COMPOSITE,
4250                 .data = &(const struct snd_usb_audio_quirk[]) {
4251                         {
4252                                 .ifnum = 0,
4253                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
4254                         },
4255                         /* Playback */
4256                         {
4257                                 .ifnum = 1,
4258                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4259                                 .data = &(const struct audioformat) {
4260                                         .formats = SNDRV_PCM_FMTBIT_S32_LE,
4261                                         .channels = 2,
4262                                         .fmt_bits = 24,
4263                                         .iface = 1,
4264                                         .altsetting = 1,
4265                                         .altset_idx = 1,
4266                                         .endpoint = 0x01,
4267                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
4268                                                    USB_ENDPOINT_SYNC_ASYNC,
4269                                         .rates = SNDRV_PCM_RATE_96000,
4270                                         .rate_min = 96000,
4271                                         .rate_max = 96000,
4272                                         .nr_rates = 1,
4273                                         .rate_table = (unsigned int[]) { 96000 },
4274                                         .clock = 0x29
4275                                 }
4276                         },
4277                         /* Capture */
4278                         {
4279                                 .ifnum = 2,
4280                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4281                                 .data = &(const struct audioformat) {
4282                                         .formats = SNDRV_PCM_FMTBIT_S32_LE,
4283                                         .channels = 2,
4284                                         .fmt_bits = 24,
4285                                         .iface = 2,
4286                                         .altsetting = 1,
4287                                         .altset_idx = 1,
4288                                         .endpoint = 0x82,
4289                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
4290                                                    USB_ENDPOINT_SYNC_ASYNC |
4291                                                    USB_ENDPOINT_USAGE_IMPLICIT_FB,
4292                                         .rates = SNDRV_PCM_RATE_96000,
4293                                         .rate_min = 96000,
4294                                         .rate_max = 96000,
4295                                         .nr_rates = 1,
4296                                         .rate_table = (unsigned int[]) { 96000 },
4297                                         .clock = 0x29
4298                                 }
4299                         },
4300                         {
4301                                 .ifnum = -1
4302                         }
4303                 }
4304         }
4305 },
4306 {
4307         /*
4308          * Fiero SC-01 (firmware v1.1.0)
4309          */
4310         USB_DEVICE(0x2b53, 0x0031),
4311         .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
4312                 .vendor_name = "Fiero",
4313                 .product_name = "SC-01",
4314                 .ifnum = QUIRK_ANY_INTERFACE,
4315                 .type = QUIRK_COMPOSITE,
4316                 .data = &(const struct snd_usb_audio_quirk[]) {
4317                         {
4318                                 .ifnum = 0,
4319                                 .type = QUIRK_AUDIO_STANDARD_INTERFACE
4320                         },
4321                         /* Playback */
4322                         {
4323                                 .ifnum = 1,
4324                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4325                                 .data = &(const struct audioformat) {
4326                                         .formats = SNDRV_PCM_FMTBIT_S32_LE,
4327                                         .channels = 2,
4328                                         .fmt_bits = 24,
4329                                         .iface = 1,
4330                                         .altsetting = 1,
4331                                         .altset_idx = 1,
4332                                         .endpoint = 0x01,
4333                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
4334                                                    USB_ENDPOINT_SYNC_ASYNC,
4335                                         .rates = SNDRV_PCM_RATE_48000 |
4336                                                  SNDRV_PCM_RATE_96000,
4337                                         .rate_min = 48000,
4338                                         .rate_max = 96000,
4339                                         .nr_rates = 2,
4340                                         .rate_table = (unsigned int[]) { 48000, 96000 },
4341                                         .clock = 0x29
4342                                 }
4343                         },
4344                         /* Capture */
4345                         {
4346                                 .ifnum = 2,
4347                                 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
4348                                 .data = &(const struct audioformat) {
4349                                         .formats = SNDRV_PCM_FMTBIT_S32_LE,
4350                                         .channels = 2,
4351                                         .fmt_bits = 24,
4352                                         .iface = 2,
4353                                         .altsetting = 1,
4354                                         .altset_idx = 1,
4355                                         .endpoint = 0x82,
4356                                         .ep_attr = USB_ENDPOINT_XFER_ISOC |
4357                                                    USB_ENDPOINT_SYNC_ASYNC |
4358                                                    USB_ENDPOINT_USAGE_IMPLICIT_FB,
4359                                         .rates = SNDRV_PCM_RATE_48000 |
4360                                                  SNDRV_PCM_RATE_96000,
4361                                         .rate_min = 48000,
4362                                         .rate_max = 96000,
4363                                         .nr_rates = 2,
4364                                         .rate_table = (unsigned int[]) { 48000, 96000 },
4365                                         .clock = 0x29
4366                                 }
4367                         },
4368                         {
4369                                 .ifnum = -1
4370                         }
4371                 }
4372         }
4373 },
4374
4375 #undef USB_DEVICE_VENDOR_SPEC
4376 #undef USB_AUDIO_DEVICE