blob: 3f68359d4942e9abe33d0ade00c53f30bd212d9c [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
Clemens Ladisch25a47b62008-02-25 11:04:19 +010042/* Creative/E-Mu devices */
43{
44 USB_DEVICE(0x041e, 0x3010),
45 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
46 .vendor_name = "Creative Labs",
47 .product_name = "Sound Blaster MP3+",
48 .ifnum = QUIRK_NO_INTERFACE
49 }
50},
51{
52 /* E-Mu 0202 USB */
53 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
54 .idVendor = 0x041e,
55 .idProduct = 0x3f02,
56 .bInterfaceClass = USB_CLASS_AUDIO,
57},
58{
59 /* E-Mu 0404 USB */
60 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
61 .idVendor = 0x041e,
62 .idProduct = 0x3f04,
63 .bInterfaceClass = USB_CLASS_AUDIO,
64},
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
Daniel Drakea9121452007-05-07 09:27:05 +020067 * Logitech QuickCam: bDeviceClass is vendor-specific, so generic interface
68 * class matches do not take effect without an explicit ID match.
69 */
70{
71 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
72 USB_DEVICE_ID_MATCH_INT_CLASS |
73 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
74 .idVendor = 0x046d,
Daniel Draked4170452007-05-10 08:52:19 +020075 .idProduct = 0x0850,
76 .bInterfaceClass = USB_CLASS_AUDIO,
77 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
78},
79{
80 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
81 USB_DEVICE_ID_MATCH_INT_CLASS |
82 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
83 .idVendor = 0x046d,
George Shapovalovc34532d2007-07-09 10:42:35 +020084 .idProduct = 0x08ae,
85 .bInterfaceClass = USB_CLASS_AUDIO,
86 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
87},
88{
89 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
90 USB_DEVICE_ID_MATCH_INT_CLASS |
91 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
92 .idVendor = 0x046d,
Ritesh Raj Sarrafcfc24ec2007-07-10 13:03:57 +020093 .idProduct = 0x08c6,
94 .bInterfaceClass = USB_CLASS_AUDIO,
95 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
96},
97{
98 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
99 USB_DEVICE_ID_MATCH_INT_CLASS |
100 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
101 .idVendor = 0x046d,
Daniel Drakea9121452007-05-07 09:27:05 +0200102 .idProduct = 0x08f0,
103 .bInterfaceClass = USB_CLASS_AUDIO,
104 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
105},
106{
107 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
108 USB_DEVICE_ID_MATCH_INT_CLASS |
109 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
110 .idVendor = 0x046d,
Dawid Wrobel31127f22007-10-22 11:57:17 +0200111 .idProduct = 0x08f5,
112 .bInterfaceClass = USB_CLASS_AUDIO,
113 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
114},
115{
116 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
117 USB_DEVICE_ID_MATCH_INT_CLASS |
118 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
119 .idVendor = 0x046d,
Daniel Drakea9121452007-05-07 09:27:05 +0200120 .idProduct = 0x08f6,
121 .bInterfaceClass = USB_CLASS_AUDIO,
122 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
123},
Clemens Ladisch25a47b62008-02-25 11:04:19 +0100124
James Courtier-Dutton1e741902007-10-08 18:49:43 +0100125/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * Yamaha devices
127 */
128
129#define YAMAHA_DEVICE(id, name) { \
130 USB_DEVICE(0x0499, id), \
Takashi Iwai86e07d32005-11-17 15:08:02 +0100131 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .vendor_name = "Yamaha", \
133 .product_name = name, \
134 .ifnum = QUIRK_ANY_INTERFACE, \
135 .type = QUIRK_MIDI_YAMAHA \
136 } \
137}
138#define YAMAHA_INTERFACE(id, intf, name) { \
139 USB_DEVICE_VENDOR_SPEC(0x0499, id), \
Takashi Iwai86e07d32005-11-17 15:08:02 +0100140 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .vendor_name = "Yamaha", \
142 .product_name = name, \
143 .ifnum = intf, \
144 .type = QUIRK_MIDI_YAMAHA \
145 } \
146}
147YAMAHA_DEVICE(0x1000, "UX256"),
148YAMAHA_DEVICE(0x1001, "MU1000"),
149YAMAHA_DEVICE(0x1002, "MU2000"),
150YAMAHA_DEVICE(0x1003, "MU500"),
151YAMAHA_INTERFACE(0x1004, 3, "UW500"),
152YAMAHA_DEVICE(0x1005, "MOTIF6"),
153YAMAHA_DEVICE(0x1006, "MOTIF7"),
154YAMAHA_DEVICE(0x1007, "MOTIF8"),
155YAMAHA_DEVICE(0x1008, "UX96"),
156YAMAHA_DEVICE(0x1009, "UX16"),
157YAMAHA_INTERFACE(0x100a, 3, "EOS BX"),
158YAMAHA_DEVICE(0x100c, "UC-MX"),
159YAMAHA_DEVICE(0x100d, "UC-KX"),
160YAMAHA_DEVICE(0x100e, "S08"),
161YAMAHA_DEVICE(0x100f, "CLP-150"),
162YAMAHA_DEVICE(0x1010, "CLP-170"),
163YAMAHA_DEVICE(0x1011, "P-250"),
164YAMAHA_DEVICE(0x1012, "TYROS"),
165YAMAHA_DEVICE(0x1013, "PF-500"),
166YAMAHA_DEVICE(0x1014, "S90"),
167YAMAHA_DEVICE(0x1015, "MOTIF-R"),
Clemens Ladisch4ccb4a42006-03-15 12:24:19 +0100168YAMAHA_DEVICE(0x1016, "MDP-5"),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169YAMAHA_DEVICE(0x1017, "CVP-204"),
170YAMAHA_DEVICE(0x1018, "CVP-206"),
171YAMAHA_DEVICE(0x1019, "CVP-208"),
172YAMAHA_DEVICE(0x101a, "CVP-210"),
173YAMAHA_DEVICE(0x101b, "PSR-1100"),
174YAMAHA_DEVICE(0x101c, "PSR-2100"),
175YAMAHA_DEVICE(0x101d, "CLP-175"),
176YAMAHA_DEVICE(0x101e, "PSR-K1"),
Clemens Ladisch4ccb4a42006-03-15 12:24:19 +0100177YAMAHA_DEVICE(0x101f, "EZ-J24"),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178YAMAHA_DEVICE(0x1020, "EZ-250i"),
179YAMAHA_DEVICE(0x1021, "MOTIF ES 6"),
180YAMAHA_DEVICE(0x1022, "MOTIF ES 7"),
181YAMAHA_DEVICE(0x1023, "MOTIF ES 8"),
182YAMAHA_DEVICE(0x1024, "CVP-301"),
183YAMAHA_DEVICE(0x1025, "CVP-303"),
184YAMAHA_DEVICE(0x1026, "CVP-305"),
185YAMAHA_DEVICE(0x1027, "CVP-307"),
186YAMAHA_DEVICE(0x1028, "CVP-309"),
187YAMAHA_DEVICE(0x1029, "CVP-309GP"),
188YAMAHA_DEVICE(0x102a, "PSR-1500"),
189YAMAHA_DEVICE(0x102b, "PSR-3000"),
190YAMAHA_DEVICE(0x102e, "ELS-01/01C"),
191YAMAHA_DEVICE(0x1030, "PSR-295/293"),
192YAMAHA_DEVICE(0x1031, "DGX-205/203"),
193YAMAHA_DEVICE(0x1032, "DGX-305"),
194YAMAHA_DEVICE(0x1033, "DGX-505"),
195YAMAHA_DEVICE(0x1034, NULL),
196YAMAHA_DEVICE(0x1035, NULL),
197YAMAHA_DEVICE(0x1036, NULL),
198YAMAHA_DEVICE(0x1037, NULL),
199YAMAHA_DEVICE(0x1038, NULL),
200YAMAHA_DEVICE(0x1039, NULL),
201YAMAHA_DEVICE(0x103a, NULL),
202YAMAHA_DEVICE(0x103b, NULL),
203YAMAHA_DEVICE(0x103c, NULL),
Clemens Ladisch0ac2ac02005-07-01 16:19:39 +0200204YAMAHA_DEVICE(0x103d, NULL),
Clemens Ladischf542fda2005-09-20 09:06:36 +0200205YAMAHA_DEVICE(0x103e, NULL),
206YAMAHA_DEVICE(0x103f, NULL),
207YAMAHA_DEVICE(0x1040, NULL),
208YAMAHA_DEVICE(0x1041, NULL),
Clemens Ladischf1265392006-07-21 10:46:18 +0200209YAMAHA_DEVICE(0x1042, NULL),
210YAMAHA_DEVICE(0x1043, NULL),
211YAMAHA_DEVICE(0x1044, NULL),
212YAMAHA_DEVICE(0x1045, NULL),
Clemens Ladischc85ceac2008-07-10 11:01:06 +0200213YAMAHA_INTERFACE(0x104e, 0, NULL),
Clemens Ladisch83a1a392008-07-10 11:05:42 +0200214YAMAHA_DEVICE(0x104f, NULL),
215YAMAHA_DEVICE(0x1050, NULL),
216YAMAHA_DEVICE(0x1051, NULL),
217YAMAHA_DEVICE(0x1052, NULL),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218YAMAHA_DEVICE(0x2000, "DGP-7"),
219YAMAHA_DEVICE(0x2001, "DGP-5"),
220YAMAHA_DEVICE(0x2002, NULL),
221YAMAHA_DEVICE(0x5000, "CS1D"),
222YAMAHA_DEVICE(0x5001, "DSP1D"),
223YAMAHA_DEVICE(0x5002, "DME32"),
224YAMAHA_DEVICE(0x5003, "DM2000"),
225YAMAHA_DEVICE(0x5004, "02R96"),
226YAMAHA_DEVICE(0x5005, "ACU16-C"),
227YAMAHA_DEVICE(0x5006, "NHB32-C"),
228YAMAHA_DEVICE(0x5007, "DM1000"),
229YAMAHA_DEVICE(0x5008, "01V96"),
230YAMAHA_DEVICE(0x5009, "SPX2000"),
231YAMAHA_DEVICE(0x500a, "PM5D"),
232YAMAHA_DEVICE(0x500b, "DME64N"),
233YAMAHA_DEVICE(0x500c, "DME24N"),
234YAMAHA_DEVICE(0x500d, NULL),
235YAMAHA_DEVICE(0x500e, NULL),
Clemens Ladischf1265392006-07-21 10:46:18 +0200236YAMAHA_DEVICE(0x500f, NULL),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237YAMAHA_DEVICE(0x7000, "DTX"),
238YAMAHA_DEVICE(0x7010, "UB99"),
239#undef YAMAHA_DEVICE
240#undef YAMAHA_INTERFACE
241
242/*
243 * Roland/RolandED/Edirol/BOSS devices
244 */
245{
246 USB_DEVICE(0x0582, 0x0000),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100247 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .vendor_name = "Roland",
249 .product_name = "UA-100",
250 .ifnum = QUIRK_ANY_INTERFACE,
251 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100252 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 {
254 .ifnum = 0,
255 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
256 .data = & (const struct audioformat) {
257 .format = SNDRV_PCM_FORMAT_S16_LE,
258 .channels = 4,
259 .iface = 0,
260 .altsetting = 1,
261 .altset_idx = 1,
262 .attributes = 0,
263 .endpoint = 0x01,
264 .ep_attr = 0x09,
265 .rates = SNDRV_PCM_RATE_CONTINUOUS,
266 .rate_min = 44100,
267 .rate_max = 44100,
268 }
269 },
270 {
271 .ifnum = 1,
272 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
273 .data = & (const struct audioformat) {
274 .format = SNDRV_PCM_FORMAT_S16_LE,
275 .channels = 2,
276 .iface = 1,
277 .altsetting = 1,
278 .altset_idx = 1,
279 .attributes = EP_CS_ATTR_FILL_MAX,
280 .endpoint = 0x81,
281 .ep_attr = 0x05,
282 .rates = SNDRV_PCM_RATE_CONTINUOUS,
283 .rate_min = 44100,
284 .rate_max = 44100,
285 }
286 },
287 {
288 .ifnum = 2,
289 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100290 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 .out_cables = 0x0007,
292 .in_cables = 0x0007
293 }
294 },
295 {
296 .ifnum = -1
297 }
298 }
299 }
300},
301{
302 USB_DEVICE(0x0582, 0x0002),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100303 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 .vendor_name = "EDIROL",
305 .product_name = "UM-4",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200306 .ifnum = QUIRK_ANY_INTERFACE,
307 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100308 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200309 {
310 .ifnum = 0,
311 .type = QUIRK_IGNORE_INTERFACE
312 },
313 {
314 .ifnum = 1,
315 .type = QUIRK_IGNORE_INTERFACE
316 },
317 {
318 .ifnum = 2,
319 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100320 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200321 .out_cables = 0x000f,
322 .in_cables = 0x000f
323 }
324 },
325 {
326 .ifnum = -1
327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329 }
330},
331{
332 USB_DEVICE(0x0582, 0x0003),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100333 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 .vendor_name = "Roland",
335 .product_name = "SC-8850",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200336 .ifnum = QUIRK_ANY_INTERFACE,
337 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100338 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200339 {
340 .ifnum = 0,
341 .type = QUIRK_IGNORE_INTERFACE
342 },
343 {
344 .ifnum = 1,
345 .type = QUIRK_IGNORE_INTERFACE
346 },
347 {
348 .ifnum = 2,
349 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100350 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200351 .out_cables = 0x003f,
352 .in_cables = 0x003f
353 }
354 },
355 {
356 .ifnum = -1
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359 }
360},
361{
362 USB_DEVICE(0x0582, 0x0004),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100363 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 .vendor_name = "Roland",
365 .product_name = "U-8",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200366 .ifnum = QUIRK_ANY_INTERFACE,
367 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100368 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200369 {
370 .ifnum = 0,
371 .type = QUIRK_IGNORE_INTERFACE
372 },
373 {
374 .ifnum = 1,
375 .type = QUIRK_IGNORE_INTERFACE
376 },
377 {
378 .ifnum = 2,
379 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100380 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200381 .out_cables = 0x0005,
382 .in_cables = 0x0005
383 }
384 },
385 {
386 .ifnum = -1
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389 }
390},
391{
Clemens Ladisch119c4ff2006-01-19 08:25:19 +0100392 /* Has ID 0x0099 when not in "Advanced Driver" mode.
393 * The UM-2EX has only one input, but we cannot detect this. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 USB_DEVICE(0x0582, 0x0005),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100395 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 .vendor_name = "EDIROL",
397 .product_name = "UM-2",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200398 .ifnum = QUIRK_ANY_INTERFACE,
399 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100400 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200401 {
402 .ifnum = 0,
403 .type = QUIRK_IGNORE_INTERFACE
404 },
405 {
406 .ifnum = 1,
407 .type = QUIRK_IGNORE_INTERFACE
408 },
409 {
410 .ifnum = 2,
411 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100412 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200413 .out_cables = 0x0003,
414 .in_cables = 0x0003
415 }
416 },
417 {
418 .ifnum = -1
419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421 }
422},
423{
424 USB_DEVICE(0x0582, 0x0007),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100425 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 .vendor_name = "Roland",
427 .product_name = "SC-8820",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200428 .ifnum = QUIRK_ANY_INTERFACE,
429 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100430 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200431 {
432 .ifnum = 0,
433 .type = QUIRK_IGNORE_INTERFACE
434 },
435 {
436 .ifnum = 1,
437 .type = QUIRK_IGNORE_INTERFACE
438 },
439 {
440 .ifnum = 2,
441 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100442 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200443 .out_cables = 0x0013,
444 .in_cables = 0x0013
445 }
446 },
447 {
448 .ifnum = -1
449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451 }
452},
453{
454 USB_DEVICE(0x0582, 0x0008),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100455 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 .vendor_name = "Roland",
457 .product_name = "PC-300",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200458 .ifnum = QUIRK_ANY_INTERFACE,
459 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100460 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200461 {
462 .ifnum = 0,
463 .type = QUIRK_IGNORE_INTERFACE
464 },
465 {
466 .ifnum = 1,
467 .type = QUIRK_IGNORE_INTERFACE
468 },
469 {
470 .ifnum = 2,
471 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100472 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200473 .out_cables = 0x0001,
474 .in_cables = 0x0001
475 }
476 },
477 {
478 .ifnum = -1
479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481 }
482},
483{
Clemens Ladisch119c4ff2006-01-19 08:25:19 +0100484 /* has ID 0x009d when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 USB_DEVICE(0x0582, 0x0009),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100486 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 .vendor_name = "EDIROL",
488 .product_name = "UM-1",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200489 .ifnum = QUIRK_ANY_INTERFACE,
490 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100491 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200492 {
493 .ifnum = 0,
494 .type = QUIRK_IGNORE_INTERFACE
495 },
496 {
497 .ifnum = 1,
498 .type = QUIRK_IGNORE_INTERFACE
499 },
500 {
501 .ifnum = 2,
502 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100503 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200504 .out_cables = 0x0001,
505 .in_cables = 0x0001
506 }
507 },
508 {
509 .ifnum = -1
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 }
513},
514{
515 USB_DEVICE(0x0582, 0x000b),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100516 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 .vendor_name = "Roland",
518 .product_name = "SK-500",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200519 .ifnum = QUIRK_ANY_INTERFACE,
520 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100521 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200522 {
523 .ifnum = 0,
524 .type = QUIRK_IGNORE_INTERFACE
525 },
526 {
527 .ifnum = 1,
528 .type = QUIRK_IGNORE_INTERFACE
529 },
530 {
531 .ifnum = 2,
532 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100533 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200534 .out_cables = 0x0013,
535 .in_cables = 0x0013
536 }
537 },
538 {
539 .ifnum = -1
540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542 }
543},
544{
545 /* thanks to Emiliano Grilli <emillo@libero.it>
546 * for helping researching this data */
547 USB_DEVICE(0x0582, 0x000c),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100548 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 .vendor_name = "Roland",
550 .product_name = "SC-D70",
551 .ifnum = QUIRK_ANY_INTERFACE,
552 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100553 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 {
555 .ifnum = 0,
556 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
557 .data = & (const struct audioformat) {
558 .format = SNDRV_PCM_FORMAT_S24_3LE,
559 .channels = 2,
560 .iface = 0,
561 .altsetting = 1,
562 .altset_idx = 1,
563 .attributes = 0,
564 .endpoint = 0x01,
565 .ep_attr = 0x01,
566 .rates = SNDRV_PCM_RATE_CONTINUOUS,
567 .rate_min = 44100,
568 .rate_max = 44100,
569 }
570 },
571 {
572 .ifnum = 1,
573 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
574 .data = & (const struct audioformat) {
575 .format = SNDRV_PCM_FORMAT_S24_3LE,
576 .channels = 2,
577 .iface = 1,
578 .altsetting = 1,
579 .altset_idx = 1,
580 .attributes = 0,
581 .endpoint = 0x81,
582 .ep_attr = 0x01,
583 .rates = SNDRV_PCM_RATE_CONTINUOUS,
584 .rate_min = 44100,
585 .rate_max = 44100,
586 }
587 },
588 {
589 .ifnum = 2,
590 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100591 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 .out_cables = 0x0007,
593 .in_cables = 0x0007
594 }
595 },
596 {
597 .ifnum = -1
598 }
599 }
600 }
601},
602{ /*
603 * This quirk is for the "Advanced Driver" mode of the Edirol UA-5.
604 * If the advanced mode switch at the back of the unit is off, the
605 * UA-5 has ID 0x0582/0x0011 and is standard compliant (no quirks),
606 * but offers only 16-bit PCM.
607 * In advanced mode, the UA-5 will output S24_3LE samples (two
608 * channels) at the rate indicated on the front switch, including
609 * the 96kHz sample rate.
610 */
611 USB_DEVICE(0x0582, 0x0010),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100612 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 .vendor_name = "EDIROL",
614 .product_name = "UA-5",
615 .ifnum = QUIRK_ANY_INTERFACE,
616 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100617 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 {
619 .ifnum = 1,
620 .type = QUIRK_AUDIO_STANDARD_INTERFACE
621 },
622 {
623 .ifnum = 2,
624 .type = QUIRK_AUDIO_STANDARD_INTERFACE
625 },
626 {
627 .ifnum = -1
628 }
629 }
630 }
631},
632{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200633 /* has ID 0x0013 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 USB_DEVICE(0x0582, 0x0012),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100635 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 .vendor_name = "Roland",
637 .product_name = "XV-5050",
638 .ifnum = 0,
639 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100640 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 .out_cables = 0x0001,
642 .in_cables = 0x0001
643 }
644 }
645},
646{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200647 /* has ID 0x0015 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 USB_DEVICE(0x0582, 0x0014),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100649 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 .vendor_name = "EDIROL",
651 .product_name = "UM-880",
652 .ifnum = 0,
653 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100654 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 .out_cables = 0x01ff,
656 .in_cables = 0x01ff
657 }
658 }
659},
660{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200661 /* has ID 0x0017 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 USB_DEVICE(0x0582, 0x0016),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100663 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 .vendor_name = "EDIROL",
665 .product_name = "SD-90",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200666 .ifnum = QUIRK_ANY_INTERFACE,
667 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100668 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200669 {
670 .ifnum = 0,
671 .type = QUIRK_IGNORE_INTERFACE
672 },
673 {
674 .ifnum = 1,
675 .type = QUIRK_IGNORE_INTERFACE
676 },
677 {
678 .ifnum = 2,
679 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100680 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200681 .out_cables = 0x000f,
682 .in_cables = 0x000f
683 }
684 },
685 {
686 .ifnum = -1
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689 }
690},
691{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200692 /* has ID 0x001c when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 USB_DEVICE(0x0582, 0x001b),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100694 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 .vendor_name = "Roland",
696 .product_name = "MMP-2",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200697 .ifnum = QUIRK_ANY_INTERFACE,
698 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100699 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200700 {
701 .ifnum = 0,
702 .type = QUIRK_IGNORE_INTERFACE
703 },
704 {
705 .ifnum = 1,
706 .type = QUIRK_IGNORE_INTERFACE
707 },
708 {
709 .ifnum = 2,
710 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100711 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200712 .out_cables = 0x0001,
713 .in_cables = 0x0001
714 }
715 },
716 {
717 .ifnum = -1
718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720 }
721},
722{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200723 /* has ID 0x001e when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 USB_DEVICE(0x0582, 0x001d),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100725 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 .vendor_name = "Roland",
727 .product_name = "V-SYNTH",
728 .ifnum = 0,
729 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100730 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 .out_cables = 0x0001,
732 .in_cables = 0x0001
733 }
734 }
735},
736{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200737 /* has ID 0x0024 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 USB_DEVICE(0x0582, 0x0023),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100739 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 .vendor_name = "EDIROL",
741 .product_name = "UM-550",
742 .ifnum = 0,
743 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100744 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 .out_cables = 0x003f,
746 .in_cables = 0x003f
747 }
748 }
749},
750{
751 /*
752 * This quirk is for the "Advanced Driver" mode. If off, the UA-20
753 * has ID 0x0026 and is standard compliant, but has only 16-bit PCM
754 * and no MIDI.
755 */
756 USB_DEVICE(0x0582, 0x0025),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100757 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 .vendor_name = "EDIROL",
759 .product_name = "UA-20",
760 .ifnum = QUIRK_ANY_INTERFACE,
761 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100762 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 {
Clemens Ladisch1f14a652005-11-21 16:40:00 +0100764 .ifnum = 0,
765 .type = QUIRK_IGNORE_INTERFACE
766 },
767 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 .ifnum = 1,
Clemens Ladisch1f14a652005-11-21 16:40:00 +0100769 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
770 .data = & (const struct audioformat) {
771 .format = SNDRV_PCM_FORMAT_S24_3LE,
772 .channels = 2,
773 .iface = 1,
774 .altsetting = 1,
775 .altset_idx = 1,
776 .attributes = 0,
777 .endpoint = 0x01,
778 .ep_attr = 0x01,
779 .rates = SNDRV_PCM_RATE_CONTINUOUS,
780 .rate_min = 44100,
781 .rate_max = 44100,
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 },
784 {
785 .ifnum = 2,
Clemens Ladisch1f14a652005-11-21 16:40:00 +0100786 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
787 .data = & (const struct audioformat) {
788 .format = SNDRV_PCM_FORMAT_S24_3LE,
789 .channels = 2,
790 .iface = 2,
791 .altsetting = 1,
792 .altset_idx = 1,
793 .attributes = 0,
794 .endpoint = 0x82,
795 .ep_attr = 0x01,
796 .rates = SNDRV_PCM_RATE_CONTINUOUS,
797 .rate_min = 44100,
798 .rate_max = 44100,
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 },
801 {
802 .ifnum = 3,
Clemens Ladisch1f14a652005-11-21 16:40:00 +0100803 .type = QUIRK_MIDI_FIXED_ENDPOINT,
804 .data = & (const struct snd_usb_midi_endpoint_info) {
805 .out_cables = 0x0001,
806 .in_cables = 0x0001
807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 },
809 {
810 .ifnum = -1
811 }
812 }
813 }
814},
815{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200816 /* has ID 0x0028 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 USB_DEVICE(0x0582, 0x0027),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100818 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 .vendor_name = "EDIROL",
820 .product_name = "SD-20",
821 .ifnum = 0,
822 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100823 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 .out_cables = 0x0003,
825 .in_cables = 0x0007
826 }
827 }
828},
829{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200830 /* has ID 0x002a when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 USB_DEVICE(0x0582, 0x0029),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100832 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 .vendor_name = "EDIROL",
834 .product_name = "SD-80",
835 .ifnum = 0,
836 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100837 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 .out_cables = 0x000f,
839 .in_cables = 0x000f
840 }
841 }
842},
843{ /*
844 * This quirk is for the "Advanced" modes of the Edirol UA-700.
845 * If the sample format switch is not in an advanced setting, the
846 * UA-700 has ID 0x0582/0x002c and is standard compliant (no quirks),
847 * but offers only 16-bit PCM and no MIDI.
848 */
849 USB_DEVICE_VENDOR_SPEC(0x0582, 0x002b),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100850 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 .vendor_name = "EDIROL",
852 .product_name = "UA-700",
853 .ifnum = QUIRK_ANY_INTERFACE,
854 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100855 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 {
857 .ifnum = 1,
858 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
859 },
860 {
861 .ifnum = 2,
862 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
863 },
864 {
865 .ifnum = 3,
866 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
867 },
868 {
869 .ifnum = -1
870 }
871 }
872 }
873},
874{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200875 /* has ID 0x002e when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 USB_DEVICE(0x0582, 0x002d),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100877 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 .vendor_name = "Roland",
879 .product_name = "XV-2020",
880 .ifnum = 0,
881 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100882 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 .out_cables = 0x0001,
884 .in_cables = 0x0001
885 }
886 }
887},
888{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200889 /* has ID 0x0030 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 USB_DEVICE(0x0582, 0x002f),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100891 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 .vendor_name = "Roland",
893 .product_name = "VariOS",
894 .ifnum = 0,
895 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100896 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 .out_cables = 0x0007,
898 .in_cables = 0x0007
899 }
900 }
901},
902{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200903 /* has ID 0x0034 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 USB_DEVICE(0x0582, 0x0033),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100905 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 .vendor_name = "EDIROL",
907 .product_name = "PCR",
908 .ifnum = 0,
909 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100910 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 .out_cables = 0x0003,
912 .in_cables = 0x0007
913 }
914 }
915},
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200916 /* TODO: add Roland M-1000 support */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200918 /*
919 * Has ID 0x0038 when not in "Advanced Driver" mode;
920 * later revisions use IDs 0x0054 and 0x00a2.
921 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 USB_DEVICE(0x0582, 0x0037),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100923 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 .vendor_name = "Roland",
925 .product_name = "Digital Piano",
926 .ifnum = 0,
927 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100928 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 .out_cables = 0x0001,
930 .in_cables = 0x0001
931 }
932 }
933},
934{
Clemens Ladisch5af4c832005-04-06 09:47:02 +0200935 /*
936 * This quirk is for the "Advanced Driver" mode. If off, the GS-10
937 * has ID 0x003c and is standard compliant, but has only 16-bit PCM
938 * and no MIDI.
939 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 USB_DEVICE_VENDOR_SPEC(0x0582, 0x003b),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100941 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 .vendor_name = "BOSS",
943 .product_name = "GS-10",
Clemens Ladisch5af4c832005-04-06 09:47:02 +0200944 .ifnum = QUIRK_ANY_INTERFACE,
945 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100946 .data = & (const struct snd_usb_audio_quirk[]) {
Clemens Ladisch5af4c832005-04-06 09:47:02 +0200947 {
948 .ifnum = 1,
949 .type = QUIRK_AUDIO_STANDARD_INTERFACE
950 },
951 {
952 .ifnum = 2,
953 .type = QUIRK_AUDIO_STANDARD_INTERFACE
954 },
955 {
956 .ifnum = 3,
957 .type = QUIRK_MIDI_STANDARD_INTERFACE
958 },
959 {
960 .ifnum = -1
961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963 }
964},
965{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200966 /* has ID 0x0041 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 USB_DEVICE(0x0582, 0x0040),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100968 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 .vendor_name = "Roland",
970 .product_name = "GI-20",
971 .ifnum = 0,
972 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100973 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 .out_cables = 0x0001,
975 .in_cables = 0x0001
976 }
977 }
978},
979{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200980 /* has ID 0x0043 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 USB_DEVICE(0x0582, 0x0042),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100982 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 .vendor_name = "Roland",
984 .product_name = "RS-70",
985 .ifnum = 0,
986 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100987 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 .out_cables = 0x0001,
989 .in_cables = 0x0001
990 }
991 }
992},
993{
994 USB_DEVICE(0x0582, 0x0044),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100995 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 .vendor_name = "Roland",
997 .product_name = "UA-1000",
998 .ifnum = QUIRK_ANY_INTERFACE,
999 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001000 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 {
1002 .ifnum = 1,
1003 .type = QUIRK_AUDIO_EDIROL_UA1000
1004 },
1005 {
1006 .ifnum = 2,
1007 .type = QUIRK_AUDIO_EDIROL_UA1000
1008 },
1009 {
1010 .ifnum = 3,
1011 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001012 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 .out_cables = 0x0003,
1014 .in_cables = 0x0003
1015 }
1016 },
1017 {
1018 .ifnum = -1
1019 }
1020 }
1021 }
1022},
1023{
Clemens Ladisch358ce0c2007-12-19 14:25:24 +01001024 /* has ID 0x0049 when not in "Advanced Driver" mode */
1025 USB_DEVICE(0x0582, 0x0047),
1026 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1027 /* .vendor_name = "EDIROL", */
1028 /* .product_name = "UR-80", */
1029 .ifnum = QUIRK_ANY_INTERFACE,
1030 .type = QUIRK_COMPOSITE,
1031 .data = (const struct snd_usb_audio_quirk[]) {
1032 /* in the 96 kHz modes, only interface 1 is there */
1033 {
1034 .ifnum = 1,
1035 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1036 },
1037 {
1038 .ifnum = 2,
1039 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1040 },
1041 {
1042 .ifnum = -1
1043 }
1044 }
1045 }
1046},
1047{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001048 /* has ID 0x004a when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 USB_DEVICE(0x0582, 0x0048),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001050 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch358ce0c2007-12-19 14:25:24 +01001051 /* .vendor_name = "EDIROL", */
1052 /* .product_name = "UR-80", */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 .ifnum = 0,
1054 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001055 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 .out_cables = 0x0003,
1057 .in_cables = 0x0007
1058 }
1059 }
1060},
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001061 /* TODO: add Edirol M-100FX support */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Clemens Ladischf38cc312007-02-09 20:52:55 +01001063 /* has ID 0x004e when not in "Advanced Driver" mode */
1064 USB_DEVICE(0x0582, 0x004c),
1065 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1066 .vendor_name = "EDIROL",
1067 .product_name = "PCR-A",
1068 .ifnum = QUIRK_ANY_INTERFACE,
1069 .type = QUIRK_COMPOSITE,
1070 .data = (const struct snd_usb_audio_quirk[]) {
1071 {
1072 .ifnum = 1,
1073 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1074 },
1075 {
1076 .ifnum = 2,
1077 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1078 },
1079 {
1080 .ifnum = -1
1081 }
1082 }
1083 }
1084},
1085{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001086 /* has ID 0x004f when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 USB_DEVICE(0x0582, 0x004d),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001088 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 .vendor_name = "EDIROL",
1090 .product_name = "PCR-A",
1091 .ifnum = 0,
1092 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001093 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 .out_cables = 0x0003,
1095 .in_cables = 0x0007
1096 }
1097 }
1098},
1099{
1100 /*
1101 * This quirk is for the "Advanced Driver" mode. If off, the UA-3FX
1102 * is standard compliant, but has only 16-bit PCM.
1103 */
1104 USB_DEVICE(0x0582, 0x0050),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001105 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 .vendor_name = "EDIROL",
1107 .product_name = "UA-3FX",
1108 .ifnum = QUIRK_ANY_INTERFACE,
1109 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001110 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 {
1112 .ifnum = 1,
1113 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1114 },
1115 {
1116 .ifnum = 2,
1117 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1118 },
1119 {
1120 .ifnum = -1
1121 }
1122 }
1123 }
1124},
1125{
1126 USB_DEVICE(0x0582, 0x0052),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001127 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 .vendor_name = "EDIROL",
1129 .product_name = "UM-1SX",
1130 .ifnum = 0,
1131 .type = QUIRK_MIDI_STANDARD_INTERFACE
1132 }
1133},
Takashi Iwaif1676842007-07-09 10:39:44 +02001134{
1135 USB_DEVICE(0x0582, 0x0060),
1136 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1137 .vendor_name = "Roland",
1138 .product_name = "EXR Series",
1139 .ifnum = 0,
1140 .type = QUIRK_MIDI_STANDARD_INTERFACE
1141 }
1142},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001144 /* has ID 0x0067 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 USB_DEVICE(0x0582, 0x0065),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001146 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 .vendor_name = "EDIROL",
1148 .product_name = "PCR-1",
1149 .ifnum = 0,
1150 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001151 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 .out_cables = 0x0001,
1153 .in_cables = 0x0003
1154 }
1155 }
1156},
1157{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001158 /* has ID 0x006b when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 USB_DEVICE_VENDOR_SPEC(0x0582, 0x006a),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001160 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 .vendor_name = "Roland",
1162 .product_name = "SP-606",
1163 .ifnum = 3,
1164 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001165 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 .out_cables = 0x0001,
1167 .in_cables = 0x0001
1168 }
1169 }
1170},
1171{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001172 /* has ID 0x006e when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 USB_DEVICE(0x0582, 0x006d),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001174 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 .vendor_name = "Roland",
1176 .product_name = "FANTOM-X",
1177 .ifnum = 0,
1178 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001179 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 .out_cables = 0x0001,
1181 .in_cables = 0x0001
1182 }
1183 }
1184},
1185{ /*
1186 * This quirk is for the "Advanced" modes of the Edirol UA-25.
1187 * If the switch is not in an advanced setting, the UA-25 has
1188 * ID 0x0582/0x0073 and is standard compliant (no quirks), but
1189 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1190 */
1191 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0074),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001192 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 .vendor_name = "EDIROL",
1194 .product_name = "UA-25",
1195 .ifnum = QUIRK_ANY_INTERFACE,
1196 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001197 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 {
1199 .ifnum = 0,
1200 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
1201 },
1202 {
1203 .ifnum = 1,
1204 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
1205 },
1206 {
1207 .ifnum = 2,
1208 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
1209 },
1210 {
1211 .ifnum = -1
1212 }
1213 }
1214 }
1215},
1216{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001217 /* has ID 0x0076 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 USB_DEVICE(0x0582, 0x0075),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001219 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 .vendor_name = "BOSS",
1221 .product_name = "DR-880",
1222 .ifnum = 0,
1223 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001224 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 .out_cables = 0x0001,
1226 .in_cables = 0x0001
1227 }
1228 }
1229},
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001230{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001231 /* has ID 0x007b when not in "Advanced Driver" mode */
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001232 USB_DEVICE_VENDOR_SPEC(0x0582, 0x007a),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001233 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001234 .vendor_name = "Roland",
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001235 /* "RD" or "RD-700SX"? */
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001236 .ifnum = 0,
1237 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001238 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001239 .out_cables = 0x0003,
1240 .in_cables = 0x0003
1241 }
1242 }
1243},
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01001244/* Roland UA-101 in High-Speed Mode only */
1245{
1246 USB_DEVICE(0x0582, 0x007d),
1247 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1248 .vendor_name = "Roland",
1249 .product_name = "UA-101",
1250 .ifnum = QUIRK_ANY_INTERFACE,
1251 .type = QUIRK_COMPOSITE,
1252 .data = (const struct snd_usb_audio_quirk[]) {
1253 {
1254 .ifnum = 0,
1255 .type = QUIRK_AUDIO_EDIROL_UA101
1256 },
1257 {
1258 .ifnum = 1,
1259 .type = QUIRK_AUDIO_EDIROL_UA101
1260 },
1261 {
1262 .ifnum = 2,
1263 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1264 .data = & (const struct snd_usb_midi_endpoint_info) {
1265 .out_cables = 0x0001,
1266 .in_cables = 0x0001
1267 }
1268 },
1269 {
1270 .ifnum = -1
1271 }
1272 }
1273 }
1274},
Clemens Ladischcdca8812006-01-18 08:53:32 +01001275{
1276 /* has ID 0x0081 when not in "Advanced Driver" mode */
1277 USB_DEVICE(0x0582, 0x0080),
1278 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1279 .vendor_name = "Roland",
1280 .product_name = "G-70",
1281 .ifnum = 0,
1282 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1283 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladisch05422572006-01-18 15:44:53 +01001284 .out_cables = 0x0001,
1285 .in_cables = 0x0001
Clemens Ladischcdca8812006-01-18 08:53:32 +01001286 }
1287 }
1288},
Clemens Ladisch7c79b762006-01-10 18:56:23 +01001289 /* TODO: add Roland V-SYNTH XT support */
1290 /* TODO: add BOSS GT-PRO support */
Clemens Ladisch415b09e2006-01-16 08:03:52 +01001291{
1292 /* has ID 0x008c when not in "Advanced Driver" mode */
1293 USB_DEVICE(0x0582, 0x008b),
1294 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1295 .vendor_name = "EDIROL",
1296 .product_name = "PC-50",
1297 .ifnum = 0,
1298 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1299 .data = & (const struct snd_usb_midi_endpoint_info) {
1300 .out_cables = 0x0001,
1301 .in_cables = 0x0001
1302 }
1303 }
1304},
Clemens Ladisch7c79b762006-01-10 18:56:23 +01001305 /* TODO: add Edirol PC-80 support */
Takashi Iwai9b0d39b2007-08-10 15:07:06 +02001306{
1307 USB_DEVICE(0x0582, 0x0096),
1308 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1309 .vendor_name = "EDIROL",
1310 .product_name = "UA-1EX",
1311 .ifnum = QUIRK_ANY_INTERFACE,
1312 .type = QUIRK_COMPOSITE,
1313 .data = (const struct snd_usb_audio_quirk[]) {
1314 {
1315 .ifnum = 0,
1316 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1317 },
1318 {
1319 .ifnum = 1,
1320 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1321 },
1322 {
1323 .ifnum = -1
1324 }
1325 }
1326 }
1327},
Clemens Ladisch7c79b762006-01-10 18:56:23 +01001328{
1329 USB_DEVICE(0x0582, 0x009a),
1330 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1331 .vendor_name = "EDIROL",
1332 .product_name = "UM-3EX",
1333 .ifnum = 0,
1334 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1335 .data = & (const struct snd_usb_midi_endpoint_info) {
1336 .out_cables = 0x000f,
1337 .in_cables = 0x000f
1338 }
1339 }
1340},
1341 /* TODO: add Edirol MD-P1 support */
Carlo Beccaria87823092007-07-03 08:04:25 +02001342{
Clemens Ladisch25a47b62008-02-25 11:04:19 +01001343 USB_DEVICE(0x582, 0x00a6),
1344 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1345 .vendor_name = "Roland",
1346 .product_name = "Juno-G",
1347 .ifnum = 0,
1348 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1349 .data = & (const struct snd_usb_midi_endpoint_info) {
1350 .out_cables = 0x0001,
1351 .in_cables = 0x0001
1352 }
1353 }
1354},
1355{
Carlo Beccaria87823092007-07-03 08:04:25 +02001356 /* Roland SH-201 */
1357 USB_DEVICE(0x0582, 0x00ad),
1358 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1359 .vendor_name = "Roland",
1360 .product_name = "SH-201",
1361 .ifnum = QUIRK_ANY_INTERFACE,
1362 .type = QUIRK_COMPOSITE,
1363 .data = (const struct snd_usb_audio_quirk[]) {
1364 {
1365 .ifnum = 0,
1366 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1367 },
1368 {
1369 .ifnum = 1,
1370 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1371 },
1372 {
1373 .ifnum = 2,
1374 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1375 .data = & (const struct snd_usb_midi_endpoint_info) {
1376 .out_cables = 0x0001,
1377 .in_cables = 0x0001
1378 }
1379 },
1380 {
1381 .ifnum = -1
1382 }
1383 }
1384 }
1385},
Chris Mennie62b12632008-05-19 16:21:33 +02001386{
1387 /* Roland SonicCell */
1388 USB_DEVICE(0x0582, 0x00c2),
1389 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1390 .vendor_name = "Roland",
1391 .product_name = "SonicCell",
1392 .ifnum = QUIRK_ANY_INTERFACE,
1393 .type = QUIRK_COMPOSITE,
1394 .data = (const struct snd_usb_audio_quirk[]) {
1395 {
1396 .ifnum = 0,
1397 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1398 },
1399 {
1400 .ifnum = 1,
1401 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1402 },
1403 {
1404 .ifnum = 2,
1405 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1406 .data = & (const struct snd_usb_midi_endpoint_info) {
1407 .out_cables = 0x0001,
1408 .in_cables = 0x0001
1409 }
1410 },
1411 {
1412 .ifnum = -1
1413 }
1414 }
1415 }
1416},
Clemens Ladischb38addb2008-07-28 10:19:39 +02001417{
1418 /* BOSS GT-10 */
1419 USB_DEVICE(0x0582, 0x00da),
1420 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1421 .ifnum = QUIRK_ANY_INTERFACE,
1422 .type = QUIRK_COMPOSITE,
1423 .data = (const struct snd_usb_audio_quirk[]) {
1424 {
1425 .ifnum = 0,
1426 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1427 },
1428 {
1429 .ifnum = 1,
1430 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1431 },
1432 {
1433 .ifnum = 2,
1434 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1435 .data = & (const struct snd_usb_midi_endpoint_info) {
1436 .out_cables = 0x0001,
1437 .in_cables = 0x0001
1438 }
1439 },
1440 {
1441 .ifnum = -1
1442 }
1443 }
1444 }
1445},
Chris Mennie62b12632008-05-19 16:21:33 +02001446
Clemens Ladischa25f1752005-10-05 13:23:19 +02001447/* Guillemot devices */
1448{
1449 /*
1450 * This is for the "Windows Edition" where the external MIDI ports are
1451 * the only MIDI ports; the control data is reported through HID
1452 * interfaces. The "Macintosh Edition" has ID 0xd002 and uses standard
1453 * compliant USB MIDI ports for external MIDI and controls.
1454 */
1455 USB_DEVICE_VENDOR_SPEC(0x06f8, 0xb000),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001456 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischa25f1752005-10-05 13:23:19 +02001457 .vendor_name = "Hercules",
1458 .product_name = "DJ Console (WE)",
1459 .ifnum = 4,
1460 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001461 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischa25f1752005-10-05 13:23:19 +02001462 .out_cables = 0x0001,
1463 .in_cables = 0x0001
1464 }
1465 }
1466},
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468/* Midiman/M-Audio devices */
1469{
1470 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1002),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001471 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 .vendor_name = "M-Audio",
1473 .product_name = "MidiSport 2x2",
1474 .ifnum = QUIRK_ANY_INTERFACE,
1475 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001476 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 .out_cables = 0x0003,
1478 .in_cables = 0x0003
1479 }
1480 }
1481},
1482{
1483 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1011),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001484 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 .vendor_name = "M-Audio",
1486 .product_name = "MidiSport 1x1",
1487 .ifnum = QUIRK_ANY_INTERFACE,
1488 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001489 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 .out_cables = 0x0001,
1491 .in_cables = 0x0001
1492 }
1493 }
1494},
1495{
1496 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1015),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001497 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 .vendor_name = "M-Audio",
1499 .product_name = "Keystation",
1500 .ifnum = QUIRK_ANY_INTERFACE,
1501 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001502 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 .out_cables = 0x0001,
1504 .in_cables = 0x0001
1505 }
1506 }
1507},
1508{
1509 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1021),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001510 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 .vendor_name = "M-Audio",
1512 .product_name = "MidiSport 4x4",
1513 .ifnum = QUIRK_ANY_INTERFACE,
1514 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001515 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 .out_cables = 0x000f,
1517 .in_cables = 0x000f
1518 }
1519 }
1520},
1521{
1522 /*
1523 * For hardware revision 1.05; in the later revisions (1.10 and
1524 * 1.21), 0x1031 is the ID for the device without firmware.
1525 * Thanks to Olaf Giesbrecht <Olaf_Giesbrecht@yahoo.de>
1526 */
1527 USB_DEVICE_VER(0x0763, 0x1031, 0x0100, 0x0109),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001528 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 .vendor_name = "M-Audio",
1530 .product_name = "MidiSport 8x8",
1531 .ifnum = QUIRK_ANY_INTERFACE,
1532 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001533 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 .out_cables = 0x01ff,
1535 .in_cables = 0x01ff
1536 }
1537 }
1538},
1539{
1540 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1033),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001541 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 .vendor_name = "M-Audio",
1543 .product_name = "MidiSport 8x8",
1544 .ifnum = QUIRK_ANY_INTERFACE,
1545 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001546 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 .out_cables = 0x01ff,
1548 .in_cables = 0x01ff
1549 }
1550 }
1551},
1552{
1553 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1041),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001554 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 .vendor_name = "M-Audio",
1556 .product_name = "MidiSport 2x4",
1557 .ifnum = QUIRK_ANY_INTERFACE,
1558 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001559 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 .out_cables = 0x000f,
1561 .in_cables = 0x0003
1562 }
1563 }
1564},
1565{
1566 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2001),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001567 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 .vendor_name = "M-Audio",
1569 .product_name = "Quattro",
1570 .ifnum = QUIRK_ANY_INTERFACE,
1571 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001572 .data = & (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 /*
1574 * Interfaces 0-2 are "Windows-compatible", 16-bit only,
1575 * and share endpoints with the other interfaces.
1576 * Ignore them. The other interfaces can do 24 bits,
1577 * but captured samples are big-endian (see usbaudio.c).
1578 */
1579 {
1580 .ifnum = 0,
1581 .type = QUIRK_IGNORE_INTERFACE
1582 },
1583 {
1584 .ifnum = 1,
1585 .type = QUIRK_IGNORE_INTERFACE
1586 },
1587 {
1588 .ifnum = 2,
1589 .type = QUIRK_IGNORE_INTERFACE
1590 },
1591 {
1592 .ifnum = 3,
1593 .type = QUIRK_IGNORE_INTERFACE
1594 },
1595 {
1596 .ifnum = 4,
1597 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1598 },
1599 {
1600 .ifnum = 5,
1601 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1602 },
1603 {
1604 .ifnum = 6,
1605 .type = QUIRK_IGNORE_INTERFACE
1606 },
1607 {
1608 .ifnum = 7,
1609 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1610 },
1611 {
1612 .ifnum = 8,
1613 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1614 },
1615 {
1616 .ifnum = 9,
1617 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001618 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 .out_cables = 0x0001,
1620 .in_cables = 0x0001
1621 }
1622 },
1623 {
1624 .ifnum = -1
1625 }
1626 }
1627 }
1628},
1629{
1630 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2003),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001631 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 .vendor_name = "M-Audio",
1633 .product_name = "AudioPhile",
1634 .ifnum = 6,
1635 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001636 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 .out_cables = 0x0001,
1638 .in_cables = 0x0001
1639 }
1640 }
1641},
1642{
1643 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2008),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001644 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 .vendor_name = "M-Audio",
1646 .product_name = "Ozone",
1647 .ifnum = 3,
1648 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001649 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 .out_cables = 0x0001,
1651 .in_cables = 0x0001
1652 }
1653 }
1654},
1655{
1656 USB_DEVICE_VENDOR_SPEC(0x0763, 0x200d),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001657 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 .vendor_name = "M-Audio",
1659 .product_name = "OmniStudio",
1660 .ifnum = QUIRK_ANY_INTERFACE,
1661 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001662 .data = & (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 {
1664 .ifnum = 0,
1665 .type = QUIRK_IGNORE_INTERFACE
1666 },
1667 {
1668 .ifnum = 1,
1669 .type = QUIRK_IGNORE_INTERFACE
1670 },
1671 {
1672 .ifnum = 2,
1673 .type = QUIRK_IGNORE_INTERFACE
1674 },
1675 {
1676 .ifnum = 3,
1677 .type = QUIRK_IGNORE_INTERFACE
1678 },
1679 {
1680 .ifnum = 4,
1681 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1682 },
1683 {
1684 .ifnum = 5,
1685 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1686 },
1687 {
1688 .ifnum = 6,
1689 .type = QUIRK_IGNORE_INTERFACE
1690 },
1691 {
1692 .ifnum = 7,
1693 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1694 },
1695 {
1696 .ifnum = 8,
1697 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1698 },
1699 {
1700 .ifnum = 9,
1701 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001702 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 .out_cables = 0x0001,
1704 .in_cables = 0x0001
1705 }
1706 },
1707 {
1708 .ifnum = -1
1709 }
1710 }
1711 }
1712},
Clemens Ladisch2ea547dc2007-09-17 09:33:17 +02001713{
1714 USB_DEVICE(0x0763, 0x2019),
1715 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1716 /* .vendor_name = "M-Audio", */
1717 /* .product_name = "Ozone Academic", */
1718 .ifnum = QUIRK_ANY_INTERFACE,
1719 .type = QUIRK_COMPOSITE,
1720 .data = & (const struct snd_usb_audio_quirk[]) {
1721 {
1722 .ifnum = 0,
1723 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1724 },
1725 {
1726 .ifnum = 1,
1727 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1728 },
1729 {
1730 .ifnum = 2,
1731 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1732 },
1733 {
1734 .ifnum = 3,
1735 .type = QUIRK_MIDI_MIDIMAN,
1736 .data = & (const struct snd_usb_midi_endpoint_info) {
1737 .out_cables = 0x0001,
1738 .in_cables = 0x0001
1739 }
1740 },
1741 {
1742 .ifnum = -1
1743 }
1744 }
1745 }
1746},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Clemens Ladisch0243ef712006-03-09 07:55:55 +01001748/* Casio devices */
1749{
Clemens Ladisch9808dc92006-03-16 08:15:25 +01001750 USB_DEVICE(0x07cf, 0x6801),
1751 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1752 .vendor_name = "Casio",
1753 .product_name = "PL-40R",
1754 .ifnum = 0,
1755 .type = QUIRK_MIDI_YAMAHA
1756 }
1757},
1758{
Clemens Ladisch318d27f2006-03-09 08:17:08 +01001759 /* this ID is used by several devices without a product ID */
Clemens Ladisch0243ef712006-03-09 07:55:55 +01001760 USB_DEVICE(0x07cf, 0x6802),
1761 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1762 .vendor_name = "Casio",
Clemens Ladisch318d27f2006-03-09 08:17:08 +01001763 .product_name = "Keyboard",
Clemens Ladisch0243ef712006-03-09 07:55:55 +01001764 .ifnum = 0,
1765 .type = QUIRK_MIDI_YAMAHA
1766 }
1767},
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769/* Mark of the Unicorn devices */
1770{
1771 /* thanks to Robert A. Lerche <ral 'at' msbit.com> */
Clemens Ladischbbd46152005-07-04 09:21:45 +02001772 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
1773 USB_DEVICE_ID_MATCH_PRODUCT |
1774 USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
1775 .idVendor = 0x07fd,
1776 .idProduct = 0x0001,
1777 .bDeviceSubClass = 2,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001778 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 .vendor_name = "MOTU",
1780 .product_name = "Fastlane",
1781 .ifnum = QUIRK_ANY_INTERFACE,
1782 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001783 .data = & (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 {
1785 .ifnum = 0,
Clemens Ladisch6155aff2005-07-04 09:20:42 +02001786 .type = QUIRK_MIDI_RAW
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 },
1788 {
1789 .ifnum = 1,
1790 .type = QUIRK_IGNORE_INTERFACE
1791 },
1792 {
1793 .ifnum = -1
1794 }
1795 }
1796 }
1797},
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799/* Emagic devices */
1800{
1801 USB_DEVICE(0x086a, 0x0001),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001802 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 .vendor_name = "Emagic",
1804 /* .product_name = "Unitor8", */
1805 .ifnum = 2,
1806 .type = QUIRK_MIDI_EMAGIC,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001807 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 .out_cables = 0x80ff,
1809 .in_cables = 0x80ff
1810 }
1811 }
1812},
1813{
1814 USB_DEVICE(0x086a, 0x0002),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001815 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 .vendor_name = "Emagic",
1817 /* .product_name = "AMT8", */
1818 .ifnum = 2,
1819 .type = QUIRK_MIDI_EMAGIC,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001820 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 .out_cables = 0x80ff,
1822 .in_cables = 0x80ff
1823 }
1824 }
1825},
1826{
1827 USB_DEVICE(0x086a, 0x0003),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001828 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 .vendor_name = "Emagic",
1830 /* .product_name = "MT4", */
1831 .ifnum = 2,
1832 .type = QUIRK_MIDI_EMAGIC,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001833 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 .out_cables = 0x800f,
1835 .in_cables = 0x8003
1836 }
1837 }
1838},
1839
Clemens Ladisch31ab9522005-09-26 08:55:01 +02001840/* TerraTec devices */
1841{
1842 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0012),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001843 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch31ab9522005-09-26 08:55:01 +02001844 .vendor_name = "TerraTec",
1845 .product_name = "PHASE 26",
1846 .ifnum = 3,
1847 .type = QUIRK_MIDI_STANDARD_INTERFACE
1848 }
1849},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
1851 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0013),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001852 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch31ab9522005-09-26 08:55:01 +02001853 .vendor_name = "TerraTec",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 .product_name = "PHASE 26",
1855 .ifnum = 3,
1856 .type = QUIRK_MIDI_STANDARD_INTERFACE
1857 }
1858},
Clemens Ladischb2b82292006-02-08 12:38:23 +01001859{
Clemens Ladischbc56eff2006-04-13 10:16:08 +02001860 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0014),
1861 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1862 .vendor_name = "TerraTec",
1863 .product_name = "PHASE 26",
1864 .ifnum = 3,
1865 .type = QUIRK_MIDI_STANDARD_INTERFACE
1866 }
1867},
1868{
Clemens Ladischb2b82292006-02-08 12:38:23 +01001869 USB_DEVICE(0x0ccd, 0x0035),
1870 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1871 .vendor_name = "Miditech",
1872 .product_name = "Play'n Roll",
1873 .ifnum = 0,
1874 .type = QUIRK_MIDI_CME
1875 }
1876},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Mark Hills0f28ecd2007-08-10 08:01:54 +02001878/* Stanton/N2IT Final Scratch v1 device ('Scratchamp') */
1879{
1880 USB_DEVICE(0x103d, 0x0100),
1881 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1882 .vendor_name = "Stanton",
1883 .product_name = "ScratchAmp",
1884 .ifnum = QUIRK_NO_INTERFACE
1885 }
1886},
1887{
1888 USB_DEVICE(0x103d, 0x0101),
1889 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1890 .vendor_name = "Stanton",
1891 .product_name = "ScratchAmp",
1892 .ifnum = QUIRK_NO_INTERFACE
1893 }
1894},
1895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896/* Novation EMS devices */
1897{
1898 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0001),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001899 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 .vendor_name = "Novation",
1901 .product_name = "ReMOTE Audio/XStation",
1902 .ifnum = 4,
1903 .type = QUIRK_MIDI_NOVATION
1904 }
1905},
1906{
1907 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0002),
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 = "Novation",
1910 .product_name = "Speedio",
1911 .ifnum = 3,
1912 .type = QUIRK_MIDI_NOVATION
1913 }
1914},
1915{
1916 USB_DEVICE_VENDOR_SPEC(0x1235, 0x4661),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001917 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 .vendor_name = "Novation",
1919 .product_name = "ReMOTE25",
1920 .ifnum = 0,
1921 .type = QUIRK_MIDI_NOVATION
1922 }
1923},
1924
Mark Hills3a7788b2007-09-03 08:20:09 +02001925/* */
Clemens Ladisch15944802007-08-29 17:38:14 +02001926{
Mark Hills3a7788b2007-09-03 08:20:09 +02001927 /* aka. Serato Scratch Live DJ Box */
Clemens Ladisch15944802007-08-29 17:38:14 +02001928 USB_DEVICE(0x13e5, 0x0001),
Mark Hills3a7788b2007-09-03 08:20:09 +02001929 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1930 .vendor_name = "Rane",
1931 .product_name = "SL-1",
1932 .ifnum = QUIRK_NO_INTERFACE
Clemens Ladisch15944802007-08-29 17:38:14 +02001933 }
1934},
1935
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01001936/* Miditech devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
Clemens Ladischf38275f2005-07-25 16:17:29 +02001938 USB_DEVICE(0x4752, 0x0011),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001939 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischf38275f2005-07-25 16:17:29 +02001940 .vendor_name = "Miditech",
1941 .product_name = "Midistart-2",
1942 .ifnum = 0,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01001943 .type = QUIRK_MIDI_CME
Clemens Ladischf38275f2005-07-25 16:17:29 +02001944 }
1945},
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01001946
1947/* Central Music devices */
Clemens Ladischf38275f2005-07-25 16:17:29 +02001948{
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01001949 /* this ID used by both Miditech MidiStudio-2 and CME UF-x */
Clemens Ladischf38275f2005-07-25 16:17:29 +02001950 USB_DEVICE(0x7104, 0x2202),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001951 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischf38275f2005-07-25 16:17:29 +02001952 .ifnum = 0,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01001953 .type = QUIRK_MIDI_CME
Clemens Ladischf38275f2005-07-25 16:17:29 +02001954 }
1955},
1956
1957{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 /*
1959 * Some USB MIDI devices don't have an audio control interface,
1960 * so we have to grab MIDI streaming interfaces here.
1961 */
1962 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS |
1963 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
1964 .bInterfaceClass = USB_CLASS_AUDIO,
1965 .bInterfaceSubClass = USB_SUBCLASS_MIDI_STREAMING,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001966 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 .ifnum = QUIRK_ANY_INTERFACE,
1968 .type = QUIRK_MIDI_STANDARD_INTERFACE
1969 }
1970},
1971
1972#undef USB_DEVICE_VENDOR_SPEC