unusual_devs.h 67 KB

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