blob: 59410f437705a745c5fb5736761ad725517d190b [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
42/*
Daniel Drakea9121452007-05-07 09:27:05 +020043 * Logitech QuickCam: bDeviceClass is vendor-specific, so generic interface
44 * class matches do not take effect without an explicit ID match.
45 */
46{
47 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
48 USB_DEVICE_ID_MATCH_INT_CLASS |
49 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
50 .idVendor = 0x046d,
Daniel Draked4170452007-05-10 08:52:19 +020051 .idProduct = 0x0850,
52 .bInterfaceClass = USB_CLASS_AUDIO,
53 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
54},
55{
56 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
57 USB_DEVICE_ID_MATCH_INT_CLASS |
58 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
59 .idVendor = 0x046d,
George Shapovalovc34532d2007-07-09 10:42:35 +020060 .idProduct = 0x08ae,
61 .bInterfaceClass = USB_CLASS_AUDIO,
62 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
63},
64{
65 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
66 USB_DEVICE_ID_MATCH_INT_CLASS |
67 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
68 .idVendor = 0x046d,
Ritesh Raj Sarrafcfc24ec2007-07-10 13:03:57 +020069 .idProduct = 0x08c6,
70 .bInterfaceClass = USB_CLASS_AUDIO,
71 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
72},
73{
74 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
75 USB_DEVICE_ID_MATCH_INT_CLASS |
76 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
77 .idVendor = 0x046d,
Daniel Drakea9121452007-05-07 09:27:05 +020078 .idProduct = 0x08f0,
79 .bInterfaceClass = USB_CLASS_AUDIO,
80 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
81},
82{
83 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
84 USB_DEVICE_ID_MATCH_INT_CLASS |
85 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
86 .idVendor = 0x046d,
Dawid Wrobel31127f22007-10-22 11:57:17 +020087 .idProduct = 0x08f5,
88 .bInterfaceClass = USB_CLASS_AUDIO,
89 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
90},
91{
92 .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
93 USB_DEVICE_ID_MATCH_INT_CLASS |
94 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
95 .idVendor = 0x046d,
Daniel Drakea9121452007-05-07 09:27:05 +020096 .idProduct = 0x08f6,
97 .bInterfaceClass = USB_CLASS_AUDIO,
98 .bInterfaceSubClass = USB_SUBCLASS_AUDIO_CONTROL
99},
James Courtier-Dutton1e741902007-10-08 18:49:43 +0100100/* E-Mu devices */
101{
102 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
103 .idVendor = 0x041e,
104 .idProduct = 0x3f02,
105 .bInterfaceClass = USB_CLASS_AUDIO,
106},
107{
108 .match_flags = USB_DEVICE_ID_MATCH_DEVICE,
109 .idVendor = 0x041e,
110 .idProduct = 0x3f04,
111 .bInterfaceClass = USB_CLASS_AUDIO,
112},
113/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * Yamaha devices
115 */
116
117#define YAMAHA_DEVICE(id, name) { \
118 USB_DEVICE(0x0499, id), \
Takashi Iwai86e07d32005-11-17 15:08:02 +0100119 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .vendor_name = "Yamaha", \
121 .product_name = name, \
122 .ifnum = QUIRK_ANY_INTERFACE, \
123 .type = QUIRK_MIDI_YAMAHA \
124 } \
125}
126#define YAMAHA_INTERFACE(id, intf, name) { \
127 USB_DEVICE_VENDOR_SPEC(0x0499, id), \
Takashi Iwai86e07d32005-11-17 15:08:02 +0100128 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .vendor_name = "Yamaha", \
130 .product_name = name, \
131 .ifnum = intf, \
132 .type = QUIRK_MIDI_YAMAHA \
133 } \
134}
135YAMAHA_DEVICE(0x1000, "UX256"),
136YAMAHA_DEVICE(0x1001, "MU1000"),
137YAMAHA_DEVICE(0x1002, "MU2000"),
138YAMAHA_DEVICE(0x1003, "MU500"),
139YAMAHA_INTERFACE(0x1004, 3, "UW500"),
140YAMAHA_DEVICE(0x1005, "MOTIF6"),
141YAMAHA_DEVICE(0x1006, "MOTIF7"),
142YAMAHA_DEVICE(0x1007, "MOTIF8"),
143YAMAHA_DEVICE(0x1008, "UX96"),
144YAMAHA_DEVICE(0x1009, "UX16"),
145YAMAHA_INTERFACE(0x100a, 3, "EOS BX"),
146YAMAHA_DEVICE(0x100c, "UC-MX"),
147YAMAHA_DEVICE(0x100d, "UC-KX"),
148YAMAHA_DEVICE(0x100e, "S08"),
149YAMAHA_DEVICE(0x100f, "CLP-150"),
150YAMAHA_DEVICE(0x1010, "CLP-170"),
151YAMAHA_DEVICE(0x1011, "P-250"),
152YAMAHA_DEVICE(0x1012, "TYROS"),
153YAMAHA_DEVICE(0x1013, "PF-500"),
154YAMAHA_DEVICE(0x1014, "S90"),
155YAMAHA_DEVICE(0x1015, "MOTIF-R"),
Clemens Ladisch4ccb4a42006-03-15 12:24:19 +0100156YAMAHA_DEVICE(0x1016, "MDP-5"),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157YAMAHA_DEVICE(0x1017, "CVP-204"),
158YAMAHA_DEVICE(0x1018, "CVP-206"),
159YAMAHA_DEVICE(0x1019, "CVP-208"),
160YAMAHA_DEVICE(0x101a, "CVP-210"),
161YAMAHA_DEVICE(0x101b, "PSR-1100"),
162YAMAHA_DEVICE(0x101c, "PSR-2100"),
163YAMAHA_DEVICE(0x101d, "CLP-175"),
164YAMAHA_DEVICE(0x101e, "PSR-K1"),
Clemens Ladisch4ccb4a42006-03-15 12:24:19 +0100165YAMAHA_DEVICE(0x101f, "EZ-J24"),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166YAMAHA_DEVICE(0x1020, "EZ-250i"),
167YAMAHA_DEVICE(0x1021, "MOTIF ES 6"),
168YAMAHA_DEVICE(0x1022, "MOTIF ES 7"),
169YAMAHA_DEVICE(0x1023, "MOTIF ES 8"),
170YAMAHA_DEVICE(0x1024, "CVP-301"),
171YAMAHA_DEVICE(0x1025, "CVP-303"),
172YAMAHA_DEVICE(0x1026, "CVP-305"),
173YAMAHA_DEVICE(0x1027, "CVP-307"),
174YAMAHA_DEVICE(0x1028, "CVP-309"),
175YAMAHA_DEVICE(0x1029, "CVP-309GP"),
176YAMAHA_DEVICE(0x102a, "PSR-1500"),
177YAMAHA_DEVICE(0x102b, "PSR-3000"),
178YAMAHA_DEVICE(0x102e, "ELS-01/01C"),
179YAMAHA_DEVICE(0x1030, "PSR-295/293"),
180YAMAHA_DEVICE(0x1031, "DGX-205/203"),
181YAMAHA_DEVICE(0x1032, "DGX-305"),
182YAMAHA_DEVICE(0x1033, "DGX-505"),
183YAMAHA_DEVICE(0x1034, NULL),
184YAMAHA_DEVICE(0x1035, NULL),
185YAMAHA_DEVICE(0x1036, NULL),
186YAMAHA_DEVICE(0x1037, NULL),
187YAMAHA_DEVICE(0x1038, NULL),
188YAMAHA_DEVICE(0x1039, NULL),
189YAMAHA_DEVICE(0x103a, NULL),
190YAMAHA_DEVICE(0x103b, NULL),
191YAMAHA_DEVICE(0x103c, NULL),
Clemens Ladisch0ac2ac02005-07-01 16:19:39 +0200192YAMAHA_DEVICE(0x103d, NULL),
Clemens Ladischf542fda2005-09-20 09:06:36 +0200193YAMAHA_DEVICE(0x103e, NULL),
194YAMAHA_DEVICE(0x103f, NULL),
195YAMAHA_DEVICE(0x1040, NULL),
196YAMAHA_DEVICE(0x1041, NULL),
Clemens Ladischf1265392006-07-21 10:46:18 +0200197YAMAHA_DEVICE(0x1042, NULL),
198YAMAHA_DEVICE(0x1043, NULL),
199YAMAHA_DEVICE(0x1044, NULL),
200YAMAHA_DEVICE(0x1045, NULL),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201YAMAHA_DEVICE(0x2000, "DGP-7"),
202YAMAHA_DEVICE(0x2001, "DGP-5"),
203YAMAHA_DEVICE(0x2002, NULL),
204YAMAHA_DEVICE(0x5000, "CS1D"),
205YAMAHA_DEVICE(0x5001, "DSP1D"),
206YAMAHA_DEVICE(0x5002, "DME32"),
207YAMAHA_DEVICE(0x5003, "DM2000"),
208YAMAHA_DEVICE(0x5004, "02R96"),
209YAMAHA_DEVICE(0x5005, "ACU16-C"),
210YAMAHA_DEVICE(0x5006, "NHB32-C"),
211YAMAHA_DEVICE(0x5007, "DM1000"),
212YAMAHA_DEVICE(0x5008, "01V96"),
213YAMAHA_DEVICE(0x5009, "SPX2000"),
214YAMAHA_DEVICE(0x500a, "PM5D"),
215YAMAHA_DEVICE(0x500b, "DME64N"),
216YAMAHA_DEVICE(0x500c, "DME24N"),
217YAMAHA_DEVICE(0x500d, NULL),
218YAMAHA_DEVICE(0x500e, NULL),
Clemens Ladischf1265392006-07-21 10:46:18 +0200219YAMAHA_DEVICE(0x500f, NULL),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220YAMAHA_DEVICE(0x7000, "DTX"),
221YAMAHA_DEVICE(0x7010, "UB99"),
222#undef YAMAHA_DEVICE
223#undef YAMAHA_INTERFACE
224
225/*
226 * Roland/RolandED/Edirol/BOSS devices
227 */
228{
229 USB_DEVICE(0x0582, 0x0000),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100230 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 .vendor_name = "Roland",
232 .product_name = "UA-100",
233 .ifnum = QUIRK_ANY_INTERFACE,
234 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100235 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 {
237 .ifnum = 0,
238 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
239 .data = & (const struct audioformat) {
240 .format = SNDRV_PCM_FORMAT_S16_LE,
241 .channels = 4,
242 .iface = 0,
243 .altsetting = 1,
244 .altset_idx = 1,
245 .attributes = 0,
246 .endpoint = 0x01,
247 .ep_attr = 0x09,
248 .rates = SNDRV_PCM_RATE_CONTINUOUS,
249 .rate_min = 44100,
250 .rate_max = 44100,
251 }
252 },
253 {
254 .ifnum = 1,
255 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
256 .data = & (const struct audioformat) {
257 .format = SNDRV_PCM_FORMAT_S16_LE,
258 .channels = 2,
259 .iface = 1,
260 .altsetting = 1,
261 .altset_idx = 1,
262 .attributes = EP_CS_ATTR_FILL_MAX,
263 .endpoint = 0x81,
264 .ep_attr = 0x05,
265 .rates = SNDRV_PCM_RATE_CONTINUOUS,
266 .rate_min = 44100,
267 .rate_max = 44100,
268 }
269 },
270 {
271 .ifnum = 2,
272 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100273 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 .out_cables = 0x0007,
275 .in_cables = 0x0007
276 }
277 },
278 {
279 .ifnum = -1
280 }
281 }
282 }
283},
284{
285 USB_DEVICE(0x0582, 0x0002),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100286 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 .vendor_name = "EDIROL",
288 .product_name = "UM-4",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200289 .ifnum = QUIRK_ANY_INTERFACE,
290 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100291 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200292 {
293 .ifnum = 0,
294 .type = QUIRK_IGNORE_INTERFACE
295 },
296 {
297 .ifnum = 1,
298 .type = QUIRK_IGNORE_INTERFACE
299 },
300 {
301 .ifnum = 2,
302 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100303 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200304 .out_cables = 0x000f,
305 .in_cables = 0x000f
306 }
307 },
308 {
309 .ifnum = -1
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312 }
313},
314{
315 USB_DEVICE(0x0582, 0x0003),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100316 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 .vendor_name = "Roland",
318 .product_name = "SC-8850",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200319 .ifnum = QUIRK_ANY_INTERFACE,
320 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100321 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200322 {
323 .ifnum = 0,
324 .type = QUIRK_IGNORE_INTERFACE
325 },
326 {
327 .ifnum = 1,
328 .type = QUIRK_IGNORE_INTERFACE
329 },
330 {
331 .ifnum = 2,
332 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100333 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200334 .out_cables = 0x003f,
335 .in_cables = 0x003f
336 }
337 },
338 {
339 .ifnum = -1
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342 }
343},
344{
345 USB_DEVICE(0x0582, 0x0004),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100346 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 .vendor_name = "Roland",
348 .product_name = "U-8",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200349 .ifnum = QUIRK_ANY_INTERFACE,
350 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100351 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200352 {
353 .ifnum = 0,
354 .type = QUIRK_IGNORE_INTERFACE
355 },
356 {
357 .ifnum = 1,
358 .type = QUIRK_IGNORE_INTERFACE
359 },
360 {
361 .ifnum = 2,
362 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100363 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200364 .out_cables = 0x0005,
365 .in_cables = 0x0005
366 }
367 },
368 {
369 .ifnum = -1
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372 }
373},
374{
Clemens Ladisch119c4ff2006-01-19 08:25:19 +0100375 /* Has ID 0x0099 when not in "Advanced Driver" mode.
376 * The UM-2EX has only one input, but we cannot detect this. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 USB_DEVICE(0x0582, 0x0005),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100378 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 .vendor_name = "EDIROL",
380 .product_name = "UM-2",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200381 .ifnum = QUIRK_ANY_INTERFACE,
382 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100383 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200384 {
385 .ifnum = 0,
386 .type = QUIRK_IGNORE_INTERFACE
387 },
388 {
389 .ifnum = 1,
390 .type = QUIRK_IGNORE_INTERFACE
391 },
392 {
393 .ifnum = 2,
394 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100395 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200396 .out_cables = 0x0003,
397 .in_cables = 0x0003
398 }
399 },
400 {
401 .ifnum = -1
402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404 }
405},
406{
407 USB_DEVICE(0x0582, 0x0007),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100408 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 .vendor_name = "Roland",
410 .product_name = "SC-8820",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200411 .ifnum = QUIRK_ANY_INTERFACE,
412 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100413 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200414 {
415 .ifnum = 0,
416 .type = QUIRK_IGNORE_INTERFACE
417 },
418 {
419 .ifnum = 1,
420 .type = QUIRK_IGNORE_INTERFACE
421 },
422 {
423 .ifnum = 2,
424 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100425 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200426 .out_cables = 0x0013,
427 .in_cables = 0x0013
428 }
429 },
430 {
431 .ifnum = -1
432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434 }
435},
436{
437 USB_DEVICE(0x0582, 0x0008),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100438 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 .vendor_name = "Roland",
440 .product_name = "PC-300",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200441 .ifnum = QUIRK_ANY_INTERFACE,
442 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100443 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200444 {
445 .ifnum = 0,
446 .type = QUIRK_IGNORE_INTERFACE
447 },
448 {
449 .ifnum = 1,
450 .type = QUIRK_IGNORE_INTERFACE
451 },
452 {
453 .ifnum = 2,
454 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100455 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200456 .out_cables = 0x0001,
457 .in_cables = 0x0001
458 }
459 },
460 {
461 .ifnum = -1
462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464 }
465},
466{
Clemens Ladisch119c4ff2006-01-19 08:25:19 +0100467 /* has ID 0x009d when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 USB_DEVICE(0x0582, 0x0009),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100469 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 .vendor_name = "EDIROL",
471 .product_name = "UM-1",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200472 .ifnum = QUIRK_ANY_INTERFACE,
473 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100474 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200475 {
476 .ifnum = 0,
477 .type = QUIRK_IGNORE_INTERFACE
478 },
479 {
480 .ifnum = 1,
481 .type = QUIRK_IGNORE_INTERFACE
482 },
483 {
484 .ifnum = 2,
485 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100486 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200487 .out_cables = 0x0001,
488 .in_cables = 0x0001
489 }
490 },
491 {
492 .ifnum = -1
493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495 }
496},
497{
498 USB_DEVICE(0x0582, 0x000b),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100499 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 .vendor_name = "Roland",
501 .product_name = "SK-500",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200502 .ifnum = QUIRK_ANY_INTERFACE,
503 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100504 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200505 {
506 .ifnum = 0,
507 .type = QUIRK_IGNORE_INTERFACE
508 },
509 {
510 .ifnum = 1,
511 .type = QUIRK_IGNORE_INTERFACE
512 },
513 {
514 .ifnum = 2,
515 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100516 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200517 .out_cables = 0x0013,
518 .in_cables = 0x0013
519 }
520 },
521 {
522 .ifnum = -1
523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525 }
526},
527{
528 /* thanks to Emiliano Grilli <emillo@libero.it>
529 * for helping researching this data */
530 USB_DEVICE(0x0582, 0x000c),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100531 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 .vendor_name = "Roland",
533 .product_name = "SC-D70",
534 .ifnum = QUIRK_ANY_INTERFACE,
535 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100536 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 {
538 .ifnum = 0,
539 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
540 .data = & (const struct audioformat) {
541 .format = SNDRV_PCM_FORMAT_S24_3LE,
542 .channels = 2,
543 .iface = 0,
544 .altsetting = 1,
545 .altset_idx = 1,
546 .attributes = 0,
547 .endpoint = 0x01,
548 .ep_attr = 0x01,
549 .rates = SNDRV_PCM_RATE_CONTINUOUS,
550 .rate_min = 44100,
551 .rate_max = 44100,
552 }
553 },
554 {
555 .ifnum = 1,
556 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
557 .data = & (const struct audioformat) {
558 .format = SNDRV_PCM_FORMAT_S24_3LE,
559 .channels = 2,
560 .iface = 1,
561 .altsetting = 1,
562 .altset_idx = 1,
563 .attributes = 0,
564 .endpoint = 0x81,
565 .ep_attr = 0x01,
566 .rates = SNDRV_PCM_RATE_CONTINUOUS,
567 .rate_min = 44100,
568 .rate_max = 44100,
569 }
570 },
571 {
572 .ifnum = 2,
573 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100574 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 .out_cables = 0x0007,
576 .in_cables = 0x0007
577 }
578 },
579 {
580 .ifnum = -1
581 }
582 }
583 }
584},
585{ /*
586 * This quirk is for the "Advanced Driver" mode of the Edirol UA-5.
587 * If the advanced mode switch at the back of the unit is off, the
588 * UA-5 has ID 0x0582/0x0011 and is standard compliant (no quirks),
589 * but offers only 16-bit PCM.
590 * In advanced mode, the UA-5 will output S24_3LE samples (two
591 * channels) at the rate indicated on the front switch, including
592 * the 96kHz sample rate.
593 */
594 USB_DEVICE(0x0582, 0x0010),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100595 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 .vendor_name = "EDIROL",
597 .product_name = "UA-5",
598 .ifnum = QUIRK_ANY_INTERFACE,
599 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100600 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 {
602 .ifnum = 1,
603 .type = QUIRK_AUDIO_STANDARD_INTERFACE
604 },
605 {
606 .ifnum = 2,
607 .type = QUIRK_AUDIO_STANDARD_INTERFACE
608 },
609 {
610 .ifnum = -1
611 }
612 }
613 }
614},
615{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200616 /* has ID 0x0013 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 USB_DEVICE(0x0582, 0x0012),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100618 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 .vendor_name = "Roland",
620 .product_name = "XV-5050",
621 .ifnum = 0,
622 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100623 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 .out_cables = 0x0001,
625 .in_cables = 0x0001
626 }
627 }
628},
629{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200630 /* has ID 0x0015 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 USB_DEVICE(0x0582, 0x0014),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100632 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 .vendor_name = "EDIROL",
634 .product_name = "UM-880",
635 .ifnum = 0,
636 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100637 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 .out_cables = 0x01ff,
639 .in_cables = 0x01ff
640 }
641 }
642},
643{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200644 /* has ID 0x0017 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 USB_DEVICE(0x0582, 0x0016),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100646 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 .vendor_name = "EDIROL",
648 .product_name = "SD-90",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200649 .ifnum = QUIRK_ANY_INTERFACE,
650 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100651 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200652 {
653 .ifnum = 0,
654 .type = QUIRK_IGNORE_INTERFACE
655 },
656 {
657 .ifnum = 1,
658 .type = QUIRK_IGNORE_INTERFACE
659 },
660 {
661 .ifnum = 2,
662 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100663 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200664 .out_cables = 0x000f,
665 .in_cables = 0x000f
666 }
667 },
668 {
669 .ifnum = -1
670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
672 }
673},
674{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200675 /* has ID 0x001c when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 USB_DEVICE(0x0582, 0x001b),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100677 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 .vendor_name = "Roland",
679 .product_name = "MMP-2",
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200680 .ifnum = QUIRK_ANY_INTERFACE,
681 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100682 .data = (const struct snd_usb_audio_quirk[]) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200683 {
684 .ifnum = 0,
685 .type = QUIRK_IGNORE_INTERFACE
686 },
687 {
688 .ifnum = 1,
689 .type = QUIRK_IGNORE_INTERFACE
690 },
691 {
692 .ifnum = 2,
693 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100694 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischd3ff42f2005-05-17 09:14:27 +0200695 .out_cables = 0x0001,
696 .in_cables = 0x0001
697 }
698 },
699 {
700 .ifnum = -1
701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
703 }
704},
705{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200706 /* has ID 0x001e when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 USB_DEVICE(0x0582, 0x001d),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100708 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 .vendor_name = "Roland",
710 .product_name = "V-SYNTH",
711 .ifnum = 0,
712 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100713 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 .out_cables = 0x0001,
715 .in_cables = 0x0001
716 }
717 }
718},
719{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200720 /* has ID 0x0024 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 USB_DEVICE(0x0582, 0x0023),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100722 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 .vendor_name = "EDIROL",
724 .product_name = "UM-550",
725 .ifnum = 0,
726 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100727 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 .out_cables = 0x003f,
729 .in_cables = 0x003f
730 }
731 }
732},
733{
734 /*
735 * This quirk is for the "Advanced Driver" mode. If off, the UA-20
736 * has ID 0x0026 and is standard compliant, but has only 16-bit PCM
737 * and no MIDI.
738 */
739 USB_DEVICE(0x0582, 0x0025),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100740 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 .vendor_name = "EDIROL",
742 .product_name = "UA-20",
743 .ifnum = QUIRK_ANY_INTERFACE,
744 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100745 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 {
Clemens Ladisch1f14a652005-11-21 16:40:00 +0100747 .ifnum = 0,
748 .type = QUIRK_IGNORE_INTERFACE
749 },
750 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 .ifnum = 1,
Clemens Ladisch1f14a652005-11-21 16:40:00 +0100752 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
753 .data = & (const struct audioformat) {
754 .format = SNDRV_PCM_FORMAT_S24_3LE,
755 .channels = 2,
756 .iface = 1,
757 .altsetting = 1,
758 .altset_idx = 1,
759 .attributes = 0,
760 .endpoint = 0x01,
761 .ep_attr = 0x01,
762 .rates = SNDRV_PCM_RATE_CONTINUOUS,
763 .rate_min = 44100,
764 .rate_max = 44100,
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 },
767 {
768 .ifnum = 2,
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 = 2,
774 .altsetting = 1,
775 .altset_idx = 1,
776 .attributes = 0,
777 .endpoint = 0x82,
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 = 3,
Clemens Ladisch1f14a652005-11-21 16:40:00 +0100786 .type = QUIRK_MIDI_FIXED_ENDPOINT,
787 .data = & (const struct snd_usb_midi_endpoint_info) {
788 .out_cables = 0x0001,
789 .in_cables = 0x0001
790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 },
792 {
793 .ifnum = -1
794 }
795 }
796 }
797},
798{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200799 /* has ID 0x0028 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 USB_DEVICE(0x0582, 0x0027),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100801 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 .vendor_name = "EDIROL",
803 .product_name = "SD-20",
804 .ifnum = 0,
805 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100806 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 .out_cables = 0x0003,
808 .in_cables = 0x0007
809 }
810 }
811},
812{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200813 /* has ID 0x002a when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 USB_DEVICE(0x0582, 0x0029),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100815 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 .vendor_name = "EDIROL",
817 .product_name = "SD-80",
818 .ifnum = 0,
819 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100820 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 .out_cables = 0x000f,
822 .in_cables = 0x000f
823 }
824 }
825},
826{ /*
827 * This quirk is for the "Advanced" modes of the Edirol UA-700.
828 * If the sample format switch is not in an advanced setting, the
829 * UA-700 has ID 0x0582/0x002c and is standard compliant (no quirks),
830 * but offers only 16-bit PCM and no MIDI.
831 */
832 USB_DEVICE_VENDOR_SPEC(0x0582, 0x002b),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100833 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 .vendor_name = "EDIROL",
835 .product_name = "UA-700",
836 .ifnum = QUIRK_ANY_INTERFACE,
837 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100838 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 {
840 .ifnum = 1,
841 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
842 },
843 {
844 .ifnum = 2,
845 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
846 },
847 {
848 .ifnum = 3,
849 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
850 },
851 {
852 .ifnum = -1
853 }
854 }
855 }
856},
857{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200858 /* has ID 0x002e when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 USB_DEVICE(0x0582, 0x002d),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100860 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 .vendor_name = "Roland",
862 .product_name = "XV-2020",
863 .ifnum = 0,
864 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100865 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 .out_cables = 0x0001,
867 .in_cables = 0x0001
868 }
869 }
870},
871{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200872 /* has ID 0x0030 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 USB_DEVICE(0x0582, 0x002f),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100874 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 .vendor_name = "Roland",
876 .product_name = "VariOS",
877 .ifnum = 0,
878 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100879 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 .out_cables = 0x0007,
881 .in_cables = 0x0007
882 }
883 }
884},
885{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200886 /* has ID 0x0034 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 USB_DEVICE(0x0582, 0x0033),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100888 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 .vendor_name = "EDIROL",
890 .product_name = "PCR",
891 .ifnum = 0,
892 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100893 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 .out_cables = 0x0003,
895 .in_cables = 0x0007
896 }
897 }
898},
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200899 /* TODO: add Roland M-1000 support */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200901 /*
902 * Has ID 0x0038 when not in "Advanced Driver" mode;
903 * later revisions use IDs 0x0054 and 0x00a2.
904 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 USB_DEVICE(0x0582, 0x0037),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100906 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 .vendor_name = "Roland",
908 .product_name = "Digital Piano",
909 .ifnum = 0,
910 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100911 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 .out_cables = 0x0001,
913 .in_cables = 0x0001
914 }
915 }
916},
917{
Clemens Ladisch5af4c832005-04-06 09:47:02 +0200918 /*
919 * This quirk is for the "Advanced Driver" mode. If off, the GS-10
920 * has ID 0x003c and is standard compliant, but has only 16-bit PCM
921 * and no MIDI.
922 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 USB_DEVICE_VENDOR_SPEC(0x0582, 0x003b),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100924 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 .vendor_name = "BOSS",
926 .product_name = "GS-10",
Clemens Ladisch5af4c832005-04-06 09:47:02 +0200927 .ifnum = QUIRK_ANY_INTERFACE,
928 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100929 .data = & (const struct snd_usb_audio_quirk[]) {
Clemens Ladisch5af4c832005-04-06 09:47:02 +0200930 {
931 .ifnum = 1,
932 .type = QUIRK_AUDIO_STANDARD_INTERFACE
933 },
934 {
935 .ifnum = 2,
936 .type = QUIRK_AUDIO_STANDARD_INTERFACE
937 },
938 {
939 .ifnum = 3,
940 .type = QUIRK_MIDI_STANDARD_INTERFACE
941 },
942 {
943 .ifnum = -1
944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946 }
947},
948{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200949 /* has ID 0x0041 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 USB_DEVICE(0x0582, 0x0040),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100951 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 .vendor_name = "Roland",
953 .product_name = "GI-20",
954 .ifnum = 0,
955 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100956 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 .out_cables = 0x0001,
958 .in_cables = 0x0001
959 }
960 }
961},
962{
Clemens Ladischd879f0c2005-09-21 16:33:49 +0200963 /* has ID 0x0043 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 USB_DEVICE(0x0582, 0x0042),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100965 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 .vendor_name = "Roland",
967 .product_name = "RS-70",
968 .ifnum = 0,
969 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100970 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 .out_cables = 0x0001,
972 .in_cables = 0x0001
973 }
974 }
975},
976{
977 USB_DEVICE(0x0582, 0x0044),
Takashi Iwai86e07d32005-11-17 15:08:02 +0100978 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 .vendor_name = "Roland",
980 .product_name = "UA-1000",
981 .ifnum = QUIRK_ANY_INTERFACE,
982 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100983 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 {
985 .ifnum = 1,
986 .type = QUIRK_AUDIO_EDIROL_UA1000
987 },
988 {
989 .ifnum = 2,
990 .type = QUIRK_AUDIO_EDIROL_UA1000
991 },
992 {
993 .ifnum = 3,
994 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +0100995 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 .out_cables = 0x0003,
997 .in_cables = 0x0003
998 }
999 },
1000 {
1001 .ifnum = -1
1002 }
1003 }
1004 }
1005},
1006{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001007 /* has ID 0x004a when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 USB_DEVICE(0x0582, 0x0048),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001009 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 .vendor_name = "EDIROL",
1011 .product_name = "UR-80",
1012 .ifnum = 0,
1013 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001014 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 .out_cables = 0x0003,
1016 .in_cables = 0x0007
1017 }
1018 }
1019},
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001020 /* TODO: add Edirol M-100FX support */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Clemens Ladischf38cc312007-02-09 20:52:55 +01001022 /* has ID 0x004e when not in "Advanced Driver" mode */
1023 USB_DEVICE(0x0582, 0x004c),
1024 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1025 .vendor_name = "EDIROL",
1026 .product_name = "PCR-A",
1027 .ifnum = QUIRK_ANY_INTERFACE,
1028 .type = QUIRK_COMPOSITE,
1029 .data = (const struct snd_usb_audio_quirk[]) {
1030 {
1031 .ifnum = 1,
1032 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1033 },
1034 {
1035 .ifnum = 2,
1036 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1037 },
1038 {
1039 .ifnum = -1
1040 }
1041 }
1042 }
1043},
1044{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001045 /* has ID 0x004f when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 USB_DEVICE(0x0582, 0x004d),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001047 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 .vendor_name = "EDIROL",
1049 .product_name = "PCR-A",
1050 .ifnum = 0,
1051 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001052 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 .out_cables = 0x0003,
1054 .in_cables = 0x0007
1055 }
1056 }
1057},
1058{
1059 /*
1060 * This quirk is for the "Advanced Driver" mode. If off, the UA-3FX
1061 * is standard compliant, but has only 16-bit PCM.
1062 */
1063 USB_DEVICE(0x0582, 0x0050),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001064 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 .vendor_name = "EDIROL",
1066 .product_name = "UA-3FX",
1067 .ifnum = QUIRK_ANY_INTERFACE,
1068 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001069 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 {
1071 .ifnum = 1,
1072 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1073 },
1074 {
1075 .ifnum = 2,
1076 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1077 },
1078 {
1079 .ifnum = -1
1080 }
1081 }
1082 }
1083},
1084{
1085 USB_DEVICE(0x0582, 0x0052),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001086 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 .vendor_name = "EDIROL",
1088 .product_name = "UM-1SX",
1089 .ifnum = 0,
1090 .type = QUIRK_MIDI_STANDARD_INTERFACE
1091 }
1092},
Takashi Iwaif1676842007-07-09 10:39:44 +02001093{
1094 USB_DEVICE(0x0582, 0x0060),
1095 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1096 .vendor_name = "Roland",
1097 .product_name = "EXR Series",
1098 .ifnum = 0,
1099 .type = QUIRK_MIDI_STANDARD_INTERFACE
1100 }
1101},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001103 /* has ID 0x0067 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 USB_DEVICE(0x0582, 0x0065),
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 = "PCR-1",
1108 .ifnum = 0,
1109 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001110 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 .out_cables = 0x0001,
1112 .in_cables = 0x0003
1113 }
1114 }
1115},
1116{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001117 /* has ID 0x006b when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 USB_DEVICE_VENDOR_SPEC(0x0582, 0x006a),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001119 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 .vendor_name = "Roland",
1121 .product_name = "SP-606",
1122 .ifnum = 3,
1123 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001124 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 .out_cables = 0x0001,
1126 .in_cables = 0x0001
1127 }
1128 }
1129},
1130{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001131 /* has ID 0x006e when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 USB_DEVICE(0x0582, 0x006d),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001133 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 .vendor_name = "Roland",
1135 .product_name = "FANTOM-X",
1136 .ifnum = 0,
1137 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001138 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 .out_cables = 0x0001,
1140 .in_cables = 0x0001
1141 }
1142 }
1143},
Claudio Matsuoka95093a22007-07-03 20:07:39 +02001144{
1145 USB_DEVICE(0x582, 0x00a6),
1146 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1147 .vendor_name = "Roland",
1148 .product_name = "Juno-G",
1149 .ifnum = 0,
1150 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1151 .data = & (const struct snd_usb_midi_endpoint_info) {
1152 .out_cables = 0x0001,
1153 .in_cables = 0x0001
1154 }
1155 }
1156},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{ /*
1158 * This quirk is for the "Advanced" modes of the Edirol UA-25.
1159 * If the switch is not in an advanced setting, the UA-25 has
1160 * ID 0x0582/0x0073 and is standard compliant (no quirks), but
1161 * offers only 16-bit PCM at 44.1 kHz and no MIDI.
1162 */
1163 USB_DEVICE_VENDOR_SPEC(0x0582, 0x0074),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001164 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 .vendor_name = "EDIROL",
1166 .product_name = "UA-25",
1167 .ifnum = QUIRK_ANY_INTERFACE,
1168 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001169 .data = (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 {
1171 .ifnum = 0,
1172 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
1173 },
1174 {
1175 .ifnum = 1,
1176 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
1177 },
1178 {
1179 .ifnum = 2,
1180 .type = QUIRK_AUDIO_EDIROL_UA700_UA25
1181 },
1182 {
1183 .ifnum = -1
1184 }
1185 }
1186 }
1187},
1188{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001189 /* has ID 0x0076 when not in "Advanced Driver" mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 USB_DEVICE(0x0582, 0x0075),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001191 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 .vendor_name = "BOSS",
1193 .product_name = "DR-880",
1194 .ifnum = 0,
1195 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001196 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 .out_cables = 0x0001,
1198 .in_cables = 0x0001
1199 }
1200 }
1201},
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001202{
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001203 /* has ID 0x007b when not in "Advanced Driver" mode */
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001204 USB_DEVICE_VENDOR_SPEC(0x0582, 0x007a),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001205 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001206 .vendor_name = "Roland",
Clemens Ladischd879f0c2005-09-21 16:33:49 +02001207 /* "RD" or "RD-700SX"? */
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001208 .ifnum = 0,
1209 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001210 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladisch5a2a68f2005-09-19 12:24:00 +02001211 .out_cables = 0x0003,
1212 .in_cables = 0x0003
1213 }
1214 }
1215},
Bjoern Fayd0b0fac2007-02-05 12:27:21 +01001216/* Roland UA-101 in High-Speed Mode only */
1217{
1218 USB_DEVICE(0x0582, 0x007d),
1219 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1220 .vendor_name = "Roland",
1221 .product_name = "UA-101",
1222 .ifnum = QUIRK_ANY_INTERFACE,
1223 .type = QUIRK_COMPOSITE,
1224 .data = (const struct snd_usb_audio_quirk[]) {
1225 {
1226 .ifnum = 0,
1227 .type = QUIRK_AUDIO_EDIROL_UA101
1228 },
1229 {
1230 .ifnum = 1,
1231 .type = QUIRK_AUDIO_EDIROL_UA101
1232 },
1233 {
1234 .ifnum = 2,
1235 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1236 .data = & (const struct snd_usb_midi_endpoint_info) {
1237 .out_cables = 0x0001,
1238 .in_cables = 0x0001
1239 }
1240 },
1241 {
1242 .ifnum = -1
1243 }
1244 }
1245 }
1246},
Clemens Ladischcdca8812006-01-18 08:53:32 +01001247{
1248 /* has ID 0x0081 when not in "Advanced Driver" mode */
1249 USB_DEVICE(0x0582, 0x0080),
1250 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1251 .vendor_name = "Roland",
1252 .product_name = "G-70",
1253 .ifnum = 0,
1254 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1255 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladisch05422572006-01-18 15:44:53 +01001256 .out_cables = 0x0001,
1257 .in_cables = 0x0001
Clemens Ladischcdca8812006-01-18 08:53:32 +01001258 }
1259 }
1260},
Clemens Ladisch7c79b762006-01-10 18:56:23 +01001261 /* TODO: add Roland V-SYNTH XT support */
1262 /* TODO: add BOSS GT-PRO support */
Clemens Ladisch415b09e2006-01-16 08:03:52 +01001263{
1264 /* has ID 0x008c when not in "Advanced Driver" mode */
1265 USB_DEVICE(0x0582, 0x008b),
1266 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1267 .vendor_name = "EDIROL",
1268 .product_name = "PC-50",
1269 .ifnum = 0,
1270 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1271 .data = & (const struct snd_usb_midi_endpoint_info) {
1272 .out_cables = 0x0001,
1273 .in_cables = 0x0001
1274 }
1275 }
1276},
Clemens Ladisch7c79b762006-01-10 18:56:23 +01001277 /* TODO: add Edirol PC-80 support */
Takashi Iwai9b0d39b2007-08-10 15:07:06 +02001278{
1279 USB_DEVICE(0x0582, 0x0096),
1280 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1281 .vendor_name = "EDIROL",
1282 .product_name = "UA-1EX",
1283 .ifnum = QUIRK_ANY_INTERFACE,
1284 .type = QUIRK_COMPOSITE,
1285 .data = (const struct snd_usb_audio_quirk[]) {
1286 {
1287 .ifnum = 0,
1288 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1289 },
1290 {
1291 .ifnum = 1,
1292 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1293 },
1294 {
1295 .ifnum = -1
1296 }
1297 }
1298 }
1299},
Clemens Ladisch7c79b762006-01-10 18:56:23 +01001300{
1301 USB_DEVICE(0x0582, 0x009a),
1302 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1303 .vendor_name = "EDIROL",
1304 .product_name = "UM-3EX",
1305 .ifnum = 0,
1306 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1307 .data = & (const struct snd_usb_midi_endpoint_info) {
1308 .out_cables = 0x000f,
1309 .in_cables = 0x000f
1310 }
1311 }
1312},
1313 /* TODO: add Edirol MD-P1 support */
Carlo Beccaria87823092007-07-03 08:04:25 +02001314{
1315 /* Roland SH-201 */
1316 USB_DEVICE(0x0582, 0x00ad),
1317 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1318 .vendor_name = "Roland",
1319 .product_name = "SH-201",
1320 .ifnum = QUIRK_ANY_INTERFACE,
1321 .type = QUIRK_COMPOSITE,
1322 .data = (const struct snd_usb_audio_quirk[]) {
1323 {
1324 .ifnum = 0,
1325 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1326 },
1327 {
1328 .ifnum = 1,
1329 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1330 },
1331 {
1332 .ifnum = 2,
1333 .type = QUIRK_MIDI_FIXED_ENDPOINT,
1334 .data = & (const struct snd_usb_midi_endpoint_info) {
1335 .out_cables = 0x0001,
1336 .in_cables = 0x0001
1337 }
1338 },
1339 {
1340 .ifnum = -1
1341 }
1342 }
1343 }
1344},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Clemens Ladischa25f1752005-10-05 13:23:19 +02001346/* Guillemot devices */
1347{
1348 /*
1349 * This is for the "Windows Edition" where the external MIDI ports are
1350 * the only MIDI ports; the control data is reported through HID
1351 * interfaces. The "Macintosh Edition" has ID 0xd002 and uses standard
1352 * compliant USB MIDI ports for external MIDI and controls.
1353 */
1354 USB_DEVICE_VENDOR_SPEC(0x06f8, 0xb000),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001355 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischa25f1752005-10-05 13:23:19 +02001356 .vendor_name = "Hercules",
1357 .product_name = "DJ Console (WE)",
1358 .ifnum = 4,
1359 .type = QUIRK_MIDI_FIXED_ENDPOINT,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001360 .data = & (const struct snd_usb_midi_endpoint_info) {
Clemens Ladischa25f1752005-10-05 13:23:19 +02001361 .out_cables = 0x0001,
1362 .in_cables = 0x0001
1363 }
1364 }
1365},
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367/* Midiman/M-Audio devices */
1368{
1369 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1002),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001370 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 .vendor_name = "M-Audio",
1372 .product_name = "MidiSport 2x2",
1373 .ifnum = QUIRK_ANY_INTERFACE,
1374 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001375 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 .out_cables = 0x0003,
1377 .in_cables = 0x0003
1378 }
1379 }
1380},
1381{
1382 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1011),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001383 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 .vendor_name = "M-Audio",
1385 .product_name = "MidiSport 1x1",
1386 .ifnum = QUIRK_ANY_INTERFACE,
1387 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001388 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 .out_cables = 0x0001,
1390 .in_cables = 0x0001
1391 }
1392 }
1393},
1394{
1395 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1015),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001396 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 .vendor_name = "M-Audio",
1398 .product_name = "Keystation",
1399 .ifnum = QUIRK_ANY_INTERFACE,
1400 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001401 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 .out_cables = 0x0001,
1403 .in_cables = 0x0001
1404 }
1405 }
1406},
1407{
1408 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1021),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001409 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 .vendor_name = "M-Audio",
1411 .product_name = "MidiSport 4x4",
1412 .ifnum = QUIRK_ANY_INTERFACE,
1413 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001414 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 .out_cables = 0x000f,
1416 .in_cables = 0x000f
1417 }
1418 }
1419},
1420{
1421 /*
1422 * For hardware revision 1.05; in the later revisions (1.10 and
1423 * 1.21), 0x1031 is the ID for the device without firmware.
1424 * Thanks to Olaf Giesbrecht <Olaf_Giesbrecht@yahoo.de>
1425 */
1426 USB_DEVICE_VER(0x0763, 0x1031, 0x0100, 0x0109),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001427 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 .vendor_name = "M-Audio",
1429 .product_name = "MidiSport 8x8",
1430 .ifnum = QUIRK_ANY_INTERFACE,
1431 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001432 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 .out_cables = 0x01ff,
1434 .in_cables = 0x01ff
1435 }
1436 }
1437},
1438{
1439 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1033),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001440 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 .vendor_name = "M-Audio",
1442 .product_name = "MidiSport 8x8",
1443 .ifnum = QUIRK_ANY_INTERFACE,
1444 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001445 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 .out_cables = 0x01ff,
1447 .in_cables = 0x01ff
1448 }
1449 }
1450},
1451{
1452 USB_DEVICE_VENDOR_SPEC(0x0763, 0x1041),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001453 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 .vendor_name = "M-Audio",
1455 .product_name = "MidiSport 2x4",
1456 .ifnum = QUIRK_ANY_INTERFACE,
1457 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001458 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 .out_cables = 0x000f,
1460 .in_cables = 0x0003
1461 }
1462 }
1463},
1464{
1465 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2001),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001466 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 .vendor_name = "M-Audio",
1468 .product_name = "Quattro",
1469 .ifnum = QUIRK_ANY_INTERFACE,
1470 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001471 .data = & (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /*
1473 * Interfaces 0-2 are "Windows-compatible", 16-bit only,
1474 * and share endpoints with the other interfaces.
1475 * Ignore them. The other interfaces can do 24 bits,
1476 * but captured samples are big-endian (see usbaudio.c).
1477 */
1478 {
1479 .ifnum = 0,
1480 .type = QUIRK_IGNORE_INTERFACE
1481 },
1482 {
1483 .ifnum = 1,
1484 .type = QUIRK_IGNORE_INTERFACE
1485 },
1486 {
1487 .ifnum = 2,
1488 .type = QUIRK_IGNORE_INTERFACE
1489 },
1490 {
1491 .ifnum = 3,
1492 .type = QUIRK_IGNORE_INTERFACE
1493 },
1494 {
1495 .ifnum = 4,
1496 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1497 },
1498 {
1499 .ifnum = 5,
1500 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1501 },
1502 {
1503 .ifnum = 6,
1504 .type = QUIRK_IGNORE_INTERFACE
1505 },
1506 {
1507 .ifnum = 7,
1508 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1509 },
1510 {
1511 .ifnum = 8,
1512 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1513 },
1514 {
1515 .ifnum = 9,
1516 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001517 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 .out_cables = 0x0001,
1519 .in_cables = 0x0001
1520 }
1521 },
1522 {
1523 .ifnum = -1
1524 }
1525 }
1526 }
1527},
1528{
1529 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2003),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001530 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 .vendor_name = "M-Audio",
1532 .product_name = "AudioPhile",
1533 .ifnum = 6,
1534 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001535 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 .out_cables = 0x0001,
1537 .in_cables = 0x0001
1538 }
1539 }
1540},
1541{
1542 USB_DEVICE_VENDOR_SPEC(0x0763, 0x2008),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001543 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 .vendor_name = "M-Audio",
1545 .product_name = "Ozone",
1546 .ifnum = 3,
1547 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001548 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 .out_cables = 0x0001,
1550 .in_cables = 0x0001
1551 }
1552 }
1553},
1554{
1555 USB_DEVICE_VENDOR_SPEC(0x0763, 0x200d),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001556 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 .vendor_name = "M-Audio",
1558 .product_name = "OmniStudio",
1559 .ifnum = QUIRK_ANY_INTERFACE,
1560 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001561 .data = & (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 {
1563 .ifnum = 0,
1564 .type = QUIRK_IGNORE_INTERFACE
1565 },
1566 {
1567 .ifnum = 1,
1568 .type = QUIRK_IGNORE_INTERFACE
1569 },
1570 {
1571 .ifnum = 2,
1572 .type = QUIRK_IGNORE_INTERFACE
1573 },
1574 {
1575 .ifnum = 3,
1576 .type = QUIRK_IGNORE_INTERFACE
1577 },
1578 {
1579 .ifnum = 4,
1580 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1581 },
1582 {
1583 .ifnum = 5,
1584 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1585 },
1586 {
1587 .ifnum = 6,
1588 .type = QUIRK_IGNORE_INTERFACE
1589 },
1590 {
1591 .ifnum = 7,
1592 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1593 },
1594 {
1595 .ifnum = 8,
1596 .type = QUIRK_AUDIO_STANDARD_INTERFACE
1597 },
1598 {
1599 .ifnum = 9,
1600 .type = QUIRK_MIDI_MIDIMAN,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001601 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 .out_cables = 0x0001,
1603 .in_cables = 0x0001
1604 }
1605 },
1606 {
1607 .ifnum = -1
1608 }
1609 }
1610 }
1611},
Clemens Ladisch2ea547dc2007-09-17 09:33:17 +02001612{
1613 USB_DEVICE(0x0763, 0x2019),
1614 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1615 /* .vendor_name = "M-Audio", */
1616 /* .product_name = "Ozone Academic", */
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_AUDIO_STANDARD_INTERFACE
1631 },
1632 {
1633 .ifnum = 3,
1634 .type = QUIRK_MIDI_MIDIMAN,
1635 .data = & (const struct snd_usb_midi_endpoint_info) {
1636 .out_cables = 0x0001,
1637 .in_cables = 0x0001
1638 }
1639 },
1640 {
1641 .ifnum = -1
1642 }
1643 }
1644 }
1645},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Clemens Ladisch0243ef712006-03-09 07:55:55 +01001647/* Casio devices */
1648{
Clemens Ladisch9808dc92006-03-16 08:15:25 +01001649 USB_DEVICE(0x07cf, 0x6801),
1650 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1651 .vendor_name = "Casio",
1652 .product_name = "PL-40R",
1653 .ifnum = 0,
1654 .type = QUIRK_MIDI_YAMAHA
1655 }
1656},
1657{
Clemens Ladisch318d27f2006-03-09 08:17:08 +01001658 /* this ID is used by several devices without a product ID */
Clemens Ladisch0243ef712006-03-09 07:55:55 +01001659 USB_DEVICE(0x07cf, 0x6802),
1660 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1661 .vendor_name = "Casio",
Clemens Ladisch318d27f2006-03-09 08:17:08 +01001662 .product_name = "Keyboard",
Clemens Ladisch0243ef712006-03-09 07:55:55 +01001663 .ifnum = 0,
1664 .type = QUIRK_MIDI_YAMAHA
1665 }
1666},
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668/* Mark of the Unicorn devices */
1669{
1670 /* thanks to Robert A. Lerche <ral 'at' msbit.com> */
Clemens Ladischbbd46152005-07-04 09:21:45 +02001671 .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
1672 USB_DEVICE_ID_MATCH_PRODUCT |
1673 USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
1674 .idVendor = 0x07fd,
1675 .idProduct = 0x0001,
1676 .bDeviceSubClass = 2,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001677 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 .vendor_name = "MOTU",
1679 .product_name = "Fastlane",
1680 .ifnum = QUIRK_ANY_INTERFACE,
1681 .type = QUIRK_COMPOSITE,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001682 .data = & (const struct snd_usb_audio_quirk[]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 {
1684 .ifnum = 0,
Clemens Ladisch6155aff2005-07-04 09:20:42 +02001685 .type = QUIRK_MIDI_RAW
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 },
1687 {
1688 .ifnum = 1,
1689 .type = QUIRK_IGNORE_INTERFACE
1690 },
1691 {
1692 .ifnum = -1
1693 }
1694 }
1695 }
1696},
1697
1698{
1699 /* Creative Sound Blaster MP3+ */
1700 USB_DEVICE(0x041e, 0x3010),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001701 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 .vendor_name = "Creative Labs",
1703 .product_name = "Sound Blaster MP3+",
1704 .ifnum = QUIRK_NO_INTERFACE
1705 }
1706
1707},
1708
1709/* Emagic devices */
1710{
1711 USB_DEVICE(0x086a, 0x0001),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001712 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 .vendor_name = "Emagic",
1714 /* .product_name = "Unitor8", */
1715 .ifnum = 2,
1716 .type = QUIRK_MIDI_EMAGIC,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001717 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 .out_cables = 0x80ff,
1719 .in_cables = 0x80ff
1720 }
1721 }
1722},
1723{
1724 USB_DEVICE(0x086a, 0x0002),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001725 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 .vendor_name = "Emagic",
1727 /* .product_name = "AMT8", */
1728 .ifnum = 2,
1729 .type = QUIRK_MIDI_EMAGIC,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001730 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 .out_cables = 0x80ff,
1732 .in_cables = 0x80ff
1733 }
1734 }
1735},
1736{
1737 USB_DEVICE(0x086a, 0x0003),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001738 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 .vendor_name = "Emagic",
1740 /* .product_name = "MT4", */
1741 .ifnum = 2,
1742 .type = QUIRK_MIDI_EMAGIC,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001743 .data = & (const struct snd_usb_midi_endpoint_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 .out_cables = 0x800f,
1745 .in_cables = 0x8003
1746 }
1747 }
1748},
1749
Clemens Ladisch31ab9522005-09-26 08:55:01 +02001750/* TerraTec devices */
1751{
1752 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0012),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001753 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch31ab9522005-09-26 08:55:01 +02001754 .vendor_name = "TerraTec",
1755 .product_name = "PHASE 26",
1756 .ifnum = 3,
1757 .type = QUIRK_MIDI_STANDARD_INTERFACE
1758 }
1759},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
1761 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0013),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001762 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladisch31ab9522005-09-26 08:55:01 +02001763 .vendor_name = "TerraTec",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 .product_name = "PHASE 26",
1765 .ifnum = 3,
1766 .type = QUIRK_MIDI_STANDARD_INTERFACE
1767 }
1768},
Clemens Ladischb2b82292006-02-08 12:38:23 +01001769{
Clemens Ladischbc56eff2006-04-13 10:16:08 +02001770 USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0014),
1771 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1772 .vendor_name = "TerraTec",
1773 .product_name = "PHASE 26",
1774 .ifnum = 3,
1775 .type = QUIRK_MIDI_STANDARD_INTERFACE
1776 }
1777},
1778{
Clemens Ladischb2b82292006-02-08 12:38:23 +01001779 USB_DEVICE(0x0ccd, 0x0035),
1780 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1781 .vendor_name = "Miditech",
1782 .product_name = "Play'n Roll",
1783 .ifnum = 0,
1784 .type = QUIRK_MIDI_CME
1785 }
1786},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Mark Hills0f28ecd2007-08-10 08:01:54 +02001788/* Stanton/N2IT Final Scratch v1 device ('Scratchamp') */
1789{
1790 USB_DEVICE(0x103d, 0x0100),
1791 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1792 .vendor_name = "Stanton",
1793 .product_name = "ScratchAmp",
1794 .ifnum = QUIRK_NO_INTERFACE
1795 }
1796},
1797{
1798 USB_DEVICE(0x103d, 0x0101),
1799 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1800 .vendor_name = "Stanton",
1801 .product_name = "ScratchAmp",
1802 .ifnum = QUIRK_NO_INTERFACE
1803 }
1804},
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806/* Novation EMS devices */
1807{
1808 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0001),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001809 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 .vendor_name = "Novation",
1811 .product_name = "ReMOTE Audio/XStation",
1812 .ifnum = 4,
1813 .type = QUIRK_MIDI_NOVATION
1814 }
1815},
1816{
1817 USB_DEVICE_VENDOR_SPEC(0x1235, 0x0002),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001818 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 .vendor_name = "Novation",
1820 .product_name = "Speedio",
1821 .ifnum = 3,
1822 .type = QUIRK_MIDI_NOVATION
1823 }
1824},
1825{
1826 USB_DEVICE_VENDOR_SPEC(0x1235, 0x4661),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001827 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 .vendor_name = "Novation",
1829 .product_name = "ReMOTE25",
1830 .ifnum = 0,
1831 .type = QUIRK_MIDI_NOVATION
1832 }
1833},
1834
Mark Hills3a7788b2007-09-03 08:20:09 +02001835/* */
Clemens Ladisch15944802007-08-29 17:38:14 +02001836{
Mark Hills3a7788b2007-09-03 08:20:09 +02001837 /* aka. Serato Scratch Live DJ Box */
Clemens Ladisch15944802007-08-29 17:38:14 +02001838 USB_DEVICE(0x13e5, 0x0001),
Mark Hills3a7788b2007-09-03 08:20:09 +02001839 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
1840 .vendor_name = "Rane",
1841 .product_name = "SL-1",
1842 .ifnum = QUIRK_NO_INTERFACE
Clemens Ladisch15944802007-08-29 17:38:14 +02001843 }
1844},
1845
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01001846/* Miditech devices */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847{
Clemens Ladischf38275f2005-07-25 16:17:29 +02001848 USB_DEVICE(0x4752, 0x0011),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001849 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischf38275f2005-07-25 16:17:29 +02001850 .vendor_name = "Miditech",
1851 .product_name = "Midistart-2",
1852 .ifnum = 0,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01001853 .type = QUIRK_MIDI_CME
Clemens Ladischf38275f2005-07-25 16:17:29 +02001854 }
1855},
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01001856
1857/* Central Music devices */
Clemens Ladischf38275f2005-07-25 16:17:29 +02001858{
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01001859 /* this ID used by both Miditech MidiStudio-2 and CME UF-x */
Clemens Ladischf38275f2005-07-25 16:17:29 +02001860 USB_DEVICE(0x7104, 0x2202),
Takashi Iwai86e07d32005-11-17 15:08:02 +01001861 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Clemens Ladischf38275f2005-07-25 16:17:29 +02001862 .ifnum = 0,
Clemens Ladischcc7a59b2006-02-07 17:11:06 +01001863 .type = QUIRK_MIDI_CME
Clemens Ladischf38275f2005-07-25 16:17:29 +02001864 }
1865},
1866
1867{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 /*
1869 * Some USB MIDI devices don't have an audio control interface,
1870 * so we have to grab MIDI streaming interfaces here.
1871 */
1872 .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS |
1873 USB_DEVICE_ID_MATCH_INT_SUBCLASS,
1874 .bInterfaceClass = USB_CLASS_AUDIO,
1875 .bInterfaceSubClass = USB_SUBCLASS_MIDI_STREAMING,
Takashi Iwai86e07d32005-11-17 15:08:02 +01001876 .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 .ifnum = QUIRK_ANY_INTERFACE,
1878 .type = QUIRK_MIDI_STANDARD_INTERFACE
1879 }
1880},
1881
1882#undef USB_DEVICE_VENDOR_SPEC