1*5fd54aceSGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0+ 2f0183a33SFelipe Balbi /* 3f0183a33SFelipe Balbi * Driver for USB Mass Storage compliant devices 4093cf723SSteven Cole * Unusual Devices File 51da177e4SLinus Torvalds * 61da177e4SLinus Torvalds * Current development and maintenance by: 71da177e4SLinus Torvalds * (c) 2000-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net) 81da177e4SLinus Torvalds * 91da177e4SLinus Torvalds * Initial work by: 101da177e4SLinus Torvalds * (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc. 111da177e4SLinus Torvalds * 121da177e4SLinus Torvalds * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more 131da177e4SLinus Torvalds * information about this driver. 141da177e4SLinus Torvalds * 151da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or modify it 161da177e4SLinus Torvalds * under the terms of the GNU General Public License as published by the 171da177e4SLinus Torvalds * Free Software Foundation; either version 2, or (at your option) any 181da177e4SLinus Torvalds * later version. 191da177e4SLinus Torvalds * 201da177e4SLinus Torvalds * This program is distributed in the hope that it will be useful, but 211da177e4SLinus Torvalds * WITHOUT ANY WARRANTY; without even the implied warranty of 221da177e4SLinus Torvalds * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 231da177e4SLinus Torvalds * General Public License for more details. 241da177e4SLinus Torvalds * 251da177e4SLinus Torvalds * You should have received a copy of the GNU General Public License along 261da177e4SLinus Torvalds * with this program; if not, write to the Free Software Foundation, Inc., 271da177e4SLinus Torvalds * 675 Mass Ave, Cambridge, MA 02139, USA. 281da177e4SLinus Torvalds */ 291da177e4SLinus Torvalds 30f0183a33SFelipe Balbi /* 31f0183a33SFelipe Balbi * IMPORTANT NOTE: This file must be included in another file which does 321da177e4SLinus Torvalds * the following thing for it to work: 3325ff1c31SAlan Stern * The UNUSUAL_DEV, COMPLIANT_DEV, and USUAL_DEV macros must be defined 3425ff1c31SAlan Stern * before this file is included. 351da177e4SLinus Torvalds */ 361da177e4SLinus Torvalds 37f0183a33SFelipe Balbi /* 38f0183a33SFelipe Balbi * If you edit this file, please try to keep it sorted first by VendorID, 391da177e4SLinus Torvalds * then by ProductID. 401da177e4SLinus Torvalds * 411da177e4SLinus Torvalds * If you want to add an entry for this file, be sure to include the 421da177e4SLinus Torvalds * following information: 431da177e4SLinus Torvalds * - a patch that adds the entry for your device, including your 441da177e4SLinus Torvalds * email address right above the entry (plus maybe a brief 451da177e4SLinus Torvalds * explanation of the reason for the entry), 4621470e32SMauro Carvalho Chehab * - a copy of /sys/kernel/debug/usb/devices with your device plugged in 471da177e4SLinus Torvalds * running with this patch. 481da177e4SLinus Torvalds * Send your submission to either Phil Dibowitz <phil@ipom.com> or 491da177e4SLinus Torvalds * Alan Stern <stern@rowland.harvard.edu>, and don't forget to CC: the 50cef03f8fSAndrew Lunn * USB development list <linux-usb@vger.kernel.org> and the USB storage list 51cef03f8fSAndrew Lunn * <usb-storage@lists.one-eyed-alien.net> 521da177e4SLinus Torvalds */ 531da177e4SLinus Torvalds 54f0183a33SFelipe Balbi /* 55f0183a33SFelipe Balbi * Note: If you add an entry only in order to set the CAPACITY_OK flag, 5625ff1c31SAlan Stern * use the COMPLIANT_DEV macro instead of UNUSUAL_DEV. This is 5725ff1c31SAlan Stern * because such entries mark devices which actually work correctly, 5825ff1c31SAlan Stern * as opposed to devices that do something strangely or wrongly. 5925ff1c31SAlan Stern */ 6025ff1c31SAlan Stern 61f0183a33SFelipe Balbi /* 62f0183a33SFelipe Balbi * In-kernel mode switching is deprecated. Do not add new devices to 63fbb8c745SBjørn Mork * this list for the sole purpose of switching them to a different 64fbb8c745SBjørn Mork * mode. Existing userspace solutions are superior. 65fbb8c745SBjørn Mork * 66fbb8c745SBjørn Mork * New mode switching devices should instead be added to the database 67fbb8c745SBjørn Mork * maintained at http://www.draisberghof.de/usb_modeswitch/ 68fbb8c745SBjørn Mork */ 69fbb8c745SBjørn Mork 700ff71883SAlan Stern #if !defined(CONFIG_USB_STORAGE_SDDR09) && \ 710ff71883SAlan Stern !defined(CONFIG_USB_STORAGE_SDDR09_MODULE) 720ff71883SAlan Stern #define NO_SDDR09 730ff71883SAlan Stern #endif 740ff71883SAlan Stern 75f0183a33SFelipe Balbi /* patch submitted by Vivian Bregier <Vivian.Bregier@imag.fr> */ 768af60be9SVivian Bregier UNUSUAL_DEV( 0x03eb, 0x2002, 0x0100, 0x0100, 778af60be9SVivian Bregier "ATMEL", 788af60be9SVivian Bregier "SND1 Storage", 798fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 808af60be9SVivian Bregier US_FL_IGNORE_RESIDUE), 818af60be9SVivian Bregier 829d5847bcSRodolfo Quesada /* Reported by Rodolfo Quesada <rquesada@roqz.net> */ 839d5847bcSRodolfo Quesada UNUSUAL_DEV( 0x03ee, 0x6906, 0x0003, 0x0003, 849d5847bcSRodolfo Quesada "VIA Technologies Inc.", 859d5847bcSRodolfo Quesada "Mitsumi multi cardreader", 868fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 879d5847bcSRodolfo Quesada US_FL_IGNORE_RESIDUE ), 889d5847bcSRodolfo Quesada 891da177e4SLinus Torvalds UNUSUAL_DEV( 0x03f0, 0x0107, 0x0200, 0x0200, 901da177e4SLinus Torvalds "HP", 911da177e4SLinus Torvalds "CD-Writer+", 928fa7fd74SMichal Nazarewicz USB_SC_8070, USB_PR_CB, NULL, 0), 931da177e4SLinus Torvalds 94dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */ 95dbe6e0c0SBen Efros UNUSUAL_DEV( 0x03f0, 0x070c, 0x0000, 0x0000, 96dbe6e0c0SBen Efros "HP", 97dbe6e0c0SBen Efros "Personal Media Drive", 988fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 99dbe6e0c0SBen Efros US_FL_SANE_SENSE ), 100dbe6e0c0SBen Efros 101f0183a33SFelipe Balbi /* 102f0183a33SFelipe Balbi * Reported by Grant Grundler <grundler@parisc-linux.org> 1034b24f91cSGrant Grundler * HP r707 camera in "Disk" mode with 2.00.23 or 2.00.24 firmware. 1044b24f91cSGrant Grundler */ 1054b24f91cSGrant Grundler UNUSUAL_DEV( 0x03f0, 0x4002, 0x0001, 0x0001, 1064b24f91cSGrant Grundler "HP", 1074b24f91cSGrant Grundler "PhotoSmart R707", 1088fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_CAPACITY), 1094b24f91cSGrant Grundler 11067d365a5SMark UNUSUAL_DEV( 0x03f3, 0x0001, 0x0000, 0x9999, 11167d365a5SMark "Adaptec", 11267d365a5SMark "USBConnect 2000", 11367d365a5SMark USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 11467d365a5SMark US_FL_SCM_MULT_TARG ), 11567d365a5SMark 116f0183a33SFelipe Balbi /* 117f0183a33SFelipe Balbi * Reported by Sebastian Kapfer <sebastian_kapfer@gmx.net> 1181ea640ceSPhil Dibowitz * and Olaf Hering <olh@suse.de> (different bcd's, same vendor/product) 1191ea640ceSPhil Dibowitz * for USB floppies that need the SINGLE_LUN enforcement. 1201ea640ceSPhil Dibowitz */ 1211ea640ceSPhil Dibowitz UNUSUAL_DEV( 0x0409, 0x0040, 0x0000, 0x9999, 1221ea640ceSPhil Dibowitz "NEC", 1231ea640ceSPhil Dibowitz "NEC USB UF000x", 1248fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1251ea640ceSPhil Dibowitz US_FL_SINGLE_LUN ), 1261ea640ceSPhil Dibowitz 1273e220e95SPhil Dibowitz /* Patch submitted by Mihnea-Costin Grigore <mihnea@zulu.ro> */ 1283e220e95SPhil Dibowitz UNUSUAL_DEV( 0x040d, 0x6205, 0x0003, 0x0003, 1293e220e95SPhil Dibowitz "VIA Technologies Inc.", 1303e220e95SPhil Dibowitz "USB 2.0 Card Reader", 1318fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1323e220e95SPhil Dibowitz US_FL_IGNORE_RESIDUE ), 1333e220e95SPhil Dibowitz 134f0183a33SFelipe Balbi /* 135f0183a33SFelipe Balbi * Deduced by Jonathan Woithe <jwoithe@just42.net> 1361da177e4SLinus Torvalds * Entry needed for flags: US_FL_FIX_INQUIRY because initial inquiry message 1371da177e4SLinus Torvalds * always fails and confuses drive. 1381da177e4SLinus Torvalds */ 1391da177e4SLinus Torvalds UNUSUAL_DEV( 0x0411, 0x001c, 0x0113, 0x0113, 1401da177e4SLinus Torvalds "Buffalo", 1411da177e4SLinus Torvalds "DUB-P40G HDD", 1428fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1431da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 1441da177e4SLinus Torvalds 145d8840d60SErnis /* Submitted by Ernestas Vaiciukevicius <ernisv@gmail.com> */ 146d8840d60SErnis UNUSUAL_DEV( 0x0419, 0x0100, 0x0100, 0x0100, 147d8840d60SErnis "Samsung Info. Systems America, Inc.", 148d8840d60SErnis "MP3 Player", 1498fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 150d8840d60SErnis US_FL_IGNORE_RESIDUE ), 151d8840d60SErnis 1525501a48cSPhil Dibowitz /* Reported by Orgad Shaneh <orgads@gmail.com> */ 1535501a48cSPhil Dibowitz UNUSUAL_DEV( 0x0419, 0xaace, 0x0100, 0x0100, 1545501a48cSPhil Dibowitz "Samsung", "MP3 Player", 1558fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1565501a48cSPhil Dibowitz US_FL_IGNORE_RESIDUE ), 1575501a48cSPhil Dibowitz 1581d614a4bSAlan Stern /* Reported by Christian Leber <christian@leber.de> */ 1591d614a4bSAlan Stern UNUSUAL_DEV( 0x0419, 0xaaf5, 0x0100, 0x0100, 1601d614a4bSAlan Stern "TrekStor", 1611d614a4bSAlan Stern "i.Beat 115 2.0", 1628fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1631d614a4bSAlan Stern US_FL_IGNORE_RESIDUE | US_FL_NOT_LOCKABLE ), 1641d614a4bSAlan Stern 165e4a16e0cSPhil Dibowitz /* Reported by Stefan Werner <dustbln@gmx.de> */ 166e4a16e0cSPhil Dibowitz UNUSUAL_DEV( 0x0419, 0xaaf6, 0x0100, 0x0100, 167e4a16e0cSPhil Dibowitz "TrekStor", 168e4a16e0cSPhil Dibowitz "i.Beat Joy 2.0", 1698fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 170e4a16e0cSPhil Dibowitz US_FL_IGNORE_RESIDUE ), 171e4a16e0cSPhil Dibowitz 17223b7885dSPete Zaitcev /* Reported by Pete Zaitcev <zaitcev@redhat.com>, bz#176584 */ 17323b7885dSPete Zaitcev UNUSUAL_DEV( 0x0420, 0x0001, 0x0100, 0x0100, 17423b7885dSPete Zaitcev "GENERIC", "MP3 PLAYER", /* MyMusix PD-205 on the outside. */ 1758fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 17623b7885dSPete Zaitcev US_FL_IGNORE_RESIDUE ), 17723b7885dSPete Zaitcev 178f0183a33SFelipe Balbi /* 179f0183a33SFelipe Balbi * Reported by Andrew Nayenko <relan@bk.ru> 1801022ccdbSPhillip Potter * Updated for new firmware by Phillip Potter <phil@philpotter.co.uk> 181f0183a33SFelipe Balbi */ 182031defd1SPhil Dibowitz UNUSUAL_DEV( 0x0421, 0x0019, 0x0592, 0x0610, 1830d8c7aeaSAndrew Nayenko "Nokia", 1840d8c7aeaSAndrew Nayenko "Nokia 6288", 1858fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1860d8c7aeaSAndrew Nayenko US_FL_MAX_SECTORS_64 ), 1870d8c7aeaSAndrew Nayenko 188de1caa47SAlan Stern /* Reported by Mario Rettig <mariorettig@web.de> */ 189de1caa47SAlan Stern UNUSUAL_DEV( 0x0421, 0x042e, 0x0100, 0x0100, 190de1caa47SAlan Stern "Nokia", 191de1caa47SAlan Stern "Nokia 3250", 1928fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 193de1caa47SAlan Stern US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 194de1caa47SAlan Stern 195fe1ec341SAndrew Morton /* Reported by <honkkis@gmail.com> */ 196fe1ec341SAndrew Morton UNUSUAL_DEV( 0x0421, 0x0433, 0x0100, 0x0100, 197fe1ec341SAndrew Morton "Nokia", 198fe1ec341SAndrew Morton "E70", 1998fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 200fe1ec341SAndrew Morton US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 201fe1ec341SAndrew Morton 2027923811aSAlan Stern /* Reported by Jon Hart <Jon.Hart@web.de> */ 2037923811aSAlan Stern UNUSUAL_DEV( 0x0421, 0x0434, 0x0100, 0x0100, 2047923811aSAlan Stern "Nokia", 2057923811aSAlan Stern "E60", 2068fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2077923811aSAlan Stern US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), 2087923811aSAlan Stern 209f0183a33SFelipe Balbi /* 210f0183a33SFelipe Balbi * Reported by Sumedha Swamy <sumedhaswamy@gmail.com> and 211f0183a33SFelipe Balbi * Einar Th. Einarsson <einarthered@gmail.com> 212f0183a33SFelipe Balbi */ 2139a01355eSAlan Stern UNUSUAL_DEV( 0x0421, 0x0444, 0x0100, 0x0100, 2149a01355eSAlan Stern "Nokia", 2159a01355eSAlan Stern "N91", 2168fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2179a01355eSAlan Stern US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 2189a01355eSAlan Stern 219f0183a33SFelipe Balbi /* 220f0183a33SFelipe Balbi * Reported by Jiri Slaby <jirislaby@gmail.com> and 221f0183a33SFelipe Balbi * Rene C. Castberg <Rene@Castberg.org> 222f0183a33SFelipe Balbi */ 223d5681fe8SAlan Stern UNUSUAL_DEV( 0x0421, 0x0446, 0x0100, 0x0100, 224d5681fe8SAlan Stern "Nokia", 225d5681fe8SAlan Stern "N80", 2268fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 227d5681fe8SAlan Stern US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 228d5681fe8SAlan Stern 22957b01b1eSAlan Stern /* Reported by Matthew Bloch <matthew@bytemark.co.uk> */ 23057b01b1eSAlan Stern UNUSUAL_DEV( 0x0421, 0x044e, 0x0100, 0x0100, 23157b01b1eSAlan Stern "Nokia", 23257b01b1eSAlan Stern "E61", 2338fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 23457b01b1eSAlan Stern US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 23557b01b1eSAlan Stern 236e4a20daaSAlan Stern /* Reported by Bardur Arantsson <bardur@scientician.net> */ 237393e5511SAlan Stern UNUSUAL_DEV( 0x0421, 0x047c, 0x0370, 0x0610, 238e4a20daaSAlan Stern "Nokia", 239e4a20daaSAlan Stern "6131", 2408fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 241e4a20daaSAlan Stern US_FL_MAX_SECTORS_64 ), 242e4a20daaSAlan Stern 24339559b4fSManuel Osdoba /* Reported by Manuel Osdoba <manuel.osdoba@tu-ilmenau.de> */ 244716a9c85SMoritz Muehlenhoff UNUSUAL_DEV( 0x0421, 0x0492, 0x0452, 0x9999, 24539559b4fSManuel Osdoba "Nokia", 24639559b4fSManuel Osdoba "Nokia 6233", 2478fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 24839559b4fSManuel Osdoba US_FL_MAX_SECTORS_64 ), 24939559b4fSManuel Osdoba 2503ccf25ceSAlan Stern /* Reported by Alex Corcoles <alex@corcoles.net> */ 2513ccf25ceSAlan Stern UNUSUAL_DEV( 0x0421, 0x0495, 0x0370, 0x0370, 2523ccf25ceSAlan Stern "Nokia", 2533ccf25ceSAlan Stern "6234", 2548fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2553ccf25ceSAlan Stern US_FL_MAX_SECTORS_64 ), 2563ccf25ceSAlan Stern 2576ed07d45SDaniele Forsi /* Reported by Daniele Forsi <dforsi@gmail.com> */ 2586ed07d45SDaniele Forsi UNUSUAL_DEV( 0x0421, 0x04b9, 0x0350, 0x0350, 2596ed07d45SDaniele Forsi "Nokia", 2606ed07d45SDaniele Forsi "5300", 2616ed07d45SDaniele Forsi USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2626ed07d45SDaniele Forsi US_FL_MAX_SECTORS_64 ), 2636ed07d45SDaniele Forsi 264f0ef5d41SVictor A. Santos /* Patch submitted by Victor A. Santos <victoraur.santos@gmail.com> */ 265f0ef5d41SVictor A. Santos UNUSUAL_DEV( 0x0421, 0x05af, 0x0742, 0x0742, 266f0ef5d41SVictor A. Santos "Nokia", 267f0ef5d41SVictor A. Santos "305", 268f0ef5d41SVictor A. Santos USB_SC_DEVICE, USB_PR_DEVICE, NULL, 269f0ef5d41SVictor A. Santos US_FL_MAX_SECTORS_64), 270f0ef5d41SVictor A. Santos 2710e16114fSMikhail Zolotaryov /* Patch submitted by Mikhail Zolotaryov <lebon@lebon.org.ua> */ 2720e16114fSMikhail Zolotaryov UNUSUAL_DEV( 0x0421, 0x06aa, 0x1110, 0x1110, 2730e16114fSMikhail Zolotaryov "Nokia", 2740e16114fSMikhail Zolotaryov "502", 2750e16114fSMikhail Zolotaryov USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2760e16114fSMikhail Zolotaryov US_FL_MAX_SECTORS_64 ), 2770e16114fSMikhail Zolotaryov 2780ff71883SAlan Stern #ifdef NO_SDDR09 279c20b15fdSAlan Stern UNUSUAL_DEV( 0x0436, 0x0005, 0x0100, 0x0100, 280c20b15fdSAlan Stern "Microtech", 281c20b15fdSAlan Stern "CameraMate", 2828fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_CB, NULL, 283c20b15fdSAlan Stern US_FL_SINGLE_LUN ), 2841da177e4SLinus Torvalds #endif 2851da177e4SLinus Torvalds 286f0183a33SFelipe Balbi /* 287f0183a33SFelipe Balbi * Patch submitted by Daniel Drake <dsd@gentoo.org> 288f0183a33SFelipe Balbi * Device reports nonsense bInterfaceProtocol 6 when connected over USB2 289f0183a33SFelipe Balbi */ 29016f05be7SPhil Dibowitz UNUSUAL_DEV( 0x0451, 0x5416, 0x0100, 0x0100, 29116f05be7SPhil Dibowitz "Neuros Audio", 29216f05be7SPhil Dibowitz "USB 2.0 HD 2.5", 2938fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_BULK, NULL, 29416f05be7SPhil Dibowitz US_FL_NEED_OVERRIDE ), 29516f05be7SPhil Dibowitz 296490dce15SPete Zaitcev /* 297490dce15SPete Zaitcev * Pete Zaitcev <zaitcev@yahoo.com>, from Patrick C. F. Ernzer, bz#162559. 298490dce15SPete Zaitcev * The key does not actually break, but it returns zero sense which 299490dce15SPete Zaitcev * makes our SCSI stack to print confusing messages. 300490dce15SPete Zaitcev */ 301490dce15SPete Zaitcev UNUSUAL_DEV( 0x0457, 0x0150, 0x0100, 0x0100, 302490dce15SPete Zaitcev "USBest Technology", /* sold by Transcend */ 303490dce15SPete Zaitcev "USB Mass Storage Device", 3048fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), 305490dce15SPete Zaitcev 30616f05be7SPhil Dibowitz /* 30716f05be7SPhil Dibowitz * Bohdan Linda <bohdan.linda@gmail.com> 30816f05be7SPhil Dibowitz * 1GB USB sticks MyFlash High Speed. I have restricted 30916f05be7SPhil Dibowitz * the revision to my model only 31016f05be7SPhil Dibowitz */ 31116f05be7SPhil Dibowitz UNUSUAL_DEV( 0x0457, 0x0151, 0x0100, 0x0100, 31216f05be7SPhil Dibowitz "USB 2.0", 31316f05be7SPhil Dibowitz "Flash Disk", 3148fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 31516f05be7SPhil Dibowitz US_FL_NOT_LOCKABLE ), 316e1c37b8dSDaniel Drake 317f0183a33SFelipe Balbi /* 318f0183a33SFelipe Balbi * Reported by Tamas Kerecsen <kerecsen@bigfoot.com> 319a6b7b034SAlan Stern * Obviously the PROM has not been customized by the VAR; 320a6b7b034SAlan Stern * the Vendor and Product string descriptors are: 321a6b7b034SAlan Stern * Generic Mass Storage (PROTOTYPE--Remember to change idVendor) 322a6b7b034SAlan Stern * Generic Manufacturer (PROTOTYPE--Remember to change idVendor) 323a6b7b034SAlan Stern */ 324a6b7b034SAlan Stern UNUSUAL_DEV( 0x045e, 0xffff, 0x0000, 0x0000, 325a6b7b034SAlan Stern "Mitac", 326a6b7b034SAlan Stern "GPS", 3278fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 328a6b7b034SAlan Stern US_FL_MAX_SECTORS_64 ), 329a6b7b034SAlan Stern 330379885a9SPete Zaitcev /* 331379885a9SPete Zaitcev * This virtual floppy is found in Sun equipment (x4600, x4200m2, etc.) 332379885a9SPete Zaitcev * Reported by Pete Zaitcev <zaitcev@redhat.com> 333379885a9SPete Zaitcev * This device chokes on both version of MODE SENSE which we have, so 334379885a9SPete Zaitcev * use_10_for_ms is not effective, and we use US_FL_NO_WP_DETECT. 335379885a9SPete Zaitcev */ 336379885a9SPete Zaitcev UNUSUAL_DEV( 0x046b, 0xff40, 0x0100, 0x0100, 337379885a9SPete Zaitcev "AMI", 338379885a9SPete Zaitcev "Virtual Floppy", 3398fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 340379885a9SPete Zaitcev US_FL_NO_WP_DETECT), 341379885a9SPete Zaitcev 342050bc4e8SOliver Neukum /* Reported by Egbert Eich <eich@suse.com> */ 343050bc4e8SOliver Neukum UNUSUAL_DEV( 0x0480, 0xd010, 0x0100, 0x9999, 344050bc4e8SOliver Neukum "Toshiba", 345050bc4e8SOliver Neukum "External USB 3.0", 346050bc4e8SOliver Neukum USB_SC_DEVICE, USB_PR_DEVICE, NULL, 347050bc4e8SOliver Neukum US_FL_ALWAYS_SYNC), 348050bc4e8SOliver Neukum 3491da177e4SLinus Torvalds /* Patch submitted by Philipp Friedrich <philipp@void.at> */ 3501da177e4SLinus Torvalds UNUSUAL_DEV( 0x0482, 0x0100, 0x0100, 0x0100, 3511da177e4SLinus Torvalds "Kyocera", 3521da177e4SLinus Torvalds "Finecam S3x", 3538fa7fd74SMichal Nazarewicz USB_SC_8070, USB_PR_CB, NULL, US_FL_FIX_INQUIRY), 3541da177e4SLinus Torvalds 3551da177e4SLinus Torvalds /* Patch submitted by Philipp Friedrich <philipp@void.at> */ 3561da177e4SLinus Torvalds UNUSUAL_DEV( 0x0482, 0x0101, 0x0100, 0x0100, 3571da177e4SLinus Torvalds "Kyocera", 3581da177e4SLinus Torvalds "Finecam S4", 3598fa7fd74SMichal Nazarewicz USB_SC_8070, USB_PR_CB, NULL, US_FL_FIX_INQUIRY), 3601da177e4SLinus Torvalds 3611da177e4SLinus Torvalds /* Patch submitted by Stephane Galles <stephane.galles@free.fr> */ 3621da177e4SLinus Torvalds UNUSUAL_DEV( 0x0482, 0x0103, 0x0100, 0x0100, 3631da177e4SLinus Torvalds "Kyocera", 3641da177e4SLinus Torvalds "Finecam S5", 3658fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY), 3661da177e4SLinus Torvalds 36774511bb3SJens Taprogge /* Patch submitted by Jens Taprogge <jens.taprogge@taprogge.org> */ 36874511bb3SJens Taprogge UNUSUAL_DEV( 0x0482, 0x0107, 0x0100, 0x0100, 36974511bb3SJens Taprogge "Kyocera", 37074511bb3SJens Taprogge "CONTAX SL300R T*", 3718fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 37274511bb3SJens Taprogge US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE), 37374511bb3SJens Taprogge 374f0183a33SFelipe Balbi /* 375f0183a33SFelipe Balbi * Reported by Paul Stewart <stewart@wetlogic.net> 376f0183a33SFelipe Balbi * This entry is needed because the device reports Sub=ff 377f0183a33SFelipe Balbi */ 3781da177e4SLinus Torvalds UNUSUAL_DEV( 0x04a4, 0x0004, 0x0001, 0x0001, 3791da177e4SLinus Torvalds "Hitachi", 3801da177e4SLinus Torvalds "DVD-CAM DZ-MV100A Camcorder", 3818fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_CB, NULL, US_FL_SINGLE_LUN), 3821da177e4SLinus Torvalds 383f0183a33SFelipe Balbi /* 384f0183a33SFelipe Balbi * BENQ DC5330 385f9dc8f99SAlan Stern * Reported by Manuel Fombuena <mfombuena@ya.com> and 386f0183a33SFelipe Balbi * Frank Copeland <fjc@thingy.apana.org.au> 387f0183a33SFelipe Balbi */ 388f9dc8f99SAlan Stern UNUSUAL_DEV( 0x04a5, 0x3010, 0x0100, 0x0100, 389f9dc8f99SAlan Stern "Tekom Technologies, Inc", 390f9dc8f99SAlan Stern "300_CAMERA", 3918fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 392f9dc8f99SAlan Stern US_FL_IGNORE_RESIDUE ), 393f9dc8f99SAlan Stern 394f0183a33SFelipe Balbi /* 395f0183a33SFelipe Balbi * Patch for Nikon coolpix 2000 396f0183a33SFelipe Balbi * Submitted by Fabien Cosse <fabien.cosse@wanadoo.fr> 397f0183a33SFelipe Balbi */ 39817fa6e55Sfabien COSSE UNUSUAL_DEV( 0x04b0, 0x0301, 0x0010, 0x0010, 39917fa6e55Sfabien COSSE "NIKON", 40017fa6e55Sfabien COSSE "NIKON DSC E2000", 4018fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE,NULL, 40217fa6e55Sfabien COSSE US_FL_NOT_LOCKABLE ), 40317fa6e55Sfabien COSSE 40433abc04fSDoug Maxey /* Reported by Doug Maxey (dwm@austin.ibm.com) */ 40533abc04fSDoug Maxey UNUSUAL_DEV( 0x04b3, 0x4001, 0x0110, 0x0110, 40633abc04fSDoug Maxey "IBM", 40733abc04fSDoug Maxey "IBM RSA2", 4088fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_CB, NULL, 40933abc04fSDoug Maxey US_FL_MAX_SECTORS_MIN), 41033abc04fSDoug Maxey 411f0183a33SFelipe Balbi /* 412f0183a33SFelipe Balbi * Reported by Simon Levitt <simon@whattf.com> 413f0183a33SFelipe Balbi * This entry needs Sub and Proto fields 414f0183a33SFelipe Balbi */ 4151da177e4SLinus Torvalds UNUSUAL_DEV( 0x04b8, 0x0601, 0x0100, 0x0100, 4161da177e4SLinus Torvalds "Epson", 4171da177e4SLinus Torvalds "875DC Storage", 4188fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_CB, NULL, US_FL_FIX_INQUIRY), 4191da177e4SLinus Torvalds 420f0183a33SFelipe Balbi /* 421f0183a33SFelipe Balbi * Reported by Khalid Aziz <khalid@gonehiking.org> 422f0183a33SFelipe Balbi * This entry is needed because the device reports Sub=ff 423f0183a33SFelipe Balbi */ 4241da177e4SLinus Torvalds UNUSUAL_DEV( 0x04b8, 0x0602, 0x0110, 0x0110, 4251da177e4SLinus Torvalds "Epson", 4261da177e4SLinus Torvalds "785EPX Storage", 4278fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_BULK, NULL, US_FL_SINGLE_LUN), 4281da177e4SLinus Torvalds 429f0183a33SFelipe Balbi /* 430f0183a33SFelipe Balbi * Not sure who reported this originally but 4311da177e4SLinus Torvalds * Pavel Machek <pavel@ucw.cz> reported that the extra US_FL_SINGLE_LUN 4321da177e4SLinus Torvalds * flag be added */ 4331da177e4SLinus Torvalds UNUSUAL_DEV( 0x04cb, 0x0100, 0x0000, 0x2210, 4341da177e4SLinus Torvalds "Fujifilm", 4351da177e4SLinus Torvalds "FinePix 1400Zoom", 4368fa7fd74SMichal Nazarewicz USB_SC_UFI, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY | US_FL_SINGLE_LUN), 4371da177e4SLinus Torvalds 438f0183a33SFelipe Balbi /* 439f0183a33SFelipe Balbi * Reported by Ondrej Zary <linux@rainbow-software.org> 440cd0e8aa1SOndrej Zary * The device reports one sector more and breaks when that sector is accessed 441cd0e8aa1SOndrej Zary */ 442cd0e8aa1SOndrej Zary UNUSUAL_DEV( 0x04ce, 0x0002, 0x026c, 0x026c, 443cd0e8aa1SOndrej Zary "ScanLogic", 444cd0e8aa1SOndrej Zary "SL11R-IDE", 4458fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 446cd0e8aa1SOndrej Zary US_FL_FIX_CAPACITY), 447cd0e8aa1SOndrej Zary 448f0183a33SFelipe Balbi /* 449f0183a33SFelipe Balbi * Reported by Kriston Fincher <kriston@airmail.net> 4501da177e4SLinus Torvalds * Patch submitted by Sean Millichamp <sean@bruenor.org> 4511da177e4SLinus Torvalds * This is to support the Panasonic PalmCam PV-SD4090 4521da177e4SLinus Torvalds * This entry is needed because the device reports Sub=ff 4531da177e4SLinus Torvalds */ 4541da177e4SLinus Torvalds UNUSUAL_DEV( 0x04da, 0x0901, 0x0100, 0x0200, 4551da177e4SLinus Torvalds "Panasonic", 4561da177e4SLinus Torvalds "LS-120 Camera", 4578fa7fd74SMichal Nazarewicz USB_SC_UFI, USB_PR_DEVICE, NULL, 0), 4581da177e4SLinus Torvalds 459f0183a33SFelipe Balbi /* 460f0183a33SFelipe Balbi * From Yukihiro Nakai, via zaitcev@yahoo.com. 461f0183a33SFelipe Balbi * This is needed for CB instead of CBI 462f0183a33SFelipe Balbi */ 4631da177e4SLinus Torvalds UNUSUAL_DEV( 0x04da, 0x0d05, 0x0000, 0x0000, 4641da177e4SLinus Torvalds "Sharp CE-CW05", 4651da177e4SLinus Torvalds "CD-R/RW Drive", 4668fa7fd74SMichal Nazarewicz USB_SC_8070, USB_PR_CB, NULL, 0), 4671da177e4SLinus Torvalds 4681da177e4SLinus Torvalds /* Reported by Adriaan Penning <a.penning@luon.net> */ 4691da177e4SLinus Torvalds UNUSUAL_DEV( 0x04da, 0x2372, 0x0000, 0x9999, 4701da177e4SLinus Torvalds "Panasonic", 4711da177e4SLinus Torvalds "DMC-LCx Camera", 4728fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 4731da177e4SLinus Torvalds US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), 4741da177e4SLinus Torvalds 475dcab4eafSSimeon Simeonov /* Reported by Simeon Simeonov <simeonov_2000@yahoo.com> */ 476dcab4eafSSimeon Simeonov UNUSUAL_DEV( 0x04da, 0x2373, 0x0000, 0x9999, 477dcab4eafSSimeon Simeonov "LEICA", 478dcab4eafSSimeon Simeonov "D-LUX Camera", 4798fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 480dcab4eafSSimeon Simeonov US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), 481dcab4eafSSimeon Simeonov 482f0183a33SFelipe Balbi /* 483f0183a33SFelipe Balbi * Most of the following entries were developed with the help of 4841da177e4SLinus Torvalds * Shuttle/SCM directly. 4851da177e4SLinus Torvalds */ 4861da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0001, 0x0200, 0x0200, 4871da177e4SLinus Torvalds "Matshita", 4881da177e4SLinus Torvalds "LS-120", 4898fa7fd74SMichal Nazarewicz USB_SC_8020, USB_PR_CB, NULL, 0), 4901da177e4SLinus Torvalds 4911da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0002, 0x0100, 0x0100, 4921da177e4SLinus Torvalds "Shuttle", 4931da177e4SLinus Torvalds "eUSCSI Bridge", 4948fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 4951da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 4961da177e4SLinus Torvalds 4970ff71883SAlan Stern #ifdef NO_SDDR09 498c20b15fdSAlan Stern UNUSUAL_DEV( 0x04e6, 0x0005, 0x0100, 0x0208, 499c20b15fdSAlan Stern "SCM Microsystems", 500c20b15fdSAlan Stern "eUSB CompactFlash Adapter", 5018fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_CB, NULL, 502c20b15fdSAlan Stern US_FL_SINGLE_LUN), 5031da177e4SLinus Torvalds #endif 5041da177e4SLinus Torvalds 5051da177e4SLinus Torvalds /* Reported by Markus Demleitner <msdemlei@cl.uni-heidelberg.de> */ 5061da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0006, 0x0100, 0x0100, 5071da177e4SLinus Torvalds "SCM Microsystems Inc.", 5081da177e4SLinus Torvalds "eUSB MMC Adapter", 5098fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_CB, NULL, 5101da177e4SLinus Torvalds US_FL_SINGLE_LUN), 5111da177e4SLinus Torvalds 5121da177e4SLinus Torvalds /* Reported by Daniel Nouri <dpunktnpunkt@web.de> */ 5131da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0006, 0x0205, 0x0205, 5141da177e4SLinus Torvalds "Shuttle", 5151da177e4SLinus Torvalds "eUSB MMC Adapter", 5168fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_DEVICE, NULL, 5171da177e4SLinus Torvalds US_FL_SINGLE_LUN), 5181da177e4SLinus Torvalds 5191da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0007, 0x0100, 0x0200, 5201da177e4SLinus Torvalds "Sony", 5211da177e4SLinus Torvalds "Hifd", 5228fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_CB, NULL, 5231da177e4SLinus Torvalds US_FL_SINGLE_LUN), 5241da177e4SLinus Torvalds 5251da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0009, 0x0200, 0x0200, 5261da177e4SLinus Torvalds "Shuttle", 5271da177e4SLinus Torvalds "eUSB ATA/ATAPI Adapter", 5288fa7fd74SMichal Nazarewicz USB_SC_8020, USB_PR_CB, NULL, 0), 5291da177e4SLinus Torvalds 5301da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x000a, 0x0200, 0x0200, 5311da177e4SLinus Torvalds "Shuttle", 5321da177e4SLinus Torvalds "eUSB CompactFlash Adapter", 5338fa7fd74SMichal Nazarewicz USB_SC_8020, USB_PR_CB, NULL, 0), 5341da177e4SLinus Torvalds 5353512e7bfSMark Knibbs UNUSUAL_DEV( 0x04e6, 0x000b, 0x0100, 0x0100, 5361da177e4SLinus Torvalds "Shuttle", 5371da177e4SLinus Torvalds "eUSCSI Bridge", 5388fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init, 5391da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 5401da177e4SLinus Torvalds 5413512e7bfSMark Knibbs UNUSUAL_DEV( 0x04e6, 0x000c, 0x0100, 0x0100, 5421da177e4SLinus Torvalds "Shuttle", 5431da177e4SLinus Torvalds "eUSCSI Bridge", 5448fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init, 5451da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 5461da177e4SLinus Torvalds 5473512e7bfSMark Knibbs UNUSUAL_DEV( 0x04e6, 0x000f, 0x0000, 0x9999, 5483512e7bfSMark Knibbs "SCM Microsystems", 5493512e7bfSMark Knibbs "eUSB SCSI Adapter (Bus Powered)", 550a7a34d02SMark Knibbs USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init, 5513512e7bfSMark Knibbs US_FL_SCM_MULT_TARG ), 5523512e7bfSMark Knibbs 5531da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0101, 0x0200, 0x0200, 5541da177e4SLinus Torvalds "Shuttle", 5551da177e4SLinus Torvalds "CD-RW Device", 5568fa7fd74SMichal Nazarewicz USB_SC_8020, USB_PR_CB, NULL, 0), 5571da177e4SLinus Torvalds 558b28884c1SAlan Stern /* Reported by Dmitry Khlystov <adminimus@gmail.com> */ 559b28884c1SAlan Stern UNUSUAL_DEV( 0x04e8, 0x507c, 0x0220, 0x0220, 560b28884c1SAlan Stern "Samsung", 561b28884c1SAlan Stern "YP-U3", 5628fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 563b28884c1SAlan Stern US_FL_MAX_SECTORS_64), 564b28884c1SAlan Stern 565d73a9b30SVitaly Kuznetsov /* Reported by Vitaly Kuznetsov <vitty@altlinux.ru> */ 566d73a9b30SVitaly Kuznetsov UNUSUAL_DEV( 0x04e8, 0x5122, 0x0000, 0x9999, 567d73a9b30SVitaly Kuznetsov "Samsung", 568d73a9b30SVitaly Kuznetsov "YP-CP3", 569d73a9b30SVitaly Kuznetsov USB_SC_DEVICE, USB_PR_DEVICE, NULL, 570d73a9b30SVitaly Kuznetsov US_FL_MAX_SECTORS_64 | US_FL_BULK_IGNORE_TAG), 571d73a9b30SVitaly Kuznetsov 57229f86e66SDmitry Artamonow /* Added by Dmitry Artamonow <mad_soft@inbox.ru> */ 57329f86e66SDmitry Artamonow UNUSUAL_DEV( 0x04e8, 0x5136, 0x0000, 0x9999, 57429f86e66SDmitry Artamonow "Samsung", 57529f86e66SDmitry Artamonow "YP-Z3", 57629f86e66SDmitry Artamonow USB_SC_DEVICE, USB_PR_DEVICE, NULL, 57729f86e66SDmitry Artamonow US_FL_MAX_SECTORS_64), 57829f86e66SDmitry Artamonow 579f0183a33SFelipe Balbi /* 580f0183a33SFelipe Balbi * Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. 581ed3e8fcaSPhil Dibowitz * Device uses standards-violating 32-byte Bulk Command Block Wrappers and 582ed3e8fcaSPhil Dibowitz * reports itself as "Proprietary SCSI Bulk." Cf. device entry 0x084d:0x0011. 583ed3e8fcaSPhil Dibowitz */ 584ed3e8fcaSPhil Dibowitz UNUSUAL_DEV( 0x04fc, 0x80c2, 0x0100, 0x0100, 585ed3e8fcaSPhil Dibowitz "Kobian Mercury", 586ed3e8fcaSPhil Dibowitz "Binocam DCB-132", 5878fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 588ed3e8fcaSPhil Dibowitz US_FL_BULK32), 589ed3e8fcaSPhil Dibowitz 5901da177e4SLinus Torvalds /* Reported by Bob Sass <rls@vectordb.com> -- only rev 1.33 tested */ 5911da177e4SLinus Torvalds UNUSUAL_DEV( 0x050d, 0x0115, 0x0133, 0x0133, 5921da177e4SLinus Torvalds "Belkin", 5931da177e4SLinus Torvalds "USB SCSI Adaptor", 5948fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init, 5951da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 5961da177e4SLinus Torvalds 597f0183a33SFelipe Balbi /* 598f0183a33SFelipe Balbi * Iomega Clik! Drive 5991da177e4SLinus Torvalds * Reported by David Chatenay <dchatenay@hotmail.com> 6001da177e4SLinus Torvalds * The reason this is needed is not fully known. 6011da177e4SLinus Torvalds */ 6021da177e4SLinus Torvalds UNUSUAL_DEV( 0x0525, 0xa140, 0x0100, 0x0100, 6031da177e4SLinus Torvalds "Iomega", 6041da177e4SLinus Torvalds "USB Clik! 40", 6058fa7fd74SMichal Nazarewicz USB_SC_8070, USB_PR_DEVICE, NULL, 6061da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 6071da177e4SLinus Torvalds 60825ff1c31SAlan Stern /* Added by Alan Stern <stern@rowland.harvard.edu> */ 60925ff1c31SAlan Stern COMPLIANT_DEV(0x0525, 0xa4a5, 0x0000, 0x9999, 61025ff1c31SAlan Stern "Linux", 61125ff1c31SAlan Stern "File-backed Storage Gadget", 6128fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 61325ff1c31SAlan Stern US_FL_CAPACITY_OK ), 61425ff1c31SAlan Stern 615f0183a33SFelipe Balbi /* 616f0183a33SFelipe Balbi * Yakumo Mega Image 37 6171da177e4SLinus Torvalds * Submitted by Stephan Fuhrmann <atomenergie@t-online.de> */ 6181da177e4SLinus Torvalds UNUSUAL_DEV( 0x052b, 0x1801, 0x0100, 0x0100, 6191da177e4SLinus Torvalds "Tekom Technologies, Inc", 6201da177e4SLinus Torvalds "300_CAMERA", 6218fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 6221da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 6231da177e4SLinus Torvalds 624f0183a33SFelipe Balbi /* 625f0183a33SFelipe Balbi * Another Yakumo camera. 626f0183a33SFelipe Balbi * Reported by Michele Alzetta <michele.alzetta@aliceposta.it> 627f0183a33SFelipe Balbi */ 6281da177e4SLinus Torvalds UNUSUAL_DEV( 0x052b, 0x1804, 0x0100, 0x0100, 6291da177e4SLinus Torvalds "Tekom Technologies, Inc", 6301da177e4SLinus Torvalds "300_CAMERA", 6318fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 6321da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 6331da177e4SLinus Torvalds 6341da177e4SLinus Torvalds /* Reported by Iacopo Spalletti <avvisi@spalletti.it> */ 6351da177e4SLinus Torvalds UNUSUAL_DEV( 0x052b, 0x1807, 0x0100, 0x0100, 6361da177e4SLinus Torvalds "Tekom Technologies, Inc", 6371da177e4SLinus Torvalds "300_CAMERA", 6388fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 6391da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 6401da177e4SLinus Torvalds 641f0183a33SFelipe Balbi /* 642f0183a33SFelipe Balbi * Yakumo Mega Image 47 643f0183a33SFelipe Balbi * Reported by Bjoern Paetzel <kolrabi@kolrabi.de> 644f0183a33SFelipe Balbi */ 6451da177e4SLinus Torvalds UNUSUAL_DEV( 0x052b, 0x1905, 0x0100, 0x0100, 6461da177e4SLinus Torvalds "Tekom Technologies, Inc", 6471da177e4SLinus Torvalds "400_CAMERA", 6488fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 6491da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 6501da177e4SLinus Torvalds 651f0183a33SFelipe Balbi /* 652f0183a33SFelipe Balbi * Reported by Paul Ortyl <ortylp@3miasto.net> 653f0183a33SFelipe Balbi * Note that it's similar to the device above, only different prodID 654f0183a33SFelipe Balbi */ 6551da177e4SLinus Torvalds UNUSUAL_DEV( 0x052b, 0x1911, 0x0100, 0x0100, 6561da177e4SLinus Torvalds "Tekom Technologies, Inc", 6571da177e4SLinus Torvalds "400_CAMERA", 6588fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 6591da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 6601da177e4SLinus Torvalds 6611da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x0010, 0x0106, 0x0450, 6621da177e4SLinus Torvalds "Sony", 6631da177e4SLinus Torvalds "DSC-S30/S70/S75/505V/F505/F707/F717/P8", 6648fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_DEVICE, NULL, 6651da177e4SLinus Torvalds US_FL_SINGLE_LUN | US_FL_NOT_LOCKABLE | US_FL_NO_WP_DETECT ), 6661da177e4SLinus Torvalds 667f0183a33SFelipe Balbi /* 668f0183a33SFelipe Balbi * Submitted by Lars Jacob <jacob.lars@googlemail.com> 669f0183a33SFelipe Balbi * This entry is needed because the device reports Sub=ff 670f0183a33SFelipe Balbi */ 6717e3bd120SLars Jacob UNUSUAL_DEV( 0x054c, 0x0010, 0x0500, 0x0610, 6721da177e4SLinus Torvalds "Sony", 6737e3bd120SLars Jacob "DSC-T1/T5/H5", 6748fa7fd74SMichal Nazarewicz USB_SC_8070, USB_PR_DEVICE, NULL, 6751da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6761da177e4SLinus Torvalds 6771da177e4SLinus Torvalds 6781da177e4SLinus Torvalds /* Reported by wim@geeks.nl */ 6791da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x0025, 0x0100, 0x0100, 6801da177e4SLinus Torvalds "Sony", 6811da177e4SLinus Torvalds "Memorystick NW-MS7", 6828fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 6831da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6841da177e4SLinus Torvalds 6851da177e4SLinus Torvalds /* Submitted by Olaf Hering, <olh@suse.de> SuSE Bugzilla #49049 */ 68620b2e28fSLuiz Fernando N. Capitulino UNUSUAL_DEV( 0x054c, 0x002c, 0x0501, 0x2000, 6871da177e4SLinus Torvalds "Sony", 6881da177e4SLinus Torvalds "USB Floppy Drive", 6898fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 6901da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6911da177e4SLinus Torvalds 6921da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x002d, 0x0100, 0x0100, 6931da177e4SLinus Torvalds "Sony", 6941da177e4SLinus Torvalds "Memorystick MSAC-US1", 6958fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 6961da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6971da177e4SLinus Torvalds 6981da177e4SLinus Torvalds /* Submitted by Klaus Mueller <k.mueller@intershop.de> */ 6991da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x002e, 0x0106, 0x0310, 7001da177e4SLinus Torvalds "Sony", 7011da177e4SLinus Torvalds "Handycam", 7028fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_DEVICE, NULL, 7031da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 7041da177e4SLinus Torvalds 7051da177e4SLinus Torvalds /* Submitted by Rajesh Kumble Nayak <nayak@obs-nice.fr> */ 7061da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x002e, 0x0500, 0x0500, 7071da177e4SLinus Torvalds "Sony", 7081da177e4SLinus Torvalds "Handycam HC-85", 7098fa7fd74SMichal Nazarewicz USB_SC_UFI, USB_PR_DEVICE, NULL, 7101da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 7111da177e4SLinus Torvalds 7121da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x0032, 0x0000, 0x9999, 7131da177e4SLinus Torvalds "Sony", 7141da177e4SLinus Torvalds "Memorystick MSC-U01N", 7158fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 7161da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 7171da177e4SLinus Torvalds 7181da177e4SLinus Torvalds /* Submitted by Michal Mlotek <mlotek@foobar.pl> */ 7191da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x0058, 0x0000, 0x9999, 7201da177e4SLinus Torvalds "Sony", 7211da177e4SLinus Torvalds "PEG N760c Memorystick", 7228fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 7231da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 7241da177e4SLinus Torvalds 7251da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x0069, 0x0000, 0x9999, 7261da177e4SLinus Torvalds "Sony", 7271da177e4SLinus Torvalds "Memorystick MSC-U03", 7288fa7fd74SMichal Nazarewicz USB_SC_UFI, USB_PR_CB, NULL, 7291da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 7301da177e4SLinus Torvalds 7311da177e4SLinus Torvalds /* Submitted by Nathan Babb <nathan@lexi.com> */ 7321da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x006d, 0x0000, 0x9999, 7331da177e4SLinus Torvalds "Sony", 7341da177e4SLinus Torvalds "PEG Mass Storage", 7358fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 7361da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 7371da177e4SLinus Torvalds 738f9dc8f99SAlan Stern /* Submitted by Frank Engel <frankie@cse.unsw.edu.au> */ 739f9dc8f99SAlan Stern UNUSUAL_DEV( 0x054c, 0x0099, 0x0000, 0x9999, 7401da177e4SLinus Torvalds "Sony", 7411da177e4SLinus Torvalds "PEG Mass Storage", 7428fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 7431da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 7441da177e4SLinus Torvalds 745f9dc8f99SAlan Stern /* Submitted by Mike Alborn <malborn@deandra.homeip.net> */ 746f9dc8f99SAlan Stern UNUSUAL_DEV( 0x054c, 0x016a, 0x0000, 0x9999, 7471da177e4SLinus Torvalds "Sony", 7481da177e4SLinus Torvalds "PEG Mass Storage", 7498fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 7501da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 7511da177e4SLinus Torvalds 752e7a6121fSRen Bigcren /* Submitted by Ren Bigcren <bigcren.ren@sonymobile.com> */ 753e7a6121fSRen Bigcren UNUSUAL_DEV( 0x054c, 0x02a5, 0x0100, 0x0100, 754e7a6121fSRen Bigcren "Sony Corp.", 755e7a6121fSRen Bigcren "MicroVault Flash Drive", 756e7a6121fSRen Bigcren USB_SC_DEVICE, USB_PR_DEVICE, NULL, 757e7a6121fSRen Bigcren US_FL_NO_READ_CAPACITY_16 ), 758e7a6121fSRen Bigcren 759082fdd12Sjuergen.mell@t-online.de /* floppy reports multiple luns */ 760082fdd12Sjuergen.mell@t-online.de UNUSUAL_DEV( 0x055d, 0x2020, 0x0000, 0x0210, 761082fdd12Sjuergen.mell@t-online.de "SAMSUNG", 762082fdd12Sjuergen.mell@t-online.de "SFD-321U [FW 0C]", 7638fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 764082fdd12Sjuergen.mell@t-online.de US_FL_SINGLE_LUN ), 765082fdd12Sjuergen.mell@t-online.de 766fd4f3a93SPete Zaitcev /* We keep this entry to force the transport; firmware 3.00 and later is ok. */ 7671da177e4SLinus Torvalds UNUSUAL_DEV( 0x057b, 0x0000, 0x0000, 0x0299, 7681da177e4SLinus Torvalds "Y-E Data", 7691da177e4SLinus Torvalds "Flashbuster-U", 7708fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_CB, NULL, 7711da177e4SLinus Torvalds US_FL_SINGLE_LUN), 7721da177e4SLinus Torvalds 773f0183a33SFelipe Balbi /* 774f0183a33SFelipe Balbi * Reported by Johann Cardon <johann.cardon@free.fr> 7751da177e4SLinus Torvalds * This entry is needed only because the device reports 7761da177e4SLinus Torvalds * bInterfaceClass = 0xff (vendor-specific) 7771da177e4SLinus Torvalds */ 7781da177e4SLinus Torvalds UNUSUAL_DEV( 0x057b, 0x0022, 0x0000, 0x9999, 7791da177e4SLinus Torvalds "Y-E Data", 7801da177e4SLinus Torvalds "Silicon Media R/W", 7818fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 0), 7821da177e4SLinus Torvalds 783f1e8de0dSAlan Stern /* Reported by RTE <raszilki@yandex.ru> */ 784f1e8de0dSAlan Stern UNUSUAL_DEV( 0x058f, 0x6387, 0x0141, 0x0141, 785f1e8de0dSAlan Stern "JetFlash", 786f1e8de0dSAlan Stern "TS1GJF2A/120", 7878fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 788f1e8de0dSAlan Stern US_FL_MAX_SECTORS_64 ), 789f1e8de0dSAlan Stern 7901da177e4SLinus Torvalds /* Fabrizio Fellini <fello@libero.it> */ 7911da177e4SLinus Torvalds UNUSUAL_DEV( 0x0595, 0x4343, 0x0000, 0x2210, 7921da177e4SLinus Torvalds "Fujifilm", 7931da177e4SLinus Torvalds "Digital Camera EX-20 DSC", 7948fa7fd74SMichal Nazarewicz USB_SC_8070, USB_PR_DEVICE, NULL, 0 ), 7951da177e4SLinus Torvalds 796f0183a33SFelipe Balbi /* 797f0183a33SFelipe Balbi * Reported by Andre Welter <a.r.welter@gmx.de> 798a462549bSAlan Stern * This antique device predates the release of the Bulk-only Transport 799a462549bSAlan Stern * spec, and if it gets a Get-Max-LUN then it requires the host to do a 800a462549bSAlan Stern * Clear-Halt on the bulk endpoints. The SINGLE_LUN flag will prevent 801a462549bSAlan Stern * us from sending the request. 802a462549bSAlan Stern */ 803a462549bSAlan Stern UNUSUAL_DEV( 0x059b, 0x0001, 0x0100, 0x0100, 804a462549bSAlan Stern "Iomega", 805a462549bSAlan Stern "ZIP 100", 8068fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 807a462549bSAlan Stern US_FL_SINGLE_LUN ), 808a462549bSAlan Stern 809c66f1c62SMark UNUSUAL_DEV( 0x059b, 0x0040, 0x0100, 0x0100, 810c66f1c62SMark "Iomega", 811c66f1c62SMark "Jaz USB Adapter", 812c66f1c62SMark USB_SC_DEVICE, USB_PR_DEVICE, NULL, 813c66f1c62SMark US_FL_SINGLE_LUN ), 814c66f1c62SMark 815b97b196cSAlan Stern /* Reported by <Hendryk.Pfeiffer@gmx.de> */ 816b97b196cSAlan Stern UNUSUAL_DEV( 0x059f, 0x0643, 0x0000, 0x0000, 817b97b196cSAlan Stern "LaCie", 818b97b196cSAlan Stern "DVD+-RW", 8198fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 820b97b196cSAlan Stern US_FL_GO_SLOW ), 821b97b196cSAlan Stern 82217211509SHans de Goede /* Reported by Christian Schaller <cschalle@redhat.com> */ 82317211509SHans de Goede UNUSUAL_DEV( 0x059f, 0x0651, 0x0000, 0x0000, 82417211509SHans de Goede "LaCie", 82517211509SHans de Goede "External HDD", 82617211509SHans de Goede USB_SC_DEVICE, USB_PR_DEVICE, NULL, 82717211509SHans de Goede US_FL_NO_WP_DETECT ), 82817211509SHans de Goede 829f0183a33SFelipe Balbi /* 830f0183a33SFelipe Balbi * Submitted by Joel Bourquard <numlock@freesurf.ch> 8311da177e4SLinus Torvalds * Some versions of this device need the SubClass and Protocol overrides 8321da177e4SLinus Torvalds * while others don't. 8331da177e4SLinus Torvalds */ 8341da177e4SLinus Torvalds UNUSUAL_DEV( 0x05ab, 0x0060, 0x1104, 0x1110, 8351da177e4SLinus Torvalds "In-System", 8361da177e4SLinus Torvalds "PyroGate External CD-ROM Enclosure (FCD-523)", 8378fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_BULK, NULL, 8381da177e4SLinus Torvalds US_FL_NEED_OVERRIDE ), 8391da177e4SLinus Torvalds 840f0183a33SFelipe Balbi /* 841f0183a33SFelipe Balbi * Submitted by Sven Anderson <sven-linux@anderson.de> 84235f4a0c4SSven Anderson * There are at least four ProductIDs used for iPods, so I added 0x1202 and 84335f4a0c4SSven Anderson * 0x1204. They just need the US_FL_FIX_CAPACITY. As the bcdDevice appears 84435f4a0c4SSven Anderson * to change with firmware updates, I changed the range to maximum for all 84535f4a0c4SSven Anderson * iPod entries. 84635f4a0c4SSven Anderson */ 84735f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1202, 0x0000, 0x9999, 8481da177e4SLinus Torvalds "Apple", 8491da177e4SLinus Torvalds "iPod", 8508fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 8511da177e4SLinus Torvalds US_FL_FIX_CAPACITY ), 8521da177e4SLinus Torvalds 85335f4a0c4SSven Anderson /* Reported by Avi Kivity <avi@argo.co.il> */ 85435f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1203, 0x0000, 0x9999, 85535f4a0c4SSven Anderson "Apple", 85635f4a0c4SSven Anderson "iPod", 8578fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 85835f4a0c4SSven Anderson US_FL_FIX_CAPACITY ), 85935f4a0c4SSven Anderson 86035f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1204, 0x0000, 0x9999, 86135f4a0c4SSven Anderson "Apple", 86235f4a0c4SSven Anderson "iPod", 8638fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 864ad1428c9SPete Zaitcev US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), 86535f4a0c4SSven Anderson 86635f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1205, 0x0000, 0x9999, 8671da177e4SLinus Torvalds "Apple", 8681da177e4SLinus Torvalds "iPod", 8698fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 8701da177e4SLinus Torvalds US_FL_FIX_CAPACITY ), 8711da177e4SLinus Torvalds 872880a9b5eSPhil Dibowitz /* 873880a9b5eSPhil Dibowitz * Reported by Tyson Vinson <lornoss@gmail.com> 874880a9b5eSPhil Dibowitz * This particular productId is the iPod Nano 875880a9b5eSPhil Dibowitz */ 876880a9b5eSPhil Dibowitz UNUSUAL_DEV( 0x05ac, 0x120a, 0x0000, 0x9999, 877880a9b5eSPhil Dibowitz "Apple", 878880a9b5eSPhil Dibowitz "iPod", 8798fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 880880a9b5eSPhil Dibowitz US_FL_FIX_CAPACITY ), 881880a9b5eSPhil Dibowitz 882f0183a33SFelipe Balbi /* 883f0183a33SFelipe Balbi * Reported by Dan Williams <dcbw@redhat.com> 884281b064fSDan Williams * Option N.V. mobile broadband modems 885281b064fSDan Williams * Ignore driver CD mode and force into modem mode by default. 886281b064fSDan Williams */ 887281b064fSDan Williams 888281b064fSDan Williams /* Globetrotter HSDPA; mass storage shows up as Qualcomm for vendor */ 889281b064fSDan Williams UNUSUAL_DEV( 0x05c6, 0x1000, 0x0000, 0x9999, 890281b064fSDan Williams "Option N.V.", 891281b064fSDan Williams "Mass Storage", 8928fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init, 893281b064fSDan Williams 0), 894281b064fSDan Williams 8951da177e4SLinus Torvalds /* Reported by Blake Matheny <bmatheny@purdue.edu> */ 8961da177e4SLinus Torvalds UNUSUAL_DEV( 0x05dc, 0xb002, 0x0000, 0x0113, 8971da177e4SLinus Torvalds "Lexar", 8981da177e4SLinus Torvalds "USB CF Reader", 8998fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 9001da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 9011da177e4SLinus Torvalds 902f0183a33SFelipe Balbi /* 903f0183a33SFelipe Balbi * The following two entries are for a Genesys USB to IDE 9041da177e4SLinus Torvalds * converter chip, but it changes its ProductId depending 9051da177e4SLinus Torvalds * on whether or not a disk or an optical device is enclosed 9061da177e4SLinus Torvalds * They were originally reported by Alexander Oltu 9071da177e4SLinus Torvalds * <alexander@all-2.com> and Peter Marks <peter.marks@turner.com> 9081da177e4SLinus Torvalds * respectively. 909883d989aSPhil Dibowitz * 910883d989aSPhil Dibowitz * US_FL_GO_SLOW and US_FL_MAX_SECTORS_64 added by Phil Dibowitz 911883d989aSPhil Dibowitz * <phil@ipom.com> as these flags were made and hard-coded 912883d989aSPhil Dibowitz * special-cases were pulled from scsiglue.c. 9131da177e4SLinus Torvalds */ 9141da177e4SLinus Torvalds UNUSUAL_DEV( 0x05e3, 0x0701, 0x0000, 0xffff, 9151da177e4SLinus Torvalds "Genesys Logic", 9161da177e4SLinus Torvalds "USB to IDE Optical", 9178fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 9185126a267SAlan Stern US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 | US_FL_IGNORE_RESIDUE ), 9191da177e4SLinus Torvalds 9201da177e4SLinus Torvalds UNUSUAL_DEV( 0x05e3, 0x0702, 0x0000, 0xffff, 9211da177e4SLinus Torvalds "Genesys Logic", 9221da177e4SLinus Torvalds "USB to IDE Disk", 9238fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 9245126a267SAlan Stern US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 | US_FL_IGNORE_RESIDUE ), 9251da177e4SLinus Torvalds 926dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */ 927dbe6e0c0SBen Efros UNUSUAL_DEV( 0x05e3, 0x0723, 0x9451, 0x9451, 928dbe6e0c0SBen Efros "Genesys Logic", 929dbe6e0c0SBen Efros "USB to SATA", 9308fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 931dbe6e0c0SBen Efros US_FL_SANE_SENSE ), 932dbe6e0c0SBen Efros 933f0183a33SFelipe Balbi /* 934f0183a33SFelipe Balbi * Reported by Hanno Boeck <hanno@gmx.de> 935f0183a33SFelipe Balbi * Taken from the Lycoris Kernel 936f0183a33SFelipe Balbi */ 9371da177e4SLinus Torvalds UNUSUAL_DEV( 0x0636, 0x0003, 0x0000, 0x9999, 9381da177e4SLinus Torvalds "Vivitar", 9391da177e4SLinus Torvalds "Vivicam 35Xx", 9408fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_BULK, NULL, 9411da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 9421da177e4SLinus Torvalds 9431da177e4SLinus Torvalds UNUSUAL_DEV( 0x0644, 0x0000, 0x0100, 0x0100, 9441da177e4SLinus Torvalds "TEAC", 9451da177e4SLinus Torvalds "Floppy Drive", 9468fa7fd74SMichal Nazarewicz USB_SC_UFI, USB_PR_CB, NULL, 0 ), 9471da177e4SLinus Torvalds 9481da177e4SLinus Torvalds /* Reported by Darsen Lu <darsen@micro.ee.nthu.edu.tw> */ 9491da177e4SLinus Torvalds UNUSUAL_DEV( 0x066f, 0x8000, 0x0001, 0x0001, 9501da177e4SLinus Torvalds "SigmaTel", 9511da177e4SLinus Torvalds "USBMSC Audio Player", 9528fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 9531da177e4SLinus Torvalds US_FL_FIX_CAPACITY ), 9541da177e4SLinus Torvalds 955a0bb1081SAlan Stern /* Reported by Daniel Kukula <daniel.kuku@gmail.com> */ 956a0bb1081SAlan Stern UNUSUAL_DEV( 0x067b, 0x1063, 0x0100, 0x0100, 957a0bb1081SAlan Stern "Prolific Technology, Inc.", 958a0bb1081SAlan Stern "Prolific Storage Gadget", 9598fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 960a0bb1081SAlan Stern US_FL_BAD_SENSE ), 961a0bb1081SAlan Stern 962c15e3ca1SRogerio Brito /* Reported by Rogerio Brito <rbrito@ime.usp.br> */ 963c15e3ca1SRogerio Brito UNUSUAL_DEV( 0x067b, 0x2317, 0x0001, 0x001, 964c15e3ca1SRogerio Brito "Prolific Technology, Inc.", 965c15e3ca1SRogerio Brito "Mass Storage Device", 9668fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 967c15e3ca1SRogerio Brito US_FL_NOT_LOCKABLE ), 968c15e3ca1SRogerio Brito 9691da177e4SLinus Torvalds /* Reported by Richard -=[]=- <micro_flyer@hotmail.com> */ 970f0183a33SFelipe Balbi /* 971f0183a33SFelipe Balbi * Change to bcdDeviceMin (0x0100 to 0x0001) reported by 972f0183a33SFelipe Balbi * Thomas Bartosik <tbartdev@gmx-topmail.de> 973f0183a33SFelipe Balbi */ 9748a0845c5SThomas Bartosik UNUSUAL_DEV( 0x067b, 0x2507, 0x0001, 0x0100, 9751da177e4SLinus Torvalds "Prolific Technology Inc.", 9761da177e4SLinus Torvalds "Mass Storage Device", 9778fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 9781da177e4SLinus Torvalds US_FL_FIX_CAPACITY | US_FL_GO_SLOW ), 9791da177e4SLinus Torvalds 9801da177e4SLinus Torvalds /* Reported by Alex Butcher <alex.butcher@assursys.co.uk> */ 981b1636399SOliver Neukum UNUSUAL_DEV( 0x067b, 0x3507, 0x0001, 0x0101, 9821da177e4SLinus Torvalds "Prolific Technology Inc.", 9831da177e4SLinus Torvalds "ATAPI-6 Bridge Controller", 9848fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 9851da177e4SLinus Torvalds US_FL_FIX_CAPACITY | US_FL_GO_SLOW ), 9861da177e4SLinus Torvalds 9871da177e4SLinus Torvalds /* Submitted by Benny Sjostrand <benny@hostmobility.com> */ 9881da177e4SLinus Torvalds UNUSUAL_DEV( 0x0686, 0x4011, 0x0001, 0x0001, 9891da177e4SLinus Torvalds "Minolta", 9901da177e4SLinus Torvalds "Dimage F300", 9918fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_BULK, NULL, 0 ), 9921da177e4SLinus Torvalds 9931da177e4SLinus Torvalds /* Reported by Miguel A. Fosas <amn3s1a@ono.com> */ 9941da177e4SLinus Torvalds UNUSUAL_DEV( 0x0686, 0x4017, 0x0001, 0x0001, 9951da177e4SLinus Torvalds "Minolta", 9961da177e4SLinus Torvalds "DIMAGE E223", 9978fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_DEVICE, NULL, 0 ), 9981da177e4SLinus Torvalds 9991da177e4SLinus Torvalds UNUSUAL_DEV( 0x0693, 0x0005, 0x0100, 0x0100, 10001da177e4SLinus Torvalds "Hagiwara", 10011da177e4SLinus Torvalds "Flashgate", 10028fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_BULK, NULL, 0 ), 10031da177e4SLinus Torvalds 1004754501b3SAlan Stern /* Reported by David Hamilton <niftimusmaximus@lycos.com> */ 1005754501b3SAlan Stern UNUSUAL_DEV( 0x069b, 0x3004, 0x0001, 0x0001, 1006754501b3SAlan Stern "Thomson Multimedia Inc.", 1007754501b3SAlan Stern "RCA RD1080 MP3 Player", 10088fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1009754501b3SAlan Stern US_FL_FIX_CAPACITY ), 1010754501b3SAlan Stern 1011a7e69ddbSMark UNUSUAL_DEV( 0x06ca, 0x2003, 0x0100, 0x0100, 1012a7e69ddbSMark "Newer Technology", 1013a7e69ddbSMark "uSCSI", 1014a7e69ddbSMark USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 1015a7e69ddbSMark US_FL_SCM_MULT_TARG ), 1016a7e69ddbSMark 1017fe1926a0SAlan Stern /* Reported by Adrian Pilchowiec <adi1981@epf.pl> */ 1018fe1926a0SAlan Stern UNUSUAL_DEV( 0x071b, 0x3203, 0x0000, 0x0000, 1019fe1926a0SAlan Stern "RockChip", 1020fe1926a0SAlan Stern "MP3", 10218fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 102200914025SHans de Goede US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64 | 102300914025SHans de Goede US_FL_NO_READ_CAPACITY_16), 1024fe1926a0SAlan Stern 1025f0183a33SFelipe Balbi /* 1026f0183a33SFelipe Balbi * Reported by Jean-Baptiste Onofre <jb@nanthrax.net> 102764915092SJean-Baptiste Onofre * Support the following product : 102864915092SJean-Baptiste Onofre * "Dane-Elec MediaTouch" 102964915092SJean-Baptiste Onofre */ 103064915092SJean-Baptiste Onofre UNUSUAL_DEV( 0x071b, 0x32bb, 0x0000, 0x0000, 103164915092SJean-Baptiste Onofre "RockChip", 103264915092SJean-Baptiste Onofre "MTP", 10338fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 103464915092SJean-Baptiste Onofre US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64), 103564915092SJean-Baptiste Onofre 1036f0183a33SFelipe Balbi /* 1037f0183a33SFelipe Balbi * Reported by Massimiliano Ghilardi <massimiliano.ghilardi@gmail.com> 1038c4766560SMassimiliano Ghilardi * This USB MP3/AVI player device fails and disconnects if more than 128 1039c4766560SMassimiliano Ghilardi * sectors (64kB) are read/written in a single command, and may be present 1040c4766560SMassimiliano Ghilardi * at least in the following products: 1041c4766560SMassimiliano Ghilardi * "Magnex Digital Video Panel DVP 1800" 1042c4766560SMassimiliano Ghilardi * "MP4 AIGO 4GB SLOT SD" 1043c4766560SMassimiliano Ghilardi * "Teclast TL-C260 MP3" 1044c4766560SMassimiliano Ghilardi * "i.Meizu PMP MP3/MP4" 1045c4766560SMassimiliano Ghilardi * "Speed MV8 MP4 Audio Player" 1046c4766560SMassimiliano Ghilardi */ 1047c4766560SMassimiliano Ghilardi UNUSUAL_DEV( 0x071b, 0x3203, 0x0100, 0x0100, 1048c4766560SMassimiliano Ghilardi "RockChip", 1049c4766560SMassimiliano Ghilardi "ROCK MP3", 10508fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1051c4766560SMassimiliano Ghilardi US_FL_MAX_SECTORS_64), 1052c4766560SMassimiliano Ghilardi 1053f430c405SOlivier Blondeau /* Reported by Olivier Blondeau <zeitoun@gmail.com> */ 1054f430c405SOlivier Blondeau UNUSUAL_DEV( 0x0727, 0x0306, 0x0100, 0x0100, 1055f430c405SOlivier Blondeau "ATMEL", 1056f430c405SOlivier Blondeau "SND1 Storage", 10578fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1058f430c405SOlivier Blondeau US_FL_IGNORE_RESIDUE), 1059f430c405SOlivier Blondeau 10601e7a5a84SPhil Dibowitz /* Submitted by Roman Hodek <roman@hodek.net> */ 10611da177e4SLinus Torvalds UNUSUAL_DEV( 0x0781, 0x0001, 0x0200, 0x0200, 10621da177e4SLinus Torvalds "Sandisk", 10631da177e4SLinus Torvalds "ImageMate SDDR-05a", 10648fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_CB, NULL, 10651da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 10661da177e4SLinus Torvalds 10671e7a5a84SPhil Dibowitz UNUSUAL_DEV( 0x0781, 0x0002, 0x0009, 0x0009, 10681e7a5a84SPhil Dibowitz "SanDisk Corporation", 10691e7a5a84SPhil Dibowitz "ImageMate CompactFlash USB", 10708fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 10711e7a5a84SPhil Dibowitz US_FL_FIX_CAPACITY ), 10721e7a5a84SPhil Dibowitz 10731da177e4SLinus Torvalds UNUSUAL_DEV( 0x0781, 0x0100, 0x0100, 0x0100, 10741da177e4SLinus Torvalds "Sandisk", 10751da177e4SLinus Torvalds "ImageMate SDDR-12", 10768fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_CB, NULL, 10771da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 10781da177e4SLinus Torvalds 10791da177e4SLinus Torvalds /* Reported by Eero Volotinen <eero@ping-viini.org> */ 1080e5278320SPhil Dibowitz UNUSUAL_DEV( 0x07ab, 0xfccd, 0x0000, 0x9999, 10811da177e4SLinus Torvalds "Freecom Technologies", 10821da177e4SLinus Torvalds "FHD-Classic", 10838fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 10841da177e4SLinus Torvalds US_FL_FIX_CAPACITY), 10851da177e4SLinus Torvalds 10861da177e4SLinus Torvalds UNUSUAL_DEV( 0x07af, 0x0004, 0x0100, 0x0133, 10871da177e4SLinus Torvalds "Microtech", 10881da177e4SLinus Torvalds "USB-SCSI-DB25", 10898fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 10901da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 10911da177e4SLinus Torvalds 10921da177e4SLinus Torvalds UNUSUAL_DEV( 0x07af, 0x0005, 0x0100, 0x0100, 10931da177e4SLinus Torvalds "Microtech", 10941da177e4SLinus Torvalds "USB-SCSI-HD50", 10958fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 10961da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 10971da177e4SLinus Torvalds 10980ff71883SAlan Stern #ifdef NO_SDDR09 1099c20b15fdSAlan Stern UNUSUAL_DEV( 0x07af, 0x0006, 0x0100, 0x0100, 1100c20b15fdSAlan Stern "Microtech", 1101c20b15fdSAlan Stern "CameraMate", 11028fa7fd74SMichal Nazarewicz USB_SC_SCSI, USB_PR_CB, NULL, 1103c20b15fdSAlan Stern US_FL_SINGLE_LUN ), 11041da177e4SLinus Torvalds #endif 11051da177e4SLinus Torvalds 1106f0183a33SFelipe Balbi /* 1107f0183a33SFelipe Balbi * Datafab KECF-USB / Sagatek DCS-CF / Simpletech Flashlink UCF-100 11081da177e4SLinus Torvalds * Only revision 1.13 tested (same for all of the above devices, 11091da177e4SLinus Torvalds * based on the Datafab DF-UG-07 chip). Needed for US_FL_FIX_INQUIRY. 11101da177e4SLinus Torvalds * Submitted by Marek Michalkiewicz <marekm@amelek.gda.pl>. 11111da177e4SLinus Torvalds * See also http://martin.wilck.bei.t-online.de/#kecf . 11121da177e4SLinus Torvalds */ 11131da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa400, 0x0000, 0xffff, 11141da177e4SLinus Torvalds "Datafab", 11151da177e4SLinus Torvalds "KECF-USB", 11168fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1117049a6acbSNick Holloway US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY ), 11181da177e4SLinus Torvalds 1119f0183a33SFelipe Balbi /* 1120f0183a33SFelipe Balbi * Reported by Rauch Wolke <rauchwolke@gmx.net> 1121e4813eecSAlan Stern * and augmented by binbin <binbinsh@gmail.com> (Bugzilla #12882) 1122e4813eecSAlan Stern */ 1123368ee646SAlan Stern UNUSUAL_DEV( 0x07c4, 0xa4a5, 0x0000, 0xffff, 1124368ee646SAlan Stern "Simple Tech/Datafab", 1125368ee646SAlan Stern "CF+SM Reader", 11268fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1127e4813eecSAlan Stern US_FL_IGNORE_RESIDUE | US_FL_MAX_SECTORS_64 ), 1128368ee646SAlan Stern 1129f0183a33SFelipe Balbi /* 1130f0183a33SFelipe Balbi * Casio QV 2x00/3x00/4000/8000 digital still cameras are not conformant 11311da177e4SLinus Torvalds * to the USB storage specification in two ways: 11321da177e4SLinus Torvalds * - They tell us they are using transport protocol CBI. In reality they 11331da177e4SLinus Torvalds * are using transport protocol CB. 11341da177e4SLinus Torvalds * - They don't like the INQUIRY command. So we must handle this command 11351da177e4SLinus Torvalds * of the SCSI layer ourselves. 11361da177e4SLinus Torvalds * - Some cameras with idProduct=0x1001 and bcdDevice=0x1000 have 11378fa7fd74SMichal Nazarewicz * bInterfaceProtocol=0x00 (USB_PR_CBI) while others have 0x01 (USB_PR_CB). 11388fa7fd74SMichal Nazarewicz * So don't remove the USB_PR_CB override! 11398fa7fd74SMichal Nazarewicz * - Cameras with bcdDevice=0x9009 require the USB_SC_8070 override. 11401da177e4SLinus Torvalds */ 11411da177e4SLinus Torvalds UNUSUAL_DEV( 0x07cf, 0x1001, 0x1000, 0x9999, 11421da177e4SLinus Torvalds "Casio", 11431da177e4SLinus Torvalds "QV DigitalCamera", 11448fa7fd74SMichal Nazarewicz USB_SC_8070, USB_PR_CB, NULL, 11451da177e4SLinus Torvalds US_FL_NEED_OVERRIDE | US_FL_FIX_INQUIRY ), 11461da177e4SLinus Torvalds 1147d7870af7SMichael Shigorin /* Submitted by Oleksandr Chumachenko <ledest@gmail.com> */ 1148d7870af7SMichael Shigorin UNUSUAL_DEV( 0x07cf, 0x1167, 0x0100, 0x0100, 1149d7870af7SMichael Shigorin "Casio", 1150d7870af7SMichael Shigorin "EX-N1 DigitalCamera", 1151d7870af7SMichael Shigorin USB_SC_8070, USB_PR_DEVICE, NULL, 0), 1152d7870af7SMichael Shigorin 11531da177e4SLinus Torvalds /* Submitted by Hartmut Wahl <hwahl@hwahl.de>*/ 11541da177e4SLinus Torvalds UNUSUAL_DEV( 0x0839, 0x000a, 0x0001, 0x0001, 11551da177e4SLinus Torvalds "Samsung", 11561da177e4SLinus Torvalds "Digimax 410", 11578fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 11581da177e4SLinus Torvalds US_FL_FIX_INQUIRY), 11591da177e4SLinus Torvalds 11608010e06cSAlan Stern /* Reported by Luciano Rocha <luciano@eurotux.com> */ 11618010e06cSAlan Stern UNUSUAL_DEV( 0x0840, 0x0082, 0x0001, 0x0001, 11628010e06cSAlan Stern "Argosy", 11638010e06cSAlan Stern "Storage", 11648fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 11658010e06cSAlan Stern US_FL_FIX_CAPACITY), 11668010e06cSAlan Stern 1167e2673b28SNguyen Anh Quynh /* Reported and patched by Nguyen Anh Quynh <aquynh@gmail.com> */ 1168e2673b28SNguyen Anh Quynh UNUSUAL_DEV( 0x0840, 0x0084, 0x0001, 0x0001, 1169e2673b28SNguyen Anh Quynh "Argosy", 1170e2673b28SNguyen Anh Quynh "Storage", 11718fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1172e2673b28SNguyen Anh Quynh US_FL_FIX_CAPACITY), 1173e2673b28SNguyen Anh Quynh 1174aa23c8d6SPhil Dibowitz /* Reported by Martijn Hijdra <martijn.hijdra@gmail.com> */ 1175aa23c8d6SPhil Dibowitz UNUSUAL_DEV( 0x0840, 0x0085, 0x0001, 0x0001, 1176aa23c8d6SPhil Dibowitz "Argosy", 1177aa23c8d6SPhil Dibowitz "Storage", 11788fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1179aa23c8d6SPhil Dibowitz US_FL_FIX_CAPACITY), 1180aa23c8d6SPhil Dibowitz 118157cde01aSMark Knibbs /* Supplied with some Castlewood ORB removable drives */ 118257cde01aSMark Knibbs UNUSUAL_DEV( 0x084b, 0xa001, 0x0000, 0x9999, 118357cde01aSMark Knibbs "Castlewood Systems", 118457cde01aSMark Knibbs "USB to SCSI cable", 118557cde01aSMark Knibbs USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 118657cde01aSMark Knibbs US_FL_SCM_MULT_TARG ), 118757cde01aSMark Knibbs 1188f0183a33SFelipe Balbi /* 1189f0183a33SFelipe Balbi * Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. 11901da177e4SLinus Torvalds * Flag will support Bulk devices which use a standards-violating 32-byte 11911da177e4SLinus Torvalds * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with 11921da177e4SLinus Torvalds * Grandtech GT892x chip, which request "Proprietary SCSI Bulk" support. 11931da177e4SLinus Torvalds */ 11941da177e4SLinus Torvalds 11951da177e4SLinus Torvalds UNUSUAL_DEV( 0x084d, 0x0011, 0x0110, 0x0110, 11961da177e4SLinus Torvalds "Grandtech", 11971da177e4SLinus Torvalds "DC2MEGA", 11988fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 11991da177e4SLinus Torvalds US_FL_BULK32), 12001da177e4SLinus Torvalds 1201f0183a33SFelipe Balbi /* 1202f0183a33SFelipe Balbi * Reported by <ttkspam@free.fr> 120312f68c48SAlan Stern * The device reports a vendor-specific device class, requiring an 120412f68c48SAlan Stern * explicit vendor/product match. 120512f68c48SAlan Stern */ 120612f68c48SAlan Stern UNUSUAL_DEV( 0x0851, 0x1542, 0x0002, 0x0002, 120712f68c48SAlan Stern "MagicPixel", 120812f68c48SAlan Stern "FW_Omega2", 120912f68c48SAlan Stern USB_SC_DEVICE, USB_PR_DEVICE, NULL, 0), 121012f68c48SAlan Stern 1211f0183a33SFelipe Balbi /* 1212f0183a33SFelipe Balbi * Andrew Lunn <andrew@lunn.ch> 1213f7687217SAndrew Lunn * PanDigital Digital Picture Frame. Does not like ALLOW_MEDIUM_REMOVAL 1214f7687217SAndrew Lunn * on LUN 4. 1215f7687217SAndrew Lunn * Note: Vend:Prod clash with "Ltd Maxell WS30 Slim Digital Camera" 1216f7687217SAndrew Lunn */ 1217f7687217SAndrew Lunn UNUSUAL_DEV( 0x0851, 0x1543, 0x0200, 0x0200, 1218f7687217SAndrew Lunn "PanDigital", 1219f7687217SAndrew Lunn "Photo Frame", 12208fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1221f7687217SAndrew Lunn US_FL_NOT_LOCKABLE), 1222f7687217SAndrew Lunn 1223c80b4495SMark UNUSUAL_DEV( 0x085a, 0x0026, 0x0100, 0x0133, 1224c80b4495SMark "Xircom", 1225c80b4495SMark "PortGear USB-SCSI (Mac USB Dock)", 1226c80b4495SMark USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 1227c80b4495SMark US_FL_SCM_MULT_TARG ), 1228c80b4495SMark 1229c80b4495SMark UNUSUAL_DEV( 0x085a, 0x0028, 0x0100, 0x0133, 1230c80b4495SMark "Xircom", 1231c80b4495SMark "PortGear USB to SCSI Converter", 1232c80b4495SMark USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 1233c80b4495SMark US_FL_SCM_MULT_TARG ), 1234c80b4495SMark 1235ba3e93adSAlan Stern /* Submitted by Jan De Luyck <lkml@kcore.org> */ 1236ba3e93adSAlan Stern UNUSUAL_DEV( 0x08bd, 0x1100, 0x0000, 0x0000, 1237ba3e93adSAlan Stern "CITIZEN", 1238ba3e93adSAlan Stern "X1DE-USB", 12398fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1240ba3e93adSAlan Stern US_FL_SINGLE_LUN), 12411da177e4SLinus Torvalds 1242f0183a33SFelipe Balbi /* 1243f0183a33SFelipe Balbi * Submitted by Dylan Taft <d13f00l@gmail.com> 1244a7e555b6SDylan Taft * US_FL_IGNORE_RESIDUE Needed 1245a7e555b6SDylan Taft */ 1246a7e555b6SDylan Taft UNUSUAL_DEV( 0x08ca, 0x3103, 0x0100, 0x0100, 1247a7e555b6SDylan Taft "AIPTEK", 1248a7e555b6SDylan Taft "Aiptek USB Keychain MP3 Player", 12498fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1250a7e555b6SDylan Taft US_FL_IGNORE_RESIDUE), 1251a7e555b6SDylan Taft 1252f0183a33SFelipe Balbi /* 1253f0183a33SFelipe Balbi * Entry needed for flags. Moreover, all devices with this ID use 12541da177e4SLinus Torvalds * bulk-only transport, but _some_ falsely report Control/Bulk instead. 12551da177e4SLinus Torvalds * One example is "Trumpion Digital Research MYMP3". 12561da177e4SLinus Torvalds * Submitted by Bjoern Brill <brill(at)fs.math.uni-frankfurt.de> 12571da177e4SLinus Torvalds */ 12581da177e4SLinus Torvalds UNUSUAL_DEV( 0x090a, 0x1001, 0x0100, 0x0100, 12591da177e4SLinus Torvalds "Trumpion", 12601da177e4SLinus Torvalds "t33520 USB Flash Card Controller", 12618fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_BULK, NULL, 12621da177e4SLinus Torvalds US_FL_NEED_OVERRIDE ), 12631da177e4SLinus Torvalds 1264f0183a33SFelipe Balbi /* 1265f0183a33SFelipe Balbi * Reported by Filippo Bardelli <filibard@libero.it> 12661724757eSPhil Dibowitz * The device reports a subclass of RBC, which is wrong. 12671724757eSPhil Dibowitz */ 12681724757eSPhil Dibowitz UNUSUAL_DEV( 0x090a, 0x1050, 0x0100, 0x0100, 12691724757eSPhil Dibowitz "Trumpion Microelectronics, Inc.", 12701724757eSPhil Dibowitz "33520 USB Digital Voice Recorder", 12718fa7fd74SMichal Nazarewicz USB_SC_UFI, USB_PR_DEVICE, NULL, 12721724757eSPhil Dibowitz 0), 12731724757eSPhil Dibowitz 12741da177e4SLinus Torvalds /* Trumpion Microelectronics MP3 player (felipe_alfaro@linuxmail.org) */ 12751da177e4SLinus Torvalds UNUSUAL_DEV( 0x090a, 0x1200, 0x0000, 0x9999, 12761da177e4SLinus Torvalds "Trumpion", 12771da177e4SLinus Torvalds "MP3 player", 12788fa7fd74SMichal Nazarewicz USB_SC_RBC, USB_PR_BULK, NULL, 12791da177e4SLinus Torvalds 0 ), 12801da177e4SLinus Torvalds 12811da177e4SLinus Torvalds /* aeb */ 12821da177e4SLinus Torvalds UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff, 12831da177e4SLinus Torvalds "Feiya", 12841da177e4SLinus Torvalds "5-in-1 Card Reader", 12858fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 12861da177e4SLinus Torvalds US_FL_FIX_CAPACITY ), 12871da177e4SLinus Torvalds 1288f0183a33SFelipe Balbi /* 1289f0183a33SFelipe Balbi * Reported by Paul Hartman <paul.hartman+linux@gmail.com> 129021c13a4fSAlan Stern * This card reader returns "Illegal Request, Logical Block Address 129121c13a4fSAlan Stern * Out of Range" for the first READ(10) after a new card is inserted. 129221c13a4fSAlan Stern */ 129321c13a4fSAlan Stern UNUSUAL_DEV( 0x090c, 0x6000, 0x0100, 0x0100, 129421c13a4fSAlan Stern "Feiya", 129521c13a4fSAlan Stern "SD/SDHC Card Reader", 129621c13a4fSAlan Stern USB_SC_DEVICE, USB_PR_DEVICE, NULL, 129721c13a4fSAlan Stern US_FL_INITIAL_READ10 ), 129821c13a4fSAlan Stern 1299f0183a33SFelipe Balbi /* 1300f0183a33SFelipe Balbi * This Pentax still camera is not conformant 13011da177e4SLinus Torvalds * to the USB storage specification: - 13021da177e4SLinus Torvalds * - It does not like the INQUIRY command. So we must handle this command 13031da177e4SLinus Torvalds * of the SCSI layer ourselves. 13041da177e4SLinus Torvalds * Tested on Rev. 10.00 (0x1000) 13051da177e4SLinus Torvalds * Submitted by James Courtier-Dutton <James@superbug.demon.co.uk> 13061da177e4SLinus Torvalds */ 13071da177e4SLinus Torvalds UNUSUAL_DEV( 0x0a17, 0x0004, 0x1000, 0x1000, 13081da177e4SLinus Torvalds "Pentax", 13091da177e4SLinus Torvalds "Optio 2/3/400", 13108fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 13111da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 13121da177e4SLinus Torvalds 1313f0183a33SFelipe Balbi /* 1314f0183a33SFelipe Balbi * These are virtual windows driver CDs, which the zd1211rw driver 1315f0183a33SFelipe Balbi * automatically converts into WLAN devices. 1316f0183a33SFelipe Balbi */ 13173c332422SDaniel Drake UNUSUAL_DEV( 0x0ace, 0x2011, 0x0101, 0x0101, 13183c332422SDaniel Drake "ZyXEL", 13193c332422SDaniel Drake "G-220F USB-WLAN Install", 13208fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 13213c332422SDaniel Drake US_FL_IGNORE_DEVICE ), 13223c332422SDaniel Drake 132364902cbaSMatthew Davidson UNUSUAL_DEV( 0x0ace, 0x20ff, 0x0101, 0x0101, 132464902cbaSMatthew Davidson "SiteCom", 132564902cbaSMatthew Davidson "WL-117 USB-WLAN Install", 13268fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 132764902cbaSMatthew Davidson US_FL_IGNORE_DEVICE ), 132864902cbaSMatthew Davidson 1329f0183a33SFelipe Balbi /* 1330f0183a33SFelipe Balbi * Reported by Dan Williams <dcbw@redhat.com> 1331281b064fSDan Williams * Option N.V. mobile broadband modems 1332281b064fSDan Williams * Ignore driver CD mode and force into modem mode by default. 1333281b064fSDan Williams */ 1334281b064fSDan Williams 1335281b064fSDan Williams /* iCON 225 */ 1336281b064fSDan Williams UNUSUAL_DEV( 0x0af0, 0x6971, 0x0000, 0x9999, 1337281b064fSDan Williams "Option N.V.", 1338281b064fSDan Williams "Mass Storage", 13398fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init, 1340281b064fSDan Williams 0), 1341281b064fSDan Williams 1342f0183a33SFelipe Balbi /* 1343f0183a33SFelipe Balbi * Reported by F. Aben <f.aben@option.com> 1344e7c6f80fSFilip Aben * This device (wrongly) has a vendor-specific device descriptor. 1345e7c6f80fSFilip Aben * The entry is needed so usb-storage can bind to it's mass-storage 1346f0183a33SFelipe Balbi * interface as an interface driver 1347f0183a33SFelipe Balbi */ 1348e7c6f80fSFilip Aben UNUSUAL_DEV( 0x0af0, 0x7401, 0x0000, 0x0000, 1349e7c6f80fSFilip Aben "Option", 1350e7c6f80fSFilip Aben "GI 0401 SD-Card", 13518fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1352e7c6f80fSFilip Aben 0 ), 1353e7c6f80fSFilip Aben 1354f0183a33SFelipe Balbi /* 1355f0183a33SFelipe Balbi * Reported by Jan Dumon <j.dumon@option.com> 135646216e4fSJan Dumon * These devices (wrongly) have a vendor-specific device descriptor. 135746216e4fSJan Dumon * These entries are needed so usb-storage can bind to their mass-storage 1358f0183a33SFelipe Balbi * interface as an interface driver 1359f0183a33SFelipe Balbi */ 1360c497e715SJan Dumon UNUSUAL_DEV( 0x0af0, 0x7501, 0x0000, 0x0000, 1361c497e715SJan Dumon "Option", 1362c497e715SJan Dumon "GI 0431 SD-Card", 13638fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1364c497e715SJan Dumon 0 ), 1365c497e715SJan Dumon 136646216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7701, 0x0000, 0x0000, 136746216e4fSJan Dumon "Option", 136846216e4fSJan Dumon "GI 0451 SD-Card", 13698fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 137046216e4fSJan Dumon 0 ), 137146216e4fSJan Dumon 137246216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7706, 0x0000, 0x0000, 137346216e4fSJan Dumon "Option", 137446216e4fSJan Dumon "GI 0451 SD-Card", 13758fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 137646216e4fSJan Dumon 0 ), 137746216e4fSJan Dumon 137846216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7901, 0x0000, 0x0000, 137946216e4fSJan Dumon "Option", 138046216e4fSJan Dumon "GI 0452 SD-Card", 13818fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 138246216e4fSJan Dumon 0 ), 138346216e4fSJan Dumon 138446216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7A01, 0x0000, 0x0000, 138546216e4fSJan Dumon "Option", 138646216e4fSJan Dumon "GI 0461 SD-Card", 13878fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 138846216e4fSJan Dumon 0 ), 138946216e4fSJan Dumon 139046216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7A05, 0x0000, 0x0000, 139146216e4fSJan Dumon "Option", 139246216e4fSJan Dumon "GI 0461 SD-Card", 13938fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 139446216e4fSJan Dumon 0 ), 139546216e4fSJan Dumon 139646216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x8300, 0x0000, 0x0000, 139746216e4fSJan Dumon "Option", 139846216e4fSJan Dumon "GI 033x SD-Card", 13998fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 140046216e4fSJan Dumon 0 ), 140146216e4fSJan Dumon 140246216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x8302, 0x0000, 0x0000, 140346216e4fSJan Dumon "Option", 140446216e4fSJan Dumon "GI 033x SD-Card", 14058fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 140646216e4fSJan Dumon 0 ), 140746216e4fSJan Dumon 140846216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x8304, 0x0000, 0x0000, 140946216e4fSJan Dumon "Option", 141046216e4fSJan Dumon "GI 033x SD-Card", 14118fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 141246216e4fSJan Dumon 0 ), 141346216e4fSJan Dumon 141446216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xc100, 0x0000, 0x0000, 141546216e4fSJan Dumon "Option", 141646216e4fSJan Dumon "GI 070x SD-Card", 14178fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 141846216e4fSJan Dumon 0 ), 141946216e4fSJan Dumon 142046216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd057, 0x0000, 0x0000, 142146216e4fSJan Dumon "Option", 142246216e4fSJan Dumon "GI 1505 SD-Card", 14238fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 142446216e4fSJan Dumon 0 ), 142546216e4fSJan Dumon 142646216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd058, 0x0000, 0x0000, 142746216e4fSJan Dumon "Option", 142846216e4fSJan Dumon "GI 1509 SD-Card", 14298fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 143046216e4fSJan Dumon 0 ), 143146216e4fSJan Dumon 143246216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd157, 0x0000, 0x0000, 143346216e4fSJan Dumon "Option", 143446216e4fSJan Dumon "GI 1515 SD-Card", 14358fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 143646216e4fSJan Dumon 0 ), 143746216e4fSJan Dumon 143846216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd257, 0x0000, 0x0000, 143946216e4fSJan Dumon "Option", 144046216e4fSJan Dumon "GI 1215 SD-Card", 14418fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 144246216e4fSJan Dumon 0 ), 144346216e4fSJan Dumon 144446216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd357, 0x0000, 0x0000, 144546216e4fSJan Dumon "Option", 144646216e4fSJan Dumon "GI 1505 SD-Card", 14478fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 144846216e4fSJan Dumon 0 ), 144946216e4fSJan Dumon 14503bd4dc9bSNamjae Jeon /* Reported by Namjae Jeon <namjae.jeon@samsung.com> */ 14513bd4dc9bSNamjae Jeon UNUSUAL_DEV(0x0bc2, 0x2300, 0x0000, 0x9999, 14523bd4dc9bSNamjae Jeon "Seagate", 14533bd4dc9bSNamjae Jeon "Portable HDD", 14543bd4dc9bSNamjae Jeon USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_WRITE_CACHE), 14553bd4dc9bSNamjae Jeon 1456dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */ 1457dbe6e0c0SBen Efros UNUSUAL_DEV( 0x0bc2, 0x3010, 0x0000, 0x0000, 1458dbe6e0c0SBen Efros "Seagate", 1459dbe6e0c0SBen Efros "FreeAgent Pro", 14608fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1461dbe6e0c0SBen Efros US_FL_SANE_SENSE ), 1462dbe6e0c0SBen Efros 1463113f6eb6SAlan Stern /* Reported by Kris Lindgren <kris.lindgren@gmail.com> */ 1464113f6eb6SAlan Stern UNUSUAL_DEV( 0x0bc2, 0x3332, 0x0000, 0x9999, 1465113f6eb6SAlan Stern "Seagate", 1466113f6eb6SAlan Stern "External", 1467113f6eb6SAlan Stern USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1468113f6eb6SAlan Stern US_FL_NO_WP_DETECT ), 1469113f6eb6SAlan Stern 1470dbe6e0c0SBen Efros UNUSUAL_DEV( 0x0d49, 0x7310, 0x0000, 0x9999, 1471dbe6e0c0SBen Efros "Maxtor", 1472dbe6e0c0SBen Efros "USB to SATA", 14738fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1474dbe6e0c0SBen Efros US_FL_SANE_SENSE), 1475dbe6e0c0SBen Efros 1476f9dc8f99SAlan Stern /* 1477f9dc8f99SAlan Stern * Pete Zaitcev <zaitcev@yahoo.com>, bz#164688. 1478f9dc8f99SAlan Stern * The device blatantly ignores LUN and returns 1 in GetMaxLUN. 1479f9dc8f99SAlan Stern */ 1480f9dc8f99SAlan Stern UNUSUAL_DEV( 0x0c45, 0x1060, 0x0100, 0x0100, 1481f9dc8f99SAlan Stern "Unknown", 1482f9dc8f99SAlan Stern "Unknown", 14838fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1484f9dc8f99SAlan Stern US_FL_SINGLE_LUN ), 1485f9dc8f99SAlan Stern 14861da177e4SLinus Torvalds /* Submitted by Joris Struyve <joris@struyve.be> */ 14871da177e4SLinus Torvalds UNUSUAL_DEV( 0x0d96, 0x410a, 0x0001, 0xffff, 14881da177e4SLinus Torvalds "Medion", 14891da177e4SLinus Torvalds "MD 7425", 14908fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 14911da177e4SLinus Torvalds US_FL_FIX_INQUIRY), 14921da177e4SLinus Torvalds 14931da177e4SLinus Torvalds /* 14941da177e4SLinus Torvalds * Entry for Jenoptik JD 5200z3 14951da177e4SLinus Torvalds * 14961da177e4SLinus Torvalds * email: car.busse@gmx.de 14971da177e4SLinus Torvalds */ 14981da177e4SLinus Torvalds UNUSUAL_DEV( 0x0d96, 0x5200, 0x0001, 0x0200, 14991da177e4SLinus Torvalds "Jenoptik", 15001da177e4SLinus Torvalds "JD 5200 z3", 15018fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY), 15021da177e4SLinus Torvalds 15033b438e30SSergey Ovcharenko /* Reported by Jason Johnston <killean@shaw.ca> */ 15043b438e30SSergey Ovcharenko UNUSUAL_DEV( 0x0dc4, 0x0073, 0x0000, 0x0000, 15053b438e30SSergey Ovcharenko "Macpower Technology Co.LTD.", 15063b438e30SSergey Ovcharenko "USB 2.0 3.5\" DEVICE", 15078fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 15083b438e30SSergey Ovcharenko US_FL_FIX_CAPACITY), 15093b438e30SSergey Ovcharenko 1510f0183a33SFelipe Balbi /* 1511f0183a33SFelipe Balbi * Reported by Lubomir Blaha <tritol@trilogic.cz> 15121da177e4SLinus Torvalds * I _REALLY_ don't know what 3rd, 4th number and all defines mean, but this 15131da177e4SLinus Torvalds * works for me. Can anybody correct these values? (I able to test corrected 15141da177e4SLinus Torvalds * version.) 15151da177e4SLinus Torvalds */ 15161da177e4SLinus Torvalds UNUSUAL_DEV( 0x0dd8, 0x1060, 0x0000, 0xffff, 15171da177e4SLinus Torvalds "Netac", 15181da177e4SLinus Torvalds "USB-CF-Card", 15198fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 15201da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 15211da177e4SLinus Torvalds 1522f0183a33SFelipe Balbi /* 1523f0183a33SFelipe Balbi * Reported by Edward Chapman (taken from linux-usb mailing list) 1524f0183a33SFelipe Balbi * Netac OnlyDisk Mini U2CV2 512MB USB 2.0 Flash Drive 1525f0183a33SFelipe Balbi */ 152667fa1062SBen Collins UNUSUAL_DEV( 0x0dd8, 0xd202, 0x0000, 0x9999, 152767fa1062SBen Collins "Netac", 152867fa1062SBen Collins "USB Flash Disk", 15298fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 153067fa1062SBen Collins US_FL_IGNORE_RESIDUE ), 153167fa1062SBen Collins 153267fa1062SBen Collins 1533f0183a33SFelipe Balbi /* 1534f0183a33SFelipe Balbi * Patch by Stephan Walter <stephan.walter@epfl.ch> 1535f0183a33SFelipe Balbi * I don't know why, but it works... 1536f0183a33SFelipe Balbi */ 15371da177e4SLinus Torvalds UNUSUAL_DEV( 0x0dda, 0x0001, 0x0012, 0x0012, 15381da177e4SLinus Torvalds "WINWARD", 15391da177e4SLinus Torvalds "Music Disk", 15408fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 15411da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 15421da177e4SLinus Torvalds 15431da177e4SLinus Torvalds /* Reported by Ian McConnell <ian at emit.demon.co.uk> */ 15441da177e4SLinus Torvalds UNUSUAL_DEV( 0x0dda, 0x0301, 0x0012, 0x0012, 15451da177e4SLinus Torvalds "PNP_MP3", 15461da177e4SLinus Torvalds "PNP_MP3 PLAYER", 15478fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 15481da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 15491da177e4SLinus Torvalds 1550982db2a1SAlan Stern /* Reported by Jim McCloskey <mcclosk@ucsc.edu> */ 1551982db2a1SAlan Stern UNUSUAL_DEV( 0x0e21, 0x0520, 0x0100, 0x0100, 1552982db2a1SAlan Stern "Cowon Systems", 1553982db2a1SAlan Stern "iAUDIO M5", 15548fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_BULK, NULL, 1555bc724b98SPhil Dibowitz US_FL_NEED_OVERRIDE ), 1556982db2a1SAlan Stern 15571da177e4SLinus Torvalds /* Submitted by Antoine Mairesse <antoine.mairesse@free.fr> */ 15581da177e4SLinus Torvalds UNUSUAL_DEV( 0x0ed1, 0x6660, 0x0100, 0x0300, 15591da177e4SLinus Torvalds "USB", 15601da177e4SLinus Torvalds "Solid state disk", 15618fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 15621da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 15631da177e4SLinus Torvalds 1564f0183a33SFelipe Balbi /* 1565f0183a33SFelipe Balbi * Submitted by Daniel Drake <dsd@gentoo.org> 1566f0183a33SFelipe Balbi * Reported by dayul on the Gentoo Forums 1567f0183a33SFelipe Balbi */ 15681da177e4SLinus Torvalds UNUSUAL_DEV( 0x0ea0, 0x2168, 0x0110, 0x0110, 15691da177e4SLinus Torvalds "Ours Technology", 15701da177e4SLinus Torvalds "Flash Disk", 15718fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 15721da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 15731da177e4SLinus Torvalds 15741da177e4SLinus Torvalds /* Reported by Rastislav Stanik <rs_kernel@yahoo.com> */ 15751da177e4SLinus Torvalds UNUSUAL_DEV( 0x0ea0, 0x6828, 0x0110, 0x0110, 15761da177e4SLinus Torvalds "USB", 15771da177e4SLinus Torvalds "Flash Disk", 15788fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 15791da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 15801da177e4SLinus Torvalds 1581f0183a33SFelipe Balbi /* 1582f0183a33SFelipe Balbi * Reported by Benjamin Schiller <sbenni@gmx.de> 1583f0183a33SFelipe Balbi * It is also sold by Easylite as DJ 20 1584f0183a33SFelipe Balbi */ 1585883d989aSPhil Dibowitz UNUSUAL_DEV( 0x0ed1, 0x7636, 0x0103, 0x0103, 1586883d989aSPhil Dibowitz "Typhoon", 1587883d989aSPhil Dibowitz "My DJ 1820", 15888fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1589883d989aSPhil Dibowitz US_FL_IGNORE_RESIDUE | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64), 1590883d989aSPhil Dibowitz 1591f0183a33SFelipe Balbi /* 1592f0183a33SFelipe Balbi * Patch by Leonid Petrov mail at lpetrov.net 15934e58407dSRobert Spitzenpfeil * Reported by Robert Spitzenpfeil <robert@spitzenpfeil.org> 15944e58407dSRobert Spitzenpfeil * http://www.qbik.ch/usb/devices/showdev.php?id=1705 15954e58407dSRobert Spitzenpfeil * Updated to 103 device by MJ Ray mjr at phonecoop.coop 15964e58407dSRobert Spitzenpfeil */ 15974e58407dSRobert Spitzenpfeil UNUSUAL_DEV( 0x0f19, 0x0103, 0x0100, 0x0100, 15984e58407dSRobert Spitzenpfeil "Oracom Co., Ltd", 15994e58407dSRobert Spitzenpfeil "ORC-200M", 16008fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 16014e58407dSRobert Spitzenpfeil US_FL_IGNORE_RESIDUE ), 16024e58407dSRobert Spitzenpfeil 1603f0183a33SFelipe Balbi /* 1604f0183a33SFelipe Balbi * David Kuehling <dvdkhlng@gmx.de>: 1605b41ee5d6SDavid Kuehling * for MP3-Player AVOX WSX-300ER (bought in Japan). Reports lots of SCSI 1606b41ee5d6SDavid Kuehling * errors when trying to write. 1607b41ee5d6SDavid Kuehling */ 1608b41ee5d6SDavid Kuehling UNUSUAL_DEV( 0x0f19, 0x0105, 0x0100, 0x0100, 1609b41ee5d6SDavid Kuehling "C-MEX", 1610b41ee5d6SDavid Kuehling "A-VOX", 16118fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1612b41ee5d6SDavid Kuehling US_FL_IGNORE_RESIDUE ), 1613b41ee5d6SDavid Kuehling 1614c25f6b15SNick Holloway /* Submitted by Nick Holloway */ 1615c25f6b15SNick Holloway UNUSUAL_DEV( 0x0f88, 0x042e, 0x0100, 0x0100, 1616c25f6b15SNick Holloway "VTech", 1617c25f6b15SNick Holloway "Kidizoom", 1618c25f6b15SNick Holloway USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1619c25f6b15SNick Holloway US_FL_FIX_CAPACITY ), 1620c25f6b15SNick Holloway 1621c5637e51SAlan Stern /* Reported by Moritz Moeller-Herrmann <moritz-kernel@moeller-herrmann.de> */ 1622c5637e51SAlan Stern UNUSUAL_DEV( 0x0fca, 0x8004, 0x0201, 0x0201, 1623c5637e51SAlan Stern "Research In Motion", 1624c5637e51SAlan Stern "BlackBerry Bold 9000", 1625c5637e51SAlan Stern USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1626c5637e51SAlan Stern US_FL_MAX_SECTORS_64 ), 1627c5637e51SAlan Stern 16281da177e4SLinus Torvalds /* Reported by Michael Stattmann <michael@stattmann.com> */ 16291da177e4SLinus Torvalds UNUSUAL_DEV( 0x0fce, 0xd008, 0x0000, 0x0000, 16301da177e4SLinus Torvalds "Sony Ericsson", 16311da177e4SLinus Torvalds "V800-Vodafone 802", 16328fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 16331da177e4SLinus Torvalds US_FL_NO_WP_DETECT ), 16341da177e4SLinus Torvalds 1635a83775b1SPhil Dibowitz /* Reported by The Solutor <thesolutor@gmail.com> */ 1636a83775b1SPhil Dibowitz UNUSUAL_DEV( 0x0fce, 0xd0e1, 0x0000, 0x0000, 1637a83775b1SPhil Dibowitz "Sony Ericsson", 1638a83775b1SPhil Dibowitz "MD400", 16398fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1640a83775b1SPhil Dibowitz US_FL_IGNORE_DEVICE), 1641a83775b1SPhil Dibowitz 1642f0183a33SFelipe Balbi /* 1643f0183a33SFelipe Balbi * Reported by Jan Mate <mate@fiit.stuba.sk> 1644f0183a33SFelipe Balbi * and by Soeren Sonnenburg <kernel@nn7.de> 1645f0183a33SFelipe Balbi */ 164639c2f3acSPhil Dibowitz UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x0000, 164739c2f3acSPhil Dibowitz "Sony Ericsson", 164839c2f3acSPhil Dibowitz "P990i", 16498fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1650b544d749SAlan Stern US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), 165139c2f3acSPhil Dibowitz 1652c9c770edSPhil Dibowitz /* Reported by Emmanuel Vasilakis <evas@forthnet.gr> */ 1653c9c770edSPhil Dibowitz UNUSUAL_DEV( 0x0fce, 0xe031, 0x0000, 0x0000, 1654c9c770edSPhil Dibowitz "Sony Ericsson", 1655c9c770edSPhil Dibowitz "M600i", 16568fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1657c5f23b0eSPhil Dibowitz US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 1658c9c770edSPhil Dibowitz 1659f9dc8f99SAlan Stern /* Reported by Ricardo Barberis <ricardo@dattatec.com> */ 1660f9dc8f99SAlan Stern UNUSUAL_DEV( 0x0fce, 0xe092, 0x0000, 0x0000, 1661f9dc8f99SAlan Stern "Sony Ericsson", 1662f9dc8f99SAlan Stern "P1i", 16638fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1664f9dc8f99SAlan Stern US_FL_IGNORE_RESIDUE ), 1665f9dc8f99SAlan Stern 1666f0183a33SFelipe Balbi /* 1667f0183a33SFelipe Balbi * Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu> 16681da177e4SLinus Torvalds * Tested on hardware version 1.10. 16691da177e4SLinus Torvalds * Entry is needed only for the initializer function override. 167051b5bce8SPhil Dibowitz * Devices with bcd > 110 seem to not need it while those 167151b5bce8SPhil Dibowitz * with bcd < 110 appear to need it. 16721da177e4SLinus Torvalds */ 167351b5bce8SPhil Dibowitz UNUSUAL_DEV( 0x1019, 0x0c55, 0x0000, 0x0110, 16741da177e4SLinus Torvalds "Desknote", 16751da177e4SLinus Torvalds "UCR-61S2B", 16768fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_ucr61s2b_init, 16771da177e4SLinus Torvalds 0 ), 16781da177e4SLinus Torvalds 1679dbe6e0c0SBen Efros UNUSUAL_DEV( 0x1058, 0x0704, 0x0000, 0x9999, 1680dbe6e0c0SBen Efros "Western Digital", 1681dbe6e0c0SBen Efros "External HDD", 16828fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1683dbe6e0c0SBen Efros US_FL_SANE_SENSE), 1684dbe6e0c0SBen Efros 16853bd4dc9bSNamjae Jeon /* Reported by Namjae Jeon <namjae.jeon@samsung.com> */ 16863bd4dc9bSNamjae Jeon UNUSUAL_DEV(0x1058, 0x070a, 0x0000, 0x9999, 16873bd4dc9bSNamjae Jeon "Western Digital", 16883bd4dc9bSNamjae Jeon "My Passport HDD", 16893bd4dc9bSNamjae Jeon USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_WRITE_CACHE), 16903bd4dc9bSNamjae Jeon 1691f0183a33SFelipe Balbi /* 1692f0183a33SFelipe Balbi * Reported by Fabio Venturi <f.venturi@tdnet.it> 1693274399d1SAlan Stern * The device reports a vendor-specific bDeviceClass. 1694274399d1SAlan Stern */ 1695274399d1SAlan Stern UNUSUAL_DEV( 0x10d6, 0x2200, 0x0100, 0x0100, 1696274399d1SAlan Stern "Actions Semiconductor", 1697274399d1SAlan Stern "Mtp device", 16988fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 1699274399d1SAlan Stern 0), 1700274399d1SAlan Stern 1701f0183a33SFelipe Balbi /* 1702f0183a33SFelipe Balbi * Reported by Pascal Terjan <pterjan@mandriva.com> 1703c00deaa5SPascal Terjan * Ignore driver CD mode and force into modem mode by default. 1704c00deaa5SPascal Terjan */ 1705c00deaa5SPascal Terjan UNUSUAL_DEV( 0x1186, 0x3e04, 0x0000, 0x0000, 1706c00deaa5SPascal Terjan "D-Link", 1707c00deaa5SPascal Terjan "USB Mass Storage", 17088fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init, US_FL_IGNORE_DEVICE), 1709c00deaa5SPascal Terjan 1710f0183a33SFelipe Balbi /* 1711f0183a33SFelipe Balbi * Reported by Kevin Lloyd <linux@sierrawireless.com> 1712112225b1SKevin Lloyd * Entry is needed for the initializer function override, 1713112225b1SKevin Lloyd * which instructs the device to load as a modem 1714112225b1SKevin Lloyd * device. 1715112225b1SKevin Lloyd */ 1716112225b1SKevin Lloyd UNUSUAL_DEV( 0x1199, 0x0fff, 0x0000, 0x9999, 1717112225b1SKevin Lloyd "Sierra Wireless", 1718112225b1SKevin Lloyd "USB MMC Storage", 17198fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, sierra_ms_init, 172032fe5e39SKevin Lloyd 0), 1721112225b1SKevin Lloyd 1722f0183a33SFelipe Balbi /* 1723f0183a33SFelipe Balbi * Reported by Jaco Kroon <jaco@kroon.co.za> 172449314378SJaco Kroon * The usb-storage module found on the Digitech GNX4 (and supposedly other 172549314378SJaco Kroon * devices) misbehaves and causes a bunch of invalid I/O errors. 172649314378SJaco Kroon */ 172749314378SJaco Kroon UNUSUAL_DEV( 0x1210, 0x0003, 0x0100, 0x0100, 172849314378SJaco Kroon "Digitech HMG", 172949314378SJaco Kroon "DigiTech Mass Storage", 17308fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 173149314378SJaco Kroon US_FL_IGNORE_RESIDUE ), 173249314378SJaco Kroon 1733f0183a33SFelipe Balbi /* 1734f0183a33SFelipe Balbi * Reported by fangxiaozhi <huananhu@huawei.com> 1735aad8a278Sfangxiaozhi * This brings the HUAWEI data card devices into multi-port mode 1736d853d872SJohann Wilhelm */ 1737ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1001, 0x0000, 0x0000, 1738aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1739aad8a278Sfangxiaozhi "Mass Storage", 1740ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1741ab4b7164SBjørn Mork 0), 1742ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1003, 0x0000, 0x0000, 1743ab4b7164SBjørn Mork "HUAWEI MOBILE", 1744ab4b7164SBjørn Mork "Mass Storage", 1745ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1746ab4b7164SBjørn Mork 0), 1747ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1004, 0x0000, 0x0000, 1748ab4b7164SBjørn Mork "HUAWEI MOBILE", 1749ab4b7164SBjørn Mork "Mass Storage", 1750ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1751ab4b7164SBjørn Mork 0), 1752ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1401, 0x0000, 0x0000, 1753ab4b7164SBjørn Mork "HUAWEI MOBILE", 1754ab4b7164SBjørn Mork "Mass Storage", 1755ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1756ab4b7164SBjørn Mork 0), 1757ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1402, 0x0000, 0x0000, 1758ab4b7164SBjørn Mork "HUAWEI MOBILE", 1759ab4b7164SBjørn Mork "Mass Storage", 1760ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1761ab4b7164SBjørn Mork 0), 1762ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1403, 0x0000, 0x0000, 1763ab4b7164SBjørn Mork "HUAWEI MOBILE", 1764ab4b7164SBjørn Mork "Mass Storage", 1765ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1766ab4b7164SBjørn Mork 0), 1767ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1404, 0x0000, 0x0000, 1768ab4b7164SBjørn Mork "HUAWEI MOBILE", 1769ab4b7164SBjørn Mork "Mass Storage", 1770ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1771ab4b7164SBjørn Mork 0), 1772ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1405, 0x0000, 0x0000, 1773ab4b7164SBjørn Mork "HUAWEI MOBILE", 1774ab4b7164SBjørn Mork "Mass Storage", 1775ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1776ab4b7164SBjørn Mork 0), 1777ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1406, 0x0000, 0x0000, 1778ab4b7164SBjørn Mork "HUAWEI MOBILE", 1779ab4b7164SBjørn Mork "Mass Storage", 1780ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1781ab4b7164SBjørn Mork 0), 1782ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1407, 0x0000, 0x0000, 1783ab4b7164SBjørn Mork "HUAWEI MOBILE", 1784ab4b7164SBjørn Mork "Mass Storage", 1785ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1786ab4b7164SBjørn Mork 0), 1787ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1408, 0x0000, 0x0000, 1788ab4b7164SBjørn Mork "HUAWEI MOBILE", 1789ab4b7164SBjørn Mork "Mass Storage", 1790ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1791ab4b7164SBjørn Mork 0), 1792ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1409, 0x0000, 0x0000, 1793ab4b7164SBjørn Mork "HUAWEI MOBILE", 1794ab4b7164SBjørn Mork "Mass Storage", 1795ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1796ab4b7164SBjørn Mork 0), 1797ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x140A, 0x0000, 0x0000, 1798ab4b7164SBjørn Mork "HUAWEI MOBILE", 1799ab4b7164SBjørn Mork "Mass Storage", 1800ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1801ab4b7164SBjørn Mork 0), 1802ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x140B, 0x0000, 0x0000, 1803ab4b7164SBjørn Mork "HUAWEI MOBILE", 1804ab4b7164SBjørn Mork "Mass Storage", 1805ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1806ab4b7164SBjørn Mork 0), 1807ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x140C, 0x0000, 0x0000, 1808ab4b7164SBjørn Mork "HUAWEI MOBILE", 1809ab4b7164SBjørn Mork "Mass Storage", 1810ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1811ab4b7164SBjørn Mork 0), 1812ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x140D, 0x0000, 0x0000, 1813ab4b7164SBjørn Mork "HUAWEI MOBILE", 1814ab4b7164SBjørn Mork "Mass Storage", 1815ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1816ab4b7164SBjørn Mork 0), 1817ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x140E, 0x0000, 0x0000, 1818ab4b7164SBjørn Mork "HUAWEI MOBILE", 1819ab4b7164SBjørn Mork "Mass Storage", 1820ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1821ab4b7164SBjørn Mork 0), 1822ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x140F, 0x0000, 0x0000, 1823ab4b7164SBjørn Mork "HUAWEI MOBILE", 1824ab4b7164SBjørn Mork "Mass Storage", 1825ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1826ab4b7164SBjørn Mork 0), 1827ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1410, 0x0000, 0x0000, 1828ab4b7164SBjørn Mork "HUAWEI MOBILE", 1829ab4b7164SBjørn Mork "Mass Storage", 1830ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1831ab4b7164SBjørn Mork 0), 1832ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1411, 0x0000, 0x0000, 1833ab4b7164SBjørn Mork "HUAWEI MOBILE", 1834ab4b7164SBjørn Mork "Mass Storage", 1835ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1836ab4b7164SBjørn Mork 0), 1837ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1412, 0x0000, 0x0000, 1838ab4b7164SBjørn Mork "HUAWEI MOBILE", 1839ab4b7164SBjørn Mork "Mass Storage", 1840ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1841ab4b7164SBjørn Mork 0), 1842ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1413, 0x0000, 0x0000, 1843ab4b7164SBjørn Mork "HUAWEI MOBILE", 1844ab4b7164SBjørn Mork "Mass Storage", 1845ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1846ab4b7164SBjørn Mork 0), 1847ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1414, 0x0000, 0x0000, 1848ab4b7164SBjørn Mork "HUAWEI MOBILE", 1849ab4b7164SBjørn Mork "Mass Storage", 1850ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1851ab4b7164SBjørn Mork 0), 1852ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1415, 0x0000, 0x0000, 1853ab4b7164SBjørn Mork "HUAWEI MOBILE", 1854ab4b7164SBjørn Mork "Mass Storage", 1855ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1856ab4b7164SBjørn Mork 0), 1857ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1416, 0x0000, 0x0000, 1858ab4b7164SBjørn Mork "HUAWEI MOBILE", 1859ab4b7164SBjørn Mork "Mass Storage", 1860ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1861ab4b7164SBjørn Mork 0), 1862ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1417, 0x0000, 0x0000, 1863ab4b7164SBjørn Mork "HUAWEI MOBILE", 1864ab4b7164SBjørn Mork "Mass Storage", 1865ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1866ab4b7164SBjørn Mork 0), 1867ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1418, 0x0000, 0x0000, 1868ab4b7164SBjørn Mork "HUAWEI MOBILE", 1869ab4b7164SBjørn Mork "Mass Storage", 1870ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1871ab4b7164SBjørn Mork 0), 1872ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1419, 0x0000, 0x0000, 1873ab4b7164SBjørn Mork "HUAWEI MOBILE", 1874ab4b7164SBjørn Mork "Mass Storage", 1875ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1876ab4b7164SBjørn Mork 0), 1877ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x141A, 0x0000, 0x0000, 1878ab4b7164SBjørn Mork "HUAWEI MOBILE", 1879ab4b7164SBjørn Mork "Mass Storage", 1880ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1881ab4b7164SBjørn Mork 0), 1882ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x141B, 0x0000, 0x0000, 1883ab4b7164SBjørn Mork "HUAWEI MOBILE", 1884ab4b7164SBjørn Mork "Mass Storage", 1885ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1886ab4b7164SBjørn Mork 0), 1887ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x141C, 0x0000, 0x0000, 1888ab4b7164SBjørn Mork "HUAWEI MOBILE", 1889ab4b7164SBjørn Mork "Mass Storage", 1890ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1891ab4b7164SBjørn Mork 0), 1892ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x141D, 0x0000, 0x0000, 1893ab4b7164SBjørn Mork "HUAWEI MOBILE", 1894ab4b7164SBjørn Mork "Mass Storage", 1895ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1896ab4b7164SBjørn Mork 0), 1897ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x141E, 0x0000, 0x0000, 1898ab4b7164SBjørn Mork "HUAWEI MOBILE", 1899ab4b7164SBjørn Mork "Mass Storage", 1900ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1901ab4b7164SBjørn Mork 0), 1902ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x141F, 0x0000, 0x0000, 1903ab4b7164SBjørn Mork "HUAWEI MOBILE", 1904ab4b7164SBjørn Mork "Mass Storage", 1905ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1906ab4b7164SBjørn Mork 0), 1907ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1420, 0x0000, 0x0000, 1908ab4b7164SBjørn Mork "HUAWEI MOBILE", 1909ab4b7164SBjørn Mork "Mass Storage", 1910ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1911ab4b7164SBjørn Mork 0), 1912ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1421, 0x0000, 0x0000, 1913ab4b7164SBjørn Mork "HUAWEI MOBILE", 1914ab4b7164SBjørn Mork "Mass Storage", 1915ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1916ab4b7164SBjørn Mork 0), 1917ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1422, 0x0000, 0x0000, 1918ab4b7164SBjørn Mork "HUAWEI MOBILE", 1919ab4b7164SBjørn Mork "Mass Storage", 1920ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1921ab4b7164SBjørn Mork 0), 1922ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1423, 0x0000, 0x0000, 1923ab4b7164SBjørn Mork "HUAWEI MOBILE", 1924ab4b7164SBjørn Mork "Mass Storage", 1925ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1926ab4b7164SBjørn Mork 0), 1927ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1424, 0x0000, 0x0000, 1928ab4b7164SBjørn Mork "HUAWEI MOBILE", 1929ab4b7164SBjørn Mork "Mass Storage", 1930ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1931ab4b7164SBjørn Mork 0), 1932ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1425, 0x0000, 0x0000, 1933ab4b7164SBjørn Mork "HUAWEI MOBILE", 1934ab4b7164SBjørn Mork "Mass Storage", 1935ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1936ab4b7164SBjørn Mork 0), 1937ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1426, 0x0000, 0x0000, 1938ab4b7164SBjørn Mork "HUAWEI MOBILE", 1939ab4b7164SBjørn Mork "Mass Storage", 1940ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1941ab4b7164SBjørn Mork 0), 1942ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1427, 0x0000, 0x0000, 1943ab4b7164SBjørn Mork "HUAWEI MOBILE", 1944ab4b7164SBjørn Mork "Mass Storage", 1945ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1946ab4b7164SBjørn Mork 0), 1947ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1428, 0x0000, 0x0000, 1948ab4b7164SBjørn Mork "HUAWEI MOBILE", 1949ab4b7164SBjørn Mork "Mass Storage", 1950ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1951ab4b7164SBjørn Mork 0), 1952ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1429, 0x0000, 0x0000, 1953ab4b7164SBjørn Mork "HUAWEI MOBILE", 1954ab4b7164SBjørn Mork "Mass Storage", 1955ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1956ab4b7164SBjørn Mork 0), 1957ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x142A, 0x0000, 0x0000, 1958ab4b7164SBjørn Mork "HUAWEI MOBILE", 1959ab4b7164SBjørn Mork "Mass Storage", 1960ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1961ab4b7164SBjørn Mork 0), 1962ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x142B, 0x0000, 0x0000, 1963ab4b7164SBjørn Mork "HUAWEI MOBILE", 1964ab4b7164SBjørn Mork "Mass Storage", 1965ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1966ab4b7164SBjørn Mork 0), 1967ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x142C, 0x0000, 0x0000, 1968ab4b7164SBjørn Mork "HUAWEI MOBILE", 1969ab4b7164SBjørn Mork "Mass Storage", 1970ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1971ab4b7164SBjørn Mork 0), 1972ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x142D, 0x0000, 0x0000, 1973ab4b7164SBjørn Mork "HUAWEI MOBILE", 1974ab4b7164SBjørn Mork "Mass Storage", 1975ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1976ab4b7164SBjørn Mork 0), 1977ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x142E, 0x0000, 0x0000, 1978ab4b7164SBjørn Mork "HUAWEI MOBILE", 1979ab4b7164SBjørn Mork "Mass Storage", 1980ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1981ab4b7164SBjørn Mork 0), 1982ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x142F, 0x0000, 0x0000, 1983ab4b7164SBjørn Mork "HUAWEI MOBILE", 1984ab4b7164SBjørn Mork "Mass Storage", 1985ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1986ab4b7164SBjørn Mork 0), 1987ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1430, 0x0000, 0x0000, 1988ab4b7164SBjørn Mork "HUAWEI MOBILE", 1989ab4b7164SBjørn Mork "Mass Storage", 1990ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1991ab4b7164SBjørn Mork 0), 1992ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1431, 0x0000, 0x0000, 1993ab4b7164SBjørn Mork "HUAWEI MOBILE", 1994ab4b7164SBjørn Mork "Mass Storage", 1995ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 1996ab4b7164SBjørn Mork 0), 1997ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1432, 0x0000, 0x0000, 1998ab4b7164SBjørn Mork "HUAWEI MOBILE", 1999ab4b7164SBjørn Mork "Mass Storage", 2000ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2001ab4b7164SBjørn Mork 0), 2002ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1433, 0x0000, 0x0000, 2003ab4b7164SBjørn Mork "HUAWEI MOBILE", 2004ab4b7164SBjørn Mork "Mass Storage", 2005ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2006ab4b7164SBjørn Mork 0), 2007ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1434, 0x0000, 0x0000, 2008ab4b7164SBjørn Mork "HUAWEI MOBILE", 2009ab4b7164SBjørn Mork "Mass Storage", 2010ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2011ab4b7164SBjørn Mork 0), 2012ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1435, 0x0000, 0x0000, 2013ab4b7164SBjørn Mork "HUAWEI MOBILE", 2014ab4b7164SBjørn Mork "Mass Storage", 2015ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2016ab4b7164SBjørn Mork 0), 2017ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1436, 0x0000, 0x0000, 2018ab4b7164SBjørn Mork "HUAWEI MOBILE", 2019ab4b7164SBjørn Mork "Mass Storage", 2020ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2021ab4b7164SBjørn Mork 0), 2022ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1437, 0x0000, 0x0000, 2023ab4b7164SBjørn Mork "HUAWEI MOBILE", 2024ab4b7164SBjørn Mork "Mass Storage", 2025ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2026ab4b7164SBjørn Mork 0), 2027ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1438, 0x0000, 0x0000, 2028ab4b7164SBjørn Mork "HUAWEI MOBILE", 2029ab4b7164SBjørn Mork "Mass Storage", 2030ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2031ab4b7164SBjørn Mork 0), 2032ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x1439, 0x0000, 0x0000, 2033ab4b7164SBjørn Mork "HUAWEI MOBILE", 2034ab4b7164SBjørn Mork "Mass Storage", 2035ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2036ab4b7164SBjørn Mork 0), 2037ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x143A, 0x0000, 0x0000, 2038ab4b7164SBjørn Mork "HUAWEI MOBILE", 2039ab4b7164SBjørn Mork "Mass Storage", 2040ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2041ab4b7164SBjørn Mork 0), 2042ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x143B, 0x0000, 0x0000, 2043ab4b7164SBjørn Mork "HUAWEI MOBILE", 2044ab4b7164SBjørn Mork "Mass Storage", 2045ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2046ab4b7164SBjørn Mork 0), 2047ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x143C, 0x0000, 0x0000, 2048ab4b7164SBjørn Mork "HUAWEI MOBILE", 2049ab4b7164SBjørn Mork "Mass Storage", 2050ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2051ab4b7164SBjørn Mork 0), 2052ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x143D, 0x0000, 0x0000, 2053ab4b7164SBjørn Mork "HUAWEI MOBILE", 2054ab4b7164SBjørn Mork "Mass Storage", 2055ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2056ab4b7164SBjørn Mork 0), 2057ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x143E, 0x0000, 0x0000, 2058ab4b7164SBjørn Mork "HUAWEI MOBILE", 2059ab4b7164SBjørn Mork "Mass Storage", 2060ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 2061ab4b7164SBjørn Mork 0), 2062ab4b7164SBjørn Mork UNUSUAL_DEV( 0x12d1, 0x143F, 0x0000, 0x0000, 2063ab4b7164SBjørn Mork "HUAWEI MOBILE", 2064ab4b7164SBjørn Mork "Mass Storage", 2065ab4b7164SBjørn Mork USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, 20661460e5e4Sfangxiaozhi 0), 2067d853d872SJohann Wilhelm 20687b1cbebaSPhil Dibowitz /* Reported by Vilius Bilinkevicius <vilisas AT xxx DOT lt) */ 20697b1cbebaSPhil Dibowitz UNUSUAL_DEV( 0x132b, 0x000b, 0x0001, 0x0001, 20707b1cbebaSPhil Dibowitz "Minolta", 20717b1cbebaSPhil Dibowitz "Dimage Z10", 20728fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 20737b1cbebaSPhil Dibowitz 0 ), 20747b1cbebaSPhil Dibowitz 20751da177e4SLinus Torvalds /* Reported by Kotrla Vitezslav <kotrla@ceb.cz> */ 20761da177e4SLinus Torvalds UNUSUAL_DEV( 0x1370, 0x6828, 0x0110, 0x0110, 20771da177e4SLinus Torvalds "SWISSBIT", 20781da177e4SLinus Torvalds "Black Silver", 20798fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 20801da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 20811da177e4SLinus Torvalds 2082d595259fSTobias Jakobi /* 2083d595259fSTobias Jakobi * Reported by Tobias Jakobi <tjakobi@math.uni-bielefeld.de> 2084d595259fSTobias Jakobi * The INIC-3619 bridge is used in the StarTech SLSODDU33B 2085d595259fSTobias Jakobi * SATA-USB enclosure for slimline optical drives. 2086d595259fSTobias Jakobi * 2087d595259fSTobias Jakobi * The quirk enables MakeMKV to properly exchange keys with 2088d595259fSTobias Jakobi * an installed BD drive. 2089d595259fSTobias Jakobi */ 2090d595259fSTobias Jakobi UNUSUAL_DEV( 0x13fd, 0x3609, 0x0209, 0x0209, 2091d595259fSTobias Jakobi "Initio Corporation", 2092d595259fSTobias Jakobi "INIC-3619", 2093d595259fSTobias Jakobi USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2094d595259fSTobias Jakobi US_FL_IGNORE_RESIDUE ), 2095d595259fSTobias Jakobi 2096cec28a54SQinglin Ye /* Reported by Qinglin Ye <yestyle@gmail.com> */ 2097cec28a54SQinglin Ye UNUSUAL_DEV( 0x13fe, 0x3600, 0x0100, 0x0100, 2098cec28a54SQinglin Ye "Kingston", 2099cec28a54SQinglin Ye "DT 101 G2", 2100cec28a54SQinglin Ye USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2101cec28a54SQinglin Ye US_FL_BULK_IGNORE_TAG ), 2102cec28a54SQinglin Ye 2103f1cd4ad2SPhil Dibowitz /* Reported by Francesco Foresti <frafore@tiscali.it> */ 2104f1cd4ad2SPhil Dibowitz UNUSUAL_DEV( 0x14cd, 0x6600, 0x0201, 0x0201, 2105f1cd4ad2SPhil Dibowitz "Super Top", 2106f1cd4ad2SPhil Dibowitz "IDE DEVICE", 21078fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2108f1cd4ad2SPhil Dibowitz US_FL_IGNORE_RESIDUE ), 2109f1cd4ad2SPhil Dibowitz 2110b14bf2d0SAlan Stern /* Reported by Michael Büsch <m@bues.ch> */ 21119fa62b1aSDmitry Katsubo UNUSUAL_DEV( 0x152d, 0x0567, 0x0114, 0x0116, 2112b14bf2d0SAlan Stern "JMicron", 2113b14bf2d0SAlan Stern "USB to ATA/ATAPI Bridge", 2114b14bf2d0SAlan Stern USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2115b14bf2d0SAlan Stern US_FL_BROKEN_FUA ), 2116b14bf2d0SAlan Stern 2117f0183a33SFelipe Balbi /* 2118f0183a33SFelipe Balbi * Reported by Alexandre Oliva <oliva@lsd.ic.unicamp.br> 21193030ca4cSPhil Dibowitz * JMicron responds to USN and several other SCSI ioctls with a 21203030ca4cSPhil Dibowitz * residue that causes subsequent I/O requests to fail. */ 21213030ca4cSPhil Dibowitz UNUSUAL_DEV( 0x152d, 0x2329, 0x0100, 0x0100, 21223030ca4cSPhil Dibowitz "JMicron", 21233030ca4cSPhil Dibowitz "USB to ATA/ATAPI Bridge", 21248fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2125dbe6e0c0SBen Efros US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ), 21263030ca4cSPhil Dibowitz 2127bf5c4136SDmitry Nezhevenko /* Reported by Dmitry Nezhevenko <dion@dion.org.ua> */ 2128bf5c4136SDmitry Nezhevenko UNUSUAL_DEV( 0x152d, 0x2566, 0x0114, 0x0114, 2129bf5c4136SDmitry Nezhevenko "JMicron", 2130bf5c4136SDmitry Nezhevenko "USB to ATA/ATAPI Bridge", 2131bf5c4136SDmitry Nezhevenko USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2132bf5c4136SDmitry Nezhevenko US_FL_BROKEN_FUA ), 2133bf5c4136SDmitry Nezhevenko 2134674aea07SOliver Neukum /* Reported-by George Cherian <george.cherian@cavium.com> */ 2135674aea07SOliver Neukum UNUSUAL_DEV(0x152d, 0x9561, 0x0000, 0x9999, 2136674aea07SOliver Neukum "JMicron", 2137674aea07SOliver Neukum "JMS56x", 2138674aea07SOliver Neukum USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2139674aea07SOliver Neukum US_FL_NO_REPORT_OPCODES), 2140674aea07SOliver Neukum 2141f0183a33SFelipe Balbi /* 2142f0183a33SFelipe Balbi * Entrega Technologies U1-SC25 (later Xircom PortGear PGSCSI) 2143c80b4495SMark * and Mac USB Dock USB-SCSI */ 2144c80b4495SMark UNUSUAL_DEV( 0x1645, 0x0007, 0x0100, 0x0133, 2145c80b4495SMark "Entrega Technologies", 2146c80b4495SMark "USB to SCSI Converter", 2147c80b4495SMark USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 2148c80b4495SMark US_FL_SCM_MULT_TARG ), 2149c80b4495SMark 2150f0183a33SFelipe Balbi /* 2151f0183a33SFelipe Balbi * Reported by Robert Schedel <r.schedel@yahoo.de> 2152f0183a33SFelipe Balbi * Note: this is a 'super top' device like the above 14cd/6600 device 2153f0183a33SFelipe Balbi */ 2154f1cd4ad2SPhil Dibowitz UNUSUAL_DEV( 0x1652, 0x6600, 0x0201, 0x0201, 2155f1cd4ad2SPhil Dibowitz "Teac", 2156f1cd4ad2SPhil Dibowitz "HD-35PUK-B", 21578fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2158f1cd4ad2SPhil Dibowitz US_FL_IGNORE_RESIDUE ), 2159f1cd4ad2SPhil Dibowitz 216032c37fc3SOliver Neukum /* Reported by Oliver Neukum <oneukum@suse.com> */ 216132c37fc3SOliver Neukum UNUSUAL_DEV( 0x174c, 0x55aa, 0x0100, 0x0100, 216232c37fc3SOliver Neukum "ASMedia", 216332c37fc3SOliver Neukum "AS2105", 216432c37fc3SOliver Neukum USB_SC_DEVICE, USB_PR_DEVICE, NULL, 216532c37fc3SOliver Neukum US_FL_NEEDS_CAP16), 216632c37fc3SOliver Neukum 2167df767b71SAlan Stern /* Reported by Jesse Feddema <jdfeddema@gmail.com> */ 2168df767b71SAlan Stern UNUSUAL_DEV( 0x177f, 0x0400, 0x0000, 0x0000, 2169df767b71SAlan Stern "Yarvik", 2170df767b71SAlan Stern "PMP400", 2171df767b71SAlan Stern USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2172df767b71SAlan Stern US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ), 2173df767b71SAlan Stern 2174b6a3ed67SMark UNUSUAL_DEV( 0x1822, 0x0001, 0x0000, 0x9999, 2175b6a3ed67SMark "Ariston Technologies", 2176b6a3ed67SMark "iConnect USB to SCSI adapter", 2177b6a3ed67SMark USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 2178b6a3ed67SMark US_FL_SCM_MULT_TARG ), 2179b6a3ed67SMark 2180f0183a33SFelipe Balbi /* 2181f0183a33SFelipe Balbi * Reported by Hans de Goede <hdegoede@redhat.com> 2182a78f4f1aSHans de Goede * These Appotech controllers are found in Picture Frames, they provide a 2183a78f4f1aSHans de Goede * (buggy) emulation of a cdrom drive which contains the windows software 2184f0183a33SFelipe Balbi * Uploading of pictures happens over the corresponding /dev/sg device. 2185f0183a33SFelipe Balbi */ 2186a78f4f1aSHans de Goede UNUSUAL_DEV( 0x1908, 0x1315, 0x0000, 0x0000, 2187a78f4f1aSHans de Goede "BUILDWIN", 2188a78f4f1aSHans de Goede "Photo Frame", 21898fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2190a78f4f1aSHans de Goede US_FL_BAD_SENSE ), 2191a78f4f1aSHans de Goede UNUSUAL_DEV( 0x1908, 0x1320, 0x0000, 0x0000, 2192a78f4f1aSHans de Goede "BUILDWIN", 2193a78f4f1aSHans de Goede "Photo Frame", 21948fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2195a78f4f1aSHans de Goede US_FL_BAD_SENSE ), 2196ae38c78aSHans de Goede UNUSUAL_DEV( 0x1908, 0x3335, 0x0200, 0x0200, 2197ae38c78aSHans de Goede "BUILDWIN", 2198ae38c78aSHans de Goede "Photo Frame", 2199ae38c78aSHans de Goede USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2200ae38c78aSHans de Goede US_FL_NO_READ_DISC_INFO ), 2201a78f4f1aSHans de Goede 2202f0183a33SFelipe Balbi /* 2203f0183a33SFelipe Balbi * Reported by Oliver Neukum <oneukum@suse.com> 22045fb2c782SOliver Neukum * This device morphes spontaneously into another device if the access 22055fb2c782SOliver Neukum * pattern of Windows isn't followed. Thus writable media would be dirty 22065fb2c782SOliver Neukum * if the initial instance is used. So the device is limited to its 22075fb2c782SOliver Neukum * virtual CD. 2208f0183a33SFelipe Balbi * And yes, the concept that BCD goes up to 9 is not heeded 2209f0183a33SFelipe Balbi */ 22105fb2c782SOliver Neukum UNUSUAL_DEV( 0x19d2, 0x1225, 0x0000, 0xffff, 22115fb2c782SOliver Neukum "ZTE,Incorporated", 22125fb2c782SOliver Neukum "ZTE WCDMA Technologies MSM", 22135fb2c782SOliver Neukum USB_SC_DEVICE, USB_PR_DEVICE, NULL, 22145fb2c782SOliver Neukum US_FL_SINGLE_LUN ), 22155fb2c782SOliver Neukum 2216f0183a33SFelipe Balbi /* 2217f0183a33SFelipe Balbi * Reported by Sven Geggus <sven-usbst@geggus.net> 221821c13a4fSAlan Stern * This encrypted pen drive returns bogus data for the initial READ(10). 221921c13a4fSAlan Stern */ 222021c13a4fSAlan Stern UNUSUAL_DEV( 0x1b1c, 0x1ab5, 0x0200, 0x0200, 222121c13a4fSAlan Stern "Corsair", 222221c13a4fSAlan Stern "Padlock v2", 222321c13a4fSAlan Stern USB_SC_DEVICE, USB_PR_DEVICE, NULL, 222421c13a4fSAlan Stern US_FL_INITIAL_READ10 ), 222521c13a4fSAlan Stern 2226f0183a33SFelipe Balbi /* 2227f0183a33SFelipe Balbi * Reported by Hans de Goede <hdegoede@redhat.com> 22282d64f31bSHans de Goede * These are mini projectors using USB for both power and video data transport 22292d64f31bSHans de Goede * The usb-storage interface is a virtual windows driver CD, which the gm12u320 22302d64f31bSHans de Goede * driver automatically converts into framebuffer & kms dri device nodes. 22312d64f31bSHans de Goede */ 22322d64f31bSHans de Goede UNUSUAL_DEV( 0x1de1, 0xc102, 0x0000, 0xffff, 22332d64f31bSHans de Goede "Grain-media Technology Corp.", 22342d64f31bSHans de Goede "USB3.0 Device GM12U320", 22352d64f31bSHans de Goede USB_SC_DEVICE, USB_PR_DEVICE, NULL, 22362d64f31bSHans de Goede US_FL_IGNORE_DEVICE ), 22372d64f31bSHans de Goede 2238f0183a33SFelipe Balbi /* 2239f0183a33SFelipe Balbi * Patch by Richard Schütz <r.schtz@t-online.de> 22407e1e7bd9SRichard Schütz * This external hard drive enclosure uses a JMicron chip which 2241f0183a33SFelipe Balbi * needs the US_FL_IGNORE_RESIDUE flag to work properly. 2242f0183a33SFelipe Balbi */ 22437e1e7bd9SRichard Schütz UNUSUAL_DEV( 0x1e68, 0x001b, 0x0000, 0x0000, 22447e1e7bd9SRichard Schütz "TrekStor GmbH & Co. KG", 22457e1e7bd9SRichard Schütz "DataStation maxi g.u", 22467e1e7bd9SRichard Schütz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 22477e1e7bd9SRichard Schütz US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ), 22487e1e7bd9SRichard Schütz 22493ea3c9b5SAlan Stern /* Reported by Jasper Mackenzie <scarletpimpernal@hotmail.com> */ 22503ea3c9b5SAlan Stern UNUSUAL_DEV( 0x1e74, 0x4621, 0x0000, 0x0000, 22513ea3c9b5SAlan Stern "Coby Electronics", 22523ea3c9b5SAlan Stern "MP3 Player", 22533ea3c9b5SAlan Stern USB_SC_DEVICE, USB_PR_DEVICE, NULL, 22543ea3c9b5SAlan Stern US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ), 22553ea3c9b5SAlan Stern 225657cde01aSMark Knibbs /* Supplied with some Castlewood ORB removable drives */ 225757cde01aSMark Knibbs UNUSUAL_DEV( 0x2027, 0xa001, 0x0000, 0x9999, 225857cde01aSMark Knibbs "Double-H Technology", 225957cde01aSMark Knibbs "USB to SCSI Intelligent Cable", 226057cde01aSMark Knibbs USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, 226157cde01aSMark Knibbs US_FL_SCM_MULT_TARG ), 226257cde01aSMark Knibbs 2263b90de8aeSOliver Neukum UNUSUAL_DEV( 0x2116, 0x0320, 0x0001, 0x0001, 2264b90de8aeSOliver Neukum "ST", 2265b90de8aeSOliver Neukum "2A", 22668fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2267b90de8aeSOliver Neukum US_FL_FIX_CAPACITY), 2268b90de8aeSOliver Neukum 2269f0183a33SFelipe Balbi /* 2270f0183a33SFelipe Balbi * patch submitted by Davide Perini <perini.davide@dpsoftware.org> 22710ddc0634SDavide Perini * and Renato Perini <rperini@email.it> 22720ddc0634SDavide Perini */ 22730ddc0634SDavide Perini UNUSUAL_DEV( 0x22b8, 0x3010, 0x0001, 0x0001, 22740ddc0634SDavide Perini "Motorola", 22750ddc0634SDavide Perini "RAZR V3x", 22768fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 22770ddc0634SDavide Perini US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), 22780ddc0634SDavide Perini 2279a7f3dd5dSPete Zaitcev /* 2280cc36bdd4SConstantin Baranov * Patch by Constantin Baranov <const@tltsu.ru> 2281cc36bdd4SConstantin Baranov * Report by Andreas Koenecke. 2282cc36bdd4SConstantin Baranov * Motorola ROKR Z6. 2283cc36bdd4SConstantin Baranov */ 2284cc36bdd4SConstantin Baranov UNUSUAL_DEV( 0x22b8, 0x6426, 0x0101, 0x0101, 2285cc36bdd4SConstantin Baranov "Motorola", 2286cc36bdd4SConstantin Baranov "MSnc.", 22878fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2288cc36bdd4SConstantin Baranov US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY | US_FL_BULK_IGNORE_TAG), 2289cc36bdd4SConstantin Baranov 22901da177e4SLinus Torvalds /* Reported by Radovan Garabik <garabik@kassiopeia.juls.savba.sk> */ 22911da177e4SLinus Torvalds UNUSUAL_DEV( 0x2735, 0x100b, 0x0000, 0x9999, 22921da177e4SLinus Torvalds "MPIO", 22931da177e4SLinus Torvalds "HS200", 22948fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 22951da177e4SLinus Torvalds US_FL_GO_SLOW ), 22961da177e4SLinus Torvalds 2297f0183a33SFelipe Balbi /* 2298f0183a33SFelipe Balbi * Reported by Frederic Marchal <frederic.marchal@wowcompany.com> 2299e8fab4ceSFrédéric Marchal * Mio Moov 330 2300e8fab4ceSFrédéric Marchal */ 2301e8fab4ceSFrédéric Marchal UNUSUAL_DEV( 0x3340, 0xffff, 0x0000, 0x0000, 2302e8fab4ceSFrédéric Marchal "Mitac", 2303e8fab4ceSFrédéric Marchal "Mio DigiWalker USB Sync", 23048fa7fd74SMichal Nazarewicz USB_SC_DEVICE,USB_PR_DEVICE,NULL, 2305e8fab4ceSFrédéric Marchal US_FL_MAX_SECTORS_64 ), 2306e8fab4ceSFrédéric Marchal 2307368ee646SAlan Stern /* Reported by Andrey Rahmatullin <wrar@altlinux.org> */ 2308368ee646SAlan Stern UNUSUAL_DEV( 0x4102, 0x1020, 0x0100, 0x0100, 2309368ee646SAlan Stern "iRiver", 2310368ee646SAlan Stern "MP3 T10", 23118fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2312368ee646SAlan Stern US_FL_IGNORE_RESIDUE ), 2313368ee646SAlan Stern 23142f13612aSSergey Pinaev /* Reported by Sergey Pinaev <dfo@antex.ru> */ 23152f13612aSSergey Pinaev UNUSUAL_DEV( 0x4102, 0x1059, 0x0000, 0x0000, 23162f13612aSSergey Pinaev "iRiver", 23172f13612aSSergey Pinaev "P7K", 23188fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 23192f13612aSSergey Pinaev US_FL_MAX_SECTORS_64 ), 23202f13612aSSergey Pinaev 232163dc3ff3SDavid Härdeman /* 232296de0e25SJan Engelhardt * David Härdeman <david@2gen.com> 232363dc3ff3SDavid Härdeman * The key makes the SCSI stack print confusing (but harmless) messages 232463dc3ff3SDavid Härdeman */ 232563dc3ff3SDavid Härdeman UNUSUAL_DEV( 0x4146, 0xba01, 0x0100, 0x0100, 232663dc3ff3SDavid Härdeman "Iomega", 232763dc3ff3SDavid Härdeman "Micro Mini 1GB", 23288fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), 232963dc3ff3SDavid Härdeman 2330a871e4f5SNick Bowler /* 2331a871e4f5SNick Bowler * Nick Bowler <nbowler@elliptictech.com> 2332a871e4f5SNick Bowler * SCSI stack spams (otherwise harmless) error messages. 2333a871e4f5SNick Bowler */ 2334a871e4f5SNick Bowler UNUSUAL_DEV( 0xc251, 0x4003, 0x0100, 0x0100, 2335a871e4f5SNick Bowler "Keil Software, Inc.", 2336a871e4f5SNick Bowler "V2M MotherBoard", 2337a871e4f5SNick Bowler USB_SC_DEVICE, USB_PR_DEVICE, NULL, 2338a871e4f5SNick Bowler US_FL_NOT_LOCKABLE), 2339a871e4f5SNick Bowler 2340a2149bceSAlan Stern /* Reported by Andrew Simmons <andrew.simmons@gmail.com> */ 2341a2149bceSAlan Stern UNUSUAL_DEV( 0xed06, 0x4500, 0x0001, 0x0001, 2342a2149bceSAlan Stern "DataStor", 2343a2149bceSAlan Stern "USB4500 FW1.04", 23448fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, 234561bf54b7SOliver Neukum US_FL_CAPACITY_HEURISTICS), 2346a2149bceSAlan Stern 234746c6e93fSChuck Short /* Reported by Alessio Treglia <quadrispro@ubuntu.com> */ 234846c6e93fSChuck Short UNUSUAL_DEV( 0xed10, 0x7636, 0x0001, 0x0001, 234946c6e93fSChuck Short "TGE", 235046c6e93fSChuck Short "Digital MP3 Audio Player", 23518fa7fd74SMichal Nazarewicz USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), 235246c6e93fSChuck Short 23535bfd5b5dSHans de Goede /* Unusual uas devices */ 23545bfd5b5dSHans de Goede #if IS_ENABLED(CONFIG_USB_UAS) 23555bfd5b5dSHans de Goede #include "unusual_uas.h" 23565bfd5b5dSHans de Goede #endif 23575bfd5b5dSHans de Goede 2358a00828e9SPete Zaitcev /* Control/Bulk transport for all SubClass values */ 2359f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_RBC, USB_PR_CB), 2360f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8020, USB_PR_CB), 2361f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_QIC, USB_PR_CB), 2362f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_UFI, USB_PR_CB), 2363f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8070, USB_PR_CB), 2364f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_SCSI, USB_PR_CB), 2365a00828e9SPete Zaitcev 2366a00828e9SPete Zaitcev /* Control/Bulk/Interrupt transport for all SubClass values */ 2367f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_RBC, USB_PR_CBI), 2368f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8020, USB_PR_CBI), 2369f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_QIC, USB_PR_CBI), 2370f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_UFI, USB_PR_CBI), 2371f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8070, USB_PR_CBI), 2372f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_SCSI, USB_PR_CBI), 2373a00828e9SPete Zaitcev 2374a00828e9SPete Zaitcev /* Bulk-only transport for all SubClass values */ 2375f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_RBC, USB_PR_BULK), 2376f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8020, USB_PR_BULK), 2377f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_QIC, USB_PR_BULK), 2378f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_UFI, USB_PR_BULK), 2379f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8070, USB_PR_BULK), 2380f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_SCSI, USB_PR_BULK), 2381