11da177e4SLinus Torvalds /* Driver for USB Mass Storage compliant devices 2093cf723SSteven Cole * Unusual Devices File 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Current development and maintenance by: 51da177e4SLinus Torvalds * (c) 2000-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net) 61da177e4SLinus Torvalds * 71da177e4SLinus Torvalds * Initial work by: 81da177e4SLinus Torvalds * (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc. 91da177e4SLinus Torvalds * 101da177e4SLinus Torvalds * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more 111da177e4SLinus Torvalds * information about this driver. 121da177e4SLinus Torvalds * 131da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or modify it 141da177e4SLinus Torvalds * under the terms of the GNU General Public License as published by the 151da177e4SLinus Torvalds * Free Software Foundation; either version 2, or (at your option) any 161da177e4SLinus Torvalds * later version. 171da177e4SLinus Torvalds * 181da177e4SLinus Torvalds * This program is distributed in the hope that it will be useful, but 191da177e4SLinus Torvalds * WITHOUT ANY WARRANTY; without even the implied warranty of 201da177e4SLinus Torvalds * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 211da177e4SLinus Torvalds * General Public License for more details. 221da177e4SLinus Torvalds * 231da177e4SLinus Torvalds * You should have received a copy of the GNU General Public License along 241da177e4SLinus Torvalds * with this program; if not, write to the Free Software Foundation, Inc., 251da177e4SLinus Torvalds * 675 Mass Ave, Cambridge, MA 02139, USA. 261da177e4SLinus Torvalds */ 271da177e4SLinus Torvalds 281da177e4SLinus Torvalds /* IMPORTANT NOTE: This file must be included in another file which does 291da177e4SLinus Torvalds * the following thing for it to work: 3025ff1c31SAlan Stern * The UNUSUAL_DEV, COMPLIANT_DEV, and USUAL_DEV macros must be defined 3125ff1c31SAlan Stern * before this file is included. 321da177e4SLinus Torvalds */ 331da177e4SLinus Torvalds 341da177e4SLinus Torvalds /* If you edit this file, please try to keep it sorted first by VendorID, 351da177e4SLinus Torvalds * then by ProductID. 361da177e4SLinus Torvalds * 371da177e4SLinus Torvalds * If you want to add an entry for this file, be sure to include the 381da177e4SLinus Torvalds * following information: 391da177e4SLinus Torvalds * - a patch that adds the entry for your device, including your 401da177e4SLinus Torvalds * email address right above the entry (plus maybe a brief 411da177e4SLinus Torvalds * explanation of the reason for the entry), 421da177e4SLinus Torvalds * - a copy of /proc/bus/usb/devices with your device plugged in 431da177e4SLinus Torvalds * running with this patch. 441da177e4SLinus Torvalds * Send your submission to either Phil Dibowitz <phil@ipom.com> or 451da177e4SLinus Torvalds * Alan Stern <stern@rowland.harvard.edu>, and don't forget to CC: the 46cef03f8fSAndrew Lunn * USB development list <linux-usb@vger.kernel.org> and the USB storage list 47cef03f8fSAndrew Lunn * <usb-storage@lists.one-eyed-alien.net> 481da177e4SLinus Torvalds */ 491da177e4SLinus Torvalds 5025ff1c31SAlan Stern /* Note: If you add an entry only in order to set the CAPACITY_OK flag, 5125ff1c31SAlan Stern * use the COMPLIANT_DEV macro instead of UNUSUAL_DEV. This is 5225ff1c31SAlan Stern * because such entries mark devices which actually work correctly, 5325ff1c31SAlan Stern * as opposed to devices that do something strangely or wrongly. 5425ff1c31SAlan Stern */ 5525ff1c31SAlan Stern 568af60be9SVivian Bregier /* patch submitted by Vivian Bregier <Vivian.Bregier@imag.fr> 578af60be9SVivian Bregier */ 588af60be9SVivian Bregier UNUSUAL_DEV( 0x03eb, 0x2002, 0x0100, 0x0100, 598af60be9SVivian Bregier "ATMEL", 608af60be9SVivian Bregier "SND1 Storage", 618af60be9SVivian Bregier US_SC_DEVICE, US_PR_DEVICE, NULL, 628af60be9SVivian Bregier US_FL_IGNORE_RESIDUE), 638af60be9SVivian Bregier 641ff15e8eSTobias Lorenz /* modified by Tobias Lorenz <tobias.lorenz@gmx.net> */ 651ff15e8eSTobias Lorenz UNUSUAL_DEV( 0x03ee, 0x6901, 0x0000, 0x0200, 661da177e4SLinus Torvalds "Mitsumi", 671da177e4SLinus Torvalds "USB FDD", 681da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 691da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 701da177e4SLinus Torvalds 719d5847bcSRodolfo Quesada /* Reported by Rodolfo Quesada <rquesada@roqz.net> */ 729d5847bcSRodolfo Quesada UNUSUAL_DEV( 0x03ee, 0x6906, 0x0003, 0x0003, 739d5847bcSRodolfo Quesada "VIA Technologies Inc.", 749d5847bcSRodolfo Quesada "Mitsumi multi cardreader", 759d5847bcSRodolfo Quesada US_SC_DEVICE, US_PR_DEVICE, NULL, 769d5847bcSRodolfo Quesada US_FL_IGNORE_RESIDUE ), 779d5847bcSRodolfo Quesada 781da177e4SLinus Torvalds UNUSUAL_DEV( 0x03f0, 0x0107, 0x0200, 0x0200, 791da177e4SLinus Torvalds "HP", 801da177e4SLinus Torvalds "CD-Writer+", 811da177e4SLinus Torvalds US_SC_8070, US_PR_CB, NULL, 0), 821da177e4SLinus Torvalds 831da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_USBAT 841da177e4SLinus Torvalds UNUSUAL_DEV( 0x03f0, 0x0207, 0x0001, 0x0001, 851da177e4SLinus Torvalds "HP", 861da177e4SLinus Torvalds "CD-Writer+ 8200e", 87bdcfd9e3SPeter Chubb US_SC_8070, US_PR_USBAT, init_usbat_cd, 0), 881da177e4SLinus Torvalds 891da177e4SLinus Torvalds UNUSUAL_DEV( 0x03f0, 0x0307, 0x0001, 0x0001, 901da177e4SLinus Torvalds "HP", 911da177e4SLinus Torvalds "CD-Writer+ CD-4e", 92bdcfd9e3SPeter Chubb US_SC_8070, US_PR_USBAT, init_usbat_cd, 0), 931da177e4SLinus Torvalds #endif 941da177e4SLinus Torvalds 95dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */ 96dbe6e0c0SBen Efros UNUSUAL_DEV( 0x03f0, 0x070c, 0x0000, 0x0000, 97dbe6e0c0SBen Efros "HP", 98dbe6e0c0SBen Efros "Personal Media Drive", 99dbe6e0c0SBen Efros US_SC_DEVICE, US_PR_DEVICE, NULL, 100dbe6e0c0SBen Efros US_FL_SANE_SENSE ), 101dbe6e0c0SBen Efros 1024b24f91cSGrant Grundler /* 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", 1084b24f91cSGrant Grundler US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_CAPACITY), 1094b24f91cSGrant Grundler 1101ea640ceSPhil Dibowitz /* Reported by Sebastian Kapfer <sebastian_kapfer@gmx.net> 1111ea640ceSPhil Dibowitz * and Olaf Hering <olh@suse.de> (different bcd's, same vendor/product) 1121ea640ceSPhil Dibowitz * for USB floppies that need the SINGLE_LUN enforcement. 1131ea640ceSPhil Dibowitz */ 1141ea640ceSPhil Dibowitz UNUSUAL_DEV( 0x0409, 0x0040, 0x0000, 0x9999, 1151ea640ceSPhil Dibowitz "NEC", 1161ea640ceSPhil Dibowitz "NEC USB UF000x", 1171ea640ceSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 1181ea640ceSPhil Dibowitz US_FL_SINGLE_LUN ), 1191ea640ceSPhil Dibowitz 1203e220e95SPhil Dibowitz /* Patch submitted by Mihnea-Costin Grigore <mihnea@zulu.ro> */ 1213e220e95SPhil Dibowitz UNUSUAL_DEV( 0x040d, 0x6205, 0x0003, 0x0003, 1223e220e95SPhil Dibowitz "VIA Technologies Inc.", 1233e220e95SPhil Dibowitz "USB 2.0 Card Reader", 1243e220e95SPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 1253e220e95SPhil Dibowitz US_FL_IGNORE_RESIDUE ), 1263e220e95SPhil Dibowitz 1271da177e4SLinus Torvalds /* Deduced by Jonathan Woithe <jwoithe@physics.adelaide.edu.au> 1281da177e4SLinus Torvalds * Entry needed for flags: US_FL_FIX_INQUIRY because initial inquiry message 1291da177e4SLinus Torvalds * always fails and confuses drive. 1301da177e4SLinus Torvalds */ 1311da177e4SLinus Torvalds UNUSUAL_DEV( 0x0411, 0x001c, 0x0113, 0x0113, 1321da177e4SLinus Torvalds "Buffalo", 1331da177e4SLinus Torvalds "DUB-P40G HDD", 1341da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 1351da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 1361da177e4SLinus Torvalds 137d8840d60SErnis /* Submitted by Ernestas Vaiciukevicius <ernisv@gmail.com> */ 138d8840d60SErnis UNUSUAL_DEV( 0x0419, 0x0100, 0x0100, 0x0100, 139d8840d60SErnis "Samsung Info. Systems America, Inc.", 140d8840d60SErnis "MP3 Player", 141d8840d60SErnis US_SC_DEVICE, US_PR_DEVICE, NULL, 142d8840d60SErnis US_FL_IGNORE_RESIDUE ), 143d8840d60SErnis 1445501a48cSPhil Dibowitz /* Reported by Orgad Shaneh <orgads@gmail.com> */ 1455501a48cSPhil Dibowitz UNUSUAL_DEV( 0x0419, 0xaace, 0x0100, 0x0100, 1465501a48cSPhil Dibowitz "Samsung", "MP3 Player", 1475501a48cSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 1485501a48cSPhil Dibowitz US_FL_IGNORE_RESIDUE ), 1495501a48cSPhil Dibowitz 1501d614a4bSAlan Stern /* Reported by Christian Leber <christian@leber.de> */ 1511d614a4bSAlan Stern UNUSUAL_DEV( 0x0419, 0xaaf5, 0x0100, 0x0100, 1521d614a4bSAlan Stern "TrekStor", 1531d614a4bSAlan Stern "i.Beat 115 2.0", 1541d614a4bSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 1551d614a4bSAlan Stern US_FL_IGNORE_RESIDUE | US_FL_NOT_LOCKABLE ), 1561d614a4bSAlan Stern 157e4a16e0cSPhil Dibowitz /* Reported by Stefan Werner <dustbln@gmx.de> */ 158e4a16e0cSPhil Dibowitz UNUSUAL_DEV( 0x0419, 0xaaf6, 0x0100, 0x0100, 159e4a16e0cSPhil Dibowitz "TrekStor", 160e4a16e0cSPhil Dibowitz "i.Beat Joy 2.0", 161e4a16e0cSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 162e4a16e0cSPhil Dibowitz US_FL_IGNORE_RESIDUE ), 163e4a16e0cSPhil Dibowitz 16423b7885dSPete Zaitcev /* Reported by Pete Zaitcev <zaitcev@redhat.com>, bz#176584 */ 16523b7885dSPete Zaitcev UNUSUAL_DEV( 0x0420, 0x0001, 0x0100, 0x0100, 16623b7885dSPete Zaitcev "GENERIC", "MP3 PLAYER", /* MyMusix PD-205 on the outside. */ 16723b7885dSPete Zaitcev US_SC_DEVICE, US_PR_DEVICE, NULL, 16823b7885dSPete Zaitcev US_FL_IGNORE_RESIDUE ), 16923b7885dSPete Zaitcev 1700d8c7aeaSAndrew Nayenko /* Reported by Andrew Nayenko <relan@bk.ru> */ 1710d8c7aeaSAndrew Nayenko UNUSUAL_DEV( 0x0421, 0x0019, 0x0592, 0x0592, 1720d8c7aeaSAndrew Nayenko "Nokia", 1730d8c7aeaSAndrew Nayenko "Nokia 6288", 1740d8c7aeaSAndrew Nayenko US_SC_DEVICE, US_PR_DEVICE, NULL, 1750d8c7aeaSAndrew Nayenko US_FL_MAX_SECTORS_64 ), 1760d8c7aeaSAndrew Nayenko 177de1caa47SAlan Stern /* Reported by Mario Rettig <mariorettig@web.de> */ 178de1caa47SAlan Stern UNUSUAL_DEV( 0x0421, 0x042e, 0x0100, 0x0100, 179de1caa47SAlan Stern "Nokia", 180de1caa47SAlan Stern "Nokia 3250", 181de1caa47SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 182de1caa47SAlan Stern US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 183de1caa47SAlan Stern 184fe1ec341SAndrew Morton /* Reported by <honkkis@gmail.com> */ 185fe1ec341SAndrew Morton UNUSUAL_DEV( 0x0421, 0x0433, 0x0100, 0x0100, 186fe1ec341SAndrew Morton "Nokia", 187fe1ec341SAndrew Morton "E70", 188fe1ec341SAndrew Morton US_SC_DEVICE, US_PR_DEVICE, NULL, 189fe1ec341SAndrew Morton US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 190fe1ec341SAndrew Morton 1917923811aSAlan Stern /* Reported by Jon Hart <Jon.Hart@web.de> */ 1927923811aSAlan Stern UNUSUAL_DEV( 0x0421, 0x0434, 0x0100, 0x0100, 1937923811aSAlan Stern "Nokia", 1947923811aSAlan Stern "E60", 1957923811aSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 1967923811aSAlan Stern US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), 1977923811aSAlan Stern 1989a01355eSAlan Stern /* Reported by Sumedha Swamy <sumedhaswamy@gmail.com> and 1999a01355eSAlan Stern * Einar Th. Einarsson <einarthered@gmail.com> */ 2009a01355eSAlan Stern UNUSUAL_DEV( 0x0421, 0x0444, 0x0100, 0x0100, 2019a01355eSAlan Stern "Nokia", 2029a01355eSAlan Stern "N91", 2039a01355eSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 2049a01355eSAlan Stern US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 2059a01355eSAlan Stern 206d5681fe8SAlan Stern /* Reported by Jiri Slaby <jirislaby@gmail.com> and 207d5681fe8SAlan Stern * Rene C. Castberg <Rene@Castberg.org> */ 208d5681fe8SAlan Stern UNUSUAL_DEV( 0x0421, 0x0446, 0x0100, 0x0100, 209d5681fe8SAlan Stern "Nokia", 210d5681fe8SAlan Stern "N80", 211d5681fe8SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 212d5681fe8SAlan Stern US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 213d5681fe8SAlan Stern 21457b01b1eSAlan Stern /* Reported by Matthew Bloch <matthew@bytemark.co.uk> */ 21557b01b1eSAlan Stern UNUSUAL_DEV( 0x0421, 0x044e, 0x0100, 0x0100, 21657b01b1eSAlan Stern "Nokia", 21757b01b1eSAlan Stern "E61", 21857b01b1eSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 21957b01b1eSAlan Stern US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 22057b01b1eSAlan Stern 221e4a20daaSAlan Stern /* Reported by Bardur Arantsson <bardur@scientician.net> */ 222393e5511SAlan Stern UNUSUAL_DEV( 0x0421, 0x047c, 0x0370, 0x0610, 223e4a20daaSAlan Stern "Nokia", 224e4a20daaSAlan Stern "6131", 225e4a20daaSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 226e4a20daaSAlan Stern US_FL_MAX_SECTORS_64 ), 227e4a20daaSAlan Stern 22839559b4fSManuel Osdoba /* Reported by Manuel Osdoba <manuel.osdoba@tu-ilmenau.de> */ 22939559b4fSManuel Osdoba UNUSUAL_DEV( 0x0421, 0x0492, 0x0452, 0x0452, 23039559b4fSManuel Osdoba "Nokia", 23139559b4fSManuel Osdoba "Nokia 6233", 23239559b4fSManuel Osdoba US_SC_DEVICE, US_PR_DEVICE, NULL, 23339559b4fSManuel Osdoba US_FL_MAX_SECTORS_64 ), 23439559b4fSManuel Osdoba 2353ccf25ceSAlan Stern /* Reported by Alex Corcoles <alex@corcoles.net> */ 2363ccf25ceSAlan Stern UNUSUAL_DEV( 0x0421, 0x0495, 0x0370, 0x0370, 2373ccf25ceSAlan Stern "Nokia", 2383ccf25ceSAlan Stern "6234", 2393ccf25ceSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 2403ccf25ceSAlan Stern US_FL_MAX_SECTORS_64 ), 2413ccf25ceSAlan Stern 2421ea640ceSPhil Dibowitz /* Reported by Olaf Hering <olh@suse.de> from novell bug #105878 */ 2431ea640ceSPhil Dibowitz UNUSUAL_DEV( 0x0424, 0x0fdc, 0x0210, 0x0210, 2441ea640ceSPhil Dibowitz "SMSC", 2451ea640ceSPhil Dibowitz "FDC GOLD-2.30", 2461ea640ceSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 2471ea640ceSPhil Dibowitz US_FL_SINGLE_LUN ), 2481ea640ceSPhil Dibowitz 249c20b15fdSAlan Stern #ifdef CONFIG_USB_STORAGE_SDDR09 2501da177e4SLinus Torvalds UNUSUAL_DEV( 0x0436, 0x0005, 0x0100, 0x0100, 2511da177e4SLinus Torvalds "Microtech", 2521da177e4SLinus Torvalds "CameraMate (DPCM_USB)", 2531da177e4SLinus Torvalds US_SC_SCSI, US_PR_DPCM_USB, NULL, 0 ), 254c20b15fdSAlan Stern #else 255c20b15fdSAlan Stern UNUSUAL_DEV( 0x0436, 0x0005, 0x0100, 0x0100, 256c20b15fdSAlan Stern "Microtech", 257c20b15fdSAlan Stern "CameraMate", 258c20b15fdSAlan Stern US_SC_SCSI, US_PR_CB, NULL, 259c20b15fdSAlan Stern US_FL_SINGLE_LUN ), 2601da177e4SLinus Torvalds #endif 2611da177e4SLinus Torvalds 26216f05be7SPhil Dibowitz /* Patch submitted by Daniel Drake <dsd@gentoo.org> 26316f05be7SPhil Dibowitz * Device reports nonsense bInterfaceProtocol 6 when connected over USB2 */ 26416f05be7SPhil Dibowitz UNUSUAL_DEV( 0x0451, 0x5416, 0x0100, 0x0100, 26516f05be7SPhil Dibowitz "Neuros Audio", 26616f05be7SPhil Dibowitz "USB 2.0 HD 2.5", 26716f05be7SPhil Dibowitz US_SC_DEVICE, US_PR_BULK, NULL, 26816f05be7SPhil Dibowitz US_FL_NEED_OVERRIDE ), 26916f05be7SPhil Dibowitz 270490dce15SPete Zaitcev /* 271490dce15SPete Zaitcev * Pete Zaitcev <zaitcev@yahoo.com>, from Patrick C. F. Ernzer, bz#162559. 272490dce15SPete Zaitcev * The key does not actually break, but it returns zero sense which 273490dce15SPete Zaitcev * makes our SCSI stack to print confusing messages. 274490dce15SPete Zaitcev */ 275490dce15SPete Zaitcev UNUSUAL_DEV( 0x0457, 0x0150, 0x0100, 0x0100, 276490dce15SPete Zaitcev "USBest Technology", /* sold by Transcend */ 277490dce15SPete Zaitcev "USB Mass Storage Device", 278490dce15SPete Zaitcev US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), 279490dce15SPete Zaitcev 28016f05be7SPhil Dibowitz /* 28116f05be7SPhil Dibowitz * Bohdan Linda <bohdan.linda@gmail.com> 28216f05be7SPhil Dibowitz * 1GB USB sticks MyFlash High Speed. I have restricted 28316f05be7SPhil Dibowitz * the revision to my model only 28416f05be7SPhil Dibowitz */ 28516f05be7SPhil Dibowitz UNUSUAL_DEV( 0x0457, 0x0151, 0x0100, 0x0100, 28616f05be7SPhil Dibowitz "USB 2.0", 28716f05be7SPhil Dibowitz "Flash Disk", 28816f05be7SPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 28916f05be7SPhil Dibowitz US_FL_NOT_LOCKABLE ), 290e1c37b8dSDaniel Drake 2917f38aa0fSAndrew Morton #ifdef CONFIG_USB_STORAGE_KARMA 292abb02fdfSMatthew Dharm UNUSUAL_DEV( 0x045a, 0x5210, 0x0101, 0x0101, 293abb02fdfSMatthew Dharm "Rio", 294abb02fdfSMatthew Dharm "Rio Karma", 295dfe0d3baSMatthew Dharm US_SC_SCSI, US_PR_KARMA, rio_karma_init, 0), 2967f38aa0fSAndrew Morton #endif 297abb02fdfSMatthew Dharm 298a6b7b034SAlan Stern /* Reported by Tamas Kerecsen <kerecsen@bigfoot.com> 299a6b7b034SAlan Stern * Obviously the PROM has not been customized by the VAR; 300a6b7b034SAlan Stern * the Vendor and Product string descriptors are: 301a6b7b034SAlan Stern * Generic Mass Storage (PROTOTYPE--Remember to change idVendor) 302a6b7b034SAlan Stern * Generic Manufacturer (PROTOTYPE--Remember to change idVendor) 303a6b7b034SAlan Stern */ 304a6b7b034SAlan Stern UNUSUAL_DEV( 0x045e, 0xffff, 0x0000, 0x0000, 305a6b7b034SAlan Stern "Mitac", 306a6b7b034SAlan Stern "GPS", 307a6b7b034SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 308a6b7b034SAlan Stern US_FL_MAX_SECTORS_64 ), 309a6b7b034SAlan Stern 310379885a9SPete Zaitcev /* 311379885a9SPete Zaitcev * This virtual floppy is found in Sun equipment (x4600, x4200m2, etc.) 312379885a9SPete Zaitcev * Reported by Pete Zaitcev <zaitcev@redhat.com> 313379885a9SPete Zaitcev * This device chokes on both version of MODE SENSE which we have, so 314379885a9SPete Zaitcev * use_10_for_ms is not effective, and we use US_FL_NO_WP_DETECT. 315379885a9SPete Zaitcev */ 316379885a9SPete Zaitcev UNUSUAL_DEV( 0x046b, 0xff40, 0x0100, 0x0100, 317379885a9SPete Zaitcev "AMI", 318379885a9SPete Zaitcev "Virtual Floppy", 319379885a9SPete Zaitcev US_SC_DEVICE, US_PR_DEVICE, NULL, 320379885a9SPete Zaitcev US_FL_NO_WP_DETECT), 321379885a9SPete Zaitcev 3221da177e4SLinus Torvalds /* Patch submitted by Philipp Friedrich <philipp@void.at> */ 3231da177e4SLinus Torvalds UNUSUAL_DEV( 0x0482, 0x0100, 0x0100, 0x0100, 3241da177e4SLinus Torvalds "Kyocera", 3251da177e4SLinus Torvalds "Finecam S3x", 3261da177e4SLinus Torvalds US_SC_8070, US_PR_CB, NULL, US_FL_FIX_INQUIRY), 3271da177e4SLinus Torvalds 3281da177e4SLinus Torvalds /* Patch submitted by Philipp Friedrich <philipp@void.at> */ 3291da177e4SLinus Torvalds UNUSUAL_DEV( 0x0482, 0x0101, 0x0100, 0x0100, 3301da177e4SLinus Torvalds "Kyocera", 3311da177e4SLinus Torvalds "Finecam S4", 3321da177e4SLinus Torvalds US_SC_8070, US_PR_CB, NULL, US_FL_FIX_INQUIRY), 3331da177e4SLinus Torvalds 3341da177e4SLinus Torvalds /* Patch submitted by Stephane Galles <stephane.galles@free.fr> */ 3351da177e4SLinus Torvalds UNUSUAL_DEV( 0x0482, 0x0103, 0x0100, 0x0100, 3361da177e4SLinus Torvalds "Kyocera", 3371da177e4SLinus Torvalds "Finecam S5", 3381da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY), 3391da177e4SLinus Torvalds 34074511bb3SJens Taprogge /* Patch submitted by Jens Taprogge <jens.taprogge@taprogge.org> */ 34174511bb3SJens Taprogge UNUSUAL_DEV( 0x0482, 0x0107, 0x0100, 0x0100, 34274511bb3SJens Taprogge "Kyocera", 34374511bb3SJens Taprogge "CONTAX SL300R T*", 34474511bb3SJens Taprogge US_SC_DEVICE, US_PR_DEVICE, NULL, 34574511bb3SJens Taprogge US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE), 34674511bb3SJens Taprogge 3471da177e4SLinus Torvalds /* Reported by Paul Stewart <stewart@wetlogic.net> 3481da177e4SLinus Torvalds * This entry is needed because the device reports Sub=ff */ 3491da177e4SLinus Torvalds UNUSUAL_DEV( 0x04a4, 0x0004, 0x0001, 0x0001, 3501da177e4SLinus Torvalds "Hitachi", 3511da177e4SLinus Torvalds "DVD-CAM DZ-MV100A Camcorder", 3521da177e4SLinus Torvalds US_SC_SCSI, US_PR_CB, NULL, US_FL_SINGLE_LUN), 3531da177e4SLinus Torvalds 354f9dc8f99SAlan Stern /* BENQ DC5330 355f9dc8f99SAlan Stern * Reported by Manuel Fombuena <mfombuena@ya.com> and 356f9dc8f99SAlan Stern * Frank Copeland <fjc@thingy.apana.org.au> */ 357f9dc8f99SAlan Stern UNUSUAL_DEV( 0x04a5, 0x3010, 0x0100, 0x0100, 358f9dc8f99SAlan Stern "Tekom Technologies, Inc", 359f9dc8f99SAlan Stern "300_CAMERA", 360f9dc8f99SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 361f9dc8f99SAlan Stern US_FL_IGNORE_RESIDUE ), 362f9dc8f99SAlan Stern 36317fa6e55Sfabien COSSE /* Patch for Nikon coolpix 2000 36417fa6e55Sfabien COSSE * Submitted by Fabien Cosse <fabien.cosse@wanadoo.fr>*/ 36517fa6e55Sfabien COSSE UNUSUAL_DEV( 0x04b0, 0x0301, 0x0010, 0x0010, 36617fa6e55Sfabien COSSE "NIKON", 36717fa6e55Sfabien COSSE "NIKON DSC E2000", 36817fa6e55Sfabien COSSE US_SC_DEVICE, US_PR_DEVICE,NULL, 36917fa6e55Sfabien COSSE US_FL_NOT_LOCKABLE ), 37017fa6e55Sfabien COSSE 37133abc04fSDoug Maxey /* Reported by Doug Maxey (dwm@austin.ibm.com) */ 37233abc04fSDoug Maxey UNUSUAL_DEV( 0x04b3, 0x4001, 0x0110, 0x0110, 37333abc04fSDoug Maxey "IBM", 37433abc04fSDoug Maxey "IBM RSA2", 37533abc04fSDoug Maxey US_SC_DEVICE, US_PR_CB, NULL, 37633abc04fSDoug Maxey US_FL_MAX_SECTORS_MIN), 37733abc04fSDoug Maxey 378ed3e8fcaSPhil Dibowitz #ifdef CONFIG_USB_STORAGE_CYPRESS_ATACB 379e72616f4Smatthieu castet /* CY7C68300 : support atacb */ 380ed3e8fcaSPhil Dibowitz UNUSUAL_DEV( 0x04b4, 0x6830, 0x0000, 0x9999, 381ed3e8fcaSPhil Dibowitz "Cypress", 382ed3e8fcaSPhil Dibowitz "Cypress AT2LP", 383c7257bd2SAlan Stern US_SC_CYP_ATACB, US_PR_DEVICE, NULL, 384ed3e8fcaSPhil Dibowitz 0), 385e72616f4Smatthieu castet 386e72616f4Smatthieu castet /* CY7C68310 : support atacb and atacb2 */ 387e72616f4Smatthieu castet UNUSUAL_DEV( 0x04b4, 0x6831, 0x0000, 0x9999, 388e72616f4Smatthieu castet "Cypress", 389e72616f4Smatthieu castet "Cypress ISD-300LP", 390e72616f4Smatthieu castet US_SC_CYP_ATACB, US_PR_DEVICE, NULL, 391e72616f4Smatthieu castet 0), 392ed3e8fcaSPhil Dibowitz #endif 393ed3e8fcaSPhil Dibowitz 3941da177e4SLinus Torvalds /* Reported by Simon Levitt <simon@whattf.com> 3951da177e4SLinus Torvalds * This entry needs Sub and Proto fields */ 3961da177e4SLinus Torvalds UNUSUAL_DEV( 0x04b8, 0x0601, 0x0100, 0x0100, 3971da177e4SLinus Torvalds "Epson", 3981da177e4SLinus Torvalds "875DC Storage", 3991da177e4SLinus Torvalds US_SC_SCSI, US_PR_CB, NULL, US_FL_FIX_INQUIRY), 4001da177e4SLinus Torvalds 4011da177e4SLinus Torvalds /* Reported by Khalid Aziz <khalid@gonehiking.org> 4021da177e4SLinus Torvalds * This entry is needed because the device reports Sub=ff */ 4031da177e4SLinus Torvalds UNUSUAL_DEV( 0x04b8, 0x0602, 0x0110, 0x0110, 4041da177e4SLinus Torvalds "Epson", 4051da177e4SLinus Torvalds "785EPX Storage", 4061da177e4SLinus Torvalds US_SC_SCSI, US_PR_BULK, NULL, US_FL_SINGLE_LUN), 4071da177e4SLinus Torvalds 4081da177e4SLinus Torvalds /* Not sure who reported this originally but 4091da177e4SLinus Torvalds * Pavel Machek <pavel@ucw.cz> reported that the extra US_FL_SINGLE_LUN 4101da177e4SLinus Torvalds * flag be added */ 4111da177e4SLinus Torvalds UNUSUAL_DEV( 0x04cb, 0x0100, 0x0000, 0x2210, 4121da177e4SLinus Torvalds "Fujifilm", 4131da177e4SLinus Torvalds "FinePix 1400Zoom", 4141da177e4SLinus Torvalds US_SC_UFI, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY | US_FL_SINGLE_LUN), 4151da177e4SLinus Torvalds 41696de0e25SJan Engelhardt /* Reported by Peter Wächtler <pwaechtler@loewe-komp.de> 4171da177e4SLinus Torvalds * The device needs the flags only. 4181da177e4SLinus Torvalds */ 4191da177e4SLinus Torvalds UNUSUAL_DEV( 0x04ce, 0x0002, 0x0074, 0x0074, 4201da177e4SLinus Torvalds "ScanLogic", 4211da177e4SLinus Torvalds "SL11R-IDE", 4221da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 4231da177e4SLinus Torvalds US_FL_FIX_INQUIRY), 4241da177e4SLinus Torvalds 4251da177e4SLinus Torvalds /* Reported by Kriston Fincher <kriston@airmail.net> 4261da177e4SLinus Torvalds * Patch submitted by Sean Millichamp <sean@bruenor.org> 4271da177e4SLinus Torvalds * This is to support the Panasonic PalmCam PV-SD4090 4281da177e4SLinus Torvalds * This entry is needed because the device reports Sub=ff 4291da177e4SLinus Torvalds */ 4301da177e4SLinus Torvalds UNUSUAL_DEV( 0x04da, 0x0901, 0x0100, 0x0200, 4311da177e4SLinus Torvalds "Panasonic", 4321da177e4SLinus Torvalds "LS-120 Camera", 4331da177e4SLinus Torvalds US_SC_UFI, US_PR_DEVICE, NULL, 0), 4341da177e4SLinus Torvalds 4351da177e4SLinus Torvalds /* From Yukihiro Nakai, via zaitcev@yahoo.com. 4361da177e4SLinus Torvalds * This is needed for CB instead of CBI */ 4371da177e4SLinus Torvalds UNUSUAL_DEV( 0x04da, 0x0d05, 0x0000, 0x0000, 4381da177e4SLinus Torvalds "Sharp CE-CW05", 4391da177e4SLinus Torvalds "CD-R/RW Drive", 4401da177e4SLinus Torvalds US_SC_8070, US_PR_CB, NULL, 0), 4411da177e4SLinus Torvalds 4421da177e4SLinus Torvalds /* Reported by Adriaan Penning <a.penning@luon.net> */ 4431da177e4SLinus Torvalds UNUSUAL_DEV( 0x04da, 0x2372, 0x0000, 0x9999, 4441da177e4SLinus Torvalds "Panasonic", 4451da177e4SLinus Torvalds "DMC-LCx Camera", 4461da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 4471da177e4SLinus Torvalds US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), 4481da177e4SLinus Torvalds 449dcab4eafSSimeon Simeonov /* Reported by Simeon Simeonov <simeonov_2000@yahoo.com> */ 450dcab4eafSSimeon Simeonov UNUSUAL_DEV( 0x04da, 0x2373, 0x0000, 0x9999, 451dcab4eafSSimeon Simeonov "LEICA", 452dcab4eafSSimeon Simeonov "D-LUX Camera", 453dcab4eafSSimeon Simeonov US_SC_DEVICE, US_PR_DEVICE, NULL, 454dcab4eafSSimeon Simeonov US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), 455dcab4eafSSimeon Simeonov 4561da177e4SLinus Torvalds /* Most of the following entries were developed with the help of 4571da177e4SLinus Torvalds * Shuttle/SCM directly. 4581da177e4SLinus Torvalds */ 4591da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0001, 0x0200, 0x0200, 4601da177e4SLinus Torvalds "Matshita", 4611da177e4SLinus Torvalds "LS-120", 4621da177e4SLinus Torvalds US_SC_8020, US_PR_CB, NULL, 0), 4631da177e4SLinus Torvalds 4641da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0002, 0x0100, 0x0100, 4651da177e4SLinus Torvalds "Shuttle", 4661da177e4SLinus Torvalds "eUSCSI Bridge", 4671da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, usb_stor_euscsi_init, 4681da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 4691da177e4SLinus Torvalds 4701da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_SDDR09 4711da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0003, 0x0000, 0x9999, 4721da177e4SLinus Torvalds "Sandisk", 4731da177e4SLinus Torvalds "ImageMate SDDR09", 474f5b8cb9cSMatthew Dharm US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init, 475f5b8cb9cSMatthew Dharm 0), 4761da177e4SLinus Torvalds 4771da177e4SLinus Torvalds /* This entry is from Andries.Brouwer@cwi.nl */ 4781da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0005, 0x0100, 0x0208, 4791da177e4SLinus Torvalds "SCM Microsystems", 4801da177e4SLinus Torvalds "eUSB SmartMedia / CompactFlash Adapter", 481f5b8cb9cSMatthew Dharm US_SC_SCSI, US_PR_DPCM_USB, usb_stor_sddr09_dpcm_init, 4821da177e4SLinus Torvalds 0), 483c20b15fdSAlan Stern #else 484c20b15fdSAlan Stern UNUSUAL_DEV( 0x04e6, 0x0005, 0x0100, 0x0208, 485c20b15fdSAlan Stern "SCM Microsystems", 486c20b15fdSAlan Stern "eUSB CompactFlash Adapter", 487c20b15fdSAlan Stern US_SC_SCSI, US_PR_CB, NULL, 488c20b15fdSAlan Stern US_FL_SINGLE_LUN), 4891da177e4SLinus Torvalds #endif 4901da177e4SLinus Torvalds 4911da177e4SLinus Torvalds /* Reported by Markus Demleitner <msdemlei@cl.uni-heidelberg.de> */ 4921da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0006, 0x0100, 0x0100, 4931da177e4SLinus Torvalds "SCM Microsystems Inc.", 4941da177e4SLinus Torvalds "eUSB MMC Adapter", 4951da177e4SLinus Torvalds US_SC_SCSI, US_PR_CB, NULL, 4961da177e4SLinus Torvalds US_FL_SINGLE_LUN), 4971da177e4SLinus Torvalds 4981da177e4SLinus Torvalds /* Reported by Daniel Nouri <dpunktnpunkt@web.de> */ 4991da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0006, 0x0205, 0x0205, 5001da177e4SLinus Torvalds "Shuttle", 5011da177e4SLinus Torvalds "eUSB MMC Adapter", 5021da177e4SLinus Torvalds US_SC_SCSI, US_PR_DEVICE, NULL, 5031da177e4SLinus Torvalds US_FL_SINGLE_LUN), 5041da177e4SLinus Torvalds 5051da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0007, 0x0100, 0x0200, 5061da177e4SLinus Torvalds "Sony", 5071da177e4SLinus Torvalds "Hifd", 5081da177e4SLinus Torvalds US_SC_SCSI, US_PR_CB, NULL, 5091da177e4SLinus Torvalds US_FL_SINGLE_LUN), 5101da177e4SLinus Torvalds 5111da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0009, 0x0200, 0x0200, 5121da177e4SLinus Torvalds "Shuttle", 5131da177e4SLinus Torvalds "eUSB ATA/ATAPI Adapter", 5141da177e4SLinus Torvalds US_SC_8020, US_PR_CB, NULL, 0), 5151da177e4SLinus Torvalds 5161da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x000a, 0x0200, 0x0200, 5171da177e4SLinus Torvalds "Shuttle", 5181da177e4SLinus Torvalds "eUSB CompactFlash Adapter", 5191da177e4SLinus Torvalds US_SC_8020, US_PR_CB, NULL, 0), 5201da177e4SLinus Torvalds 5211da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x000B, 0x0100, 0x0100, 5221da177e4SLinus Torvalds "Shuttle", 5231da177e4SLinus Torvalds "eUSCSI Bridge", 5241da177e4SLinus Torvalds US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, 5251da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 5261da177e4SLinus Torvalds 5271da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x000C, 0x0100, 0x0100, 5281da177e4SLinus Torvalds "Shuttle", 5291da177e4SLinus Torvalds "eUSCSI Bridge", 5301da177e4SLinus Torvalds US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, 5311da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 5321da177e4SLinus Torvalds 5331da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x0101, 0x0200, 0x0200, 5341da177e4SLinus Torvalds "Shuttle", 5351da177e4SLinus Torvalds "CD-RW Device", 5361da177e4SLinus Torvalds US_SC_8020, US_PR_CB, NULL, 0), 5371da177e4SLinus Torvalds 5381da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_USBAT 5391da177e4SLinus Torvalds UNUSUAL_DEV( 0x04e6, 0x1010, 0x0000, 0x9999, 540b7b1e655SDaniel Drake "Shuttle/SCM", 541b7b1e655SDaniel Drake "USBAT-02", 542f9347c52SDaniel Drake US_SC_SCSI, US_PR_USBAT, init_usbat_flash, 5431da177e4SLinus Torvalds US_FL_SINGLE_LUN), 5441da177e4SLinus Torvalds #endif 5451da177e4SLinus Torvalds 546b28884c1SAlan Stern /* Reported by Dmitry Khlystov <adminimus@gmail.com> */ 547b28884c1SAlan Stern UNUSUAL_DEV( 0x04e8, 0x507c, 0x0220, 0x0220, 548b28884c1SAlan Stern "Samsung", 549b28884c1SAlan Stern "YP-U3", 550b28884c1SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 551b28884c1SAlan Stern US_FL_MAX_SECTORS_64), 552b28884c1SAlan Stern 553ed3e8fcaSPhil Dibowitz /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. 554ed3e8fcaSPhil Dibowitz * Device uses standards-violating 32-byte Bulk Command Block Wrappers and 555ed3e8fcaSPhil Dibowitz * reports itself as "Proprietary SCSI Bulk." Cf. device entry 0x084d:0x0011. 556ed3e8fcaSPhil Dibowitz */ 557ed3e8fcaSPhil Dibowitz UNUSUAL_DEV( 0x04fc, 0x80c2, 0x0100, 0x0100, 558ed3e8fcaSPhil Dibowitz "Kobian Mercury", 559ed3e8fcaSPhil Dibowitz "Binocam DCB-132", 560ed3e8fcaSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 561ed3e8fcaSPhil Dibowitz US_FL_BULK32), 562ed3e8fcaSPhil Dibowitz 5631da177e4SLinus Torvalds /* Reported by Bob Sass <rls@vectordb.com> -- only rev 1.33 tested */ 5641da177e4SLinus Torvalds UNUSUAL_DEV( 0x050d, 0x0115, 0x0133, 0x0133, 5651da177e4SLinus Torvalds "Belkin", 5661da177e4SLinus Torvalds "USB SCSI Adaptor", 5671da177e4SLinus Torvalds US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, 5681da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 5691da177e4SLinus Torvalds 5701da177e4SLinus Torvalds /* Iomega Clik! Drive 5711da177e4SLinus Torvalds * Reported by David Chatenay <dchatenay@hotmail.com> 5721da177e4SLinus Torvalds * The reason this is needed is not fully known. 5731da177e4SLinus Torvalds */ 5741da177e4SLinus Torvalds UNUSUAL_DEV( 0x0525, 0xa140, 0x0100, 0x0100, 5751da177e4SLinus Torvalds "Iomega", 5761da177e4SLinus Torvalds "USB Clik! 40", 57721206383SPhil Dibowitz US_SC_8070, US_PR_DEVICE, NULL, 5781da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 5791da177e4SLinus Torvalds 58025ff1c31SAlan Stern /* Added by Alan Stern <stern@rowland.harvard.edu> */ 58125ff1c31SAlan Stern COMPLIANT_DEV(0x0525, 0xa4a5, 0x0000, 0x9999, 58225ff1c31SAlan Stern "Linux", 58325ff1c31SAlan Stern "File-backed Storage Gadget", 58425ff1c31SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 58525ff1c31SAlan Stern US_FL_CAPACITY_OK ), 58625ff1c31SAlan Stern 5871da177e4SLinus Torvalds /* Yakumo Mega Image 37 5881da177e4SLinus Torvalds * Submitted by Stephan Fuhrmann <atomenergie@t-online.de> */ 5891da177e4SLinus Torvalds UNUSUAL_DEV( 0x052b, 0x1801, 0x0100, 0x0100, 5901da177e4SLinus Torvalds "Tekom Technologies, Inc", 5911da177e4SLinus Torvalds "300_CAMERA", 5921da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 5931da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 5941da177e4SLinus Torvalds 5951da177e4SLinus Torvalds /* Another Yakumo camera. 5961da177e4SLinus Torvalds * Reported by Michele Alzetta <michele.alzetta@aliceposta.it> */ 5971da177e4SLinus Torvalds UNUSUAL_DEV( 0x052b, 0x1804, 0x0100, 0x0100, 5981da177e4SLinus Torvalds "Tekom Technologies, Inc", 5991da177e4SLinus Torvalds "300_CAMERA", 6001da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 6011da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 6021da177e4SLinus Torvalds 6031da177e4SLinus Torvalds /* Reported by Iacopo Spalletti <avvisi@spalletti.it> */ 6041da177e4SLinus Torvalds UNUSUAL_DEV( 0x052b, 0x1807, 0x0100, 0x0100, 6051da177e4SLinus Torvalds "Tekom Technologies, Inc", 6061da177e4SLinus Torvalds "300_CAMERA", 6071da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 6081da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 6091da177e4SLinus Torvalds 6101da177e4SLinus Torvalds /* Yakumo Mega Image 47 6111da177e4SLinus Torvalds * Reported by Bjoern Paetzel <kolrabi@kolrabi.de> */ 6121da177e4SLinus Torvalds UNUSUAL_DEV( 0x052b, 0x1905, 0x0100, 0x0100, 6131da177e4SLinus Torvalds "Tekom Technologies, Inc", 6141da177e4SLinus Torvalds "400_CAMERA", 6151da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 6161da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 6171da177e4SLinus Torvalds 6181da177e4SLinus Torvalds /* Reported by Paul Ortyl <ortylp@3miasto.net> 6191da177e4SLinus Torvalds * Note that it's similar to the device above, only different prodID */ 6201da177e4SLinus Torvalds UNUSUAL_DEV( 0x052b, 0x1911, 0x0100, 0x0100, 6211da177e4SLinus Torvalds "Tekom Technologies, Inc", 6221da177e4SLinus Torvalds "400_CAMERA", 6231da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 6241da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 6251da177e4SLinus Torvalds 6261da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x0010, 0x0106, 0x0450, 6271da177e4SLinus Torvalds "Sony", 6281da177e4SLinus Torvalds "DSC-S30/S70/S75/505V/F505/F707/F717/P8", 6291da177e4SLinus Torvalds US_SC_SCSI, US_PR_DEVICE, NULL, 6301da177e4SLinus Torvalds US_FL_SINGLE_LUN | US_FL_NOT_LOCKABLE | US_FL_NO_WP_DETECT ), 6311da177e4SLinus Torvalds 6327e3bd120SLars Jacob /* Submitted by Lars Jacob <jacob.lars@googlemail.com> 6337e3bd120SLars Jacob * This entry is needed because the device reports Sub=ff */ 6347e3bd120SLars Jacob UNUSUAL_DEV( 0x054c, 0x0010, 0x0500, 0x0610, 6351da177e4SLinus Torvalds "Sony", 6367e3bd120SLars Jacob "DSC-T1/T5/H5", 6371da177e4SLinus Torvalds US_SC_8070, US_PR_DEVICE, NULL, 6381da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6391da177e4SLinus Torvalds 6401da177e4SLinus Torvalds 6411da177e4SLinus Torvalds /* Reported by wim@geeks.nl */ 6421da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x0025, 0x0100, 0x0100, 6431da177e4SLinus Torvalds "Sony", 6441da177e4SLinus Torvalds "Memorystick NW-MS7", 6451da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 6461da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6471da177e4SLinus Torvalds 6481da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_ISD200 6491da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x002b, 0x0100, 0x0110, 6501da177e4SLinus Torvalds "Sony", 6511da177e4SLinus Torvalds "Portable USB Harddrive V2", 6521da177e4SLinus Torvalds US_SC_ISD200, US_PR_BULK, isd200_Initialization, 6531da177e4SLinus Torvalds 0 ), 6541da177e4SLinus Torvalds #endif 6551da177e4SLinus Torvalds 6561da177e4SLinus Torvalds /* Submitted by Olaf Hering, <olh@suse.de> SuSE Bugzilla #49049 */ 65720b2e28fSLuiz Fernando N. Capitulino UNUSUAL_DEV( 0x054c, 0x002c, 0x0501, 0x2000, 6581da177e4SLinus Torvalds "Sony", 6591da177e4SLinus Torvalds "USB Floppy Drive", 6601da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 6611da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6621da177e4SLinus Torvalds 6631da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x002d, 0x0100, 0x0100, 6641da177e4SLinus Torvalds "Sony", 6651da177e4SLinus Torvalds "Memorystick MSAC-US1", 6661da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 6671da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6681da177e4SLinus Torvalds 6691da177e4SLinus Torvalds /* Submitted by Klaus Mueller <k.mueller@intershop.de> */ 6701da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x002e, 0x0106, 0x0310, 6711da177e4SLinus Torvalds "Sony", 6721da177e4SLinus Torvalds "Handycam", 6731da177e4SLinus Torvalds US_SC_SCSI, US_PR_DEVICE, NULL, 6741da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6751da177e4SLinus Torvalds 6761da177e4SLinus Torvalds /* Submitted by Rajesh Kumble Nayak <nayak@obs-nice.fr> */ 6771da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x002e, 0x0500, 0x0500, 6781da177e4SLinus Torvalds "Sony", 6791da177e4SLinus Torvalds "Handycam HC-85", 6801da177e4SLinus Torvalds US_SC_UFI, US_PR_DEVICE, NULL, 6811da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6821da177e4SLinus Torvalds 6831da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x0032, 0x0000, 0x9999, 6841da177e4SLinus Torvalds "Sony", 6851da177e4SLinus Torvalds "Memorystick MSC-U01N", 6861da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 6871da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 6881da177e4SLinus Torvalds 6891da177e4SLinus Torvalds /* Submitted by Michal Mlotek <mlotek@foobar.pl> */ 6901da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x0058, 0x0000, 0x9999, 6911da177e4SLinus Torvalds "Sony", 6921da177e4SLinus Torvalds "PEG N760c Memorystick", 6931da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 6941da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 6951da177e4SLinus Torvalds 6961da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x0069, 0x0000, 0x9999, 6971da177e4SLinus Torvalds "Sony", 6981da177e4SLinus Torvalds "Memorystick MSC-U03", 6991da177e4SLinus Torvalds US_SC_UFI, US_PR_CB, NULL, 7001da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 7011da177e4SLinus Torvalds 7021da177e4SLinus Torvalds /* Submitted by Nathan Babb <nathan@lexi.com> */ 7031da177e4SLinus Torvalds UNUSUAL_DEV( 0x054c, 0x006d, 0x0000, 0x9999, 7041da177e4SLinus Torvalds "Sony", 7051da177e4SLinus Torvalds "PEG Mass Storage", 7061da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 7071da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 7081da177e4SLinus Torvalds 709f9dc8f99SAlan Stern /* Submitted by Frank Engel <frankie@cse.unsw.edu.au> */ 710f9dc8f99SAlan Stern UNUSUAL_DEV( 0x054c, 0x0099, 0x0000, 0x9999, 7111da177e4SLinus Torvalds "Sony", 7121da177e4SLinus Torvalds "PEG Mass Storage", 7131da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 7141da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 7151da177e4SLinus Torvalds 716f9dc8f99SAlan Stern /* Submitted by Mike Alborn <malborn@deandra.homeip.net> */ 717f9dc8f99SAlan Stern UNUSUAL_DEV( 0x054c, 0x016a, 0x0000, 0x9999, 7181da177e4SLinus Torvalds "Sony", 7191da177e4SLinus Torvalds "PEG Mass Storage", 7201da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 7211da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 7221da177e4SLinus Torvalds 723082fdd12Sjuergen.mell@t-online.de /* floppy reports multiple luns */ 724082fdd12Sjuergen.mell@t-online.de UNUSUAL_DEV( 0x055d, 0x2020, 0x0000, 0x0210, 725082fdd12Sjuergen.mell@t-online.de "SAMSUNG", 726082fdd12Sjuergen.mell@t-online.de "SFD-321U [FW 0C]", 727082fdd12Sjuergen.mell@t-online.de US_SC_DEVICE, US_PR_DEVICE, NULL, 728082fdd12Sjuergen.mell@t-online.de US_FL_SINGLE_LUN ), 729082fdd12Sjuergen.mell@t-online.de 7301da177e4SLinus Torvalds 7311da177e4SLinus Torvalds UNUSUAL_DEV( 0x057b, 0x0000, 0x0000, 0x0299, 7321da177e4SLinus Torvalds "Y-E Data", 7331da177e4SLinus Torvalds "Flashbuster-U", 7341da177e4SLinus Torvalds US_SC_DEVICE, US_PR_CB, NULL, 7351da177e4SLinus Torvalds US_FL_SINGLE_LUN), 7361da177e4SLinus Torvalds 7371da177e4SLinus Torvalds UNUSUAL_DEV( 0x057b, 0x0000, 0x0300, 0x9999, 7381da177e4SLinus Torvalds "Y-E Data", 7391da177e4SLinus Torvalds "Flashbuster-U", 7401da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 7411da177e4SLinus Torvalds US_FL_SINGLE_LUN), 7421da177e4SLinus Torvalds 7431da177e4SLinus Torvalds /* Reported by Johann Cardon <johann.cardon@free.fr> 7441da177e4SLinus Torvalds * This entry is needed only because the device reports 7451da177e4SLinus Torvalds * bInterfaceClass = 0xff (vendor-specific) 7461da177e4SLinus Torvalds */ 7471da177e4SLinus Torvalds UNUSUAL_DEV( 0x057b, 0x0022, 0x0000, 0x9999, 7481da177e4SLinus Torvalds "Y-E Data", 7491da177e4SLinus Torvalds "Silicon Media R/W", 7501da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 0), 7511da177e4SLinus Torvalds 752e80b0fadSMatthew Dharm #ifdef CONFIG_USB_STORAGE_ALAUDA 753e80b0fadSMatthew Dharm UNUSUAL_DEV( 0x0584, 0x0008, 0x0102, 0x0102, 754e80b0fadSMatthew Dharm "Fujifilm", 755e80b0fadSMatthew Dharm "DPC-R1 (Alauda)", 756e80b0fadSMatthew Dharm US_SC_SCSI, US_PR_ALAUDA, init_alauda, 0 ), 757e80b0fadSMatthew Dharm #endif 758e80b0fadSMatthew Dharm 759f1e8de0dSAlan Stern /* Reported by RTE <raszilki@yandex.ru> */ 760f1e8de0dSAlan Stern UNUSUAL_DEV( 0x058f, 0x6387, 0x0141, 0x0141, 761f1e8de0dSAlan Stern "JetFlash", 762f1e8de0dSAlan Stern "TS1GJF2A/120", 763f1e8de0dSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 764f1e8de0dSAlan Stern US_FL_MAX_SECTORS_64 ), 765f1e8de0dSAlan Stern 7661da177e4SLinus Torvalds /* Fabrizio Fellini <fello@libero.it> */ 7671da177e4SLinus Torvalds UNUSUAL_DEV( 0x0595, 0x4343, 0x0000, 0x2210, 7681da177e4SLinus Torvalds "Fujifilm", 7691da177e4SLinus Torvalds "Digital Camera EX-20 DSC", 7701da177e4SLinus Torvalds US_SC_8070, US_PR_DEVICE, NULL, 0 ), 7711da177e4SLinus Torvalds 772a462549bSAlan Stern /* Reported by Andre Welter <a.r.welter@gmx.de> 773a462549bSAlan Stern * This antique device predates the release of the Bulk-only Transport 774a462549bSAlan Stern * spec, and if it gets a Get-Max-LUN then it requires the host to do a 775a462549bSAlan Stern * Clear-Halt on the bulk endpoints. The SINGLE_LUN flag will prevent 776a462549bSAlan Stern * us from sending the request. 777a462549bSAlan Stern */ 778a462549bSAlan Stern UNUSUAL_DEV( 0x059b, 0x0001, 0x0100, 0x0100, 779a462549bSAlan Stern "Iomega", 780a462549bSAlan Stern "ZIP 100", 781a462549bSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 782a462549bSAlan Stern US_FL_SINGLE_LUN ), 783a462549bSAlan Stern 784b97b196cSAlan Stern /* Reported by <Hendryk.Pfeiffer@gmx.de> */ 785b97b196cSAlan Stern UNUSUAL_DEV( 0x059f, 0x0643, 0x0000, 0x0000, 786b97b196cSAlan Stern "LaCie", 787b97b196cSAlan Stern "DVD+-RW", 788b97b196cSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 789b97b196cSAlan Stern US_FL_GO_SLOW ), 790b97b196cSAlan Stern 7911da177e4SLinus Torvalds /* Submitted by Joel Bourquard <numlock@freesurf.ch> 7921da177e4SLinus Torvalds * Some versions of this device need the SubClass and Protocol overrides 7931da177e4SLinus Torvalds * while others don't. 7941da177e4SLinus Torvalds */ 7951da177e4SLinus Torvalds UNUSUAL_DEV( 0x05ab, 0x0060, 0x1104, 0x1110, 7961da177e4SLinus Torvalds "In-System", 7971da177e4SLinus Torvalds "PyroGate External CD-ROM Enclosure (FCD-523)", 7981da177e4SLinus Torvalds US_SC_SCSI, US_PR_BULK, NULL, 7991da177e4SLinus Torvalds US_FL_NEED_OVERRIDE ), 8001da177e4SLinus Torvalds 8011da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_ISD200 8021da177e4SLinus Torvalds UNUSUAL_DEV( 0x05ab, 0x0031, 0x0100, 0x0110, 8031da177e4SLinus Torvalds "In-System", 8041da177e4SLinus Torvalds "USB/IDE Bridge (ATA/ATAPI)", 8051da177e4SLinus Torvalds US_SC_ISD200, US_PR_BULK, isd200_Initialization, 8061da177e4SLinus Torvalds 0 ), 8071da177e4SLinus Torvalds 8081da177e4SLinus Torvalds UNUSUAL_DEV( 0x05ab, 0x0301, 0x0100, 0x0110, 8091da177e4SLinus Torvalds "In-System", 8101da177e4SLinus Torvalds "Portable USB Harddrive V2", 8111da177e4SLinus Torvalds US_SC_ISD200, US_PR_BULK, isd200_Initialization, 8121da177e4SLinus Torvalds 0 ), 8131da177e4SLinus Torvalds 8141da177e4SLinus Torvalds UNUSUAL_DEV( 0x05ab, 0x0351, 0x0100, 0x0110, 8151da177e4SLinus Torvalds "In-System", 8161da177e4SLinus Torvalds "Portable USB Harddrive V2", 8171da177e4SLinus Torvalds US_SC_ISD200, US_PR_BULK, isd200_Initialization, 8181da177e4SLinus Torvalds 0 ), 8191da177e4SLinus Torvalds 8201da177e4SLinus Torvalds UNUSUAL_DEV( 0x05ab, 0x5701, 0x0100, 0x0110, 8211da177e4SLinus Torvalds "In-System", 8221da177e4SLinus Torvalds "USB Storage Adapter V2", 8231da177e4SLinus Torvalds US_SC_ISD200, US_PR_BULK, isd200_Initialization, 8241da177e4SLinus Torvalds 0 ), 8251da177e4SLinus Torvalds #endif 8261da177e4SLinus Torvalds 82735f4a0c4SSven Anderson /* Submitted by Sven Anderson <sven-linux@anderson.de> 82835f4a0c4SSven Anderson * There are at least four ProductIDs used for iPods, so I added 0x1202 and 82935f4a0c4SSven Anderson * 0x1204. They just need the US_FL_FIX_CAPACITY. As the bcdDevice appears 83035f4a0c4SSven Anderson * to change with firmware updates, I changed the range to maximum for all 83135f4a0c4SSven Anderson * iPod entries. 83235f4a0c4SSven Anderson */ 83335f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1202, 0x0000, 0x9999, 8341da177e4SLinus Torvalds "Apple", 8351da177e4SLinus Torvalds "iPod", 8361da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 8371da177e4SLinus Torvalds US_FL_FIX_CAPACITY ), 8381da177e4SLinus Torvalds 83935f4a0c4SSven Anderson /* Reported by Avi Kivity <avi@argo.co.il> */ 84035f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1203, 0x0000, 0x9999, 84135f4a0c4SSven Anderson "Apple", 84235f4a0c4SSven Anderson "iPod", 84335f4a0c4SSven Anderson US_SC_DEVICE, US_PR_DEVICE, NULL, 84435f4a0c4SSven Anderson US_FL_FIX_CAPACITY ), 84535f4a0c4SSven Anderson 84635f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1204, 0x0000, 0x9999, 84735f4a0c4SSven Anderson "Apple", 84835f4a0c4SSven Anderson "iPod", 84935f4a0c4SSven Anderson US_SC_DEVICE, US_PR_DEVICE, NULL, 850ad1428c9SPete Zaitcev US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ), 85135f4a0c4SSven Anderson 85235f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1205, 0x0000, 0x9999, 8531da177e4SLinus Torvalds "Apple", 8541da177e4SLinus Torvalds "iPod", 8551da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 8561da177e4SLinus Torvalds US_FL_FIX_CAPACITY ), 8571da177e4SLinus Torvalds 858880a9b5eSPhil Dibowitz /* 859880a9b5eSPhil Dibowitz * Reported by Tyson Vinson <lornoss@gmail.com> 860880a9b5eSPhil Dibowitz * This particular productId is the iPod Nano 861880a9b5eSPhil Dibowitz */ 862880a9b5eSPhil Dibowitz UNUSUAL_DEV( 0x05ac, 0x120a, 0x0000, 0x9999, 863880a9b5eSPhil Dibowitz "Apple", 864880a9b5eSPhil Dibowitz "iPod", 865880a9b5eSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 866880a9b5eSPhil Dibowitz US_FL_FIX_CAPACITY ), 867880a9b5eSPhil Dibowitz 868281b064fSDan Williams /* Reported by Dan Williams <dcbw@redhat.com> 869281b064fSDan Williams * Option N.V. mobile broadband modems 870281b064fSDan Williams * Ignore driver CD mode and force into modem mode by default. 871281b064fSDan Williams */ 872281b064fSDan Williams 873281b064fSDan Williams /* Globetrotter HSDPA; mass storage shows up as Qualcomm for vendor */ 874281b064fSDan Williams UNUSUAL_DEV( 0x05c6, 0x1000, 0x0000, 0x9999, 875281b064fSDan Williams "Option N.V.", 876281b064fSDan Williams "Mass Storage", 877281b064fSDan Williams US_SC_DEVICE, US_PR_DEVICE, option_ms_init, 878281b064fSDan Williams 0), 879281b064fSDan Williams 8801da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_JUMPSHOT 8811da177e4SLinus Torvalds UNUSUAL_DEV( 0x05dc, 0x0001, 0x0000, 0x0001, 8821da177e4SLinus Torvalds "Lexar", 8831da177e4SLinus Torvalds "Jumpshot USB CF Reader", 8841da177e4SLinus Torvalds US_SC_SCSI, US_PR_JUMPSHOT, NULL, 8851da177e4SLinus Torvalds US_FL_NEED_OVERRIDE ), 8861da177e4SLinus Torvalds #endif 8871da177e4SLinus Torvalds 8881da177e4SLinus Torvalds /* Reported by Blake Matheny <bmatheny@purdue.edu> */ 8891da177e4SLinus Torvalds UNUSUAL_DEV( 0x05dc, 0xb002, 0x0000, 0x0113, 8901da177e4SLinus Torvalds "Lexar", 8911da177e4SLinus Torvalds "USB CF Reader", 8921da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 8931da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 8941da177e4SLinus Torvalds 8951da177e4SLinus Torvalds /* The following two entries are for a Genesys USB to IDE 8961da177e4SLinus Torvalds * converter chip, but it changes its ProductId depending 8971da177e4SLinus Torvalds * on whether or not a disk or an optical device is enclosed 8981da177e4SLinus Torvalds * They were originally reported by Alexander Oltu 8991da177e4SLinus Torvalds * <alexander@all-2.com> and Peter Marks <peter.marks@turner.com> 9001da177e4SLinus Torvalds * respectively. 901883d989aSPhil Dibowitz * 902883d989aSPhil Dibowitz * US_FL_GO_SLOW and US_FL_MAX_SECTORS_64 added by Phil Dibowitz 903883d989aSPhil Dibowitz * <phil@ipom.com> as these flags were made and hard-coded 904883d989aSPhil Dibowitz * special-cases were pulled from scsiglue.c. 9051da177e4SLinus Torvalds */ 9061da177e4SLinus Torvalds UNUSUAL_DEV( 0x05e3, 0x0701, 0x0000, 0xffff, 9071da177e4SLinus Torvalds "Genesys Logic", 9081da177e4SLinus Torvalds "USB to IDE Optical", 9091da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 910883d989aSPhil Dibowitz US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 ), 9111da177e4SLinus Torvalds 9121da177e4SLinus Torvalds UNUSUAL_DEV( 0x05e3, 0x0702, 0x0000, 0xffff, 9131da177e4SLinus Torvalds "Genesys Logic", 9141da177e4SLinus Torvalds "USB to IDE Disk", 9151da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 916883d989aSPhil Dibowitz US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 ), 9171da177e4SLinus Torvalds 918dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */ 919dbe6e0c0SBen Efros UNUSUAL_DEV( 0x05e3, 0x0723, 0x9451, 0x9451, 920dbe6e0c0SBen Efros "Genesys Logic", 921dbe6e0c0SBen Efros "USB to SATA", 922dbe6e0c0SBen Efros US_SC_DEVICE, US_PR_DEVICE, NULL, 923dbe6e0c0SBen Efros US_FL_SANE_SENSE ), 924dbe6e0c0SBen Efros 9251da177e4SLinus Torvalds /* Reported by Hanno Boeck <hanno@gmx.de> 9261da177e4SLinus Torvalds * Taken from the Lycoris Kernel */ 9271da177e4SLinus Torvalds UNUSUAL_DEV( 0x0636, 0x0003, 0x0000, 0x9999, 9281da177e4SLinus Torvalds "Vivitar", 9291da177e4SLinus Torvalds "Vivicam 35Xx", 9301da177e4SLinus Torvalds US_SC_SCSI, US_PR_BULK, NULL, 9311da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 9321da177e4SLinus Torvalds 9331da177e4SLinus Torvalds UNUSUAL_DEV( 0x0644, 0x0000, 0x0100, 0x0100, 9341da177e4SLinus Torvalds "TEAC", 9351da177e4SLinus Torvalds "Floppy Drive", 9361da177e4SLinus Torvalds US_SC_UFI, US_PR_CB, NULL, 0 ), 9371da177e4SLinus Torvalds 9381da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_SDDR09 9391da177e4SLinus Torvalds UNUSUAL_DEV( 0x066b, 0x0105, 0x0100, 0x0100, 9401da177e4SLinus Torvalds "Olympus", 9411da177e4SLinus Torvalds "Camedia MAUSB-2", 942f5b8cb9cSMatthew Dharm US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init, 943f5b8cb9cSMatthew Dharm 0), 9441da177e4SLinus Torvalds #endif 9451da177e4SLinus Torvalds 9461da177e4SLinus Torvalds /* Reported by Darsen Lu <darsen@micro.ee.nthu.edu.tw> */ 9471da177e4SLinus Torvalds UNUSUAL_DEV( 0x066f, 0x8000, 0x0001, 0x0001, 9481da177e4SLinus Torvalds "SigmaTel", 9491da177e4SLinus Torvalds "USBMSC Audio Player", 9501da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 9511da177e4SLinus Torvalds US_FL_FIX_CAPACITY ), 9521da177e4SLinus Torvalds 9531da177e4SLinus Torvalds /* Reported by Richard -=[]=- <micro_flyer@hotmail.com> */ 9541da177e4SLinus Torvalds UNUSUAL_DEV( 0x067b, 0x2507, 0x0100, 0x0100, 9551da177e4SLinus Torvalds "Prolific Technology Inc.", 9561da177e4SLinus Torvalds "Mass Storage Device", 9571da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 9581da177e4SLinus Torvalds US_FL_FIX_CAPACITY | US_FL_GO_SLOW ), 9591da177e4SLinus Torvalds 9601da177e4SLinus Torvalds /* Reported by Alex Butcher <alex.butcher@assursys.co.uk> */ 961b1636399SOliver Neukum UNUSUAL_DEV( 0x067b, 0x3507, 0x0001, 0x0101, 9621da177e4SLinus Torvalds "Prolific Technology Inc.", 9631da177e4SLinus Torvalds "ATAPI-6 Bridge Controller", 9641da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 9651da177e4SLinus Torvalds US_FL_FIX_CAPACITY | US_FL_GO_SLOW ), 9661da177e4SLinus Torvalds 9671da177e4SLinus Torvalds /* Submitted by Benny Sjostrand <benny@hostmobility.com> */ 9681da177e4SLinus Torvalds UNUSUAL_DEV( 0x0686, 0x4011, 0x0001, 0x0001, 9691da177e4SLinus Torvalds "Minolta", 9701da177e4SLinus Torvalds "Dimage F300", 9711da177e4SLinus Torvalds US_SC_SCSI, US_PR_BULK, NULL, 0 ), 9721da177e4SLinus Torvalds 9731da177e4SLinus Torvalds /* Reported by Miguel A. Fosas <amn3s1a@ono.com> */ 9741da177e4SLinus Torvalds UNUSUAL_DEV( 0x0686, 0x4017, 0x0001, 0x0001, 9751da177e4SLinus Torvalds "Minolta", 9761da177e4SLinus Torvalds "DIMAGE E223", 9771da177e4SLinus Torvalds US_SC_SCSI, US_PR_DEVICE, NULL, 0 ), 9781da177e4SLinus Torvalds 9791da177e4SLinus Torvalds UNUSUAL_DEV( 0x0693, 0x0005, 0x0100, 0x0100, 9801da177e4SLinus Torvalds "Hagiwara", 9811da177e4SLinus Torvalds "Flashgate", 9821da177e4SLinus Torvalds US_SC_SCSI, US_PR_BULK, NULL, 0 ), 9831da177e4SLinus Torvalds 984754501b3SAlan Stern /* Reported by David Hamilton <niftimusmaximus@lycos.com> */ 985754501b3SAlan Stern UNUSUAL_DEV( 0x069b, 0x3004, 0x0001, 0x0001, 986754501b3SAlan Stern "Thomson Multimedia Inc.", 987754501b3SAlan Stern "RCA RD1080 MP3 Player", 988754501b3SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 989754501b3SAlan Stern US_FL_FIX_CAPACITY ), 990754501b3SAlan Stern 991fe1926a0SAlan Stern /* Reported by Adrian Pilchowiec <adi1981@epf.pl> */ 992fe1926a0SAlan Stern UNUSUAL_DEV( 0x071b, 0x3203, 0x0000, 0x0000, 993fe1926a0SAlan Stern "RockChip", 994fe1926a0SAlan Stern "MP3", 995fe1926a0SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 996fe1926a0SAlan Stern US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64), 997fe1926a0SAlan Stern 998c4766560SMassimiliano Ghilardi /* Reported by Massimiliano Ghilardi <massimiliano.ghilardi@gmail.com> 999c4766560SMassimiliano Ghilardi * This USB MP3/AVI player device fails and disconnects if more than 128 1000c4766560SMassimiliano Ghilardi * sectors (64kB) are read/written in a single command, and may be present 1001c4766560SMassimiliano Ghilardi * at least in the following products: 1002c4766560SMassimiliano Ghilardi * "Magnex Digital Video Panel DVP 1800" 1003c4766560SMassimiliano Ghilardi * "MP4 AIGO 4GB SLOT SD" 1004c4766560SMassimiliano Ghilardi * "Teclast TL-C260 MP3" 1005c4766560SMassimiliano Ghilardi * "i.Meizu PMP MP3/MP4" 1006c4766560SMassimiliano Ghilardi * "Speed MV8 MP4 Audio Player" 1007c4766560SMassimiliano Ghilardi */ 1008c4766560SMassimiliano Ghilardi UNUSUAL_DEV( 0x071b, 0x3203, 0x0100, 0x0100, 1009c4766560SMassimiliano Ghilardi "RockChip", 1010c4766560SMassimiliano Ghilardi "ROCK MP3", 1011c4766560SMassimiliano Ghilardi US_SC_DEVICE, US_PR_DEVICE, NULL, 1012c4766560SMassimiliano Ghilardi US_FL_MAX_SECTORS_64), 1013c4766560SMassimiliano Ghilardi 1014f430c405SOlivier Blondeau /* Reported by Olivier Blondeau <zeitoun@gmail.com> */ 1015f430c405SOlivier Blondeau UNUSUAL_DEV( 0x0727, 0x0306, 0x0100, 0x0100, 1016f430c405SOlivier Blondeau "ATMEL", 1017f430c405SOlivier Blondeau "SND1 Storage", 1018f430c405SOlivier Blondeau US_SC_DEVICE, US_PR_DEVICE, NULL, 1019f430c405SOlivier Blondeau US_FL_IGNORE_RESIDUE), 1020f430c405SOlivier Blondeau 10211e7a5a84SPhil Dibowitz /* Submitted by Roman Hodek <roman@hodek.net> */ 10221da177e4SLinus Torvalds UNUSUAL_DEV( 0x0781, 0x0001, 0x0200, 0x0200, 10231da177e4SLinus Torvalds "Sandisk", 10241da177e4SLinus Torvalds "ImageMate SDDR-05a", 10251da177e4SLinus Torvalds US_SC_SCSI, US_PR_CB, NULL, 10261da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 10271da177e4SLinus Torvalds 10281e7a5a84SPhil Dibowitz UNUSUAL_DEV( 0x0781, 0x0002, 0x0009, 0x0009, 10291e7a5a84SPhil Dibowitz "SanDisk Corporation", 10301e7a5a84SPhil Dibowitz "ImageMate CompactFlash USB", 10311e7a5a84SPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 10321e7a5a84SPhil Dibowitz US_FL_FIX_CAPACITY ), 10331e7a5a84SPhil Dibowitz 1034094ec604SDaniel Drake #ifdef CONFIG_USB_STORAGE_USBAT 1035094ec604SDaniel Drake UNUSUAL_DEV( 0x0781, 0x0005, 0x0005, 0x0005, 1036094ec604SDaniel Drake "Sandisk", 1037094ec604SDaniel Drake "ImageMate SDDR-05b", 1038bdcfd9e3SPeter Chubb US_SC_SCSI, US_PR_USBAT, init_usbat_flash, 1039094ec604SDaniel Drake US_FL_SINGLE_LUN ), 1040094ec604SDaniel Drake #endif 1041094ec604SDaniel Drake 10421da177e4SLinus Torvalds UNUSUAL_DEV( 0x0781, 0x0100, 0x0100, 0x0100, 10431da177e4SLinus Torvalds "Sandisk", 10441da177e4SLinus Torvalds "ImageMate SDDR-12", 10451da177e4SLinus Torvalds US_SC_SCSI, US_PR_CB, NULL, 10461da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 10471da177e4SLinus Torvalds 10481da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_SDDR09 10491da177e4SLinus Torvalds UNUSUAL_DEV( 0x0781, 0x0200, 0x0000, 0x9999, 10501da177e4SLinus Torvalds "Sandisk", 10511da177e4SLinus Torvalds "ImageMate SDDR-09", 1052f5b8cb9cSMatthew Dharm US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init, 1053f5b8cb9cSMatthew Dharm 0), 10541da177e4SLinus Torvalds #endif 10551da177e4SLinus Torvalds 10561da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_FREECOM 10571da177e4SLinus Torvalds UNUSUAL_DEV( 0x07ab, 0xfc01, 0x0000, 0x9999, 10581da177e4SLinus Torvalds "Freecom", 10591da177e4SLinus Torvalds "USB-IDE", 10601da177e4SLinus Torvalds US_SC_QIC, US_PR_FREECOM, freecom_init, 0), 10611da177e4SLinus Torvalds #endif 10621da177e4SLinus Torvalds 10631da177e4SLinus Torvalds /* Reported by Eero Volotinen <eero@ping-viini.org> */ 1064e5278320SPhil Dibowitz UNUSUAL_DEV( 0x07ab, 0xfccd, 0x0000, 0x9999, 10651da177e4SLinus Torvalds "Freecom Technologies", 10661da177e4SLinus Torvalds "FHD-Classic", 10671da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 10681da177e4SLinus Torvalds US_FL_FIX_CAPACITY), 10691da177e4SLinus Torvalds 10701da177e4SLinus Torvalds UNUSUAL_DEV( 0x07af, 0x0004, 0x0100, 0x0133, 10711da177e4SLinus Torvalds "Microtech", 10721da177e4SLinus Torvalds "USB-SCSI-DB25", 10731da177e4SLinus Torvalds US_SC_SCSI, US_PR_BULK, usb_stor_euscsi_init, 10741da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 10751da177e4SLinus Torvalds 10761da177e4SLinus Torvalds UNUSUAL_DEV( 0x07af, 0x0005, 0x0100, 0x0100, 10771da177e4SLinus Torvalds "Microtech", 10781da177e4SLinus Torvalds "USB-SCSI-HD50", 1079e8116e84SPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, usb_stor_euscsi_init, 10801da177e4SLinus Torvalds US_FL_SCM_MULT_TARG ), 10811da177e4SLinus Torvalds 1082c20b15fdSAlan Stern #ifdef CONFIG_USB_STORAGE_SDDR09 10831da177e4SLinus Torvalds UNUSUAL_DEV( 0x07af, 0x0006, 0x0100, 0x0100, 10841da177e4SLinus Torvalds "Microtech", 10851da177e4SLinus Torvalds "CameraMate (DPCM_USB)", 10861da177e4SLinus Torvalds US_SC_SCSI, US_PR_DPCM_USB, NULL, 0 ), 1087c20b15fdSAlan Stern #else 1088c20b15fdSAlan Stern UNUSUAL_DEV( 0x07af, 0x0006, 0x0100, 0x0100, 1089c20b15fdSAlan Stern "Microtech", 1090c20b15fdSAlan Stern "CameraMate", 1091c20b15fdSAlan Stern US_SC_SCSI, US_PR_CB, NULL, 1092c20b15fdSAlan Stern US_FL_SINGLE_LUN ), 10931da177e4SLinus Torvalds #endif 10941da177e4SLinus Torvalds 1095e80b0fadSMatthew Dharm #ifdef CONFIG_USB_STORAGE_ALAUDA 1096e80b0fadSMatthew Dharm UNUSUAL_DEV( 0x07b4, 0x010a, 0x0102, 0x0102, 1097e80b0fadSMatthew Dharm "Olympus", 1098e80b0fadSMatthew Dharm "MAUSB-10 (Alauda)", 1099e80b0fadSMatthew Dharm US_SC_SCSI, US_PR_ALAUDA, init_alauda, 0 ), 1100e80b0fadSMatthew Dharm #endif 1101e80b0fadSMatthew Dharm 11021da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_DATAFAB 11031da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa000, 0x0000, 0x0015, 11041da177e4SLinus Torvalds "Datafab", 11051da177e4SLinus Torvalds "MDCFE-B USB CF Reader", 11061da177e4SLinus Torvalds US_SC_SCSI, US_PR_DATAFAB, NULL, 11071da177e4SLinus Torvalds 0 ), 11081da177e4SLinus Torvalds 11091da177e4SLinus Torvalds /* 11101da177e4SLinus Torvalds * The following Datafab-based devices may or may not work 11111da177e4SLinus Torvalds * using the current driver...the 0xffff is arbitrary since I 11121da177e4SLinus Torvalds * don't know what device versions exist for these guys. 11131da177e4SLinus Torvalds * 11141da177e4SLinus Torvalds * The 0xa003 and 0xa004 devices in particular I'm curious about. 11151da177e4SLinus Torvalds * I'm told they exist but so far nobody has come forward to say that 11161da177e4SLinus Torvalds * they work with this driver. Given the success we've had getting 11171da177e4SLinus Torvalds * other Datafab-based cards operational with this driver, I've decided 11181da177e4SLinus Torvalds * to leave these two devices in the list. 11191da177e4SLinus Torvalds */ 11201da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa001, 0x0000, 0xffff, 11211da177e4SLinus Torvalds "SIIG/Datafab", 11221da177e4SLinus Torvalds "SIIG/Datafab Memory Stick+CF Reader/Writer", 11231da177e4SLinus Torvalds US_SC_SCSI, US_PR_DATAFAB, NULL, 11241da177e4SLinus Torvalds 0 ), 11251da177e4SLinus Torvalds 11261da177e4SLinus Torvalds /* Reported by Josef Reisinger <josef.reisinger@netcologne.de> */ 11271da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa002, 0x0000, 0xffff, 11281da177e4SLinus Torvalds "Datafab/Unknown", 11291da177e4SLinus Torvalds "MD2/MD3 Disk enclosure", 11301da177e4SLinus Torvalds US_SC_SCSI, US_PR_DATAFAB, NULL, 11311da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 11321da177e4SLinus Torvalds 11331da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa003, 0x0000, 0xffff, 11341da177e4SLinus Torvalds "Datafab/Unknown", 11351da177e4SLinus Torvalds "Datafab-based Reader", 11361da177e4SLinus Torvalds US_SC_SCSI, US_PR_DATAFAB, NULL, 11371da177e4SLinus Torvalds 0 ), 11381da177e4SLinus Torvalds 11391da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa004, 0x0000, 0xffff, 11401da177e4SLinus Torvalds "Datafab/Unknown", 11411da177e4SLinus Torvalds "Datafab-based Reader", 11421da177e4SLinus Torvalds US_SC_SCSI, US_PR_DATAFAB, NULL, 11431da177e4SLinus Torvalds 0 ), 11441da177e4SLinus Torvalds 11451da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa005, 0x0000, 0xffff, 11461da177e4SLinus Torvalds "PNY/Datafab", 11471da177e4SLinus Torvalds "PNY/Datafab CF+SM Reader", 11481da177e4SLinus Torvalds US_SC_SCSI, US_PR_DATAFAB, NULL, 11491da177e4SLinus Torvalds 0 ), 11501da177e4SLinus Torvalds 11511da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa006, 0x0000, 0xffff, 11521da177e4SLinus Torvalds "Simple Tech/Datafab", 11531da177e4SLinus Torvalds "Simple Tech/Datafab CF+SM Reader", 11541da177e4SLinus Torvalds US_SC_SCSI, US_PR_DATAFAB, NULL, 11551da177e4SLinus Torvalds 0 ), 11561da177e4SLinus Torvalds #endif 11571da177e4SLinus Torvalds 11581da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_SDDR55 11591da177e4SLinus Torvalds /* Contributed by Peter Waechtler */ 11601da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa103, 0x0000, 0x9999, 11611da177e4SLinus Torvalds "Datafab", 11621da177e4SLinus Torvalds "MDSM-B reader", 11631da177e4SLinus Torvalds US_SC_SCSI, US_PR_SDDR55, NULL, 11641da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 11651da177e4SLinus Torvalds #endif 11661da177e4SLinus Torvalds 11671da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_DATAFAB 11681da177e4SLinus Torvalds /* Submitted by Olaf Hering <olh@suse.de> */ 11691da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa109, 0x0000, 0xffff, 11701da177e4SLinus Torvalds "Datafab Systems, Inc.", 11711da177e4SLinus Torvalds "USB to CF + SM Combo (LC1)", 11721da177e4SLinus Torvalds US_SC_SCSI, US_PR_DATAFAB, NULL, 11731da177e4SLinus Torvalds 0 ), 11741da177e4SLinus Torvalds #endif 11751da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_SDDR55 11761da177e4SLinus Torvalds /* SM part - aeb <Andries.Brouwer@cwi.nl> */ 11771da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa109, 0x0000, 0xffff, 11781da177e4SLinus Torvalds "Datafab Systems, Inc.", 11791da177e4SLinus Torvalds "USB to CF + SM Combo (LC1)", 11801da177e4SLinus Torvalds US_SC_SCSI, US_PR_SDDR55, NULL, 11811da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 11821da177e4SLinus Torvalds #endif 11831da177e4SLinus Torvalds 1184d6427cf7Sfelix@derklecks.de #ifdef CONFIG_USB_STORAGE_DATAFAB 1185d6427cf7Sfelix@derklecks.de /* Reported by Felix Moeller <felix@derklecks.de> 1186d6427cf7Sfelix@derklecks.de * in Germany this is sold by Hama with the productnumber 46952 1187d6427cf7Sfelix@derklecks.de * as "DualSlot CompactFlash(TM) & MStick Drive USB" 1188d6427cf7Sfelix@derklecks.de */ 1189d6427cf7Sfelix@derklecks.de UNUSUAL_DEV( 0x07c4, 0xa10b, 0x0000, 0xffff, 1190d6427cf7Sfelix@derklecks.de "DataFab Systems Inc.", 1191d6427cf7Sfelix@derklecks.de "USB CF+MS", 1192d6427cf7Sfelix@derklecks.de US_SC_SCSI, US_PR_DATAFAB, NULL, 1193d6427cf7Sfelix@derklecks.de 0 ), 1194d6427cf7Sfelix@derklecks.de 1195d6427cf7Sfelix@derklecks.de #endif 1196d6427cf7Sfelix@derklecks.de 11971da177e4SLinus Torvalds /* Datafab KECF-USB / Sagatek DCS-CF / Simpletech Flashlink UCF-100 11981da177e4SLinus Torvalds * Only revision 1.13 tested (same for all of the above devices, 11991da177e4SLinus Torvalds * based on the Datafab DF-UG-07 chip). Needed for US_FL_FIX_INQUIRY. 12001da177e4SLinus Torvalds * Submitted by Marek Michalkiewicz <marekm@amelek.gda.pl>. 12011da177e4SLinus Torvalds * See also http://martin.wilck.bei.t-online.de/#kecf . 12021da177e4SLinus Torvalds */ 12031da177e4SLinus Torvalds UNUSUAL_DEV( 0x07c4, 0xa400, 0x0000, 0xffff, 12041da177e4SLinus Torvalds "Datafab", 12051da177e4SLinus Torvalds "KECF-USB", 12061da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 12071da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 12081da177e4SLinus Torvalds 1209368ee646SAlan Stern /* Reported by Rauch Wolke <rauchwolke@gmx.net> */ 1210368ee646SAlan Stern UNUSUAL_DEV( 0x07c4, 0xa4a5, 0x0000, 0xffff, 1211368ee646SAlan Stern "Simple Tech/Datafab", 1212368ee646SAlan Stern "CF+SM Reader", 1213368ee646SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 1214368ee646SAlan Stern US_FL_IGNORE_RESIDUE ), 1215368ee646SAlan Stern 12161da177e4SLinus Torvalds /* Casio QV 2x00/3x00/4000/8000 digital still cameras are not conformant 12171da177e4SLinus Torvalds * to the USB storage specification in two ways: 12181da177e4SLinus Torvalds * - They tell us they are using transport protocol CBI. In reality they 12191da177e4SLinus Torvalds * are using transport protocol CB. 12201da177e4SLinus Torvalds * - They don't like the INQUIRY command. So we must handle this command 12211da177e4SLinus Torvalds * of the SCSI layer ourselves. 12221da177e4SLinus Torvalds * - Some cameras with idProduct=0x1001 and bcdDevice=0x1000 have 12231da177e4SLinus Torvalds * bInterfaceProtocol=0x00 (US_PR_CBI) while others have 0x01 (US_PR_CB). 12241da177e4SLinus Torvalds * So don't remove the US_PR_CB override! 12251da177e4SLinus Torvalds * - Cameras with bcdDevice=0x9009 require the US_SC_8070 override. 12261da177e4SLinus Torvalds */ 12271da177e4SLinus Torvalds UNUSUAL_DEV( 0x07cf, 0x1001, 0x1000, 0x9999, 12281da177e4SLinus Torvalds "Casio", 12291da177e4SLinus Torvalds "QV DigitalCamera", 12301da177e4SLinus Torvalds US_SC_8070, US_PR_CB, NULL, 12311da177e4SLinus Torvalds US_FL_NEED_OVERRIDE | US_FL_FIX_INQUIRY ), 12321da177e4SLinus Torvalds 12331da177e4SLinus Torvalds /* Submitted by Hartmut Wahl <hwahl@hwahl.de>*/ 12341da177e4SLinus Torvalds UNUSUAL_DEV( 0x0839, 0x000a, 0x0001, 0x0001, 12351da177e4SLinus Torvalds "Samsung", 12361da177e4SLinus Torvalds "Digimax 410", 12371da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 12381da177e4SLinus Torvalds US_FL_FIX_INQUIRY), 12391da177e4SLinus Torvalds 12408010e06cSAlan Stern /* Reported by Luciano Rocha <luciano@eurotux.com> */ 12418010e06cSAlan Stern UNUSUAL_DEV( 0x0840, 0x0082, 0x0001, 0x0001, 12428010e06cSAlan Stern "Argosy", 12438010e06cSAlan Stern "Storage", 12448010e06cSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 12458010e06cSAlan Stern US_FL_FIX_CAPACITY), 12468010e06cSAlan Stern 1247e2673b28SNguyen Anh Quynh /* Reported and patched by Nguyen Anh Quynh <aquynh@gmail.com> */ 1248e2673b28SNguyen Anh Quynh UNUSUAL_DEV( 0x0840, 0x0084, 0x0001, 0x0001, 1249e2673b28SNguyen Anh Quynh "Argosy", 1250e2673b28SNguyen Anh Quynh "Storage", 1251e2673b28SNguyen Anh Quynh US_SC_DEVICE, US_PR_DEVICE, NULL, 1252e2673b28SNguyen Anh Quynh US_FL_FIX_CAPACITY), 1253e2673b28SNguyen Anh Quynh 12541da177e4SLinus Torvalds /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. 12551da177e4SLinus Torvalds * Flag will support Bulk devices which use a standards-violating 32-byte 12561da177e4SLinus Torvalds * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with 12571da177e4SLinus Torvalds * Grandtech GT892x chip, which request "Proprietary SCSI Bulk" support. 12581da177e4SLinus Torvalds */ 12591da177e4SLinus Torvalds 12601da177e4SLinus Torvalds UNUSUAL_DEV( 0x084d, 0x0011, 0x0110, 0x0110, 12611da177e4SLinus Torvalds "Grandtech", 12621da177e4SLinus Torvalds "DC2MEGA", 12631da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 12641da177e4SLinus Torvalds US_FL_BULK32), 12651da177e4SLinus Torvalds 1266f7687217SAndrew Lunn /* Andrew Lunn <andrew@lunn.ch> 1267f7687217SAndrew Lunn * PanDigital Digital Picture Frame. Does not like ALLOW_MEDIUM_REMOVAL 1268f7687217SAndrew Lunn * on LUN 4. 1269f7687217SAndrew Lunn * Note: Vend:Prod clash with "Ltd Maxell WS30 Slim Digital Camera" 1270f7687217SAndrew Lunn */ 1271f7687217SAndrew Lunn UNUSUAL_DEV( 0x0851, 0x1543, 0x0200, 0x0200, 1272f7687217SAndrew Lunn "PanDigital", 1273f7687217SAndrew Lunn "Photo Frame", 1274f7687217SAndrew Lunn US_SC_DEVICE, US_PR_DEVICE, NULL, 1275f7687217SAndrew Lunn US_FL_NOT_LOCKABLE), 1276f7687217SAndrew Lunn 1277ba3e93adSAlan Stern /* Submitted by Jan De Luyck <lkml@kcore.org> */ 1278ba3e93adSAlan Stern UNUSUAL_DEV( 0x08bd, 0x1100, 0x0000, 0x0000, 1279ba3e93adSAlan Stern "CITIZEN", 1280ba3e93adSAlan Stern "X1DE-USB", 1281ba3e93adSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 1282ba3e93adSAlan Stern US_FL_SINGLE_LUN), 12831da177e4SLinus Torvalds 1284a7e555b6SDylan Taft /* Submitted by Dylan Taft <d13f00l@gmail.com> 1285a7e555b6SDylan Taft * US_FL_IGNORE_RESIDUE Needed 1286a7e555b6SDylan Taft */ 1287a7e555b6SDylan Taft UNUSUAL_DEV( 0x08ca, 0x3103, 0x0100, 0x0100, 1288a7e555b6SDylan Taft "AIPTEK", 1289a7e555b6SDylan Taft "Aiptek USB Keychain MP3 Player", 1290a7e555b6SDylan Taft US_SC_DEVICE, US_PR_DEVICE, NULL, 1291a7e555b6SDylan Taft US_FL_IGNORE_RESIDUE), 1292a7e555b6SDylan Taft 12931da177e4SLinus Torvalds /* Entry needed for flags. Moreover, all devices with this ID use 12941da177e4SLinus Torvalds * bulk-only transport, but _some_ falsely report Control/Bulk instead. 12951da177e4SLinus Torvalds * One example is "Trumpion Digital Research MYMP3". 12961da177e4SLinus Torvalds * Submitted by Bjoern Brill <brill(at)fs.math.uni-frankfurt.de> 12971da177e4SLinus Torvalds */ 12981da177e4SLinus Torvalds UNUSUAL_DEV( 0x090a, 0x1001, 0x0100, 0x0100, 12991da177e4SLinus Torvalds "Trumpion", 13001da177e4SLinus Torvalds "t33520 USB Flash Card Controller", 13011da177e4SLinus Torvalds US_SC_DEVICE, US_PR_BULK, NULL, 13021da177e4SLinus Torvalds US_FL_NEED_OVERRIDE ), 13031da177e4SLinus Torvalds 13041724757eSPhil Dibowitz /* Reported by Filippo Bardelli <filibard@libero.it> 13051724757eSPhil Dibowitz * The device reports a subclass of RBC, which is wrong. 13061724757eSPhil Dibowitz */ 13071724757eSPhil Dibowitz UNUSUAL_DEV( 0x090a, 0x1050, 0x0100, 0x0100, 13081724757eSPhil Dibowitz "Trumpion Microelectronics, Inc.", 13091724757eSPhil Dibowitz "33520 USB Digital Voice Recorder", 13101724757eSPhil Dibowitz US_SC_UFI, US_PR_DEVICE, NULL, 13111724757eSPhil Dibowitz 0), 13121724757eSPhil Dibowitz 13131da177e4SLinus Torvalds /* Trumpion Microelectronics MP3 player (felipe_alfaro@linuxmail.org) */ 13141da177e4SLinus Torvalds UNUSUAL_DEV( 0x090a, 0x1200, 0x0000, 0x9999, 13151da177e4SLinus Torvalds "Trumpion", 13161da177e4SLinus Torvalds "MP3 player", 13171da177e4SLinus Torvalds US_SC_RBC, US_PR_BULK, NULL, 13181da177e4SLinus Torvalds 0 ), 13191da177e4SLinus Torvalds 13201da177e4SLinus Torvalds /* aeb */ 13211da177e4SLinus Torvalds UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff, 13221da177e4SLinus Torvalds "Feiya", 13231da177e4SLinus Torvalds "5-in-1 Card Reader", 13241da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 13251da177e4SLinus Torvalds US_FL_FIX_CAPACITY ), 13261da177e4SLinus Torvalds 13271da177e4SLinus Torvalds /* This Pentax still camera is not conformant 13281da177e4SLinus Torvalds * to the USB storage specification: - 13291da177e4SLinus Torvalds * - It does not like the INQUIRY command. So we must handle this command 13301da177e4SLinus Torvalds * of the SCSI layer ourselves. 13311da177e4SLinus Torvalds * Tested on Rev. 10.00 (0x1000) 13321da177e4SLinus Torvalds * Submitted by James Courtier-Dutton <James@superbug.demon.co.uk> 13331da177e4SLinus Torvalds */ 13341da177e4SLinus Torvalds UNUSUAL_DEV( 0x0a17, 0x0004, 0x1000, 0x1000, 13351da177e4SLinus Torvalds "Pentax", 13361da177e4SLinus Torvalds "Optio 2/3/400", 13371da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 13381da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 13391da177e4SLinus Torvalds 13401da177e4SLinus Torvalds 13411da177e4SLinus Torvalds /* Submitted by Per Winkvist <per.winkvist@uk.com> */ 13421da177e4SLinus Torvalds UNUSUAL_DEV( 0x0a17, 0x006, 0x0000, 0xffff, 13431da177e4SLinus Torvalds "Pentax", 13441da177e4SLinus Torvalds "Optio S/S4", 13451da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 13461da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 13471da177e4SLinus Torvalds 1348e3f47f89SDaniel Drake /* Reported by Jaak Ristioja <Ristioja@gmail.com> */ 1349e3f47f89SDaniel Drake UNUSUAL_DEV( 0x0a17, 0x006e, 0x0100, 0x0100, 1350e3f47f89SDaniel Drake "Pentax", 1351e3f47f89SDaniel Drake "K10D", 1352e3f47f89SDaniel Drake US_SC_DEVICE, US_PR_DEVICE, NULL, 1353e3f47f89SDaniel Drake US_FL_FIX_CAPACITY ), 1354e3f47f89SDaniel Drake 135567fa1062SBen Collins /* These are virtual windows driver CDs, which the zd1211rw driver 135667fa1062SBen Collins * automatically converts into WLAN devices. */ 13573c332422SDaniel Drake UNUSUAL_DEV( 0x0ace, 0x2011, 0x0101, 0x0101, 13583c332422SDaniel Drake "ZyXEL", 13593c332422SDaniel Drake "G-220F USB-WLAN Install", 13603c332422SDaniel Drake US_SC_DEVICE, US_PR_DEVICE, NULL, 13613c332422SDaniel Drake US_FL_IGNORE_DEVICE ), 13623c332422SDaniel Drake 136364902cbaSMatthew Davidson UNUSUAL_DEV( 0x0ace, 0x20ff, 0x0101, 0x0101, 136464902cbaSMatthew Davidson "SiteCom", 136564902cbaSMatthew Davidson "WL-117 USB-WLAN Install", 136664902cbaSMatthew Davidson US_SC_DEVICE, US_PR_DEVICE, NULL, 136764902cbaSMatthew Davidson US_FL_IGNORE_DEVICE ), 136864902cbaSMatthew Davidson 1369281b064fSDan Williams /* Reported by Dan Williams <dcbw@redhat.com> 1370281b064fSDan Williams * Option N.V. mobile broadband modems 1371281b064fSDan Williams * Ignore driver CD mode and force into modem mode by default. 1372281b064fSDan Williams */ 1373281b064fSDan Williams 1374281b064fSDan Williams /* iCON 225 */ 1375281b064fSDan Williams UNUSUAL_DEV( 0x0af0, 0x6971, 0x0000, 0x9999, 1376281b064fSDan Williams "Option N.V.", 1377281b064fSDan Williams "Mass Storage", 1378281b064fSDan Williams US_SC_DEVICE, US_PR_DEVICE, option_ms_init, 1379281b064fSDan Williams 0), 1380281b064fSDan Williams 1381e7c6f80fSFilip Aben /* Reported by F. Aben <f.aben@option.com> 1382e7c6f80fSFilip Aben * This device (wrongly) has a vendor-specific device descriptor. 1383e7c6f80fSFilip Aben * The entry is needed so usb-storage can bind to it's mass-storage 1384e7c6f80fSFilip Aben * interface as an interface driver */ 1385e7c6f80fSFilip Aben UNUSUAL_DEV( 0x0af0, 0x7401, 0x0000, 0x0000, 1386e7c6f80fSFilip Aben "Option", 1387e7c6f80fSFilip Aben "GI 0401 SD-Card", 1388e7c6f80fSFilip Aben US_SC_DEVICE, US_PR_DEVICE, NULL, 1389e7c6f80fSFilip Aben 0 ), 1390e7c6f80fSFilip Aben 1391dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */ 1392dbe6e0c0SBen Efros UNUSUAL_DEV( 0x0bc2, 0x3010, 0x0000, 0x0000, 1393dbe6e0c0SBen Efros "Seagate", 1394dbe6e0c0SBen Efros "FreeAgent Pro", 1395dbe6e0c0SBen Efros US_SC_DEVICE, US_PR_DEVICE, NULL, 1396dbe6e0c0SBen Efros US_FL_SANE_SENSE ), 1397dbe6e0c0SBen Efros 13981da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_ISD200 13991da177e4SLinus Torvalds UNUSUAL_DEV( 0x0bf6, 0xa001, 0x0100, 0x0110, 14001da177e4SLinus Torvalds "ATI", 14011da177e4SLinus Torvalds "USB Cable 205", 14021da177e4SLinus Torvalds US_SC_ISD200, US_PR_BULK, isd200_Initialization, 14031da177e4SLinus Torvalds 0 ), 14041da177e4SLinus Torvalds #endif 14051da177e4SLinus Torvalds 14061da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_DATAFAB 14071da177e4SLinus Torvalds UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff, 14081da177e4SLinus Torvalds "Acomdata", 14091da177e4SLinus Torvalds "CF", 14101da177e4SLinus Torvalds US_SC_SCSI, US_PR_DATAFAB, NULL, 14111da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 14121da177e4SLinus Torvalds #endif 14131da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_SDDR55 14141da177e4SLinus Torvalds UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff, 14151da177e4SLinus Torvalds "Acomdata", 14161da177e4SLinus Torvalds "SM", 14171da177e4SLinus Torvalds US_SC_SCSI, US_PR_SDDR55, NULL, 14181da177e4SLinus Torvalds US_FL_SINGLE_LUN ), 14191da177e4SLinus Torvalds #endif 14201da177e4SLinus Torvalds 1421dbe6e0c0SBen Efros UNUSUAL_DEV( 0x0d49, 0x7310, 0x0000, 0x9999, 1422dbe6e0c0SBen Efros "Maxtor", 1423dbe6e0c0SBen Efros "USB to SATA", 1424dbe6e0c0SBen Efros US_SC_DEVICE, US_PR_DEVICE, NULL, 1425dbe6e0c0SBen Efros US_FL_SANE_SENSE), 1426dbe6e0c0SBen Efros 1427f9dc8f99SAlan Stern /* 1428f9dc8f99SAlan Stern * Pete Zaitcev <zaitcev@yahoo.com>, bz#164688. 1429f9dc8f99SAlan Stern * The device blatantly ignores LUN and returns 1 in GetMaxLUN. 1430f9dc8f99SAlan Stern */ 1431f9dc8f99SAlan Stern UNUSUAL_DEV( 0x0c45, 0x1060, 0x0100, 0x0100, 1432f9dc8f99SAlan Stern "Unknown", 1433f9dc8f99SAlan Stern "Unknown", 1434f9dc8f99SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 1435f9dc8f99SAlan Stern US_FL_SINGLE_LUN ), 1436f9dc8f99SAlan Stern 143734008dbfSMatthew Dharm /* Submitted by: Nick Sillik <n.sillik@temple.edu> 143834008dbfSMatthew Dharm * Needed for OneTouch extension to usb-storage 143934008dbfSMatthew Dharm * 144034008dbfSMatthew Dharm */ 144134008dbfSMatthew Dharm #ifdef CONFIG_USB_STORAGE_ONETOUCH 144294656639SAntti Andreimann UNUSUAL_DEV( 0x0d49, 0x7000, 0x0000, 0x9999, 144394656639SAntti Andreimann "Maxtor", 144494656639SAntti Andreimann "OneTouch External Harddrive", 144594656639SAntti Andreimann US_SC_DEVICE, US_PR_DEVICE, onetouch_connect_input, 144694656639SAntti Andreimann 0), 144734008dbfSMatthew Dharm UNUSUAL_DEV( 0x0d49, 0x7010, 0x0000, 0x9999, 144834008dbfSMatthew Dharm "Maxtor", 144934008dbfSMatthew Dharm "OneTouch External Harddrive", 145034008dbfSMatthew Dharm US_SC_DEVICE, US_PR_DEVICE, onetouch_connect_input, 145134008dbfSMatthew Dharm 0), 145234008dbfSMatthew Dharm #endif 145334008dbfSMatthew Dharm 14541da177e4SLinus Torvalds /* Submitted by Joris Struyve <joris@struyve.be> */ 14551da177e4SLinus Torvalds UNUSUAL_DEV( 0x0d96, 0x410a, 0x0001, 0xffff, 14561da177e4SLinus Torvalds "Medion", 14571da177e4SLinus Torvalds "MD 7425", 14581da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 14591da177e4SLinus Torvalds US_FL_FIX_INQUIRY), 14601da177e4SLinus Torvalds 14611da177e4SLinus Torvalds /* 14621da177e4SLinus Torvalds * Entry for Jenoptik JD 5200z3 14631da177e4SLinus Torvalds * 14641da177e4SLinus Torvalds * email: car.busse@gmx.de 14651da177e4SLinus Torvalds */ 14661da177e4SLinus Torvalds UNUSUAL_DEV( 0x0d96, 0x5200, 0x0001, 0x0200, 14671da177e4SLinus Torvalds "Jenoptik", 14681da177e4SLinus Torvalds "JD 5200 z3", 14691da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_FIX_INQUIRY), 14701da177e4SLinus Torvalds 14713b438e30SSergey Ovcharenko /* Reported by Jason Johnston <killean@shaw.ca> */ 14723b438e30SSergey Ovcharenko UNUSUAL_DEV( 0x0dc4, 0x0073, 0x0000, 0x0000, 14733b438e30SSergey Ovcharenko "Macpower Technology Co.LTD.", 14743b438e30SSergey Ovcharenko "USB 2.0 3.5\" DEVICE", 14753b438e30SSergey Ovcharenko US_SC_DEVICE, US_PR_DEVICE, NULL, 14763b438e30SSergey Ovcharenko US_FL_FIX_CAPACITY), 14773b438e30SSergey Ovcharenko 14781da177e4SLinus Torvalds /* Reported by Lubomir Blaha <tritol@trilogic.cz> 14791da177e4SLinus Torvalds * I _REALLY_ don't know what 3rd, 4th number and all defines mean, but this 14801da177e4SLinus Torvalds * works for me. Can anybody correct these values? (I able to test corrected 14811da177e4SLinus Torvalds * version.) 14821da177e4SLinus Torvalds */ 14831da177e4SLinus Torvalds UNUSUAL_DEV( 0x0dd8, 0x1060, 0x0000, 0xffff, 14841da177e4SLinus Torvalds "Netac", 14851da177e4SLinus Torvalds "USB-CF-Card", 14861da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 14871da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 14881da177e4SLinus Torvalds 148967fa1062SBen Collins /* Reported by Edward Chapman (taken from linux-usb mailing list) 149067fa1062SBen Collins Netac OnlyDisk Mini U2CV2 512MB USB 2.0 Flash Drive */ 149167fa1062SBen Collins UNUSUAL_DEV( 0x0dd8, 0xd202, 0x0000, 0x9999, 149267fa1062SBen Collins "Netac", 149367fa1062SBen Collins "USB Flash Disk", 149467fa1062SBen Collins US_SC_DEVICE, US_PR_DEVICE, NULL, 149567fa1062SBen Collins US_FL_IGNORE_RESIDUE ), 149667fa1062SBen Collins 149767fa1062SBen Collins 14981da177e4SLinus Torvalds /* Patch by Stephan Walter <stephan.walter@epfl.ch> 14991da177e4SLinus Torvalds * I don't know why, but it works... */ 15001da177e4SLinus Torvalds UNUSUAL_DEV( 0x0dda, 0x0001, 0x0012, 0x0012, 15011da177e4SLinus Torvalds "WINWARD", 15021da177e4SLinus Torvalds "Music Disk", 15031da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 15041da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 15051da177e4SLinus Torvalds 15061da177e4SLinus Torvalds /* Reported by Ian McConnell <ian at emit.demon.co.uk> */ 15071da177e4SLinus Torvalds UNUSUAL_DEV( 0x0dda, 0x0301, 0x0012, 0x0012, 15081da177e4SLinus Torvalds "PNP_MP3", 15091da177e4SLinus Torvalds "PNP_MP3 PLAYER", 15101da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 15111da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 15121da177e4SLinus Torvalds 1513982db2a1SAlan Stern /* Reported by Jim McCloskey <mcclosk@ucsc.edu> */ 1514982db2a1SAlan Stern UNUSUAL_DEV( 0x0e21, 0x0520, 0x0100, 0x0100, 1515982db2a1SAlan Stern "Cowon Systems", 1516982db2a1SAlan Stern "iAUDIO M5", 1517982db2a1SAlan Stern US_SC_DEVICE, US_PR_BULK, NULL, 1518bc724b98SPhil Dibowitz US_FL_NEED_OVERRIDE ), 1519982db2a1SAlan Stern 15201da177e4SLinus Torvalds /* Submitted by Antoine Mairesse <antoine.mairesse@free.fr> */ 15211da177e4SLinus Torvalds UNUSUAL_DEV( 0x0ed1, 0x6660, 0x0100, 0x0300, 15221da177e4SLinus Torvalds "USB", 15231da177e4SLinus Torvalds "Solid state disk", 15241da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 15251da177e4SLinus Torvalds US_FL_FIX_INQUIRY ), 15261da177e4SLinus Torvalds 15271da177e4SLinus Torvalds /* Submitted by Daniel Drake <dsd@gentoo.org> 15281da177e4SLinus Torvalds * Reported by dayul on the Gentoo Forums */ 15291da177e4SLinus Torvalds UNUSUAL_DEV( 0x0ea0, 0x2168, 0x0110, 0x0110, 15301da177e4SLinus Torvalds "Ours Technology", 15311da177e4SLinus Torvalds "Flash Disk", 15321da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 15331da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 15341da177e4SLinus Torvalds 15351da177e4SLinus Torvalds /* Reported by Rastislav Stanik <rs_kernel@yahoo.com> */ 15361da177e4SLinus Torvalds UNUSUAL_DEV( 0x0ea0, 0x6828, 0x0110, 0x0110, 15371da177e4SLinus Torvalds "USB", 15381da177e4SLinus Torvalds "Flash Disk", 15391da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 15401da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 15411da177e4SLinus Torvalds 1542883d989aSPhil Dibowitz /* Reported by Benjamin Schiller <sbenni@gmx.de> 1543883d989aSPhil Dibowitz * It is also sold by Easylite as DJ 20 */ 1544883d989aSPhil Dibowitz UNUSUAL_DEV( 0x0ed1, 0x7636, 0x0103, 0x0103, 1545883d989aSPhil Dibowitz "Typhoon", 1546883d989aSPhil Dibowitz "My DJ 1820", 1547883d989aSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 1548883d989aSPhil Dibowitz US_FL_IGNORE_RESIDUE | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64), 1549883d989aSPhil Dibowitz 15504e58407dSRobert Spitzenpfeil /* Patch by Leonid Petrov mail at lpetrov.net 15514e58407dSRobert Spitzenpfeil * Reported by Robert Spitzenpfeil <robert@spitzenpfeil.org> 15524e58407dSRobert Spitzenpfeil * http://www.qbik.ch/usb/devices/showdev.php?id=1705 15534e58407dSRobert Spitzenpfeil * Updated to 103 device by MJ Ray mjr at phonecoop.coop 15544e58407dSRobert Spitzenpfeil */ 15554e58407dSRobert Spitzenpfeil UNUSUAL_DEV( 0x0f19, 0x0103, 0x0100, 0x0100, 15564e58407dSRobert Spitzenpfeil "Oracom Co., Ltd", 15574e58407dSRobert Spitzenpfeil "ORC-200M", 15584e58407dSRobert Spitzenpfeil US_SC_DEVICE, US_PR_DEVICE, NULL, 15594e58407dSRobert Spitzenpfeil US_FL_IGNORE_RESIDUE ), 15604e58407dSRobert Spitzenpfeil 1561b41ee5d6SDavid Kuehling /* David Kuehling <dvdkhlng@gmx.de>: 1562b41ee5d6SDavid Kuehling * for MP3-Player AVOX WSX-300ER (bought in Japan). Reports lots of SCSI 1563b41ee5d6SDavid Kuehling * errors when trying to write. 1564b41ee5d6SDavid Kuehling */ 1565b41ee5d6SDavid Kuehling UNUSUAL_DEV( 0x0f19, 0x0105, 0x0100, 0x0100, 1566b41ee5d6SDavid Kuehling "C-MEX", 1567b41ee5d6SDavid Kuehling "A-VOX", 1568b41ee5d6SDavid Kuehling US_SC_DEVICE, US_PR_DEVICE, NULL, 1569b41ee5d6SDavid Kuehling US_FL_IGNORE_RESIDUE ), 1570b41ee5d6SDavid Kuehling 1571c17b49ecSJeremy Katz /* Jeremy Katz <katzj@redhat.com>: 1572c17b49ecSJeremy Katz * The Blackberry Pearl can run in two modes; a usb-storage only mode 1573c17b49ecSJeremy Katz * and a mode that allows access via mass storage and to its database. 1574c17b49ecSJeremy Katz * The berry_charge module will set the device to dual mode and thus we 1575c17b49ecSJeremy Katz * should ignore its native mode if that module is built 1576c17b49ecSJeremy Katz */ 1577c17b49ecSJeremy Katz #ifdef CONFIG_USB_BERRY_CHARGE 1578c17b49ecSJeremy Katz UNUSUAL_DEV( 0x0fca, 0x0006, 0x0001, 0x0001, 1579c17b49ecSJeremy Katz "RIM", 1580c17b49ecSJeremy Katz "Blackberry Pearl", 1581c17b49ecSJeremy Katz US_SC_DEVICE, US_PR_DEVICE, NULL, 1582c17b49ecSJeremy Katz US_FL_IGNORE_DEVICE ), 1583c17b49ecSJeremy Katz #endif 1584c17b49ecSJeremy Katz 15851da177e4SLinus Torvalds /* Reported by Michael Stattmann <michael@stattmann.com> */ 15861da177e4SLinus Torvalds UNUSUAL_DEV( 0x0fce, 0xd008, 0x0000, 0x0000, 15871da177e4SLinus Torvalds "Sony Ericsson", 15881da177e4SLinus Torvalds "V800-Vodafone 802", 15891da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 15901da177e4SLinus Torvalds US_FL_NO_WP_DETECT ), 15911da177e4SLinus Torvalds 1592b544d749SAlan Stern /* Reported by Jan Mate <mate@fiit.stuba.sk> 1593b544d749SAlan Stern * and by Soeren Sonnenburg <kernel@nn7.de> */ 159439c2f3acSPhil Dibowitz UNUSUAL_DEV( 0x0fce, 0xe030, 0x0000, 0x0000, 159539c2f3acSPhil Dibowitz "Sony Ericsson", 159639c2f3acSPhil Dibowitz "P990i", 159739c2f3acSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 1598b544d749SAlan Stern US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), 159939c2f3acSPhil Dibowitz 1600c9c770edSPhil Dibowitz /* Reported by Emmanuel Vasilakis <evas@forthnet.gr> */ 1601c9c770edSPhil Dibowitz UNUSUAL_DEV( 0x0fce, 0xe031, 0x0000, 0x0000, 1602c9c770edSPhil Dibowitz "Sony Ericsson", 1603c9c770edSPhil Dibowitz "M600i", 1604c9c770edSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 1605c5f23b0eSPhil Dibowitz US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ), 1606c9c770edSPhil Dibowitz 1607f9dc8f99SAlan Stern /* Reported by Ricardo Barberis <ricardo@dattatec.com> */ 1608f9dc8f99SAlan Stern UNUSUAL_DEV( 0x0fce, 0xe092, 0x0000, 0x0000, 1609f9dc8f99SAlan Stern "Sony Ericsson", 1610f9dc8f99SAlan Stern "P1i", 1611f9dc8f99SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 1612f9dc8f99SAlan Stern US_FL_IGNORE_RESIDUE ), 1613f9dc8f99SAlan Stern 16141da177e4SLinus Torvalds /* Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu> 16151da177e4SLinus Torvalds * Tested on hardware version 1.10. 16161da177e4SLinus Torvalds * Entry is needed only for the initializer function override. 161751b5bce8SPhil Dibowitz * Devices with bcd > 110 seem to not need it while those 161851b5bce8SPhil Dibowitz * with bcd < 110 appear to need it. 16191da177e4SLinus Torvalds */ 162051b5bce8SPhil Dibowitz UNUSUAL_DEV( 0x1019, 0x0c55, 0x0000, 0x0110, 16211da177e4SLinus Torvalds "Desknote", 16221da177e4SLinus Torvalds "UCR-61S2B", 16231da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, usb_stor_ucr61s2b_init, 16241da177e4SLinus Torvalds 0 ), 16251da177e4SLinus Torvalds 1626dbe6e0c0SBen Efros UNUSUAL_DEV( 0x1058, 0x0704, 0x0000, 0x9999, 1627dbe6e0c0SBen Efros "Western Digital", 1628dbe6e0c0SBen Efros "External HDD", 1629dbe6e0c0SBen Efros US_SC_DEVICE, US_PR_DEVICE, NULL, 1630dbe6e0c0SBen Efros US_FL_SANE_SENSE), 1631dbe6e0c0SBen Efros 1632274399d1SAlan Stern /* Reported by Fabio Venturi <f.venturi@tdnet.it> 1633274399d1SAlan Stern * The device reports a vendor-specific bDeviceClass. 1634274399d1SAlan Stern */ 1635274399d1SAlan Stern UNUSUAL_DEV( 0x10d6, 0x2200, 0x0100, 0x0100, 1636274399d1SAlan Stern "Actions Semiconductor", 1637274399d1SAlan Stern "Mtp device", 1638274399d1SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 1639274399d1SAlan Stern 0), 1640274399d1SAlan Stern 1641112225b1SKevin Lloyd /* Reported by Kevin Lloyd <linux@sierrawireless.com> 1642112225b1SKevin Lloyd * Entry is needed for the initializer function override, 1643112225b1SKevin Lloyd * which instructs the device to load as a modem 1644112225b1SKevin Lloyd * device. 1645112225b1SKevin Lloyd */ 1646112225b1SKevin Lloyd UNUSUAL_DEV( 0x1199, 0x0fff, 0x0000, 0x9999, 1647112225b1SKevin Lloyd "Sierra Wireless", 1648112225b1SKevin Lloyd "USB MMC Storage", 164932fe5e39SKevin Lloyd US_SC_DEVICE, US_PR_DEVICE, sierra_ms_init, 165032fe5e39SKevin Lloyd 0), 1651112225b1SKevin Lloyd 165249314378SJaco Kroon /* Reported by Jaco Kroon <jaco@kroon.co.za> 165349314378SJaco Kroon * The usb-storage module found on the Digitech GNX4 (and supposedly other 165449314378SJaco Kroon * devices) misbehaves and causes a bunch of invalid I/O errors. 165549314378SJaco Kroon */ 165649314378SJaco Kroon UNUSUAL_DEV( 0x1210, 0x0003, 0x0100, 0x0100, 165749314378SJaco Kroon "Digitech HMG", 165849314378SJaco Kroon "DigiTech Mass Storage", 165949314378SJaco Kroon US_SC_DEVICE, US_PR_DEVICE, NULL, 166049314378SJaco Kroon US_FL_IGNORE_RESIDUE ), 166149314378SJaco Kroon 1662aad8a278Sfangxiaozhi /* Reported by fangxiaozhi <huananhu@huawei.com> 1663aad8a278Sfangxiaozhi * This brings the HUAWEI data card devices into multi-port mode 1664d853d872SJohann Wilhelm */ 1665aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1001, 0x0000, 0x0000, 1666aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1667aad8a278Sfangxiaozhi "Mass Storage", 1668aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1669aad8a278Sfangxiaozhi 0), 1670d853d872SJohann Wilhelm UNUSUAL_DEV( 0x12d1, 0x1003, 0x0000, 0x0000, 1671d853d872SJohann Wilhelm "HUAWEI MOBILE", 1672d853d872SJohann Wilhelm "Mass Storage", 1673d853d872SJohann Wilhelm US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1674d853d872SJohann Wilhelm 0), 1675aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1004, 0x0000, 0x0000, 1676aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1677aad8a278Sfangxiaozhi "Mass Storage", 1678aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1679aad8a278Sfangxiaozhi 0), 1680aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1401, 0x0000, 0x0000, 1681aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1682aad8a278Sfangxiaozhi "Mass Storage", 1683aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1684aad8a278Sfangxiaozhi 0), 16851460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1402, 0x0000, 0x0000, 16861460e5e4Sfangxiaozhi "HUAWEI MOBILE", 16871460e5e4Sfangxiaozhi "Mass Storage", 16881460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 16891460e5e4Sfangxiaozhi 0), 1690aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1403, 0x0000, 0x0000, 1691aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1692aad8a278Sfangxiaozhi "Mass Storage", 1693aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1694aad8a278Sfangxiaozhi 0), 16951460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1404, 0x0000, 0x0000, 16961460e5e4Sfangxiaozhi "HUAWEI MOBILE", 16971460e5e4Sfangxiaozhi "Mass Storage", 16981460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 16991460e5e4Sfangxiaozhi 0), 1700aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1405, 0x0000, 0x0000, 1701aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1702aad8a278Sfangxiaozhi "Mass Storage", 1703aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1704aad8a278Sfangxiaozhi 0), 1705aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1406, 0x0000, 0x0000, 1706aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1707aad8a278Sfangxiaozhi "Mass Storage", 1708aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1709aad8a278Sfangxiaozhi 0), 17101460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1407, 0x0000, 0x0000, 17111460e5e4Sfangxiaozhi "HUAWEI MOBILE", 17121460e5e4Sfangxiaozhi "Mass Storage", 17131460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 17141460e5e4Sfangxiaozhi 0), 1715aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1408, 0x0000, 0x0000, 1716aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1717aad8a278Sfangxiaozhi "Mass Storage", 1718aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1719aad8a278Sfangxiaozhi 0), 1720aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1409, 0x0000, 0x0000, 1721aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1722aad8a278Sfangxiaozhi "Mass Storage", 1723aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1724aad8a278Sfangxiaozhi 0), 17251460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x140A, 0x0000, 0x0000, 17261460e5e4Sfangxiaozhi "HUAWEI MOBILE", 17271460e5e4Sfangxiaozhi "Mass Storage", 17281460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 17291460e5e4Sfangxiaozhi 0), 17301460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x140B, 0x0000, 0x0000, 17311460e5e4Sfangxiaozhi "HUAWEI MOBILE", 17321460e5e4Sfangxiaozhi "Mass Storage", 17331460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 17341460e5e4Sfangxiaozhi 0), 17351460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x140C, 0x0000, 0x0000, 17361460e5e4Sfangxiaozhi "HUAWEI MOBILE", 17371460e5e4Sfangxiaozhi "Mass Storage", 17381460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 17391460e5e4Sfangxiaozhi 0), 17401460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x140D, 0x0000, 0x0000, 17411460e5e4Sfangxiaozhi "HUAWEI MOBILE", 17421460e5e4Sfangxiaozhi "Mass Storage", 17431460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 17441460e5e4Sfangxiaozhi 0), 17451460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x140E, 0x0000, 0x0000, 17461460e5e4Sfangxiaozhi "HUAWEI MOBILE", 17471460e5e4Sfangxiaozhi "Mass Storage", 17481460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 17491460e5e4Sfangxiaozhi 0), 17501460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x140F, 0x0000, 0x0000, 17511460e5e4Sfangxiaozhi "HUAWEI MOBILE", 17521460e5e4Sfangxiaozhi "Mass Storage", 17531460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 17541460e5e4Sfangxiaozhi 0), 1755aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1410, 0x0000, 0x0000, 1756aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1757aad8a278Sfangxiaozhi "Mass Storage", 1758aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1759aad8a278Sfangxiaozhi 0), 1760aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1411, 0x0000, 0x0000, 1761aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1762aad8a278Sfangxiaozhi "Mass Storage", 1763aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1764aad8a278Sfangxiaozhi 0), 1765aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1412, 0x0000, 0x0000, 1766aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1767aad8a278Sfangxiaozhi "Mass Storage", 1768aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1769aad8a278Sfangxiaozhi 0), 1770aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1413, 0x0000, 0x0000, 1771aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1772aad8a278Sfangxiaozhi "Mass Storage", 1773aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1774aad8a278Sfangxiaozhi 0), 1775aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1414, 0x0000, 0x0000, 1776aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1777aad8a278Sfangxiaozhi "Mass Storage", 1778aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1779aad8a278Sfangxiaozhi 0), 1780aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1415, 0x0000, 0x0000, 1781aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1782aad8a278Sfangxiaozhi "Mass Storage", 1783aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1784aad8a278Sfangxiaozhi 0), 1785aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1416, 0x0000, 0x0000, 1786aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1787aad8a278Sfangxiaozhi "Mass Storage", 1788aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1789aad8a278Sfangxiaozhi 0), 1790aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1417, 0x0000, 0x0000, 1791aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1792aad8a278Sfangxiaozhi "Mass Storage", 1793aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1794aad8a278Sfangxiaozhi 0), 1795aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1418, 0x0000, 0x0000, 1796aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1797aad8a278Sfangxiaozhi "Mass Storage", 1798aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1799aad8a278Sfangxiaozhi 0), 1800aad8a278Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1419, 0x0000, 0x0000, 1801aad8a278Sfangxiaozhi "HUAWEI MOBILE", 1802aad8a278Sfangxiaozhi "Mass Storage", 1803aad8a278Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 1804aad8a278Sfangxiaozhi 0), 18051460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x141A, 0x0000, 0x0000, 18061460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18071460e5e4Sfangxiaozhi "Mass Storage", 18081460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18091460e5e4Sfangxiaozhi 0), 18101460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x141B, 0x0000, 0x0000, 18111460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18121460e5e4Sfangxiaozhi "Mass Storage", 18131460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18141460e5e4Sfangxiaozhi 0), 18151460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x141C, 0x0000, 0x0000, 18161460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18171460e5e4Sfangxiaozhi "Mass Storage", 18181460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18191460e5e4Sfangxiaozhi 0), 18201460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x141D, 0x0000, 0x0000, 18211460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18221460e5e4Sfangxiaozhi "Mass Storage", 18231460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18241460e5e4Sfangxiaozhi 0), 18251460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x141E, 0x0000, 0x0000, 18261460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18271460e5e4Sfangxiaozhi "Mass Storage", 18281460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18291460e5e4Sfangxiaozhi 0), 18301460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x141F, 0x0000, 0x0000, 18311460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18321460e5e4Sfangxiaozhi "Mass Storage", 18331460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18341460e5e4Sfangxiaozhi 0), 18351460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1420, 0x0000, 0x0000, 18361460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18371460e5e4Sfangxiaozhi "Mass Storage", 18381460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18391460e5e4Sfangxiaozhi 0), 18401460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1421, 0x0000, 0x0000, 18411460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18421460e5e4Sfangxiaozhi "Mass Storage", 18431460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18441460e5e4Sfangxiaozhi 0), 18451460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1422, 0x0000, 0x0000, 18461460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18471460e5e4Sfangxiaozhi "Mass Storage", 18481460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18491460e5e4Sfangxiaozhi 0), 18501460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1423, 0x0000, 0x0000, 18511460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18521460e5e4Sfangxiaozhi "Mass Storage", 18531460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18541460e5e4Sfangxiaozhi 0), 18551460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1424, 0x0000, 0x0000, 18561460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18571460e5e4Sfangxiaozhi "Mass Storage", 18581460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18591460e5e4Sfangxiaozhi 0), 18601460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1425, 0x0000, 0x0000, 18611460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18621460e5e4Sfangxiaozhi "Mass Storage", 18631460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18641460e5e4Sfangxiaozhi 0), 18651460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1426, 0x0000, 0x0000, 18661460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18671460e5e4Sfangxiaozhi "Mass Storage", 18681460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18691460e5e4Sfangxiaozhi 0), 18701460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1427, 0x0000, 0x0000, 18711460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18721460e5e4Sfangxiaozhi "Mass Storage", 18731460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18741460e5e4Sfangxiaozhi 0), 18751460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1428, 0x0000, 0x0000, 18761460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18771460e5e4Sfangxiaozhi "Mass Storage", 18781460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18791460e5e4Sfangxiaozhi 0), 18801460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1429, 0x0000, 0x0000, 18811460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18821460e5e4Sfangxiaozhi "Mass Storage", 18831460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18841460e5e4Sfangxiaozhi 0), 18851460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x142A, 0x0000, 0x0000, 18861460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18871460e5e4Sfangxiaozhi "Mass Storage", 18881460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18891460e5e4Sfangxiaozhi 0), 18901460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x142B, 0x0000, 0x0000, 18911460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18921460e5e4Sfangxiaozhi "Mass Storage", 18931460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18941460e5e4Sfangxiaozhi 0), 18951460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x142C, 0x0000, 0x0000, 18961460e5e4Sfangxiaozhi "HUAWEI MOBILE", 18971460e5e4Sfangxiaozhi "Mass Storage", 18981460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 18991460e5e4Sfangxiaozhi 0), 19001460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x142D, 0x0000, 0x0000, 19011460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19021460e5e4Sfangxiaozhi "Mass Storage", 19031460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19041460e5e4Sfangxiaozhi 0), 19051460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x142E, 0x0000, 0x0000, 19061460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19071460e5e4Sfangxiaozhi "Mass Storage", 19081460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19091460e5e4Sfangxiaozhi 0), 19101460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x142F, 0x0000, 0x0000, 19111460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19121460e5e4Sfangxiaozhi "Mass Storage", 19131460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19141460e5e4Sfangxiaozhi 0), 19151460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1430, 0x0000, 0x0000, 19161460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19171460e5e4Sfangxiaozhi "Mass Storage", 19181460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19191460e5e4Sfangxiaozhi 0), 19201460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1431, 0x0000, 0x0000, 19211460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19221460e5e4Sfangxiaozhi "Mass Storage", 19231460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19241460e5e4Sfangxiaozhi 0), 19251460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1432, 0x0000, 0x0000, 19261460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19271460e5e4Sfangxiaozhi "Mass Storage", 19281460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19291460e5e4Sfangxiaozhi 0), 19301460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1433, 0x0000, 0x0000, 19311460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19321460e5e4Sfangxiaozhi "Mass Storage", 19331460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19341460e5e4Sfangxiaozhi 0), 19351460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1434, 0x0000, 0x0000, 19361460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19371460e5e4Sfangxiaozhi "Mass Storage", 19381460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19391460e5e4Sfangxiaozhi 0), 19401460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1435, 0x0000, 0x0000, 19411460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19421460e5e4Sfangxiaozhi "Mass Storage", 19431460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19441460e5e4Sfangxiaozhi 0), 19451460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1436, 0x0000, 0x0000, 19461460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19471460e5e4Sfangxiaozhi "Mass Storage", 19481460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19491460e5e4Sfangxiaozhi 0), 19501460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1437, 0x0000, 0x0000, 19511460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19521460e5e4Sfangxiaozhi "Mass Storage", 19531460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19541460e5e4Sfangxiaozhi 0), 19551460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1438, 0x0000, 0x0000, 19561460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19571460e5e4Sfangxiaozhi "Mass Storage", 19581460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19591460e5e4Sfangxiaozhi 0), 19601460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x1439, 0x0000, 0x0000, 19611460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19621460e5e4Sfangxiaozhi "Mass Storage", 19631460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19641460e5e4Sfangxiaozhi 0), 19651460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x143A, 0x0000, 0x0000, 19661460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19671460e5e4Sfangxiaozhi "Mass Storage", 19681460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19691460e5e4Sfangxiaozhi 0), 19701460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x143B, 0x0000, 0x0000, 19711460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19721460e5e4Sfangxiaozhi "Mass Storage", 19731460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19741460e5e4Sfangxiaozhi 0), 19751460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x143C, 0x0000, 0x0000, 19761460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19771460e5e4Sfangxiaozhi "Mass Storage", 19781460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19791460e5e4Sfangxiaozhi 0), 19801460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x143D, 0x0000, 0x0000, 19811460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19821460e5e4Sfangxiaozhi "Mass Storage", 19831460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19841460e5e4Sfangxiaozhi 0), 19851460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x143E, 0x0000, 0x0000, 19861460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19871460e5e4Sfangxiaozhi "Mass Storage", 19881460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19891460e5e4Sfangxiaozhi 0), 19901460e5e4Sfangxiaozhi UNUSUAL_DEV( 0x12d1, 0x143F, 0x0000, 0x0000, 19911460e5e4Sfangxiaozhi "HUAWEI MOBILE", 19921460e5e4Sfangxiaozhi "Mass Storage", 19931460e5e4Sfangxiaozhi US_SC_DEVICE, US_PR_DEVICE, usb_stor_huawei_e220_init, 19941460e5e4Sfangxiaozhi 0), 1995d853d872SJohann Wilhelm 19967b1cbebaSPhil Dibowitz /* Reported by Vilius Bilinkevicius <vilisas AT xxx DOT lt) */ 19977b1cbebaSPhil Dibowitz UNUSUAL_DEV( 0x132b, 0x000b, 0x0001, 0x0001, 19987b1cbebaSPhil Dibowitz "Minolta", 19997b1cbebaSPhil Dibowitz "Dimage Z10", 20007b1cbebaSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 20017b1cbebaSPhil Dibowitz 0 ), 20027b1cbebaSPhil Dibowitz 20031da177e4SLinus Torvalds /* Reported by Kotrla Vitezslav <kotrla@ceb.cz> */ 20041da177e4SLinus Torvalds UNUSUAL_DEV( 0x1370, 0x6828, 0x0110, 0x0110, 20051da177e4SLinus Torvalds "SWISSBIT", 20061da177e4SLinus Torvalds "Black Silver", 20071da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 20081da177e4SLinus Torvalds US_FL_IGNORE_RESIDUE ), 20091da177e4SLinus Torvalds 2010f1cd4ad2SPhil Dibowitz /* Reported by Francesco Foresti <frafore@tiscali.it> */ 2011f1cd4ad2SPhil Dibowitz UNUSUAL_DEV( 0x14cd, 0x6600, 0x0201, 0x0201, 2012f1cd4ad2SPhil Dibowitz "Super Top", 2013f1cd4ad2SPhil Dibowitz "IDE DEVICE", 2014f1cd4ad2SPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 2015f1cd4ad2SPhil Dibowitz US_FL_IGNORE_RESIDUE ), 2016f1cd4ad2SPhil Dibowitz 20173030ca4cSPhil Dibowitz /* Reported by Alexandre Oliva <oliva@lsd.ic.unicamp.br> 20183030ca4cSPhil Dibowitz * JMicron responds to USN and several other SCSI ioctls with a 20193030ca4cSPhil Dibowitz * residue that causes subsequent I/O requests to fail. */ 20203030ca4cSPhil Dibowitz UNUSUAL_DEV( 0x152d, 0x2329, 0x0100, 0x0100, 20213030ca4cSPhil Dibowitz "JMicron", 20223030ca4cSPhil Dibowitz "USB to ATA/ATAPI Bridge", 20233030ca4cSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 2024dbe6e0c0SBen Efros US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ), 20253030ca4cSPhil Dibowitz 2026f1cd4ad2SPhil Dibowitz /* Reported by Robert Schedel <r.schedel@yahoo.de> 2027f1cd4ad2SPhil Dibowitz * Note: this is a 'super top' device like the above 14cd/6600 device */ 2028f1cd4ad2SPhil Dibowitz UNUSUAL_DEV( 0x1652, 0x6600, 0x0201, 0x0201, 2029f1cd4ad2SPhil Dibowitz "Teac", 2030f1cd4ad2SPhil Dibowitz "HD-35PUK-B", 2031f1cd4ad2SPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 2032f1cd4ad2SPhil Dibowitz US_FL_IGNORE_RESIDUE ), 2033f1cd4ad2SPhil Dibowitz 2034dddcb8b7Sandreoli@samba.ing.unimo.it /* Reported by Mauro Andreolini <andreoli@weblab.ing.unimo.it> 2035dddcb8b7Sandreoli@samba.ing.unimo.it * This entry is needed to bypass the ZeroCD mechanism 2036dddcb8b7Sandreoli@samba.ing.unimo.it * and to properly load as a modem device. 2037dddcb8b7Sandreoli@samba.ing.unimo.it */ 2038dddcb8b7Sandreoli@samba.ing.unimo.it UNUSUAL_DEV( 0x19d2, 0x2000, 0x0000, 0x0000, 2039dddcb8b7Sandreoli@samba.ing.unimo.it "Onda ET502HS", 2040dddcb8b7Sandreoli@samba.ing.unimo.it "USB MMC Storage", 2041dddcb8b7Sandreoli@samba.ing.unimo.it US_SC_DEVICE, US_PR_DEVICE, NULL, 2042dddcb8b7Sandreoli@samba.ing.unimo.it US_FL_IGNORE_DEVICE), 2043dddcb8b7Sandreoli@samba.ing.unimo.it 2044*b90de8aeSOliver Neukum UNUSUAL_DEV( 0x2116, 0x0320, 0x0001, 0x0001, 2045*b90de8aeSOliver Neukum "ST", 2046*b90de8aeSOliver Neukum "2A", 2047*b90de8aeSOliver Neukum US_SC_DEVICE, US_PR_DEVICE, NULL, 2048*b90de8aeSOliver Neukum US_FL_FIX_CAPACITY), 2049*b90de8aeSOliver Neukum 20500ddc0634SDavide Perini /* patch submitted by Davide Perini <perini.davide@dpsoftware.org> 20510ddc0634SDavide Perini * and Renato Perini <rperini@email.it> 20520ddc0634SDavide Perini */ 20530ddc0634SDavide Perini UNUSUAL_DEV( 0x22b8, 0x3010, 0x0001, 0x0001, 20540ddc0634SDavide Perini "Motorola", 20550ddc0634SDavide Perini "RAZR V3x", 20560ddc0634SDavide Perini US_SC_DEVICE, US_PR_DEVICE, NULL, 20570ddc0634SDavide Perini US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ), 20580ddc0634SDavide Perini 2059a7f3dd5dSPete Zaitcev /* 2060cc36bdd4SConstantin Baranov * Patch by Constantin Baranov <const@tltsu.ru> 2061cc36bdd4SConstantin Baranov * Report by Andreas Koenecke. 2062cc36bdd4SConstantin Baranov * Motorola ROKR Z6. 2063cc36bdd4SConstantin Baranov */ 2064cc36bdd4SConstantin Baranov UNUSUAL_DEV( 0x22b8, 0x6426, 0x0101, 0x0101, 2065cc36bdd4SConstantin Baranov "Motorola", 2066cc36bdd4SConstantin Baranov "MSnc.", 2067cc36bdd4SConstantin Baranov US_SC_DEVICE, US_PR_DEVICE, NULL, 2068cc36bdd4SConstantin Baranov US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY | US_FL_BULK_IGNORE_TAG), 2069cc36bdd4SConstantin Baranov 20701da177e4SLinus Torvalds /* Reported by Radovan Garabik <garabik@kassiopeia.juls.savba.sk> */ 20711da177e4SLinus Torvalds UNUSUAL_DEV( 0x2735, 0x100b, 0x0000, 0x9999, 20721da177e4SLinus Torvalds "MPIO", 20731da177e4SLinus Torvalds "HS200", 20741da177e4SLinus Torvalds US_SC_DEVICE, US_PR_DEVICE, NULL, 20751da177e4SLinus Torvalds US_FL_GO_SLOW ), 20761da177e4SLinus Torvalds 2077ed3e8fcaSPhil Dibowitz /* Reported by Rohan Hart <rohan.hart17@gmail.com> */ 2078ed3e8fcaSPhil Dibowitz UNUSUAL_DEV( 0x2770, 0x915d, 0x0010, 0x0010, 2079ed3e8fcaSPhil Dibowitz "INTOVA", 2080ed3e8fcaSPhil Dibowitz "Pixtreme", 2081ed3e8fcaSPhil Dibowitz US_SC_DEVICE, US_PR_DEVICE, NULL, 2082ed3e8fcaSPhil Dibowitz US_FL_FIX_CAPACITY ), 2083ed3e8fcaSPhil Dibowitz 2084e8fab4ceSFrédéric Marchal /* Reported by Frederic Marchal <frederic.marchal@wowcompany.com> 2085e8fab4ceSFrédéric Marchal * Mio Moov 330 2086e8fab4ceSFrédéric Marchal */ 2087e8fab4ceSFrédéric Marchal UNUSUAL_DEV( 0x3340, 0xffff, 0x0000, 0x0000, 2088e8fab4ceSFrédéric Marchal "Mitac", 2089e8fab4ceSFrédéric Marchal "Mio DigiWalker USB Sync", 2090e8fab4ceSFrédéric Marchal US_SC_DEVICE,US_PR_DEVICE,NULL, 2091e8fab4ceSFrédéric Marchal US_FL_MAX_SECTORS_64 ), 2092e8fab4ceSFrédéric Marchal 2093368ee646SAlan Stern /* Reported by Andrey Rahmatullin <wrar@altlinux.org> */ 2094368ee646SAlan Stern UNUSUAL_DEV( 0x4102, 0x1020, 0x0100, 0x0100, 2095368ee646SAlan Stern "iRiver", 2096368ee646SAlan Stern "MP3 T10", 2097368ee646SAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 2098368ee646SAlan Stern US_FL_IGNORE_RESIDUE ), 2099368ee646SAlan Stern 210063dc3ff3SDavid Härdeman /* 210196de0e25SJan Engelhardt * David Härdeman <david@2gen.com> 210263dc3ff3SDavid Härdeman * The key makes the SCSI stack print confusing (but harmless) messages 210363dc3ff3SDavid Härdeman */ 210463dc3ff3SDavid Härdeman UNUSUAL_DEV( 0x4146, 0xba01, 0x0100, 0x0100, 210563dc3ff3SDavid Härdeman "Iomega", 210663dc3ff3SDavid Härdeman "Micro Mini 1GB", 210763dc3ff3SDavid Härdeman US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), 210863dc3ff3SDavid Härdeman 21091da177e4SLinus Torvalds #ifdef CONFIG_USB_STORAGE_SDDR55 21101da177e4SLinus Torvalds UNUSUAL_DEV( 0x55aa, 0xa103, 0x0000, 0x9999, 21111da177e4SLinus Torvalds "Sandisk", 21121da177e4SLinus Torvalds "ImageMate SDDR55", 21131da177e4SLinus Torvalds US_SC_SCSI, US_PR_SDDR55, NULL, 21141da177e4SLinus Torvalds US_FL_SINGLE_LUN), 21151da177e4SLinus Torvalds #endif 2116a00828e9SPete Zaitcev 2117a2149bceSAlan Stern /* Reported by Andrew Simmons <andrew.simmons@gmail.com> */ 2118a2149bceSAlan Stern UNUSUAL_DEV( 0xed06, 0x4500, 0x0001, 0x0001, 2119a2149bceSAlan Stern "DataStor", 2120a2149bceSAlan Stern "USB4500 FW1.04", 2121a2149bceSAlan Stern US_SC_DEVICE, US_PR_DEVICE, NULL, 212261bf54b7SOliver Neukum US_FL_CAPACITY_HEURISTICS), 2123a2149bceSAlan Stern 2124a00828e9SPete Zaitcev /* Control/Bulk transport for all SubClass values */ 2125a00828e9SPete Zaitcev USUAL_DEV(US_SC_RBC, US_PR_CB, USB_US_TYPE_STOR), 2126a00828e9SPete Zaitcev USUAL_DEV(US_SC_8020, US_PR_CB, USB_US_TYPE_STOR), 2127a00828e9SPete Zaitcev USUAL_DEV(US_SC_QIC, US_PR_CB, USB_US_TYPE_STOR), 2128a00828e9SPete Zaitcev USUAL_DEV(US_SC_UFI, US_PR_CB, USB_US_TYPE_STOR), 2129a00828e9SPete Zaitcev USUAL_DEV(US_SC_8070, US_PR_CB, USB_US_TYPE_STOR), 2130a00828e9SPete Zaitcev USUAL_DEV(US_SC_SCSI, US_PR_CB, USB_US_TYPE_STOR), 2131a00828e9SPete Zaitcev 2132a00828e9SPete Zaitcev /* Control/Bulk/Interrupt transport for all SubClass values */ 2133a00828e9SPete Zaitcev USUAL_DEV(US_SC_RBC, US_PR_CBI, USB_US_TYPE_STOR), 2134a00828e9SPete Zaitcev USUAL_DEV(US_SC_8020, US_PR_CBI, USB_US_TYPE_STOR), 2135a00828e9SPete Zaitcev USUAL_DEV(US_SC_QIC, US_PR_CBI, USB_US_TYPE_STOR), 2136a00828e9SPete Zaitcev USUAL_DEV(US_SC_UFI, US_PR_CBI, USB_US_TYPE_STOR), 2137a00828e9SPete Zaitcev USUAL_DEV(US_SC_8070, US_PR_CBI, USB_US_TYPE_STOR), 2138a00828e9SPete Zaitcev USUAL_DEV(US_SC_SCSI, US_PR_CBI, USB_US_TYPE_STOR), 2139a00828e9SPete Zaitcev 2140a00828e9SPete Zaitcev /* Bulk-only transport for all SubClass values */ 2141a00828e9SPete Zaitcev USUAL_DEV(US_SC_RBC, US_PR_BULK, USB_US_TYPE_STOR), 2142a00828e9SPete Zaitcev USUAL_DEV(US_SC_8020, US_PR_BULK, USB_US_TYPE_STOR), 2143a00828e9SPete Zaitcev USUAL_DEV(US_SC_QIC, US_PR_BULK, USB_US_TYPE_STOR), 2144a00828e9SPete Zaitcev USUAL_DEV(US_SC_UFI, US_PR_BULK, USB_US_TYPE_STOR), 2145a00828e9SPete Zaitcev USUAL_DEV(US_SC_8070, US_PR_BULK, USB_US_TYPE_STOR), 2146a00828e9SPete Zaitcev USUAL_DEV(US_SC_SCSI, US_PR_BULK, 0), 2147