ALSA: usb - Fix possible Oops at USB-MIDI disconnection
[deliverable/linux.git] / sound / usb / usbquirks.h
CommitLineData
1da177e4
LT
1/*
2 * ALSA USB Audio Driver
3 *
4 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>,
5 * Clemens Ladisch <clemens@ladisch.de>
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23/*
24 * The contents of this file are part of the driver's id_table.
25 *
26 * In a perfect world, this file would be empty.
27 */
28
29/*
30 * Use this for devices where other interfaces are standard compliant,
31 * to prevent the quirk being applied to those interfaces. (To work with
32 * hotplugging, bDeviceClass must be set to USB_CLASS_PER_INTERFACE.)
33 */
34#define USB_DEVICE_VENDOR_SPEC(vend, prod) \
35 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | \
36 USB_DEVICE_ID_MATCH_PRODUCT | \
37 USB_DEVICE_ID_MATCH_INT_CLASS, \
38 .idVendor = vend, \
39 .idProduct = prod, \
40 .bInterfaceClass = USB_CLASS_VENDOR_SPEC
41
25a47b6b
CL
42/* Creative/E-Mu devices */
43{
44 USB_DEVICE(0x041e, 0x3010),
45 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
46 .vendor_name = "Creative Labs",
47 .product_name = "Sound Blaster MP3+",
48 .ifnum = QUIRK_NO_INTERFACE
49 }
50},
51{
52 /* E-Mu 0202 USB */
53 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
54 .idVendor = 0x041e,
55 .idProduct = 0x3f02,
56 .bInterfaceClass = USB_CLASS_AUDIO,
57},
58{
59 /* E-Mu 0404 USB */
60 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
61 .idVendor = 0x041e,
62 .idProduct = 0x3f04,
63 .bInterfaceClass = USB_CLASS_AUDIO,
64},
97c889a7
ET
65{
66 /* E-Mu Tracker Pre */
67 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
68 .idVendor = 0x041e,
69 .idProduct = 0x3f0a,
70 .bInterfaceClass = USB_CLASS_AUDIO,
71},
25a47b6b 72
a9121458
DD
73/*
74 * Logitech QuickCam: bDeviceClass is vendor-specific, so generic interface
75 * class matches do not take effect without an explicit ID match.
76 */
d417045e
DD
77{
78 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
79 USB_DEVICE_ID_MATCH_INT_CLASS |
80 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
81 .idVendor = 0x046d,
82 .idProduct = 0x0850,
83 .bInterfaceClass = USB_CLASS_AUDIO,
84 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
85},
c34532da
GS
86{
87 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
88 USB_DEVICE_ID_MATCH_INT_CLASS |
89 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
90 .idVendor = 0x046d,
91 .idProduct = 0x08ae,
92 .bInterfaceClass = USB_CLASS_AUDIO,
93 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
94},
cfc24ec8
RRS
95{
96 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
97 USB_DEVICE_ID_MATCH_INT_CLASS |
98 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
99 .idVendor = 0x046d,
100 .idProduct = 0x08c6,
101 .bInterfaceClass = USB_CLASS_AUDIO,
102 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
103},
a9121458
DD
104{
105 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
106 USB_DEVICE_ID_MATCH_INT_CLASS |
107 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
108 .idVendor = 0x046d,
109 .idProduct = 0x08f0,
110 .bInterfaceClass = USB_CLASS_AUDIO,
111 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
112},
31127f2e
DW
113{
114 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
115 USB_DEVICE_ID_MATCH_INT_CLASS |
116 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
117 .idVendor = 0x046d,
118 .idProduct = 0x08f5,
119 .bInterfaceClass = USB_CLASS_AUDIO,
120 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
121},
a9121458
DD
122{
123 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
124 USB_DEVICE_ID_MATCH_INT_CLASS |
125 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
126 .idVendor = 0x046d,
127 .idProduct = 0x08f6,
128 .bInterfaceClass = USB_CLASS_AUDIO,
129 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
130},
25a47b6b 131
1da177e4
LT
132/*
133 * Yamaha devices
134 */
135
136#define YAMAHA_DEVICE(id, name) { \
137 USB_DEVICE(0x0499, id), \
86e07d34 138 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
1da177e4
LT
139 .vendor_name = "Yamaha", \
140 .product_name = name, \
141 .ifnum = QUIRK_ANY_INTERFACE, \
142 .type = QUIRK_MIDI_YAMAHA \
143 } \
144}
145#define YAMAHA_INTERFACE(id, intf, name) { \
146 USB_DEVICE_VENDOR_SPEC(0x0499, id), \
86e07d34 147 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
1da177e4
LT
148 .vendor_name = "Yamaha", \
149 .product_name = name, \
150 .ifnum = intf, \
151 .type = QUIRK_MIDI_YAMAHA \
152 } \
153}
154YAMAHA_DEVICE(0x1000, "UX256"),
155YAMAHA_DEVICE(0x1001, "MU1000"),
156YAMAHA_DEVICE(0x1002, "MU2000"),
157YAMAHA_DEVICE(0x1003, "MU500"),
158YAMAHA_INTERFACE(0x1004, 3, "UW500"),
159YAMAHA_DEVICE(0x1005, "MOTIF6"),
160YAMAHA_DEVICE(0x1006, "MOTIF7"),
161YAMAHA_DEVICE(0x1007, "MOTIF8"),
162YAMAHA_DEVICE(0x1008, "UX96"),
163YAMAHA_DEVICE(0x1009, "UX16"),
164YAMAHA_INTERFACE(0x100a, 3, "EOS BX"),
165YAMAHA_DEVICE(0x100c, "UC-MX"),
166YAMAHA_DEVICE(0x100d, "UC-KX"),
167YAMAHA_DEVICE(0x100e, "S08"),
168YAMAHA_DEVICE(0x100f, "CLP-150"),
169YAMAHA_DEVICE(0x1010, "CLP-170"),
170YAMAHA_DEVICE(0x1011, "P-250"),
171YAMAHA_DEVICE(0x1012, "TYROS"),
172YAMAHA_DEVICE(0x1013, "PF-500"),
173YAMAHA_DEVICE(0x1014, "S90"),
174YAMAHA_DEVICE(0x1015, "MOTIF-R"),
4ccb4a43 175YAMAHA_DEVICE(0x1016, "MDP-5"),
1da177e4
LT
176YAMAHA_DEVICE(0x1017, "CVP-204"),
177YAMAHA_DEVICE(0x1018, "CVP-206"),
178YAMAHA_DEVICE(0x1019, "CVP-208"),
179YAMAHA_DEVICE(0x101a, "CVP-210"),
180YAMAHA_DEVICE(0x101b, "PSR-1100"),
181YAMAHA_DEVICE(0x101c, "PSR-2100"),
182YAMAHA_DEVICE(0x101d, "CLP-175"),
183YAMAHA_DEVICE(0x101e, "PSR-K1"),
4ccb4a43 184YAMAHA_DEVICE(0x101f, "EZ-J24"),
1da177e4
LT
185YAMAHA_DEVICE(0x1020, "EZ-250i"),
186YAMAHA_DEVICE(0x1021, "MOTIF ES 6"),
187YAMAHA_DEVICE(0x1022, "MOTIF ES 7"),
188YAMAHA_DEVICE(0x1023, "MOTIF ES 8"),
189YAMAHA_DEVICE(0x1024, "CVP-301"),
190YAMAHA_DEVICE(0x1025, "CVP-303"),
191YAMAHA_DEVICE(0x1026, "CVP-305"),
192YAMAHA_DEVICE(0x1027, "CVP-307"),
193YAMAHA_DEVICE(0x1028, "CVP-309"),
194YAMAHA_DEVICE(0x1029, "CVP-309GP"),
195YAMAHA_DEVICE(0x102a, "PSR-1500"),
196YAMAHA_DEVICE(0x102b, "PSR-3000"),
197YAMAHA_DEVICE(0x102e, "ELS-01/01C"),
198YAMAHA_DEVICE(0x1030, "PSR-295/293"),
199YAMAHA_DEVICE(0x1031, "DGX-205/203"),
200YAMAHA_DEVICE(0x1032, "DGX-305"),
201YAMAHA_DEVICE(0x1033, "DGX-505"),
202YAMAHA_DEVICE(0x1034, NULL),
203YAMAHA_DEVICE(0x1035, NULL),
204YAMAHA_DEVICE(0x1036, NULL),
205YAMAHA_DEVICE(0x1037, NULL),
206YAMAHA_DEVICE(0x1038, NULL),
207YAMAHA_DEVICE(0x1039, NULL),
208YAMAHA_DEVICE(0x103a, NULL),
209YAMAHA_DEVICE(0x103b, NULL),
210YAMAHA_DEVICE(0x103c, NULL),
0ac2ac0a 211YAMAHA_DEVICE(0x103d, NULL),
f542fda8
CL
212YAMAHA_DEVICE(0x103e, NULL),
213YAMAHA_DEVICE(0x103f, NULL),
214YAMAHA_DEVICE(0x1040, NULL),
215YAMAHA_DEVICE(0x1041, NULL),
f1265391
CL
216YAMAHA_DEVICE(0x1042, NULL),
217YAMAHA_DEVICE(0x1043, NULL),
218YAMAHA_DEVICE(0x1044, NULL),
219YAMAHA_DEVICE(0x1045, NULL),
c85ceac9 220YAMAHA_INTERFACE(0x104e, 0, NULL),
83a1a397
CL
221YAMAHA_DEVICE(0x104f, NULL),
222YAMAHA_DEVICE(0x1050, NULL),
223YAMAHA_DEVICE(0x1051, NULL),
224YAMAHA_DEVICE(0x1052, NULL),
1da177e4
LT
225YAMAHA_DEVICE(0x2000, "DGP-7"),
226YAMAHA_DEVICE(0x2001, "DGP-5"),
227YAMAHA_DEVICE(0x2002, NULL),
228YAMAHA_DEVICE(0x5000, "CS1D"),
229YAMAHA_DEVICE(0x5001, "DSP1D"),
230YAMAHA_DEVICE(0x5002, "DME32"),
231YAMAHA_DEVICE(0x5003, "DM2000"),
232YAMAHA_DEVICE(0x5004, "02R96"),
233YAMAHA_DEVICE(0x5005, "ACU16-C"),
234YAMAHA_DEVICE(0x5006, "NHB32-C"),
235YAMAHA_DEVICE(0x5007, "DM1000"),
236YAMAHA_DEVICE(0x5008, "01V96"),
237YAMAHA_DEVICE(0x5009, "SPX2000"),
238YAMAHA_DEVICE(0x500a, "PM5D"),
239YAMAHA_DEVICE(0x500b, "DME64N"),
240YAMAHA_DEVICE(0x500c, "DME24N"),
241YAMAHA_DEVICE(0x500d, NULL),
242YAMAHA_DEVICE(0x500e, NULL),
f1265391 243YAMAHA_DEVICE(0x500f, NULL),
1da177e4
LT
244YAMAHA_DEVICE(0x7000, "DTX"),
245YAMAHA_DEVICE(0x7010, "UB99"),
246#undef YAMAHA_DEVICE
247#undef YAMAHA_INTERFACE
248
249/*
250 * Roland/RolandED/Edirol/BOSS devices
251 */
252{
253 USB_DEVICE(0x0582, 0x0000),
86e07d34 254 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
255 .vendor_name = "Roland",
256 .product_name = "UA-100",
257 .ifnum = QUIRK_ANY_INTERFACE,
258 .type = QUIRK_COMPOSITE,
86e07d34 259 .data = (const struct snd_usb_audio_quirk[]) {
1da177e4
LT
260 {
261 .ifnum = 0,
262 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
263 .data = & (const struct audioformat) {
264 .format = SNDRV_PCM_FORMAT_S16_LE,
265 .channels = 4,
266 .iface = 0,
267 .altsetting = 1,
268 .altset_idx = 1,
269 .attributes = 0,
270 .endpoint = 0x01,
271 .ep_attr = 0x09,
272 .rates = SNDRV_PCM_RATE_CONTINUOUS,
273 .rate_min = 44100,
274 .rate_max = 44100,
275 }
276 },
277 {
278 .ifnum = 1,
279 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
280 .data = & (const struct audioformat) {
281 .format = SNDRV_PCM_FORMAT_S16_LE,
282 .channels = 2,
283 .iface = 1,
284 .altsetting = 1,
285 .altset_idx = 1,
286 .attributes = EP_CS_ATTR_FILL_MAX,
287 .endpoint = 0x81,
288 .ep_attr = 0x05,
289 .rates = SNDRV_PCM_RATE_CONTINUOUS,
290 .rate_min = 44100,
291 .rate_max = 44100,
292 }
293 },
294 {
295 .ifnum = 2,
296 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 297 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
298 .out_cables = 0x0007,
299 .in_cables = 0x0007
300 }
301 },
302 {
303 .ifnum = -1
304 }
305 }
306 }
307},
308{
309 USB_DEVICE(0x0582, 0x0002),
86e07d34 310 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
311 .vendor_name = "EDIROL",
312 .product_name = "UM-4",
d3ff42fd
CL
313 .ifnum = QUIRK_ANY_INTERFACE,
314 .type = QUIRK_COMPOSITE,
86e07d34 315 .data = (const struct snd_usb_audio_quirk[]) {
d3ff42fd
CL
316 {
317 .ifnum = 0,
318 .type = QUIRK_IGNORE_INTERFACE
319 },
320 {
321 .ifnum = 1,
322 .type = QUIRK_IGNORE_INTERFACE
323 },
324 {
325 .ifnum = 2,
326 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 327 .data = & (const struct snd_usb_midi_endpoint_info) {
d3ff42fd
CL
328 .out_cables = 0x000f,
329 .in_cables = 0x000f
330 }
331 },
332 {
333 .ifnum = -1
334 }
1da177e4
LT
335 }
336 }
337},
338{
339 USB_DEVICE(0x0582, 0x0003),
86e07d34 340 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
341 .vendor_name = "Roland",
342 .product_name = "SC-8850",
d3ff42fd
CL
343 .ifnum = QUIRK_ANY_INTERFACE,
344 .type = QUIRK_COMPOSITE,
86e07d34 345 .data = (const struct snd_usb_audio_quirk[]) {
d3ff42fd
CL
346 {
347 .ifnum = 0,
348 .type = QUIRK_IGNORE_INTERFACE
349 },
350 {
351 .ifnum = 1,
352 .type = QUIRK_IGNORE_INTERFACE
353 },
354 {
355 .ifnum = 2,
356 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 357 .data = & (const struct snd_usb_midi_endpoint_info) {
d3ff42fd
CL
358 .out_cables = 0x003f,
359 .in_cables = 0x003f
360 }
361 },
362 {
363 .ifnum = -1
364 }
1da177e4
LT
365 }
366 }
367},
368{
369 USB_DEVICE(0x0582, 0x0004),
86e07d34 370 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
371 .vendor_name = "Roland",
372 .product_name = "U-8",
d3ff42fd
CL
373 .ifnum = QUIRK_ANY_INTERFACE,
374 .type = QUIRK_COMPOSITE,
86e07d34 375 .data = (const struct snd_usb_audio_quirk[]) {
d3ff42fd
CL
376 {
377 .ifnum = 0,
378 .type = QUIRK_IGNORE_INTERFACE
379 },
380 {
381 .ifnum = 1,
382 .type = QUIRK_IGNORE_INTERFACE
383 },
384 {
385 .ifnum = 2,
386 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 387 .data = & (const struct snd_usb_midi_endpoint_info) {
d3ff42fd
CL
388 .out_cables = 0x0005,
389 .in_cables = 0x0005
390 }
391 },
392 {
393 .ifnum = -1
394 }
1da177e4
LT
395 }
396 }
397},
398{
119c4ff5
CL
399 /* Has ID 0x0099 when not in "Advanced Driver" mode.
400 * The UM-2EX has only one input, but we cannot detect this. */
1da177e4 401 USB_DEVICE(0x0582, 0x0005),
86e07d34 402 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
403 .vendor_name = "EDIROL",
404 .product_name = "UM-2",
d3ff42fd
CL
405 .ifnum = QUIRK_ANY_INTERFACE,
406 .type = QUIRK_COMPOSITE,
86e07d34 407 .data = (const struct snd_usb_audio_quirk[]) {
d3ff42fd
CL
408 {
409 .ifnum = 0,
410 .type = QUIRK_IGNORE_INTERFACE
411 },
412 {
413 .ifnum = 1,
414 .type = QUIRK_IGNORE_INTERFACE
415 },
416 {
417 .ifnum = 2,
418 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 419 .data = & (const struct snd_usb_midi_endpoint_info) {
d3ff42fd
CL
420 .out_cables = 0x0003,
421 .in_cables = 0x0003
422 }
423 },
424 {
425 .ifnum = -1
426 }
1da177e4
LT
427 }
428 }
429},
430{
431 USB_DEVICE(0x0582, 0x0007),
86e07d34 432 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
433 .vendor_name = "Roland",
434 .product_name = "SC-8820",
d3ff42fd
CL
435 .ifnum = QUIRK_ANY_INTERFACE,
436 .type = QUIRK_COMPOSITE,
86e07d34 437 .data = (const struct snd_usb_audio_quirk[]) {
d3ff42fd
CL
438 {
439 .ifnum = 0,
440 .type = QUIRK_IGNORE_INTERFACE
441 },
442 {
443 .ifnum = 1,
444 .type = QUIRK_IGNORE_INTERFACE
445 },
446 {
447 .ifnum = 2,
448 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 449 .data = & (const struct snd_usb_midi_endpoint_info) {
d3ff42fd
CL
450 .out_cables = 0x0013,
451 .in_cables = 0x0013
452 }
453 },
454 {
455 .ifnum = -1
456 }
1da177e4
LT
457 }
458 }
459},
460{
461 USB_DEVICE(0x0582, 0x0008),
86e07d34 462 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
463 .vendor_name = "Roland",
464 .product_name = "PC-300",
d3ff42fd
CL
465 .ifnum = QUIRK_ANY_INTERFACE,
466 .type = QUIRK_COMPOSITE,
86e07d34 467 .data = (const struct snd_usb_audio_quirk[]) {
d3ff42fd
CL
468 {
469 .ifnum = 0,
470 .type = QUIRK_IGNORE_INTERFACE
471 },
472 {
473 .ifnum = 1,
474 .type = QUIRK_IGNORE_INTERFACE
475 },
476 {
477 .ifnum = 2,
478 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 479 .data = & (const struct snd_usb_midi_endpoint_info) {
d3ff42fd
CL
480 .out_cables = 0x0001,
481 .in_cables = 0x0001
482 }
483 },
484 {
485 .ifnum = -1
486 }
1da177e4
LT
487 }
488 }
489},
490{
119c4ff5 491 /* has ID 0x009d when not in "Advanced Driver" mode */
1da177e4 492 USB_DEVICE(0x0582, 0x0009),
86e07d34 493 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
494 .vendor_name = "EDIROL",
495 .product_name = "UM-1",
d3ff42fd
CL
496 .ifnum = QUIRK_ANY_INTERFACE,
497 .type = QUIRK_COMPOSITE,
86e07d34 498 .data = (const struct snd_usb_audio_quirk[]) {
d3ff42fd
CL
499 {
500 .ifnum = 0,
501 .type = QUIRK_IGNORE_INTERFACE
502 },
503 {
504 .ifnum = 1,
505 .type = QUIRK_IGNORE_INTERFACE
506 },
507 {
508 .ifnum = 2,
509 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 510 .data = & (const struct snd_usb_midi_endpoint_info) {
d3ff42fd
CL
511 .out_cables = 0x0001,
512 .in_cables = 0x0001
513 }
514 },
515 {
516 .ifnum = -1
517 }
1da177e4
LT
518 }
519 }
520},
521{
522 USB_DEVICE(0x0582, 0x000b),
86e07d34 523 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
524 .vendor_name = "Roland",
525 .product_name = "SK-500",
d3ff42fd
CL
526 .ifnum = QUIRK_ANY_INTERFACE,
527 .type = QUIRK_COMPOSITE,
86e07d34 528 .data = (const struct snd_usb_audio_quirk[]) {
d3ff42fd
CL
529 {
530 .ifnum = 0,
531 .type = QUIRK_IGNORE_INTERFACE
532 },
533 {
534 .ifnum = 1,
535 .type = QUIRK_IGNORE_INTERFACE
536 },
537 {
538 .ifnum = 2,
539 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 540 .data = & (const struct snd_usb_midi_endpoint_info) {
d3ff42fd
CL
541 .out_cables = 0x0013,
542 .in_cables = 0x0013
543 }
544 },
545 {
546 .ifnum = -1
547 }
1da177e4
LT
548 }
549 }
550},
551{
552 /* thanks to Emiliano Grilli <emillo@libero.it>
553 * for helping researching this data */
554 USB_DEVICE(0x0582, 0x000c),
86e07d34 555 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
556 .vendor_name = "Roland",
557 .product_name = "SC-D70",
558 .ifnum = QUIRK_ANY_INTERFACE,
559 .type = QUIRK_COMPOSITE,
86e07d34 560 .data = (const struct snd_usb_audio_quirk[]) {
1da177e4
LT
561 {
562 .ifnum = 0,
563 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
564 .data = & (const struct audioformat) {
565 .format = SNDRV_PCM_FORMAT_S24_3LE,
566 .channels = 2,
567 .iface = 0,
568 .altsetting = 1,
569 .altset_idx = 1,
570 .attributes = 0,
571 .endpoint = 0x01,
572 .ep_attr = 0x01,
573 .rates = SNDRV_PCM_RATE_CONTINUOUS,
574 .rate_min = 44100,
575 .rate_max = 44100,
576 }
577 },
578 {
579 .ifnum = 1,
580 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
581 .data = & (const struct audioformat) {
582 .format = SNDRV_PCM_FORMAT_S24_3LE,
583 .channels = 2,
584 .iface = 1,
585 .altsetting = 1,
586 .altset_idx = 1,
587 .attributes = 0,
588 .endpoint = 0x81,
589 .ep_attr = 0x01,
590 .rates = SNDRV_PCM_RATE_CONTINUOUS,
591 .rate_min = 44100,
592 .rate_max = 44100,
593 }
594 },
595 {
596 .ifnum = 2,
597 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 598 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
599 .out_cables = 0x0007,
600 .in_cables = 0x0007
601 }
602 },
603 {
604 .ifnum = -1
605 }
606 }
607 }
608},
609{ /*
610 * This quirk is for the "Advanced Driver" mode of the Edirol UA-5.
611 * If the advanced mode switch at the back of the unit is off, the
612 * UA-5 has ID 0x0582/0x0011 and is standard compliant (no quirks),
613 * but offers only 16-bit PCM.
614 * In advanced mode, the UA-5 will output S24_3LE samples (two
615 * channels) at the rate indicated on the front switch, including
616 * the 96kHz sample rate.
617 */
618 USB_DEVICE(0x0582, 0x0010),
86e07d34 619 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
620 .vendor_name = "EDIROL",
621 .product_name = "UA-5",
622 .ifnum = QUIRK_ANY_INTERFACE,
623 .type = QUIRK_COMPOSITE,
86e07d34 624 .data = (const struct snd_usb_audio_quirk[]) {
1da177e4
LT
625 {
626 .ifnum = 1,
627 .type = QUIRK_AUDIO_STANDARD_INTERFACE
628 },
629 {
630 .ifnum = 2,
631 .type = QUIRK_AUDIO_STANDARD_INTERFACE
632 },
633 {
634 .ifnum = -1
635 }
636 }
637 }
638},
639{
d879f0cc 640 /* has ID 0x0013 when not in "Advanced Driver" mode */
1da177e4 641 USB_DEVICE(0x0582, 0x0012),
86e07d34 642 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
643 .vendor_name = "Roland",
644 .product_name = "XV-5050",
645 .ifnum = 0,
646 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 647 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
648 .out_cables = 0x0001,
649 .in_cables = 0x0001
650 }
651 }
652},
653{
d879f0cc 654 /* has ID 0x0015 when not in "Advanced Driver" mode */
1da177e4 655 USB_DEVICE(0x0582, 0x0014),
86e07d34 656 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
657 .vendor_name = "EDIROL",
658 .product_name = "UM-880",
659 .ifnum = 0,
660 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 661 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
662 .out_cables = 0x01ff,
663 .in_cables = 0x01ff
664 }
665 }
666},
667{
d879f0cc 668 /* has ID 0x0017 when not in "Advanced Driver" mode */
1da177e4 669 USB_DEVICE(0x0582, 0x0016),
86e07d34 670 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
671 .vendor_name = "EDIROL",
672 .product_name = "SD-90",
d3ff42fd
CL
673 .ifnum = QUIRK_ANY_INTERFACE,
674 .type = QUIRK_COMPOSITE,
86e07d34 675 .data = (const struct snd_usb_audio_quirk[]) {
d3ff42fd
CL
676 {
677 .ifnum = 0,
678 .type = QUIRK_IGNORE_INTERFACE
679 },
680 {
681 .ifnum = 1,
682 .type = QUIRK_IGNORE_INTERFACE
683 },
684 {
685 .ifnum = 2,
686 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 687 .data = & (const struct snd_usb_midi_endpoint_info) {
d3ff42fd
CL
688 .out_cables = 0x000f,
689 .in_cables = 0x000f
690 }
691 },
692 {
693 .ifnum = -1
694 }
1da177e4
LT
695 }
696 }
697},
698{
d879f0cc 699 /* has ID 0x001c when not in "Advanced Driver" mode */
1da177e4 700 USB_DEVICE(0x0582, 0x001b),
86e07d34 701 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
702 .vendor_name = "Roland",
703 .product_name = "MMP-2",
d3ff42fd
CL
704 .ifnum = QUIRK_ANY_INTERFACE,
705 .type = QUIRK_COMPOSITE,
86e07d34 706 .data = (const struct snd_usb_audio_quirk[]) {
d3ff42fd
CL
707 {
708 .ifnum = 0,
709 .type = QUIRK_IGNORE_INTERFACE
710 },
711 {
712 .ifnum = 1,
713 .type = QUIRK_IGNORE_INTERFACE
714 },
715 {
716 .ifnum = 2,
717 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 718 .data = & (const struct snd_usb_midi_endpoint_info) {
d3ff42fd
CL
719 .out_cables = 0x0001,
720 .in_cables = 0x0001
721 }
722 },
723 {
724 .ifnum = -1
725 }
1da177e4
LT
726 }
727 }
728},
729{
d879f0cc 730 /* has ID 0x001e when not in "Advanced Driver" mode */
1da177e4 731 USB_DEVICE(0x0582, 0x001d),
86e07d34 732 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
733 .vendor_name = "Roland",
734 .product_name = "V-SYNTH",
735 .ifnum = 0,
736 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 737 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
738 .out_cables = 0x0001,
739 .in_cables = 0x0001
740 }
741 }
742},
743{
d879f0cc 744 /* has ID 0x0024 when not in "Advanced Driver" mode */
1da177e4 745 USB_DEVICE(0x0582, 0x0023),
86e07d34 746 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
747 .vendor_name = "EDIROL",
748 .product_name = "UM-550",
749 .ifnum = 0,
750 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 751 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
752 .out_cables = 0x003f,
753 .in_cables = 0x003f
754 }
755 }
756},
757{
758 /*
759 * This quirk is for the "Advanced Driver" mode. If off, the UA-20
760 * has ID 0x0026 and is standard compliant, but has only 16-bit PCM
761 * and no MIDI.
762 */
763 USB_DEVICE(0x0582, 0x0025),
86e07d34 764 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
765 .vendor_name = "EDIROL",
766 .product_name = "UA-20",
767 .ifnum = QUIRK_ANY_INTERFACE,
768 .type = QUIRK_COMPOSITE,
86e07d34 769 .data = (const struct snd_usb_audio_quirk[]) {
1f14a657
CL
770 {
771 .ifnum = 0,
772 .type = QUIRK_IGNORE_INTERFACE
773 },
1da177e4
LT
774 {
775 .ifnum = 1,
1f14a657
CL
776 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
777 .data = & (const struct audioformat) {
778 .format = SNDRV_PCM_FORMAT_S24_3LE,
779 .channels = 2,
780 .iface = 1,
781 .altsetting = 1,
782 .altset_idx = 1,
783 .attributes = 0,
784 .endpoint = 0x01,
785 .ep_attr = 0x01,
786 .rates = SNDRV_PCM_RATE_CONTINUOUS,
787 .rate_min = 44100,
788 .rate_max = 44100,
789 }
1da177e4
LT
790 },
791 {
792 .ifnum = 2,
1f14a657
CL
793 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
794 .data = & (const struct audioformat) {
795 .format = SNDRV_PCM_FORMAT_S24_3LE,
796 .channels = 2,
797 .iface = 2,
798 .altsetting = 1,
799 .altset_idx = 1,
800 .attributes = 0,
801 .endpoint = 0x82,
802 .ep_attr = 0x01,
803 .rates = SNDRV_PCM_RATE_CONTINUOUS,
804 .rate_min = 44100,
805 .rate_max = 44100,
806 }
1da177e4
LT
807 },
808 {
809 .ifnum = 3,
1f14a657
CL
810 .type = QUIRK_MIDI_FIXED_ENDPOINT,
811 .data = & (const struct snd_usb_midi_endpoint_info) {
812 .out_cables = 0x0001,
813 .in_cables = 0x0001
814 }
1da177e4
LT
815 },
816 {
817 .ifnum = -1
818 }
819 }
820 }
821},
822{
d879f0cc 823 /* has ID 0x0028 when not in "Advanced Driver" mode */
1da177e4 824 USB_DEVICE(0x0582, 0x0027),
86e07d34 825 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
826 .vendor_name = "EDIROL",
827 .product_name = "SD-20",
828 .ifnum = 0,
829 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 830 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
831 .out_cables = 0x0003,
832 .in_cables = 0x0007
833 }
834 }
835},
836{
d879f0cc 837 /* has ID 0x002a when not in "Advanced Driver" mode */
1da177e4 838 USB_DEVICE(0x0582, 0x0029),
86e07d34 839 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
840 .vendor_name = "EDIROL",
841 .product_name = "SD-80",
842 .ifnum = 0,
843 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 844 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
845 .out_cables = 0x000f,
846 .in_cables = 0x000f
847 }
848 }
849},
850{ /*
851 * This quirk is for the "Advanced" modes of the Edirol UA-700.
852 * If the sample format switch is not in an advanced setting, the
853 * UA-700 has ID 0x0582/0x002c and is standard compliant (no quirks),
854 * but offers only 16-bit PCM and no MIDI.
855 */
856 USB_DEVICE_VENDOR_SPEC(0x0582, 0x002b),
86e07d34 857 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
858 .vendor_name = "EDIROL",
859 .product_name = "UA-700",
860 .ifnum = QUIRK_ANY_INTERFACE,
861 .type = QUIRK_COMPOSITE,
86e07d34 862 .data = (const struct snd_usb_audio_quirk[]) {
1da177e4
LT
863 {
864 .ifnum = 1,
865 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
866 },
867 {
868 .ifnum = 2,
869 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
870 },
871 {
872 .ifnum = 3,
873 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
874 },
875 {
876 .ifnum = -1
877 }
878 }
879 }
880},
881{
d879f0cc 882 /* has ID 0x002e when not in "Advanced Driver" mode */
1da177e4 883 USB_DEVICE(0x0582, 0x002d),
86e07d34 884 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
885 .vendor_name = "Roland",
886 .product_name = "XV-2020",
887 .ifnum = 0,
888 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 889 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
890 .out_cables = 0x0001,
891 .in_cables = 0x0001
892 }
893 }
894},
895{
d879f0cc 896 /* has ID 0x0030 when not in "Advanced Driver" mode */
1da177e4 897 USB_DEVICE(0x0582, 0x002f),
86e07d34 898 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
899 .vendor_name = "Roland",
900 .product_name = "VariOS",
901 .ifnum = 0,
902 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 903 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
904 .out_cables = 0x0007,
905 .in_cables = 0x0007
906 }
907 }
908},
909{
d879f0cc 910 /* has ID 0x0034 when not in "Advanced Driver" mode */
1da177e4 911 USB_DEVICE(0x0582, 0x0033),
86e07d34 912 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
913 .vendor_name = "EDIROL",
914 .product_name = "PCR",
915 .ifnum = 0,
916 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 917 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
918 .out_cables = 0x0003,
919 .in_cables = 0x0007
920 }
921 }
922},
d879f0cc 923 /* TODO: add Roland M-1000 support */
1da177e4 924{
d879f0cc
CL
925 /*
926 * Has ID 0x0038 when not in "Advanced Driver" mode;
927 * later revisions use IDs 0x0054 and 0x00a2.
928 */
1da177e4 929 USB_DEVICE(0x0582, 0x0037),
86e07d34 930 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
931 .vendor_name = "Roland",
932 .product_name = "Digital Piano",
933 .ifnum = 0,
934 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 935 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
936 .out_cables = 0x0001,
937 .in_cables = 0x0001
938 }
939 }
940},
941{
5af4c833
CL
942 /*
943 * This quirk is for the "Advanced Driver" mode. If off, the GS-10
944 * has ID 0x003c and is standard compliant, but has only 16-bit PCM
945 * and no MIDI.
946 */
1da177e4 947 USB_DEVICE_VENDOR_SPEC(0x0582, 0x003b),
86e07d34 948 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
949 .vendor_name = "BOSS",
950 .product_name = "GS-10",
5af4c833
CL
951 .ifnum = QUIRK_ANY_INTERFACE,
952 .type = QUIRK_COMPOSITE,
86e07d34 953 .data = & (const struct snd_usb_audio_quirk[]) {
5af4c833
CL
954 {
955 .ifnum = 1,
956 .type = QUIRK_AUDIO_STANDARD_INTERFACE
957 },
958 {
959 .ifnum = 2,
960 .type = QUIRK_AUDIO_STANDARD_INTERFACE
961 },
962 {
963 .ifnum = 3,
964 .type = QUIRK_MIDI_STANDARD_INTERFACE
965 },
966 {
967 .ifnum = -1
968 }
1da177e4
LT
969 }
970 }
971},
972{
d879f0cc 973 /* has ID 0x0041 when not in "Advanced Driver" mode */
1da177e4 974 USB_DEVICE(0x0582, 0x0040),
86e07d34 975 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
976 .vendor_name = "Roland",
977 .product_name = "GI-20",
978 .ifnum = 0,
979 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 980 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
981 .out_cables = 0x0001,
982 .in_cables = 0x0001
983 }
984 }
985},
986{
d879f0cc 987 /* has ID 0x0043 when not in "Advanced Driver" mode */
1da177e4 988 USB_DEVICE(0x0582, 0x0042),
86e07d34 989 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
990 .vendor_name = "Roland",
991 .product_name = "RS-70",
992 .ifnum = 0,
993 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 994 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
995 .out_cables = 0x0001,
996 .in_cables = 0x0001
997 }
998 }
999},
1000{
1001 USB_DEVICE(0x0582, 0x0044),
86e07d34 1002 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1003 .vendor_name = "Roland",
1004 .product_name = "UA-1000",
1005 .ifnum = QUIRK_ANY_INTERFACE,
1006 .type = QUIRK_COMPOSITE,
86e07d34 1007 .data = (const struct snd_usb_audio_quirk[]) {
1da177e4
LT
1008 {
1009 .ifnum = 1,
1010 .type = QUIRK_AUDIO_EDIROL_UA1000
1011 },
1012 {
1013 .ifnum = 2,
1014 .type = QUIRK_AUDIO_EDIROL_UA1000
1015 },
1016 {
1017 .ifnum = 3,
1018 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 1019 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1020 .out_cables = 0x0003,
1021 .in_cables = 0x0003
1022 }
1023 },
1024 {
1025 .ifnum = -1
1026 }
1027 }
1028 }
1029},
358ce0cf
CL
1030{
1031 /* has ID 0x0049 when not in "Advanced Driver" mode */
1032 USB_DEVICE(0x0582, 0x0047),
1033 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1034 /* .vendor_name = "EDIROL", */
1035 /* .product_name = "UR-80", */
1036 .ifnum = QUIRK_ANY_INTERFACE,
1037 .type = QUIRK_COMPOSITE,
1038 .data = (const struct snd_usb_audio_quirk[]) {
1039 /* in the 96 kHz modes, only interface 1 is there */
1040 {
1041 .ifnum = 1,
1042 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1043 },
1044 {
1045 .ifnum = 2,
1046 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1047 },
1048 {
1049 .ifnum = -1
1050 }
1051 }
1052 }
1053},
1da177e4 1054{
d879f0cc 1055 /* has ID 0x004a when not in "Advanced Driver" mode */
1da177e4 1056 USB_DEVICE(0x0582, 0x0048),
86e07d34 1057 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
358ce0cf
CL
1058 /* .vendor_name = "EDIROL", */
1059 /* .product_name = "UR-80", */
1da177e4
LT
1060 .ifnum = 0,
1061 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 1062 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1063 .out_cables = 0x0003,
1064 .in_cables = 0x0007
1065 }
1066 }
1067},
d879f0cc 1068 /* TODO: add Edirol M-100FX support */
f38cc317
CL
1069{
1070 /* has ID 0x004e when not in "Advanced Driver" mode */
1071 USB_DEVICE(0x0582, 0x004c),
1072 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1073 .vendor_name = "EDIROL",
1074 .product_name = "PCR-A",
1075 .ifnum = QUIRK_ANY_INTERFACE,
1076 .type = QUIRK_COMPOSITE,
1077 .data = (const struct snd_usb_audio_quirk[]) {
1078 {
1079 .ifnum = 1,
1080 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1081 },
1082 {
1083 .ifnum = 2,
1084 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1085 },
1086 {
1087 .ifnum = -1
1088 }
1089 }
1090 }
1091},
1da177e4 1092{
d879f0cc 1093 /* has ID 0x004f when not in "Advanced Driver" mode */
1da177e4 1094 USB_DEVICE(0x0582, 0x004d),
86e07d34 1095 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1096 .vendor_name = "EDIROL",
1097 .product_name = "PCR-A",
1098 .ifnum = 0,
1099 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 1100 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1101 .out_cables = 0x0003,
1102 .in_cables = 0x0007
1103 }
1104 }
1105},
1106{
1107 /*
1108 * This quirk is for the "Advanced Driver" mode. If off, the UA-3FX
1109 * is standard compliant, but has only 16-bit PCM.
1110 */
1111 USB_DEVICE(0x0582, 0x0050),
86e07d34 1112 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1113 .vendor_name = "EDIROL",
1114 .product_name = "UA-3FX",
1115 .ifnum = QUIRK_ANY_INTERFACE,
1116 .type = QUIRK_COMPOSITE,
86e07d34 1117 .data = (const struct snd_usb_audio_quirk[]) {
1da177e4
LT
1118 {
1119 .ifnum = 1,
1120 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1121 },
1122 {
1123 .ifnum = 2,
1124 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1125 },
1126 {
1127 .ifnum = -1
1128 }
1129 }
1130 }
1131},
1132{
1133 USB_DEVICE(0x0582, 0x0052),
86e07d34 1134 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1135 .vendor_name = "EDIROL",
1136 .product_name = "UM-1SX",
1137 .ifnum = 0,
1138 .type = QUIRK_MIDI_STANDARD_INTERFACE
1139 }
1140},
f167684a
TI
1141{
1142 USB_DEVICE(0x0582, 0x0060),
1143 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1144 .vendor_name = "Roland",
1145 .product_name = "EXR Series",
1146 .ifnum = 0,
1147 .type = QUIRK_MIDI_STANDARD_INTERFACE
1148 }
1149},
1da177e4 1150{
d879f0cc 1151 /* has ID 0x0067 when not in "Advanced Driver" mode */
1da177e4 1152 USB_DEVICE(0x0582, 0x0065),
86e07d34 1153 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1154 .vendor_name = "EDIROL",
1155 .product_name = "PCR-1",
1156 .ifnum = 0,
1157 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 1158 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1159 .out_cables = 0x0001,
1160 .in_cables = 0x0003
1161 }
1162 }
1163},
1164{
d879f0cc 1165 /* has ID 0x006b when not in "Advanced Driver" mode */
1da177e4 1166 USB_DEVICE_VENDOR_SPEC(0x0582, 0x006a),
86e07d34 1167 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1168 .vendor_name = "Roland",
1169 .product_name = "SP-606",
1170 .ifnum = 3,
1171 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 1172 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1173 .out_cables = 0x0001,
1174 .in_cables = 0x0001
1175 }
1176 }
1177},
1178{
d879f0cc 1179 /* has ID 0x006e when not in "Advanced Driver" mode */
1da177e4 1180 USB_DEVICE(0x0582, 0x006d),
86e07d34 1181 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1182 .vendor_name = "Roland",
1183 .product_name = "FANTOM-X",
1184 .ifnum = 0,
1185 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 1186 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1187 .out_cables = 0x0001,
1188 .in_cables = 0x0001
1189 }
1190 }
1191},
1192{ /*
1193 * This quirk is for the "Advanced" modes of the Edirol UA-25.
1194 * If the switch is not in an advanced setting, the UA-25 has
1195 * ID 0x0582/0x0073 and is standard compliant (no quirks), but
1196 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1197 */
1198 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0074),
86e07d34 1199 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1200 .vendor_name = "EDIROL",
1201 .product_name = "UA-25",
1202 .ifnum = QUIRK_ANY_INTERFACE,
1203 .type = QUIRK_COMPOSITE,
86e07d34 1204 .data = (const struct snd_usb_audio_quirk[]) {
1da177e4
LT
1205 {
1206 .ifnum = 0,
1207 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
1208 },
1209 {
1210 .ifnum = 1,
1211 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
1212 },
1213 {
1214 .ifnum = 2,
1215 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
1216 },
1217 {
1218 .ifnum = -1
1219 }
1220 }
1221 }
1222},
1223{
d879f0cc 1224 /* has ID 0x0076 when not in "Advanced Driver" mode */
1da177e4 1225 USB_DEVICE(0x0582, 0x0075),
86e07d34 1226 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1227 .vendor_name = "BOSS",
1228 .product_name = "DR-880",
1229 .ifnum = 0,
1230 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 1231 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1232 .out_cables = 0x0001,
1233 .in_cables = 0x0001
1234 }
1235 }
1236},
5a2a68f5 1237{
d879f0cc 1238 /* has ID 0x007b when not in "Advanced Driver" mode */
5a2a68f5 1239 USB_DEVICE_VENDOR_SPEC(0x0582, 0x007a),
86e07d34 1240 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
5a2a68f5 1241 .vendor_name = "Roland",
d879f0cc 1242 /* "RD" or "RD-700SX"? */
5a2a68f5
CL
1243 .ifnum = 0,
1244 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 1245 .data = & (const struct snd_usb_midi_endpoint_info) {
5a2a68f5
CL
1246 .out_cables = 0x0003,
1247 .in_cables = 0x0003
1248 }
1249 }
1250},
d0b0fac1
BF
1251/* Roland UA-101 in High-Speed Mode only */
1252{
1253 USB_DEVICE(0x0582, 0x007d),
1254 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1255 .vendor_name = "Roland",
1256 .product_name = "UA-101",
1257 .ifnum = QUIRK_ANY_INTERFACE,
1258 .type = QUIRK_COMPOSITE,
1259 .data = (const struct snd_usb_audio_quirk[]) {
1260 {
1261 .ifnum = 0,
1262 .type = QUIRK_AUDIO_EDIROL_UA101
1263 },
1264 {
1265 .ifnum = 1,
1266 .type = QUIRK_AUDIO_EDIROL_UA101
1267 },
1268 {
1269 .ifnum = 2,
1270 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1271 .data = & (const struct snd_usb_midi_endpoint_info) {
1272 .out_cables = 0x0001,
1273 .in_cables = 0x0001
1274 }
1275 },
1276 {
1277 .ifnum = -1
1278 }
1279 }
1280 }
1281},
cdca881d
CL
1282{
1283 /* has ID 0x0081 when not in "Advanced Driver" mode */
1284 USB_DEVICE(0x0582, 0x0080),
1285 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1286 .vendor_name = "Roland",
1287 .product_name = "G-70",
1288 .ifnum = 0,
1289 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1290 .data = & (const struct snd_usb_midi_endpoint_info) {
05422575
CL
1291 .out_cables = 0x0001,
1292 .in_cables = 0x0001
cdca881d
CL
1293 }
1294 }
1295},
7c79b768
CL
1296 /* TODO: add Roland V-SYNTH XT support */
1297 /* TODO: add BOSS GT-PRO support */
415b09e4
CL
1298{
1299 /* has ID 0x008c when not in "Advanced Driver" mode */
1300 USB_DEVICE(0x0582, 0x008b),
1301 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1302 .vendor_name = "EDIROL",
1303 .product_name = "PC-50",
1304 .ifnum = 0,
1305 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1306 .data = & (const struct snd_usb_midi_endpoint_info) {
1307 .out_cables = 0x0001,
1308 .in_cables = 0x0001
1309 }
1310 }
1311},
7c79b768 1312 /* TODO: add Edirol PC-80 support */
9b0d39be
TI
1313{
1314 USB_DEVICE(0x0582, 0x0096),
1315 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1316 .vendor_name = "EDIROL",
1317 .product_name = "UA-1EX",
1318 .ifnum = QUIRK_ANY_INTERFACE,
1319 .type = QUIRK_COMPOSITE,
1320 .data = (const struct snd_usb_audio_quirk[]) {
1321 {
1322 .ifnum = 0,
1323 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1324 },
1325 {
1326 .ifnum = 1,
1327 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1328 },
1329 {
1330 .ifnum = -1
1331 }
1332 }
1333 }
1334},
7c79b768
CL
1335{
1336 USB_DEVICE(0x0582, 0x009a),
1337 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1338 .vendor_name = "EDIROL",
1339 .product_name = "UM-3EX",
1340 .ifnum = 0,
1341 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1342 .data = & (const struct snd_usb_midi_endpoint_info) {
1343 .out_cables = 0x000f,
1344 .in_cables = 0x000f
1345 }
1346 }
1347},
1348 /* TODO: add Edirol MD-P1 support */
25a47b6b
CL
1349{
1350 USB_DEVICE(0x582, 0x00a6),
1351 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1352 .vendor_name = "Roland",
1353 .product_name = "Juno-G",
1354 .ifnum = 0,
1355 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1356 .data = & (const struct snd_usb_midi_endpoint_info) {
1357 .out_cables = 0x0001,
1358 .in_cables = 0x0001
1359 }
1360 }
1361},
87823090
CB
1362{
1363 /* Roland SH-201 */
1364 USB_DEVICE(0x0582, 0x00ad),
1365 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1366 .vendor_name = "Roland",
1367 .product_name = "SH-201",
1368 .ifnum = QUIRK_ANY_INTERFACE,
1369 .type = QUIRK_COMPOSITE,
1370 .data = (const struct snd_usb_audio_quirk[]) {
1371 {
1372 .ifnum = 0,
1373 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1374 },
1375 {
1376 .ifnum = 1,
1377 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1378 },
1379 {
1380 .ifnum = 2,
1381 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1382 .data = & (const struct snd_usb_midi_endpoint_info) {
1383 .out_cables = 0x0001,
1384 .in_cables = 0x0001
1385 }
1386 },
1387 {
1388 .ifnum = -1
1389 }
1390 }
1391 }
1392},
62b12631
CM
1393{
1394 /* Roland SonicCell */
1395 USB_DEVICE(0x0582, 0x00c2),
1396 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1397 .vendor_name = "Roland",
1398 .product_name = "SonicCell",
1399 .ifnum = QUIRK_ANY_INTERFACE,
1400 .type = QUIRK_COMPOSITE,
1401 .data = (const struct snd_usb_audio_quirk[]) {
1402 {
1403 .ifnum = 0,
1404 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1405 },
1406 {
1407 .ifnum = 1,
1408 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1409 },
1410 {
1411 .ifnum = 2,
1412 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1413 .data = & (const struct snd_usb_midi_endpoint_info) {
1414 .out_cables = 0x0001,
1415 .in_cables = 0x0001
1416 }
1417 },
1418 {
1419 .ifnum = -1
1420 }
1421 }
1422 }
1423},
b38addb2
CL
1424{
1425 /* BOSS GT-10 */
1426 USB_DEVICE(0x0582, 0x00da),
1427 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1428 .ifnum = QUIRK_ANY_INTERFACE,
1429 .type = QUIRK_COMPOSITE,
1430 .data = (const struct snd_usb_audio_quirk[]) {
1431 {
1432 .ifnum = 0,
1433 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1434 },
1435 {
1436 .ifnum = 1,
1437 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1438 },
1439 {
1440 .ifnum = 2,
1441 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1442 .data = & (const struct snd_usb_midi_endpoint_info) {
1443 .out_cables = 0x0001,
1444 .in_cables = 0x0001
1445 }
1446 },
1447 {
1448 .ifnum = -1
1449 }
1450 }
1451 }
1452},
62b12631 1453
a25f175c
CL
1454/* Guillemot devices */
1455{
1456 /*
1457 * This is for the "Windows Edition" where the external MIDI ports are
1458 * the only MIDI ports; the control data is reported through HID
1459 * interfaces. The "Macintosh Edition" has ID 0xd002 and uses standard
1460 * compliant USB MIDI ports for external MIDI and controls.
1461 */
1462 USB_DEVICE_VENDOR_SPEC(0x06f8, 0xb000),
86e07d34 1463 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
a25f175c
CL
1464 .vendor_name = "Hercules",
1465 .product_name = "DJ Console (WE)",
1466 .ifnum = 4,
1467 .type = QUIRK_MIDI_FIXED_ENDPOINT,
86e07d34 1468 .data = & (const struct snd_usb_midi_endpoint_info) {
a25f175c
CL
1469 .out_cables = 0x0001,
1470 .in_cables = 0x0001
1471 }
1472 }
1473},
1474
1da177e4
LT
1475/* Midiman/M-Audio devices */
1476{
1477 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1002),
86e07d34 1478 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1479 .vendor_name = "M-Audio",
1480 .product_name = "MidiSport 2x2",
1481 .ifnum = QUIRK_ANY_INTERFACE,
1482 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1483 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1484 .out_cables = 0x0003,
1485 .in_cables = 0x0003
1486 }
1487 }
1488},
1489{
1490 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1011),
86e07d34 1491 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1492 .vendor_name = "M-Audio",
1493 .product_name = "MidiSport 1x1",
1494 .ifnum = QUIRK_ANY_INTERFACE,
1495 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1496 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1497 .out_cables = 0x0001,
1498 .in_cables = 0x0001
1499 }
1500 }
1501},
1502{
1503 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1015),
86e07d34 1504 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1505 .vendor_name = "M-Audio",
1506 .product_name = "Keystation",
1507 .ifnum = QUIRK_ANY_INTERFACE,
1508 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1509 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1510 .out_cables = 0x0001,
1511 .in_cables = 0x0001
1512 }
1513 }
1514},
1515{
1516 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1021),
86e07d34 1517 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1518 .vendor_name = "M-Audio",
1519 .product_name = "MidiSport 4x4",
1520 .ifnum = QUIRK_ANY_INTERFACE,
1521 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1522 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1523 .out_cables = 0x000f,
1524 .in_cables = 0x000f
1525 }
1526 }
1527},
1528{
1529 /*
1530 * For hardware revision 1.05; in the later revisions (1.10 and
1531 * 1.21), 0x1031 is the ID for the device without firmware.
1532 * Thanks to Olaf Giesbrecht <Olaf_Giesbrecht@yahoo.de>
1533 */
1534 USB_DEVICE_VER(0x0763, 0x1031, 0x0100, 0x0109),
86e07d34 1535 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1536 .vendor_name = "M-Audio",
1537 .product_name = "MidiSport 8x8",
1538 .ifnum = QUIRK_ANY_INTERFACE,
1539 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1540 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1541 .out_cables = 0x01ff,
1542 .in_cables = 0x01ff
1543 }
1544 }
1545},
1546{
1547 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1033),
86e07d34 1548 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1549 .vendor_name = "M-Audio",
1550 .product_name = "MidiSport 8x8",
1551 .ifnum = QUIRK_ANY_INTERFACE,
1552 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1553 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1554 .out_cables = 0x01ff,
1555 .in_cables = 0x01ff
1556 }
1557 }
1558},
1559{
1560 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1041),
86e07d34 1561 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1562 .vendor_name = "M-Audio",
1563 .product_name = "MidiSport 2x4",
1564 .ifnum = QUIRK_ANY_INTERFACE,
1565 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1566 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1567 .out_cables = 0x000f,
1568 .in_cables = 0x0003
1569 }
1570 }
1571},
1572{
1573 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2001),
86e07d34 1574 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1575 .vendor_name = "M-Audio",
1576 .product_name = "Quattro",
1577 .ifnum = QUIRK_ANY_INTERFACE,
1578 .type = QUIRK_COMPOSITE,
86e07d34 1579 .data = & (const struct snd_usb_audio_quirk[]) {
1da177e4
LT
1580 /*
1581 * Interfaces 0-2 are "Windows-compatible", 16-bit only,
1582 * and share endpoints with the other interfaces.
1583 * Ignore them. The other interfaces can do 24 bits,
1584 * but captured samples are big-endian (see usbaudio.c).
1585 */
1586 {
1587 .ifnum = 0,
1588 .type = QUIRK_IGNORE_INTERFACE
1589 },
1590 {
1591 .ifnum = 1,
1592 .type = QUIRK_IGNORE_INTERFACE
1593 },
1594 {
1595 .ifnum = 2,
1596 .type = QUIRK_IGNORE_INTERFACE
1597 },
1598 {
1599 .ifnum = 3,
1600 .type = QUIRK_IGNORE_INTERFACE
1601 },
1602 {
1603 .ifnum = 4,
1604 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1605 },
1606 {
1607 .ifnum = 5,
1608 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1609 },
1610 {
1611 .ifnum = 6,
1612 .type = QUIRK_IGNORE_INTERFACE
1613 },
1614 {
1615 .ifnum = 7,
1616 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1617 },
1618 {
1619 .ifnum = 8,
1620 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1621 },
1622 {
1623 .ifnum = 9,
1624 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1625 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1626 .out_cables = 0x0001,
1627 .in_cables = 0x0001
1628 }
1629 },
1630 {
1631 .ifnum = -1
1632 }
1633 }
1634 }
1635},
1636{
1637 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2003),
86e07d34 1638 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1639 .vendor_name = "M-Audio",
1640 .product_name = "AudioPhile",
1641 .ifnum = 6,
1642 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1643 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1644 .out_cables = 0x0001,
1645 .in_cables = 0x0001
1646 }
1647 }
1648},
1649{
1650 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2008),
86e07d34 1651 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1652 .vendor_name = "M-Audio",
1653 .product_name = "Ozone",
1654 .ifnum = 3,
1655 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1656 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1657 .out_cables = 0x0001,
1658 .in_cables = 0x0001
1659 }
1660 }
1661},
1662{
1663 USB_DEVICE_VENDOR_SPEC(0x0763, 0x200d),
86e07d34 1664 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1665 .vendor_name = "M-Audio",
1666 .product_name = "OmniStudio",
1667 .ifnum = QUIRK_ANY_INTERFACE,
1668 .type = QUIRK_COMPOSITE,
86e07d34 1669 .data = & (const struct snd_usb_audio_quirk[]) {
1da177e4
LT
1670 {
1671 .ifnum = 0,
1672 .type = QUIRK_IGNORE_INTERFACE
1673 },
1674 {
1675 .ifnum = 1,
1676 .type = QUIRK_IGNORE_INTERFACE
1677 },
1678 {
1679 .ifnum = 2,
1680 .type = QUIRK_IGNORE_INTERFACE
1681 },
1682 {
1683 .ifnum = 3,
1684 .type = QUIRK_IGNORE_INTERFACE
1685 },
1686 {
1687 .ifnum = 4,
1688 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1689 },
1690 {
1691 .ifnum = 5,
1692 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1693 },
1694 {
1695 .ifnum = 6,
1696 .type = QUIRK_IGNORE_INTERFACE
1697 },
1698 {
1699 .ifnum = 7,
1700 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1701 },
1702 {
1703 .ifnum = 8,
1704 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1705 },
1706 {
1707 .ifnum = 9,
1708 .type = QUIRK_MIDI_MIDIMAN,
86e07d34 1709 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1710 .out_cables = 0x0001,
1711 .in_cables = 0x0001
1712 }
1713 },
1714 {
1715 .ifnum = -1
1716 }
1717 }
1718 }
1719},
2ea547dc
CL
1720{
1721 USB_DEVICE(0x0763, 0x2019),
1722 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1723 /* .vendor_name = "M-Audio", */
1724 /* .product_name = "Ozone Academic", */
1725 .ifnum = QUIRK_ANY_INTERFACE,
1726 .type = QUIRK_COMPOSITE,
1727 .data = & (const struct snd_usb_audio_quirk[]) {
1728 {
1729 .ifnum = 0,
1730 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1731 },
1732 {
1733 .ifnum = 1,
1734 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1735 },
1736 {
1737 .ifnum = 2,
1738 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1739 },
1740 {
1741 .ifnum = 3,
1742 .type = QUIRK_MIDI_MIDIMAN,
1743 .data = & (const struct snd_usb_midi_endpoint_info) {
1744 .out_cables = 0x0001,
1745 .in_cables = 0x0001
1746 }
1747 },
1748 {
1749 .ifnum = -1
1750 }
1751 }
1752 }
1753},
1da177e4 1754
0243ef71 1755/* Casio devices */
9808dc96
CL
1756{
1757 USB_DEVICE(0x07cf, 0x6801),
1758 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1759 .vendor_name = "Casio",
1760 .product_name = "PL-40R",
1761 .ifnum = 0,
1762 .type = QUIRK_MIDI_YAMAHA
1763 }
1764},
0243ef71 1765{
318d27f8 1766 /* this ID is used by several devices without a product ID */
0243ef71
CL
1767 USB_DEVICE(0x07cf, 0x6802),
1768 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1769 .vendor_name = "Casio",
318d27f8 1770 .product_name = "Keyboard",
0243ef71
CL
1771 .ifnum = 0,
1772 .type = QUIRK_MIDI_YAMAHA
1773 }
1774},
1775
1da177e4
LT
1776/* Mark of the Unicorn devices */
1777{
1778 /* thanks to Robert A. Lerche <ral 'at' msbit.com> */
bbd4615c
CL
1779 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
1780 USB_DEVICE_ID_MATCH_PRODUCT |
1781 USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
1782 .idVendor = 0x07fd,
1783 .idProduct = 0x0001,
1784 .bDeviceSubClass = 2,
86e07d34 1785 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1786 .vendor_name = "MOTU",
1787 .product_name = "Fastlane",
1788 .ifnum = QUIRK_ANY_INTERFACE,
1789 .type = QUIRK_COMPOSITE,
86e07d34 1790 .data = & (const struct snd_usb_audio_quirk[]) {
1da177e4
LT
1791 {
1792 .ifnum = 0,
6155aff8 1793 .type = QUIRK_MIDI_RAW
1da177e4
LT
1794 },
1795 {
1796 .ifnum = 1,
1797 .type = QUIRK_IGNORE_INTERFACE
1798 },
1799 {
1800 .ifnum = -1
1801 }
1802 }
1803 }
1804},
1805
1da177e4
LT
1806/* Emagic devices */
1807{
1808 USB_DEVICE(0x086a, 0x0001),
86e07d34 1809 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1810 .vendor_name = "Emagic",
1811 /* .product_name = "Unitor8", */
1812 .ifnum = 2,
1813 .type = QUIRK_MIDI_EMAGIC,
86e07d34 1814 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1815 .out_cables = 0x80ff,
1816 .in_cables = 0x80ff
1817 }
1818 }
1819},
1820{
1821 USB_DEVICE(0x086a, 0x0002),
86e07d34 1822 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1823 .vendor_name = "Emagic",
1824 /* .product_name = "AMT8", */
1825 .ifnum = 2,
1826 .type = QUIRK_MIDI_EMAGIC,
86e07d34 1827 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1828 .out_cables = 0x80ff,
1829 .in_cables = 0x80ff
1830 }
1831 }
1832},
1833{
1834 USB_DEVICE(0x086a, 0x0003),
86e07d34 1835 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1836 .vendor_name = "Emagic",
1837 /* .product_name = "MT4", */
1838 .ifnum = 2,
1839 .type = QUIRK_MIDI_EMAGIC,
86e07d34 1840 .data = & (const struct snd_usb_midi_endpoint_info) {
1da177e4
LT
1841 .out_cables = 0x800f,
1842 .in_cables = 0x8003
1843 }
1844 }
1845},
1846
31ab9523
CL
1847/* TerraTec devices */
1848{
1849 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0012),
86e07d34 1850 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
31ab9523
CL
1851 .vendor_name = "TerraTec",
1852 .product_name = "PHASE 26",
1853 .ifnum = 3,
1854 .type = QUIRK_MIDI_STANDARD_INTERFACE
1855 }
1856},
1da177e4
LT
1857{
1858 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0013),
86e07d34 1859 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
bc56eff1
CL
1860 .vendor_name = "TerraTec",
1861 .product_name = "PHASE 26",
1862 .ifnum = 3,
1863 .type = QUIRK_MIDI_STANDARD_INTERFACE
1864 }
1865},
1866{
1867 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0014),
1868 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
31ab9523 1869 .vendor_name = "TerraTec",
1da177e4
LT
1870 .product_name = "PHASE 26",
1871 .ifnum = 3,
1872 .type = QUIRK_MIDI_STANDARD_INTERFACE
1873 }
1874},
b2b8229d
CL
1875{
1876 USB_DEVICE(0x0ccd, 0x0035),
1877 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1878 .vendor_name = "Miditech",
1879 .product_name = "Play'n Roll",
1880 .ifnum = 0,
1881 .type = QUIRK_MIDI_CME
1882 }
1883},
1da177e4 1884
0f28ecd3
MH
1885/* Stanton/N2IT Final Scratch v1 device ('Scratchamp') */
1886{
1887 USB_DEVICE(0x103d, 0x0100),
1888 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1889 .vendor_name = "Stanton",
1890 .product_name = "ScratchAmp",
1891 .ifnum = QUIRK_NO_INTERFACE
1892 }
1893},
1894{
1895 USB_DEVICE(0x103d, 0x0101),
1896 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1897 .vendor_name = "Stanton",
1898 .product_name = "ScratchAmp",
1899 .ifnum = QUIRK_NO_INTERFACE
1900 }
1901},
1902
1da177e4
LT
1903/* Novation EMS devices */
1904{
1905 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0001),
86e07d34 1906 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1907 .vendor_name = "Novation",
1908 .product_name = "ReMOTE Audio/XStation",
1909 .ifnum = 4,
1910 .type = QUIRK_MIDI_NOVATION
1911 }
1912},
1913{
1914 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0002),
86e07d34 1915 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1916 .vendor_name = "Novation",
1917 .product_name = "Speedio",
1918 .ifnum = 3,
1919 .type = QUIRK_MIDI_NOVATION
1920 }
1921},
1922{
1923 USB_DEVICE_VENDOR_SPEC(0x1235, 0x4661),
86e07d34 1924 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1925 .vendor_name = "Novation",
1926 .product_name = "ReMOTE25",
1927 .ifnum = 0,
1928 .type = QUIRK_MIDI_NOVATION
1929 }
1930},
1931
3a7788b7 1932/* */
15944806 1933{
3a7788b7 1934 /* aka. Serato Scratch Live DJ Box */
15944806 1935 USB_DEVICE(0x13e5, 0x0001),
3a7788b7
MH
1936 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1937 .vendor_name = "Rane",
1938 .product_name = "SL-1",
1939 .ifnum = QUIRK_NO_INTERFACE
15944806
CL
1940 }
1941},
1942
cc7a59bd 1943/* Miditech devices */
f38275fe
CL
1944{
1945 USB_DEVICE(0x4752, 0x0011),
86e07d34 1946 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
f38275fe
CL
1947 .vendor_name = "Miditech",
1948 .product_name = "Midistart-2",
1949 .ifnum = 0,
cc7a59bd 1950 .type = QUIRK_MIDI_CME
f38275fe
CL
1951 }
1952},
cc7a59bd
CL
1953
1954/* Central Music devices */
f38275fe 1955{
cc7a59bd 1956 /* this ID used by both Miditech MidiStudio-2 and CME UF-x */
f38275fe 1957 USB_DEVICE(0x7104, 0x2202),
86e07d34 1958 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
f38275fe 1959 .ifnum = 0,
cc7a59bd 1960 .type = QUIRK_MIDI_CME
f38275fe
CL
1961 }
1962},
1963
1da177e4
LT
1964{
1965 /*
1966 * Some USB MIDI devices don't have an audio control interface,
1967 * so we have to grab MIDI streaming interfaces here.
1968 */
1969 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS |
1970 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
1971 .bInterfaceClass = USB_CLASS_AUDIO,
1972 .bInterfaceSubClass = USB_SUBCLASS_MIDI_STREAMING,
86e07d34 1973 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1da177e4
LT
1974 .ifnum = QUIRK_ANY_INTERFACE,
1975 .type = QUIRK_MIDI_STANDARD_INTERFACE
1976 }
1977},
1978
1979#undef USB_DEVICE_VENDOR_SPEC
This page took 0.454076 seconds and 5 git commands to generate.