unusual_devs.h 66 KB

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