unusual_devs.h 59 KB

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