unusual_devs.h 66 KB

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