unusual_devs.h 68 KB

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