unusual_devs.h 55 KB

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