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