quirks-table.h 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313
  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_AUDIOCONTROL
  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_AUDIOCONTROL
  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_AUDIOCONTROL
  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_AUDIOCONTROL
  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_AUDIOCONTROL
  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_AUDIOCONTROL
  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. .formats = SNDRV_PCM_FMTBIT_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. .formats = SNDRV_PCM_FMTBIT_S16_LE,
  292. .channels = 2,
  293. .iface = 1,
  294. .altsetting = 1,
  295. .altset_idx = 1,
  296. .attributes = UAC_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. .formats = SNDRV_PCM_FMTBIT_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. .formats = SNDRV_PCM_FMTBIT_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. .formats = SNDRV_PCM_FMTBIT_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. .formats = SNDRV_PCM_FMTBIT_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. /* has ID 0x0049 when not in "Advanced Driver" mode */
  1012. USB_DEVICE(0x0582, 0x0047),
  1013. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1014. /* .vendor_name = "EDIROL", */
  1015. /* .product_name = "UR-80", */
  1016. .ifnum = QUIRK_ANY_INTERFACE,
  1017. .type = QUIRK_COMPOSITE,
  1018. .data = (const struct snd_usb_audio_quirk[]) {
  1019. /* in the 96 kHz modes, only interface 1 is there */
  1020. {
  1021. .ifnum = 1,
  1022. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1023. },
  1024. {
  1025. .ifnum = 2,
  1026. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1027. },
  1028. {
  1029. .ifnum = -1
  1030. }
  1031. }
  1032. }
  1033. },
  1034. {
  1035. /* has ID 0x004a when not in "Advanced Driver" mode */
  1036. USB_DEVICE(0x0582, 0x0048),
  1037. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1038. /* .vendor_name = "EDIROL", */
  1039. /* .product_name = "UR-80", */
  1040. .ifnum = 0,
  1041. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1042. .data = & (const struct snd_usb_midi_endpoint_info) {
  1043. .out_cables = 0x0003,
  1044. .in_cables = 0x0007
  1045. }
  1046. }
  1047. },
  1048. /* TODO: add Edirol M-100FX support */
  1049. {
  1050. /* has ID 0x004e when not in "Advanced Driver" mode */
  1051. USB_DEVICE(0x0582, 0x004c),
  1052. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1053. .vendor_name = "EDIROL",
  1054. .product_name = "PCR-A",
  1055. .ifnum = QUIRK_ANY_INTERFACE,
  1056. .type = QUIRK_COMPOSITE,
  1057. .data = (const struct snd_usb_audio_quirk[]) {
  1058. {
  1059. .ifnum = 1,
  1060. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1061. },
  1062. {
  1063. .ifnum = 2,
  1064. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1065. },
  1066. {
  1067. .ifnum = -1
  1068. }
  1069. }
  1070. }
  1071. },
  1072. {
  1073. /* has ID 0x004f when not in "Advanced Driver" mode */
  1074. USB_DEVICE(0x0582, 0x004d),
  1075. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1076. .vendor_name = "EDIROL",
  1077. .product_name = "PCR-A",
  1078. .ifnum = 0,
  1079. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1080. .data = & (const struct snd_usb_midi_endpoint_info) {
  1081. .out_cables = 0x0003,
  1082. .in_cables = 0x0007
  1083. }
  1084. }
  1085. },
  1086. {
  1087. /*
  1088. * This quirk is for the "Advanced Driver" mode. If off, the UA-3FX
  1089. * is standard compliant, but has only 16-bit PCM.
  1090. */
  1091. USB_DEVICE(0x0582, 0x0050),
  1092. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1093. .vendor_name = "EDIROL",
  1094. .product_name = "UA-3FX",
  1095. .ifnum = QUIRK_ANY_INTERFACE,
  1096. .type = QUIRK_COMPOSITE,
  1097. .data = (const struct snd_usb_audio_quirk[]) {
  1098. {
  1099. .ifnum = 1,
  1100. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1101. },
  1102. {
  1103. .ifnum = 2,
  1104. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1105. },
  1106. {
  1107. .ifnum = -1
  1108. }
  1109. }
  1110. }
  1111. },
  1112. {
  1113. USB_DEVICE(0x0582, 0x0052),
  1114. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1115. .vendor_name = "EDIROL",
  1116. .product_name = "UM-1SX",
  1117. .ifnum = 0,
  1118. .type = QUIRK_MIDI_STANDARD_INTERFACE
  1119. }
  1120. },
  1121. {
  1122. USB_DEVICE(0x0582, 0x0060),
  1123. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1124. .vendor_name = "Roland",
  1125. .product_name = "EXR Series",
  1126. .ifnum = 0,
  1127. .type = QUIRK_MIDI_STANDARD_INTERFACE
  1128. }
  1129. },
  1130. {
  1131. /* has ID 0x0067 when not in "Advanced Driver" mode */
  1132. USB_DEVICE(0x0582, 0x0065),
  1133. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1134. .vendor_name = "EDIROL",
  1135. .product_name = "PCR-1",
  1136. .ifnum = 0,
  1137. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1138. .data = & (const struct snd_usb_midi_endpoint_info) {
  1139. .out_cables = 0x0001,
  1140. .in_cables = 0x0003
  1141. }
  1142. }
  1143. },
  1144. {
  1145. /* has ID 0x006b when not in "Advanced Driver" mode */
  1146. USB_DEVICE_VENDOR_SPEC(0x0582, 0x006a),
  1147. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1148. .vendor_name = "Roland",
  1149. .product_name = "SP-606",
  1150. .ifnum = 3,
  1151. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1152. .data = & (const struct snd_usb_midi_endpoint_info) {
  1153. .out_cables = 0x0001,
  1154. .in_cables = 0x0001
  1155. }
  1156. }
  1157. },
  1158. {
  1159. /* has ID 0x006e when not in "Advanced Driver" mode */
  1160. USB_DEVICE(0x0582, 0x006d),
  1161. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1162. .vendor_name = "Roland",
  1163. .product_name = "FANTOM-X",
  1164. .ifnum = 0,
  1165. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1166. .data = & (const struct snd_usb_midi_endpoint_info) {
  1167. .out_cables = 0x0001,
  1168. .in_cables = 0x0001
  1169. }
  1170. }
  1171. },
  1172. { /*
  1173. * This quirk is for the "Advanced" modes of the Edirol UA-25.
  1174. * If the switch is not in an advanced setting, the UA-25 has
  1175. * ID 0x0582/0x0073 and is standard compliant (no quirks), but
  1176. * offers only 16-bit PCM at 44.1 kHz and no MIDI.
  1177. */
  1178. USB_DEVICE_VENDOR_SPEC(0x0582, 0x0074),
  1179. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1180. .vendor_name = "EDIROL",
  1181. .product_name = "UA-25",
  1182. .ifnum = QUIRK_ANY_INTERFACE,
  1183. .type = QUIRK_COMPOSITE,
  1184. .data = (const struct snd_usb_audio_quirk[]) {
  1185. {
  1186. .ifnum = 0,
  1187. .type = QUIRK_AUDIO_EDIROL_UAXX
  1188. },
  1189. {
  1190. .ifnum = 1,
  1191. .type = QUIRK_AUDIO_EDIROL_UAXX
  1192. },
  1193. {
  1194. .ifnum = 2,
  1195. .type = QUIRK_AUDIO_EDIROL_UAXX
  1196. },
  1197. {
  1198. .ifnum = -1
  1199. }
  1200. }
  1201. }
  1202. },
  1203. {
  1204. /* has ID 0x0076 when not in "Advanced Driver" mode */
  1205. USB_DEVICE(0x0582, 0x0075),
  1206. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1207. .vendor_name = "BOSS",
  1208. .product_name = "DR-880",
  1209. .ifnum = 0,
  1210. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1211. .data = & (const struct snd_usb_midi_endpoint_info) {
  1212. .out_cables = 0x0001,
  1213. .in_cables = 0x0001
  1214. }
  1215. }
  1216. },
  1217. {
  1218. /* has ID 0x007b when not in "Advanced Driver" mode */
  1219. USB_DEVICE_VENDOR_SPEC(0x0582, 0x007a),
  1220. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1221. .vendor_name = "Roland",
  1222. /* "RD" or "RD-700SX"? */
  1223. .ifnum = 0,
  1224. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1225. .data = & (const struct snd_usb_midi_endpoint_info) {
  1226. .out_cables = 0x0003,
  1227. .in_cables = 0x0003
  1228. }
  1229. }
  1230. },
  1231. {
  1232. /* has ID 0x0081 when not in "Advanced Driver" mode */
  1233. USB_DEVICE(0x0582, 0x0080),
  1234. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1235. .vendor_name = "Roland",
  1236. .product_name = "G-70",
  1237. .ifnum = 0,
  1238. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1239. .data = & (const struct snd_usb_midi_endpoint_info) {
  1240. .out_cables = 0x0001,
  1241. .in_cables = 0x0001
  1242. }
  1243. }
  1244. },
  1245. /* TODO: add Roland V-SYNTH XT support */
  1246. /* TODO: add BOSS GT-PRO support */
  1247. {
  1248. /* has ID 0x008c when not in "Advanced Driver" mode */
  1249. USB_DEVICE(0x0582, 0x008b),
  1250. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1251. .vendor_name = "EDIROL",
  1252. .product_name = "PC-50",
  1253. .ifnum = 0,
  1254. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1255. .data = & (const struct snd_usb_midi_endpoint_info) {
  1256. .out_cables = 0x0001,
  1257. .in_cables = 0x0001
  1258. }
  1259. }
  1260. },
  1261. /* TODO: add Edirol PC-80 support */
  1262. {
  1263. USB_DEVICE(0x0582, 0x0096),
  1264. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1265. .vendor_name = "EDIROL",
  1266. .product_name = "UA-1EX",
  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_STANDARD_INTERFACE
  1273. },
  1274. {
  1275. .ifnum = 1,
  1276. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1277. },
  1278. {
  1279. .ifnum = -1
  1280. }
  1281. }
  1282. }
  1283. },
  1284. {
  1285. USB_DEVICE(0x0582, 0x009a),
  1286. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1287. .vendor_name = "EDIROL",
  1288. .product_name = "UM-3EX",
  1289. .ifnum = 0,
  1290. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1291. .data = & (const struct snd_usb_midi_endpoint_info) {
  1292. .out_cables = 0x000f,
  1293. .in_cables = 0x000f
  1294. }
  1295. }
  1296. },
  1297. {
  1298. /*
  1299. * This quirk is for the "Advanced Driver" mode. If off, the UA-4FX
  1300. * is standard compliant, but has only 16-bit PCM and no MIDI.
  1301. */
  1302. USB_DEVICE(0x0582, 0x00a3),
  1303. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1304. .vendor_name = "EDIROL",
  1305. .product_name = "UA-4FX",
  1306. .ifnum = QUIRK_ANY_INTERFACE,
  1307. .type = QUIRK_COMPOSITE,
  1308. .data = (const struct snd_usb_audio_quirk[]) {
  1309. {
  1310. .ifnum = 0,
  1311. .type = QUIRK_AUDIO_EDIROL_UAXX
  1312. },
  1313. {
  1314. .ifnum = 1,
  1315. .type = QUIRK_AUDIO_EDIROL_UAXX
  1316. },
  1317. {
  1318. .ifnum = 2,
  1319. .type = QUIRK_AUDIO_EDIROL_UAXX
  1320. },
  1321. {
  1322. .ifnum = -1
  1323. }
  1324. }
  1325. }
  1326. },
  1327. /* TODO: add Edirol MD-P1 support */
  1328. {
  1329. USB_DEVICE(0x582, 0x00a6),
  1330. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1331. .vendor_name = "Roland",
  1332. .product_name = "Juno-G",
  1333. .ifnum = 0,
  1334. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1335. .data = & (const struct snd_usb_midi_endpoint_info) {
  1336. .out_cables = 0x0001,
  1337. .in_cables = 0x0001
  1338. }
  1339. }
  1340. },
  1341. {
  1342. /* Roland SH-201 */
  1343. USB_DEVICE(0x0582, 0x00ad),
  1344. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1345. .vendor_name = "Roland",
  1346. .product_name = "SH-201",
  1347. .ifnum = QUIRK_ANY_INTERFACE,
  1348. .type = QUIRK_COMPOSITE,
  1349. .data = (const struct snd_usb_audio_quirk[]) {
  1350. {
  1351. .ifnum = 0,
  1352. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1353. },
  1354. {
  1355. .ifnum = 1,
  1356. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1357. },
  1358. {
  1359. .ifnum = 2,
  1360. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1361. .data = & (const struct snd_usb_midi_endpoint_info) {
  1362. .out_cables = 0x0001,
  1363. .in_cables = 0x0001
  1364. }
  1365. },
  1366. {
  1367. .ifnum = -1
  1368. }
  1369. }
  1370. }
  1371. },
  1372. {
  1373. /* Roland SonicCell */
  1374. USB_DEVICE(0x0582, 0x00c2),
  1375. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1376. .vendor_name = "Roland",
  1377. .product_name = "SonicCell",
  1378. .ifnum = QUIRK_ANY_INTERFACE,
  1379. .type = QUIRK_COMPOSITE,
  1380. .data = (const struct snd_usb_audio_quirk[]) {
  1381. {
  1382. .ifnum = 0,
  1383. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1384. },
  1385. {
  1386. .ifnum = 1,
  1387. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1388. },
  1389. {
  1390. .ifnum = 2,
  1391. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1392. .data = & (const struct snd_usb_midi_endpoint_info) {
  1393. .out_cables = 0x0001,
  1394. .in_cables = 0x0001
  1395. }
  1396. },
  1397. {
  1398. .ifnum = -1
  1399. }
  1400. }
  1401. }
  1402. },
  1403. {
  1404. /* Edirol M-16DX */
  1405. /* FIXME: This quirk gives a good-working capture stream but the
  1406. * playback seems problematic because of lacking of sync
  1407. * with capture stream. It needs to sync with the capture
  1408. * clock. As now, you'll get frequent sound distortions
  1409. * via the playback.
  1410. */
  1411. USB_DEVICE(0x0582, 0x00c4),
  1412. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1413. .ifnum = QUIRK_ANY_INTERFACE,
  1414. .type = QUIRK_COMPOSITE,
  1415. .data = (const struct snd_usb_audio_quirk[]) {
  1416. {
  1417. .ifnum = 0,
  1418. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1419. },
  1420. {
  1421. .ifnum = 1,
  1422. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1423. },
  1424. {
  1425. .ifnum = 2,
  1426. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1427. .data = & (const struct snd_usb_midi_endpoint_info) {
  1428. .out_cables = 0x0001,
  1429. .in_cables = 0x0001
  1430. }
  1431. },
  1432. {
  1433. .ifnum = -1
  1434. }
  1435. }
  1436. }
  1437. },
  1438. {
  1439. /* BOSS GT-10 */
  1440. USB_DEVICE(0x0582, 0x00da),
  1441. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1442. .ifnum = QUIRK_ANY_INTERFACE,
  1443. .type = QUIRK_COMPOSITE,
  1444. .data = (const struct snd_usb_audio_quirk[]) {
  1445. {
  1446. .ifnum = 0,
  1447. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1448. },
  1449. {
  1450. .ifnum = 1,
  1451. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1452. },
  1453. {
  1454. .ifnum = 2,
  1455. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1456. .data = & (const struct snd_usb_midi_endpoint_info) {
  1457. .out_cables = 0x0001,
  1458. .in_cables = 0x0001
  1459. }
  1460. },
  1461. {
  1462. .ifnum = -1
  1463. }
  1464. }
  1465. }
  1466. },
  1467. {
  1468. /* Advanced modes of the Edirol UA-25EX.
  1469. * For the standard mode, UA-25EX has ID 0582:00e7, which
  1470. * offers only 16-bit PCM at 44.1 kHz and no MIDI.
  1471. */
  1472. USB_DEVICE_VENDOR_SPEC(0x0582, 0x00e6),
  1473. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1474. .vendor_name = "EDIROL",
  1475. .product_name = "UA-25EX",
  1476. .ifnum = QUIRK_ANY_INTERFACE,
  1477. .type = QUIRK_COMPOSITE,
  1478. .data = (const struct snd_usb_audio_quirk[]) {
  1479. {
  1480. .ifnum = 0,
  1481. .type = QUIRK_AUDIO_EDIROL_UAXX
  1482. },
  1483. {
  1484. .ifnum = 1,
  1485. .type = QUIRK_AUDIO_EDIROL_UAXX
  1486. },
  1487. {
  1488. .ifnum = 2,
  1489. .type = QUIRK_AUDIO_EDIROL_UAXX
  1490. },
  1491. {
  1492. .ifnum = -1
  1493. }
  1494. }
  1495. }
  1496. },
  1497. {
  1498. /* has ID 0x00ea when not in Advanced Driver mode */
  1499. USB_DEVICE_VENDOR_SPEC(0x0582, 0x00e9),
  1500. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1501. /* .vendor_name = "Roland", */
  1502. /* .product_name = "UA-1G", */
  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 = -1
  1516. }
  1517. }
  1518. }
  1519. },
  1520. /* Guillemot devices */
  1521. {
  1522. /*
  1523. * This is for the "Windows Edition" where the external MIDI ports are
  1524. * the only MIDI ports; the control data is reported through HID
  1525. * interfaces. The "Macintosh Edition" has ID 0xd002 and uses standard
  1526. * compliant USB MIDI ports for external MIDI and controls.
  1527. */
  1528. USB_DEVICE_VENDOR_SPEC(0x06f8, 0xb000),
  1529. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1530. .vendor_name = "Hercules",
  1531. .product_name = "DJ Console (WE)",
  1532. .ifnum = 4,
  1533. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  1534. .data = & (const struct snd_usb_midi_endpoint_info) {
  1535. .out_cables = 0x0001,
  1536. .in_cables = 0x0001
  1537. }
  1538. }
  1539. },
  1540. /* Midiman/M-Audio devices */
  1541. {
  1542. USB_DEVICE_VENDOR_SPEC(0x0763, 0x1002),
  1543. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1544. .vendor_name = "M-Audio",
  1545. .product_name = "MidiSport 2x2",
  1546. .ifnum = QUIRK_ANY_INTERFACE,
  1547. .type = QUIRK_MIDI_MIDIMAN,
  1548. .data = & (const struct snd_usb_midi_endpoint_info) {
  1549. .out_cables = 0x0003,
  1550. .in_cables = 0x0003
  1551. }
  1552. }
  1553. },
  1554. {
  1555. USB_DEVICE_VENDOR_SPEC(0x0763, 0x1011),
  1556. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1557. .vendor_name = "M-Audio",
  1558. .product_name = "MidiSport 1x1",
  1559. .ifnum = QUIRK_ANY_INTERFACE,
  1560. .type = QUIRK_MIDI_MIDIMAN,
  1561. .data = & (const struct snd_usb_midi_endpoint_info) {
  1562. .out_cables = 0x0001,
  1563. .in_cables = 0x0001
  1564. }
  1565. }
  1566. },
  1567. {
  1568. USB_DEVICE_VENDOR_SPEC(0x0763, 0x1015),
  1569. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1570. .vendor_name = "M-Audio",
  1571. .product_name = "Keystation",
  1572. .ifnum = QUIRK_ANY_INTERFACE,
  1573. .type = QUIRK_MIDI_MIDIMAN,
  1574. .data = & (const struct snd_usb_midi_endpoint_info) {
  1575. .out_cables = 0x0001,
  1576. .in_cables = 0x0001
  1577. }
  1578. }
  1579. },
  1580. {
  1581. USB_DEVICE_VENDOR_SPEC(0x0763, 0x1021),
  1582. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1583. .vendor_name = "M-Audio",
  1584. .product_name = "MidiSport 4x4",
  1585. .ifnum = QUIRK_ANY_INTERFACE,
  1586. .type = QUIRK_MIDI_MIDIMAN,
  1587. .data = & (const struct snd_usb_midi_endpoint_info) {
  1588. .out_cables = 0x000f,
  1589. .in_cables = 0x000f
  1590. }
  1591. }
  1592. },
  1593. {
  1594. /*
  1595. * For hardware revision 1.05; in the later revisions (1.10 and
  1596. * 1.21), 0x1031 is the ID for the device without firmware.
  1597. * Thanks to Olaf Giesbrecht <Olaf_Giesbrecht@yahoo.de>
  1598. */
  1599. USB_DEVICE_VER(0x0763, 0x1031, 0x0100, 0x0109),
  1600. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1601. .vendor_name = "M-Audio",
  1602. .product_name = "MidiSport 8x8",
  1603. .ifnum = QUIRK_ANY_INTERFACE,
  1604. .type = QUIRK_MIDI_MIDIMAN,
  1605. .data = & (const struct snd_usb_midi_endpoint_info) {
  1606. .out_cables = 0x01ff,
  1607. .in_cables = 0x01ff
  1608. }
  1609. }
  1610. },
  1611. {
  1612. USB_DEVICE_VENDOR_SPEC(0x0763, 0x1033),
  1613. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1614. .vendor_name = "M-Audio",
  1615. .product_name = "MidiSport 8x8",
  1616. .ifnum = QUIRK_ANY_INTERFACE,
  1617. .type = QUIRK_MIDI_MIDIMAN,
  1618. .data = & (const struct snd_usb_midi_endpoint_info) {
  1619. .out_cables = 0x01ff,
  1620. .in_cables = 0x01ff
  1621. }
  1622. }
  1623. },
  1624. {
  1625. USB_DEVICE_VENDOR_SPEC(0x0763, 0x1041),
  1626. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1627. .vendor_name = "M-Audio",
  1628. .product_name = "MidiSport 2x4",
  1629. .ifnum = QUIRK_ANY_INTERFACE,
  1630. .type = QUIRK_MIDI_MIDIMAN,
  1631. .data = & (const struct snd_usb_midi_endpoint_info) {
  1632. .out_cables = 0x000f,
  1633. .in_cables = 0x0003
  1634. }
  1635. }
  1636. },
  1637. {
  1638. USB_DEVICE_VENDOR_SPEC(0x0763, 0x2001),
  1639. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1640. .vendor_name = "M-Audio",
  1641. .product_name = "Quattro",
  1642. .ifnum = QUIRK_ANY_INTERFACE,
  1643. .type = QUIRK_COMPOSITE,
  1644. .data = & (const struct snd_usb_audio_quirk[]) {
  1645. /*
  1646. * Interfaces 0-2 are "Windows-compatible", 16-bit only,
  1647. * and share endpoints with the other interfaces.
  1648. * Ignore them. The other interfaces can do 24 bits,
  1649. * but captured samples are big-endian (see usbaudio.c).
  1650. */
  1651. {
  1652. .ifnum = 0,
  1653. .type = QUIRK_IGNORE_INTERFACE
  1654. },
  1655. {
  1656. .ifnum = 1,
  1657. .type = QUIRK_IGNORE_INTERFACE
  1658. },
  1659. {
  1660. .ifnum = 2,
  1661. .type = QUIRK_IGNORE_INTERFACE
  1662. },
  1663. {
  1664. .ifnum = 3,
  1665. .type = QUIRK_IGNORE_INTERFACE
  1666. },
  1667. {
  1668. .ifnum = 4,
  1669. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1670. },
  1671. {
  1672. .ifnum = 5,
  1673. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1674. },
  1675. {
  1676. .ifnum = 6,
  1677. .type = QUIRK_IGNORE_INTERFACE
  1678. },
  1679. {
  1680. .ifnum = 7,
  1681. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1682. },
  1683. {
  1684. .ifnum = 8,
  1685. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1686. },
  1687. {
  1688. .ifnum = 9,
  1689. .type = QUIRK_MIDI_MIDIMAN,
  1690. .data = & (const struct snd_usb_midi_endpoint_info) {
  1691. .out_cables = 0x0001,
  1692. .in_cables = 0x0001
  1693. }
  1694. },
  1695. {
  1696. .ifnum = -1
  1697. }
  1698. }
  1699. }
  1700. },
  1701. {
  1702. USB_DEVICE_VENDOR_SPEC(0x0763, 0x2003),
  1703. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1704. .vendor_name = "M-Audio",
  1705. .product_name = "AudioPhile",
  1706. .ifnum = 6,
  1707. .type = QUIRK_MIDI_MIDIMAN,
  1708. .data = & (const struct snd_usb_midi_endpoint_info) {
  1709. .out_cables = 0x0001,
  1710. .in_cables = 0x0001
  1711. }
  1712. }
  1713. },
  1714. {
  1715. USB_DEVICE_VENDOR_SPEC(0x0763, 0x2008),
  1716. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1717. .vendor_name = "M-Audio",
  1718. .product_name = "Ozone",
  1719. .ifnum = 3,
  1720. .type = QUIRK_MIDI_MIDIMAN,
  1721. .data = & (const struct snd_usb_midi_endpoint_info) {
  1722. .out_cables = 0x0001,
  1723. .in_cables = 0x0001
  1724. }
  1725. }
  1726. },
  1727. {
  1728. USB_DEVICE_VENDOR_SPEC(0x0763, 0x200d),
  1729. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1730. .vendor_name = "M-Audio",
  1731. .product_name = "OmniStudio",
  1732. .ifnum = QUIRK_ANY_INTERFACE,
  1733. .type = QUIRK_COMPOSITE,
  1734. .data = & (const struct snd_usb_audio_quirk[]) {
  1735. {
  1736. .ifnum = 0,
  1737. .type = QUIRK_IGNORE_INTERFACE
  1738. },
  1739. {
  1740. .ifnum = 1,
  1741. .type = QUIRK_IGNORE_INTERFACE
  1742. },
  1743. {
  1744. .ifnum = 2,
  1745. .type = QUIRK_IGNORE_INTERFACE
  1746. },
  1747. {
  1748. .ifnum = 3,
  1749. .type = QUIRK_IGNORE_INTERFACE
  1750. },
  1751. {
  1752. .ifnum = 4,
  1753. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1754. },
  1755. {
  1756. .ifnum = 5,
  1757. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1758. },
  1759. {
  1760. .ifnum = 6,
  1761. .type = QUIRK_IGNORE_INTERFACE
  1762. },
  1763. {
  1764. .ifnum = 7,
  1765. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1766. },
  1767. {
  1768. .ifnum = 8,
  1769. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1770. },
  1771. {
  1772. .ifnum = 9,
  1773. .type = QUIRK_MIDI_MIDIMAN,
  1774. .data = & (const struct snd_usb_midi_endpoint_info) {
  1775. .out_cables = 0x0001,
  1776. .in_cables = 0x0001
  1777. }
  1778. },
  1779. {
  1780. .ifnum = -1
  1781. }
  1782. }
  1783. }
  1784. },
  1785. {
  1786. USB_DEVICE(0x0763, 0x2019),
  1787. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1788. /* .vendor_name = "M-Audio", */
  1789. /* .product_name = "Ozone Academic", */
  1790. .ifnum = QUIRK_ANY_INTERFACE,
  1791. .type = QUIRK_COMPOSITE,
  1792. .data = & (const struct snd_usb_audio_quirk[]) {
  1793. {
  1794. .ifnum = 0,
  1795. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1796. },
  1797. {
  1798. .ifnum = 1,
  1799. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1800. },
  1801. {
  1802. .ifnum = 2,
  1803. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1804. },
  1805. {
  1806. .ifnum = 3,
  1807. .type = QUIRK_MIDI_MIDIMAN,
  1808. .data = & (const struct snd_usb_midi_endpoint_info) {
  1809. .out_cables = 0x0001,
  1810. .in_cables = 0x0001
  1811. }
  1812. },
  1813. {
  1814. .ifnum = -1
  1815. }
  1816. }
  1817. }
  1818. },
  1819. {
  1820. USB_DEVICE(0x0763, 0x2080),
  1821. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1822. /* .vendor_name = "M-Audio", */
  1823. /* .product_name = "Fast Track Ultra 8", */
  1824. .ifnum = QUIRK_ANY_INTERFACE,
  1825. .type = QUIRK_COMPOSITE,
  1826. .data = & (const struct snd_usb_audio_quirk[]) {
  1827. {
  1828. .ifnum = 0,
  1829. .type = QUIRK_IGNORE_INTERFACE
  1830. },
  1831. {
  1832. .ifnum = 1,
  1833. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1834. },
  1835. {
  1836. .ifnum = 2,
  1837. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1838. },
  1839. /* interface 3 (MIDI) is standard compliant */
  1840. {
  1841. .ifnum = -1
  1842. }
  1843. }
  1844. }
  1845. },
  1846. {
  1847. USB_DEVICE(0x0763, 0x2081),
  1848. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1849. /* .vendor_name = "M-Audio", */
  1850. /* .product_name = "Fast Track Ultra 8R", */
  1851. .ifnum = QUIRK_ANY_INTERFACE,
  1852. .type = QUIRK_COMPOSITE,
  1853. .data = & (const struct snd_usb_audio_quirk[]) {
  1854. {
  1855. .ifnum = 0,
  1856. .type = QUIRK_IGNORE_INTERFACE
  1857. },
  1858. {
  1859. .ifnum = 1,
  1860. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1861. },
  1862. {
  1863. .ifnum = 2,
  1864. .type = QUIRK_AUDIO_STANDARD_INTERFACE
  1865. },
  1866. /* interface 3 (MIDI) is standard compliant */
  1867. {
  1868. .ifnum = -1
  1869. }
  1870. }
  1871. }
  1872. },
  1873. /* Casio devices */
  1874. {
  1875. USB_DEVICE(0x07cf, 0x6801),
  1876. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1877. .vendor_name = "Casio",
  1878. .product_name = "PL-40R",
  1879. .ifnum = 0,
  1880. .type = QUIRK_MIDI_YAMAHA
  1881. }
  1882. },
  1883. {
  1884. /* this ID is used by several devices without a product ID */
  1885. USB_DEVICE(0x07cf, 0x6802),
  1886. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1887. .vendor_name = "Casio",
  1888. .product_name = "Keyboard",
  1889. .ifnum = 0,
  1890. .type = QUIRK_MIDI_YAMAHA
  1891. }
  1892. },
  1893. /* Mark of the Unicorn devices */
  1894. {
  1895. /* thanks to Robert A. Lerche <ral 'at' msbit.com> */
  1896. .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
  1897. USB_DEVICE_ID_MATCH_PRODUCT |
  1898. USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
  1899. .idVendor = 0x07fd,
  1900. .idProduct = 0x0001,
  1901. .bDeviceSubClass = 2,
  1902. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1903. .vendor_name = "MOTU",
  1904. .product_name = "Fastlane",
  1905. .ifnum = QUIRK_ANY_INTERFACE,
  1906. .type = QUIRK_COMPOSITE,
  1907. .data = & (const struct snd_usb_audio_quirk[]) {
  1908. {
  1909. .ifnum = 0,
  1910. .type = QUIRK_MIDI_FASTLANE
  1911. },
  1912. {
  1913. .ifnum = 1,
  1914. .type = QUIRK_IGNORE_INTERFACE
  1915. },
  1916. {
  1917. .ifnum = -1
  1918. }
  1919. }
  1920. }
  1921. },
  1922. /* Emagic devices */
  1923. {
  1924. USB_DEVICE(0x086a, 0x0001),
  1925. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1926. .vendor_name = "Emagic",
  1927. /* .product_name = "Unitor8", */
  1928. .ifnum = 2,
  1929. .type = QUIRK_MIDI_EMAGIC,
  1930. .data = & (const struct snd_usb_midi_endpoint_info) {
  1931. .out_cables = 0x80ff,
  1932. .in_cables = 0x80ff
  1933. }
  1934. }
  1935. },
  1936. {
  1937. USB_DEVICE(0x086a, 0x0002),
  1938. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1939. .vendor_name = "Emagic",
  1940. /* .product_name = "AMT8", */
  1941. .ifnum = 2,
  1942. .type = QUIRK_MIDI_EMAGIC,
  1943. .data = & (const struct snd_usb_midi_endpoint_info) {
  1944. .out_cables = 0x80ff,
  1945. .in_cables = 0x80ff
  1946. }
  1947. }
  1948. },
  1949. {
  1950. USB_DEVICE(0x086a, 0x0003),
  1951. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1952. .vendor_name = "Emagic",
  1953. /* .product_name = "MT4", */
  1954. .ifnum = 2,
  1955. .type = QUIRK_MIDI_EMAGIC,
  1956. .data = & (const struct snd_usb_midi_endpoint_info) {
  1957. .out_cables = 0x800f,
  1958. .in_cables = 0x8003
  1959. }
  1960. }
  1961. },
  1962. /* AKAI devices */
  1963. {
  1964. USB_DEVICE(0x09e8, 0x0062),
  1965. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1966. .vendor_name = "AKAI",
  1967. .product_name = "MPD16",
  1968. .ifnum = 0,
  1969. .type = QUIRK_MIDI_AKAI,
  1970. }
  1971. },
  1972. /* TerraTec devices */
  1973. {
  1974. USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0012),
  1975. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1976. .vendor_name = "TerraTec",
  1977. .product_name = "PHASE 26",
  1978. .ifnum = 3,
  1979. .type = QUIRK_MIDI_STANDARD_INTERFACE
  1980. }
  1981. },
  1982. {
  1983. USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0013),
  1984. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1985. .vendor_name = "TerraTec",
  1986. .product_name = "PHASE 26",
  1987. .ifnum = 3,
  1988. .type = QUIRK_MIDI_STANDARD_INTERFACE
  1989. }
  1990. },
  1991. {
  1992. USB_DEVICE_VENDOR_SPEC(0x0ccd, 0x0014),
  1993. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  1994. .vendor_name = "TerraTec",
  1995. .product_name = "PHASE 26",
  1996. .ifnum = 3,
  1997. .type = QUIRK_MIDI_STANDARD_INTERFACE
  1998. }
  1999. },
  2000. {
  2001. USB_DEVICE(0x0ccd, 0x0028),
  2002. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2003. .vendor_name = "TerraTec",
  2004. .product_name = "Aureon5.1MkII",
  2005. .ifnum = QUIRK_NO_INTERFACE
  2006. }
  2007. },
  2008. {
  2009. USB_DEVICE(0x0ccd, 0x0035),
  2010. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2011. .vendor_name = "Miditech",
  2012. .product_name = "Play'n Roll",
  2013. .ifnum = 0,
  2014. .type = QUIRK_MIDI_CME
  2015. }
  2016. },
  2017. /* Stanton/N2IT Final Scratch v1 device ('Scratchamp') */
  2018. {
  2019. USB_DEVICE(0x103d, 0x0100),
  2020. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2021. .vendor_name = "Stanton",
  2022. .product_name = "ScratchAmp",
  2023. .ifnum = QUIRK_NO_INTERFACE
  2024. }
  2025. },
  2026. {
  2027. USB_DEVICE(0x103d, 0x0101),
  2028. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2029. .vendor_name = "Stanton",
  2030. .product_name = "ScratchAmp",
  2031. .ifnum = QUIRK_NO_INTERFACE
  2032. }
  2033. },
  2034. /* Novation EMS devices */
  2035. {
  2036. USB_DEVICE_VENDOR_SPEC(0x1235, 0x0001),
  2037. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2038. .vendor_name = "Novation",
  2039. .product_name = "ReMOTE Audio/XStation",
  2040. .ifnum = 4,
  2041. .type = QUIRK_MIDI_NOVATION
  2042. }
  2043. },
  2044. {
  2045. USB_DEVICE_VENDOR_SPEC(0x1235, 0x0002),
  2046. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2047. .vendor_name = "Novation",
  2048. .product_name = "Speedio",
  2049. .ifnum = 3,
  2050. .type = QUIRK_MIDI_NOVATION
  2051. }
  2052. },
  2053. {
  2054. USB_DEVICE_VENDOR_SPEC(0x1235, 0x4661),
  2055. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2056. .vendor_name = "Novation",
  2057. .product_name = "ReMOTE25",
  2058. .ifnum = 0,
  2059. .type = QUIRK_MIDI_NOVATION
  2060. }
  2061. },
  2062. /* Access Music devices */
  2063. {
  2064. /* VirusTI Desktop */
  2065. USB_DEVICE_VENDOR_SPEC(0x133e, 0x0815),
  2066. .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
  2067. .ifnum = QUIRK_ANY_INTERFACE,
  2068. .type = QUIRK_COMPOSITE,
  2069. .data = &(const struct snd_usb_audio_quirk[]) {
  2070. {
  2071. .ifnum = 3,
  2072. .type = QUIRK_MIDI_FIXED_ENDPOINT,
  2073. .data = &(const struct snd_usb_midi_endpoint_info) {
  2074. .out_cables = 0x0003,
  2075. .in_cables = 0x0003
  2076. }
  2077. },
  2078. {
  2079. .ifnum = 4,
  2080. .type = QUIRK_IGNORE_INTERFACE
  2081. },
  2082. {
  2083. .ifnum = -1
  2084. }
  2085. }
  2086. }
  2087. },
  2088. /* */
  2089. {
  2090. /* aka. Serato Scratch Live DJ Box */
  2091. USB_DEVICE(0x13e5, 0x0001),
  2092. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2093. .vendor_name = "Rane",
  2094. .product_name = "SL-1",
  2095. .ifnum = QUIRK_NO_INTERFACE
  2096. }
  2097. },
  2098. /* Miditech devices */
  2099. {
  2100. USB_DEVICE(0x4752, 0x0011),
  2101. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2102. .vendor_name = "Miditech",
  2103. .product_name = "Midistart-2",
  2104. .ifnum = 0,
  2105. .type = QUIRK_MIDI_CME
  2106. }
  2107. },
  2108. /* Central Music devices */
  2109. {
  2110. /* this ID used by both Miditech MidiStudio-2 and CME UF-x */
  2111. USB_DEVICE(0x7104, 0x2202),
  2112. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2113. .ifnum = 0,
  2114. .type = QUIRK_MIDI_CME
  2115. }
  2116. },
  2117. /* Hauppauge HVR-950Q and HVR-850 */
  2118. {
  2119. USB_DEVICE_VENDOR_SPEC(0x2040, 0x7200),
  2120. .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
  2121. USB_DEVICE_ID_MATCH_INT_CLASS |
  2122. USB_DEVICE_ID_MATCH_INT_SUBCLASS,
  2123. .bInterfaceClass = USB_CLASS_AUDIO,
  2124. .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
  2125. .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
  2126. .vendor_name = "Hauppauge",
  2127. .product_name = "HVR-950Q",
  2128. .ifnum = QUIRK_ANY_INTERFACE,
  2129. .type = QUIRK_AUDIO_ALIGN_TRANSFER,
  2130. }
  2131. },
  2132. {
  2133. USB_DEVICE_VENDOR_SPEC(0x2040, 0x7201),
  2134. .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
  2135. USB_DEVICE_ID_MATCH_INT_CLASS |
  2136. USB_DEVICE_ID_MATCH_INT_SUBCLASS,
  2137. .bInterfaceClass = USB_CLASS_AUDIO,
  2138. .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
  2139. .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
  2140. .vendor_name = "Hauppauge",
  2141. .product_name = "HVR-950Q",
  2142. .ifnum = QUIRK_ANY_INTERFACE,
  2143. .type = QUIRK_AUDIO_ALIGN_TRANSFER,
  2144. }
  2145. },
  2146. {
  2147. USB_DEVICE_VENDOR_SPEC(0x2040, 0x7202),
  2148. .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
  2149. USB_DEVICE_ID_MATCH_INT_CLASS |
  2150. USB_DEVICE_ID_MATCH_INT_SUBCLASS,
  2151. .bInterfaceClass = USB_CLASS_AUDIO,
  2152. .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
  2153. .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
  2154. .vendor_name = "Hauppauge",
  2155. .product_name = "HVR-950Q",
  2156. .ifnum = QUIRK_ANY_INTERFACE,
  2157. .type = QUIRK_AUDIO_ALIGN_TRANSFER,
  2158. }
  2159. },
  2160. {
  2161. USB_DEVICE_VENDOR_SPEC(0x2040, 0x7203),
  2162. .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
  2163. USB_DEVICE_ID_MATCH_INT_CLASS |
  2164. USB_DEVICE_ID_MATCH_INT_SUBCLASS,
  2165. .bInterfaceClass = USB_CLASS_AUDIO,
  2166. .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
  2167. .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
  2168. .vendor_name = "Hauppauge",
  2169. .product_name = "HVR-950Q",
  2170. .ifnum = QUIRK_ANY_INTERFACE,
  2171. .type = QUIRK_AUDIO_ALIGN_TRANSFER,
  2172. }
  2173. },
  2174. {
  2175. USB_DEVICE_VENDOR_SPEC(0x2040, 0x7204),
  2176. .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
  2177. USB_DEVICE_ID_MATCH_INT_CLASS |
  2178. USB_DEVICE_ID_MATCH_INT_SUBCLASS,
  2179. .bInterfaceClass = USB_CLASS_AUDIO,
  2180. .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
  2181. .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
  2182. .vendor_name = "Hauppauge",
  2183. .product_name = "HVR-950Q",
  2184. .ifnum = QUIRK_ANY_INTERFACE,
  2185. .type = QUIRK_AUDIO_ALIGN_TRANSFER,
  2186. }
  2187. },
  2188. {
  2189. USB_DEVICE_VENDOR_SPEC(0x2040, 0x7205),
  2190. .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
  2191. USB_DEVICE_ID_MATCH_INT_CLASS |
  2192. USB_DEVICE_ID_MATCH_INT_SUBCLASS,
  2193. .bInterfaceClass = USB_CLASS_AUDIO,
  2194. .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
  2195. .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
  2196. .vendor_name = "Hauppauge",
  2197. .product_name = "HVR-950Q",
  2198. .ifnum = QUIRK_ANY_INTERFACE,
  2199. .type = QUIRK_AUDIO_ALIGN_TRANSFER,
  2200. }
  2201. },
  2202. {
  2203. USB_DEVICE_VENDOR_SPEC(0x2040, 0x7250),
  2204. .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
  2205. USB_DEVICE_ID_MATCH_INT_CLASS |
  2206. USB_DEVICE_ID_MATCH_INT_SUBCLASS,
  2207. .bInterfaceClass = USB_CLASS_AUDIO,
  2208. .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
  2209. .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
  2210. .vendor_name = "Hauppauge",
  2211. .product_name = "HVR-950Q",
  2212. .ifnum = QUIRK_ANY_INTERFACE,
  2213. .type = QUIRK_AUDIO_ALIGN_TRANSFER,
  2214. }
  2215. },
  2216. {
  2217. USB_DEVICE_VENDOR_SPEC(0x2040, 0x7230),
  2218. .match_flags = USB_DEVICE_ID_MATCH_DEVICE |
  2219. USB_DEVICE_ID_MATCH_INT_CLASS |
  2220. USB_DEVICE_ID_MATCH_INT_SUBCLASS,
  2221. .bInterfaceClass = USB_CLASS_AUDIO,
  2222. .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
  2223. .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
  2224. .vendor_name = "Hauppauge",
  2225. .product_name = "HVR-850",
  2226. .ifnum = QUIRK_ANY_INTERFACE,
  2227. .type = QUIRK_AUDIO_ALIGN_TRANSFER,
  2228. }
  2229. },
  2230. /* Digidesign Mbox */
  2231. {
  2232. /* Thanks to Clemens Ladisch <clemens@ladisch.de> */
  2233. USB_DEVICE(0x0dba, 0x1000),
  2234. .driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
  2235. .vendor_name = "Digidesign",
  2236. .product_name = "MBox",
  2237. .ifnum = QUIRK_ANY_INTERFACE,
  2238. .type = QUIRK_COMPOSITE,
  2239. .data = (const struct snd_usb_audio_quirk[]){
  2240. {
  2241. .ifnum = 0,
  2242. .type = QUIRK_IGNORE_INTERFACE,
  2243. },
  2244. {
  2245. .ifnum = 1,
  2246. .type = QUIRK_AUDIO_FIXED_ENDPOINT,
  2247. .data = &(const struct audioformat) {
  2248. .formats = SNDRV_PCM_FMTBIT_S24_3BE,
  2249. .channels = 2,
  2250. .iface = 1,
  2251. .altsetting = 1,
  2252. .altset_idx = 1,
  2253. .attributes = UAC_EP_CS_ATTR_SAMPLE_RATE,
  2254. .endpoint = 0x02,
  2255. .ep_attr = 0x01,
  2256. .maxpacksize = 0x130,
  2257. .rates = SNDRV_PCM_RATE_44100 |
  2258. SNDRV_PCM_RATE_48000,
  2259. .rate_min = 44100,
  2260. .rate_max = 48000,
  2261. .nr_rates = 2,
  2262. .rate_table = (unsigned int[]) {
  2263. 44100, 48000
  2264. }
  2265. }
  2266. },
  2267. {
  2268. .ifnum = -1
  2269. }
  2270. }
  2271. }
  2272. },
  2273. {
  2274. /*
  2275. * Some USB MIDI devices don't have an audio control interface,
  2276. * so we have to grab MIDI streaming interfaces here.
  2277. */
  2278. .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS |
  2279. USB_DEVICE_ID_MATCH_INT_SUBCLASS,
  2280. .bInterfaceClass = USB_CLASS_AUDIO,
  2281. .bInterfaceSubClass = USB_SUBCLASS_MIDISTREAMING,
  2282. .driver_info = (unsigned long) & (const struct snd_usb_audio_quirk) {
  2283. .ifnum = QUIRK_ANY_INTERFACE,
  2284. .type = QUIRK_MIDI_STANDARD_INTERFACE
  2285. }
  2286. },
  2287. #undef USB_DEVICE_VENDOR_SPEC