unusual_devs.h 61 KB

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