blob: 73d2ba47cc3192586e1051c54c2a3d5eff6acdd7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA USB Audio Driver
3 *
4 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>,
5 * Clemens Ladisch <clemens@ladisch.de>
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23/*
24 * The contents of this file are part of the driver's id_table.
25 *
26 * In a perfect world, this file would be empty.
27 */
28
29/*
30 * Use this for devices where other interfaces are standard compliant,
31 * to prevent the quirk being applied to those interfaces. (To work with
32 * hotplugging, bDeviceClass must be set to USB_CLASS_PER_INTERFACE.)
33 */
34#define USB_DEVICE_VENDOR_SPEC(vend, prod) \
35 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | \
36 USB_DEVICE_ID_MATCH_PRODUCT | \
37 USB_DEVICE_ID_MATCH_INT_CLASS, \
38 .idVendor = vend, \
39 .idProduct = prod, \
40 .bInterfaceClass = USB_CLASS_VENDOR_SPEC
41
Kristian Amlie1ef0e0a2011-08-26 13:19:49 +020042/* FTDI devices */
43{
44 USB_DEVICE(0x0403, 0xb8d8),
45 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
46 /* .vendor_name = "STARR LABS", */
47 /* .product_name = "Starr Labs MIDI USB device", */
48 .ifnum = 0,
49 .type = QUIRK_MIDI_FTDI
50 }
51},
52
Alexander Schremmer8f7f3ab12013-01-03 12:59:07 +010053{
54 /* Creative BT-D1 */
55 USB_DEVICE(0x041e, 0x0005),
56 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
57 .ifnum = 1,
58 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
59 .data = &(const struct audioformat) {
60 .formats = SNDRV_PCM_FMTBIT_S16_LE,
61 .channels = 2,
62 .iface = 1,
63 .altsetting = 1,
64 .altset_idx = 1,
65 .endpoint = 0x03,
66 .ep_attr = USB_ENDPOINT_XFER_ISOC,
67 .attributes = 0,
68 .rates = SNDRV_PCM_RATE_CONTINUOUS,
69 .rate_min = 48000,
70 .rate_max = 48000,
71 }
72 }
73},
74
Clemens Ladisch25a47b62008-02-25 11:04:19 +010075/* Creative/E-Mu devices */
76{
77 USB_DEVICE(0x041e, 0x3010),
78 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
79 .vendor_name = "Creative Labs",
80 .product_name = "Sound Blaster MP3+",
81 .ifnum = QUIRK_NO_INTERFACE
82 }
83},
Daniel Mack358b7df2014-01-14 14:37:56 +010084/* Creative/Toshiba Multimedia Center SB-0500 */
85{
86 USB_DEVICE(0x041e, 0x3048),
87 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
88 .vendor_name = "Toshiba",
89 .product_name = "SB-0500",
90 .ifnum = QUIRK_NO_INTERFACE
91 }
92},
Clemens Ladisch25a47b62008-02-25 11:04:19 +010093{
94 /* E-Mu 0202 USB */
95 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
96 .idVendor = 0x041e,
97 .idProduct = 0x3f02,
98 .bInterfaceClass = USB_CLASS_AUDIO,
99},
100{
101 /* E-Mu 0404 USB */
102 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
103 .idVendor = 0x041e,
104 .idProduct = 0x3f04,
105 .bInterfaceClass = USB_CLASS_AUDIO,
106},
Eran Tromer97c889a2008-09-26 01:07:03 -0400107{
108 /* E-Mu Tracker Pre */
109 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
110 .idVendor = 0x041e,
111 .idProduct = 0x3f0a,
112 .bInterfaceClass = USB_CLASS_AUDIO,
113},
Joseph Teichman1cdfa9f2011-02-08 01:22:36 -0500114{
115 /* E-Mu 0204 USB */
116 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
117 .idVendor = 0x041e,
118 .idProduct = 0x3f19,
119 .bInterfaceClass = USB_CLASS_AUDIO,
120},
Clemens Ladisch25a47b62008-02-25 11:04:19 +0100121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/*
Eldad Zackdf68f102012-12-15 05:30:33 +0100123 * HP Wireless Audio
124 * When not ignored, causes instability issues for some users, forcing them to
125 * blacklist the entire module.
126 */
127{
128 USB_DEVICE(0x0424, 0xb832),
129 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
130 .vendor_name = "Standard Microsystems Corp.",
131 .product_name = "HP Wireless Audio",
132 .ifnum = QUIRK_ANY_INTERFACE,
133 .type = QUIRK_COMPOSITE,
134 .data = (const struct snd_usb_audio_quirk[]) {
135 /* Mixer */
136 {
137 .ifnum = 0,
138 .type = QUIRK_IGNORE_INTERFACE,
139 },
140 /* Playback */
141 {
142 .ifnum = 1,
143 .type = QUIRK_IGNORE_INTERFACE,
144 },
145 /* Capture */
146 {
147 .ifnum = 2,
148 .type = QUIRK_IGNORE_INTERFACE,
149 },
150 /* HID Device, .ifnum = 3 */
151 {
152 .ifnum = -1,
153 }
154 }
155 }
156},
157
158/*
Daniel Drakea9121452007-05-07 09:27:05 +0200159 * Logitech QuickCam: bDeviceClass is vendor-specific, so generic interface
160 * class matches do not take effect without an explicit ID match.
161 */
162{
163 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
164 USB_DEVICE_ID_MATCH_INT_CLASS |
165 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
166 .idVendor = 0x046d,
Daniel Draked4170452007-05-10 08:52:19 +0200167 .idProduct = 0x0850,
168 .bInterfaceClass = USB_CLASS_AUDIO,
Daniel Mackde48c7b2010-02-22 23:49:13 +0100169 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
Daniel Draked4170452007-05-10 08:52:19 +0200170},
171{
172 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
173 USB_DEVICE_ID_MATCH_INT_CLASS |
174 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
175 .idVendor = 0x046d,
George Shapovalovc34532d2007-07-09 10:42:35 +0200176 .idProduct = 0x08ae,
177 .bInterfaceClass = USB_CLASS_AUDIO,
Daniel Mackde48c7b2010-02-22 23:49:13 +0100178 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
George Shapovalovc34532d2007-07-09 10:42:35 +0200179},
180{
181 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
182 USB_DEVICE_ID_MATCH_INT_CLASS |
183 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
184 .idVendor = 0x046d,
Ritesh Raj Sarrafcfc24ec2007-07-10 13:03:57 +0200185 .idProduct = 0x08c6,
186 .bInterfaceClass = USB_CLASS_AUDIO,
Daniel Mackde48c7b2010-02-22 23:49:13 +0100187 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
Ritesh Raj Sarrafcfc24ec2007-07-10 13:03:57 +0200188},
189{
190 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
191 USB_DEVICE_ID_MATCH_INT_CLASS |
192 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
193 .idVendor = 0x046d,
Daniel Drakea9121452007-05-07 09:27:05 +0200194 .idProduct = 0x08f0,
195 .bInterfaceClass = USB_CLASS_AUDIO,
Daniel Mackde48c7b2010-02-22 23:49:13 +0100196 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
Daniel Drakea9121452007-05-07 09:27:05 +0200197},
198{
199 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
200 USB_DEVICE_ID_MATCH_INT_CLASS |
201 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
202 .idVendor = 0x046d,
Dawid Wrobel31127f22007-10-22 11:57:17 +0200203 .idProduct = 0x08f5,
204 .bInterfaceClass = USB_CLASS_AUDIO,
Daniel Mackde48c7b2010-02-22 23:49:13 +0100205 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
Dawid Wrobel31127f22007-10-22 11:57:17 +0200206},
207{
208 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
209 USB_DEVICE_ID_MATCH_INT_CLASS |
210 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
211 .idVendor = 0x046d,
Daniel Drakea9121452007-05-07 09:27:05 +0200212 .idProduct = 0x08f6,
213 .bInterfaceClass = USB_CLASS_AUDIO,
Daniel Mackde48c7b2010-02-22 23:49:13 +0100214 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL
Daniel Drakea9121452007-05-07 09:27:05 +0200215},
Signed-off-by: Peter Stokes5c6c9e62009-01-14 09:47:57 +0100216{
Takashi Iwai8eafc0a2013-06-04 16:02:54 +0200217 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
218 USB_DEVICE_ID_MATCH_INT_CLASS |
219 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
220 .idVendor = 0x046d,
221 .idProduct = 0x0990,
222 .bInterfaceClass = USB_CLASS_AUDIO,
223 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
Signed-off-by: Peter Stokes5c6c9e62009-01-14 09:47:57 +0100224 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
225 .vendor_name = "Logitech, Inc.",
226 .product_name = "QuickCam Pro 9000",
227 .ifnum = QUIRK_NO_INTERFACE
228 }
229},
Clemens Ladisch25a47b62008-02-25 11:04:19 +0100230
James Courtier-Dutton1e741902007-10-08 18:49:43 +0100231/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * Yamaha devices
233 */
234
235#define YAMAHA_DEVICE(id, name) { \
236 USB_DEVICE(0x0499, id), \
Takashi Iwai86e07d32005-11-17 15:08:02 +0100237 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 .vendor_name = "Yamaha", \
239 .product_name = name, \
240 .ifnum = QUIRK_ANY_INTERFACE, \
241 .type = QUIRK_MIDI_YAMAHA \
242 } \
243}
244#define YAMAHA_INTERFACE(id, intf, name) { \
245 USB_DEVICE_VENDOR_SPEC(0x0499, id), \
Takashi Iwai86e07d32005-11-17 15:08:02 +0100246 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 .vendor_name = "Yamaha", \
248 .product_name = name, \
249 .ifnum = intf, \
250 .type = QUIRK_MIDI_YAMAHA \
251 } \
252}
253YAMAHA_DEVICE(0x1000, "UX256"),
254YAMAHA_DEVICE(0x1001, "MU1000"),
255YAMAHA_DEVICE(0x1002, "MU2000"),
256YAMAHA_DEVICE(0x1003, "MU500"),
257YAMAHA_INTERFACE(0x1004, 3, "UW500"),
258YAMAHA_DEVICE(0x1005, "MOTIF6"),
259YAMAHA_DEVICE(0x1006, "MOTIF7"),
260YAMAHA_DEVICE(0x1007, "MOTIF8"),
261YAMAHA_DEVICE(0x1008, "UX96"),
262YAMAHA_DEVICE(0x1009, "UX16"),
263YAMAHA_INTERFACE(0x100a, 3, "EOS BX"),
264YAMAHA_DEVICE(0x100c, "UC-MX"),
265YAMAHA_DEVICE(0x100d, "UC-KX"),
266YAMAHA_DEVICE(0x100e, "S08"),
267YAMAHA_DEVICE(0x100f, "CLP-150"),
268YAMAHA_DEVICE(0x1010, "CLP-170"),
269YAMAHA_DEVICE(0x1011, "P-250"),
270YAMAHA_DEVICE(0x1012, "TYROS"),
271YAMAHA_DEVICE(0x1013, "PF-500"),
272YAMAHA_DEVICE(0x1014, "S90"),
273YAMAHA_DEVICE(0x1015, "MOTIF-R"),
Clemens Ladisch4ccb4a42006-03-15 12:24:19 +0100274YAMAHA_DEVICE(0x1016, "MDP-5"),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275YAMAHA_DEVICE(0x1017, "CVP-204"),
276YAMAHA_DEVICE(0x1018, "CVP-206"),
277YAMAHA_DEVICE(0x1019, "CVP-208"),
278YAMAHA_DEVICE(0x101a, "CVP-210"),
279YAMAHA_DEVICE(0x101b, "PSR-1100"),
280YAMAHA_DEVICE(0x101c, "PSR-2100"),
281YAMAHA_DEVICE(0x101d, "CLP-175"),
282YAMAHA_DEVICE(0x101e, "PSR-K1"),
Clemens Ladisch4ccb4a42006-03-15 12:24:19 +0100283YAMAHA_DEVICE(0x101f, "EZ-J24"),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284YAMAHA_DEVICE(0x1020, "EZ-250i"),
285YAMAHA_DEVICE(0x1021, "MOTIF ES 6"),
286YAMAHA_DEVICE(0x1022, "MOTIF ES 7"),
287YAMAHA_DEVICE(0x1023, "MOTIF ES 8"),
288YAMAHA_DEVICE(0x1024, "CVP-301"),
289YAMAHA_DEVICE(0x1025, "CVP-303"),
290YAMAHA_DEVICE(0x1026, "CVP-305"),
291YAMAHA_DEVICE(0x1027, "CVP-307"),
292YAMAHA_DEVICE(0x1028, "CVP-309"),
293YAMAHA_DEVICE(0x1029, "CVP-309GP"),
294YAMAHA_DEVICE(0x102a, "PSR-1500"),
295YAMAHA_DEVICE(0x102b, "PSR-3000"),
296YAMAHA_DEVICE(0x102e, "ELS-01/01C"),
297YAMAHA_DEVICE(0x1030, "PSR-295/293"),
298YAMAHA_DEVICE(0x1031, "DGX-205/203"),
299YAMAHA_DEVICE(0x1032, "DGX-305"),
300YAMAHA_DEVICE(0x1033, "DGX-505"),
301YAMAHA_DEVICE(0x1034, NULL),
302YAMAHA_DEVICE(0x1035, NULL),
303YAMAHA_DEVICE(0x1036, NULL),
304YAMAHA_DEVICE(0x1037, NULL),
305YAMAHA_DEVICE(0x1038, NULL),
306YAMAHA_DEVICE(0x1039, NULL),
307YAMAHA_DEVICE(0x103a, NULL),
308YAMAHA_DEVICE(0x103b, NULL),
309YAMAHA_DEVICE(0x103c, NULL),
Clemens Ladisch0ac2ac02005-07-01 16:19:39 +0200310YAMAHA_DEVICE(0x103d, NULL),
Clemens Ladischf542fda2005-09-20 09:06:36 +0200311YAMAHA_DEVICE(0x103e, NULL),
312YAMAHA_DEVICE(0x103f, NULL),
313YAMAHA_DEVICE(0x1040, NULL),
314YAMAHA_DEVICE(0x1041, NULL),
Clemens Ladischf1265392006-07-21 10:46:18 +0200315YAMAHA_DEVICE(0x1042, NULL),
316YAMAHA_DEVICE(0x1043, NULL),
317YAMAHA_DEVICE(0x1044, NULL),
318YAMAHA_DEVICE(0x1045, NULL),
Clemens Ladischc85ceac2008-07-10 11:01:06 +0200319YAMAHA_INTERFACE(0x104e, 0, NULL),
Clemens Ladisch83a1a392008-07-10 11:05:42 +0200320YAMAHA_DEVICE(0x104f, NULL),
321YAMAHA_DEVICE(0x1050, NULL),
322YAMAHA_DEVICE(0x1051, NULL),
323YAMAHA_DEVICE(0x1052, NULL),
Clemens Ladisch422fdc32010-10-04 13:09:12 +0200324YAMAHA_INTERFACE(0x1053, 0, NULL),
325YAMAHA_INTERFACE(0x1054, 0, NULL),
326YAMAHA_DEVICE(0x1055, NULL),
327YAMAHA_DEVICE(0x1056, NULL),
328YAMAHA_DEVICE(0x1057, NULL),
329YAMAHA_DEVICE(0x1058, NULL),
330YAMAHA_DEVICE(0x1059, NULL),
331YAMAHA_DEVICE(0x105a, NULL),
332YAMAHA_DEVICE(0x105b, NULL),
333YAMAHA_DEVICE(0x105c, NULL),
334YAMAHA_DEVICE(0x105d, NULL),
Clemens Ladisch8c3f5d82011-12-19 23:09:15 +0100335{
336 USB_DEVICE(0x0499, 0x1503),
337 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
338 /* .vendor_name = "Yamaha", */
339 /* .product_name = "MOX6/MOX8", */
340 .ifnum = QUIRK_ANY_INTERFACE,
341 .type = QUIRK_COMPOSITE,
342 .data = (const struct snd_usb_audio_quirk[]) {
343 {
344 .ifnum = 1,
345 .type = QUIRK_AUDIO_STANDARD_INTERFACE
346 },
347 {
348 .ifnum = 2,
349 .type = QUIRK_AUDIO_STANDARD_INTERFACE
350 },
351 {
352 .ifnum = 3,
353 .type = QUIRK_MIDI_YAMAHA
354 },
355 {
356 .ifnum = -1
357 }
358 }
359 }
360},
Trulan Martinae3f0c22013-04-24 21:19:19 -0400361{
362 USB_DEVICE(0x0499, 0x1507),
363 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
364 /* .vendor_name = "Yamaha", */
365 /* .product_name = "THR10", */
366 .ifnum = QUIRK_ANY_INTERFACE,
367 .type = QUIRK_COMPOSITE,
368 .data = (const struct snd_usb_audio_quirk[]) {
369 {
370 .ifnum = 1,
371 .type = QUIRK_AUDIO_STANDARD_INTERFACE
372 },
373 {
374 .ifnum = 2,
375 .type = QUIRK_AUDIO_STANDARD_INTERFACE
376 },
377 {
378 .ifnum = 3,
379 .type = QUIRK_MIDI_YAMAHA
380 },
381 {
382 .ifnum = -1
383 }
384 }
385 }
386},
Trulan Martin1b153622013-04-24 21:19:20 -0400387{
Vlad Catoif0b127f2014-10-18 17:45:41 -0500388 USB_DEVICE(0x0499, 0x1509),
389 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
390 /* .vendor_name = "Yamaha", */
391 /* .product_name = "Steinberg UR22", */
392 .ifnum = QUIRK_ANY_INTERFACE,
393 .type = QUIRK_COMPOSITE,
394 .data = (const struct snd_usb_audio_quirk[]) {
395 {
396 .ifnum = 1,
397 .type = QUIRK_AUDIO_STANDARD_INTERFACE
398 },
399 {
400 .ifnum = 2,
401 .type = QUIRK_AUDIO_STANDARD_INTERFACE
402 },
403 {
404 .ifnum = 3,
405 .type = QUIRK_MIDI_YAMAHA
406 },
407 {
408 .ifnum = 4,
409 .type = QUIRK_IGNORE_INTERFACE
410 },
411 {
412 .ifnum = -1
413 }
414 }
415 }
416},
417{
Trulan Martin1b153622013-04-24 21:19:20 -0400418 USB_DEVICE(0x0499, 0x150a),
419 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
420 /* .vendor_name = "Yamaha", */
421 /* .product_name = "THR5A", */
422 .ifnum = QUIRK_ANY_INTERFACE,
423 .type = QUIRK_COMPOSITE,
424 .data = (const struct snd_usb_audio_quirk[]) {
425 {
426 .ifnum = 1,
427 .type = QUIRK_AUDIO_STANDARD_INTERFACE
428 },
429 {
430 .ifnum = 2,
431 .type = QUIRK_AUDIO_STANDARD_INTERFACE
432 },
433 {
434 .ifnum = 3,
435 .type = QUIRK_MIDI_YAMAHA
436 },
437 {
438 .ifnum = -1
439 }
440 }
441 }
442},
Trulan Martin03e02212013-04-24 21:19:21 -0400443{
444 USB_DEVICE(0x0499, 0x150c),
445 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
446 /* .vendor_name = "Yamaha", */
447 /* .product_name = "THR10C", */
448 .ifnum = QUIRK_ANY_INTERFACE,
449 .type = QUIRK_COMPOSITE,
450 .data = (const struct snd_usb_audio_quirk[]) {
451 {
452 .ifnum = 1,
453 .type = QUIRK_AUDIO_STANDARD_INTERFACE
454 },
455 {
456 .ifnum = 2,
457 .type = QUIRK_AUDIO_STANDARD_INTERFACE
458 },
459 {
460 .ifnum = 3,
461 .type = QUIRK_MIDI_YAMAHA
462 },
463 {
464 .ifnum = -1
465 }
466 }
467 }
468},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469YAMAHA_DEVICE(0x2000, "DGP-7"),
470YAMAHA_DEVICE(0x2001, "DGP-5"),
471YAMAHA_DEVICE(0x2002, NULL),
Clemens Ladisch422fdc32010-10-04 13:09:12 +0200472YAMAHA_DEVICE(0x2003, NULL),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473YAMAHA_DEVICE(0x5000, "CS1D"),
474YAMAHA_DEVICE(0x5001, "DSP1D"),
475YAMAHA_DEVICE(0x5002, "DME32"),
476YAMAHA_DEVICE(0x5003, "DM2000"),
477YAMAHA_DEVICE(0x5004, "02R96"),
478YAMAHA_DEVICE(0x5005, "ACU16-C"),
479YAMAHA_DEVICE(0x5006, "NHB32-C"),
480YAMAHA_DEVICE(0x5007, "DM1000"),
481YAMAHA_DEVICE(0x5008, "01V96"),
482YAMAHA_DEVICE(0x5009, "SPX2000"),
483YAMAHA_DEVICE(0x500a, "PM5D"),
484YAMAHA_DEVICE(0x500b, "DME64N"),
485YAMAHA_DEVICE(0x500c, "DME24N"),
486YAMAHA_DEVICE(0x500d, NULL),
487YAMAHA_DEVICE(0x500e, NULL),
Clemens Ladischf1265392006-07-21 10:46:18 +0200488YAMAHA_DEVICE(0x500f, NULL),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489YAMAHA_DEVICE(0x7000, "DTX"),
490YAMAHA_DEVICE(0x7010, "UB99"),
491#undef YAMAHA_DEVICE
492#undef YAMAHA_INTERFACE
Clemens Ladischaafe77c2013-03-31 23:43:12 +0200493/* this catches most recent vendor-specific Yamaha devices */
494{
495 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
496 USB_DEVICE_ID_MATCH_INT_CLASS,
497 .idVendor = 0x0499,
498 .bInterfaceClass = USB_CLASS_VENDOR_SPEC,
499 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
500 .ifnum = QUIRK_ANY_INTERFACE,
501 .type = QUIRK_AUTODETECT
502 }
503},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505/*
506 * Roland/RolandED/Edirol/BOSS devices
507 */
508{
509 USB_DEVICE(0x0582, 0x0000),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100510 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 .vendor_name = "Roland",
512 .product_name = "UA-100",
513 .ifnum = QUIRK_ANY_INTERFACE,
514 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100515 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 {
517 .ifnum = 0,
518 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
519 .data = & (const struct audioformat) {
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100520 .formats = SNDRV_PCM_FMTBIT_S16_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 .channels = 4,
522 .iface = 0,
523 .altsetting = 1,
524 .altset_idx = 1,
525 .attributes = 0,
526 .endpoint = 0x01,
527 .ep_attr = 0x09,
528 .rates = SNDRV_PCM_RATE_CONTINUOUS,
529 .rate_min = 44100,
530 .rate_max = 44100,
531 }
532 },
533 {
534 .ifnum = 1,
535 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
536 .data = & (const struct audioformat) {
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100537 .formats = SNDRV_PCM_FMTBIT_S16_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 .channels = 2,
539 .iface = 1,
540 .altsetting = 1,
541 .altset_idx = 1,
Daniel Mackde48c7b2010-02-22 23:49:13 +0100542 .attributes = UAC_EP_CS_ATTR_FILL_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 .endpoint = 0x81,
544 .ep_attr = 0x05,
545 .rates = SNDRV_PCM_RATE_CONTINUOUS,
546 .rate_min = 44100,
547 .rate_max = 44100,
548 }
549 },
550 {
551 .ifnum = 2,
552 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100553 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 .out_cables = 0x0007,
555 .in_cables = 0x0007
556 }
557 },
558 {
559 .ifnum = -1
560 }
561 }
562 }
563},
564{
565 USB_DEVICE(0x0582, 0x0002),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100566 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 .vendor_name = "EDIROL",
568 .product_name = "UM-4",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200569 .ifnum = QUIRK_ANY_INTERFACE,
570 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100571 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200572 {
573 .ifnum = 0,
574 .type = QUIRK_IGNORE_INTERFACE
575 },
576 {
577 .ifnum = 1,
578 .type = QUIRK_IGNORE_INTERFACE
579 },
580 {
581 .ifnum = 2,
582 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100583 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200584 .out_cables = 0x000f,
585 .in_cables = 0x000f
586 }
587 },
588 {
589 .ifnum = -1
590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592 }
593},
594{
595 USB_DEVICE(0x0582, 0x0003),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100596 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 .vendor_name = "Roland",
598 .product_name = "SC-8850",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200599 .ifnum = QUIRK_ANY_INTERFACE,
600 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100601 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200602 {
603 .ifnum = 0,
604 .type = QUIRK_IGNORE_INTERFACE
605 },
606 {
607 .ifnum = 1,
608 .type = QUIRK_IGNORE_INTERFACE
609 },
610 {
611 .ifnum = 2,
612 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100613 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200614 .out_cables = 0x003f,
615 .in_cables = 0x003f
616 }
617 },
618 {
619 .ifnum = -1
620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
622 }
623},
624{
625 USB_DEVICE(0x0582, 0x0004),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100626 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 .vendor_name = "Roland",
628 .product_name = "U-8",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200629 .ifnum = QUIRK_ANY_INTERFACE,
630 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100631 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200632 {
633 .ifnum = 0,
634 .type = QUIRK_IGNORE_INTERFACE
635 },
636 {
637 .ifnum = 1,
638 .type = QUIRK_IGNORE_INTERFACE
639 },
640 {
641 .ifnum = 2,
642 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100643 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200644 .out_cables = 0x0005,
645 .in_cables = 0x0005
646 }
647 },
648 {
649 .ifnum = -1
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652 }
653},
654{
Clemens Ladisch119c4ff2006-01-19 08:25:19 +0100655 /* Has ID 0x0099 when not in "Advanced Driver" mode.
656 * The UM-2EX has only one input, but we cannot detect this. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 USB_DEVICE(0x0582, 0x0005),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100658 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 .vendor_name = "EDIROL",
660 .product_name = "UM-2",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200661 .ifnum = QUIRK_ANY_INTERFACE,
662 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100663 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200664 {
665 .ifnum = 0,
666 .type = QUIRK_IGNORE_INTERFACE
667 },
668 {
669 .ifnum = 1,
670 .type = QUIRK_IGNORE_INTERFACE
671 },
672 {
673 .ifnum = 2,
674 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100675 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200676 .out_cables = 0x0003,
677 .in_cables = 0x0003
678 }
679 },
680 {
681 .ifnum = -1
682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684 }
685},
686{
687 USB_DEVICE(0x0582, 0x0007),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100688 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 .vendor_name = "Roland",
690 .product_name = "SC-8820",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200691 .ifnum = QUIRK_ANY_INTERFACE,
692 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100693 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200694 {
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,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100705 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200706 .out_cables = 0x0013,
707 .in_cables = 0x0013
708 }
709 },
710 {
711 .ifnum = -1
712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714 }
715},
716{
717 USB_DEVICE(0x0582, 0x0008),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100718 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 .vendor_name = "Roland",
720 .product_name = "PC-300",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200721 .ifnum = QUIRK_ANY_INTERFACE,
722 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100723 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200724 {
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,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100735 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200736 .out_cables = 0x0001,
737 .in_cables = 0x0001
738 }
739 },
740 {
741 .ifnum = -1
742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744 }
745},
746{
Clemens Ladisch119c4ff2006-01-19 08:25:19 +0100747 /* has ID 0x009d when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 USB_DEVICE(0x0582, 0x0009),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100749 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 .vendor_name = "EDIROL",
751 .product_name = "UM-1",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200752 .ifnum = QUIRK_ANY_INTERFACE,
753 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100754 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200755 {
756 .ifnum = 0,
757 .type = QUIRK_IGNORE_INTERFACE
758 },
759 {
760 .ifnum = 1,
761 .type = QUIRK_IGNORE_INTERFACE
762 },
763 {
764 .ifnum = 2,
765 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100766 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200767 .out_cables = 0x0001,
768 .in_cables = 0x0001
769 }
770 },
771 {
772 .ifnum = -1
773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775 }
776},
777{
778 USB_DEVICE(0x0582, 0x000b),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100779 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 .vendor_name = "Roland",
781 .product_name = "SK-500",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200782 .ifnum = QUIRK_ANY_INTERFACE,
783 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100784 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200785 {
786 .ifnum = 0,
787 .type = QUIRK_IGNORE_INTERFACE
788 },
789 {
790 .ifnum = 1,
791 .type = QUIRK_IGNORE_INTERFACE
792 },
793 {
794 .ifnum = 2,
795 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100796 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200797 .out_cables = 0x0013,
798 .in_cables = 0x0013
799 }
800 },
801 {
802 .ifnum = -1
803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805 }
806},
807{
808 /* thanks to Emiliano Grilli <emillo@libero.it>
809 * for helping researching this data */
810 USB_DEVICE(0x0582, 0x000c),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100811 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 .vendor_name = "Roland",
813 .product_name = "SC-D70",
814 .ifnum = QUIRK_ANY_INTERFACE,
815 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100816 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 {
818 .ifnum = 0,
819 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
820 .data = & (const struct audioformat) {
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100821 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 .channels = 2,
823 .iface = 0,
824 .altsetting = 1,
825 .altset_idx = 1,
826 .attributes = 0,
827 .endpoint = 0x01,
828 .ep_attr = 0x01,
829 .rates = SNDRV_PCM_RATE_CONTINUOUS,
830 .rate_min = 44100,
831 .rate_max = 44100,
832 }
833 },
834 {
835 .ifnum = 1,
836 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
837 .data = & (const struct audioformat) {
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100838 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 .channels = 2,
840 .iface = 1,
841 .altsetting = 1,
842 .altset_idx = 1,
843 .attributes = 0,
844 .endpoint = 0x81,
845 .ep_attr = 0x01,
846 .rates = SNDRV_PCM_RATE_CONTINUOUS,
847 .rate_min = 44100,
848 .rate_max = 44100,
849 }
850 },
851 {
852 .ifnum = 2,
853 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100854 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 .out_cables = 0x0007,
856 .in_cables = 0x0007
857 }
858 },
859 {
860 .ifnum = -1
861 }
862 }
863 }
864},
865{ /*
866 * This quirk is for the "Advanced Driver" mode of the Edirol UA-5.
867 * If the advanced mode switch at the back of the unit is off, the
868 * UA-5 has ID 0x0582/0x0011 and is standard compliant (no quirks),
869 * but offers only 16-bit PCM.
870 * In advanced mode, the UA-5 will output S24_3LE samples (two
871 * channels) at the rate indicated on the front switch, including
872 * the 96kHz sample rate.
873 */
874 USB_DEVICE(0x0582, 0x0010),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100875 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 .vendor_name = "EDIROL",
877 .product_name = "UA-5",
878 .ifnum = QUIRK_ANY_INTERFACE,
879 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100880 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 {
882 .ifnum = 1,
883 .type = QUIRK_AUDIO_STANDARD_INTERFACE
884 },
885 {
886 .ifnum = 2,
887 .type = QUIRK_AUDIO_STANDARD_INTERFACE
888 },
889 {
890 .ifnum = -1
891 }
892 }
893 }
894},
895{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200896 /* has ID 0x0013 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 USB_DEVICE(0x0582, 0x0012),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100898 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 .vendor_name = "Roland",
900 .product_name = "XV-5050",
901 .ifnum = 0,
902 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100903 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 .out_cables = 0x0001,
905 .in_cables = 0x0001
906 }
907 }
908},
909{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200910 /* has ID 0x0015 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 USB_DEVICE(0x0582, 0x0014),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100912 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 .vendor_name = "EDIROL",
914 .product_name = "UM-880",
915 .ifnum = 0,
916 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100917 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 .out_cables = 0x01ff,
919 .in_cables = 0x01ff
920 }
921 }
922},
923{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200924 /* has ID 0x0017 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 USB_DEVICE(0x0582, 0x0016),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100926 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 .vendor_name = "EDIROL",
928 .product_name = "SD-90",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200929 .ifnum = QUIRK_ANY_INTERFACE,
930 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100931 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200932 {
933 .ifnum = 0,
Clemens Ladisch061b8692011-01-10 16:30:54 +0100934 .type = QUIRK_AUDIO_STANDARD_INTERFACE
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200935 },
936 {
937 .ifnum = 1,
Clemens Ladisch061b8692011-01-10 16:30:54 +0100938 .type = QUIRK_AUDIO_STANDARD_INTERFACE
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200939 },
940 {
941 .ifnum = 2,
942 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100943 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200944 .out_cables = 0x000f,
945 .in_cables = 0x000f
946 }
947 },
948 {
949 .ifnum = -1
950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952 }
953},
954{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200955 /* has ID 0x001c when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 USB_DEVICE(0x0582, 0x001b),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100957 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 .vendor_name = "Roland",
959 .product_name = "MMP-2",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200960 .ifnum = QUIRK_ANY_INTERFACE,
961 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100962 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200963 {
964 .ifnum = 0,
965 .type = QUIRK_IGNORE_INTERFACE
966 },
967 {
968 .ifnum = 1,
969 .type = QUIRK_IGNORE_INTERFACE
970 },
971 {
972 .ifnum = 2,
973 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100974 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200975 .out_cables = 0x0001,
976 .in_cables = 0x0001
977 }
978 },
979 {
980 .ifnum = -1
981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983 }
984},
985{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200986 /* has ID 0x001e when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 USB_DEVICE(0x0582, 0x001d),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100988 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 .vendor_name = "Roland",
990 .product_name = "V-SYNTH",
991 .ifnum = 0,
992 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100993 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 .out_cables = 0x0001,
995 .in_cables = 0x0001
996 }
997 }
998},
999{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001000 /* has ID 0x0024 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 USB_DEVICE(0x0582, 0x0023),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001002 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 .vendor_name = "EDIROL",
1004 .product_name = "UM-550",
1005 .ifnum = 0,
1006 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001007 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 .out_cables = 0x003f,
1009 .in_cables = 0x003f
1010 }
1011 }
1012},
1013{
1014 /*
1015 * This quirk is for the "Advanced Driver" mode. If off, the UA-20
1016 * has ID 0x0026 and is standard compliant, but has only 16-bit PCM
1017 * and no MIDI.
1018 */
1019 USB_DEVICE(0x0582, 0x0025),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001020 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 .vendor_name = "EDIROL",
1022 .product_name = "UA-20",
1023 .ifnum = QUIRK_ANY_INTERFACE,
1024 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001025 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 {
Clemens Ladisch1f14a652005-11-21 16:40:00 +01001027 .ifnum = 0,
1028 .type = QUIRK_IGNORE_INTERFACE
1029 },
1030 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 .ifnum = 1,
Clemens Ladisch1f14a652005-11-21 16:40:00 +01001032 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1033 .data = & (const struct audioformat) {
Clemens Ladisch015eb0b2010-03-04 19:46:15 +01001034 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
Clemens Ladisch1f14a652005-11-21 16:40:00 +01001035 .channels = 2,
1036 .iface = 1,
1037 .altsetting = 1,
1038 .altset_idx = 1,
1039 .attributes = 0,
1040 .endpoint = 0x01,
1041 .ep_attr = 0x01,
1042 .rates = SNDRV_PCM_RATE_CONTINUOUS,
1043 .rate_min = 44100,
1044 .rate_max = 44100,
1045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 },
1047 {
1048 .ifnum = 2,
Clemens Ladisch1f14a652005-11-21 16:40:00 +01001049 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1050 .data = & (const struct audioformat) {
Clemens Ladisch015eb0b2010-03-04 19:46:15 +01001051 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
Clemens Ladisch1f14a652005-11-21 16:40:00 +01001052 .channels = 2,
1053 .iface = 2,
1054 .altsetting = 1,
1055 .altset_idx = 1,
1056 .attributes = 0,
1057 .endpoint = 0x82,
1058 .ep_attr = 0x01,
1059 .rates = SNDRV_PCM_RATE_CONTINUOUS,
1060 .rate_min = 44100,
1061 .rate_max = 44100,
1062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 },
1064 {
1065 .ifnum = 3,
Clemens Ladisch1f14a652005-11-21 16:40:00 +01001066 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1067 .data = & (const struct snd_usb_midi_endpoint_info) {
1068 .out_cables = 0x0001,
1069 .in_cables = 0x0001
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 },
1072 {
1073 .ifnum = -1
1074 }
1075 }
1076 }
1077},
1078{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001079 /* has ID 0x0028 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 USB_DEVICE(0x0582, 0x0027),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001081 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 .vendor_name = "EDIROL",
1083 .product_name = "SD-20",
1084 .ifnum = 0,
1085 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001086 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 .out_cables = 0x0003,
1088 .in_cables = 0x0007
1089 }
1090 }
1091},
1092{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001093 /* has ID 0x002a when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 USB_DEVICE(0x0582, 0x0029),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001095 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 .vendor_name = "EDIROL",
1097 .product_name = "SD-80",
1098 .ifnum = 0,
1099 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001100 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 .out_cables = 0x000f,
1102 .in_cables = 0x000f
1103 }
1104 }
1105},
1106{ /*
1107 * This quirk is for the "Advanced" modes of the Edirol UA-700.
1108 * If the sample format switch is not in an advanced setting, the
1109 * UA-700 has ID 0x0582/0x002c and is standard compliant (no quirks),
1110 * but offers only 16-bit PCM and no MIDI.
1111 */
1112 USB_DEVICE_VENDOR_SPEC(0x0582, 0x002b),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001113 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 .vendor_name = "EDIROL",
1115 .product_name = "UA-700",
1116 .ifnum = QUIRK_ANY_INTERFACE,
1117 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001118 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 {
1120 .ifnum = 1,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02001121 .type = QUIRK_AUDIO_EDIROL_UAXX
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 },
1123 {
1124 .ifnum = 2,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02001125 .type = QUIRK_AUDIO_EDIROL_UAXX
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 },
1127 {
1128 .ifnum = 3,
Pedro Lopez-Cabanillas59b3db62008-10-07 20:54:18 +02001129 .type = QUIRK_AUDIO_EDIROL_UAXX
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 },
1131 {
1132 .ifnum = -1
1133 }
1134 }
1135 }
1136},
1137{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001138 /* has ID 0x002e when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 USB_DEVICE(0x0582, 0x002d),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001140 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 .vendor_name = "Roland",
1142 .product_name = "XV-2020",
1143 .ifnum = 0,
1144 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001145 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 .out_cables = 0x0001,
1147 .in_cables = 0x0001
1148 }
1149 }
1150},
1151{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001152 /* has ID 0x0030 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 USB_DEVICE(0x0582, 0x002f),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001154 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 .vendor_name = "Roland",
1156 .product_name = "VariOS",
1157 .ifnum = 0,
1158 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001159 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 .out_cables = 0x0007,
1161 .in_cables = 0x0007
1162 }
1163 }
1164},
1165{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001166 /* has ID 0x0034 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 USB_DEVICE(0x0582, 0x0033),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001168 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 .vendor_name = "EDIROL",
1170 .product_name = "PCR",
1171 .ifnum = 0,
1172 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001173 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 .out_cables = 0x0003,
1175 .in_cables = 0x0007
1176 }
1177 }
1178},
1179{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001180 /*
1181 * Has ID 0x0038 when not in "Advanced Driver" mode;
1182 * later revisions use IDs 0x0054 and 0x00a2.
1183 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 USB_DEVICE(0x0582, 0x0037),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001185 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 .vendor_name = "Roland",
1187 .product_name = "Digital Piano",
1188 .ifnum = 0,
1189 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001190 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 .out_cables = 0x0001,
1192 .in_cables = 0x0001
1193 }
1194 }
1195},
1196{
Clemens Ladisch5af4c832005-04-06 09:47:02 +02001197 /*
1198 * This quirk is for the "Advanced Driver" mode. If off, the GS-10
1199 * has ID 0x003c and is standard compliant, but has only 16-bit PCM
1200 * and no MIDI.
1201 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 USB_DEVICE_VENDOR_SPEC(0x0582, 0x003b),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001203 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 .vendor_name = "BOSS",
1205 .product_name = "GS-10",
Clemens Ladisch5af4c832005-04-06 09:47:02 +02001206 .ifnum = QUIRK_ANY_INTERFACE,
1207 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001208 .data = & (const struct snd_usb_audio_quirk[]) {
Clemens Ladisch5af4c832005-04-06 09:47:02 +02001209 {
1210 .ifnum = 1,
1211 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1212 },
1213 {
1214 .ifnum = 2,
1215 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1216 },
1217 {
1218 .ifnum = 3,
1219 .type = QUIRK_MIDI_STANDARD_INTERFACE
1220 },
1221 {
1222 .ifnum = -1
1223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
1225 }
1226},
1227{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001228 /* has ID 0x0041 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 USB_DEVICE(0x0582, 0x0040),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001230 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 .vendor_name = "Roland",
1232 .product_name = "GI-20",
1233 .ifnum = 0,
1234 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001235 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 .out_cables = 0x0001,
1237 .in_cables = 0x0001
1238 }
1239 }
1240},
1241{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001242 /* has ID 0x0043 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 USB_DEVICE(0x0582, 0x0042),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001244 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 .vendor_name = "Roland",
1246 .product_name = "RS-70",
1247 .ifnum = 0,
1248 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001249 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 .out_cables = 0x0001,
1251 .in_cables = 0x0001
1252 }
1253 }
1254},
1255{
Clemens Ladisch358ce0c2007-12-19 14:25:24 +01001256 /* has ID 0x0049 when not in "Advanced Driver" mode */
1257 USB_DEVICE(0x0582, 0x0047),
1258 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1259 /* .vendor_name = "EDIROL", */
1260 /* .product_name = "UR-80", */
1261 .ifnum = QUIRK_ANY_INTERFACE,
1262 .type = QUIRK_COMPOSITE,
1263 .data = (const struct snd_usb_audio_quirk[]) {
1264 /* in the 96 kHz modes, only interface 1 is there */
1265 {
1266 .ifnum = 1,
1267 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1268 },
1269 {
1270 .ifnum = 2,
1271 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1272 },
1273 {
1274 .ifnum = -1
1275 }
1276 }
1277 }
1278},
1279{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001280 /* has ID 0x004a when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 USB_DEVICE(0x0582, 0x0048),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001282 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch358ce0c2007-12-19 14:25:24 +01001283 /* .vendor_name = "EDIROL", */
1284 /* .product_name = "UR-80", */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 .ifnum = 0,
1286 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001287 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 .out_cables = 0x0003,
1289 .in_cables = 0x0007
1290 }
1291 }
1292},
1293{
Clemens Ladischf38cc312007-02-09 20:52:55 +01001294 /* has ID 0x004e when not in "Advanced Driver" mode */
1295 USB_DEVICE(0x0582, 0x004c),
1296 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1297 .vendor_name = "EDIROL",
1298 .product_name = "PCR-A",
1299 .ifnum = QUIRK_ANY_INTERFACE,
1300 .type = QUIRK_COMPOSITE,
1301 .data = (const struct snd_usb_audio_quirk[]) {
1302 {
1303 .ifnum = 1,
1304 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1305 },
1306 {
1307 .ifnum = 2,
1308 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1309 },
1310 {
1311 .ifnum = -1
1312 }
1313 }
1314 }
1315},
1316{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001317 /* has ID 0x004f when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 USB_DEVICE(0x0582, 0x004d),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001319 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 .vendor_name = "EDIROL",
1321 .product_name = "PCR-A",
1322 .ifnum = 0,
1323 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001324 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 .out_cables = 0x0003,
1326 .in_cables = 0x0007
1327 }
1328 }
1329},
1330{
1331 /*
1332 * This quirk is for the "Advanced Driver" mode. If off, the UA-3FX
1333 * is standard compliant, but has only 16-bit PCM.
1334 */
1335 USB_DEVICE(0x0582, 0x0050),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001336 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 .vendor_name = "EDIROL",
1338 .product_name = "UA-3FX",
1339 .ifnum = QUIRK_ANY_INTERFACE,
1340 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001341 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 {
1343 .ifnum = 1,
1344 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1345 },
1346 {
1347 .ifnum = 2,
1348 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1349 },
1350 {
1351 .ifnum = -1
1352 }
1353 }
1354 }
1355},
1356{
1357 USB_DEVICE(0x0582, 0x0052),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001358 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 .vendor_name = "EDIROL",
1360 .product_name = "UM-1SX",
1361 .ifnum = 0,
1362 .type = QUIRK_MIDI_STANDARD_INTERFACE
1363 }
1364},
Takashi Iwaif1676842007-07-09 10:39:44 +02001365{
1366 USB_DEVICE(0x0582, 0x0060),
1367 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1368 .vendor_name = "Roland",
1369 .product_name = "EXR Series",
1370 .ifnum = 0,
1371 .type = QUIRK_MIDI_STANDARD_INTERFACE
1372 }
1373},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Clemens Ladischaa70201f2010-08-30 16:32:43 +02001375 /* has ID 0x0066 when not in "Advanced Driver" mode */
1376 USB_DEVICE(0x0582, 0x0064),
1377 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1378 /* .vendor_name = "EDIROL", */
1379 /* .product_name = "PCR-1", */
1380 .ifnum = QUIRK_ANY_INTERFACE,
1381 .type = QUIRK_COMPOSITE,
1382 .data = (const struct snd_usb_audio_quirk[]) {
1383 {
1384 .ifnum = 1,
1385 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1386 },
1387 {
1388 .ifnum = 2,
1389 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1390 },
1391 {
1392 .ifnum = -1
1393 }
1394 }
1395 }
1396},
1397{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001398 /* has ID 0x0067 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 USB_DEVICE(0x0582, 0x0065),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001400 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischaa70201f2010-08-30 16:32:43 +02001401 /* .vendor_name = "EDIROL", */
1402 /* .product_name = "PCR-1", */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 .ifnum = 0,
1404 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001405 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 .out_cables = 0x0001,
1407 .in_cables = 0x0003
1408 }
1409 }
1410},
1411{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001412 /* has ID 0x006e when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 USB_DEVICE(0x0582, 0x006d),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001414 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 .vendor_name = "Roland",
1416 .product_name = "FANTOM-X",
1417 .ifnum = 0,
1418 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001419 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 .out_cables = 0x0001,
1421 .in_cables = 0x0001
1422 }
1423 }
1424},
1425{ /*
1426 * This quirk is for the "Advanced" modes of the Edirol UA-25.
1427 * If the switch is not in an advanced setting, the UA-25 has
1428 * ID 0x0582/0x0073 and is standard compliant (no quirks), but
1429 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1430 */
1431 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0074),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001432 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 .vendor_name = "EDIROL",
1434 .product_name = "UA-25",
1435 .ifnum = QUIRK_ANY_INTERFACE,
1436 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001437 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 {
1439 .ifnum = 0,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02001440 .type = QUIRK_AUDIO_EDIROL_UAXX
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 },
1442 {
1443 .ifnum = 1,
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02001444 .type = QUIRK_AUDIO_EDIROL_UAXX
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 },
1446 {
1447 .ifnum = 2,
Pedro Lopez-Cabanillas59b3db62008-10-07 20:54:18 +02001448 .type = QUIRK_AUDIO_EDIROL_UAXX
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 },
1450 {
1451 .ifnum = -1
1452 }
1453 }
1454 }
1455},
1456{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001457 /* has ID 0x0076 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 USB_DEVICE(0x0582, 0x0075),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001459 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 .vendor_name = "BOSS",
1461 .product_name = "DR-880",
1462 .ifnum = 0,
1463 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001464 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 .out_cables = 0x0001,
1466 .in_cables = 0x0001
1467 }
1468 }
1469},
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001470{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001471 /* has ID 0x007b when not in "Advanced Driver" mode */
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001472 USB_DEVICE_VENDOR_SPEC(0x0582, 0x007a),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001473 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001474 .vendor_name = "Roland",
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001475 /* "RD" or "RD-700SX"? */
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001476 .ifnum = 0,
1477 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001478 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001479 .out_cables = 0x0003,
1480 .in_cables = 0x0003
1481 }
1482 }
1483},
Clemens Ladischcdca8812006-01-18 08:53:32 +01001484{
1485 /* has ID 0x0081 when not in "Advanced Driver" mode */
1486 USB_DEVICE(0x0582, 0x0080),
1487 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1488 .vendor_name = "Roland",
1489 .product_name = "G-70",
1490 .ifnum = 0,
1491 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1492 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladisch05422572006-01-18 15:44:53 +01001493 .out_cables = 0x0001,
1494 .in_cables = 0x0001
Clemens Ladischcdca8812006-01-18 08:53:32 +01001495 }
1496 }
1497},
Clemens Ladisch415b09e2006-01-16 08:03:52 +01001498{
1499 /* has ID 0x008c when not in "Advanced Driver" mode */
1500 USB_DEVICE(0x0582, 0x008b),
1501 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1502 .vendor_name = "EDIROL",
1503 .product_name = "PC-50",
1504 .ifnum = 0,
1505 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1506 .data = & (const struct snd_usb_midi_endpoint_info) {
1507 .out_cables = 0x0001,
1508 .in_cables = 0x0001
1509 }
1510 }
1511},
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02001512{
1513 /*
1514 * This quirk is for the "Advanced Driver" mode. If off, the UA-4FX
1515 * is standard compliant, but has only 16-bit PCM and no MIDI.
1516 */
1517 USB_DEVICE(0x0582, 0x00a3),
1518 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1519 .vendor_name = "EDIROL",
1520 .product_name = "UA-4FX",
1521 .ifnum = QUIRK_ANY_INTERFACE,
1522 .type = QUIRK_COMPOSITE,
1523 .data = (const struct snd_usb_audio_quirk[]) {
1524 {
1525 .ifnum = 0,
1526 .type = QUIRK_AUDIO_EDIROL_UAXX
1527 },
1528 {
1529 .ifnum = 1,
1530 .type = QUIRK_AUDIO_EDIROL_UAXX
1531 },
1532 {
1533 .ifnum = 2,
Pedro Lopez-Cabanillas59b3db62008-10-07 20:54:18 +02001534 .type = QUIRK_AUDIO_EDIROL_UAXX
Pedro Lopez-Cabanillas310e0dc2008-10-04 16:27:36 +02001535 },
1536 {
1537 .ifnum = -1
1538 }
1539 }
1540 }
1541},
Clemens Ladischb38addb2008-07-28 10:19:39 +02001542{
Takashi Iwai6efd2cd2009-06-01 10:59:51 +02001543 /* Edirol M-16DX */
Takashi Iwai6efd2cd2009-06-01 10:59:51 +02001544 USB_DEVICE(0x0582, 0x00c4),
1545 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1546 .ifnum = QUIRK_ANY_INTERFACE,
1547 .type = QUIRK_COMPOSITE,
1548 .data = (const struct snd_usb_audio_quirk[]) {
1549 {
1550 .ifnum = 0,
1551 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1552 },
1553 {
1554 .ifnum = 1,
1555 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1556 },
1557 {
1558 .ifnum = 2,
1559 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1560 .data = & (const struct snd_usb_midi_endpoint_info) {
1561 .out_cables = 0x0001,
1562 .in_cables = 0x0001
1563 }
1564 },
1565 {
1566 .ifnum = -1
1567 }
1568 }
1569 }
1570},
1571{
Takashi Iwaie2736262008-10-20 16:07:45 +02001572 /* Advanced modes of the Edirol UA-25EX.
1573 * For the standard mode, UA-25EX has ID 0582:00e7, which
1574 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1575 */
1576 USB_DEVICE_VENDOR_SPEC(0x0582, 0x00e6),
1577 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1578 .vendor_name = "EDIROL",
1579 .product_name = "UA-25EX",
1580 .ifnum = QUIRK_ANY_INTERFACE,
1581 .type = QUIRK_COMPOSITE,
1582 .data = (const struct snd_usb_audio_quirk[]) {
1583 {
1584 .ifnum = 0,
1585 .type = QUIRK_AUDIO_EDIROL_UAXX
1586 },
1587 {
1588 .ifnum = 1,
1589 .type = QUIRK_AUDIO_EDIROL_UAXX
1590 },
1591 {
1592 .ifnum = 2,
1593 .type = QUIRK_AUDIO_EDIROL_UAXX
1594 },
1595 {
1596 .ifnum = -1
1597 }
1598 }
1599 }
1600},
Clemens Ladischd867bba2009-11-19 14:34:33 +01001601{
Clemens Ladisch927c9422012-02-04 20:51:43 +01001602 /* Edirol UM-3G */
1603 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0108),
1604 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1605 .ifnum = 0,
Clemens Ladischa0c6d302013-06-02 19:49:07 +02001606 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1607 .data = & (const struct snd_usb_midi_endpoint_info) {
1608 .out_cables = 0x0007,
1609 .in_cables = 0x0007
1610 }
Clemens Ladisch927c9422012-02-04 20:51:43 +01001611 }
1612},
1613{
Clemens Ladisch53da5eb2014-08-09 17:19:41 +02001614 /* BOSS ME-25 */
1615 USB_DEVICE(0x0582, 0x0113),
1616 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1617 .ifnum = QUIRK_ANY_INTERFACE,
1618 .type = QUIRK_COMPOSITE,
1619 .data = (const struct snd_usb_audio_quirk[]) {
1620 {
1621 .ifnum = 0,
1622 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1623 },
1624 {
1625 .ifnum = 1,
1626 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1627 },
1628 {
1629 .ifnum = 2,
1630 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1631 .data = & (const struct snd_usb_midi_endpoint_info) {
1632 .out_cables = 0x0001,
1633 .in_cables = 0x0001
1634 }
1635 },
1636 {
1637 .ifnum = -1
1638 }
1639 }
1640 }
1641},
1642{
Clemens Ladischb7f33912013-06-16 18:27:56 +02001643 /* only 44.1 kHz works at the moment */
1644 USB_DEVICE(0x0582, 0x0120),
Clemens Ladisch9d0c9192010-08-30 16:42:17 +02001645 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1646 /* .vendor_name = "Roland", */
Clemens Ladischb7f33912013-06-16 18:27:56 +02001647 /* .product_name = "OCTO-CAPTURE", */
John F Leachae7cc702011-11-28 19:41:27 -05001648 .ifnum = QUIRK_ANY_INTERFACE,
1649 .type = QUIRK_COMPOSITE,
1650 .data = (const struct snd_usb_audio_quirk[]) {
1651 {
1652 .ifnum = 0,
Clemens Ladischb7f33912013-06-16 18:27:56 +02001653 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1654 .data = & (const struct audioformat) {
1655 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1656 .channels = 10,
1657 .iface = 0,
1658 .altsetting = 1,
1659 .altset_idx = 1,
1660 .endpoint = 0x05,
1661 .ep_attr = 0x05,
1662 .rates = SNDRV_PCM_RATE_44100,
1663 .rate_min = 44100,
1664 .rate_max = 44100,
1665 .nr_rates = 1,
1666 .rate_table = (unsigned int[]) { 44100 }
John F Leachae7cc702011-11-28 19:41:27 -05001667 }
1668 },
1669 {
Clemens Ladisch7b280792010-08-30 16:45:38 +02001670 .ifnum = 1,
Clemens Ladischb7f33912013-06-16 18:27:56 +02001671 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1672 .data = & (const struct audioformat) {
1673 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1674 .channels = 12,
1675 .iface = 1,
1676 .altsetting = 1,
1677 .altset_idx = 1,
1678 .endpoint = 0x85,
1679 .ep_attr = 0x25,
1680 .rates = SNDRV_PCM_RATE_44100,
1681 .rate_min = 44100,
1682 .rate_max = 44100,
1683 .nr_rates = 1,
1684 .rate_table = (unsigned int[]) { 44100 }
1685 }
Clemens Ladisch7b280792010-08-30 16:45:38 +02001686 },
1687 {
1688 .ifnum = 2,
1689 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1690 .data = & (const struct snd_usb_midi_endpoint_info) {
1691 .out_cables = 0x0001,
1692 .in_cables = 0x0001
1693 }
1694 },
1695 {
Clemens Ladischb7f33912013-06-16 18:27:56 +02001696 .ifnum = 3,
Kazutomo Yoshiic9c9e4e2011-08-09 23:39:13 -05001697 .type = QUIRK_IGNORE_INTERFACE
1698 },
1699 {
Clemens Ladischb7f33912013-06-16 18:27:56 +02001700 .ifnum = 4,
1701 .type = QUIRK_IGNORE_INTERFACE
Kazutomo Yoshiic9c9e4e2011-08-09 23:39:13 -05001702 },
1703 {
1704 .ifnum = -1
1705 }
1706 }
1707 }
1708},
Clemens Ladisch74953e22012-06-23 17:30:47 +02001709{
Clemens Ladischb7f33912013-06-16 18:27:56 +02001710 /* only 44.1 kHz works at the moment */
1711 USB_DEVICE(0x0582, 0x012f),
Clemens Ladisch74953e22012-06-23 17:30:47 +02001712 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischb7f33912013-06-16 18:27:56 +02001713 /* .vendor_name = "Roland", */
1714 /* .product_name = "QUAD-CAPTURE", */
Clemens Ladisch74953e22012-06-23 17:30:47 +02001715 .ifnum = QUIRK_ANY_INTERFACE,
1716 .type = QUIRK_COMPOSITE,
1717 .data = (const struct snd_usb_audio_quirk[]) {
1718 {
Clemens Ladischb7f33912013-06-16 18:27:56 +02001719 .ifnum = 0,
1720 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1721 .data = & (const struct audioformat) {
1722 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1723 .channels = 4,
1724 .iface = 0,
1725 .altsetting = 1,
1726 .altset_idx = 1,
1727 .endpoint = 0x05,
1728 .ep_attr = 0x05,
1729 .rates = SNDRV_PCM_RATE_44100,
1730 .rate_min = 44100,
1731 .rate_max = 44100,
1732 .nr_rates = 1,
1733 .rate_table = (unsigned int[]) { 44100 }
1734 }
1735 },
1736 {
Clemens Ladisch74953e22012-06-23 17:30:47 +02001737 .ifnum = 1,
Clemens Ladischb7f33912013-06-16 18:27:56 +02001738 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
1739 .data = & (const struct audioformat) {
1740 .formats = SNDRV_PCM_FMTBIT_S32_LE,
1741 .channels = 6,
1742 .iface = 1,
1743 .altsetting = 1,
1744 .altset_idx = 1,
1745 .endpoint = 0x85,
1746 .ep_attr = 0x25,
1747 .rates = SNDRV_PCM_RATE_44100,
1748 .rate_min = 44100,
1749 .rate_max = 44100,
1750 .nr_rates = 1,
1751 .rate_table = (unsigned int[]) { 44100 }
1752 }
Clemens Ladisch74953e22012-06-23 17:30:47 +02001753 },
1754 {
1755 .ifnum = 2,
Clemens Ladisch74953e22012-06-23 17:30:47 +02001756 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1757 .data = & (const struct snd_usb_midi_endpoint_info) {
1758 .out_cables = 0x0001,
1759 .in_cables = 0x0001
1760 }
1761 },
1762 {
Clemens Ladischb7f33912013-06-16 18:27:56 +02001763 .ifnum = 3,
1764 .type = QUIRK_IGNORE_INTERFACE
1765 },
1766 {
1767 .ifnum = 4,
1768 .type = QUIRK_IGNORE_INTERFACE
1769 },
1770 {
Clemens Ladisch74953e22012-06-23 17:30:47 +02001771 .ifnum = -1
1772 }
1773 }
1774 }
1775},
Clemens Ladischaafe77c2013-03-31 23:43:12 +02001776/* this catches most recent vendor-specific Roland devices */
1777{
1778 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
1779 USB_DEVICE_ID_MATCH_INT_CLASS,
1780 .idVendor = 0x0582,
1781 .bInterfaceClass = USB_CLASS_VENDOR_SPEC,
1782 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
1783 .ifnum = QUIRK_ANY_INTERFACE,
1784 .type = QUIRK_AUTODETECT
1785 }
1786},
Chris Mennie62b12632008-05-19 16:21:33 +02001787
Clemens Ladischa25f1752005-10-05 13:23:19 +02001788/* Guillemot devices */
1789{
1790 /*
1791 * This is for the "Windows Edition" where the external MIDI ports are
1792 * the only MIDI ports; the control data is reported through HID
1793 * interfaces. The "Macintosh Edition" has ID 0xd002 and uses standard
1794 * compliant USB MIDI ports for external MIDI and controls.
1795 */
1796 USB_DEVICE_VENDOR_SPEC(0x06f8, 0xb000),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001797 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischa25f1752005-10-05 13:23:19 +02001798 .vendor_name = "Hercules",
1799 .product_name = "DJ Console (WE)",
1800 .ifnum = 4,
1801 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001802 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischa25f1752005-10-05 13:23:19 +02001803 .out_cables = 0x0001,
1804 .in_cables = 0x0001
1805 }
1806 }
1807},
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809/* Midiman/M-Audio devices */
1810{
1811 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1002),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001812 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 .vendor_name = "M-Audio",
1814 .product_name = "MidiSport 2x2",
1815 .ifnum = QUIRK_ANY_INTERFACE,
1816 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001817 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 .out_cables = 0x0003,
1819 .in_cables = 0x0003
1820 }
1821 }
1822},
1823{
1824 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1011),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001825 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 .vendor_name = "M-Audio",
1827 .product_name = "MidiSport 1x1",
1828 .ifnum = QUIRK_ANY_INTERFACE,
1829 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001830 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 .out_cables = 0x0001,
1832 .in_cables = 0x0001
1833 }
1834 }
1835},
1836{
1837 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1015),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001838 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 .vendor_name = "M-Audio",
1840 .product_name = "Keystation",
1841 .ifnum = QUIRK_ANY_INTERFACE,
1842 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001843 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 .out_cables = 0x0001,
1845 .in_cables = 0x0001
1846 }
1847 }
1848},
1849{
1850 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1021),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001851 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 .vendor_name = "M-Audio",
1853 .product_name = "MidiSport 4x4",
1854 .ifnum = QUIRK_ANY_INTERFACE,
1855 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001856 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 .out_cables = 0x000f,
1858 .in_cables = 0x000f
1859 }
1860 }
1861},
1862{
1863 /*
1864 * For hardware revision 1.05; in the later revisions (1.10 and
1865 * 1.21), 0x1031 is the ID for the device without firmware.
1866 * Thanks to Olaf Giesbrecht <Olaf_Giesbrecht@yahoo.de>
1867 */
1868 USB_DEVICE_VER(0x0763, 0x1031, 0x0100, 0x0109),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001869 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 .vendor_name = "M-Audio",
1871 .product_name = "MidiSport 8x8",
1872 .ifnum = QUIRK_ANY_INTERFACE,
1873 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001874 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 .out_cables = 0x01ff,
1876 .in_cables = 0x01ff
1877 }
1878 }
1879},
1880{
1881 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1033),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001882 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 .vendor_name = "M-Audio",
1884 .product_name = "MidiSport 8x8",
1885 .ifnum = QUIRK_ANY_INTERFACE,
1886 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001887 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 .out_cables = 0x01ff,
1889 .in_cables = 0x01ff
1890 }
1891 }
1892},
1893{
1894 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1041),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001895 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 .vendor_name = "M-Audio",
1897 .product_name = "MidiSport 2x4",
1898 .ifnum = QUIRK_ANY_INTERFACE,
1899 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001900 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 .out_cables = 0x000f,
1902 .in_cables = 0x0003
1903 }
1904 }
1905},
1906{
1907 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2001),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001908 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 .vendor_name = "M-Audio",
1910 .product_name = "Quattro",
1911 .ifnum = QUIRK_ANY_INTERFACE,
1912 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001913 .data = & (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 /*
1915 * Interfaces 0-2 are "Windows-compatible", 16-bit only,
1916 * and share endpoints with the other interfaces.
1917 * Ignore them. The other interfaces can do 24 bits,
1918 * but captured samples are big-endian (see usbaudio.c).
1919 */
1920 {
1921 .ifnum = 0,
1922 .type = QUIRK_IGNORE_INTERFACE
1923 },
1924 {
1925 .ifnum = 1,
1926 .type = QUIRK_IGNORE_INTERFACE
1927 },
1928 {
1929 .ifnum = 2,
1930 .type = QUIRK_IGNORE_INTERFACE
1931 },
1932 {
1933 .ifnum = 3,
1934 .type = QUIRK_IGNORE_INTERFACE
1935 },
1936 {
1937 .ifnum = 4,
1938 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1939 },
1940 {
1941 .ifnum = 5,
1942 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1943 },
1944 {
1945 .ifnum = 6,
1946 .type = QUIRK_IGNORE_INTERFACE
1947 },
1948 {
1949 .ifnum = 7,
1950 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1951 },
1952 {
1953 .ifnum = 8,
1954 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1955 },
1956 {
1957 .ifnum = 9,
1958 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001959 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 .out_cables = 0x0001,
1961 .in_cables = 0x0001
1962 }
1963 },
1964 {
1965 .ifnum = -1
1966 }
1967 }
1968 }
1969},
1970{
1971 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2003),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001972 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 .vendor_name = "M-Audio",
1974 .product_name = "AudioPhile",
1975 .ifnum = 6,
1976 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001977 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 .out_cables = 0x0001,
1979 .in_cables = 0x0001
1980 }
1981 }
1982},
1983{
1984 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2008),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001985 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 .vendor_name = "M-Audio",
1987 .product_name = "Ozone",
1988 .ifnum = 3,
1989 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001990 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 .out_cables = 0x0001,
1992 .in_cables = 0x0001
1993 }
1994 }
1995},
1996{
1997 USB_DEVICE_VENDOR_SPEC(0x0763, 0x200d),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001998 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 .vendor_name = "M-Audio",
2000 .product_name = "OmniStudio",
2001 .ifnum = QUIRK_ANY_INTERFACE,
2002 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002003 .data = & (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 {
2005 .ifnum = 0,
2006 .type = QUIRK_IGNORE_INTERFACE
2007 },
2008 {
2009 .ifnum = 1,
2010 .type = QUIRK_IGNORE_INTERFACE
2011 },
2012 {
2013 .ifnum = 2,
2014 .type = QUIRK_IGNORE_INTERFACE
2015 },
2016 {
2017 .ifnum = 3,
2018 .type = QUIRK_IGNORE_INTERFACE
2019 },
2020 {
2021 .ifnum = 4,
2022 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2023 },
2024 {
2025 .ifnum = 5,
2026 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2027 },
2028 {
2029 .ifnum = 6,
2030 .type = QUIRK_IGNORE_INTERFACE
2031 },
2032 {
2033 .ifnum = 7,
2034 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2035 },
2036 {
2037 .ifnum = 8,
2038 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2039 },
2040 {
2041 .ifnum = 9,
2042 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002043 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 .out_cables = 0x0001,
2045 .in_cables = 0x0001
2046 }
2047 },
2048 {
2049 .ifnum = -1
2050 }
2051 }
2052 }
2053},
Clemens Ladisch2ea547dc2007-09-17 09:33:17 +02002054{
2055 USB_DEVICE(0x0763, 0x2019),
2056 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2057 /* .vendor_name = "M-Audio", */
2058 /* .product_name = "Ozone Academic", */
2059 .ifnum = QUIRK_ANY_INTERFACE,
2060 .type = QUIRK_COMPOSITE,
2061 .data = & (const struct snd_usb_audio_quirk[]) {
2062 {
2063 .ifnum = 0,
2064 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2065 },
2066 {
2067 .ifnum = 1,
2068 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2069 },
2070 {
2071 .ifnum = 2,
2072 .type = QUIRK_AUDIO_STANDARD_INTERFACE
2073 },
2074 {
2075 .ifnum = 3,
2076 .type = QUIRK_MIDI_MIDIMAN,
2077 .data = & (const struct snd_usb_midi_endpoint_info) {
2078 .out_cables = 0x0001,
2079 .in_cables = 0x0001
2080 }
2081 },
2082 {
2083 .ifnum = -1
2084 }
2085 }
2086 }
2087},
Felix Homannfca5bca2010-03-25 11:29:14 +01002088{
Eldad Zack76f74bc2012-11-28 23:55:38 +01002089 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2030),
2090 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2091 /* .vendor_name = "M-Audio", */
2092 /* .product_name = "Fast Track C400", */
2093 .ifnum = QUIRK_ANY_INTERFACE,
2094 .type = QUIRK_COMPOSITE,
2095 .data = &(const struct snd_usb_audio_quirk[]) {
2096 {
2097 .ifnum = 1,
2098 .type = QUIRK_AUDIO_STANDARD_MIXER,
2099 },
2100 /* Playback */
2101 {
2102 .ifnum = 2,
2103 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2104 .data = &(const struct audioformat) {
2105 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2106 .channels = 6,
2107 .iface = 2,
2108 .altsetting = 1,
2109 .altset_idx = 1,
2110 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2111 .endpoint = 0x01,
2112 .ep_attr = 0x09,
2113 .rates = SNDRV_PCM_RATE_44100 |
2114 SNDRV_PCM_RATE_48000 |
2115 SNDRV_PCM_RATE_88200 |
2116 SNDRV_PCM_RATE_96000,
2117 .rate_min = 44100,
2118 .rate_max = 96000,
2119 .nr_rates = 4,
2120 .rate_table = (unsigned int[]) {
2121 44100, 48000, 88200, 96000
2122 },
Eldad Zack2aad2722013-01-13 23:02:02 +01002123 .clock = 0x80,
Eldad Zack76f74bc2012-11-28 23:55:38 +01002124 }
2125 },
2126 /* Capture */
2127 {
2128 .ifnum = 3,
2129 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2130 .data = &(const struct audioformat) {
2131 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2132 .channels = 4,
2133 .iface = 3,
2134 .altsetting = 1,
2135 .altset_idx = 1,
2136 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2137 .endpoint = 0x81,
2138 .ep_attr = 0x05,
2139 .rates = SNDRV_PCM_RATE_44100 |
2140 SNDRV_PCM_RATE_48000 |
2141 SNDRV_PCM_RATE_88200 |
2142 SNDRV_PCM_RATE_96000,
2143 .rate_min = 44100,
2144 .rate_max = 96000,
2145 .nr_rates = 4,
2146 .rate_table = (unsigned int[]) {
2147 44100, 48000, 88200, 96000
2148 },
Eldad Zack2aad2722013-01-13 23:02:02 +01002149 .clock = 0x80,
Eldad Zack76f74bc2012-11-28 23:55:38 +01002150 }
2151 },
2152 /* MIDI */
2153 {
2154 .ifnum = -1 /* Interface = 4 */
2155 }
2156 }
2157 }
2158},
2159{
Matt Gruskine9a25e02013-02-09 12:56:35 -05002160 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2031),
2161 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2162 /* .vendor_name = "M-Audio", */
2163 /* .product_name = "Fast Track C600", */
2164 .ifnum = QUIRK_ANY_INTERFACE,
2165 .type = QUIRK_COMPOSITE,
2166 .data = &(const struct snd_usb_audio_quirk[]) {
2167 {
2168 .ifnum = 1,
2169 .type = QUIRK_AUDIO_STANDARD_MIXER,
2170 },
2171 /* Playback */
2172 {
2173 .ifnum = 2,
2174 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2175 .data = &(const struct audioformat) {
2176 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2177 .channels = 8,
2178 .iface = 2,
2179 .altsetting = 1,
2180 .altset_idx = 1,
2181 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2182 .endpoint = 0x01,
2183 .ep_attr = 0x09,
2184 .rates = SNDRV_PCM_RATE_44100 |
2185 SNDRV_PCM_RATE_48000 |
2186 SNDRV_PCM_RATE_88200 |
2187 SNDRV_PCM_RATE_96000,
2188 .rate_min = 44100,
2189 .rate_max = 96000,
2190 .nr_rates = 4,
2191 .rate_table = (unsigned int[]) {
2192 44100, 48000, 88200, 96000
2193 },
2194 .clock = 0x80,
2195 }
2196 },
2197 /* Capture */
2198 {
2199 .ifnum = 3,
2200 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2201 .data = &(const struct audioformat) {
2202 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2203 .channels = 6,
2204 .iface = 3,
2205 .altsetting = 1,
2206 .altset_idx = 1,
2207 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2208 .endpoint = 0x81,
2209 .ep_attr = 0x05,
2210 .rates = SNDRV_PCM_RATE_44100 |
2211 SNDRV_PCM_RATE_48000 |
2212 SNDRV_PCM_RATE_88200 |
2213 SNDRV_PCM_RATE_96000,
2214 .rate_min = 44100,
2215 .rate_max = 96000,
2216 .nr_rates = 4,
2217 .rate_table = (unsigned int[]) {
2218 44100, 48000, 88200, 96000
2219 },
2220 .clock = 0x80,
2221 }
2222 },
2223 /* MIDI */
2224 {
2225 .ifnum = -1 /* Interface = 4 */
2226 }
2227 }
2228 }
2229},
2230{
Daniel Mackc91d9cd2011-05-18 11:28:45 +02002231 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2080),
Felix Homannfca5bca2010-03-25 11:29:14 +01002232 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2233 /* .vendor_name = "M-Audio", */
Clemens Ladisch65f04442010-09-02 12:58:25 +02002234 /* .product_name = "Fast Track Ultra", */
Felix Homannfca5bca2010-03-25 11:29:14 +01002235 .ifnum = QUIRK_ANY_INTERFACE,
2236 .type = QUIRK_COMPOSITE,
2237 .data = & (const struct snd_usb_audio_quirk[]) {
2238 {
2239 .ifnum = 0,
Daniel Mackd5a0bf62011-05-25 09:09:03 +02002240 .type = QUIRK_AUDIO_STANDARD_MIXER,
Felix Homannfca5bca2010-03-25 11:29:14 +01002241 },
2242 {
2243 .ifnum = 1,
Clemens Ladisch65f04442010-09-02 12:58:25 +02002244 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2245 .data = & (const struct audioformat) {
2246 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2247 .channels = 8,
2248 .iface = 1,
2249 .altsetting = 1,
2250 .altset_idx = 1,
2251 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2252 .endpoint = 0x01,
2253 .ep_attr = 0x09,
2254 .rates = SNDRV_PCM_RATE_44100 |
2255 SNDRV_PCM_RATE_48000 |
2256 SNDRV_PCM_RATE_88200 |
2257 SNDRV_PCM_RATE_96000,
2258 .rate_min = 44100,
2259 .rate_max = 96000,
2260 .nr_rates = 4,
2261 .rate_table = (unsigned int[]) {
2262 44100, 48000, 88200, 96000
2263 }
2264 }
Felix Homannfca5bca2010-03-25 11:29:14 +01002265 },
2266 {
2267 .ifnum = 2,
Clemens Ladisch65f04442010-09-02 12:58:25 +02002268 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2269 .data = & (const struct audioformat) {
2270 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2271 .channels = 8,
2272 .iface = 2,
2273 .altsetting = 1,
2274 .altset_idx = 1,
2275 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2276 .endpoint = 0x81,
2277 .ep_attr = 0x05,
2278 .rates = SNDRV_PCM_RATE_44100 |
2279 SNDRV_PCM_RATE_48000 |
2280 SNDRV_PCM_RATE_88200 |
2281 SNDRV_PCM_RATE_96000,
2282 .rate_min = 44100,
2283 .rate_max = 96000,
2284 .nr_rates = 4,
2285 .rate_table = (unsigned int[]) {
2286 44100, 48000, 88200, 96000
2287 }
2288 }
Felix Homannfca5bca2010-03-25 11:29:14 +01002289 },
2290 /* interface 3 (MIDI) is standard compliant */
2291 {
2292 .ifnum = -1
2293 }
2294 }
2295 }
2296},
2297{
Daniel Mackc91d9cd2011-05-18 11:28:45 +02002298 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2081),
Felix Homannfca5bca2010-03-25 11:29:14 +01002299 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2300 /* .vendor_name = "M-Audio", */
2301 /* .product_name = "Fast Track Ultra 8R", */
2302 .ifnum = QUIRK_ANY_INTERFACE,
2303 .type = QUIRK_COMPOSITE,
2304 .data = & (const struct snd_usb_audio_quirk[]) {
2305 {
2306 .ifnum = 0,
Daniel Mackd5a0bf62011-05-25 09:09:03 +02002307 .type = QUIRK_AUDIO_STANDARD_MIXER,
Felix Homannfca5bca2010-03-25 11:29:14 +01002308 },
2309 {
2310 .ifnum = 1,
Clemens Ladisch65f04442010-09-02 12:58:25 +02002311 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2312 .data = & (const struct audioformat) {
2313 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2314 .channels = 8,
2315 .iface = 1,
2316 .altsetting = 1,
2317 .altset_idx = 1,
2318 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2319 .endpoint = 0x01,
2320 .ep_attr = 0x09,
2321 .rates = SNDRV_PCM_RATE_44100 |
2322 SNDRV_PCM_RATE_48000 |
2323 SNDRV_PCM_RATE_88200 |
2324 SNDRV_PCM_RATE_96000,
2325 .rate_min = 44100,
2326 .rate_max = 96000,
2327 .nr_rates = 4,
2328 .rate_table = (unsigned int[]) {
2329 44100, 48000, 88200, 96000
2330 }
2331 }
Felix Homannfca5bca2010-03-25 11:29:14 +01002332 },
2333 {
2334 .ifnum = 2,
Clemens Ladisch65f04442010-09-02 12:58:25 +02002335 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2336 .data = & (const struct audioformat) {
2337 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2338 .channels = 8,
2339 .iface = 2,
2340 .altsetting = 1,
2341 .altset_idx = 1,
2342 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2343 .endpoint = 0x81,
2344 .ep_attr = 0x05,
2345 .rates = SNDRV_PCM_RATE_44100 |
2346 SNDRV_PCM_RATE_48000 |
2347 SNDRV_PCM_RATE_88200 |
2348 SNDRV_PCM_RATE_96000,
2349 .rate_min = 44100,
2350 .rate_max = 96000,
2351 .nr_rates = 4,
2352 .rate_table = (unsigned int[]) {
2353 44100, 48000, 88200, 96000
2354 }
2355 }
Felix Homannfca5bca2010-03-25 11:29:14 +01002356 },
2357 /* interface 3 (MIDI) is standard compliant */
2358 {
2359 .ifnum = -1
2360 }
2361 }
2362 }
2363},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
Clemens Ladisch0243ef712006-03-09 07:55:55 +01002365/* Casio devices */
2366{
Clemens Ladisch9808dc92006-03-16 08:15:25 +01002367 USB_DEVICE(0x07cf, 0x6801),
2368 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2369 .vendor_name = "Casio",
2370 .product_name = "PL-40R",
2371 .ifnum = 0,
2372 .type = QUIRK_MIDI_YAMAHA
2373 }
2374},
2375{
Clemens Ladisch318d27f2006-03-09 08:17:08 +01002376 /* this ID is used by several devices without a product ID */
Clemens Ladisch0243ef712006-03-09 07:55:55 +01002377 USB_DEVICE(0x07cf, 0x6802),
2378 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2379 .vendor_name = "Casio",
Clemens Ladisch318d27f2006-03-09 08:17:08 +01002380 .product_name = "Keyboard",
Clemens Ladisch0243ef712006-03-09 07:55:55 +01002381 .ifnum = 0,
2382 .type = QUIRK_MIDI_YAMAHA
2383 }
2384},
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386/* Mark of the Unicorn devices */
2387{
2388 /* thanks to Robert A. Lerche <ral 'at' msbit.com> */
Clemens Ladischbbd46152005-07-04 09:21:45 +02002389 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
2390 USB_DEVICE_ID_MATCH_PRODUCT |
2391 USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
2392 .idVendor = 0x07fd,
2393 .idProduct = 0x0001,
2394 .bDeviceSubClass = 2,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002395 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 .vendor_name = "MOTU",
2397 .product_name = "Fastlane",
2398 .ifnum = QUIRK_ANY_INTERFACE,
2399 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002400 .data = & (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 {
2402 .ifnum = 0,
Clemens Ladischc7f57212010-10-22 18:20:48 +02002403 .type = QUIRK_MIDI_RAW_BYTES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 },
2405 {
2406 .ifnum = 1,
2407 .type = QUIRK_IGNORE_INTERFACE
2408 },
2409 {
2410 .ifnum = -1
2411 }
2412 }
2413 }
2414},
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416/* Emagic devices */
2417{
2418 USB_DEVICE(0x086a, 0x0001),
Takashi Iwai86e07d32005-11-17 15:08:02 +01002419 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 .vendor_name = "Emagic",
2421 /* .product_name = "Unitor8", */
2422 .ifnum = 2,
2423 .type = QUIRK_MIDI_EMAGIC,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002424 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 .out_cables = 0x80ff,
2426 .in_cables = 0x80ff
2427 }
2428 }
2429},
2430{
2431 USB_DEVICE(0x086a, 0x0002),
Takashi Iwai86e07d32005-11-17 15:08:02 +01002432 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 .vendor_name = "Emagic",
2434 /* .product_name = "AMT8", */
2435 .ifnum = 2,
2436 .type = QUIRK_MIDI_EMAGIC,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002437 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 .out_cables = 0x80ff,
2439 .in_cables = 0x80ff
2440 }
2441 }
2442},
2443{
2444 USB_DEVICE(0x086a, 0x0003),
Takashi Iwai86e07d32005-11-17 15:08:02 +01002445 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 .vendor_name = "Emagic",
2447 /* .product_name = "MT4", */
2448 .ifnum = 2,
2449 .type = QUIRK_MIDI_EMAGIC,
Takashi Iwai86e07d32005-11-17 15:08:02 +01002450 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 .out_cables = 0x800f,
2452 .in_cables = 0x8003
2453 }
2454 }
2455},
2456
Daniel Mack56a9eb12011-05-18 11:28:42 +02002457/* KORG devices */
2458{
2459 USB_DEVICE_VENDOR_SPEC(0x0944, 0x0200),
2460 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2461 .vendor_name = "KORG, Inc.",
2462 /* .product_name = "PANDORA PX5D", */
2463 .ifnum = 3,
2464 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2465 }
2466},
2467
Sergiusz Urbaniak1bba1602011-12-05 20:27:46 +01002468{
2469 USB_DEVICE_VENDOR_SPEC(0x0944, 0x0201),
2470 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2471 .vendor_name = "KORG, Inc.",
2472 /* .product_name = "ToneLab ST", */
2473 .ifnum = 3,
2474 .type = QUIRK_MIDI_STANDARD_INTERFACE,
2475 }
2476},
2477
Krzysztof Foltman4434ade2010-05-20 20:31:10 +01002478/* AKAI devices */
2479{
2480 USB_DEVICE(0x09e8, 0x0062),
2481 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2482 .vendor_name = "AKAI",
2483 .product_name = "MPD16",
2484 .ifnum = 0,
2485 .type = QUIRK_MIDI_AKAI,
2486 }
2487},
2488
Clemens Ladisch31ab9522005-09-26 08:55:01 +02002489/* TerraTec devices */
2490{
2491 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0012),
Takashi Iwai86e07d32005-11-17 15:08:02 +01002492 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch31ab9522005-09-26 08:55:01 +02002493 .vendor_name = "TerraTec",
2494 .product_name = "PHASE 26",
2495 .ifnum = 3,
2496 .type = QUIRK_MIDI_STANDARD_INTERFACE
2497 }
2498},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
2500 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0013),
Takashi Iwai86e07d32005-11-17 15:08:02 +01002501 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch31ab9522005-09-26 08:55:01 +02002502 .vendor_name = "TerraTec",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 .product_name = "PHASE 26",
2504 .ifnum = 3,
2505 .type = QUIRK_MIDI_STANDARD_INTERFACE
2506 }
2507},
Clemens Ladischb2b82292006-02-08 12:38:23 +01002508{
Clemens Ladischbc56eff2006-04-13 10:16:08 +02002509 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0014),
2510 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2511 .vendor_name = "TerraTec",
2512 .product_name = "PHASE 26",
2513 .ifnum = 3,
2514 .type = QUIRK_MIDI_STANDARD_INTERFACE
2515 }
2516},
2517{
Andrea Borgiaca85b6b2009-06-02 19:21:17 +02002518 USB_DEVICE(0x0ccd, 0x0028),
Andrea Borgia93bfd012009-06-01 10:48:54 +02002519 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2520 .vendor_name = "TerraTec",
Andrea Borgiad9e89bf2009-06-14 12:16:17 +02002521 .product_name = "Aureon5.1MkII",
Andrea Borgia93bfd012009-06-01 10:48:54 +02002522 .ifnum = QUIRK_NO_INTERFACE
2523 }
2524},
2525{
Clemens Ladischb2b82292006-02-08 12:38:23 +01002526 USB_DEVICE(0x0ccd, 0x0035),
2527 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2528 .vendor_name = "Miditech",
2529 .product_name = "Play'n Roll",
2530 .ifnum = 0,
2531 .type = QUIRK_MIDI_CME
2532 }
2533},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Mark Hills0f28ecd2007-08-10 08:01:54 +02002535/* Stanton/N2IT Final Scratch v1 device ('Scratchamp') */
2536{
2537 USB_DEVICE(0x103d, 0x0100),
2538 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2539 .vendor_name = "Stanton",
2540 .product_name = "ScratchAmp",
2541 .ifnum = QUIRK_NO_INTERFACE
2542 }
2543},
2544{
2545 USB_DEVICE(0x103d, 0x0101),
2546 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2547 .vendor_name = "Stanton",
2548 .product_name = "ScratchAmp",
2549 .ifnum = QUIRK_NO_INTERFACE
2550 }
2551},
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553/* Novation EMS devices */
2554{
2555 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0001),
Takashi Iwai86e07d32005-11-17 15:08:02 +01002556 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 .vendor_name = "Novation",
2558 .product_name = "ReMOTE Audio/XStation",
2559 .ifnum = 4,
2560 .type = QUIRK_MIDI_NOVATION
2561 }
2562},
2563{
2564 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0002),
Takashi Iwai86e07d32005-11-17 15:08:02 +01002565 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 .vendor_name = "Novation",
2567 .product_name = "Speedio",
2568 .ifnum = 3,
2569 .type = QUIRK_MIDI_NOVATION
2570 }
2571},
2572{
Clemens Ladischc7f57212010-10-22 18:20:48 +02002573 USB_DEVICE(0x1235, 0x000e),
2574 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2575 /* .vendor_name = "Novation", */
2576 /* .product_name = "Launchpad", */
2577 .ifnum = 0,
2578 .type = QUIRK_MIDI_RAW_BYTES
2579 }
2580},
2581{
Daniel Mack358b7df2014-01-14 14:37:56 +01002582 USB_DEVICE(0x1235, 0x0010),
2583 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2584 .vendor_name = "Focusrite",
2585 .product_name = "Saffire 6 USB",
2586 .ifnum = QUIRK_ANY_INTERFACE,
2587 .type = QUIRK_COMPOSITE,
2588 .data = (const struct snd_usb_audio_quirk[]) {
2589 {
2590 .ifnum = 0,
2591 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2592 .data = &(const struct audioformat) {
2593 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2594 .channels = 4,
2595 .iface = 0,
2596 .altsetting = 1,
2597 .altset_idx = 1,
2598 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2599 .endpoint = 0x01,
2600 .ep_attr = USB_ENDPOINT_XFER_ISOC,
2601 .rates = SNDRV_PCM_RATE_44100 |
2602 SNDRV_PCM_RATE_48000,
2603 .rate_min = 44100,
2604 .rate_max = 48000,
2605 .nr_rates = 2,
2606 .rate_table = (unsigned int[]) {
2607 44100, 48000
2608 }
2609 }
2610 },
2611 {
2612 .ifnum = 1,
2613 .type = QUIRK_MIDI_RAW_BYTES
2614 },
2615 {
2616 .ifnum = -1
2617 }
2618 }
2619 }
2620},
2621{
Mark Hills5e212332013-03-17 11:07:53 +00002622 USB_DEVICE(0x1235, 0x0018),
2623 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2624 .vendor_name = "Novation",
2625 .product_name = "Twitch",
2626 .ifnum = QUIRK_ANY_INTERFACE,
2627 .type = QUIRK_COMPOSITE,
2628 .data = (const struct snd_usb_audio_quirk[]) {
2629 {
2630 .ifnum = 0,
2631 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2632 .data = & (const struct audioformat) {
2633 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
2634 .channels = 4,
2635 .iface = 0,
2636 .altsetting = 1,
2637 .altset_idx = 1,
2638 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
2639 .endpoint = 0x01,
2640 .ep_attr = USB_ENDPOINT_XFER_ISOC,
2641 .rates = SNDRV_PCM_RATE_44100 |
2642 SNDRV_PCM_RATE_48000,
2643 .rate_min = 44100,
2644 .rate_max = 48000,
2645 .nr_rates = 2,
2646 .rate_table = (unsigned int[]) {
2647 44100, 48000
2648 }
2649 }
2650 },
2651 {
2652 .ifnum = 1,
2653 .type = QUIRK_MIDI_RAW_BYTES
2654 },
2655 {
2656 .ifnum = -1
2657 }
2658 }
2659 }
2660},
2661{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 USB_DEVICE_VENDOR_SPEC(0x1235, 0x4661),
Takashi Iwai86e07d32005-11-17 15:08:02 +01002663 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 .vendor_name = "Novation",
2665 .product_name = "ReMOTE25",
2666 .ifnum = 0,
2667 .type = QUIRK_MIDI_NOVATION
2668 }
2669},
2670
Sebastien Alaiwand39e82d2010-02-16 08:55:08 +01002671/* Access Music devices */
2672{
2673 /* VirusTI Desktop */
2674 USB_DEVICE_VENDOR_SPEC(0x133e, 0x0815),
2675 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2676 .ifnum = QUIRK_ANY_INTERFACE,
2677 .type = QUIRK_COMPOSITE,
2678 .data = &(const struct snd_usb_audio_quirk[]) {
2679 {
2680 .ifnum = 3,
2681 .type = QUIRK_MIDI_FIXED_ENDPOINT,
2682 .data = &(const struct snd_usb_midi_endpoint_info) {
2683 .out_cables = 0x0003,
2684 .in_cables = 0x0003
2685 }
2686 },
2687 {
2688 .ifnum = 4,
2689 .type = QUIRK_IGNORE_INTERFACE
2690 },
2691 {
2692 .ifnum = -1
2693 }
2694 }
2695 }
2696},
2697
Mark Hills3a7788b2007-09-03 08:20:09 +02002698/* */
Clemens Ladisch15944802007-08-29 17:38:14 +02002699{
Mark Hills3a7788b2007-09-03 08:20:09 +02002700 /* aka. Serato Scratch Live DJ Box */
Clemens Ladisch15944802007-08-29 17:38:14 +02002701 USB_DEVICE(0x13e5, 0x0001),
Mark Hills3a7788b2007-09-03 08:20:09 +02002702 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
2703 .vendor_name = "Rane",
2704 .product_name = "SL-1",
2705 .ifnum = QUIRK_NO_INTERFACE
Clemens Ladisch15944802007-08-29 17:38:14 +02002706 }
2707},
2708
Daniel Mack54a8c502011-02-11 11:08:06 +00002709/* Native Instruments MK2 series */
2710{
Daniel Mack759e890f2011-05-18 11:28:41 +02002711 /* Komplete Audio 6 */
Daniel Mack9cdc3522011-04-11 17:56:32 +02002712 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2713 .idVendor = 0x17cc,
2714 .idProduct = 0x1000,
2715},
2716{
Daniel Mack54a8c502011-02-11 11:08:06 +00002717 /* Traktor Audio 6 */
2718 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2719 .idVendor = 0x17cc,
2720 .idProduct = 0x1010,
2721},
2722{
2723 /* Traktor Audio 10 */
2724 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
2725 .idVendor = 0x17cc,
2726 .idProduct = 0x1020,
2727},
2728
Miller Puckette02651d12011-08-04 12:25:56 -07002729/* KeithMcMillen Stringport */
2730{
2731 USB_DEVICE(0x1f38, 0x0001),
2732 .bInterfaceClass = USB_CLASS_AUDIO,
2733},
2734
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01002735/* Miditech devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
Clemens Ladischf38275f2005-07-25 16:17:29 +02002737 USB_DEVICE(0x4752, 0x0011),
Takashi Iwai86e07d32005-11-17 15:08:02 +01002738 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischf38275f2005-07-25 16:17:29 +02002739 .vendor_name = "Miditech",
2740 .product_name = "Midistart-2",
2741 .ifnum = 0,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01002742 .type = QUIRK_MIDI_CME
Clemens Ladischf38275f2005-07-25 16:17:29 +02002743 }
2744},
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01002745
2746/* Central Music devices */
Clemens Ladischf38275f2005-07-25 16:17:29 +02002747{
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01002748 /* this ID used by both Miditech MidiStudio-2 and CME UF-x */
Clemens Ladischf38275f2005-07-25 16:17:29 +02002749 USB_DEVICE(0x7104, 0x2202),
Takashi Iwai86e07d32005-11-17 15:08:02 +01002750 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischf38275f2005-07-25 16:17:29 +02002751 .ifnum = 0,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01002752 .type = QUIRK_MIDI_CME
Clemens Ladischf38275f2005-07-25 16:17:29 +02002753 }
2754},
2755
John S. Gruber52a7a582009-12-27 12:19:59 -05002756/* Hauppauge HVR-950Q and HVR-850 */
2757{
2758 USB_DEVICE_VENDOR_SPEC(0x2040, 0x7200),
2759 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2760 USB_DEVICE_ID_MATCH_INT_CLASS |
2761 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2762 .bInterfaceClass = USB_CLASS_AUDIO,
Daniel Mackde48c7b2010-02-22 23:49:13 +01002763 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
John S. Gruber52a7a582009-12-27 12:19:59 -05002764 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2765 .vendor_name = "Hauppauge",
2766 .product_name = "HVR-950Q",
2767 .ifnum = QUIRK_ANY_INTERFACE,
2768 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2769 }
2770},
2771{
John S Gruberdd2f8c22010-08-01 09:53:37 -04002772 USB_DEVICE_VENDOR_SPEC(0x2040, 0x7210),
2773 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2774 USB_DEVICE_ID_MATCH_INT_CLASS |
2775 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2776 .bInterfaceClass = USB_CLASS_AUDIO,
2777 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2778 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2779 .vendor_name = "Hauppauge",
2780 .product_name = "HVR-950Q",
2781 .ifnum = QUIRK_ANY_INTERFACE,
2782 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2783 }
2784},
2785{
2786 USB_DEVICE_VENDOR_SPEC(0x2040, 0x7217),
2787 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2788 USB_DEVICE_ID_MATCH_INT_CLASS |
2789 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2790 .bInterfaceClass = USB_CLASS_AUDIO,
2791 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2792 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2793 .vendor_name = "Hauppauge",
2794 .product_name = "HVR-950Q",
2795 .ifnum = QUIRK_ANY_INTERFACE,
2796 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2797 }
2798},
2799{
2800 USB_DEVICE_VENDOR_SPEC(0x2040, 0x721b),
2801 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2802 USB_DEVICE_ID_MATCH_INT_CLASS |
2803 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2804 .bInterfaceClass = USB_CLASS_AUDIO,
2805 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2806 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2807 .vendor_name = "Hauppauge",
2808 .product_name = "HVR-950Q",
2809 .ifnum = QUIRK_ANY_INTERFACE,
2810 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2811 }
2812},
2813{
2814 USB_DEVICE_VENDOR_SPEC(0x2040, 0x721e),
2815 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2816 USB_DEVICE_ID_MATCH_INT_CLASS |
2817 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2818 .bInterfaceClass = USB_CLASS_AUDIO,
2819 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2820 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2821 .vendor_name = "Hauppauge",
2822 .product_name = "HVR-950Q",
2823 .ifnum = QUIRK_ANY_INTERFACE,
2824 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2825 }
2826},
2827{
2828 USB_DEVICE_VENDOR_SPEC(0x2040, 0x721f),
2829 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2830 USB_DEVICE_ID_MATCH_INT_CLASS |
2831 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2832 .bInterfaceClass = USB_CLASS_AUDIO,
2833 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2834 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2835 .vendor_name = "Hauppauge",
2836 .product_name = "HVR-950Q",
2837 .ifnum = QUIRK_ANY_INTERFACE,
2838 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2839 }
2840},
2841{
Daniel Mack358b7df2014-01-14 14:37:56 +01002842 USB_DEVICE_VENDOR_SPEC(0x2040, 0x7240),
2843 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2844 USB_DEVICE_ID_MATCH_INT_CLASS |
2845 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2846 .bInterfaceClass = USB_CLASS_AUDIO,
2847 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2848 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2849 .vendor_name = "Hauppauge",
2850 .product_name = "HVR-850",
2851 .ifnum = QUIRK_ANY_INTERFACE,
2852 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2853 }
2854},
2855{
John S Gruberdd2f8c22010-08-01 09:53:37 -04002856 USB_DEVICE_VENDOR_SPEC(0x2040, 0x7280),
2857 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2858 USB_DEVICE_ID_MATCH_INT_CLASS |
2859 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2860 .bInterfaceClass = USB_CLASS_AUDIO,
2861 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2862 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2863 .vendor_name = "Hauppauge",
2864 .product_name = "HVR-950Q",
2865 .ifnum = QUIRK_ANY_INTERFACE,
2866 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2867 }
2868},
2869{
2870 USB_DEVICE_VENDOR_SPEC(0x0fd9, 0x0008),
2871 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
2872 USB_DEVICE_ID_MATCH_INT_CLASS |
2873 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
2874 .bInterfaceClass = USB_CLASS_AUDIO,
2875 .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
2876 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2877 .vendor_name = "Hauppauge",
2878 .product_name = "HVR-950Q",
2879 .ifnum = QUIRK_ANY_INTERFACE,
2880 .type = QUIRK_AUDIO_ALIGN_TRANSFER,
2881 }
2882},
John S. Gruber52a7a582009-12-27 12:19:59 -05002883
Chris J Arges40717382010-02-17 12:12:52 -06002884/* Digidesign Mbox */
2885{
2886 /* Thanks to Clemens Ladisch <clemens@ladisch.de> */
2887 USB_DEVICE(0x0dba, 0x1000),
2888 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2889 .vendor_name = "Digidesign",
2890 .product_name = "MBox",
2891 .ifnum = QUIRK_ANY_INTERFACE,
2892 .type = QUIRK_COMPOSITE,
2893 .data = (const struct snd_usb_audio_quirk[]){
2894 {
2895 .ifnum = 0,
Damien Zammitc63fcb92014-11-12 01:09:55 +11002896 .type = QUIRK_AUDIO_STANDARD_MIXER,
Chris J Arges40717382010-02-17 12:12:52 -06002897 },
2898 {
2899 .ifnum = 1,
2900 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2901 .data = &(const struct audioformat) {
Clemens Ladisch29088fe2010-03-04 19:46:16 +01002902 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
Chris J Arges40717382010-02-17 12:12:52 -06002903 .channels = 2,
2904 .iface = 1,
2905 .altsetting = 1,
2906 .altset_idx = 1,
Damien Zammitc63fcb92014-11-12 01:09:55 +11002907 .attributes = 0x4,
Chris J Arges40717382010-02-17 12:12:52 -06002908 .endpoint = 0x02,
Damien Zammitc63fcb92014-11-12 01:09:55 +11002909 .ep_attr = USB_ENDPOINT_XFER_ISOC |
2910 USB_ENDPOINT_SYNC_SYNC,
2911 .maxpacksize = 0x130,
2912 .rates = SNDRV_PCM_RATE_48000,
2913 .rate_min = 48000,
Chris J Arges40717382010-02-17 12:12:52 -06002914 .rate_max = 48000,
Damien Zammitc63fcb92014-11-12 01:09:55 +11002915 .nr_rates = 1,
Chris J Arges40717382010-02-17 12:12:52 -06002916 .rate_table = (unsigned int[]) {
Damien Zammitc63fcb92014-11-12 01:09:55 +11002917 48000
2918 }
2919 }
2920 },
2921 {
2922 .ifnum = 1,
2923 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2924 .data = &(const struct audioformat) {
2925 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2926 .channels = 2,
2927 .iface = 1,
2928 .altsetting = 1,
2929 .altset_idx = 1,
2930 .attributes = 0x4,
2931 .endpoint = 0x81,
2932 .ep_attr = USB_ENDPOINT_XFER_ISOC |
2933 USB_ENDPOINT_SYNC_ASYNC,
2934 .maxpacksize = 0x130,
2935 .rates = SNDRV_PCM_RATE_48000,
2936 .rate_min = 48000,
2937 .rate_max = 48000,
2938 .nr_rates = 1,
2939 .rate_table = (unsigned int[]) {
2940 48000
Chris J Arges40717382010-02-17 12:12:52 -06002941 }
2942 }
2943 },
2944 {
2945 .ifnum = -1
2946 }
2947 }
Chris J Arges40717382010-02-17 12:12:52 -06002948 }
2949},
Damien Zammitcb998642012-12-19 11:27:22 +01002950
2951/* DIGIDESIGN MBOX 2 */
2952{
2953 USB_DEVICE(0x0dba, 0x3000),
2954 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
2955 .vendor_name = "Digidesign",
2956 .product_name = "Mbox 2",
2957 .ifnum = QUIRK_ANY_INTERFACE,
2958 .type = QUIRK_COMPOSITE,
2959 .data = (const struct snd_usb_audio_quirk[]) {
2960 {
2961 .ifnum = 0,
2962 .type = QUIRK_IGNORE_INTERFACE
2963 },
2964 {
2965 .ifnum = 1,
2966 .type = QUIRK_IGNORE_INTERFACE
2967 },
2968 {
2969 .ifnum = 2,
2970 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2971 .data = &(const struct audioformat) {
2972 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2973 .channels = 2,
2974 .iface = 2,
2975 .altsetting = 2,
2976 .altset_idx = 1,
2977 .attributes = 0x00,
2978 .endpoint = 0x03,
2979 .ep_attr = USB_ENDPOINT_SYNC_ASYNC,
Damien Zammitcb998642012-12-19 11:27:22 +01002980 .rates = SNDRV_PCM_RATE_48000,
2981 .rate_min = 48000,
2982 .rate_max = 48000,
2983 .nr_rates = 1,
2984 .rate_table = (unsigned int[]) {
2985 48000
2986 }
2987 }
2988 },
2989 {
2990 .ifnum = 3,
2991 .type = QUIRK_IGNORE_INTERFACE
2992 },
2993 {
2994 .ifnum = 4,
2995 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
2996 .data = &(const struct audioformat) {
2997 .formats = SNDRV_PCM_FMTBIT_S24_3BE,
2998 .channels = 2,
2999 .iface = 4,
3000 .altsetting = 2,
3001 .altset_idx = 1,
3002 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3003 .endpoint = 0x85,
3004 .ep_attr = USB_ENDPOINT_SYNC_SYNC,
Damien Zammitcb998642012-12-19 11:27:22 +01003005 .rates = SNDRV_PCM_RATE_48000,
3006 .rate_min = 48000,
3007 .rate_max = 48000,
3008 .nr_rates = 1,
3009 .rate_table = (unsigned int[]) {
3010 48000
3011 }
3012 }
3013 },
3014 {
3015 .ifnum = 5,
3016 .type = QUIRK_IGNORE_INTERFACE
3017 },
3018 {
3019 .ifnum = 6,
Damien Zammitb7b435e2013-01-04 09:51:44 +01003020 .type = QUIRK_MIDI_MIDIMAN,
Damien Zammitcb998642012-12-19 11:27:22 +01003021 .data = &(const struct snd_usb_midi_endpoint_info) {
3022 .out_ep = 0x02,
3023 .out_cables = 0x0001,
3024 .in_ep = 0x81,
3025 .in_interval = 0x01,
3026 .in_cables = 0x0001
3027 }
3028 },
3029 {
3030 .ifnum = -1
3031 }
3032 }
3033 }
3034},
Oto Petřík613769f2012-09-24 14:25:04 +02003035{
3036 /* Tascam US122 MKII - playback-only support */
3037 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
3038 .idVendor = 0x0644,
3039 .idProduct = 0x8021,
3040 .bInterfaceClass = USB_CLASS_AUDIO,
3041 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3042 .vendor_name = "TASCAM",
3043 .product_name = "US122 MKII",
3044 .ifnum = QUIRK_ANY_INTERFACE,
3045 .type = QUIRK_COMPOSITE,
3046 .data = (const struct snd_usb_audio_quirk[]) {
3047 {
3048 .ifnum = 0,
3049 .type = QUIRK_IGNORE_INTERFACE
3050 },
3051 {
3052 .ifnum = 1,
3053 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3054 .data = &(const struct audioformat) {
3055 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3056 .channels = 2,
3057 .iface = 1,
3058 .altsetting = 1,
3059 .altset_idx = 1,
3060 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3061 .endpoint = 0x02,
3062 .ep_attr = USB_ENDPOINT_XFER_ISOC,
3063 .rates = SNDRV_PCM_RATE_44100 |
3064 SNDRV_PCM_RATE_48000 |
3065 SNDRV_PCM_RATE_88200 |
3066 SNDRV_PCM_RATE_96000,
3067 .rate_min = 44100,
3068 .rate_max = 96000,
3069 .nr_rates = 4,
3070 .rate_table = (unsigned int[]) {
3071 44100, 48000, 88200, 96000
3072 }
3073 }
3074 },
3075 {
3076 .ifnum = -1
3077 }
3078 }
3079 }
3080},
Chris J Arges40717382010-02-17 12:12:52 -06003081
Marko Friedemannc05fce52012-09-03 10:12:40 +02003082/* Microsoft XboxLive Headset/Xbox Communicator */
3083{
3084 USB_DEVICE(0x045e, 0x0283),
3085 .bInterfaceClass = USB_CLASS_PER_INTERFACE,
3086 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3087 .vendor_name = "Microsoft",
3088 .product_name = "XboxLive Headset/Xbox Communicator",
3089 .ifnum = QUIRK_ANY_INTERFACE,
3090 .type = QUIRK_COMPOSITE,
3091 .data = &(const struct snd_usb_audio_quirk[]) {
3092 {
3093 /* playback */
3094 .ifnum = 0,
3095 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3096 .data = &(const struct audioformat) {
3097 .formats = SNDRV_PCM_FMTBIT_S16_LE,
3098 .channels = 1,
3099 .iface = 0,
3100 .altsetting = 0,
3101 .altset_idx = 0,
3102 .attributes = 0,
3103 .endpoint = 0x04,
3104 .ep_attr = 0x05,
3105 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3106 .rate_min = 22050,
3107 .rate_max = 22050
3108 }
3109 },
3110 {
3111 /* capture */
3112 .ifnum = 1,
3113 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3114 .data = &(const struct audioformat) {
3115 .formats = SNDRV_PCM_FMTBIT_S16_LE,
3116 .channels = 1,
3117 .iface = 1,
3118 .altsetting = 0,
3119 .altset_idx = 0,
3120 .attributes = 0,
3121 .endpoint = 0x85,
3122 .ep_attr = 0x05,
3123 .rates = SNDRV_PCM_RATE_CONTINUOUS,
3124 .rate_min = 16000,
3125 .rate_max = 16000
3126 }
3127 },
3128 {
3129 .ifnum = -1
3130 }
3131 }
3132 }
3133},
3134
Didier Villevaloisc9024662012-10-21 18:29:12 +02003135/* Reloop Play */
3136{
3137 USB_DEVICE(0x200c, 0x100b),
3138 .bInterfaceClass = USB_CLASS_PER_INTERFACE,
3139 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3140 .ifnum = QUIRK_ANY_INTERFACE,
3141 .type = QUIRK_COMPOSITE,
3142 .data = &(const struct snd_usb_audio_quirk[]) {
3143 {
3144 .ifnum = 0,
3145 .type = QUIRK_AUDIO_STANDARD_MIXER,
3146 },
3147 {
3148 .ifnum = 1,
3149 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
3150 .data = &(const struct audioformat) {
3151 .formats = SNDRV_PCM_FMTBIT_S24_3LE,
3152 .channels = 4,
3153 .iface = 1,
3154 .altsetting = 1,
3155 .altset_idx = 1,
3156 .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
3157 .endpoint = 0x01,
3158 .ep_attr = USB_ENDPOINT_SYNC_ADAPTIVE,
3159 .rates = SNDRV_PCM_RATE_44100 |
3160 SNDRV_PCM_RATE_48000,
3161 .rate_min = 44100,
3162 .rate_max = 48000,
3163 .nr_rates = 2,
3164 .rate_table = (unsigned int[]) {
3165 44100, 48000
3166 }
3167 }
3168 },
3169 {
3170 .ifnum = -1
3171 }
3172 }
3173 }
3174},
3175
Clemens Ladischf38275f2005-07-25 16:17:29 +02003176{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 /*
Panu Matilainendacacb02014-11-30 18:45:40 +02003178 * ZOOM R16/24 in audio interface mode.
3179 * Mixer descriptors are garbage, further quirks will be needed
3180 * to make any of it functional, thus disabled for now.
3181 * Playback stream appears to start and run fine but no sound
3182 * is produced, so also disabled for now.
3183 */
3184 USB_DEVICE(0x1686, 0x00dd),
3185 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
3186 .ifnum = QUIRK_ANY_INTERFACE,
3187 .type = QUIRK_COMPOSITE,
3188 .data = (const struct snd_usb_audio_quirk[]) {
3189 {
3190 /* Mixer */
3191 .ifnum = 0,
3192 .type = QUIRK_IGNORE_INTERFACE,
3193 },
3194 {
3195 /* Playback */
3196 .ifnum = 1,
3197 .type = QUIRK_IGNORE_INTERFACE,
3198 },
3199 {
3200 /* Capture */
3201 .ifnum = 2,
3202 .type = QUIRK_AUDIO_STANDARD_INTERFACE,
3203 },
3204 {
3205 /* Midi */
3206 .ifnum = 3,
3207 .type = QUIRK_MIDI_STANDARD_INTERFACE
3208 },
3209 {
3210 .ifnum = -1
3211 },
3212 }
3213 }
3214},
3215
3216{
3217 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 * Some USB MIDI devices don't have an audio control interface,
3219 * so we have to grab MIDI streaming interfaces here.
3220 */
3221 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS |
3222 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
3223 .bInterfaceClass = USB_CLASS_AUDIO,
Daniel Mackde48c7b2010-02-22 23:49:13 +01003224 .bInterfaceSubClass = USB_SUBCLASS_MIDISTREAMING,
Takashi Iwai86e07d32005-11-17 15:08:02 +01003225 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 .ifnum = QUIRK_ANY_INTERFACE,
3227 .type = QUIRK_MIDI_STANDARD_INTERFACE
3228 }
3229},
3230
Przemek Rudy066624c2013-06-27 23:52:33 +02003231{
3232 /*
3233 * The original product_name is "USB Sound Device", however this name
3234 * is also used by the CM106 based cards, so make it unique.
3235 */
3236 USB_DEVICE(0x0d8c, 0x0103),
3237 .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
3238 .product_name = "Audio Advantage MicroII",
3239 .ifnum = QUIRK_NO_INTERFACE
3240 }
3241},
3242
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243#undef USB_DEVICE_VENDOR_SPEC