unusual_devs.h 55 KB

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