unusual_devs.h 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238
  1. /* Driver for USB Mass Storage compliant devices
  2. * Unusual Devices File
  3. *
  4. * Current development and maintenance by:
  5. * (c) 2000-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
  6. *
  7. * Initial work by:
  8. * (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc.
  9. *
  10. * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
  11. * information about this driver.
  12. *
  13. * This program is free software; you can redistribute it and/or modify it
  14. * under the terms of the GNU General Public License as published by the
  15. * Free Software Foundation; either version 2, or (at your option) any
  16. * later version.
  17. *
  18. * This program is distributed in the hope that it will be useful, but
  19. * WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  21. * General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License along
  24. * with this program; if not, write to the Free Software Foundation, Inc.,
  25. * 675 Mass Ave, Cambridge, MA 02139, USA.
  26. */
  27. /* IMPORTANT NOTE: This file must be included in another file which does
  28. * the following thing for it to work:
  29. * The UNUSUAL_DEV, COMPLIANT_DEV, and USUAL_DEV macros must be defined
  30. * before this file is included.
  31. */
  32. /* If you edit this file, please try to keep it sorted first by VendorID,
  33. * then by ProductID.
  34. *
  35. * If you want to add an entry for this file, be sure to include the
  36. * following information:
  37. * - a patch that adds the entry for your device, including your
  38. * email address right above the entry (plus maybe a brief
  39. * explanation of the reason for the entry),
  40. * - a copy of /proc/bus/usb/devices with your device plugged in
  41. * running with this patch.
  42. * Send your submission to either Phil Dibowitz <phil@ipom.com> or
  43. * Alan Stern <stern@rowland.harvard.edu>, and don't forget to CC: the
  44. * USB development list <linux-usb@vger.kernel.org> and the USB storage list
  45. * <usb-storage@lists.one-eyed-alien.net>
  46. */
  47. /* Note: If you add an entry only in order to set the CAPACITY_OK flag,
  48. * use the COMPLIANT_DEV macro instead of UNUSUAL_DEV. This is
  49. * because such entries mark devices which actually work correctly,
  50. * as opposed to devices that do something strangely or wrongly.
  51. */
  52. /* In-kernel mode switching is deprecated. Do not add new devices to
  53. * this list for the sole purpose of switching them to a different
  54. * mode. Existing userspace solutions are superior.
  55. *
  56. * New mode switching devices should instead be added to the database
  57. * maintained at http://www.draisberghof.de/usb_modeswitch/
  58. */
  59. #if !defined(CONFIG_USB_STORAGE_SDDR09) && \
  60. !defined(CONFIG_USB_STORAGE_SDDR09_MODULE)
  61. #define NO_SDDR09
  62. #endif
  63. /* patch submitted by Vivian Bregier <Vivian.Bregier@imag.fr>
  64. */
  65. UNUSUAL_DEV( 0x03eb, 0x2002, 0x0100, 0x0100,
  66. "ATMEL",
  67. "SND1 Storage",
  68. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  69. US_FL_IGNORE_RESIDUE),
  70. /* Reported by Rodolfo Quesada <rquesada@roqz.net> */
  71. UNUSUAL_DEV( 0x03ee, 0x6906, 0x0003, 0x0003,
  72. "VIA Technologies Inc.",
  73. "Mitsumi multi cardreader",
  74. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  75. US_FL_IGNORE_RESIDUE ),
  76. UNUSUAL_DEV( 0x03f0, 0x0107, 0x0200, 0x0200,
  77. "HP",
  78. "CD-Writer+",
  79. USB_SC_8070, USB_PR_CB, NULL, 0),
  80. /* Reported by Ben Efros <ben@pc-doctor.com> */
  81. UNUSUAL_DEV( 0x03f0, 0x070c, 0x0000, 0x0000,
  82. "HP",
  83. "Personal Media Drive",
  84. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  85. US_FL_SANE_SENSE ),
  86. /* Reported by Grant Grundler <grundler@parisc-linux.org>
  87. * HP r707 camera in "Disk" mode with 2.00.23 or 2.00.24 firmware.
  88. */
  89. UNUSUAL_DEV( 0x03f0, 0x4002, 0x0001, 0x0001,
  90. "HP",
  91. "PhotoSmart R707",
  92. USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_CAPACITY),
  93. UNUSUAL_DEV( 0x03f3, 0x0001, 0x0000, 0x9999,
  94. "Adaptec",
  95. "USBConnect 2000",
  96. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  97. US_FL_SCM_MULT_TARG ),
  98. /* Reported by Sebastian Kapfer <sebastian_kapfer@gmx.net>
  99. * and Olaf Hering <olh@suse.de> (different bcd's, same vendor/product)
  100. * for USB floppies that need the SINGLE_LUN enforcement.
  101. */
  102. UNUSUAL_DEV( 0x0409, 0x0040, 0x0000, 0x9999,
  103. "NEC",
  104. "NEC USB UF000x",
  105. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  106. US_FL_SINGLE_LUN ),
  107. /* Patch submitted by Mihnea-Costin Grigore <mihnea@zulu.ro> */
  108. UNUSUAL_DEV( 0x040d, 0x6205, 0x0003, 0x0003,
  109. "VIA Technologies Inc.",
  110. "USB 2.0 Card Reader",
  111. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  112. US_FL_IGNORE_RESIDUE ),
  113. /* Deduced by Jonathan Woithe <jwoithe@just42.net>
  114. * Entry needed for flags: US_FL_FIX_INQUIRY because initial inquiry message
  115. * always fails and confuses drive.
  116. */
  117. UNUSUAL_DEV( 0x0411, 0x001c, 0x0113, 0x0113,
  118. "Buffalo",
  119. "DUB-P40G HDD",
  120. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  121. US_FL_FIX_INQUIRY ),
  122. /* Submitted by Ernestas Vaiciukevicius <ernisv@gmail.com> */
  123. UNUSUAL_DEV( 0x0419, 0x0100, 0x0100, 0x0100,
  124. "Samsung Info. Systems America, Inc.",
  125. "MP3 Player",
  126. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  127. US_FL_IGNORE_RESIDUE ),
  128. /* Reported by Orgad Shaneh <orgads@gmail.com> */
  129. UNUSUAL_DEV( 0x0419, 0xaace, 0x0100, 0x0100,
  130. "Samsung", "MP3 Player",
  131. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  132. US_FL_IGNORE_RESIDUE ),
  133. /* Reported by Christian Leber <christian@leber.de> */
  134. UNUSUAL_DEV( 0x0419, 0xaaf5, 0x0100, 0x0100,
  135. "TrekStor",
  136. "i.Beat 115 2.0",
  137. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  138. US_FL_IGNORE_RESIDUE | US_FL_NOT_LOCKABLE ),
  139. /* Reported by Stefan Werner <dustbln@gmx.de> */
  140. UNUSUAL_DEV( 0x0419, 0xaaf6, 0x0100, 0x0100,
  141. "TrekStor",
  142. "i.Beat Joy 2.0",
  143. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  144. US_FL_IGNORE_RESIDUE ),
  145. /* Reported by Pete Zaitcev <zaitcev@redhat.com>, bz#176584 */
  146. UNUSUAL_DEV( 0x0420, 0x0001, 0x0100, 0x0100,
  147. "GENERIC", "MP3 PLAYER", /* MyMusix PD-205 on the outside. */
  148. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  149. US_FL_IGNORE_RESIDUE ),
  150. /* Reported by Andrew Nayenko <relan@bk.ru>
  151. * Updated for new firmware by Phillip Potter <phillipinda@hotmail.com> */
  152. UNUSUAL_DEV( 0x0421, 0x0019, 0x0592, 0x0610,
  153. "Nokia",
  154. "Nokia 6288",
  155. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  156. US_FL_MAX_SECTORS_64 ),
  157. /* Reported by Mario Rettig <mariorettig@web.de> */
  158. UNUSUAL_DEV( 0x0421, 0x042e, 0x0100, 0x0100,
  159. "Nokia",
  160. "Nokia 3250",
  161. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  162. US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
  163. /* Reported by <honkkis@gmail.com> */
  164. UNUSUAL_DEV( 0x0421, 0x0433, 0x0100, 0x0100,
  165. "Nokia",
  166. "E70",
  167. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  168. US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
  169. /* Reported by Jon Hart <Jon.Hart@web.de> */
  170. UNUSUAL_DEV( 0x0421, 0x0434, 0x0100, 0x0100,
  171. "Nokia",
  172. "E60",
  173. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  174. US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ),
  175. /* Reported by Sumedha Swamy <sumedhaswamy@gmail.com> and
  176. * Einar Th. Einarsson <einarthered@gmail.com> */
  177. UNUSUAL_DEV( 0x0421, 0x0444, 0x0100, 0x0100,
  178. "Nokia",
  179. "N91",
  180. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  181. US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
  182. /* Reported by Jiri Slaby <jirislaby@gmail.com> and
  183. * Rene C. Castberg <Rene@Castberg.org> */
  184. UNUSUAL_DEV( 0x0421, 0x0446, 0x0100, 0x0100,
  185. "Nokia",
  186. "N80",
  187. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  188. US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
  189. /* Reported by Matthew Bloch <matthew@bytemark.co.uk> */
  190. UNUSUAL_DEV( 0x0421, 0x044e, 0x0100, 0x0100,
  191. "Nokia",
  192. "E61",
  193. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  194. US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
  195. /* Reported by Bardur Arantsson <bardur@scientician.net> */
  196. UNUSUAL_DEV( 0x0421, 0x047c, 0x0370, 0x0610,
  197. "Nokia",
  198. "6131",
  199. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  200. US_FL_MAX_SECTORS_64 ),
  201. /* Reported by Manuel Osdoba <manuel.osdoba@tu-ilmenau.de> */
  202. UNUSUAL_DEV( 0x0421, 0x0492, 0x0452, 0x9999,
  203. "Nokia",
  204. "Nokia 6233",
  205. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  206. US_FL_MAX_SECTORS_64 ),
  207. /* Reported by Alex Corcoles <alex@corcoles.net> */
  208. UNUSUAL_DEV( 0x0421, 0x0495, 0x0370, 0x0370,
  209. "Nokia",
  210. "6234",
  211. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  212. US_FL_MAX_SECTORS_64 ),
  213. /* Reported by Daniele Forsi <dforsi@gmail.com> */
  214. UNUSUAL_DEV( 0x0421, 0x04b9, 0x0350, 0x0350,
  215. "Nokia",
  216. "5300",
  217. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  218. US_FL_MAX_SECTORS_64 ),
  219. /* Patch submitted by Victor A. Santos <victoraur.santos@gmail.com> */
  220. UNUSUAL_DEV( 0x0421, 0x05af, 0x0742, 0x0742,
  221. "Nokia",
  222. "305",
  223. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  224. US_FL_MAX_SECTORS_64),
  225. /* Patch submitted by Mikhail Zolotaryov <lebon@lebon.org.ua> */
  226. UNUSUAL_DEV( 0x0421, 0x06aa, 0x1110, 0x1110,
  227. "Nokia",
  228. "502",
  229. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  230. US_FL_MAX_SECTORS_64 ),
  231. #ifdef NO_SDDR09
  232. UNUSUAL_DEV( 0x0436, 0x0005, 0x0100, 0x0100,
  233. "Microtech",
  234. "CameraMate",
  235. USB_SC_SCSI, USB_PR_CB, NULL,
  236. US_FL_SINGLE_LUN ),
  237. #endif
  238. /* Patch submitted by Daniel Drake <dsd@gentoo.org>
  239. * Device reports nonsense bInterfaceProtocol 6 when connected over USB2 */
  240. UNUSUAL_DEV( 0x0451, 0x5416, 0x0100, 0x0100,
  241. "Neuros Audio",
  242. "USB 2.0 HD 2.5",
  243. USB_SC_DEVICE, USB_PR_BULK, NULL,
  244. US_FL_NEED_OVERRIDE ),
  245. /*
  246. * Pete Zaitcev <zaitcev@yahoo.com>, from Patrick C. F. Ernzer, bz#162559.
  247. * The key does not actually break, but it returns zero sense which
  248. * makes our SCSI stack to print confusing messages.
  249. */
  250. UNUSUAL_DEV( 0x0457, 0x0150, 0x0100, 0x0100,
  251. "USBest Technology", /* sold by Transcend */
  252. "USB Mass Storage Device",
  253. USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ),
  254. /*
  255. * Bohdan Linda <bohdan.linda@gmail.com>
  256. * 1GB USB sticks MyFlash High Speed. I have restricted
  257. * the revision to my model only
  258. */
  259. UNUSUAL_DEV( 0x0457, 0x0151, 0x0100, 0x0100,
  260. "USB 2.0",
  261. "Flash Disk",
  262. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  263. US_FL_NOT_LOCKABLE ),
  264. /* Reported by Tamas Kerecsen <kerecsen@bigfoot.com>
  265. * Obviously the PROM has not been customized by the VAR;
  266. * the Vendor and Product string descriptors are:
  267. * Generic Mass Storage (PROTOTYPE--Remember to change idVendor)
  268. * Generic Manufacturer (PROTOTYPE--Remember to change idVendor)
  269. */
  270. UNUSUAL_DEV( 0x045e, 0xffff, 0x0000, 0x0000,
  271. "Mitac",
  272. "GPS",
  273. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  274. US_FL_MAX_SECTORS_64 ),
  275. /*
  276. * This virtual floppy is found in Sun equipment (x4600, x4200m2, etc.)
  277. * Reported by Pete Zaitcev <zaitcev@redhat.com>
  278. * This device chokes on both version of MODE SENSE which we have, so
  279. * use_10_for_ms is not effective, and we use US_FL_NO_WP_DETECT.
  280. */
  281. UNUSUAL_DEV( 0x046b, 0xff40, 0x0100, 0x0100,
  282. "AMI",
  283. "Virtual Floppy",
  284. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  285. US_FL_NO_WP_DETECT),
  286. /* Patch submitted by Philipp Friedrich <philipp@void.at> */
  287. UNUSUAL_DEV( 0x0482, 0x0100, 0x0100, 0x0100,
  288. "Kyocera",
  289. "Finecam S3x",
  290. USB_SC_8070, USB_PR_CB, NULL, US_FL_FIX_INQUIRY),
  291. /* Patch submitted by Philipp Friedrich <philipp@void.at> */
  292. UNUSUAL_DEV( 0x0482, 0x0101, 0x0100, 0x0100,
  293. "Kyocera",
  294. "Finecam S4",
  295. USB_SC_8070, USB_PR_CB, NULL, US_FL_FIX_INQUIRY),
  296. /* Patch submitted by Stephane Galles <stephane.galles@free.fr> */
  297. UNUSUAL_DEV( 0x0482, 0x0103, 0x0100, 0x0100,
  298. "Kyocera",
  299. "Finecam S5",
  300. USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY),
  301. /* Patch submitted by Jens Taprogge <jens.taprogge@taprogge.org> */
  302. UNUSUAL_DEV( 0x0482, 0x0107, 0x0100, 0x0100,
  303. "Kyocera",
  304. "CONTAX SL300R T*",
  305. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  306. US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE),
  307. /* Reported by Paul Stewart <stewart@wetlogic.net>
  308. * This entry is needed because the device reports Sub=ff */
  309. UNUSUAL_DEV( 0x04a4, 0x0004, 0x0001, 0x0001,
  310. "Hitachi",
  311. "DVD-CAM DZ-MV100A Camcorder",
  312. USB_SC_SCSI, USB_PR_CB, NULL, US_FL_SINGLE_LUN),
  313. /* BENQ DC5330
  314. * Reported by Manuel Fombuena <mfombuena@ya.com> and
  315. * Frank Copeland <fjc@thingy.apana.org.au> */
  316. UNUSUAL_DEV( 0x04a5, 0x3010, 0x0100, 0x0100,
  317. "Tekom Technologies, Inc",
  318. "300_CAMERA",
  319. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  320. US_FL_IGNORE_RESIDUE ),
  321. /* Patch for Nikon coolpix 2000
  322. * Submitted by Fabien Cosse <fabien.cosse@wanadoo.fr>*/
  323. UNUSUAL_DEV( 0x04b0, 0x0301, 0x0010, 0x0010,
  324. "NIKON",
  325. "NIKON DSC E2000",
  326. USB_SC_DEVICE, USB_PR_DEVICE,NULL,
  327. US_FL_NOT_LOCKABLE ),
  328. /* Reported by Doug Maxey (dwm@austin.ibm.com) */
  329. UNUSUAL_DEV( 0x04b3, 0x4001, 0x0110, 0x0110,
  330. "IBM",
  331. "IBM RSA2",
  332. USB_SC_DEVICE, USB_PR_CB, NULL,
  333. US_FL_MAX_SECTORS_MIN),
  334. /* Reported by Simon Levitt <simon@whattf.com>
  335. * This entry needs Sub and Proto fields */
  336. UNUSUAL_DEV( 0x04b8, 0x0601, 0x0100, 0x0100,
  337. "Epson",
  338. "875DC Storage",
  339. USB_SC_SCSI, USB_PR_CB, NULL, US_FL_FIX_INQUIRY),
  340. /* Reported by Khalid Aziz <khalid@gonehiking.org>
  341. * This entry is needed because the device reports Sub=ff */
  342. UNUSUAL_DEV( 0x04b8, 0x0602, 0x0110, 0x0110,
  343. "Epson",
  344. "785EPX Storage",
  345. USB_SC_SCSI, USB_PR_BULK, NULL, US_FL_SINGLE_LUN),
  346. /* Not sure who reported this originally but
  347. * Pavel Machek <pavel@ucw.cz> reported that the extra US_FL_SINGLE_LUN
  348. * flag be added */
  349. UNUSUAL_DEV( 0x04cb, 0x0100, 0x0000, 0x2210,
  350. "Fujifilm",
  351. "FinePix 1400Zoom",
  352. USB_SC_UFI, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY | US_FL_SINGLE_LUN),
  353. /* Reported by Ondrej Zary <linux@rainbow-software.org>
  354. * The device reports one sector more and breaks when that sector is accessed
  355. */
  356. UNUSUAL_DEV( 0x04ce, 0x0002, 0x026c, 0x026c,
  357. "ScanLogic",
  358. "SL11R-IDE",
  359. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  360. US_FL_FIX_CAPACITY),
  361. /* Reported by Kriston Fincher <kriston@airmail.net>
  362. * Patch submitted by Sean Millichamp <sean@bruenor.org>
  363. * This is to support the Panasonic PalmCam PV-SD4090
  364. * This entry is needed because the device reports Sub=ff
  365. */
  366. UNUSUAL_DEV( 0x04da, 0x0901, 0x0100, 0x0200,
  367. "Panasonic",
  368. "LS-120 Camera",
  369. USB_SC_UFI, USB_PR_DEVICE, NULL, 0),
  370. /* From Yukihiro Nakai, via zaitcev@yahoo.com.
  371. * This is needed for CB instead of CBI */
  372. UNUSUAL_DEV( 0x04da, 0x0d05, 0x0000, 0x0000,
  373. "Sharp CE-CW05",
  374. "CD-R/RW Drive",
  375. USB_SC_8070, USB_PR_CB, NULL, 0),
  376. /* Reported by Adriaan Penning <a.penning@luon.net> */
  377. UNUSUAL_DEV( 0x04da, 0x2372, 0x0000, 0x9999,
  378. "Panasonic",
  379. "DMC-LCx Camera",
  380. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  381. US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ),
  382. /* Reported by Simeon Simeonov <simeonov_2000@yahoo.com> */
  383. UNUSUAL_DEV( 0x04da, 0x2373, 0x0000, 0x9999,
  384. "LEICA",
  385. "D-LUX Camera",
  386. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  387. US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ),
  388. /* Most of the following entries were developed with the help of
  389. * Shuttle/SCM directly.
  390. */
  391. UNUSUAL_DEV( 0x04e6, 0x0001, 0x0200, 0x0200,
  392. "Matshita",
  393. "LS-120",
  394. USB_SC_8020, USB_PR_CB, NULL, 0),
  395. UNUSUAL_DEV( 0x04e6, 0x0002, 0x0100, 0x0100,
  396. "Shuttle",
  397. "eUSCSI Bridge",
  398. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  399. US_FL_SCM_MULT_TARG ),
  400. #ifdef NO_SDDR09
  401. UNUSUAL_DEV( 0x04e6, 0x0005, 0x0100, 0x0208,
  402. "SCM Microsystems",
  403. "eUSB CompactFlash Adapter",
  404. USB_SC_SCSI, USB_PR_CB, NULL,
  405. US_FL_SINGLE_LUN),
  406. #endif
  407. /* Reported by Markus Demleitner <msdemlei@cl.uni-heidelberg.de> */
  408. UNUSUAL_DEV( 0x04e6, 0x0006, 0x0100, 0x0100,
  409. "SCM Microsystems Inc.",
  410. "eUSB MMC Adapter",
  411. USB_SC_SCSI, USB_PR_CB, NULL,
  412. US_FL_SINGLE_LUN),
  413. /* Reported by Daniel Nouri <dpunktnpunkt@web.de> */
  414. UNUSUAL_DEV( 0x04e6, 0x0006, 0x0205, 0x0205,
  415. "Shuttle",
  416. "eUSB MMC Adapter",
  417. USB_SC_SCSI, USB_PR_DEVICE, NULL,
  418. US_FL_SINGLE_LUN),
  419. UNUSUAL_DEV( 0x04e6, 0x0007, 0x0100, 0x0200,
  420. "Sony",
  421. "Hifd",
  422. USB_SC_SCSI, USB_PR_CB, NULL,
  423. US_FL_SINGLE_LUN),
  424. UNUSUAL_DEV( 0x04e6, 0x0009, 0x0200, 0x0200,
  425. "Shuttle",
  426. "eUSB ATA/ATAPI Adapter",
  427. USB_SC_8020, USB_PR_CB, NULL, 0),
  428. UNUSUAL_DEV( 0x04e6, 0x000a, 0x0200, 0x0200,
  429. "Shuttle",
  430. "eUSB CompactFlash Adapter",
  431. USB_SC_8020, USB_PR_CB, NULL, 0),
  432. UNUSUAL_DEV( 0x04e6, 0x000b, 0x0100, 0x0100,
  433. "Shuttle",
  434. "eUSCSI Bridge",
  435. USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
  436. US_FL_SCM_MULT_TARG ),
  437. UNUSUAL_DEV( 0x04e6, 0x000c, 0x0100, 0x0100,
  438. "Shuttle",
  439. "eUSCSI Bridge",
  440. USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
  441. US_FL_SCM_MULT_TARG ),
  442. UNUSUAL_DEV( 0x04e6, 0x000f, 0x0000, 0x9999,
  443. "SCM Microsystems",
  444. "eUSB SCSI Adapter (Bus Powered)",
  445. USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
  446. US_FL_SCM_MULT_TARG ),
  447. UNUSUAL_DEV( 0x04e6, 0x0101, 0x0200, 0x0200,
  448. "Shuttle",
  449. "CD-RW Device",
  450. USB_SC_8020, USB_PR_CB, NULL, 0),
  451. /* Reported by Dmitry Khlystov <adminimus@gmail.com> */
  452. UNUSUAL_DEV( 0x04e8, 0x507c, 0x0220, 0x0220,
  453. "Samsung",
  454. "YP-U3",
  455. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  456. US_FL_MAX_SECTORS_64),
  457. /* Reported by Vitaly Kuznetsov <vitty@altlinux.ru> */
  458. UNUSUAL_DEV( 0x04e8, 0x5122, 0x0000, 0x9999,
  459. "Samsung",
  460. "YP-CP3",
  461. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  462. US_FL_MAX_SECTORS_64 | US_FL_BULK_IGNORE_TAG),
  463. /* Added by Dmitry Artamonow <mad_soft@inbox.ru> */
  464. UNUSUAL_DEV( 0x04e8, 0x5136, 0x0000, 0x9999,
  465. "Samsung",
  466. "YP-Z3",
  467. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  468. US_FL_MAX_SECTORS_64),
  469. /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>.
  470. * Device uses standards-violating 32-byte Bulk Command Block Wrappers and
  471. * reports itself as "Proprietary SCSI Bulk." Cf. device entry 0x084d:0x0011.
  472. */
  473. UNUSUAL_DEV( 0x04fc, 0x80c2, 0x0100, 0x0100,
  474. "Kobian Mercury",
  475. "Binocam DCB-132",
  476. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  477. US_FL_BULK32),
  478. /* Reported by Bob Sass <rls@vectordb.com> -- only rev 1.33 tested */
  479. UNUSUAL_DEV( 0x050d, 0x0115, 0x0133, 0x0133,
  480. "Belkin",
  481. "USB SCSI Adaptor",
  482. USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
  483. US_FL_SCM_MULT_TARG ),
  484. /* Iomega Clik! Drive
  485. * Reported by David Chatenay <dchatenay@hotmail.com>
  486. * The reason this is needed is not fully known.
  487. */
  488. UNUSUAL_DEV( 0x0525, 0xa140, 0x0100, 0x0100,
  489. "Iomega",
  490. "USB Clik! 40",
  491. USB_SC_8070, USB_PR_DEVICE, NULL,
  492. US_FL_FIX_INQUIRY ),
  493. /* Added by Alan Stern <stern@rowland.harvard.edu> */
  494. COMPLIANT_DEV(0x0525, 0xa4a5, 0x0000, 0x9999,
  495. "Linux",
  496. "File-backed Storage Gadget",
  497. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  498. US_FL_CAPACITY_OK ),
  499. /* Yakumo Mega Image 37
  500. * Submitted by Stephan Fuhrmann <atomenergie@t-online.de> */
  501. UNUSUAL_DEV( 0x052b, 0x1801, 0x0100, 0x0100,
  502. "Tekom Technologies, Inc",
  503. "300_CAMERA",
  504. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  505. US_FL_IGNORE_RESIDUE ),
  506. /* Another Yakumo camera.
  507. * Reported by Michele Alzetta <michele.alzetta@aliceposta.it> */
  508. UNUSUAL_DEV( 0x052b, 0x1804, 0x0100, 0x0100,
  509. "Tekom Technologies, Inc",
  510. "300_CAMERA",
  511. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  512. US_FL_IGNORE_RESIDUE ),
  513. /* Reported by Iacopo Spalletti <avvisi@spalletti.it> */
  514. UNUSUAL_DEV( 0x052b, 0x1807, 0x0100, 0x0100,
  515. "Tekom Technologies, Inc",
  516. "300_CAMERA",
  517. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  518. US_FL_IGNORE_RESIDUE ),
  519. /* Yakumo Mega Image 47
  520. * Reported by Bjoern Paetzel <kolrabi@kolrabi.de> */
  521. UNUSUAL_DEV( 0x052b, 0x1905, 0x0100, 0x0100,
  522. "Tekom Technologies, Inc",
  523. "400_CAMERA",
  524. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  525. US_FL_IGNORE_RESIDUE ),
  526. /* Reported by Paul Ortyl <ortylp@3miasto.net>
  527. * Note that it's similar to the device above, only different prodID */
  528. UNUSUAL_DEV( 0x052b, 0x1911, 0x0100, 0x0100,
  529. "Tekom Technologies, Inc",
  530. "400_CAMERA",
  531. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  532. US_FL_IGNORE_RESIDUE ),
  533. UNUSUAL_DEV( 0x054c, 0x0010, 0x0106, 0x0450,
  534. "Sony",
  535. "DSC-S30/S70/S75/505V/F505/F707/F717/P8",
  536. USB_SC_SCSI, USB_PR_DEVICE, NULL,
  537. US_FL_SINGLE_LUN | US_FL_NOT_LOCKABLE | US_FL_NO_WP_DETECT ),
  538. /* Submitted by Lars Jacob <jacob.lars@googlemail.com>
  539. * This entry is needed because the device reports Sub=ff */
  540. UNUSUAL_DEV( 0x054c, 0x0010, 0x0500, 0x0610,
  541. "Sony",
  542. "DSC-T1/T5/H5",
  543. USB_SC_8070, USB_PR_DEVICE, NULL,
  544. US_FL_SINGLE_LUN ),
  545. /* Reported by wim@geeks.nl */
  546. UNUSUAL_DEV( 0x054c, 0x0025, 0x0100, 0x0100,
  547. "Sony",
  548. "Memorystick NW-MS7",
  549. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  550. US_FL_SINGLE_LUN ),
  551. /* Submitted by Olaf Hering, <olh@suse.de> SuSE Bugzilla #49049 */
  552. UNUSUAL_DEV( 0x054c, 0x002c, 0x0501, 0x2000,
  553. "Sony",
  554. "USB Floppy Drive",
  555. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  556. US_FL_SINGLE_LUN ),
  557. UNUSUAL_DEV( 0x054c, 0x002d, 0x0100, 0x0100,
  558. "Sony",
  559. "Memorystick MSAC-US1",
  560. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  561. US_FL_SINGLE_LUN ),
  562. /* Submitted by Klaus Mueller <k.mueller@intershop.de> */
  563. UNUSUAL_DEV( 0x054c, 0x002e, 0x0106, 0x0310,
  564. "Sony",
  565. "Handycam",
  566. USB_SC_SCSI, USB_PR_DEVICE, NULL,
  567. US_FL_SINGLE_LUN ),
  568. /* Submitted by Rajesh Kumble Nayak <nayak@obs-nice.fr> */
  569. UNUSUAL_DEV( 0x054c, 0x002e, 0x0500, 0x0500,
  570. "Sony",
  571. "Handycam HC-85",
  572. USB_SC_UFI, USB_PR_DEVICE, NULL,
  573. US_FL_SINGLE_LUN ),
  574. UNUSUAL_DEV( 0x054c, 0x0032, 0x0000, 0x9999,
  575. "Sony",
  576. "Memorystick MSC-U01N",
  577. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  578. US_FL_SINGLE_LUN ),
  579. /* Submitted by Michal Mlotek <mlotek@foobar.pl> */
  580. UNUSUAL_DEV( 0x054c, 0x0058, 0x0000, 0x9999,
  581. "Sony",
  582. "PEG N760c Memorystick",
  583. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  584. US_FL_FIX_INQUIRY ),
  585. UNUSUAL_DEV( 0x054c, 0x0069, 0x0000, 0x9999,
  586. "Sony",
  587. "Memorystick MSC-U03",
  588. USB_SC_UFI, USB_PR_CB, NULL,
  589. US_FL_SINGLE_LUN ),
  590. /* Submitted by Nathan Babb <nathan@lexi.com> */
  591. UNUSUAL_DEV( 0x054c, 0x006d, 0x0000, 0x9999,
  592. "Sony",
  593. "PEG Mass Storage",
  594. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  595. US_FL_FIX_INQUIRY ),
  596. /* Submitted by Frank Engel <frankie@cse.unsw.edu.au> */
  597. UNUSUAL_DEV( 0x054c, 0x0099, 0x0000, 0x9999,
  598. "Sony",
  599. "PEG Mass Storage",
  600. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  601. US_FL_FIX_INQUIRY ),
  602. /* Submitted by Mike Alborn <malborn@deandra.homeip.net> */
  603. UNUSUAL_DEV( 0x054c, 0x016a, 0x0000, 0x9999,
  604. "Sony",
  605. "PEG Mass Storage",
  606. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  607. US_FL_FIX_INQUIRY ),
  608. /* Submitted by Ren Bigcren <bigcren.ren@sonymobile.com> */
  609. UNUSUAL_DEV( 0x054c, 0x02a5, 0x0100, 0x0100,
  610. "Sony Corp.",
  611. "MicroVault Flash Drive",
  612. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  613. US_FL_NO_READ_CAPACITY_16 ),
  614. /* floppy reports multiple luns */
  615. UNUSUAL_DEV( 0x055d, 0x2020, 0x0000, 0x0210,
  616. "SAMSUNG",
  617. "SFD-321U [FW 0C]",
  618. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  619. US_FL_SINGLE_LUN ),
  620. /* We keep this entry to force the transport; firmware 3.00 and later is ok. */
  621. UNUSUAL_DEV( 0x057b, 0x0000, 0x0000, 0x0299,
  622. "Y-E Data",
  623. "Flashbuster-U",
  624. USB_SC_DEVICE, USB_PR_CB, NULL,
  625. US_FL_SINGLE_LUN),
  626. /* Reported by Johann Cardon <johann.cardon@free.fr>
  627. * This entry is needed only because the device reports
  628. * bInterfaceClass = 0xff (vendor-specific)
  629. */
  630. UNUSUAL_DEV( 0x057b, 0x0022, 0x0000, 0x9999,
  631. "Y-E Data",
  632. "Silicon Media R/W",
  633. USB_SC_DEVICE, USB_PR_DEVICE, NULL, 0),
  634. /* Reported by RTE <raszilki@yandex.ru> */
  635. UNUSUAL_DEV( 0x058f, 0x6387, 0x0141, 0x0141,
  636. "JetFlash",
  637. "TS1GJF2A/120",
  638. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  639. US_FL_MAX_SECTORS_64 ),
  640. /* Fabrizio Fellini <fello@libero.it> */
  641. UNUSUAL_DEV( 0x0595, 0x4343, 0x0000, 0x2210,
  642. "Fujifilm",
  643. "Digital Camera EX-20 DSC",
  644. USB_SC_8070, USB_PR_DEVICE, NULL, 0 ),
  645. /* Reported by Andre Welter <a.r.welter@gmx.de>
  646. * This antique device predates the release of the Bulk-only Transport
  647. * spec, and if it gets a Get-Max-LUN then it requires the host to do a
  648. * Clear-Halt on the bulk endpoints. The SINGLE_LUN flag will prevent
  649. * us from sending the request.
  650. */
  651. UNUSUAL_DEV( 0x059b, 0x0001, 0x0100, 0x0100,
  652. "Iomega",
  653. "ZIP 100",
  654. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  655. US_FL_SINGLE_LUN ),
  656. UNUSUAL_DEV( 0x059b, 0x0040, 0x0100, 0x0100,
  657. "Iomega",
  658. "Jaz USB Adapter",
  659. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  660. US_FL_SINGLE_LUN ),
  661. /* Reported by <Hendryk.Pfeiffer@gmx.de> */
  662. UNUSUAL_DEV( 0x059f, 0x0643, 0x0000, 0x0000,
  663. "LaCie",
  664. "DVD+-RW",
  665. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  666. US_FL_GO_SLOW ),
  667. /* Reported by Christian Schaller <cschalle@redhat.com> */
  668. UNUSUAL_DEV( 0x059f, 0x0651, 0x0000, 0x0000,
  669. "LaCie",
  670. "External HDD",
  671. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  672. US_FL_NO_WP_DETECT ),
  673. /* Submitted by Joel Bourquard <numlock@freesurf.ch>
  674. * Some versions of this device need the SubClass and Protocol overrides
  675. * while others don't.
  676. */
  677. UNUSUAL_DEV( 0x05ab, 0x0060, 0x1104, 0x1110,
  678. "In-System",
  679. "PyroGate External CD-ROM Enclosure (FCD-523)",
  680. USB_SC_SCSI, USB_PR_BULK, NULL,
  681. US_FL_NEED_OVERRIDE ),
  682. /* Submitted by Sven Anderson <sven-linux@anderson.de>
  683. * There are at least four ProductIDs used for iPods, so I added 0x1202 and
  684. * 0x1204. They just need the US_FL_FIX_CAPACITY. As the bcdDevice appears
  685. * to change with firmware updates, I changed the range to maximum for all
  686. * iPod entries.
  687. */
  688. UNUSUAL_DEV( 0x05ac, 0x1202, 0x0000, 0x9999,
  689. "Apple",
  690. "iPod",
  691. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  692. US_FL_FIX_CAPACITY ),
  693. /* Reported by Avi Kivity <avi@argo.co.il> */
  694. UNUSUAL_DEV( 0x05ac, 0x1203, 0x0000, 0x9999,
  695. "Apple",
  696. "iPod",
  697. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  698. US_FL_FIX_CAPACITY ),
  699. UNUSUAL_DEV( 0x05ac, 0x1204, 0x0000, 0x9999,
  700. "Apple",
  701. "iPod",
  702. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  703. US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ),
  704. UNUSUAL_DEV( 0x05ac, 0x1205, 0x0000, 0x9999,
  705. "Apple",
  706. "iPod",
  707. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  708. US_FL_FIX_CAPACITY ),
  709. /*
  710. * Reported by Tyson Vinson <lornoss@gmail.com>
  711. * This particular productId is the iPod Nano
  712. */
  713. UNUSUAL_DEV( 0x05ac, 0x120a, 0x0000, 0x9999,
  714. "Apple",
  715. "iPod",
  716. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  717. US_FL_FIX_CAPACITY ),
  718. /* Reported by Dan Williams <dcbw@redhat.com>
  719. * Option N.V. mobile broadband modems
  720. * Ignore driver CD mode and force into modem mode by default.
  721. */
  722. /* Globetrotter HSDPA; mass storage shows up as Qualcomm for vendor */
  723. UNUSUAL_DEV( 0x05c6, 0x1000, 0x0000, 0x9999,
  724. "Option N.V.",
  725. "Mass Storage",
  726. USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init,
  727. 0),
  728. /* Reported by Blake Matheny <bmatheny@purdue.edu> */
  729. UNUSUAL_DEV( 0x05dc, 0xb002, 0x0000, 0x0113,
  730. "Lexar",
  731. "USB CF Reader",
  732. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  733. US_FL_FIX_INQUIRY ),
  734. /* The following two entries are for a Genesys USB to IDE
  735. * converter chip, but it changes its ProductId depending
  736. * on whether or not a disk or an optical device is enclosed
  737. * They were originally reported by Alexander Oltu
  738. * <alexander@all-2.com> and Peter Marks <peter.marks@turner.com>
  739. * respectively.
  740. *
  741. * US_FL_GO_SLOW and US_FL_MAX_SECTORS_64 added by Phil Dibowitz
  742. * <phil@ipom.com> as these flags were made and hard-coded
  743. * special-cases were pulled from scsiglue.c.
  744. */
  745. UNUSUAL_DEV( 0x05e3, 0x0701, 0x0000, 0xffff,
  746. "Genesys Logic",
  747. "USB to IDE Optical",
  748. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  749. US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 | US_FL_IGNORE_RESIDUE ),
  750. UNUSUAL_DEV( 0x05e3, 0x0702, 0x0000, 0xffff,
  751. "Genesys Logic",
  752. "USB to IDE Disk",
  753. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  754. US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 | US_FL_IGNORE_RESIDUE ),
  755. /* Reported by Ben Efros <ben@pc-doctor.com> */
  756. UNUSUAL_DEV( 0x05e3, 0x0723, 0x9451, 0x9451,
  757. "Genesys Logic",
  758. "USB to SATA",
  759. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  760. US_FL_SANE_SENSE ),
  761. /* Reported by Hanno Boeck <hanno@gmx.de>
  762. * Taken from the Lycoris Kernel */
  763. UNUSUAL_DEV( 0x0636, 0x0003, 0x0000, 0x9999,
  764. "Vivitar",
  765. "Vivicam 35Xx",
  766. USB_SC_SCSI, USB_PR_BULK, NULL,
  767. US_FL_FIX_INQUIRY ),
  768. UNUSUAL_DEV( 0x0644, 0x0000, 0x0100, 0x0100,
  769. "TEAC",
  770. "Floppy Drive",
  771. USB_SC_UFI, USB_PR_CB, NULL, 0 ),
  772. /* Reported by Darsen Lu <darsen@micro.ee.nthu.edu.tw> */
  773. UNUSUAL_DEV( 0x066f, 0x8000, 0x0001, 0x0001,
  774. "SigmaTel",
  775. "USBMSC Audio Player",
  776. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  777. US_FL_FIX_CAPACITY ),
  778. /* Reported by Daniel Kukula <daniel.kuku@gmail.com> */
  779. UNUSUAL_DEV( 0x067b, 0x1063, 0x0100, 0x0100,
  780. "Prolific Technology, Inc.",
  781. "Prolific Storage Gadget",
  782. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  783. US_FL_BAD_SENSE ),
  784. /* Reported by Rogerio Brito <rbrito@ime.usp.br> */
  785. UNUSUAL_DEV( 0x067b, 0x2317, 0x0001, 0x001,
  786. "Prolific Technology, Inc.",
  787. "Mass Storage Device",
  788. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  789. US_FL_NOT_LOCKABLE ),
  790. /* Reported by Richard -=[]=- <micro_flyer@hotmail.com> */
  791. /* Change to bcdDeviceMin (0x0100 to 0x0001) reported by
  792. * Thomas Bartosik <tbartdev@gmx-topmail.de> */
  793. UNUSUAL_DEV( 0x067b, 0x2507, 0x0001, 0x0100,
  794. "Prolific Technology Inc.",
  795. "Mass Storage Device",
  796. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  797. US_FL_FIX_CAPACITY | US_FL_GO_SLOW ),
  798. /* Reported by Alex Butcher <alex.butcher@assursys.co.uk> */
  799. UNUSUAL_DEV( 0x067b, 0x3507, 0x0001, 0x0101,
  800. "Prolific Technology Inc.",
  801. "ATAPI-6 Bridge Controller",
  802. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  803. US_FL_FIX_CAPACITY | US_FL_GO_SLOW ),
  804. /* Submitted by Benny Sjostrand <benny@hostmobility.com> */
  805. UNUSUAL_DEV( 0x0686, 0x4011, 0x0001, 0x0001,
  806. "Minolta",
  807. "Dimage F300",
  808. USB_SC_SCSI, USB_PR_BULK, NULL, 0 ),
  809. /* Reported by Miguel A. Fosas <amn3s1a@ono.com> */
  810. UNUSUAL_DEV( 0x0686, 0x4017, 0x0001, 0x0001,
  811. "Minolta",
  812. "DIMAGE E223",
  813. USB_SC_SCSI, USB_PR_DEVICE, NULL, 0 ),
  814. UNUSUAL_DEV( 0x0693, 0x0005, 0x0100, 0x0100,
  815. "Hagiwara",
  816. "Flashgate",
  817. USB_SC_SCSI, USB_PR_BULK, NULL, 0 ),
  818. /* Reported by David Hamilton <niftimusmaximus@lycos.com> */
  819. UNUSUAL_DEV( 0x069b, 0x3004, 0x0001, 0x0001,
  820. "Thomson Multimedia Inc.",
  821. "RCA RD1080 MP3 Player",
  822. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  823. US_FL_FIX_CAPACITY ),
  824. UNUSUAL_DEV( 0x06ca, 0x2003, 0x0100, 0x0100,
  825. "Newer Technology",
  826. "uSCSI",
  827. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  828. US_FL_SCM_MULT_TARG ),
  829. /* Reported by Adrian Pilchowiec <adi1981@epf.pl> */
  830. UNUSUAL_DEV( 0x071b, 0x3203, 0x0000, 0x0000,
  831. "RockChip",
  832. "MP3",
  833. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  834. US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64 |
  835. US_FL_NO_READ_CAPACITY_16),
  836. /* Reported by Jean-Baptiste Onofre <jb@nanthrax.net>
  837. * Support the following product :
  838. * "Dane-Elec MediaTouch"
  839. */
  840. UNUSUAL_DEV( 0x071b, 0x32bb, 0x0000, 0x0000,
  841. "RockChip",
  842. "MTP",
  843. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  844. US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64),
  845. /* Reported by Massimiliano Ghilardi <massimiliano.ghilardi@gmail.com>
  846. * This USB MP3/AVI player device fails and disconnects if more than 128
  847. * sectors (64kB) are read/written in a single command, and may be present
  848. * at least in the following products:
  849. * "Magnex Digital Video Panel DVP 1800"
  850. * "MP4 AIGO 4GB SLOT SD"
  851. * "Teclast TL-C260 MP3"
  852. * "i.Meizu PMP MP3/MP4"
  853. * "Speed MV8 MP4 Audio Player"
  854. */
  855. UNUSUAL_DEV( 0x071b, 0x3203, 0x0100, 0x0100,
  856. "RockChip",
  857. "ROCK MP3",
  858. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  859. US_FL_MAX_SECTORS_64),
  860. /* Reported by Olivier Blondeau <zeitoun@gmail.com> */
  861. UNUSUAL_DEV( 0x0727, 0x0306, 0x0100, 0x0100,
  862. "ATMEL",
  863. "SND1 Storage",
  864. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  865. US_FL_IGNORE_RESIDUE),
  866. /* Submitted by Roman Hodek <roman@hodek.net> */
  867. UNUSUAL_DEV( 0x0781, 0x0001, 0x0200, 0x0200,
  868. "Sandisk",
  869. "ImageMate SDDR-05a",
  870. USB_SC_SCSI, USB_PR_CB, NULL,
  871. US_FL_SINGLE_LUN ),
  872. UNUSUAL_DEV( 0x0781, 0x0002, 0x0009, 0x0009,
  873. "SanDisk Corporation",
  874. "ImageMate CompactFlash USB",
  875. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  876. US_FL_FIX_CAPACITY ),
  877. UNUSUAL_DEV( 0x0781, 0x0100, 0x0100, 0x0100,
  878. "Sandisk",
  879. "ImageMate SDDR-12",
  880. USB_SC_SCSI, USB_PR_CB, NULL,
  881. US_FL_SINGLE_LUN ),
  882. /* Reported by Eero Volotinen <eero@ping-viini.org> */
  883. UNUSUAL_DEV( 0x07ab, 0xfccd, 0x0000, 0x9999,
  884. "Freecom Technologies",
  885. "FHD-Classic",
  886. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  887. US_FL_FIX_CAPACITY),
  888. UNUSUAL_DEV( 0x07af, 0x0004, 0x0100, 0x0133,
  889. "Microtech",
  890. "USB-SCSI-DB25",
  891. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  892. US_FL_SCM_MULT_TARG ),
  893. UNUSUAL_DEV( 0x07af, 0x0005, 0x0100, 0x0100,
  894. "Microtech",
  895. "USB-SCSI-HD50",
  896. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  897. US_FL_SCM_MULT_TARG ),
  898. #ifdef NO_SDDR09
  899. UNUSUAL_DEV( 0x07af, 0x0006, 0x0100, 0x0100,
  900. "Microtech",
  901. "CameraMate",
  902. USB_SC_SCSI, USB_PR_CB, NULL,
  903. US_FL_SINGLE_LUN ),
  904. #endif
  905. /* Datafab KECF-USB / Sagatek DCS-CF / Simpletech Flashlink UCF-100
  906. * Only revision 1.13 tested (same for all of the above devices,
  907. * based on the Datafab DF-UG-07 chip). Needed for US_FL_FIX_INQUIRY.
  908. * Submitted by Marek Michalkiewicz <marekm@amelek.gda.pl>.
  909. * See also http://martin.wilck.bei.t-online.de/#kecf .
  910. */
  911. UNUSUAL_DEV( 0x07c4, 0xa400, 0x0000, 0xffff,
  912. "Datafab",
  913. "KECF-USB",
  914. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  915. US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY ),
  916. /* Reported by Rauch Wolke <rauchwolke@gmx.net>
  917. * and augmented by binbin <binbinsh@gmail.com> (Bugzilla #12882)
  918. */
  919. UNUSUAL_DEV( 0x07c4, 0xa4a5, 0x0000, 0xffff,
  920. "Simple Tech/Datafab",
  921. "CF+SM Reader",
  922. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  923. US_FL_IGNORE_RESIDUE | US_FL_MAX_SECTORS_64 ),
  924. /* Casio QV 2x00/3x00/4000/8000 digital still cameras are not conformant
  925. * to the USB storage specification in two ways:
  926. * - They tell us they are using transport protocol CBI. In reality they
  927. * are using transport protocol CB.
  928. * - They don't like the INQUIRY command. So we must handle this command
  929. * of the SCSI layer ourselves.
  930. * - Some cameras with idProduct=0x1001 and bcdDevice=0x1000 have
  931. * bInterfaceProtocol=0x00 (USB_PR_CBI) while others have 0x01 (USB_PR_CB).
  932. * So don't remove the USB_PR_CB override!
  933. * - Cameras with bcdDevice=0x9009 require the USB_SC_8070 override.
  934. */
  935. UNUSUAL_DEV( 0x07cf, 0x1001, 0x1000, 0x9999,
  936. "Casio",
  937. "QV DigitalCamera",
  938. USB_SC_8070, USB_PR_CB, NULL,
  939. US_FL_NEED_OVERRIDE | US_FL_FIX_INQUIRY ),
  940. /* Submitted by Oleksandr Chumachenko <ledest@gmail.com> */
  941. UNUSUAL_DEV( 0x07cf, 0x1167, 0x0100, 0x0100,
  942. "Casio",
  943. "EX-N1 DigitalCamera",
  944. USB_SC_8070, USB_PR_DEVICE, NULL, 0),
  945. /* Submitted by Hartmut Wahl <hwahl@hwahl.de>*/
  946. UNUSUAL_DEV( 0x0839, 0x000a, 0x0001, 0x0001,
  947. "Samsung",
  948. "Digimax 410",
  949. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  950. US_FL_FIX_INQUIRY),
  951. /* Reported by Luciano Rocha <luciano@eurotux.com> */
  952. UNUSUAL_DEV( 0x0840, 0x0082, 0x0001, 0x0001,
  953. "Argosy",
  954. "Storage",
  955. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  956. US_FL_FIX_CAPACITY),
  957. /* Reported and patched by Nguyen Anh Quynh <aquynh@gmail.com> */
  958. UNUSUAL_DEV( 0x0840, 0x0084, 0x0001, 0x0001,
  959. "Argosy",
  960. "Storage",
  961. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  962. US_FL_FIX_CAPACITY),
  963. /* Reported by Martijn Hijdra <martijn.hijdra@gmail.com> */
  964. UNUSUAL_DEV( 0x0840, 0x0085, 0x0001, 0x0001,
  965. "Argosy",
  966. "Storage",
  967. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  968. US_FL_FIX_CAPACITY),
  969. /* Supplied with some Castlewood ORB removable drives */
  970. UNUSUAL_DEV( 0x084b, 0xa001, 0x0000, 0x9999,
  971. "Castlewood Systems",
  972. "USB to SCSI cable",
  973. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  974. US_FL_SCM_MULT_TARG ),
  975. /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>.
  976. * Flag will support Bulk devices which use a standards-violating 32-byte
  977. * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with
  978. * Grandtech GT892x chip, which request "Proprietary SCSI Bulk" support.
  979. */
  980. UNUSUAL_DEV( 0x084d, 0x0011, 0x0110, 0x0110,
  981. "Grandtech",
  982. "DC2MEGA",
  983. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  984. US_FL_BULK32),
  985. /* Reported by <ttkspam@free.fr>
  986. * The device reports a vendor-specific device class, requiring an
  987. * explicit vendor/product match.
  988. */
  989. UNUSUAL_DEV( 0x0851, 0x1542, 0x0002, 0x0002,
  990. "MagicPixel",
  991. "FW_Omega2",
  992. USB_SC_DEVICE, USB_PR_DEVICE, NULL, 0),
  993. /* Andrew Lunn <andrew@lunn.ch>
  994. * PanDigital Digital Picture Frame. Does not like ALLOW_MEDIUM_REMOVAL
  995. * on LUN 4.
  996. * Note: Vend:Prod clash with "Ltd Maxell WS30 Slim Digital Camera"
  997. */
  998. UNUSUAL_DEV( 0x0851, 0x1543, 0x0200, 0x0200,
  999. "PanDigital",
  1000. "Photo Frame",
  1001. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1002. US_FL_NOT_LOCKABLE),
  1003. UNUSUAL_DEV( 0x085a, 0x0026, 0x0100, 0x0133,
  1004. "Xircom",
  1005. "PortGear USB-SCSI (Mac USB Dock)",
  1006. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  1007. US_FL_SCM_MULT_TARG ),
  1008. UNUSUAL_DEV( 0x085a, 0x0028, 0x0100, 0x0133,
  1009. "Xircom",
  1010. "PortGear USB to SCSI Converter",
  1011. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  1012. US_FL_SCM_MULT_TARG ),
  1013. /* Submitted by Jan De Luyck <lkml@kcore.org> */
  1014. UNUSUAL_DEV( 0x08bd, 0x1100, 0x0000, 0x0000,
  1015. "CITIZEN",
  1016. "X1DE-USB",
  1017. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1018. US_FL_SINGLE_LUN),
  1019. /* Submitted by Dylan Taft <d13f00l@gmail.com>
  1020. * US_FL_IGNORE_RESIDUE Needed
  1021. */
  1022. UNUSUAL_DEV( 0x08ca, 0x3103, 0x0100, 0x0100,
  1023. "AIPTEK",
  1024. "Aiptek USB Keychain MP3 Player",
  1025. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1026. US_FL_IGNORE_RESIDUE),
  1027. /* Entry needed for flags. Moreover, all devices with this ID use
  1028. * bulk-only transport, but _some_ falsely report Control/Bulk instead.
  1029. * One example is "Trumpion Digital Research MYMP3".
  1030. * Submitted by Bjoern Brill <brill(at)fs.math.uni-frankfurt.de>
  1031. */
  1032. UNUSUAL_DEV( 0x090a, 0x1001, 0x0100, 0x0100,
  1033. "Trumpion",
  1034. "t33520 USB Flash Card Controller",
  1035. USB_SC_DEVICE, USB_PR_BULK, NULL,
  1036. US_FL_NEED_OVERRIDE ),
  1037. /* Reported by Filippo Bardelli <filibard@libero.it>
  1038. * The device reports a subclass of RBC, which is wrong.
  1039. */
  1040. UNUSUAL_DEV( 0x090a, 0x1050, 0x0100, 0x0100,
  1041. "Trumpion Microelectronics, Inc.",
  1042. "33520 USB Digital Voice Recorder",
  1043. USB_SC_UFI, USB_PR_DEVICE, NULL,
  1044. 0),
  1045. /* Trumpion Microelectronics MP3 player (felipe_alfaro@linuxmail.org) */
  1046. UNUSUAL_DEV( 0x090a, 0x1200, 0x0000, 0x9999,
  1047. "Trumpion",
  1048. "MP3 player",
  1049. USB_SC_RBC, USB_PR_BULK, NULL,
  1050. 0 ),
  1051. /* aeb */
  1052. UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff,
  1053. "Feiya",
  1054. "5-in-1 Card Reader",
  1055. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1056. US_FL_FIX_CAPACITY ),
  1057. /* Reported by Paul Hartman <paul.hartman+linux@gmail.com>
  1058. * This card reader returns "Illegal Request, Logical Block Address
  1059. * Out of Range" for the first READ(10) after a new card is inserted.
  1060. */
  1061. UNUSUAL_DEV( 0x090c, 0x6000, 0x0100, 0x0100,
  1062. "Feiya",
  1063. "SD/SDHC Card Reader",
  1064. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1065. US_FL_INITIAL_READ10 ),
  1066. /* This Pentax still camera is not conformant
  1067. * to the USB storage specification: -
  1068. * - It does not like the INQUIRY command. So we must handle this command
  1069. * of the SCSI layer ourselves.
  1070. * Tested on Rev. 10.00 (0x1000)
  1071. * Submitted by James Courtier-Dutton <James@superbug.demon.co.uk>
  1072. */
  1073. UNUSUAL_DEV( 0x0a17, 0x0004, 0x1000, 0x1000,
  1074. "Pentax",
  1075. "Optio 2/3/400",
  1076. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1077. US_FL_FIX_INQUIRY ),
  1078. /* These are virtual windows driver CDs, which the zd1211rw driver
  1079. * automatically converts into WLAN devices. */
  1080. UNUSUAL_DEV( 0x0ace, 0x2011, 0x0101, 0x0101,
  1081. "ZyXEL",
  1082. "G-220F USB-WLAN Install",
  1083. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1084. US_FL_IGNORE_DEVICE ),
  1085. UNUSUAL_DEV( 0x0ace, 0x20ff, 0x0101, 0x0101,
  1086. "SiteCom",
  1087. "WL-117 USB-WLAN Install",
  1088. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1089. US_FL_IGNORE_DEVICE ),
  1090. /* Reported by Dan Williams <dcbw@redhat.com>
  1091. * Option N.V. mobile broadband modems
  1092. * Ignore driver CD mode and force into modem mode by default.
  1093. */
  1094. /* iCON 225 */
  1095. UNUSUAL_DEV( 0x0af0, 0x6971, 0x0000, 0x9999,
  1096. "Option N.V.",
  1097. "Mass Storage",
  1098. USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init,
  1099. 0),
  1100. /* Reported by F. Aben <f.aben@option.com>
  1101. * This device (wrongly) has a vendor-specific device descriptor.
  1102. * The entry is needed so usb-storage can bind to it's mass-storage
  1103. * interface as an interface driver */
  1104. UNUSUAL_DEV( 0x0af0, 0x7401, 0x0000, 0x0000,
  1105. "Option",
  1106. "GI 0401 SD-Card",
  1107. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1108. 0 ),
  1109. /* Reported by Jan Dumon <j.dumon@option.com>
  1110. * These devices (wrongly) have a vendor-specific device descriptor.
  1111. * These entries are needed so usb-storage can bind to their mass-storage
  1112. * interface as an interface driver */
  1113. UNUSUAL_DEV( 0x0af0, 0x7501, 0x0000, 0x0000,
  1114. "Option",
  1115. "GI 0431 SD-Card",
  1116. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1117. 0 ),
  1118. UNUSUAL_DEV( 0x0af0, 0x7701, 0x0000, 0x0000,
  1119. "Option",
  1120. "GI 0451 SD-Card",
  1121. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1122. 0 ),
  1123. UNUSUAL_DEV( 0x0af0, 0x7706, 0x0000, 0x0000,
  1124. "Option",
  1125. "GI 0451 SD-Card",
  1126. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1127. 0 ),
  1128. UNUSUAL_DEV( 0x0af0, 0x7901, 0x0000, 0x0000,
  1129. "Option",
  1130. "GI 0452 SD-Card",
  1131. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1132. 0 ),
  1133. UNUSUAL_DEV( 0x0af0, 0x7A01, 0x0000, 0x0000,
  1134. "Option",
  1135. "GI 0461 SD-Card",
  1136. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1137. 0 ),
  1138. UNUSUAL_DEV( 0x0af0, 0x7A05, 0x0000, 0x0000,
  1139. "Option",
  1140. "GI 0461 SD-Card",
  1141. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1142. 0 ),
  1143. UNUSUAL_DEV( 0x0af0, 0x8300, 0x0000, 0x0000,
  1144. "Option",
  1145. "GI 033x SD-Card",
  1146. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1147. 0 ),
  1148. UNUSUAL_DEV( 0x0af0, 0x8302, 0x0000, 0x0000,
  1149. "Option",
  1150. "GI 033x SD-Card",
  1151. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1152. 0 ),
  1153. UNUSUAL_DEV( 0x0af0, 0x8304, 0x0000, 0x0000,
  1154. "Option",
  1155. "GI 033x SD-Card",
  1156. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1157. 0 ),
  1158. UNUSUAL_DEV( 0x0af0, 0xc100, 0x0000, 0x0000,
  1159. "Option",
  1160. "GI 070x SD-Card",
  1161. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1162. 0 ),
  1163. UNUSUAL_DEV( 0x0af0, 0xd057, 0x0000, 0x0000,
  1164. "Option",
  1165. "GI 1505 SD-Card",
  1166. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1167. 0 ),
  1168. UNUSUAL_DEV( 0x0af0, 0xd058, 0x0000, 0x0000,
  1169. "Option",
  1170. "GI 1509 SD-Card",
  1171. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1172. 0 ),
  1173. UNUSUAL_DEV( 0x0af0, 0xd157, 0x0000, 0x0000,
  1174. "Option",
  1175. "GI 1515 SD-Card",
  1176. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1177. 0 ),
  1178. UNUSUAL_DEV( 0x0af0, 0xd257, 0x0000, 0x0000,
  1179. "Option",
  1180. "GI 1215 SD-Card",
  1181. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1182. 0 ),
  1183. UNUSUAL_DEV( 0x0af0, 0xd357, 0x0000, 0x0000,
  1184. "Option",
  1185. "GI 1505 SD-Card",
  1186. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1187. 0 ),
  1188. /* Reported by Namjae Jeon <namjae.jeon@samsung.com> */
  1189. UNUSUAL_DEV(0x0bc2, 0x2300, 0x0000, 0x9999,
  1190. "Seagate",
  1191. "Portable HDD",
  1192. USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_WRITE_CACHE),
  1193. /* Reported by Ben Efros <ben@pc-doctor.com> */
  1194. UNUSUAL_DEV( 0x0bc2, 0x3010, 0x0000, 0x0000,
  1195. "Seagate",
  1196. "FreeAgent Pro",
  1197. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1198. US_FL_SANE_SENSE ),
  1199. UNUSUAL_DEV( 0x0d49, 0x7310, 0x0000, 0x9999,
  1200. "Maxtor",
  1201. "USB to SATA",
  1202. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1203. US_FL_SANE_SENSE),
  1204. /*
  1205. * Pete Zaitcev <zaitcev@yahoo.com>, bz#164688.
  1206. * The device blatantly ignores LUN and returns 1 in GetMaxLUN.
  1207. */
  1208. UNUSUAL_DEV( 0x0c45, 0x1060, 0x0100, 0x0100,
  1209. "Unknown",
  1210. "Unknown",
  1211. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1212. US_FL_SINGLE_LUN ),
  1213. /* Submitted by Joris Struyve <joris@struyve.be> */
  1214. UNUSUAL_DEV( 0x0d96, 0x410a, 0x0001, 0xffff,
  1215. "Medion",
  1216. "MD 7425",
  1217. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1218. US_FL_FIX_INQUIRY),
  1219. /*
  1220. * Entry for Jenoptik JD 5200z3
  1221. *
  1222. * email: car.busse@gmx.de
  1223. */
  1224. UNUSUAL_DEV( 0x0d96, 0x5200, 0x0001, 0x0200,
  1225. "Jenoptik",
  1226. "JD 5200 z3",
  1227. USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY),
  1228. /* Reported by Jason Johnston <killean@shaw.ca> */
  1229. UNUSUAL_DEV( 0x0dc4, 0x0073, 0x0000, 0x0000,
  1230. "Macpower Technology Co.LTD.",
  1231. "USB 2.0 3.5\" DEVICE",
  1232. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1233. US_FL_FIX_CAPACITY),
  1234. /* Reported by Lubomir Blaha <tritol@trilogic.cz>
  1235. * I _REALLY_ don't know what 3rd, 4th number and all defines mean, but this
  1236. * works for me. Can anybody correct these values? (I able to test corrected
  1237. * version.)
  1238. */
  1239. UNUSUAL_DEV( 0x0dd8, 0x1060, 0x0000, 0xffff,
  1240. "Netac",
  1241. "USB-CF-Card",
  1242. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1243. US_FL_FIX_INQUIRY ),
  1244. /* Reported by Edward Chapman (taken from linux-usb mailing list)
  1245. Netac OnlyDisk Mini U2CV2 512MB USB 2.0 Flash Drive */
  1246. UNUSUAL_DEV( 0x0dd8, 0xd202, 0x0000, 0x9999,
  1247. "Netac",
  1248. "USB Flash Disk",
  1249. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1250. US_FL_IGNORE_RESIDUE ),
  1251. /* Patch by Stephan Walter <stephan.walter@epfl.ch>
  1252. * I don't know why, but it works... */
  1253. UNUSUAL_DEV( 0x0dda, 0x0001, 0x0012, 0x0012,
  1254. "WINWARD",
  1255. "Music Disk",
  1256. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1257. US_FL_IGNORE_RESIDUE ),
  1258. /* Reported by Ian McConnell <ian at emit.demon.co.uk> */
  1259. UNUSUAL_DEV( 0x0dda, 0x0301, 0x0012, 0x0012,
  1260. "PNP_MP3",
  1261. "PNP_MP3 PLAYER",
  1262. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1263. US_FL_IGNORE_RESIDUE ),
  1264. /* Reported by Jim McCloskey <mcclosk@ucsc.edu> */
  1265. UNUSUAL_DEV( 0x0e21, 0x0520, 0x0100, 0x0100,
  1266. "Cowon Systems",
  1267. "iAUDIO M5",
  1268. USB_SC_DEVICE, USB_PR_BULK, NULL,
  1269. US_FL_NEED_OVERRIDE ),
  1270. /* Submitted by Antoine Mairesse <antoine.mairesse@free.fr> */
  1271. UNUSUAL_DEV( 0x0ed1, 0x6660, 0x0100, 0x0300,
  1272. "USB",
  1273. "Solid state disk",
  1274. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1275. US_FL_FIX_INQUIRY ),
  1276. /* Submitted by Daniel Drake <dsd@gentoo.org>
  1277. * Reported by dayul on the Gentoo Forums */
  1278. UNUSUAL_DEV( 0x0ea0, 0x2168, 0x0110, 0x0110,
  1279. "Ours Technology",
  1280. "Flash Disk",
  1281. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1282. US_FL_IGNORE_RESIDUE ),
  1283. /* Reported by Rastislav Stanik <rs_kernel@yahoo.com> */
  1284. UNUSUAL_DEV( 0x0ea0, 0x6828, 0x0110, 0x0110,
  1285. "USB",
  1286. "Flash Disk",
  1287. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1288. US_FL_IGNORE_RESIDUE ),
  1289. /* Reported by Benjamin Schiller <sbenni@gmx.de>
  1290. * It is also sold by Easylite as DJ 20 */
  1291. UNUSUAL_DEV( 0x0ed1, 0x7636, 0x0103, 0x0103,
  1292. "Typhoon",
  1293. "My DJ 1820",
  1294. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1295. US_FL_IGNORE_RESIDUE | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64),
  1296. /* Patch by Leonid Petrov mail at lpetrov.net
  1297. * Reported by Robert Spitzenpfeil <robert@spitzenpfeil.org>
  1298. * http://www.qbik.ch/usb/devices/showdev.php?id=1705
  1299. * Updated to 103 device by MJ Ray mjr at phonecoop.coop
  1300. */
  1301. UNUSUAL_DEV( 0x0f19, 0x0103, 0x0100, 0x0100,
  1302. "Oracom Co., Ltd",
  1303. "ORC-200M",
  1304. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1305. US_FL_IGNORE_RESIDUE ),
  1306. /* David Kuehling <dvdkhlng@gmx.de>:
  1307. * for MP3-Player AVOX WSX-300ER (bought in Japan). Reports lots of SCSI
  1308. * errors when trying to write.
  1309. */
  1310. UNUSUAL_DEV( 0x0f19, 0x0105, 0x0100, 0x0100,
  1311. "C-MEX",
  1312. "A-VOX",
  1313. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1314. US_FL_IGNORE_RESIDUE ),
  1315. /* Submitted by Nick Holloway */
  1316. UNUSUAL_DEV( 0x0f88, 0x042e, 0x0100, 0x0100,
  1317. "VTech",
  1318. "Kidizoom",
  1319. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1320. US_FL_FIX_CAPACITY ),
  1321. /* Reported by Moritz Moeller-Herrmann <moritz-kernel@moeller-herrmann.de> */
  1322. UNUSUAL_DEV( 0x0fca, 0x8004, 0x0201, 0x0201,
  1323. "Research In Motion",
  1324. "BlackBerry Bold 9000",
  1325. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1326. US_FL_MAX_SECTORS_64 ),
  1327. /* Reported by Michael Stattmann <michael@stattmann.com> */
  1328. UNUSUAL_DEV( 0x0fce, 0xd008, 0x0000, 0x0000,
  1329. "Sony Ericsson",
  1330. "V800-Vodafone 802",
  1331. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1332. US_FL_NO_WP_DETECT ),
  1333. /* Reported by The Solutor <thesolutor@gmail.com> */
  1334. UNUSUAL_DEV( 0x0fce, 0xd0e1, 0x0000, 0x0000,
  1335. "Sony Ericsson",
  1336. "MD400",
  1337. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1338. US_FL_IGNORE_DEVICE),
  1339. /* Reported by Jan Mate <mate@fiit.stuba.sk>
  1340. * and by Soeren Sonnenburg <kernel@nn7.de> */
  1341. UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x0000,
  1342. "Sony Ericsson",
  1343. "P990i",
  1344. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1345. US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ),
  1346. /* Reported by Emmanuel Vasilakis <evas@forthnet.gr> */
  1347. UNUSUAL_DEV( 0x0fce, 0xe031, 0x0000, 0x0000,
  1348. "Sony Ericsson",
  1349. "M600i",
  1350. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1351. US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
  1352. /* Reported by Ricardo Barberis <ricardo@dattatec.com> */
  1353. UNUSUAL_DEV( 0x0fce, 0xe092, 0x0000, 0x0000,
  1354. "Sony Ericsson",
  1355. "P1i",
  1356. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1357. US_FL_IGNORE_RESIDUE ),
  1358. /* Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu>
  1359. * Tested on hardware version 1.10.
  1360. * Entry is needed only for the initializer function override.
  1361. * Devices with bcd > 110 seem to not need it while those
  1362. * with bcd < 110 appear to need it.
  1363. */
  1364. UNUSUAL_DEV( 0x1019, 0x0c55, 0x0000, 0x0110,
  1365. "Desknote",
  1366. "UCR-61S2B",
  1367. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_ucr61s2b_init,
  1368. 0 ),
  1369. UNUSUAL_DEV( 0x1058, 0x0704, 0x0000, 0x9999,
  1370. "Western Digital",
  1371. "External HDD",
  1372. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1373. US_FL_SANE_SENSE),
  1374. /* Reported by Namjae Jeon <namjae.jeon@samsung.com> */
  1375. UNUSUAL_DEV(0x1058, 0x070a, 0x0000, 0x9999,
  1376. "Western Digital",
  1377. "My Passport HDD",
  1378. USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_WRITE_CACHE),
  1379. /* Reported by Fabio Venturi <f.venturi@tdnet.it>
  1380. * The device reports a vendor-specific bDeviceClass.
  1381. */
  1382. UNUSUAL_DEV( 0x10d6, 0x2200, 0x0100, 0x0100,
  1383. "Actions Semiconductor",
  1384. "Mtp device",
  1385. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1386. 0),
  1387. /* Reported by Pascal Terjan <pterjan@mandriva.com>
  1388. * Ignore driver CD mode and force into modem mode by default.
  1389. */
  1390. UNUSUAL_DEV( 0x1186, 0x3e04, 0x0000, 0x0000,
  1391. "D-Link",
  1392. "USB Mass Storage",
  1393. USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init, US_FL_IGNORE_DEVICE),
  1394. /* Reported by Kevin Lloyd <linux@sierrawireless.com>
  1395. * Entry is needed for the initializer function override,
  1396. * which instructs the device to load as a modem
  1397. * device.
  1398. */
  1399. UNUSUAL_DEV( 0x1199, 0x0fff, 0x0000, 0x9999,
  1400. "Sierra Wireless",
  1401. "USB MMC Storage",
  1402. USB_SC_DEVICE, USB_PR_DEVICE, sierra_ms_init,
  1403. 0),
  1404. /* Reported by Jaco Kroon <jaco@kroon.co.za>
  1405. * The usb-storage module found on the Digitech GNX4 (and supposedly other
  1406. * devices) misbehaves and causes a bunch of invalid I/O errors.
  1407. */
  1408. UNUSUAL_DEV( 0x1210, 0x0003, 0x0100, 0x0100,
  1409. "Digitech HMG",
  1410. "DigiTech Mass Storage",
  1411. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1412. US_FL_IGNORE_RESIDUE ),
  1413. /* Reported by fangxiaozhi <huananhu@huawei.com>
  1414. * This brings the HUAWEI data card devices into multi-port mode
  1415. */
  1416. UNUSUAL_DEV( 0x12d1, 0x1001, 0x0000, 0x0000,
  1417. "HUAWEI MOBILE",
  1418. "Mass Storage",
  1419. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1420. 0),
  1421. UNUSUAL_DEV( 0x12d1, 0x1003, 0x0000, 0x0000,
  1422. "HUAWEI MOBILE",
  1423. "Mass Storage",
  1424. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1425. 0),
  1426. UNUSUAL_DEV( 0x12d1, 0x1004, 0x0000, 0x0000,
  1427. "HUAWEI MOBILE",
  1428. "Mass Storage",
  1429. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1430. 0),
  1431. UNUSUAL_DEV( 0x12d1, 0x1401, 0x0000, 0x0000,
  1432. "HUAWEI MOBILE",
  1433. "Mass Storage",
  1434. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1435. 0),
  1436. UNUSUAL_DEV( 0x12d1, 0x1402, 0x0000, 0x0000,
  1437. "HUAWEI MOBILE",
  1438. "Mass Storage",
  1439. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1440. 0),
  1441. UNUSUAL_DEV( 0x12d1, 0x1403, 0x0000, 0x0000,
  1442. "HUAWEI MOBILE",
  1443. "Mass Storage",
  1444. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1445. 0),
  1446. UNUSUAL_DEV( 0x12d1, 0x1404, 0x0000, 0x0000,
  1447. "HUAWEI MOBILE",
  1448. "Mass Storage",
  1449. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1450. 0),
  1451. UNUSUAL_DEV( 0x12d1, 0x1405, 0x0000, 0x0000,
  1452. "HUAWEI MOBILE",
  1453. "Mass Storage",
  1454. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1455. 0),
  1456. UNUSUAL_DEV( 0x12d1, 0x1406, 0x0000, 0x0000,
  1457. "HUAWEI MOBILE",
  1458. "Mass Storage",
  1459. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1460. 0),
  1461. UNUSUAL_DEV( 0x12d1, 0x1407, 0x0000, 0x0000,
  1462. "HUAWEI MOBILE",
  1463. "Mass Storage",
  1464. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1465. 0),
  1466. UNUSUAL_DEV( 0x12d1, 0x1408, 0x0000, 0x0000,
  1467. "HUAWEI MOBILE",
  1468. "Mass Storage",
  1469. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1470. 0),
  1471. UNUSUAL_DEV( 0x12d1, 0x1409, 0x0000, 0x0000,
  1472. "HUAWEI MOBILE",
  1473. "Mass Storage",
  1474. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1475. 0),
  1476. UNUSUAL_DEV( 0x12d1, 0x140A, 0x0000, 0x0000,
  1477. "HUAWEI MOBILE",
  1478. "Mass Storage",
  1479. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1480. 0),
  1481. UNUSUAL_DEV( 0x12d1, 0x140B, 0x0000, 0x0000,
  1482. "HUAWEI MOBILE",
  1483. "Mass Storage",
  1484. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1485. 0),
  1486. UNUSUAL_DEV( 0x12d1, 0x140C, 0x0000, 0x0000,
  1487. "HUAWEI MOBILE",
  1488. "Mass Storage",
  1489. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1490. 0),
  1491. UNUSUAL_DEV( 0x12d1, 0x140D, 0x0000, 0x0000,
  1492. "HUAWEI MOBILE",
  1493. "Mass Storage",
  1494. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1495. 0),
  1496. UNUSUAL_DEV( 0x12d1, 0x140E, 0x0000, 0x0000,
  1497. "HUAWEI MOBILE",
  1498. "Mass Storage",
  1499. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1500. 0),
  1501. UNUSUAL_DEV( 0x12d1, 0x140F, 0x0000, 0x0000,
  1502. "HUAWEI MOBILE",
  1503. "Mass Storage",
  1504. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1505. 0),
  1506. UNUSUAL_DEV( 0x12d1, 0x1410, 0x0000, 0x0000,
  1507. "HUAWEI MOBILE",
  1508. "Mass Storage",
  1509. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1510. 0),
  1511. UNUSUAL_DEV( 0x12d1, 0x1411, 0x0000, 0x0000,
  1512. "HUAWEI MOBILE",
  1513. "Mass Storage",
  1514. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1515. 0),
  1516. UNUSUAL_DEV( 0x12d1, 0x1412, 0x0000, 0x0000,
  1517. "HUAWEI MOBILE",
  1518. "Mass Storage",
  1519. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1520. 0),
  1521. UNUSUAL_DEV( 0x12d1, 0x1413, 0x0000, 0x0000,
  1522. "HUAWEI MOBILE",
  1523. "Mass Storage",
  1524. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1525. 0),
  1526. UNUSUAL_DEV( 0x12d1, 0x1414, 0x0000, 0x0000,
  1527. "HUAWEI MOBILE",
  1528. "Mass Storage",
  1529. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1530. 0),
  1531. UNUSUAL_DEV( 0x12d1, 0x1415, 0x0000, 0x0000,
  1532. "HUAWEI MOBILE",
  1533. "Mass Storage",
  1534. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1535. 0),
  1536. UNUSUAL_DEV( 0x12d1, 0x1416, 0x0000, 0x0000,
  1537. "HUAWEI MOBILE",
  1538. "Mass Storage",
  1539. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1540. 0),
  1541. UNUSUAL_DEV( 0x12d1, 0x1417, 0x0000, 0x0000,
  1542. "HUAWEI MOBILE",
  1543. "Mass Storage",
  1544. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1545. 0),
  1546. UNUSUAL_DEV( 0x12d1, 0x1418, 0x0000, 0x0000,
  1547. "HUAWEI MOBILE",
  1548. "Mass Storage",
  1549. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1550. 0),
  1551. UNUSUAL_DEV( 0x12d1, 0x1419, 0x0000, 0x0000,
  1552. "HUAWEI MOBILE",
  1553. "Mass Storage",
  1554. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1555. 0),
  1556. UNUSUAL_DEV( 0x12d1, 0x141A, 0x0000, 0x0000,
  1557. "HUAWEI MOBILE",
  1558. "Mass Storage",
  1559. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1560. 0),
  1561. UNUSUAL_DEV( 0x12d1, 0x141B, 0x0000, 0x0000,
  1562. "HUAWEI MOBILE",
  1563. "Mass Storage",
  1564. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1565. 0),
  1566. UNUSUAL_DEV( 0x12d1, 0x141C, 0x0000, 0x0000,
  1567. "HUAWEI MOBILE",
  1568. "Mass Storage",
  1569. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1570. 0),
  1571. UNUSUAL_DEV( 0x12d1, 0x141D, 0x0000, 0x0000,
  1572. "HUAWEI MOBILE",
  1573. "Mass Storage",
  1574. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1575. 0),
  1576. UNUSUAL_DEV( 0x12d1, 0x141E, 0x0000, 0x0000,
  1577. "HUAWEI MOBILE",
  1578. "Mass Storage",
  1579. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1580. 0),
  1581. UNUSUAL_DEV( 0x12d1, 0x141F, 0x0000, 0x0000,
  1582. "HUAWEI MOBILE",
  1583. "Mass Storage",
  1584. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1585. 0),
  1586. UNUSUAL_DEV( 0x12d1, 0x1420, 0x0000, 0x0000,
  1587. "HUAWEI MOBILE",
  1588. "Mass Storage",
  1589. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1590. 0),
  1591. UNUSUAL_DEV( 0x12d1, 0x1421, 0x0000, 0x0000,
  1592. "HUAWEI MOBILE",
  1593. "Mass Storage",
  1594. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1595. 0),
  1596. UNUSUAL_DEV( 0x12d1, 0x1422, 0x0000, 0x0000,
  1597. "HUAWEI MOBILE",
  1598. "Mass Storage",
  1599. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1600. 0),
  1601. UNUSUAL_DEV( 0x12d1, 0x1423, 0x0000, 0x0000,
  1602. "HUAWEI MOBILE",
  1603. "Mass Storage",
  1604. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1605. 0),
  1606. UNUSUAL_DEV( 0x12d1, 0x1424, 0x0000, 0x0000,
  1607. "HUAWEI MOBILE",
  1608. "Mass Storage",
  1609. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1610. 0),
  1611. UNUSUAL_DEV( 0x12d1, 0x1425, 0x0000, 0x0000,
  1612. "HUAWEI MOBILE",
  1613. "Mass Storage",
  1614. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1615. 0),
  1616. UNUSUAL_DEV( 0x12d1, 0x1426, 0x0000, 0x0000,
  1617. "HUAWEI MOBILE",
  1618. "Mass Storage",
  1619. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1620. 0),
  1621. UNUSUAL_DEV( 0x12d1, 0x1427, 0x0000, 0x0000,
  1622. "HUAWEI MOBILE",
  1623. "Mass Storage",
  1624. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1625. 0),
  1626. UNUSUAL_DEV( 0x12d1, 0x1428, 0x0000, 0x0000,
  1627. "HUAWEI MOBILE",
  1628. "Mass Storage",
  1629. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1630. 0),
  1631. UNUSUAL_DEV( 0x12d1, 0x1429, 0x0000, 0x0000,
  1632. "HUAWEI MOBILE",
  1633. "Mass Storage",
  1634. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1635. 0),
  1636. UNUSUAL_DEV( 0x12d1, 0x142A, 0x0000, 0x0000,
  1637. "HUAWEI MOBILE",
  1638. "Mass Storage",
  1639. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1640. 0),
  1641. UNUSUAL_DEV( 0x12d1, 0x142B, 0x0000, 0x0000,
  1642. "HUAWEI MOBILE",
  1643. "Mass Storage",
  1644. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1645. 0),
  1646. UNUSUAL_DEV( 0x12d1, 0x142C, 0x0000, 0x0000,
  1647. "HUAWEI MOBILE",
  1648. "Mass Storage",
  1649. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1650. 0),
  1651. UNUSUAL_DEV( 0x12d1, 0x142D, 0x0000, 0x0000,
  1652. "HUAWEI MOBILE",
  1653. "Mass Storage",
  1654. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1655. 0),
  1656. UNUSUAL_DEV( 0x12d1, 0x142E, 0x0000, 0x0000,
  1657. "HUAWEI MOBILE",
  1658. "Mass Storage",
  1659. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1660. 0),
  1661. UNUSUAL_DEV( 0x12d1, 0x142F, 0x0000, 0x0000,
  1662. "HUAWEI MOBILE",
  1663. "Mass Storage",
  1664. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1665. 0),
  1666. UNUSUAL_DEV( 0x12d1, 0x1430, 0x0000, 0x0000,
  1667. "HUAWEI MOBILE",
  1668. "Mass Storage",
  1669. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1670. 0),
  1671. UNUSUAL_DEV( 0x12d1, 0x1431, 0x0000, 0x0000,
  1672. "HUAWEI MOBILE",
  1673. "Mass Storage",
  1674. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1675. 0),
  1676. UNUSUAL_DEV( 0x12d1, 0x1432, 0x0000, 0x0000,
  1677. "HUAWEI MOBILE",
  1678. "Mass Storage",
  1679. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1680. 0),
  1681. UNUSUAL_DEV( 0x12d1, 0x1433, 0x0000, 0x0000,
  1682. "HUAWEI MOBILE",
  1683. "Mass Storage",
  1684. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1685. 0),
  1686. UNUSUAL_DEV( 0x12d1, 0x1434, 0x0000, 0x0000,
  1687. "HUAWEI MOBILE",
  1688. "Mass Storage",
  1689. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1690. 0),
  1691. UNUSUAL_DEV( 0x12d1, 0x1435, 0x0000, 0x0000,
  1692. "HUAWEI MOBILE",
  1693. "Mass Storage",
  1694. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1695. 0),
  1696. UNUSUAL_DEV( 0x12d1, 0x1436, 0x0000, 0x0000,
  1697. "HUAWEI MOBILE",
  1698. "Mass Storage",
  1699. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1700. 0),
  1701. UNUSUAL_DEV( 0x12d1, 0x1437, 0x0000, 0x0000,
  1702. "HUAWEI MOBILE",
  1703. "Mass Storage",
  1704. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1705. 0),
  1706. UNUSUAL_DEV( 0x12d1, 0x1438, 0x0000, 0x0000,
  1707. "HUAWEI MOBILE",
  1708. "Mass Storage",
  1709. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1710. 0),
  1711. UNUSUAL_DEV( 0x12d1, 0x1439, 0x0000, 0x0000,
  1712. "HUAWEI MOBILE",
  1713. "Mass Storage",
  1714. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1715. 0),
  1716. UNUSUAL_DEV( 0x12d1, 0x143A, 0x0000, 0x0000,
  1717. "HUAWEI MOBILE",
  1718. "Mass Storage",
  1719. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1720. 0),
  1721. UNUSUAL_DEV( 0x12d1, 0x143B, 0x0000, 0x0000,
  1722. "HUAWEI MOBILE",
  1723. "Mass Storage",
  1724. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1725. 0),
  1726. UNUSUAL_DEV( 0x12d1, 0x143C, 0x0000, 0x0000,
  1727. "HUAWEI MOBILE",
  1728. "Mass Storage",
  1729. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1730. 0),
  1731. UNUSUAL_DEV( 0x12d1, 0x143D, 0x0000, 0x0000,
  1732. "HUAWEI MOBILE",
  1733. "Mass Storage",
  1734. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1735. 0),
  1736. UNUSUAL_DEV( 0x12d1, 0x143E, 0x0000, 0x0000,
  1737. "HUAWEI MOBILE",
  1738. "Mass Storage",
  1739. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1740. 0),
  1741. UNUSUAL_DEV( 0x12d1, 0x143F, 0x0000, 0x0000,
  1742. "HUAWEI MOBILE",
  1743. "Mass Storage",
  1744. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
  1745. 0),
  1746. /* Reported by Vilius Bilinkevicius <vilisas AT xxx DOT lt) */
  1747. UNUSUAL_DEV( 0x132b, 0x000b, 0x0001, 0x0001,
  1748. "Minolta",
  1749. "Dimage Z10",
  1750. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1751. 0 ),
  1752. /* Reported by Kotrla Vitezslav <kotrla@ceb.cz> */
  1753. UNUSUAL_DEV( 0x1370, 0x6828, 0x0110, 0x0110,
  1754. "SWISSBIT",
  1755. "Black Silver",
  1756. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1757. US_FL_IGNORE_RESIDUE ),
  1758. /* Reported by Qinglin Ye <yestyle@gmail.com> */
  1759. UNUSUAL_DEV( 0x13fe, 0x3600, 0x0100, 0x0100,
  1760. "Kingston",
  1761. "DT 101 G2",
  1762. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1763. US_FL_BULK_IGNORE_TAG ),
  1764. /* Reported by Francesco Foresti <frafore@tiscali.it> */
  1765. UNUSUAL_DEV( 0x14cd, 0x6600, 0x0201, 0x0201,
  1766. "Super Top",
  1767. "IDE DEVICE",
  1768. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1769. US_FL_IGNORE_RESIDUE ),
  1770. /* Reported by Michael Büsch <m@bues.ch> */
  1771. UNUSUAL_DEV( 0x152d, 0x0567, 0x0114, 0x0114,
  1772. "JMicron",
  1773. "USB to ATA/ATAPI Bridge",
  1774. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1775. US_FL_BROKEN_FUA ),
  1776. /* Reported by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
  1777. * JMicron responds to USN and several other SCSI ioctls with a
  1778. * residue that causes subsequent I/O requests to fail. */
  1779. UNUSUAL_DEV( 0x152d, 0x2329, 0x0100, 0x0100,
  1780. "JMicron",
  1781. "USB to ATA/ATAPI Bridge",
  1782. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1783. US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ),
  1784. /* Reported by Dmitry Nezhevenko <dion@dion.org.ua> */
  1785. UNUSUAL_DEV( 0x152d, 0x2566, 0x0114, 0x0114,
  1786. "JMicron",
  1787. "USB to ATA/ATAPI Bridge",
  1788. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1789. US_FL_BROKEN_FUA ),
  1790. /* Entrega Technologies U1-SC25 (later Xircom PortGear PGSCSI)
  1791. * and Mac USB Dock USB-SCSI */
  1792. UNUSUAL_DEV( 0x1645, 0x0007, 0x0100, 0x0133,
  1793. "Entrega Technologies",
  1794. "USB to SCSI Converter",
  1795. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  1796. US_FL_SCM_MULT_TARG ),
  1797. /* Reported by Robert Schedel <r.schedel@yahoo.de>
  1798. * Note: this is a 'super top' device like the above 14cd/6600 device */
  1799. UNUSUAL_DEV( 0x1652, 0x6600, 0x0201, 0x0201,
  1800. "Teac",
  1801. "HD-35PUK-B",
  1802. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1803. US_FL_IGNORE_RESIDUE ),
  1804. /* Reported by Oliver Neukum <oneukum@suse.com> */
  1805. UNUSUAL_DEV( 0x174c, 0x55aa, 0x0100, 0x0100,
  1806. "ASMedia",
  1807. "AS2105",
  1808. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1809. US_FL_NEEDS_CAP16),
  1810. /* Reported by Jesse Feddema <jdfeddema@gmail.com> */
  1811. UNUSUAL_DEV( 0x177f, 0x0400, 0x0000, 0x0000,
  1812. "Yarvik",
  1813. "PMP400",
  1814. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1815. US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ),
  1816. UNUSUAL_DEV( 0x1822, 0x0001, 0x0000, 0x9999,
  1817. "Ariston Technologies",
  1818. "iConnect USB to SCSI adapter",
  1819. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  1820. US_FL_SCM_MULT_TARG ),
  1821. /* Reported by Hans de Goede <hdegoede@redhat.com>
  1822. * These Appotech controllers are found in Picture Frames, they provide a
  1823. * (buggy) emulation of a cdrom drive which contains the windows software
  1824. * Uploading of pictures happens over the corresponding /dev/sg device. */
  1825. UNUSUAL_DEV( 0x1908, 0x1315, 0x0000, 0x0000,
  1826. "BUILDWIN",
  1827. "Photo Frame",
  1828. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1829. US_FL_BAD_SENSE ),
  1830. UNUSUAL_DEV( 0x1908, 0x1320, 0x0000, 0x0000,
  1831. "BUILDWIN",
  1832. "Photo Frame",
  1833. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1834. US_FL_BAD_SENSE ),
  1835. UNUSUAL_DEV( 0x1908, 0x3335, 0x0200, 0x0200,
  1836. "BUILDWIN",
  1837. "Photo Frame",
  1838. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1839. US_FL_NO_READ_DISC_INFO ),
  1840. /* Reported by Oliver Neukum <oneukum@suse.com>
  1841. * This device morphes spontaneously into another device if the access
  1842. * pattern of Windows isn't followed. Thus writable media would be dirty
  1843. * if the initial instance is used. So the device is limited to its
  1844. * virtual CD.
  1845. * And yes, the concept that BCD goes up to 9 is not heeded */
  1846. UNUSUAL_DEV( 0x19d2, 0x1225, 0x0000, 0xffff,
  1847. "ZTE,Incorporated",
  1848. "ZTE WCDMA Technologies MSM",
  1849. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1850. US_FL_SINGLE_LUN ),
  1851. /* Reported by Sven Geggus <sven-usbst@geggus.net>
  1852. * This encrypted pen drive returns bogus data for the initial READ(10).
  1853. */
  1854. UNUSUAL_DEV( 0x1b1c, 0x1ab5, 0x0200, 0x0200,
  1855. "Corsair",
  1856. "Padlock v2",
  1857. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1858. US_FL_INITIAL_READ10 ),
  1859. /* Reported by Hans de Goede <hdegoede@redhat.com>
  1860. * These are mini projectors using USB for both power and video data transport
  1861. * The usb-storage interface is a virtual windows driver CD, which the gm12u320
  1862. * driver automatically converts into framebuffer & kms dri device nodes.
  1863. */
  1864. UNUSUAL_DEV( 0x1de1, 0xc102, 0x0000, 0xffff,
  1865. "Grain-media Technology Corp.",
  1866. "USB3.0 Device GM12U320",
  1867. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1868. US_FL_IGNORE_DEVICE ),
  1869. /* Patch by Richard Schütz <r.schtz@t-online.de>
  1870. * This external hard drive enclosure uses a JMicron chip which
  1871. * needs the US_FL_IGNORE_RESIDUE flag to work properly. */
  1872. UNUSUAL_DEV( 0x1e68, 0x001b, 0x0000, 0x0000,
  1873. "TrekStor GmbH & Co. KG",
  1874. "DataStation maxi g.u",
  1875. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1876. US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ),
  1877. /* Reported by Jasper Mackenzie <scarletpimpernal@hotmail.com> */
  1878. UNUSUAL_DEV( 0x1e74, 0x4621, 0x0000, 0x0000,
  1879. "Coby Electronics",
  1880. "MP3 Player",
  1881. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1882. US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ),
  1883. /* Supplied with some Castlewood ORB removable drives */
  1884. UNUSUAL_DEV( 0x2027, 0xa001, 0x0000, 0x9999,
  1885. "Double-H Technology",
  1886. "USB to SCSI Intelligent Cable",
  1887. USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
  1888. US_FL_SCM_MULT_TARG ),
  1889. UNUSUAL_DEV( 0x2116, 0x0320, 0x0001, 0x0001,
  1890. "ST",
  1891. "2A",
  1892. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1893. US_FL_FIX_CAPACITY),
  1894. /* patch submitted by Davide Perini <perini.davide@dpsoftware.org>
  1895. * and Renato Perini <rperini@email.it>
  1896. */
  1897. UNUSUAL_DEV( 0x22b8, 0x3010, 0x0001, 0x0001,
  1898. "Motorola",
  1899. "RAZR V3x",
  1900. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1901. US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ),
  1902. /*
  1903. * Patch by Constantin Baranov <const@tltsu.ru>
  1904. * Report by Andreas Koenecke.
  1905. * Motorola ROKR Z6.
  1906. */
  1907. UNUSUAL_DEV( 0x22b8, 0x6426, 0x0101, 0x0101,
  1908. "Motorola",
  1909. "MSnc.",
  1910. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1911. US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY | US_FL_BULK_IGNORE_TAG),
  1912. /* Reported by Radovan Garabik <garabik@kassiopeia.juls.savba.sk> */
  1913. UNUSUAL_DEV( 0x2735, 0x100b, 0x0000, 0x9999,
  1914. "MPIO",
  1915. "HS200",
  1916. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1917. US_FL_GO_SLOW ),
  1918. /* Reported by Frederic Marchal <frederic.marchal@wowcompany.com>
  1919. * Mio Moov 330
  1920. */
  1921. UNUSUAL_DEV( 0x3340, 0xffff, 0x0000, 0x0000,
  1922. "Mitac",
  1923. "Mio DigiWalker USB Sync",
  1924. USB_SC_DEVICE,USB_PR_DEVICE,NULL,
  1925. US_FL_MAX_SECTORS_64 ),
  1926. /* Reported by Andrey Rahmatullin <wrar@altlinux.org> */
  1927. UNUSUAL_DEV( 0x4102, 0x1020, 0x0100, 0x0100,
  1928. "iRiver",
  1929. "MP3 T10",
  1930. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1931. US_FL_IGNORE_RESIDUE ),
  1932. /* Reported by Sergey Pinaev <dfo@antex.ru> */
  1933. UNUSUAL_DEV( 0x4102, 0x1059, 0x0000, 0x0000,
  1934. "iRiver",
  1935. "P7K",
  1936. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1937. US_FL_MAX_SECTORS_64 ),
  1938. /*
  1939. * David Härdeman <david@2gen.com>
  1940. * The key makes the SCSI stack print confusing (but harmless) messages
  1941. */
  1942. UNUSUAL_DEV( 0x4146, 0xba01, 0x0100, 0x0100,
  1943. "Iomega",
  1944. "Micro Mini 1GB",
  1945. USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ),
  1946. /*
  1947. * Nick Bowler <nbowler@elliptictech.com>
  1948. * SCSI stack spams (otherwise harmless) error messages.
  1949. */
  1950. UNUSUAL_DEV( 0xc251, 0x4003, 0x0100, 0x0100,
  1951. "Keil Software, Inc.",
  1952. "V2M MotherBoard",
  1953. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1954. US_FL_NOT_LOCKABLE),
  1955. /* Reported by Andrew Simmons <andrew.simmons@gmail.com> */
  1956. UNUSUAL_DEV( 0xed06, 0x4500, 0x0001, 0x0001,
  1957. "DataStor",
  1958. "USB4500 FW1.04",
  1959. USB_SC_DEVICE, USB_PR_DEVICE, NULL,
  1960. US_FL_CAPACITY_HEURISTICS),
  1961. /* Reported by Alessio Treglia <quadrispro@ubuntu.com> */
  1962. UNUSUAL_DEV( 0xed10, 0x7636, 0x0001, 0x0001,
  1963. "TGE",
  1964. "Digital MP3 Audio Player",
  1965. USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ),
  1966. /* Unusual uas devices */
  1967. #if IS_ENABLED(CONFIG_USB_UAS)
  1968. #include "unusual_uas.h"
  1969. #endif
  1970. /* Control/Bulk transport for all SubClass values */
  1971. USUAL_DEV(USB_SC_RBC, USB_PR_CB),
  1972. USUAL_DEV(USB_SC_8020, USB_PR_CB),
  1973. USUAL_DEV(USB_SC_QIC, USB_PR_CB),
  1974. USUAL_DEV(USB_SC_UFI, USB_PR_CB),
  1975. USUAL_DEV(USB_SC_8070, USB_PR_CB),
  1976. USUAL_DEV(USB_SC_SCSI, USB_PR_CB),
  1977. /* Control/Bulk/Interrupt transport for all SubClass values */
  1978. USUAL_DEV(USB_SC_RBC, USB_PR_CBI),
  1979. USUAL_DEV(USB_SC_8020, USB_PR_CBI),
  1980. USUAL_DEV(USB_SC_QIC, USB_PR_CBI),
  1981. USUAL_DEV(USB_SC_UFI, USB_PR_CBI),
  1982. USUAL_DEV(USB_SC_8070, USB_PR_CBI),
  1983. USUAL_DEV(USB_SC_SCSI, USB_PR_CBI),
  1984. /* Bulk-only transport for all SubClass values */
  1985. USUAL_DEV(USB_SC_RBC, USB_PR_BULK),
  1986. USUAL_DEV(USB_SC_8020, USB_PR_BULK),
  1987. USUAL_DEV(USB_SC_QIC, USB_PR_BULK),
  1988. USUAL_DEV(USB_SC_UFI, USB_PR_BULK),
  1989. USUAL_DEV(USB_SC_8070, USB_PR_BULK),
  1990. USUAL_DEV(USB_SC_SCSI, USB_PR_BULK),