usbquirks.h 50 KB

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