xref: /openbmc/linux/drivers/usb/storage/unusual_devs.h (revision 62354454625741f0569c2cbe45b2d192f8fd258e)
15fd54aceSGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0+
2f0183a33SFelipe Balbi /*
3f0183a33SFelipe Balbi  * Driver for USB Mass Storage compliant devices
4093cf723SSteven Cole  * Unusual Devices File
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  * Current development and maintenance by:
71da177e4SLinus Torvalds  *   (c) 2000-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
81da177e4SLinus Torvalds  *
91da177e4SLinus Torvalds  * Initial work by:
101da177e4SLinus Torvalds  *   (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc.
111da177e4SLinus Torvalds  *
121da177e4SLinus Torvalds  * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
131da177e4SLinus Torvalds  * information about this driver.
141da177e4SLinus Torvalds  */
151da177e4SLinus Torvalds 
16f0183a33SFelipe Balbi /*
17f0183a33SFelipe Balbi  * IMPORTANT NOTE: This file must be included in another file which does
181da177e4SLinus Torvalds  * the following thing for it to work:
1925ff1c31SAlan Stern  * The UNUSUAL_DEV, COMPLIANT_DEV, and USUAL_DEV macros must be defined
2025ff1c31SAlan Stern  * before this file is included.
211da177e4SLinus Torvalds  */
221da177e4SLinus Torvalds 
23f0183a33SFelipe Balbi /*
24f0183a33SFelipe Balbi  * If you edit this file, please try to keep it sorted first by VendorID,
251da177e4SLinus Torvalds  * then by ProductID.
261da177e4SLinus Torvalds  *
271da177e4SLinus Torvalds  * If you want to add an entry for this file, be sure to include the
281da177e4SLinus Torvalds  * following information:
291da177e4SLinus Torvalds  *	- a patch that adds the entry for your device, including your
301da177e4SLinus Torvalds  *	  email address right above the entry (plus maybe a brief
311da177e4SLinus Torvalds  *	  explanation of the reason for the entry),
3221470e32SMauro Carvalho Chehab  *	- a copy of /sys/kernel/debug/usb/devices with your device plugged in
331da177e4SLinus Torvalds  *	  running with this patch.
341da177e4SLinus Torvalds  * Send your submission to either Phil Dibowitz <phil@ipom.com> or
351da177e4SLinus Torvalds  * Alan Stern <stern@rowland.harvard.edu>, and don't forget to CC: the
36cef03f8fSAndrew Lunn  * USB development list <linux-usb@vger.kernel.org> and the USB storage list
37cef03f8fSAndrew Lunn  * <usb-storage@lists.one-eyed-alien.net>
381da177e4SLinus Torvalds  */
391da177e4SLinus Torvalds 
40f0183a33SFelipe Balbi /*
41f0183a33SFelipe Balbi  * Note: If you add an entry only in order to set the CAPACITY_OK flag,
4225ff1c31SAlan Stern  * use the COMPLIANT_DEV macro instead of UNUSUAL_DEV.  This is
4325ff1c31SAlan Stern  * because such entries mark devices which actually work correctly,
4425ff1c31SAlan Stern  * as opposed to devices that do something strangely or wrongly.
4525ff1c31SAlan Stern  */
4625ff1c31SAlan Stern 
47f0183a33SFelipe Balbi /*
48f0183a33SFelipe Balbi  * In-kernel mode switching is deprecated.  Do not add new devices to
49fbb8c745SBjørn Mork  * this list for the sole purpose of switching them to a different
50fbb8c745SBjørn Mork  * mode.  Existing userspace solutions are superior.
51fbb8c745SBjørn Mork  *
52fbb8c745SBjørn Mork  * New mode switching devices should instead be added to the database
53fbb8c745SBjørn Mork  * maintained at http://www.draisberghof.de/usb_modeswitch/
54fbb8c745SBjørn Mork  */
55fbb8c745SBjørn Mork 
560ff71883SAlan Stern #if !defined(CONFIG_USB_STORAGE_SDDR09) && \
570ff71883SAlan Stern 		!defined(CONFIG_USB_STORAGE_SDDR09_MODULE)
580ff71883SAlan Stern #define NO_SDDR09
590ff71883SAlan Stern #endif
600ff71883SAlan Stern 
61f0183a33SFelipe Balbi /* patch submitted by Vivian Bregier <Vivian.Bregier@imag.fr> */
628af60be9SVivian Bregier UNUSUAL_DEV(  0x03eb, 0x2002, 0x0100, 0x0100,
638af60be9SVivian Bregier 		"ATMEL",
648af60be9SVivian Bregier 		"SND1 Storage",
658fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
668af60be9SVivian Bregier 		US_FL_IGNORE_RESIDUE),
678af60be9SVivian Bregier 
689d5847bcSRodolfo Quesada /* Reported by Rodolfo Quesada <rquesada@roqz.net> */
699d5847bcSRodolfo Quesada UNUSUAL_DEV(  0x03ee, 0x6906, 0x0003, 0x0003,
709d5847bcSRodolfo Quesada 		"VIA Technologies Inc.",
719d5847bcSRodolfo Quesada 		"Mitsumi multi cardreader",
728fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
739d5847bcSRodolfo Quesada 		US_FL_IGNORE_RESIDUE ),
749d5847bcSRodolfo Quesada 
751da177e4SLinus Torvalds UNUSUAL_DEV(  0x03f0, 0x0107, 0x0200, 0x0200,
761da177e4SLinus Torvalds 		"HP",
771da177e4SLinus Torvalds 		"CD-Writer+",
788fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_CB, NULL, 0),
791da177e4SLinus Torvalds 
80dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */
81dbe6e0c0SBen Efros UNUSUAL_DEV(  0x03f0, 0x070c, 0x0000, 0x0000,
82dbe6e0c0SBen Efros 		"HP",
83dbe6e0c0SBen Efros 		"Personal Media Drive",
848fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
85dbe6e0c0SBen Efros 		US_FL_SANE_SENSE ),
86dbe6e0c0SBen Efros 
87f0183a33SFelipe Balbi /*
88f0183a33SFelipe Balbi  * Reported by Grant Grundler <grundler@parisc-linux.org>
894b24f91cSGrant Grundler  * HP r707 camera in "Disk" mode with 2.00.23 or 2.00.24 firmware.
904b24f91cSGrant Grundler  */
914b24f91cSGrant Grundler UNUSUAL_DEV(  0x03f0, 0x4002, 0x0001, 0x0001,
924b24f91cSGrant Grundler 		"HP",
934b24f91cSGrant Grundler 		"PhotoSmart R707",
948fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_CAPACITY),
954b24f91cSGrant Grundler 
9667d365a5SMark UNUSUAL_DEV(  0x03f3, 0x0001, 0x0000, 0x9999,
9767d365a5SMark 		"Adaptec",
9867d365a5SMark 		"USBConnect 2000",
9967d365a5SMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
10067d365a5SMark 		US_FL_SCM_MULT_TARG ),
10167d365a5SMark 
102f0183a33SFelipe Balbi /*
103f0183a33SFelipe Balbi  * Reported by Sebastian Kapfer <sebastian_kapfer@gmx.net>
1041ea640ceSPhil Dibowitz  * and Olaf Hering <olh@suse.de> (different bcd's, same vendor/product)
1051ea640ceSPhil Dibowitz  * for USB floppies that need the SINGLE_LUN enforcement.
1061ea640ceSPhil Dibowitz  */
1071ea640ceSPhil Dibowitz UNUSUAL_DEV(  0x0409, 0x0040, 0x0000, 0x9999,
1081ea640ceSPhil Dibowitz 		"NEC",
1091ea640ceSPhil Dibowitz 		"NEC USB UF000x",
1108fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1111ea640ceSPhil Dibowitz 		US_FL_SINGLE_LUN ),
1121ea640ceSPhil Dibowitz 
1133e220e95SPhil Dibowitz /* Patch submitted by Mihnea-Costin Grigore <mihnea@zulu.ro> */
1143e220e95SPhil Dibowitz UNUSUAL_DEV(  0x040d, 0x6205, 0x0003, 0x0003,
1153e220e95SPhil Dibowitz 		"VIA Technologies Inc.",
1163e220e95SPhil Dibowitz 		"USB 2.0 Card Reader",
1178fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1183e220e95SPhil Dibowitz 		US_FL_IGNORE_RESIDUE ),
1193e220e95SPhil Dibowitz 
120f0183a33SFelipe Balbi /*
121f0183a33SFelipe Balbi  * Deduced by Jonathan Woithe <jwoithe@just42.net>
1221da177e4SLinus Torvalds  * Entry needed for flags: US_FL_FIX_INQUIRY because initial inquiry message
1231da177e4SLinus Torvalds  * always fails and confuses drive.
1241da177e4SLinus Torvalds  */
1251da177e4SLinus Torvalds UNUSUAL_DEV(  0x0411, 0x001c, 0x0113, 0x0113,
1261da177e4SLinus Torvalds 		"Buffalo",
1271da177e4SLinus Torvalds 		"DUB-P40G HDD",
1288fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1291da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
1301da177e4SLinus Torvalds 
131d8840d60SErnis /* Submitted by Ernestas Vaiciukevicius <ernisv@gmail.com> */
132d8840d60SErnis UNUSUAL_DEV(  0x0419, 0x0100, 0x0100, 0x0100,
133d8840d60SErnis 		"Samsung Info. Systems America, Inc.",
134d8840d60SErnis 		"MP3 Player",
1358fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
136d8840d60SErnis 		US_FL_IGNORE_RESIDUE ),
137d8840d60SErnis 
1385501a48cSPhil Dibowitz /* Reported by Orgad Shaneh <orgads@gmail.com> */
1395501a48cSPhil Dibowitz UNUSUAL_DEV(  0x0419, 0xaace, 0x0100, 0x0100,
1405501a48cSPhil Dibowitz 		"Samsung", "MP3 Player",
1418fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1425501a48cSPhil Dibowitz 		US_FL_IGNORE_RESIDUE ),
1435501a48cSPhil Dibowitz 
1441d614a4bSAlan Stern /* Reported by Christian Leber <christian@leber.de> */
1451d614a4bSAlan Stern UNUSUAL_DEV(  0x0419, 0xaaf5, 0x0100, 0x0100,
1461d614a4bSAlan Stern 		"TrekStor",
1471d614a4bSAlan Stern 		"i.Beat 115 2.0",
1488fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1491d614a4bSAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_NOT_LOCKABLE ),
1501d614a4bSAlan Stern 
151e4a16e0cSPhil Dibowitz /* Reported by Stefan Werner <dustbln@gmx.de> */
152e4a16e0cSPhil Dibowitz UNUSUAL_DEV(  0x0419, 0xaaf6, 0x0100, 0x0100,
153e4a16e0cSPhil Dibowitz 		"TrekStor",
154e4a16e0cSPhil Dibowitz 		"i.Beat Joy 2.0",
1558fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
156e4a16e0cSPhil Dibowitz 		US_FL_IGNORE_RESIDUE ),
157e4a16e0cSPhil Dibowitz 
15823b7885dSPete Zaitcev /* Reported by Pete Zaitcev <zaitcev@redhat.com>, bz#176584 */
15923b7885dSPete Zaitcev UNUSUAL_DEV(  0x0420, 0x0001, 0x0100, 0x0100,
16023b7885dSPete Zaitcev 		"GENERIC", "MP3 PLAYER", /* MyMusix PD-205 on the outside. */
1618fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
16223b7885dSPete Zaitcev 		US_FL_IGNORE_RESIDUE ),
16323b7885dSPete Zaitcev 
164f0183a33SFelipe Balbi /*
165f0183a33SFelipe Balbi  * Reported by Andrew Nayenko <relan@bk.ru>
1661022ccdbSPhillip Potter  * Updated for new firmware by Phillip Potter <phil@philpotter.co.uk>
167f0183a33SFelipe Balbi  */
168031defd1SPhil Dibowitz UNUSUAL_DEV(  0x0421, 0x0019, 0x0592, 0x0610,
1690d8c7aeaSAndrew Nayenko 		"Nokia",
1700d8c7aeaSAndrew Nayenko 		"Nokia 6288",
1718fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1720d8c7aeaSAndrew Nayenko 		US_FL_MAX_SECTORS_64 ),
1730d8c7aeaSAndrew Nayenko 
174de1caa47SAlan Stern /* Reported by Mario Rettig <mariorettig@web.de> */
175de1caa47SAlan Stern UNUSUAL_DEV(  0x0421, 0x042e, 0x0100, 0x0100,
176de1caa47SAlan Stern 		"Nokia",
177de1caa47SAlan Stern 		"Nokia 3250",
1788fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
179de1caa47SAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
180de1caa47SAlan Stern 
181fe1ec341SAndrew Morton /* Reported by <honkkis@gmail.com> */
182fe1ec341SAndrew Morton UNUSUAL_DEV(  0x0421, 0x0433, 0x0100, 0x0100,
183fe1ec341SAndrew Morton 		"Nokia",
184fe1ec341SAndrew Morton 		"E70",
1858fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
186fe1ec341SAndrew Morton 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
187fe1ec341SAndrew Morton 
1887923811aSAlan Stern /* Reported by Jon Hart <Jon.Hart@web.de> */
1897923811aSAlan Stern UNUSUAL_DEV(  0x0421, 0x0434, 0x0100, 0x0100,
1907923811aSAlan Stern 		"Nokia",
1917923811aSAlan Stern 		"E60",
1928fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1937923811aSAlan Stern 		US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ),
1947923811aSAlan Stern 
195f0183a33SFelipe Balbi /*
196f0183a33SFelipe Balbi  * Reported by Sumedha Swamy <sumedhaswamy@gmail.com> and
197f0183a33SFelipe Balbi  * Einar Th. Einarsson <einarthered@gmail.com>
198f0183a33SFelipe Balbi  */
1999a01355eSAlan Stern UNUSUAL_DEV(  0x0421, 0x0444, 0x0100, 0x0100,
2009a01355eSAlan Stern 		"Nokia",
2019a01355eSAlan Stern 		"N91",
2028fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2039a01355eSAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
2049a01355eSAlan Stern 
205f0183a33SFelipe Balbi /*
206f0183a33SFelipe Balbi  * Reported by Jiri Slaby <jirislaby@gmail.com> and
207f0183a33SFelipe Balbi  * Rene C. Castberg <Rene@Castberg.org>
208f0183a33SFelipe Balbi  */
209d5681fe8SAlan Stern UNUSUAL_DEV(  0x0421, 0x0446, 0x0100, 0x0100,
210d5681fe8SAlan Stern 		"Nokia",
211d5681fe8SAlan Stern 		"N80",
2128fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
213d5681fe8SAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
214d5681fe8SAlan Stern 
21557b01b1eSAlan Stern /* Reported by Matthew Bloch <matthew@bytemark.co.uk> */
21657b01b1eSAlan Stern UNUSUAL_DEV(  0x0421, 0x044e, 0x0100, 0x0100,
21757b01b1eSAlan Stern 		"Nokia",
21857b01b1eSAlan Stern 		"E61",
2198fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22057b01b1eSAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
22157b01b1eSAlan Stern 
222e4a20daaSAlan Stern /* Reported by Bardur Arantsson <bardur@scientician.net> */
223393e5511SAlan Stern UNUSUAL_DEV(  0x0421, 0x047c, 0x0370, 0x0610,
224e4a20daaSAlan Stern 		"Nokia",
225e4a20daaSAlan Stern 		"6131",
2268fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
227e4a20daaSAlan Stern 		US_FL_MAX_SECTORS_64 ),
228e4a20daaSAlan Stern 
22939559b4fSManuel Osdoba /* Reported by Manuel Osdoba <manuel.osdoba@tu-ilmenau.de> */
230716a9c85SMoritz Muehlenhoff UNUSUAL_DEV( 0x0421, 0x0492, 0x0452, 0x9999,
23139559b4fSManuel Osdoba 		"Nokia",
23239559b4fSManuel Osdoba 		"Nokia 6233",
2338fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
23439559b4fSManuel Osdoba 		US_FL_MAX_SECTORS_64 ),
23539559b4fSManuel Osdoba 
2363ccf25ceSAlan Stern /* Reported by Alex Corcoles <alex@corcoles.net> */
2373ccf25ceSAlan Stern UNUSUAL_DEV(  0x0421, 0x0495, 0x0370, 0x0370,
2383ccf25ceSAlan Stern 		"Nokia",
2393ccf25ceSAlan Stern 		"6234",
2408fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2413ccf25ceSAlan Stern 		US_FL_MAX_SECTORS_64 ),
2423ccf25ceSAlan Stern 
2436ed07d45SDaniele Forsi /* Reported by Daniele Forsi <dforsi@gmail.com> */
2446ed07d45SDaniele Forsi UNUSUAL_DEV(  0x0421, 0x04b9, 0x0350, 0x0350,
2456ed07d45SDaniele Forsi 		"Nokia",
2466ed07d45SDaniele Forsi 		"5300",
2476ed07d45SDaniele Forsi 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2486ed07d45SDaniele Forsi 		US_FL_MAX_SECTORS_64 ),
2496ed07d45SDaniele Forsi 
250f0ef5d41SVictor A. Santos /* Patch submitted by Victor A. Santos <victoraur.santos@gmail.com> */
251f0ef5d41SVictor A. Santos UNUSUAL_DEV(  0x0421, 0x05af, 0x0742, 0x0742,
252f0ef5d41SVictor A. Santos 		"Nokia",
253f0ef5d41SVictor A. Santos 		"305",
254f0ef5d41SVictor A. Santos 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
255f0ef5d41SVictor A. Santos 		US_FL_MAX_SECTORS_64),
256f0ef5d41SVictor A. Santos 
2570e16114fSMikhail Zolotaryov /* Patch submitted by Mikhail Zolotaryov <lebon@lebon.org.ua> */
2580e16114fSMikhail Zolotaryov UNUSUAL_DEV(  0x0421, 0x06aa, 0x1110, 0x1110,
2590e16114fSMikhail Zolotaryov 		"Nokia",
2600e16114fSMikhail Zolotaryov 		"502",
2610e16114fSMikhail Zolotaryov 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2620e16114fSMikhail Zolotaryov 		US_FL_MAX_SECTORS_64 ),
2630e16114fSMikhail Zolotaryov 
2640ff71883SAlan Stern #ifdef NO_SDDR09
265c20b15fdSAlan Stern UNUSUAL_DEV(  0x0436, 0x0005, 0x0100, 0x0100,
266c20b15fdSAlan Stern 		"Microtech",
267c20b15fdSAlan Stern 		"CameraMate",
2688fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
269c20b15fdSAlan Stern 		US_FL_SINGLE_LUN ),
2701da177e4SLinus Torvalds #endif
2711da177e4SLinus Torvalds 
272f0183a33SFelipe Balbi /*
273f0183a33SFelipe Balbi  * Patch submitted by Daniel Drake <dsd@gentoo.org>
274f0183a33SFelipe Balbi  * Device reports nonsense bInterfaceProtocol 6 when connected over USB2
275f0183a33SFelipe Balbi  */
27616f05be7SPhil Dibowitz UNUSUAL_DEV(  0x0451, 0x5416, 0x0100, 0x0100,
27716f05be7SPhil Dibowitz 		"Neuros Audio",
27816f05be7SPhil Dibowitz 		"USB 2.0 HD 2.5",
2798fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_BULK, NULL,
28016f05be7SPhil Dibowitz 		US_FL_NEED_OVERRIDE ),
28116f05be7SPhil Dibowitz 
282490dce15SPete Zaitcev /*
283490dce15SPete Zaitcev  * Pete Zaitcev <zaitcev@yahoo.com>, from Patrick C. F. Ernzer, bz#162559.
284490dce15SPete Zaitcev  * The key does not actually break, but it returns zero sense which
285490dce15SPete Zaitcev  * makes our SCSI stack to print confusing messages.
286490dce15SPete Zaitcev  */
287490dce15SPete Zaitcev UNUSUAL_DEV(  0x0457, 0x0150, 0x0100, 0x0100,
288490dce15SPete Zaitcev 		"USBest Technology",	/* sold by Transcend */
289490dce15SPete Zaitcev 		"USB Mass Storage Device",
2908fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ),
291490dce15SPete Zaitcev 
29216f05be7SPhil Dibowitz /*
29316f05be7SPhil Dibowitz  * Bohdan Linda <bohdan.linda@gmail.com>
29416f05be7SPhil Dibowitz  * 1GB USB sticks MyFlash High Speed. I have restricted
29516f05be7SPhil Dibowitz  * the revision to my model only
29616f05be7SPhil Dibowitz  */
29716f05be7SPhil Dibowitz UNUSUAL_DEV(  0x0457, 0x0151, 0x0100, 0x0100,
29816f05be7SPhil Dibowitz 		"USB 2.0",
29916f05be7SPhil Dibowitz 		"Flash Disk",
3008fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
30116f05be7SPhil Dibowitz 		US_FL_NOT_LOCKABLE ),
302e1c37b8dSDaniel Drake 
303f0183a33SFelipe Balbi /*
304f0183a33SFelipe Balbi  * Reported by Tamas Kerecsen <kerecsen@bigfoot.com>
305a6b7b034SAlan Stern  * Obviously the PROM has not been customized by the VAR;
306a6b7b034SAlan Stern  * the Vendor and Product string descriptors are:
307a6b7b034SAlan Stern  *	Generic Mass Storage (PROTOTYPE--Remember to change idVendor)
308a6b7b034SAlan Stern  *	Generic Manufacturer (PROTOTYPE--Remember to change idVendor)
309a6b7b034SAlan Stern  */
310a6b7b034SAlan Stern UNUSUAL_DEV(  0x045e, 0xffff, 0x0000, 0x0000,
311a6b7b034SAlan Stern 		"Mitac",
312a6b7b034SAlan Stern 		"GPS",
3138fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
314a6b7b034SAlan Stern 		US_FL_MAX_SECTORS_64 ),
315a6b7b034SAlan Stern 
316379885a9SPete Zaitcev /*
317379885a9SPete Zaitcev  * This virtual floppy is found in Sun equipment (x4600, x4200m2, etc.)
318379885a9SPete Zaitcev  * Reported by Pete Zaitcev <zaitcev@redhat.com>
319379885a9SPete Zaitcev  * This device chokes on both version of MODE SENSE which we have, so
320379885a9SPete Zaitcev  * use_10_for_ms is not effective, and we use US_FL_NO_WP_DETECT.
321379885a9SPete Zaitcev  */
322379885a9SPete Zaitcev UNUSUAL_DEV(  0x046b, 0xff40, 0x0100, 0x0100,
323379885a9SPete Zaitcev 		"AMI",
324379885a9SPete Zaitcev 		"Virtual Floppy",
3258fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
326379885a9SPete Zaitcev 		US_FL_NO_WP_DETECT),
327379885a9SPete Zaitcev 
328050bc4e8SOliver Neukum /* Reported by Egbert Eich <eich@suse.com> */
329050bc4e8SOliver Neukum UNUSUAL_DEV(  0x0480, 0xd010, 0x0100, 0x9999,
330050bc4e8SOliver Neukum 		"Toshiba",
331050bc4e8SOliver Neukum 		"External USB 3.0",
332050bc4e8SOliver Neukum 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
333050bc4e8SOliver Neukum 		US_FL_ALWAYS_SYNC),
334050bc4e8SOliver Neukum 
3351da177e4SLinus Torvalds /* Patch submitted by Philipp Friedrich <philipp@void.at> */
3361da177e4SLinus Torvalds UNUSUAL_DEV(  0x0482, 0x0100, 0x0100, 0x0100,
3371da177e4SLinus Torvalds 		"Kyocera",
3381da177e4SLinus Torvalds 		"Finecam S3x",
3398fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_CB, NULL, US_FL_FIX_INQUIRY),
3401da177e4SLinus Torvalds 
3411da177e4SLinus Torvalds /* Patch submitted by Philipp Friedrich <philipp@void.at> */
3421da177e4SLinus Torvalds UNUSUAL_DEV(  0x0482, 0x0101, 0x0100, 0x0100,
3431da177e4SLinus Torvalds 		"Kyocera",
3441da177e4SLinus Torvalds 		"Finecam S4",
3458fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_CB, NULL, US_FL_FIX_INQUIRY),
3461da177e4SLinus Torvalds 
3471da177e4SLinus Torvalds /* Patch submitted by Stephane Galles <stephane.galles@free.fr> */
3481da177e4SLinus Torvalds UNUSUAL_DEV(  0x0482, 0x0103, 0x0100, 0x0100,
3491da177e4SLinus Torvalds 		"Kyocera",
3501da177e4SLinus Torvalds 		"Finecam S5",
3518fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY),
3521da177e4SLinus Torvalds 
35374511bb3SJens Taprogge /* Patch submitted by Jens Taprogge <jens.taprogge@taprogge.org> */
35474511bb3SJens Taprogge UNUSUAL_DEV(  0x0482, 0x0107, 0x0100, 0x0100,
35574511bb3SJens Taprogge 		"Kyocera",
35674511bb3SJens Taprogge 		"CONTAX SL300R T*",
3578fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
35874511bb3SJens Taprogge 		US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE),
35974511bb3SJens Taprogge 
360f0183a33SFelipe Balbi /*
361f0183a33SFelipe Balbi  * Reported by Paul Stewart <stewart@wetlogic.net>
362f0183a33SFelipe Balbi  * This entry is needed because the device reports Sub=ff
363f0183a33SFelipe Balbi  */
3641da177e4SLinus Torvalds UNUSUAL_DEV(  0x04a4, 0x0004, 0x0001, 0x0001,
3651da177e4SLinus Torvalds 		"Hitachi",
3661da177e4SLinus Torvalds 		"DVD-CAM DZ-MV100A Camcorder",
3678fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL, US_FL_SINGLE_LUN),
3681da177e4SLinus Torvalds 
369f0183a33SFelipe Balbi /*
370f0183a33SFelipe Balbi  * BENQ DC5330
371f9dc8f99SAlan Stern  * Reported by Manuel Fombuena <mfombuena@ya.com> and
372f0183a33SFelipe Balbi  * Frank Copeland <fjc@thingy.apana.org.au>
373f0183a33SFelipe Balbi  */
374f9dc8f99SAlan Stern UNUSUAL_DEV(  0x04a5, 0x3010, 0x0100, 0x0100,
375f9dc8f99SAlan Stern 		"Tekom Technologies, Inc",
376f9dc8f99SAlan Stern 		"300_CAMERA",
3778fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
378f9dc8f99SAlan Stern 		US_FL_IGNORE_RESIDUE ),
379f9dc8f99SAlan Stern 
380f0183a33SFelipe Balbi /*
381f0183a33SFelipe Balbi  * Patch for Nikon coolpix 2000
382f0183a33SFelipe Balbi  * Submitted by Fabien Cosse <fabien.cosse@wanadoo.fr>
383f0183a33SFelipe Balbi  */
38417fa6e55Sfabien COSSE UNUSUAL_DEV(  0x04b0, 0x0301, 0x0010, 0x0010,
38517fa6e55Sfabien COSSE 		"NIKON",
38617fa6e55Sfabien COSSE 		"NIKON DSC E2000",
3878fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE,NULL,
38817fa6e55Sfabien COSSE 		US_FL_NOT_LOCKABLE ),
38917fa6e55Sfabien COSSE 
39033abc04fSDoug Maxey /* Reported by Doug Maxey (dwm@austin.ibm.com) */
39133abc04fSDoug Maxey UNUSUAL_DEV(  0x04b3, 0x4001, 0x0110, 0x0110,
39233abc04fSDoug Maxey 		"IBM",
39333abc04fSDoug Maxey 		"IBM RSA2",
3948fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_CB, NULL,
39533abc04fSDoug Maxey 		US_FL_MAX_SECTORS_MIN),
39633abc04fSDoug Maxey 
397f0183a33SFelipe Balbi /*
398f0183a33SFelipe Balbi  * Reported by Simon Levitt <simon@whattf.com>
399f0183a33SFelipe Balbi  * This entry needs Sub and Proto fields
400f0183a33SFelipe Balbi  */
4011da177e4SLinus Torvalds UNUSUAL_DEV(  0x04b8, 0x0601, 0x0100, 0x0100,
4021da177e4SLinus Torvalds 		"Epson",
4031da177e4SLinus Torvalds 		"875DC Storage",
4048fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL, US_FL_FIX_INQUIRY),
4051da177e4SLinus Torvalds 
406f0183a33SFelipe Balbi /*
407f0183a33SFelipe Balbi  * Reported by Khalid Aziz <khalid@gonehiking.org>
408f0183a33SFelipe Balbi  * This entry is needed because the device reports Sub=ff
409f0183a33SFelipe Balbi  */
4101da177e4SLinus Torvalds UNUSUAL_DEV(  0x04b8, 0x0602, 0x0110, 0x0110,
4111da177e4SLinus Torvalds 		"Epson",
4121da177e4SLinus Torvalds 		"785EPX Storage",
4138fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, NULL, US_FL_SINGLE_LUN),
4141da177e4SLinus Torvalds 
415f0183a33SFelipe Balbi /*
416f0183a33SFelipe Balbi  * Not sure who reported this originally but
4171da177e4SLinus Torvalds  * Pavel Machek <pavel@ucw.cz> reported that the extra US_FL_SINGLE_LUN
4181da177e4SLinus Torvalds  * flag be added */
4191da177e4SLinus Torvalds UNUSUAL_DEV(  0x04cb, 0x0100, 0x0000, 0x2210,
4201da177e4SLinus Torvalds 		"Fujifilm",
4211da177e4SLinus Torvalds 		"FinePix 1400Zoom",
4228fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY | US_FL_SINGLE_LUN),
4231da177e4SLinus Torvalds 
424f0183a33SFelipe Balbi /*
425f0183a33SFelipe Balbi  * Reported by Ondrej Zary <linux@rainbow-software.org>
426cd0e8aa1SOndrej Zary  * The device reports one sector more and breaks when that sector is accessed
427cd0e8aa1SOndrej Zary  */
428cd0e8aa1SOndrej Zary UNUSUAL_DEV(  0x04ce, 0x0002, 0x026c, 0x026c,
429cd0e8aa1SOndrej Zary 		"ScanLogic",
430cd0e8aa1SOndrej Zary 		"SL11R-IDE",
4318fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
432cd0e8aa1SOndrej Zary 		US_FL_FIX_CAPACITY),
433cd0e8aa1SOndrej Zary 
434f0183a33SFelipe Balbi /*
435f0183a33SFelipe Balbi  * Reported by Kriston Fincher <kriston@airmail.net>
4361da177e4SLinus Torvalds  * Patch submitted by Sean Millichamp <sean@bruenor.org>
4371da177e4SLinus Torvalds  * This is to support the Panasonic PalmCam PV-SD4090
4381da177e4SLinus Torvalds  * This entry is needed because the device reports Sub=ff
4391da177e4SLinus Torvalds  */
4401da177e4SLinus Torvalds UNUSUAL_DEV(  0x04da, 0x0901, 0x0100, 0x0200,
4411da177e4SLinus Torvalds 		"Panasonic",
4421da177e4SLinus Torvalds 		"LS-120 Camera",
4438fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_DEVICE, NULL, 0),
4441da177e4SLinus Torvalds 
445f0183a33SFelipe Balbi /*
446f0183a33SFelipe Balbi  * From Yukihiro Nakai, via zaitcev@yahoo.com.
447f0183a33SFelipe Balbi  * This is needed for CB instead of CBI
448f0183a33SFelipe Balbi  */
4491da177e4SLinus Torvalds UNUSUAL_DEV(  0x04da, 0x0d05, 0x0000, 0x0000,
4501da177e4SLinus Torvalds 		"Sharp CE-CW05",
4511da177e4SLinus Torvalds 		"CD-R/RW Drive",
4528fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_CB, NULL, 0),
4531da177e4SLinus Torvalds 
4541da177e4SLinus Torvalds /* Reported by Adriaan Penning <a.penning@luon.net> */
4551da177e4SLinus Torvalds UNUSUAL_DEV(  0x04da, 0x2372, 0x0000, 0x9999,
4561da177e4SLinus Torvalds 		"Panasonic",
4571da177e4SLinus Torvalds 		"DMC-LCx Camera",
4588fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
4591da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ),
4601da177e4SLinus Torvalds 
461dcab4eafSSimeon Simeonov /* Reported by Simeon Simeonov <simeonov_2000@yahoo.com> */
462dcab4eafSSimeon Simeonov UNUSUAL_DEV(  0x04da, 0x2373, 0x0000, 0x9999,
463dcab4eafSSimeon Simeonov 		"LEICA",
464dcab4eafSSimeon Simeonov 		"D-LUX Camera",
4658fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
466dcab4eafSSimeon Simeonov 		US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ),
467dcab4eafSSimeon Simeonov 
468f0183a33SFelipe Balbi /*
469f0183a33SFelipe Balbi  * Most of the following entries were developed with the help of
4701da177e4SLinus Torvalds  * Shuttle/SCM directly.
4711da177e4SLinus Torvalds  */
4721da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x0001, 0x0200, 0x0200,
4731da177e4SLinus Torvalds 		"Matshita",
4741da177e4SLinus Torvalds 		"LS-120",
4758fa7fd74SMichal Nazarewicz 		USB_SC_8020, USB_PR_CB, NULL, 0),
4761da177e4SLinus Torvalds 
4771da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x0002, 0x0100, 0x0100,
4781da177e4SLinus Torvalds 		"Shuttle",
4791da177e4SLinus Torvalds 		"eUSCSI Bridge",
4808fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
4811da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
4821da177e4SLinus Torvalds 
4830ff71883SAlan Stern #ifdef NO_SDDR09
484c20b15fdSAlan Stern UNUSUAL_DEV(  0x04e6, 0x0005, 0x0100, 0x0208,
485c20b15fdSAlan Stern 		"SCM Microsystems",
486c20b15fdSAlan Stern 		"eUSB CompactFlash Adapter",
4878fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_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",
4958fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_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",
5028fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_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",
5088fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_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",
5148fa7fd74SMichal Nazarewicz 		USB_SC_8020, USB_PR_CB, NULL, 0),
5151da177e4SLinus Torvalds 
5161da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x000a, 0x0200, 0x0200,
5171da177e4SLinus Torvalds 		"Shuttle",
5181da177e4SLinus Torvalds 		"eUSB CompactFlash Adapter",
5198fa7fd74SMichal Nazarewicz 		USB_SC_8020, USB_PR_CB, NULL, 0),
5201da177e4SLinus Torvalds 
5213512e7bfSMark Knibbs UNUSUAL_DEV(  0x04e6, 0x000b, 0x0100, 0x0100,
5221da177e4SLinus Torvalds 		"Shuttle",
5231da177e4SLinus Torvalds 		"eUSCSI Bridge",
5248fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
5251da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
5261da177e4SLinus Torvalds 
5273512e7bfSMark Knibbs UNUSUAL_DEV(  0x04e6, 0x000c, 0x0100, 0x0100,
5281da177e4SLinus Torvalds 		"Shuttle",
5291da177e4SLinus Torvalds 		"eUSCSI Bridge",
5308fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
5311da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
5321da177e4SLinus Torvalds 
5333512e7bfSMark Knibbs UNUSUAL_DEV(  0x04e6, 0x000f, 0x0000, 0x9999,
5343512e7bfSMark Knibbs 		"SCM Microsystems",
5353512e7bfSMark Knibbs 		"eUSB SCSI Adapter (Bus Powered)",
536a7a34d02SMark Knibbs 		USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
5373512e7bfSMark Knibbs 		US_FL_SCM_MULT_TARG ),
5383512e7bfSMark Knibbs 
5391da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x0101, 0x0200, 0x0200,
5401da177e4SLinus Torvalds 		"Shuttle",
5411da177e4SLinus Torvalds 		"CD-RW Device",
5428fa7fd74SMichal Nazarewicz 		USB_SC_8020, USB_PR_CB, NULL, 0),
5431da177e4SLinus Torvalds 
544b28884c1SAlan Stern /* Reported by Dmitry Khlystov <adminimus@gmail.com> */
545b28884c1SAlan Stern UNUSUAL_DEV(  0x04e8, 0x507c, 0x0220, 0x0220,
546b28884c1SAlan Stern 		"Samsung",
547b28884c1SAlan Stern 		"YP-U3",
5488fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
549b28884c1SAlan Stern 		US_FL_MAX_SECTORS_64),
550b28884c1SAlan Stern 
551d73a9b30SVitaly Kuznetsov /* Reported by Vitaly Kuznetsov <vitty@altlinux.ru> */
552d73a9b30SVitaly Kuznetsov UNUSUAL_DEV(  0x04e8, 0x5122, 0x0000, 0x9999,
553d73a9b30SVitaly Kuznetsov 		"Samsung",
554d73a9b30SVitaly Kuznetsov 		"YP-CP3",
555d73a9b30SVitaly Kuznetsov 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
556d73a9b30SVitaly Kuznetsov 		US_FL_MAX_SECTORS_64 | US_FL_BULK_IGNORE_TAG),
557d73a9b30SVitaly Kuznetsov 
55829f86e66SDmitry Artamonow /* Added by Dmitry Artamonow <mad_soft@inbox.ru> */
55929f86e66SDmitry Artamonow UNUSUAL_DEV(  0x04e8, 0x5136, 0x0000, 0x9999,
56029f86e66SDmitry Artamonow 		"Samsung",
56129f86e66SDmitry Artamonow 		"YP-Z3",
56229f86e66SDmitry Artamonow 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
56329f86e66SDmitry Artamonow 		US_FL_MAX_SECTORS_64),
56429f86e66SDmitry Artamonow 
565f0183a33SFelipe Balbi /*
566f0183a33SFelipe Balbi  * Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>.
567ed3e8fcaSPhil Dibowitz  * Device uses standards-violating 32-byte Bulk Command Block Wrappers and
568ed3e8fcaSPhil Dibowitz  * reports itself as "Proprietary SCSI Bulk." Cf. device entry 0x084d:0x0011.
569ed3e8fcaSPhil Dibowitz  */
570ed3e8fcaSPhil Dibowitz UNUSUAL_DEV(  0x04fc, 0x80c2, 0x0100, 0x0100,
571ed3e8fcaSPhil Dibowitz 		"Kobian Mercury",
572ed3e8fcaSPhil Dibowitz 		"Binocam DCB-132",
5738fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
574ed3e8fcaSPhil Dibowitz 		US_FL_BULK32),
575ed3e8fcaSPhil Dibowitz 
5761da177e4SLinus Torvalds /* Reported by Bob Sass <rls@vectordb.com> -- only rev 1.33 tested */
5771da177e4SLinus Torvalds UNUSUAL_DEV(  0x050d, 0x0115, 0x0133, 0x0133,
5781da177e4SLinus Torvalds 		"Belkin",
5791da177e4SLinus Torvalds 		"USB SCSI Adaptor",
5808fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
5811da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
5821da177e4SLinus Torvalds 
583f0183a33SFelipe Balbi /*
584f0183a33SFelipe Balbi  * Iomega Clik! Drive
5851da177e4SLinus Torvalds  * Reported by David Chatenay <dchatenay@hotmail.com>
5861da177e4SLinus Torvalds  * The reason this is needed is not fully known.
5871da177e4SLinus Torvalds  */
5881da177e4SLinus Torvalds UNUSUAL_DEV(  0x0525, 0xa140, 0x0100, 0x0100,
5891da177e4SLinus Torvalds 		"Iomega",
5901da177e4SLinus Torvalds 		"USB Clik! 40",
5918fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_DEVICE, NULL,
5921da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
5931da177e4SLinus Torvalds 
59425ff1c31SAlan Stern /* Added by Alan Stern <stern@rowland.harvard.edu> */
59525ff1c31SAlan Stern COMPLIANT_DEV(0x0525, 0xa4a5, 0x0000, 0x9999,
59625ff1c31SAlan Stern 		"Linux",
59725ff1c31SAlan Stern 		"File-backed Storage Gadget",
5988fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
59925ff1c31SAlan Stern 		US_FL_CAPACITY_OK ),
60025ff1c31SAlan Stern 
601f0183a33SFelipe Balbi /*
602f0183a33SFelipe Balbi  * Yakumo Mega Image 37
6031da177e4SLinus Torvalds  * Submitted by Stephan Fuhrmann <atomenergie@t-online.de> */
6041da177e4SLinus Torvalds UNUSUAL_DEV(  0x052b, 0x1801, 0x0100, 0x0100,
6051da177e4SLinus Torvalds 		"Tekom Technologies, Inc",
6061da177e4SLinus Torvalds 		"300_CAMERA",
6078fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6081da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
6091da177e4SLinus Torvalds 
610f0183a33SFelipe Balbi /*
611f0183a33SFelipe Balbi  * Another Yakumo camera.
612f0183a33SFelipe Balbi  * Reported by Michele Alzetta <michele.alzetta@aliceposta.it>
613f0183a33SFelipe Balbi  */
6141da177e4SLinus Torvalds UNUSUAL_DEV(  0x052b, 0x1804, 0x0100, 0x0100,
6151da177e4SLinus Torvalds 		"Tekom Technologies, Inc",
6161da177e4SLinus Torvalds 		"300_CAMERA",
6178fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6181da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
6191da177e4SLinus Torvalds 
6201da177e4SLinus Torvalds /* Reported by Iacopo Spalletti <avvisi@spalletti.it> */
6211da177e4SLinus Torvalds UNUSUAL_DEV(  0x052b, 0x1807, 0x0100, 0x0100,
6221da177e4SLinus Torvalds 		"Tekom Technologies, Inc",
6231da177e4SLinus Torvalds 		"300_CAMERA",
6248fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6251da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
6261da177e4SLinus Torvalds 
627f0183a33SFelipe Balbi /*
628f0183a33SFelipe Balbi  * Yakumo Mega Image 47
629f0183a33SFelipe Balbi  * Reported by Bjoern Paetzel <kolrabi@kolrabi.de>
630f0183a33SFelipe Balbi  */
6311da177e4SLinus Torvalds UNUSUAL_DEV(  0x052b, 0x1905, 0x0100, 0x0100,
6321da177e4SLinus Torvalds 		"Tekom Technologies, Inc",
6331da177e4SLinus Torvalds 		"400_CAMERA",
6348fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6351da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
6361da177e4SLinus Torvalds 
637f0183a33SFelipe Balbi /*
638f0183a33SFelipe Balbi  * Reported by Paul Ortyl <ortylp@3miasto.net>
639f0183a33SFelipe Balbi  * Note that it's similar to the device above, only different prodID
640f0183a33SFelipe Balbi  */
6411da177e4SLinus Torvalds UNUSUAL_DEV(  0x052b, 0x1911, 0x0100, 0x0100,
6421da177e4SLinus Torvalds 		"Tekom Technologies, Inc",
6431da177e4SLinus Torvalds 		"400_CAMERA",
6448fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6451da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
6461da177e4SLinus Torvalds 
6471da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x0010, 0x0106, 0x0450,
6481da177e4SLinus Torvalds 		"Sony",
6491da177e4SLinus Torvalds 		"DSC-S30/S70/S75/505V/F505/F707/F717/P8",
6508fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_DEVICE, NULL,
6511da177e4SLinus Torvalds 		US_FL_SINGLE_LUN | US_FL_NOT_LOCKABLE | US_FL_NO_WP_DETECT ),
6521da177e4SLinus Torvalds 
653f0183a33SFelipe Balbi /*
654f0183a33SFelipe Balbi  * Submitted by Lars Jacob <jacob.lars@googlemail.com>
655f0183a33SFelipe Balbi  * This entry is needed because the device reports Sub=ff
656f0183a33SFelipe Balbi  */
6577e3bd120SLars Jacob UNUSUAL_DEV(  0x054c, 0x0010, 0x0500, 0x0610,
6581da177e4SLinus Torvalds 		"Sony",
6597e3bd120SLars Jacob 		"DSC-T1/T5/H5",
6608fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_DEVICE, NULL,
6611da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
6621da177e4SLinus Torvalds 
6631da177e4SLinus Torvalds 
6641da177e4SLinus Torvalds /* Reported by wim@geeks.nl */
6651da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x0025, 0x0100, 0x0100,
6661da177e4SLinus Torvalds 		"Sony",
6671da177e4SLinus Torvalds 		"Memorystick NW-MS7",
6688fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6691da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
6701da177e4SLinus Torvalds 
6711da177e4SLinus Torvalds /* Submitted by Olaf Hering, <olh@suse.de> SuSE Bugzilla #49049 */
67220b2e28fSLuiz Fernando N. Capitulino UNUSUAL_DEV(  0x054c, 0x002c, 0x0501, 0x2000,
6731da177e4SLinus Torvalds 		"Sony",
6741da177e4SLinus Torvalds 		"USB Floppy Drive",
6758fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6761da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
6771da177e4SLinus Torvalds 
6781da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x002d, 0x0100, 0x0100,
6791da177e4SLinus Torvalds 		"Sony",
6801da177e4SLinus Torvalds 		"Memorystick MSAC-US1",
6818fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6821da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
6831da177e4SLinus Torvalds 
6841da177e4SLinus Torvalds /* Submitted by Klaus Mueller <k.mueller@intershop.de> */
6851da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x002e, 0x0106, 0x0310,
6861da177e4SLinus Torvalds 		"Sony",
6871da177e4SLinus Torvalds 		"Handycam",
6888fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_DEVICE, NULL,
6891da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
6901da177e4SLinus Torvalds 
6911da177e4SLinus Torvalds /* Submitted by Rajesh Kumble Nayak <nayak@obs-nice.fr> */
6921da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x002e, 0x0500, 0x0500,
6931da177e4SLinus Torvalds 		"Sony",
6941da177e4SLinus Torvalds 		"Handycam HC-85",
6958fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_DEVICE, NULL,
6961da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
6971da177e4SLinus Torvalds 
6981da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x0032, 0x0000, 0x9999,
6991da177e4SLinus Torvalds 		"Sony",
7001da177e4SLinus Torvalds 		"Memorystick MSC-U01N",
7018fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7021da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
7031da177e4SLinus Torvalds 
7041da177e4SLinus Torvalds /* Submitted by Michal Mlotek <mlotek@foobar.pl> */
7051da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x0058, 0x0000, 0x9999,
7061da177e4SLinus Torvalds 		"Sony",
7071da177e4SLinus Torvalds 		"PEG N760c Memorystick",
7088fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7091da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
7101da177e4SLinus Torvalds 
7111da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x0069, 0x0000, 0x9999,
7121da177e4SLinus Torvalds 		"Sony",
7131da177e4SLinus Torvalds 		"Memorystick MSC-U03",
7148fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_CB, NULL,
7151da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
7161da177e4SLinus Torvalds 
7171da177e4SLinus Torvalds /* Submitted by Nathan Babb <nathan@lexi.com> */
7181da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x006d, 0x0000, 0x9999,
7191da177e4SLinus Torvalds 		"Sony",
7201da177e4SLinus Torvalds 		"PEG Mass Storage",
7218fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7221da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
7231da177e4SLinus Torvalds 
724f9dc8f99SAlan Stern /* Submitted by Frank Engel <frankie@cse.unsw.edu.au> */
725f9dc8f99SAlan Stern UNUSUAL_DEV(  0x054c, 0x0099, 0x0000, 0x9999,
7261da177e4SLinus Torvalds 		"Sony",
7271da177e4SLinus Torvalds 		"PEG Mass Storage",
7288fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7291da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
7301da177e4SLinus Torvalds 
731f9dc8f99SAlan Stern /* Submitted by Mike Alborn <malborn@deandra.homeip.net> */
732f9dc8f99SAlan Stern UNUSUAL_DEV(  0x054c, 0x016a, 0x0000, 0x9999,
7331da177e4SLinus Torvalds 		"Sony",
7341da177e4SLinus Torvalds 		"PEG Mass Storage",
7358fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7361da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
7371da177e4SLinus Torvalds 
738e7a6121fSRen Bigcren /* Submitted by Ren Bigcren <bigcren.ren@sonymobile.com> */
739e7a6121fSRen Bigcren UNUSUAL_DEV(  0x054c, 0x02a5, 0x0100, 0x0100,
740e7a6121fSRen Bigcren 		"Sony Corp.",
741e7a6121fSRen Bigcren 		"MicroVault Flash Drive",
742e7a6121fSRen Bigcren 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
743e7a6121fSRen Bigcren 		US_FL_NO_READ_CAPACITY_16 ),
744e7a6121fSRen Bigcren 
745082fdd12Sjuergen.mell@t-online.de /* floppy reports multiple luns */
746082fdd12Sjuergen.mell@t-online.de UNUSUAL_DEV(  0x055d, 0x2020, 0x0000, 0x0210,
747082fdd12Sjuergen.mell@t-online.de 		"SAMSUNG",
748082fdd12Sjuergen.mell@t-online.de 		"SFD-321U [FW 0C]",
7498fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
750082fdd12Sjuergen.mell@t-online.de 		US_FL_SINGLE_LUN ),
751082fdd12Sjuergen.mell@t-online.de 
752fd4f3a93SPete Zaitcev /* We keep this entry to force the transport; firmware 3.00 and later is ok. */
7531da177e4SLinus Torvalds UNUSUAL_DEV(  0x057b, 0x0000, 0x0000, 0x0299,
7541da177e4SLinus Torvalds 		"Y-E Data",
7551da177e4SLinus Torvalds 		"Flashbuster-U",
7568fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE,  USB_PR_CB, NULL,
7571da177e4SLinus Torvalds 		US_FL_SINGLE_LUN),
7581da177e4SLinus Torvalds 
759f0183a33SFelipe Balbi /*
760f0183a33SFelipe Balbi  * Reported by Johann Cardon <johann.cardon@free.fr>
7611da177e4SLinus Torvalds  * This entry is needed only because the device reports
7621da177e4SLinus Torvalds  * bInterfaceClass = 0xff (vendor-specific)
7631da177e4SLinus Torvalds  */
7641da177e4SLinus Torvalds UNUSUAL_DEV(  0x057b, 0x0022, 0x0000, 0x9999,
7651da177e4SLinus Torvalds 		"Y-E Data",
7661da177e4SLinus Torvalds 		"Silicon Media R/W",
7678fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, 0),
7681da177e4SLinus Torvalds 
769f1e8de0dSAlan Stern /* Reported by RTE <raszilki@yandex.ru> */
770f1e8de0dSAlan Stern UNUSUAL_DEV(  0x058f, 0x6387, 0x0141, 0x0141,
771f1e8de0dSAlan Stern 		"JetFlash",
772f1e8de0dSAlan Stern 		"TS1GJF2A/120",
7738fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
774f1e8de0dSAlan Stern 		US_FL_MAX_SECTORS_64 ),
775f1e8de0dSAlan Stern 
7761da177e4SLinus Torvalds /* Fabrizio Fellini <fello@libero.it> */
7771da177e4SLinus Torvalds UNUSUAL_DEV(  0x0595, 0x4343, 0x0000, 0x2210,
7781da177e4SLinus Torvalds 		"Fujifilm",
7791da177e4SLinus Torvalds 		"Digital Camera EX-20 DSC",
7808fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_DEVICE, NULL, 0 ),
7811da177e4SLinus Torvalds 
782f0183a33SFelipe Balbi /*
783f0183a33SFelipe Balbi  * Reported by Andre Welter <a.r.welter@gmx.de>
784a462549bSAlan Stern  * This antique device predates the release of the Bulk-only Transport
785a462549bSAlan Stern  * spec, and if it gets a Get-Max-LUN then it requires the host to do a
786a462549bSAlan Stern  * Clear-Halt on the bulk endpoints.  The SINGLE_LUN flag will prevent
787a462549bSAlan Stern  * us from sending the request.
788a462549bSAlan Stern  */
789a462549bSAlan Stern UNUSUAL_DEV(  0x059b, 0x0001, 0x0100, 0x0100,
790a462549bSAlan Stern 		"Iomega",
791a462549bSAlan Stern 		"ZIP 100",
7928fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
793a462549bSAlan Stern 		US_FL_SINGLE_LUN ),
794a462549bSAlan Stern 
795c66f1c62SMark UNUSUAL_DEV(  0x059b, 0x0040, 0x0100, 0x0100,
796c66f1c62SMark 		"Iomega",
797c66f1c62SMark 		"Jaz USB Adapter",
798c66f1c62SMark 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
799c66f1c62SMark 		US_FL_SINGLE_LUN ),
800c66f1c62SMark 
801b97b196cSAlan Stern /* Reported by <Hendryk.Pfeiffer@gmx.de> */
802b97b196cSAlan Stern UNUSUAL_DEV(  0x059f, 0x0643, 0x0000, 0x0000,
803b97b196cSAlan Stern 		"LaCie",
804b97b196cSAlan Stern 		"DVD+-RW",
8058fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
806b97b196cSAlan Stern 		US_FL_GO_SLOW ),
807b97b196cSAlan Stern 
80817211509SHans de Goede /* Reported by Christian Schaller <cschalle@redhat.com> */
80917211509SHans de Goede UNUSUAL_DEV(  0x059f, 0x0651, 0x0000, 0x0000,
81017211509SHans de Goede 		"LaCie",
81117211509SHans de Goede 		"External HDD",
81217211509SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
81317211509SHans de Goede 		US_FL_NO_WP_DETECT ),
81417211509SHans de Goede 
815f0183a33SFelipe Balbi /*
816f0183a33SFelipe Balbi  * Submitted by Joel Bourquard <numlock@freesurf.ch>
8171da177e4SLinus Torvalds  * Some versions of this device need the SubClass and Protocol overrides
8181da177e4SLinus Torvalds  * while others don't.
8191da177e4SLinus Torvalds  */
8201da177e4SLinus Torvalds UNUSUAL_DEV(  0x05ab, 0x0060, 0x1104, 0x1110,
8211da177e4SLinus Torvalds 		"In-System",
8221da177e4SLinus Torvalds 		"PyroGate External CD-ROM Enclosure (FCD-523)",
8238fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, NULL,
8241da177e4SLinus Torvalds 		US_FL_NEED_OVERRIDE ),
8251da177e4SLinus Torvalds 
826f0183a33SFelipe Balbi /*
827f0183a33SFelipe Balbi  * 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",
8368fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_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",
8438fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_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",
8498fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_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",
8558fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_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",
8658fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
866880a9b5eSPhil Dibowitz 		US_FL_FIX_CAPACITY ),
867880a9b5eSPhil Dibowitz 
868f0183a33SFelipe Balbi /*
869f0183a33SFelipe Balbi  * Reported by Dan Williams <dcbw@redhat.com>
870281b064fSDan Williams  * Option N.V. mobile broadband modems
871281b064fSDan Williams  * Ignore driver CD mode and force into modem mode by default.
872281b064fSDan Williams  */
873281b064fSDan Williams 
874281b064fSDan Williams /* Globetrotter HSDPA; mass storage shows up as Qualcomm for vendor */
875281b064fSDan Williams UNUSUAL_DEV(  0x05c6, 0x1000, 0x0000, 0x9999,
876281b064fSDan Williams 		"Option N.V.",
877281b064fSDan Williams 		"Mass Storage",
8788fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init,
879281b064fSDan Williams 		0),
880281b064fSDan Williams 
8811da177e4SLinus Torvalds /* Reported by Blake Matheny <bmatheny@purdue.edu> */
8821da177e4SLinus Torvalds UNUSUAL_DEV(  0x05dc, 0xb002, 0x0000, 0x0113,
8831da177e4SLinus Torvalds 		"Lexar",
8841da177e4SLinus Torvalds 		"USB CF Reader",
8858fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
8861da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
8871da177e4SLinus Torvalds 
888f0183a33SFelipe Balbi /*
889f0183a33SFelipe Balbi  * The following two entries are for a Genesys USB to IDE
8901da177e4SLinus Torvalds  * converter chip, but it changes its ProductId depending
8911da177e4SLinus Torvalds  * on whether or not a disk or an optical device is enclosed
8921da177e4SLinus Torvalds  * They were originally reported by Alexander Oltu
8931da177e4SLinus Torvalds  * <alexander@all-2.com> and Peter Marks <peter.marks@turner.com>
8941da177e4SLinus Torvalds  * respectively.
895883d989aSPhil Dibowitz  *
896883d989aSPhil Dibowitz  * US_FL_GO_SLOW and US_FL_MAX_SECTORS_64 added by Phil Dibowitz
897883d989aSPhil Dibowitz  * <phil@ipom.com> as these flags were made and hard-coded
898883d989aSPhil Dibowitz  * special-cases were pulled from scsiglue.c.
8991da177e4SLinus Torvalds  */
9001da177e4SLinus Torvalds UNUSUAL_DEV(  0x05e3, 0x0701, 0x0000, 0xffff,
9011da177e4SLinus Torvalds 		"Genesys Logic",
9021da177e4SLinus Torvalds 		"USB to IDE Optical",
9038fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9045126a267SAlan Stern 		US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 | US_FL_IGNORE_RESIDUE ),
9051da177e4SLinus Torvalds 
9061da177e4SLinus Torvalds UNUSUAL_DEV(  0x05e3, 0x0702, 0x0000, 0xffff,
9071da177e4SLinus Torvalds 		"Genesys Logic",
9081da177e4SLinus Torvalds 		"USB to IDE Disk",
9098fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9105126a267SAlan Stern 		US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 | US_FL_IGNORE_RESIDUE ),
9111da177e4SLinus Torvalds 
912dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */
913dbe6e0c0SBen Efros UNUSUAL_DEV(  0x05e3, 0x0723, 0x9451, 0x9451,
914dbe6e0c0SBen Efros 		"Genesys Logic",
915dbe6e0c0SBen Efros 		"USB to SATA",
9168fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
917dbe6e0c0SBen Efros 		US_FL_SANE_SENSE ),
918dbe6e0c0SBen Efros 
919f0183a33SFelipe Balbi /*
920f0183a33SFelipe Balbi  * Reported by Hanno Boeck <hanno@gmx.de>
921f0183a33SFelipe Balbi  * Taken from the Lycoris Kernel
922f0183a33SFelipe Balbi  */
9231da177e4SLinus Torvalds UNUSUAL_DEV(  0x0636, 0x0003, 0x0000, 0x9999,
9241da177e4SLinus Torvalds 		"Vivitar",
9251da177e4SLinus Torvalds 		"Vivicam 35Xx",
9268fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, NULL,
9271da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
9281da177e4SLinus Torvalds 
9291da177e4SLinus Torvalds UNUSUAL_DEV(  0x0644, 0x0000, 0x0100, 0x0100,
9301da177e4SLinus Torvalds 		"TEAC",
9311da177e4SLinus Torvalds 		"Floppy Drive",
9328fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_CB, NULL, 0 ),
9331da177e4SLinus Torvalds 
9341da177e4SLinus Torvalds /* Reported by Darsen Lu <darsen@micro.ee.nthu.edu.tw> */
9351da177e4SLinus Torvalds UNUSUAL_DEV( 0x066f, 0x8000, 0x0001, 0x0001,
9361da177e4SLinus Torvalds 		"SigmaTel",
9371da177e4SLinus Torvalds 		"USBMSC Audio Player",
9388fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9391da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY ),
9401da177e4SLinus Torvalds 
941a0bb1081SAlan Stern /* Reported by Daniel Kukula <daniel.kuku@gmail.com> */
942a0bb1081SAlan Stern UNUSUAL_DEV( 0x067b, 0x1063, 0x0100, 0x0100,
943a0bb1081SAlan Stern 		"Prolific Technology, Inc.",
944a0bb1081SAlan Stern 		"Prolific Storage Gadget",
9458fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
946a0bb1081SAlan Stern 		US_FL_BAD_SENSE ),
947a0bb1081SAlan Stern 
948c15e3ca1SRogerio Brito /* Reported by Rogerio Brito <rbrito@ime.usp.br> */
949c15e3ca1SRogerio Brito UNUSUAL_DEV( 0x067b, 0x2317, 0x0001, 0x001,
950c15e3ca1SRogerio Brito 		"Prolific Technology, Inc.",
951c15e3ca1SRogerio Brito 		"Mass Storage Device",
9528fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
953c15e3ca1SRogerio Brito 		US_FL_NOT_LOCKABLE ),
954c15e3ca1SRogerio Brito 
9551da177e4SLinus Torvalds /* Reported by Richard -=[]=- <micro_flyer@hotmail.com> */
956f0183a33SFelipe Balbi /*
957f0183a33SFelipe Balbi  * Change to bcdDeviceMin (0x0100 to 0x0001) reported by
958f0183a33SFelipe Balbi  * Thomas Bartosik <tbartdev@gmx-topmail.de>
959f0183a33SFelipe Balbi  */
9608a0845c5SThomas Bartosik UNUSUAL_DEV( 0x067b, 0x2507, 0x0001, 0x0100,
9611da177e4SLinus Torvalds 		"Prolific Technology Inc.",
9621da177e4SLinus Torvalds 		"Mass Storage Device",
9638fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9641da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY | US_FL_GO_SLOW ),
9651da177e4SLinus Torvalds 
9661da177e4SLinus Torvalds /* Reported by Alex Butcher <alex.butcher@assursys.co.uk> */
967b1636399SOliver Neukum UNUSUAL_DEV( 0x067b, 0x3507, 0x0001, 0x0101,
9681da177e4SLinus Torvalds 		"Prolific Technology Inc.",
9691da177e4SLinus Torvalds 		"ATAPI-6 Bridge Controller",
9708fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9711da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY | US_FL_GO_SLOW ),
9721da177e4SLinus Torvalds 
9731da177e4SLinus Torvalds /* Submitted by Benny Sjostrand <benny@hostmobility.com> */
9741da177e4SLinus Torvalds UNUSUAL_DEV( 0x0686, 0x4011, 0x0001, 0x0001,
9751da177e4SLinus Torvalds 		"Minolta",
9761da177e4SLinus Torvalds 		"Dimage F300",
9778fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, NULL, 0 ),
9781da177e4SLinus Torvalds 
9791da177e4SLinus Torvalds /* Reported by Miguel A. Fosas <amn3s1a@ono.com> */
9801da177e4SLinus Torvalds UNUSUAL_DEV(  0x0686, 0x4017, 0x0001, 0x0001,
9811da177e4SLinus Torvalds 		"Minolta",
9821da177e4SLinus Torvalds 		"DIMAGE E223",
9838fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_DEVICE, NULL, 0 ),
9841da177e4SLinus Torvalds 
9851da177e4SLinus Torvalds UNUSUAL_DEV(  0x0693, 0x0005, 0x0100, 0x0100,
9861da177e4SLinus Torvalds 		"Hagiwara",
9871da177e4SLinus Torvalds 		"Flashgate",
9888fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, NULL, 0 ),
9891da177e4SLinus Torvalds 
990754501b3SAlan Stern /* Reported by David Hamilton <niftimusmaximus@lycos.com> */
991754501b3SAlan Stern UNUSUAL_DEV(  0x069b, 0x3004, 0x0001, 0x0001,
992754501b3SAlan Stern 		"Thomson Multimedia Inc.",
993754501b3SAlan Stern 		"RCA RD1080 MP3 Player",
9948fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
995754501b3SAlan Stern 		US_FL_FIX_CAPACITY ),
996754501b3SAlan Stern 
997a7e69ddbSMark UNUSUAL_DEV(  0x06ca, 0x2003, 0x0100, 0x0100,
998a7e69ddbSMark 		"Newer Technology",
999a7e69ddbSMark 		"uSCSI",
1000a7e69ddbSMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
1001a7e69ddbSMark 		US_FL_SCM_MULT_TARG ),
1002a7e69ddbSMark 
1003fe1926a0SAlan Stern /* Reported by Adrian Pilchowiec <adi1981@epf.pl> */
1004fe1926a0SAlan Stern UNUSUAL_DEV(  0x071b, 0x3203, 0x0000, 0x0000,
1005fe1926a0SAlan Stern 		"RockChip",
1006fe1926a0SAlan Stern 		"MP3",
10078fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
100800914025SHans de Goede 		US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64 |
100900914025SHans de Goede 		US_FL_NO_READ_CAPACITY_16),
1010fe1926a0SAlan Stern 
1011f0183a33SFelipe Balbi /*
1012f0183a33SFelipe Balbi  * Reported by Jean-Baptiste Onofre <jb@nanthrax.net>
101364915092SJean-Baptiste Onofre  * Support the following product :
101464915092SJean-Baptiste Onofre  *    "Dane-Elec MediaTouch"
101564915092SJean-Baptiste Onofre  */
101664915092SJean-Baptiste Onofre UNUSUAL_DEV(  0x071b, 0x32bb, 0x0000, 0x0000,
101764915092SJean-Baptiste Onofre 		"RockChip",
101864915092SJean-Baptiste Onofre 		"MTP",
10198fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
102064915092SJean-Baptiste Onofre 		US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64),
102164915092SJean-Baptiste Onofre 
1022f0183a33SFelipe Balbi /*
1023f0183a33SFelipe Balbi  * Reported by Massimiliano Ghilardi <massimiliano.ghilardi@gmail.com>
1024c4766560SMassimiliano Ghilardi  * This USB MP3/AVI player device fails and disconnects if more than 128
1025c4766560SMassimiliano Ghilardi  * sectors (64kB) are read/written in a single command, and may be present
1026c4766560SMassimiliano Ghilardi  * at least in the following products:
1027c4766560SMassimiliano Ghilardi  *   "Magnex Digital Video Panel DVP 1800"
1028c4766560SMassimiliano Ghilardi  *   "MP4 AIGO 4GB SLOT SD"
1029c4766560SMassimiliano Ghilardi  *   "Teclast TL-C260 MP3"
1030c4766560SMassimiliano Ghilardi  *   "i.Meizu PMP MP3/MP4"
1031c4766560SMassimiliano Ghilardi  *   "Speed MV8 MP4 Audio Player"
1032c4766560SMassimiliano Ghilardi  */
1033c4766560SMassimiliano Ghilardi UNUSUAL_DEV(  0x071b, 0x3203, 0x0100, 0x0100,
1034c4766560SMassimiliano Ghilardi 		"RockChip",
1035c4766560SMassimiliano Ghilardi 		"ROCK MP3",
10368fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1037c4766560SMassimiliano Ghilardi 		US_FL_MAX_SECTORS_64),
1038c4766560SMassimiliano Ghilardi 
1039f430c405SOlivier Blondeau /* Reported by Olivier Blondeau <zeitoun@gmail.com> */
1040f430c405SOlivier Blondeau UNUSUAL_DEV(  0x0727, 0x0306, 0x0100, 0x0100,
1041f430c405SOlivier Blondeau 		"ATMEL",
1042f430c405SOlivier Blondeau 		"SND1 Storage",
10438fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1044f430c405SOlivier Blondeau 		US_FL_IGNORE_RESIDUE),
1045f430c405SOlivier Blondeau 
10461e7a5a84SPhil Dibowitz /* Submitted by Roman Hodek <roman@hodek.net> */
10471da177e4SLinus Torvalds UNUSUAL_DEV(  0x0781, 0x0001, 0x0200, 0x0200,
10481da177e4SLinus Torvalds 		"Sandisk",
10491da177e4SLinus Torvalds 		"ImageMate SDDR-05a",
10508fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
10511da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
10521da177e4SLinus Torvalds 
10531e7a5a84SPhil Dibowitz UNUSUAL_DEV(  0x0781, 0x0002, 0x0009, 0x0009,
10541e7a5a84SPhil Dibowitz 		"SanDisk Corporation",
10551e7a5a84SPhil Dibowitz 		"ImageMate CompactFlash USB",
10568fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
10571e7a5a84SPhil Dibowitz 		US_FL_FIX_CAPACITY ),
10581e7a5a84SPhil Dibowitz 
10591da177e4SLinus Torvalds UNUSUAL_DEV(  0x0781, 0x0100, 0x0100, 0x0100,
10601da177e4SLinus Torvalds 		"Sandisk",
10611da177e4SLinus Torvalds 		"ImageMate SDDR-12",
10628fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
10631da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
10641da177e4SLinus Torvalds 
10651da177e4SLinus Torvalds /* Reported by Eero Volotinen <eero@ping-viini.org> */
1066e5278320SPhil Dibowitz UNUSUAL_DEV(  0x07ab, 0xfccd, 0x0000, 0x9999,
10671da177e4SLinus Torvalds 		"Freecom Technologies",
10681da177e4SLinus Torvalds 		"FHD-Classic",
10698fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
10701da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY),
10711da177e4SLinus Torvalds 
10721da177e4SLinus Torvalds UNUSUAL_DEV(  0x07af, 0x0004, 0x0100, 0x0133,
10731da177e4SLinus Torvalds 		"Microtech",
10741da177e4SLinus Torvalds 		"USB-SCSI-DB25",
10758fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
10761da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
10771da177e4SLinus Torvalds 
10781da177e4SLinus Torvalds UNUSUAL_DEV(  0x07af, 0x0005, 0x0100, 0x0100,
10791da177e4SLinus Torvalds 		"Microtech",
10801da177e4SLinus Torvalds 		"USB-SCSI-HD50",
10818fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
10821da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
10831da177e4SLinus Torvalds 
10840ff71883SAlan Stern #ifdef NO_SDDR09
1085c20b15fdSAlan Stern UNUSUAL_DEV(  0x07af, 0x0006, 0x0100, 0x0100,
1086c20b15fdSAlan Stern 		"Microtech",
1087c20b15fdSAlan Stern 		"CameraMate",
10888fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
1089c20b15fdSAlan Stern 		US_FL_SINGLE_LUN ),
10901da177e4SLinus Torvalds #endif
10911da177e4SLinus Torvalds 
1092f0183a33SFelipe Balbi /*
1093f0183a33SFelipe Balbi  * Datafab KECF-USB / Sagatek DCS-CF / Simpletech Flashlink UCF-100
10941da177e4SLinus Torvalds  * Only revision 1.13 tested (same for all of the above devices,
10951da177e4SLinus Torvalds  * based on the Datafab DF-UG-07 chip).  Needed for US_FL_FIX_INQUIRY.
10961da177e4SLinus Torvalds  * Submitted by Marek Michalkiewicz <marekm@amelek.gda.pl>.
10971da177e4SLinus Torvalds  * See also http://martin.wilck.bei.t-online.de/#kecf .
10981da177e4SLinus Torvalds  */
10991da177e4SLinus Torvalds UNUSUAL_DEV(  0x07c4, 0xa400, 0x0000, 0xffff,
11001da177e4SLinus Torvalds 		"Datafab",
11011da177e4SLinus Torvalds 		"KECF-USB",
11028fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1103049a6acbSNick Holloway 		US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY ),
11041da177e4SLinus Torvalds 
1105f0183a33SFelipe Balbi /*
1106f0183a33SFelipe Balbi  * Reported by Rauch Wolke <rauchwolke@gmx.net>
1107e4813eecSAlan Stern  * and augmented by binbin <binbinsh@gmail.com> (Bugzilla #12882)
1108e4813eecSAlan Stern  */
1109368ee646SAlan Stern UNUSUAL_DEV(  0x07c4, 0xa4a5, 0x0000, 0xffff,
1110368ee646SAlan Stern 		"Simple Tech/Datafab",
1111368ee646SAlan Stern 		"CF+SM Reader",
11128fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1113e4813eecSAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_MAX_SECTORS_64 ),
1114368ee646SAlan Stern 
1115f0183a33SFelipe Balbi /*
1116f0183a33SFelipe Balbi  * Casio QV 2x00/3x00/4000/8000 digital still cameras are not conformant
11171da177e4SLinus Torvalds  * to the USB storage specification in two ways:
11181da177e4SLinus Torvalds  * - They tell us they are using transport protocol CBI. In reality they
11191da177e4SLinus Torvalds  *   are using transport protocol CB.
11201da177e4SLinus Torvalds  * - They don't like the INQUIRY command. So we must handle this command
11211da177e4SLinus Torvalds  *   of the SCSI layer ourselves.
11221da177e4SLinus Torvalds  * - Some cameras with idProduct=0x1001 and bcdDevice=0x1000 have
11238fa7fd74SMichal Nazarewicz  *   bInterfaceProtocol=0x00 (USB_PR_CBI) while others have 0x01 (USB_PR_CB).
11248fa7fd74SMichal Nazarewicz  *   So don't remove the USB_PR_CB override!
11258fa7fd74SMichal Nazarewicz  * - Cameras with bcdDevice=0x9009 require the USB_SC_8070 override.
11261da177e4SLinus Torvalds  */
11271da177e4SLinus Torvalds UNUSUAL_DEV( 0x07cf, 0x1001, 0x1000, 0x9999,
11281da177e4SLinus Torvalds 		"Casio",
11291da177e4SLinus Torvalds 		"QV DigitalCamera",
11308fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_CB, NULL,
11311da177e4SLinus Torvalds 		US_FL_NEED_OVERRIDE | US_FL_FIX_INQUIRY ),
11321da177e4SLinus Torvalds 
1133d7870af7SMichael Shigorin /* Submitted by Oleksandr Chumachenko <ledest@gmail.com> */
1134d7870af7SMichael Shigorin UNUSUAL_DEV( 0x07cf, 0x1167, 0x0100, 0x0100,
1135d7870af7SMichael Shigorin 		"Casio",
1136d7870af7SMichael Shigorin 		"EX-N1 DigitalCamera",
1137d7870af7SMichael Shigorin 		USB_SC_8070, USB_PR_DEVICE, NULL, 0),
1138d7870af7SMichael Shigorin 
11391da177e4SLinus Torvalds /* Submitted by Hartmut Wahl <hwahl@hwahl.de>*/
11401da177e4SLinus Torvalds UNUSUAL_DEV( 0x0839, 0x000a, 0x0001, 0x0001,
11411da177e4SLinus Torvalds 		"Samsung",
11421da177e4SLinus Torvalds 		"Digimax 410",
11438fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
11441da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY),
11451da177e4SLinus Torvalds 
11468010e06cSAlan Stern /* Reported by Luciano Rocha <luciano@eurotux.com> */
11478010e06cSAlan Stern UNUSUAL_DEV( 0x0840, 0x0082, 0x0001, 0x0001,
11488010e06cSAlan Stern 		"Argosy",
11498010e06cSAlan Stern 		"Storage",
11508fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
11518010e06cSAlan Stern 		US_FL_FIX_CAPACITY),
11528010e06cSAlan Stern 
1153e2673b28SNguyen Anh Quynh /* Reported and patched by Nguyen Anh Quynh <aquynh@gmail.com> */
1154e2673b28SNguyen Anh Quynh UNUSUAL_DEV( 0x0840, 0x0084, 0x0001, 0x0001,
1155e2673b28SNguyen Anh Quynh 		"Argosy",
1156e2673b28SNguyen Anh Quynh 		"Storage",
11578fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1158e2673b28SNguyen Anh Quynh 		US_FL_FIX_CAPACITY),
1159e2673b28SNguyen Anh Quynh 
1160aa23c8d6SPhil Dibowitz /* Reported by Martijn Hijdra <martijn.hijdra@gmail.com> */
1161aa23c8d6SPhil Dibowitz UNUSUAL_DEV( 0x0840, 0x0085, 0x0001, 0x0001,
1162aa23c8d6SPhil Dibowitz 		"Argosy",
1163aa23c8d6SPhil Dibowitz 		"Storage",
11648fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1165aa23c8d6SPhil Dibowitz 		US_FL_FIX_CAPACITY),
1166aa23c8d6SPhil Dibowitz 
116757cde01aSMark Knibbs /* Supplied with some Castlewood ORB removable drives */
116857cde01aSMark Knibbs UNUSUAL_DEV(  0x084b, 0xa001, 0x0000, 0x9999,
116957cde01aSMark Knibbs 		"Castlewood Systems",
117057cde01aSMark Knibbs 		"USB to SCSI cable",
117157cde01aSMark Knibbs 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
117257cde01aSMark Knibbs 		US_FL_SCM_MULT_TARG ),
117357cde01aSMark Knibbs 
1174f0183a33SFelipe Balbi /*
1175f0183a33SFelipe Balbi  * Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>.
11761da177e4SLinus Torvalds  * Flag will support Bulk devices which use a standards-violating 32-byte
11771da177e4SLinus Torvalds  * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with
11781da177e4SLinus Torvalds  * Grandtech GT892x chip, which request "Proprietary SCSI Bulk" support.
11791da177e4SLinus Torvalds  */
11801da177e4SLinus Torvalds 
11811da177e4SLinus Torvalds UNUSUAL_DEV(  0x084d, 0x0011, 0x0110, 0x0110,
11821da177e4SLinus Torvalds 		"Grandtech",
11831da177e4SLinus Torvalds 		"DC2MEGA",
11848fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
11851da177e4SLinus Torvalds 		US_FL_BULK32),
11861da177e4SLinus Torvalds 
1187f0183a33SFelipe Balbi /*
1188f0183a33SFelipe Balbi  * Reported by <ttkspam@free.fr>
118912f68c48SAlan Stern  * The device reports a vendor-specific device class, requiring an
119012f68c48SAlan Stern  * explicit vendor/product match.
119112f68c48SAlan Stern  */
119212f68c48SAlan Stern UNUSUAL_DEV(  0x0851, 0x1542, 0x0002, 0x0002,
119312f68c48SAlan Stern 		"MagicPixel",
119412f68c48SAlan Stern 		"FW_Omega2",
119512f68c48SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, 0),
119612f68c48SAlan Stern 
1197f0183a33SFelipe Balbi /*
1198f0183a33SFelipe Balbi  * Andrew Lunn <andrew@lunn.ch>
1199f7687217SAndrew Lunn  * PanDigital Digital Picture Frame. Does not like ALLOW_MEDIUM_REMOVAL
1200f7687217SAndrew Lunn  * on LUN 4.
1201f7687217SAndrew Lunn  * Note: Vend:Prod clash with "Ltd Maxell WS30 Slim Digital Camera"
1202f7687217SAndrew Lunn  */
1203f7687217SAndrew Lunn UNUSUAL_DEV(  0x0851, 0x1543, 0x0200, 0x0200,
1204f7687217SAndrew Lunn 		"PanDigital",
1205f7687217SAndrew Lunn 		"Photo Frame",
12068fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1207f7687217SAndrew Lunn 		US_FL_NOT_LOCKABLE),
1208f7687217SAndrew Lunn 
1209c80b4495SMark UNUSUAL_DEV(  0x085a, 0x0026, 0x0100, 0x0133,
1210c80b4495SMark 		"Xircom",
1211c80b4495SMark 		"PortGear USB-SCSI (Mac USB Dock)",
1212c80b4495SMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
1213c80b4495SMark 		US_FL_SCM_MULT_TARG ),
1214c80b4495SMark 
1215c80b4495SMark UNUSUAL_DEV(  0x085a, 0x0028, 0x0100, 0x0133,
1216c80b4495SMark 		"Xircom",
1217c80b4495SMark 		"PortGear USB to SCSI Converter",
1218c80b4495SMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
1219c80b4495SMark 		US_FL_SCM_MULT_TARG ),
1220c80b4495SMark 
1221ba3e93adSAlan Stern /* Submitted by Jan De Luyck <lkml@kcore.org> */
1222ba3e93adSAlan Stern UNUSUAL_DEV(  0x08bd, 0x1100, 0x0000, 0x0000,
1223ba3e93adSAlan Stern 		"CITIZEN",
1224ba3e93adSAlan Stern 		"X1DE-USB",
12258fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1226ba3e93adSAlan Stern 		US_FL_SINGLE_LUN),
12271da177e4SLinus Torvalds 
1228f0183a33SFelipe Balbi /*
1229f0183a33SFelipe Balbi  * Submitted by Dylan Taft <d13f00l@gmail.com>
1230a7e555b6SDylan Taft  * US_FL_IGNORE_RESIDUE Needed
1231a7e555b6SDylan Taft  */
1232a7e555b6SDylan Taft UNUSUAL_DEV(  0x08ca, 0x3103, 0x0100, 0x0100,
1233a7e555b6SDylan Taft 		"AIPTEK",
1234a7e555b6SDylan Taft 		"Aiptek USB Keychain MP3 Player",
12358fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1236a7e555b6SDylan Taft 		US_FL_IGNORE_RESIDUE),
1237a7e555b6SDylan Taft 
1238f0183a33SFelipe Balbi /*
1239f0183a33SFelipe Balbi  * Entry needed for flags. Moreover, all devices with this ID use
12401da177e4SLinus Torvalds  * bulk-only transport, but _some_ falsely report Control/Bulk instead.
12411da177e4SLinus Torvalds  * One example is "Trumpion Digital Research MYMP3".
12421da177e4SLinus Torvalds  * Submitted by Bjoern Brill <brill(at)fs.math.uni-frankfurt.de>
12431da177e4SLinus Torvalds  */
12441da177e4SLinus Torvalds UNUSUAL_DEV(  0x090a, 0x1001, 0x0100, 0x0100,
12451da177e4SLinus Torvalds 		"Trumpion",
12461da177e4SLinus Torvalds 		"t33520 USB Flash Card Controller",
12478fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_BULK, NULL,
12481da177e4SLinus Torvalds 		US_FL_NEED_OVERRIDE ),
12491da177e4SLinus Torvalds 
1250f0183a33SFelipe Balbi /*
1251f0183a33SFelipe Balbi  * Reported by Filippo Bardelli <filibard@libero.it>
12521724757eSPhil Dibowitz  * The device reports a subclass of RBC, which is wrong.
12531724757eSPhil Dibowitz  */
12541724757eSPhil Dibowitz UNUSUAL_DEV(  0x090a, 0x1050, 0x0100, 0x0100,
12551724757eSPhil Dibowitz 		"Trumpion Microelectronics, Inc.",
12561724757eSPhil Dibowitz 		"33520 USB Digital Voice Recorder",
12578fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_DEVICE, NULL,
12581724757eSPhil Dibowitz 		0),
12591724757eSPhil Dibowitz 
12601da177e4SLinus Torvalds /* Trumpion Microelectronics MP3 player (felipe_alfaro@linuxmail.org) */
12611da177e4SLinus Torvalds UNUSUAL_DEV( 0x090a, 0x1200, 0x0000, 0x9999,
12621da177e4SLinus Torvalds 		"Trumpion",
12631da177e4SLinus Torvalds 		"MP3 player",
12648fa7fd74SMichal Nazarewicz 		USB_SC_RBC, USB_PR_BULK, NULL,
12651da177e4SLinus Torvalds 		0 ),
12661da177e4SLinus Torvalds 
12671da177e4SLinus Torvalds /* aeb */
12681da177e4SLinus Torvalds UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff,
12691da177e4SLinus Torvalds 		"Feiya",
12701da177e4SLinus Torvalds 		"5-in-1 Card Reader",
12718fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
12721da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY ),
12731da177e4SLinus Torvalds 
1274f0183a33SFelipe Balbi /*
1275f0183a33SFelipe Balbi  * Reported by Paul Hartman <paul.hartman+linux@gmail.com>
127621c13a4fSAlan Stern  * This card reader returns "Illegal Request, Logical Block Address
127721c13a4fSAlan Stern  * Out of Range" for the first READ(10) after a new card is inserted.
127821c13a4fSAlan Stern  */
127921c13a4fSAlan Stern UNUSUAL_DEV(  0x090c, 0x6000, 0x0100, 0x0100,
128021c13a4fSAlan Stern 		"Feiya",
128121c13a4fSAlan Stern 		"SD/SDHC Card Reader",
128221c13a4fSAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
128321c13a4fSAlan Stern 		US_FL_INITIAL_READ10 ),
128421c13a4fSAlan Stern 
1285f0183a33SFelipe Balbi /*
1286f0183a33SFelipe Balbi  * This Pentax still camera is not conformant
12871da177e4SLinus Torvalds  * to the USB storage specification: -
12881da177e4SLinus Torvalds  * - It does not like the INQUIRY command. So we must handle this command
12891da177e4SLinus Torvalds  *   of the SCSI layer ourselves.
12901da177e4SLinus Torvalds  * Tested on Rev. 10.00 (0x1000)
12911da177e4SLinus Torvalds  * Submitted by James Courtier-Dutton <James@superbug.demon.co.uk>
12921da177e4SLinus Torvalds  */
12931da177e4SLinus Torvalds UNUSUAL_DEV( 0x0a17, 0x0004, 0x1000, 0x1000,
12941da177e4SLinus Torvalds 		"Pentax",
12951da177e4SLinus Torvalds 		"Optio 2/3/400",
12968fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
12971da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
12981da177e4SLinus Torvalds 
1299f0183a33SFelipe Balbi /*
1300f0183a33SFelipe Balbi  * These are virtual windows driver CDs, which the zd1211rw driver
1301f0183a33SFelipe Balbi  * automatically converts into WLAN devices.
1302f0183a33SFelipe Balbi  */
13033c332422SDaniel Drake UNUSUAL_DEV( 0x0ace, 0x2011, 0x0101, 0x0101,
13043c332422SDaniel Drake 		"ZyXEL",
13053c332422SDaniel Drake 		"G-220F USB-WLAN Install",
13068fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
13073c332422SDaniel Drake 		US_FL_IGNORE_DEVICE ),
13083c332422SDaniel Drake 
130964902cbaSMatthew Davidson UNUSUAL_DEV( 0x0ace, 0x20ff, 0x0101, 0x0101,
131064902cbaSMatthew Davidson 		"SiteCom",
131164902cbaSMatthew Davidson 		"WL-117 USB-WLAN Install",
13128fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
131364902cbaSMatthew Davidson 		US_FL_IGNORE_DEVICE ),
131464902cbaSMatthew Davidson 
1315f0183a33SFelipe Balbi /*
1316f0183a33SFelipe Balbi  * Reported by Dan Williams <dcbw@redhat.com>
1317281b064fSDan Williams  * Option N.V. mobile broadband modems
1318281b064fSDan Williams  * Ignore driver CD mode and force into modem mode by default.
1319281b064fSDan Williams  */
1320281b064fSDan Williams 
1321281b064fSDan Williams /* iCON 225 */
1322281b064fSDan Williams UNUSUAL_DEV(  0x0af0, 0x6971, 0x0000, 0x9999,
1323281b064fSDan Williams 		"Option N.V.",
1324281b064fSDan Williams 		"Mass Storage",
13258fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init,
1326281b064fSDan Williams 		0),
1327281b064fSDan Williams 
1328f0183a33SFelipe Balbi /*
1329f0183a33SFelipe Balbi  * Reported by F. Aben <f.aben@option.com>
1330e7c6f80fSFilip Aben  * This device (wrongly) has a vendor-specific device descriptor.
1331e7c6f80fSFilip Aben  * The entry is needed so usb-storage can bind to it's mass-storage
1332f0183a33SFelipe Balbi  * interface as an interface driver
1333f0183a33SFelipe Balbi  */
1334e7c6f80fSFilip Aben UNUSUAL_DEV( 0x0af0, 0x7401, 0x0000, 0x0000,
1335e7c6f80fSFilip Aben 		"Option",
1336e7c6f80fSFilip Aben 		"GI 0401 SD-Card",
13378fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1338e7c6f80fSFilip Aben 		0 ),
1339e7c6f80fSFilip Aben 
1340f0183a33SFelipe Balbi /*
1341f0183a33SFelipe Balbi  * Reported by Jan Dumon <j.dumon@option.com>
134246216e4fSJan Dumon  * These devices (wrongly) have a vendor-specific device descriptor.
134346216e4fSJan Dumon  * These entries are needed so usb-storage can bind to their mass-storage
1344f0183a33SFelipe Balbi  * interface as an interface driver
1345f0183a33SFelipe Balbi  */
1346c497e715SJan Dumon UNUSUAL_DEV( 0x0af0, 0x7501, 0x0000, 0x0000,
1347c497e715SJan Dumon 		"Option",
1348c497e715SJan Dumon 		"GI 0431 SD-Card",
13498fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1350c497e715SJan Dumon 		0 ),
1351c497e715SJan Dumon 
135246216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7701, 0x0000, 0x0000,
135346216e4fSJan Dumon 		"Option",
135446216e4fSJan Dumon 		"GI 0451 SD-Card",
13558fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
135646216e4fSJan Dumon 		0 ),
135746216e4fSJan Dumon 
135846216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7706, 0x0000, 0x0000,
135946216e4fSJan Dumon 		"Option",
136046216e4fSJan Dumon 		"GI 0451 SD-Card",
13618fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
136246216e4fSJan Dumon 		0 ),
136346216e4fSJan Dumon 
136446216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7901, 0x0000, 0x0000,
136546216e4fSJan Dumon 		"Option",
136646216e4fSJan Dumon 		"GI 0452 SD-Card",
13678fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
136846216e4fSJan Dumon 		0 ),
136946216e4fSJan Dumon 
137046216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7A01, 0x0000, 0x0000,
137146216e4fSJan Dumon 		"Option",
137246216e4fSJan Dumon 		"GI 0461 SD-Card",
13738fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
137446216e4fSJan Dumon 		0 ),
137546216e4fSJan Dumon 
137646216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7A05, 0x0000, 0x0000,
137746216e4fSJan Dumon 		"Option",
137846216e4fSJan Dumon 		"GI 0461 SD-Card",
13798fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
138046216e4fSJan Dumon 		0 ),
138146216e4fSJan Dumon 
138246216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x8300, 0x0000, 0x0000,
138346216e4fSJan Dumon 		"Option",
138446216e4fSJan Dumon 		"GI 033x SD-Card",
13858fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
138646216e4fSJan Dumon 		0 ),
138746216e4fSJan Dumon 
138846216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x8302, 0x0000, 0x0000,
138946216e4fSJan Dumon 		"Option",
139046216e4fSJan Dumon 		"GI 033x SD-Card",
13918fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
139246216e4fSJan Dumon 		0 ),
139346216e4fSJan Dumon 
139446216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x8304, 0x0000, 0x0000,
139546216e4fSJan Dumon 		"Option",
139646216e4fSJan Dumon 		"GI 033x SD-Card",
13978fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
139846216e4fSJan Dumon 		0 ),
139946216e4fSJan Dumon 
140046216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xc100, 0x0000, 0x0000,
140146216e4fSJan Dumon 		"Option",
140246216e4fSJan Dumon 		"GI 070x SD-Card",
14038fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
140446216e4fSJan Dumon 		0 ),
140546216e4fSJan Dumon 
140646216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd057, 0x0000, 0x0000,
140746216e4fSJan Dumon 		"Option",
140846216e4fSJan Dumon 		"GI 1505 SD-Card",
14098fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
141046216e4fSJan Dumon 		0 ),
141146216e4fSJan Dumon 
141246216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd058, 0x0000, 0x0000,
141346216e4fSJan Dumon 		"Option",
141446216e4fSJan Dumon 		"GI 1509 SD-Card",
14158fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
141646216e4fSJan Dumon 		0 ),
141746216e4fSJan Dumon 
141846216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd157, 0x0000, 0x0000,
141946216e4fSJan Dumon 		"Option",
142046216e4fSJan Dumon 		"GI 1515 SD-Card",
14218fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
142246216e4fSJan Dumon 		0 ),
142346216e4fSJan Dumon 
142446216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd257, 0x0000, 0x0000,
142546216e4fSJan Dumon 		"Option",
142646216e4fSJan Dumon 		"GI 1215 SD-Card",
14278fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
142846216e4fSJan Dumon 		0 ),
142946216e4fSJan Dumon 
143046216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd357, 0x0000, 0x0000,
143146216e4fSJan Dumon 		"Option",
143246216e4fSJan Dumon 		"GI 1505 SD-Card",
14338fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
143446216e4fSJan Dumon 		0 ),
143546216e4fSJan Dumon 
14363bd4dc9bSNamjae Jeon /* Reported by Namjae Jeon <namjae.jeon@samsung.com> */
14373bd4dc9bSNamjae Jeon UNUSUAL_DEV(0x0bc2, 0x2300, 0x0000, 0x9999,
14383bd4dc9bSNamjae Jeon 		"Seagate",
14393bd4dc9bSNamjae Jeon 		"Portable HDD",
14403bd4dc9bSNamjae Jeon 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_WRITE_CACHE),
14413bd4dc9bSNamjae Jeon 
1442dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */
1443dbe6e0c0SBen Efros UNUSUAL_DEV( 0x0bc2, 0x3010, 0x0000, 0x0000,
1444dbe6e0c0SBen Efros 		"Seagate",
1445dbe6e0c0SBen Efros 		"FreeAgent Pro",
14468fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1447dbe6e0c0SBen Efros 		US_FL_SANE_SENSE ),
1448dbe6e0c0SBen Efros 
1449113f6eb6SAlan Stern /* Reported by Kris Lindgren <kris.lindgren@gmail.com> */
1450113f6eb6SAlan Stern UNUSUAL_DEV( 0x0bc2, 0x3332, 0x0000, 0x9999,
1451113f6eb6SAlan Stern 		"Seagate",
1452113f6eb6SAlan Stern 		"External",
1453113f6eb6SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1454113f6eb6SAlan Stern 		US_FL_NO_WP_DETECT ),
1455113f6eb6SAlan Stern 
1456dbe6e0c0SBen Efros UNUSUAL_DEV(  0x0d49, 0x7310, 0x0000, 0x9999,
1457dbe6e0c0SBen Efros 		"Maxtor",
1458dbe6e0c0SBen Efros 		"USB to SATA",
14598fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1460dbe6e0c0SBen Efros 		US_FL_SANE_SENSE),
1461dbe6e0c0SBen Efros 
1462f9dc8f99SAlan Stern /*
1463f9dc8f99SAlan Stern  * Pete Zaitcev <zaitcev@yahoo.com>, bz#164688.
1464f9dc8f99SAlan Stern  * The device blatantly ignores LUN and returns 1 in GetMaxLUN.
1465f9dc8f99SAlan Stern  */
1466f9dc8f99SAlan Stern UNUSUAL_DEV( 0x0c45, 0x1060, 0x0100, 0x0100,
1467f9dc8f99SAlan Stern 		"Unknown",
1468f9dc8f99SAlan Stern 		"Unknown",
14698fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1470f9dc8f99SAlan Stern 		US_FL_SINGLE_LUN ),
1471f9dc8f99SAlan Stern 
14721da177e4SLinus Torvalds /* Submitted by Joris Struyve <joris@struyve.be> */
14731da177e4SLinus Torvalds UNUSUAL_DEV( 0x0d96, 0x410a, 0x0001, 0xffff,
14741da177e4SLinus Torvalds 		"Medion",
14751da177e4SLinus Torvalds 		"MD 7425",
14768fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
14771da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY),
14781da177e4SLinus Torvalds 
14791da177e4SLinus Torvalds /*
14801da177e4SLinus Torvalds  * Entry for Jenoptik JD 5200z3
14811da177e4SLinus Torvalds  *
14821da177e4SLinus Torvalds  * email: car.busse@gmx.de
14831da177e4SLinus Torvalds  */
14841da177e4SLinus Torvalds UNUSUAL_DEV(  0x0d96, 0x5200, 0x0001, 0x0200,
14851da177e4SLinus Torvalds 		"Jenoptik",
14861da177e4SLinus Torvalds 		"JD 5200 z3",
14878fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY),
14881da177e4SLinus Torvalds 
14893b438e30SSergey Ovcharenko /* Reported by  Jason Johnston <killean@shaw.ca> */
14903b438e30SSergey Ovcharenko UNUSUAL_DEV(  0x0dc4, 0x0073, 0x0000, 0x0000,
14913b438e30SSergey Ovcharenko 		"Macpower Technology Co.LTD.",
14923b438e30SSergey Ovcharenko 		"USB 2.0 3.5\" DEVICE",
14938fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
14943b438e30SSergey Ovcharenko 		US_FL_FIX_CAPACITY),
14953b438e30SSergey Ovcharenko 
1496f0183a33SFelipe Balbi /*
1497f0183a33SFelipe Balbi  * Reported by Lubomir Blaha <tritol@trilogic.cz>
14981da177e4SLinus Torvalds  * I _REALLY_ don't know what 3rd, 4th number and all defines mean, but this
14991da177e4SLinus Torvalds  * works for me. Can anybody correct these values? (I able to test corrected
15001da177e4SLinus Torvalds  * version.)
15011da177e4SLinus Torvalds  */
15021da177e4SLinus Torvalds UNUSUAL_DEV( 0x0dd8, 0x1060, 0x0000, 0xffff,
15031da177e4SLinus Torvalds 		"Netac",
15041da177e4SLinus Torvalds 		"USB-CF-Card",
15058fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15061da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
15071da177e4SLinus Torvalds 
1508f0183a33SFelipe Balbi /*
1509f0183a33SFelipe Balbi  * Reported by Edward Chapman (taken from linux-usb mailing list)
1510f0183a33SFelipe Balbi  * Netac OnlyDisk Mini U2CV2 512MB USB 2.0 Flash Drive
1511f0183a33SFelipe Balbi  */
151267fa1062SBen Collins UNUSUAL_DEV( 0x0dd8, 0xd202, 0x0000, 0x9999,
151367fa1062SBen Collins 		"Netac",
151467fa1062SBen Collins 		"USB Flash Disk",
15158fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
151667fa1062SBen Collins 		US_FL_IGNORE_RESIDUE ),
151767fa1062SBen Collins 
151867fa1062SBen Collins 
1519f0183a33SFelipe Balbi /*
1520f0183a33SFelipe Balbi  * Patch by Stephan Walter <stephan.walter@epfl.ch>
1521f0183a33SFelipe Balbi  * I don't know why, but it works...
1522f0183a33SFelipe Balbi  */
15231da177e4SLinus Torvalds UNUSUAL_DEV( 0x0dda, 0x0001, 0x0012, 0x0012,
15241da177e4SLinus Torvalds 		"WINWARD",
15251da177e4SLinus Torvalds 		"Music Disk",
15268fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15271da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
15281da177e4SLinus Torvalds 
15291da177e4SLinus Torvalds /* Reported by Ian McConnell <ian at emit.demon.co.uk> */
15301da177e4SLinus Torvalds UNUSUAL_DEV(  0x0dda, 0x0301, 0x0012, 0x0012,
15311da177e4SLinus Torvalds 		"PNP_MP3",
15321da177e4SLinus Torvalds 		"PNP_MP3 PLAYER",
15338fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15341da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
15351da177e4SLinus Torvalds 
1536982db2a1SAlan Stern /* Reported by Jim McCloskey <mcclosk@ucsc.edu> */
1537982db2a1SAlan Stern UNUSUAL_DEV( 0x0e21, 0x0520, 0x0100, 0x0100,
1538982db2a1SAlan Stern 		"Cowon Systems",
1539982db2a1SAlan Stern 		"iAUDIO M5",
15408fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_BULK, NULL,
1541bc724b98SPhil Dibowitz 		US_FL_NEED_OVERRIDE ),
1542982db2a1SAlan Stern 
15431da177e4SLinus Torvalds /* Submitted by Antoine Mairesse <antoine.mairesse@free.fr> */
15441da177e4SLinus Torvalds UNUSUAL_DEV( 0x0ed1, 0x6660, 0x0100, 0x0300,
15451da177e4SLinus Torvalds 		"USB",
15461da177e4SLinus Torvalds 		"Solid state disk",
15478fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15481da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
15491da177e4SLinus Torvalds 
1550f0183a33SFelipe Balbi /*
1551f0183a33SFelipe Balbi  * Submitted by Daniel Drake <dsd@gentoo.org>
1552f0183a33SFelipe Balbi  * Reported by dayul on the Gentoo Forums
1553f0183a33SFelipe Balbi  */
15541da177e4SLinus Torvalds UNUSUAL_DEV(  0x0ea0, 0x2168, 0x0110, 0x0110,
15551da177e4SLinus Torvalds 		"Ours Technology",
15561da177e4SLinus Torvalds 		"Flash Disk",
15578fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15581da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
15591da177e4SLinus Torvalds 
15601da177e4SLinus Torvalds /* Reported by Rastislav Stanik <rs_kernel@yahoo.com> */
15611da177e4SLinus Torvalds UNUSUAL_DEV(  0x0ea0, 0x6828, 0x0110, 0x0110,
15621da177e4SLinus Torvalds 		"USB",
15631da177e4SLinus Torvalds 		"Flash Disk",
15648fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15651da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
15661da177e4SLinus Torvalds 
1567f0183a33SFelipe Balbi /*
1568f0183a33SFelipe Balbi  * Reported by Benjamin Schiller <sbenni@gmx.de>
1569f0183a33SFelipe Balbi  * It is also sold by Easylite as DJ 20
1570f0183a33SFelipe Balbi  */
1571883d989aSPhil Dibowitz UNUSUAL_DEV(  0x0ed1, 0x7636, 0x0103, 0x0103,
1572883d989aSPhil Dibowitz 		"Typhoon",
1573883d989aSPhil Dibowitz 		"My DJ 1820",
15748fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1575883d989aSPhil Dibowitz 		US_FL_IGNORE_RESIDUE | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64),
1576883d989aSPhil Dibowitz 
1577f0183a33SFelipe Balbi /*
1578f0183a33SFelipe Balbi  * Patch by Leonid Petrov mail at lpetrov.net
15794e58407dSRobert Spitzenpfeil  * Reported by Robert Spitzenpfeil <robert@spitzenpfeil.org>
15804e58407dSRobert Spitzenpfeil  * http://www.qbik.ch/usb/devices/showdev.php?id=1705
15814e58407dSRobert Spitzenpfeil  * Updated to 103 device by MJ Ray mjr at phonecoop.coop
15824e58407dSRobert Spitzenpfeil  */
15834e58407dSRobert Spitzenpfeil UNUSUAL_DEV(  0x0f19, 0x0103, 0x0100, 0x0100,
15844e58407dSRobert Spitzenpfeil 		"Oracom Co., Ltd",
15854e58407dSRobert Spitzenpfeil 		"ORC-200M",
15868fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15874e58407dSRobert Spitzenpfeil 		US_FL_IGNORE_RESIDUE ),
15884e58407dSRobert Spitzenpfeil 
1589f0183a33SFelipe Balbi /*
1590f0183a33SFelipe Balbi  * David Kuehling <dvdkhlng@gmx.de>:
1591b41ee5d6SDavid Kuehling  * for MP3-Player AVOX WSX-300ER (bought in Japan).  Reports lots of SCSI
1592b41ee5d6SDavid Kuehling  * errors when trying to write.
1593b41ee5d6SDavid Kuehling  */
1594b41ee5d6SDavid Kuehling UNUSUAL_DEV(  0x0f19, 0x0105, 0x0100, 0x0100,
1595b41ee5d6SDavid Kuehling 		"C-MEX",
1596b41ee5d6SDavid Kuehling 		"A-VOX",
15978fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1598b41ee5d6SDavid Kuehling 		US_FL_IGNORE_RESIDUE ),
1599b41ee5d6SDavid Kuehling 
1600c25f6b15SNick Holloway /* Submitted by Nick Holloway */
1601c25f6b15SNick Holloway UNUSUAL_DEV( 0x0f88, 0x042e, 0x0100, 0x0100,
1602c25f6b15SNick Holloway 		"VTech",
1603c25f6b15SNick Holloway 		"Kidizoom",
1604c25f6b15SNick Holloway 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1605c25f6b15SNick Holloway 		US_FL_FIX_CAPACITY ),
1606c25f6b15SNick Holloway 
1607c5637e51SAlan Stern /* Reported by Moritz Moeller-Herrmann <moritz-kernel@moeller-herrmann.de> */
1608c5637e51SAlan Stern UNUSUAL_DEV(  0x0fca, 0x8004, 0x0201, 0x0201,
1609c5637e51SAlan Stern 		"Research In Motion",
1610c5637e51SAlan Stern 		"BlackBerry Bold 9000",
1611c5637e51SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1612c5637e51SAlan Stern 		US_FL_MAX_SECTORS_64 ),
1613c5637e51SAlan Stern 
16141da177e4SLinus Torvalds /* Reported by Michael Stattmann <michael@stattmann.com> */
16151da177e4SLinus Torvalds UNUSUAL_DEV(  0x0fce, 0xd008, 0x0000, 0x0000,
16161da177e4SLinus Torvalds 		"Sony Ericsson",
16171da177e4SLinus Torvalds 		"V800-Vodafone 802",
16188fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
16191da177e4SLinus Torvalds 		US_FL_NO_WP_DETECT ),
16201da177e4SLinus Torvalds 
1621a83775b1SPhil Dibowitz /* Reported by The Solutor <thesolutor@gmail.com> */
1622a83775b1SPhil Dibowitz UNUSUAL_DEV(  0x0fce, 0xd0e1, 0x0000, 0x0000,
1623a83775b1SPhil Dibowitz 		"Sony Ericsson",
1624a83775b1SPhil Dibowitz 		"MD400",
16258fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1626a83775b1SPhil Dibowitz 		US_FL_IGNORE_DEVICE),
1627a83775b1SPhil Dibowitz 
1628f0183a33SFelipe Balbi /*
1629f0183a33SFelipe Balbi  * Reported by Jan Mate <mate@fiit.stuba.sk>
1630f0183a33SFelipe Balbi  * and by Soeren Sonnenburg <kernel@nn7.de>
1631f0183a33SFelipe Balbi  */
163239c2f3acSPhil Dibowitz UNUSUAL_DEV(  0x0fce, 0xe030, 0x0000, 0x0000,
163339c2f3acSPhil Dibowitz 		"Sony Ericsson",
163439c2f3acSPhil Dibowitz 		"P990i",
16358fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1636b544d749SAlan Stern 		US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ),
163739c2f3acSPhil Dibowitz 
1638c9c770edSPhil Dibowitz /* Reported by Emmanuel Vasilakis <evas@forthnet.gr> */
1639c9c770edSPhil Dibowitz UNUSUAL_DEV(  0x0fce, 0xe031, 0x0000, 0x0000,
1640c9c770edSPhil Dibowitz 		"Sony Ericsson",
1641c9c770edSPhil Dibowitz 		"M600i",
16428fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1643c5f23b0eSPhil Dibowitz 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
1644c9c770edSPhil Dibowitz 
1645f9dc8f99SAlan Stern /* Reported by Ricardo Barberis <ricardo@dattatec.com> */
1646f9dc8f99SAlan Stern UNUSUAL_DEV(  0x0fce, 0xe092, 0x0000, 0x0000,
1647f9dc8f99SAlan Stern 		"Sony Ericsson",
1648f9dc8f99SAlan Stern 		"P1i",
16498fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1650f9dc8f99SAlan Stern 		US_FL_IGNORE_RESIDUE ),
1651f9dc8f99SAlan Stern 
1652f0183a33SFelipe Balbi /*
1653f0183a33SFelipe Balbi  * Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu>
16541da177e4SLinus Torvalds  * Tested on hardware version 1.10.
16551da177e4SLinus Torvalds  * Entry is needed only for the initializer function override.
165651b5bce8SPhil Dibowitz  * Devices with bcd > 110 seem to not need it while those
165751b5bce8SPhil Dibowitz  * with bcd < 110 appear to need it.
16581da177e4SLinus Torvalds  */
165951b5bce8SPhil Dibowitz UNUSUAL_DEV(  0x1019, 0x0c55, 0x0000, 0x0110,
16601da177e4SLinus Torvalds 		"Desknote",
16611da177e4SLinus Torvalds 		"UCR-61S2B",
16628fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_ucr61s2b_init,
16631da177e4SLinus Torvalds 		0 ),
16641da177e4SLinus Torvalds 
1665dbe6e0c0SBen Efros UNUSUAL_DEV(  0x1058, 0x0704, 0x0000, 0x9999,
1666dbe6e0c0SBen Efros 		"Western Digital",
1667dbe6e0c0SBen Efros 		"External HDD",
16688fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1669dbe6e0c0SBen Efros 		US_FL_SANE_SENSE),
1670dbe6e0c0SBen Efros 
16713bd4dc9bSNamjae Jeon /* Reported by Namjae Jeon <namjae.jeon@samsung.com> */
16723bd4dc9bSNamjae Jeon UNUSUAL_DEV(0x1058, 0x070a, 0x0000, 0x9999,
16733bd4dc9bSNamjae Jeon 		"Western Digital",
16743bd4dc9bSNamjae Jeon 		"My Passport HDD",
16753bd4dc9bSNamjae Jeon 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_WRITE_CACHE),
16763bd4dc9bSNamjae Jeon 
1677f0183a33SFelipe Balbi /*
1678f0183a33SFelipe Balbi  * Reported by Fabio Venturi <f.venturi@tdnet.it>
1679274399d1SAlan Stern  * The device reports a vendor-specific bDeviceClass.
1680274399d1SAlan Stern  */
1681274399d1SAlan Stern UNUSUAL_DEV(  0x10d6, 0x2200, 0x0100, 0x0100,
1682274399d1SAlan Stern 		"Actions Semiconductor",
1683274399d1SAlan Stern 		"Mtp device",
16848fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1685274399d1SAlan Stern 		0),
1686274399d1SAlan Stern 
1687f0183a33SFelipe Balbi /*
1688f0183a33SFelipe Balbi  * Reported by Pascal Terjan <pterjan@mandriva.com>
1689c00deaa5SPascal Terjan  * Ignore driver CD mode and force into modem mode by default.
1690c00deaa5SPascal Terjan  */
1691c00deaa5SPascal Terjan UNUSUAL_DEV(  0x1186, 0x3e04, 0x0000, 0x0000,
1692c00deaa5SPascal Terjan            "D-Link",
1693c00deaa5SPascal Terjan            "USB Mass Storage",
16948fa7fd74SMichal Nazarewicz            USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init, US_FL_IGNORE_DEVICE),
1695c00deaa5SPascal Terjan 
1696f0183a33SFelipe Balbi /*
1697f0183a33SFelipe Balbi  * Reported by Kevin Lloyd <linux@sierrawireless.com>
1698112225b1SKevin Lloyd  * Entry is needed for the initializer function override,
1699112225b1SKevin Lloyd  * which instructs the device to load as a modem
1700112225b1SKevin Lloyd  * device.
1701112225b1SKevin Lloyd  */
1702112225b1SKevin Lloyd UNUSUAL_DEV(  0x1199, 0x0fff, 0x0000, 0x9999,
1703112225b1SKevin Lloyd 		"Sierra Wireless",
1704112225b1SKevin Lloyd 		"USB MMC Storage",
17058fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, sierra_ms_init,
170632fe5e39SKevin Lloyd 		0),
1707112225b1SKevin Lloyd 
1708f0183a33SFelipe Balbi /*
1709f0183a33SFelipe Balbi  * Reported by Jaco Kroon <jaco@kroon.co.za>
171049314378SJaco Kroon  * The usb-storage module found on the Digitech GNX4 (and supposedly other
171149314378SJaco Kroon  * devices) misbehaves and causes a bunch of invalid I/O errors.
171249314378SJaco Kroon  */
171349314378SJaco Kroon UNUSUAL_DEV(  0x1210, 0x0003, 0x0100, 0x0100,
171449314378SJaco Kroon 		"Digitech HMG",
171549314378SJaco Kroon 		"DigiTech Mass Storage",
17168fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
171749314378SJaco Kroon 		US_FL_IGNORE_RESIDUE ),
171849314378SJaco Kroon 
1719f0183a33SFelipe Balbi /*
1720f0183a33SFelipe Balbi  * Reported by fangxiaozhi <huananhu@huawei.com>
1721aad8a278Sfangxiaozhi  * This brings the HUAWEI data card devices into multi-port mode
1722d853d872SJohann Wilhelm  */
1723ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1001, 0x0000, 0x0000,
1724aad8a278Sfangxiaozhi 		"HUAWEI MOBILE",
1725aad8a278Sfangxiaozhi 		"Mass Storage",
1726ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1727ab4b7164SBjørn Mork 		0),
1728ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1003, 0x0000, 0x0000,
1729ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1730ab4b7164SBjørn Mork 		"Mass Storage",
1731ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1732ab4b7164SBjørn Mork 		0),
1733ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1004, 0x0000, 0x0000,
1734ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1735ab4b7164SBjørn Mork 		"Mass Storage",
1736ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1737ab4b7164SBjørn Mork 		0),
1738ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1401, 0x0000, 0x0000,
1739ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1740ab4b7164SBjørn Mork 		"Mass Storage",
1741ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1742ab4b7164SBjørn Mork 		0),
1743ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1402, 0x0000, 0x0000,
1744ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1745ab4b7164SBjørn Mork 		"Mass Storage",
1746ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1747ab4b7164SBjørn Mork 		0),
1748ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1403, 0x0000, 0x0000,
1749ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1750ab4b7164SBjørn Mork 		"Mass Storage",
1751ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1752ab4b7164SBjørn Mork 		0),
1753ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1404, 0x0000, 0x0000,
1754ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1755ab4b7164SBjørn Mork 		"Mass Storage",
1756ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1757ab4b7164SBjørn Mork 		0),
1758ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1405, 0x0000, 0x0000,
1759ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1760ab4b7164SBjørn Mork 		"Mass Storage",
1761ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1762ab4b7164SBjørn Mork 		0),
1763ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1406, 0x0000, 0x0000,
1764ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1765ab4b7164SBjørn Mork 		"Mass Storage",
1766ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1767ab4b7164SBjørn Mork 		0),
1768ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1407, 0x0000, 0x0000,
1769ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1770ab4b7164SBjørn Mork 		"Mass Storage",
1771ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1772ab4b7164SBjørn Mork 		0),
1773ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1408, 0x0000, 0x0000,
1774ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1775ab4b7164SBjørn Mork 		"Mass Storage",
1776ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1777ab4b7164SBjørn Mork 		0),
1778ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1409, 0x0000, 0x0000,
1779ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1780ab4b7164SBjørn Mork 		"Mass Storage",
1781ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1782ab4b7164SBjørn Mork 		0),
1783ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140A, 0x0000, 0x0000,
1784ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1785ab4b7164SBjørn Mork 		"Mass Storage",
1786ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1787ab4b7164SBjørn Mork 		0),
1788ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140B, 0x0000, 0x0000,
1789ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1790ab4b7164SBjørn Mork 		"Mass Storage",
1791ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1792ab4b7164SBjørn Mork 		0),
1793ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140C, 0x0000, 0x0000,
1794ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1795ab4b7164SBjørn Mork 		"Mass Storage",
1796ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1797ab4b7164SBjørn Mork 		0),
1798ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140D, 0x0000, 0x0000,
1799ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1800ab4b7164SBjørn Mork 		"Mass Storage",
1801ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1802ab4b7164SBjørn Mork 		0),
1803ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140E, 0x0000, 0x0000,
1804ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1805ab4b7164SBjørn Mork 		"Mass Storage",
1806ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1807ab4b7164SBjørn Mork 		0),
1808ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140F, 0x0000, 0x0000,
1809ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1810ab4b7164SBjørn Mork 		"Mass Storage",
1811ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1812ab4b7164SBjørn Mork 		0),
1813ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1410, 0x0000, 0x0000,
1814ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1815ab4b7164SBjørn Mork 		"Mass Storage",
1816ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1817ab4b7164SBjørn Mork 		0),
1818ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1411, 0x0000, 0x0000,
1819ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1820ab4b7164SBjørn Mork 		"Mass Storage",
1821ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1822ab4b7164SBjørn Mork 		0),
1823ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1412, 0x0000, 0x0000,
1824ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1825ab4b7164SBjørn Mork 		"Mass Storage",
1826ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1827ab4b7164SBjørn Mork 		0),
1828ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1413, 0x0000, 0x0000,
1829ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1830ab4b7164SBjørn Mork 		"Mass Storage",
1831ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1832ab4b7164SBjørn Mork 		0),
1833ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1414, 0x0000, 0x0000,
1834ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1835ab4b7164SBjørn Mork 		"Mass Storage",
1836ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1837ab4b7164SBjørn Mork 		0),
1838ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1415, 0x0000, 0x0000,
1839ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1840ab4b7164SBjørn Mork 		"Mass Storage",
1841ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1842ab4b7164SBjørn Mork 		0),
1843ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1416, 0x0000, 0x0000,
1844ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1845ab4b7164SBjørn Mork 		"Mass Storage",
1846ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1847ab4b7164SBjørn Mork 		0),
1848ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1417, 0x0000, 0x0000,
1849ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1850ab4b7164SBjørn Mork 		"Mass Storage",
1851ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1852ab4b7164SBjørn Mork 		0),
1853ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1418, 0x0000, 0x0000,
1854ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1855ab4b7164SBjørn Mork 		"Mass Storage",
1856ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1857ab4b7164SBjørn Mork 		0),
1858ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1419, 0x0000, 0x0000,
1859ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1860ab4b7164SBjørn Mork 		"Mass Storage",
1861ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1862ab4b7164SBjørn Mork 		0),
1863ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141A, 0x0000, 0x0000,
1864ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1865ab4b7164SBjørn Mork 		"Mass Storage",
1866ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1867ab4b7164SBjørn Mork 		0),
1868ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141B, 0x0000, 0x0000,
1869ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1870ab4b7164SBjørn Mork 		"Mass Storage",
1871ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1872ab4b7164SBjørn Mork 		0),
1873ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141C, 0x0000, 0x0000,
1874ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1875ab4b7164SBjørn Mork 		"Mass Storage",
1876ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1877ab4b7164SBjørn Mork 		0),
1878ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141D, 0x0000, 0x0000,
1879ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1880ab4b7164SBjørn Mork 		"Mass Storage",
1881ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1882ab4b7164SBjørn Mork 		0),
1883ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141E, 0x0000, 0x0000,
1884ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1885ab4b7164SBjørn Mork 		"Mass Storage",
1886ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1887ab4b7164SBjørn Mork 		0),
1888ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141F, 0x0000, 0x0000,
1889ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1890ab4b7164SBjørn Mork 		"Mass Storage",
1891ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1892ab4b7164SBjørn Mork 		0),
1893ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1420, 0x0000, 0x0000,
1894ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1895ab4b7164SBjørn Mork 		"Mass Storage",
1896ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1897ab4b7164SBjørn Mork 		0),
1898ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1421, 0x0000, 0x0000,
1899ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1900ab4b7164SBjørn Mork 		"Mass Storage",
1901ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1902ab4b7164SBjørn Mork 		0),
1903ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1422, 0x0000, 0x0000,
1904ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1905ab4b7164SBjørn Mork 		"Mass Storage",
1906ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1907ab4b7164SBjørn Mork 		0),
1908ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1423, 0x0000, 0x0000,
1909ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1910ab4b7164SBjørn Mork 		"Mass Storage",
1911ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1912ab4b7164SBjørn Mork 		0),
1913ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1424, 0x0000, 0x0000,
1914ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1915ab4b7164SBjørn Mork 		"Mass Storage",
1916ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1917ab4b7164SBjørn Mork 		0),
1918ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1425, 0x0000, 0x0000,
1919ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1920ab4b7164SBjørn Mork 		"Mass Storage",
1921ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1922ab4b7164SBjørn Mork 		0),
1923ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1426, 0x0000, 0x0000,
1924ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1925ab4b7164SBjørn Mork 		"Mass Storage",
1926ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1927ab4b7164SBjørn Mork 		0),
1928ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1427, 0x0000, 0x0000,
1929ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1930ab4b7164SBjørn Mork 		"Mass Storage",
1931ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1932ab4b7164SBjørn Mork 		0),
1933ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1428, 0x0000, 0x0000,
1934ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1935ab4b7164SBjørn Mork 		"Mass Storage",
1936ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1937ab4b7164SBjørn Mork 		0),
1938ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1429, 0x0000, 0x0000,
1939ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1940ab4b7164SBjørn Mork 		"Mass Storage",
1941ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1942ab4b7164SBjørn Mork 		0),
1943ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142A, 0x0000, 0x0000,
1944ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1945ab4b7164SBjørn Mork 		"Mass Storage",
1946ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1947ab4b7164SBjørn Mork 		0),
1948ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142B, 0x0000, 0x0000,
1949ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1950ab4b7164SBjørn Mork 		"Mass Storage",
1951ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1952ab4b7164SBjørn Mork 		0),
1953ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142C, 0x0000, 0x0000,
1954ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1955ab4b7164SBjørn Mork 		"Mass Storage",
1956ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1957ab4b7164SBjørn Mork 		0),
1958ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142D, 0x0000, 0x0000,
1959ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1960ab4b7164SBjørn Mork 		"Mass Storage",
1961ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1962ab4b7164SBjørn Mork 		0),
1963ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142E, 0x0000, 0x0000,
1964ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1965ab4b7164SBjørn Mork 		"Mass Storage",
1966ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1967ab4b7164SBjørn Mork 		0),
1968ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142F, 0x0000, 0x0000,
1969ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1970ab4b7164SBjørn Mork 		"Mass Storage",
1971ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1972ab4b7164SBjørn Mork 		0),
1973ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1430, 0x0000, 0x0000,
1974ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1975ab4b7164SBjørn Mork 		"Mass Storage",
1976ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1977ab4b7164SBjørn Mork 		0),
1978ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1431, 0x0000, 0x0000,
1979ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1980ab4b7164SBjørn Mork 		"Mass Storage",
1981ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1982ab4b7164SBjørn Mork 		0),
1983ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1432, 0x0000, 0x0000,
1984ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1985ab4b7164SBjørn Mork 		"Mass Storage",
1986ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1987ab4b7164SBjørn Mork 		0),
1988ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1433, 0x0000, 0x0000,
1989ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1990ab4b7164SBjørn Mork 		"Mass Storage",
1991ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1992ab4b7164SBjørn Mork 		0),
1993ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1434, 0x0000, 0x0000,
1994ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1995ab4b7164SBjørn Mork 		"Mass Storage",
1996ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1997ab4b7164SBjørn Mork 		0),
1998ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1435, 0x0000, 0x0000,
1999ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2000ab4b7164SBjørn Mork 		"Mass Storage",
2001ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2002ab4b7164SBjørn Mork 		0),
2003ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1436, 0x0000, 0x0000,
2004ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2005ab4b7164SBjørn Mork 		"Mass Storage",
2006ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2007ab4b7164SBjørn Mork 		0),
2008ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1437, 0x0000, 0x0000,
2009ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2010ab4b7164SBjørn Mork 		"Mass Storage",
2011ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2012ab4b7164SBjørn Mork 		0),
2013ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1438, 0x0000, 0x0000,
2014ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2015ab4b7164SBjørn Mork 		"Mass Storage",
2016ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2017ab4b7164SBjørn Mork 		0),
2018ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1439, 0x0000, 0x0000,
2019ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2020ab4b7164SBjørn Mork 		"Mass Storage",
2021ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2022ab4b7164SBjørn Mork 		0),
2023ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143A, 0x0000, 0x0000,
2024ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2025ab4b7164SBjørn Mork 		"Mass Storage",
2026ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2027ab4b7164SBjørn Mork 		0),
2028ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143B, 0x0000, 0x0000,
2029ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2030ab4b7164SBjørn Mork 		"Mass Storage",
2031ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2032ab4b7164SBjørn Mork 		0),
2033ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143C, 0x0000, 0x0000,
2034ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2035ab4b7164SBjørn Mork 		"Mass Storage",
2036ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2037ab4b7164SBjørn Mork 		0),
2038ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143D, 0x0000, 0x0000,
2039ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2040ab4b7164SBjørn Mork 		"Mass Storage",
2041ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2042ab4b7164SBjørn Mork 		0),
2043ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143E, 0x0000, 0x0000,
2044ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2045ab4b7164SBjørn Mork 		"Mass Storage",
2046ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2047ab4b7164SBjørn Mork 		0),
2048ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143F, 0x0000, 0x0000,
2049ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2050ab4b7164SBjørn Mork 		"Mass Storage",
2051ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
20521460e5e4Sfangxiaozhi 		0),
2053d853d872SJohann Wilhelm 
20547b1cbebaSPhil Dibowitz /* Reported by Vilius Bilinkevicius <vilisas AT xxx DOT lt) */
20557b1cbebaSPhil Dibowitz UNUSUAL_DEV(  0x132b, 0x000b, 0x0001, 0x0001,
20567b1cbebaSPhil Dibowitz 		"Minolta",
20577b1cbebaSPhil Dibowitz 		"Dimage Z10",
20588fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
20597b1cbebaSPhil Dibowitz 		0 ),
20607b1cbebaSPhil Dibowitz 
20611da177e4SLinus Torvalds /* Reported by Kotrla Vitezslav <kotrla@ceb.cz> */
20621da177e4SLinus Torvalds UNUSUAL_DEV(  0x1370, 0x6828, 0x0110, 0x0110,
20631da177e4SLinus Torvalds 		"SWISSBIT",
20641da177e4SLinus Torvalds 		"Black Silver",
20658fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
20661da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
20671da177e4SLinus Torvalds 
2068d595259fSTobias Jakobi /*
2069d595259fSTobias Jakobi  * Reported by Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
2070d595259fSTobias Jakobi  * The INIC-3619 bridge is used in the StarTech SLSODDU33B
2071d595259fSTobias Jakobi  * SATA-USB enclosure for slimline optical drives.
2072d595259fSTobias Jakobi  *
2073d595259fSTobias Jakobi  * The quirk enables MakeMKV to properly exchange keys with
2074d595259fSTobias Jakobi  * an installed BD drive.
2075d595259fSTobias Jakobi  */
2076d595259fSTobias Jakobi UNUSUAL_DEV(  0x13fd, 0x3609, 0x0209, 0x0209,
2077d595259fSTobias Jakobi 		"Initio Corporation",
2078d595259fSTobias Jakobi 		"INIC-3619",
2079d595259fSTobias Jakobi 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2080d595259fSTobias Jakobi 		US_FL_IGNORE_RESIDUE ),
2081d595259fSTobias Jakobi 
2082cec28a54SQinglin Ye /* Reported by Qinglin Ye <yestyle@gmail.com> */
2083cec28a54SQinglin Ye UNUSUAL_DEV(  0x13fe, 0x3600, 0x0100, 0x0100,
2084cec28a54SQinglin Ye 		"Kingston",
2085cec28a54SQinglin Ye 		"DT 101 G2",
2086cec28a54SQinglin Ye 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2087cec28a54SQinglin Ye 		US_FL_BULK_IGNORE_TAG ),
2088cec28a54SQinglin Ye 
2089f1cd4ad2SPhil Dibowitz /* Reported by Francesco Foresti <frafore@tiscali.it> */
2090f1cd4ad2SPhil Dibowitz UNUSUAL_DEV(  0x14cd, 0x6600, 0x0201, 0x0201,
2091f1cd4ad2SPhil Dibowitz 		"Super Top",
2092f1cd4ad2SPhil Dibowitz 		"IDE DEVICE",
20938fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2094f1cd4ad2SPhil Dibowitz 		US_FL_IGNORE_RESIDUE ),
2095f1cd4ad2SPhil Dibowitz 
2096b14bf2d0SAlan Stern /* Reported by Michael Büsch <m@bues.ch> */
20979fa62b1aSDmitry Katsubo UNUSUAL_DEV(  0x152d, 0x0567, 0x0114, 0x0116,
2098b14bf2d0SAlan Stern 		"JMicron",
2099b14bf2d0SAlan Stern 		"USB to ATA/ATAPI Bridge",
2100b14bf2d0SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2101b14bf2d0SAlan Stern 		US_FL_BROKEN_FUA ),
2102b14bf2d0SAlan Stern 
2103*62354454SDavid Kozub /* Reported by David Kozub <zub@linux.fjfi.cvut.cz> */
2104*62354454SDavid Kozub UNUSUAL_DEV(0x152d, 0x0578, 0x0000, 0x9999,
2105*62354454SDavid Kozub 		"JMicron",
2106*62354454SDavid Kozub 		"JMS567",
2107*62354454SDavid Kozub 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2108*62354454SDavid Kozub 		US_FL_BROKEN_FUA),
2109*62354454SDavid Kozub 
2110f0183a33SFelipe Balbi /*
2111f0183a33SFelipe Balbi  * Reported by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
21123030ca4cSPhil Dibowitz  * JMicron responds to USN and several other SCSI ioctls with a
21133030ca4cSPhil Dibowitz  * residue that causes subsequent I/O requests to fail.  */
21143030ca4cSPhil Dibowitz UNUSUAL_DEV(  0x152d, 0x2329, 0x0100, 0x0100,
21153030ca4cSPhil Dibowitz 		"JMicron",
21163030ca4cSPhil Dibowitz 		"USB to ATA/ATAPI Bridge",
21178fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2118dbe6e0c0SBen Efros 		US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ),
21193030ca4cSPhil Dibowitz 
2120bf5c4136SDmitry Nezhevenko /* Reported by Dmitry Nezhevenko <dion@dion.org.ua> */
2121bf5c4136SDmitry Nezhevenko UNUSUAL_DEV(  0x152d, 0x2566, 0x0114, 0x0114,
2122bf5c4136SDmitry Nezhevenko 		"JMicron",
2123bf5c4136SDmitry Nezhevenko 		"USB to ATA/ATAPI Bridge",
2124bf5c4136SDmitry Nezhevenko 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2125bf5c4136SDmitry Nezhevenko 		US_FL_BROKEN_FUA ),
2126bf5c4136SDmitry Nezhevenko 
2127674aea07SOliver Neukum /* Reported-by George Cherian <george.cherian@cavium.com> */
2128674aea07SOliver Neukum UNUSUAL_DEV(0x152d, 0x9561, 0x0000, 0x9999,
2129674aea07SOliver Neukum 		"JMicron",
2130674aea07SOliver Neukum 		"JMS56x",
2131674aea07SOliver Neukum 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2132674aea07SOliver Neukum 		US_FL_NO_REPORT_OPCODES),
2133674aea07SOliver Neukum 
2134f0183a33SFelipe Balbi /*
2135f0183a33SFelipe Balbi  * Entrega Technologies U1-SC25 (later Xircom PortGear PGSCSI)
2136c80b4495SMark  * and Mac USB Dock USB-SCSI */
2137c80b4495SMark UNUSUAL_DEV(  0x1645, 0x0007, 0x0100, 0x0133,
2138c80b4495SMark 		"Entrega Technologies",
2139c80b4495SMark 		"USB to SCSI Converter",
2140c80b4495SMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
2141c80b4495SMark 		US_FL_SCM_MULT_TARG ),
2142c80b4495SMark 
2143f0183a33SFelipe Balbi /*
2144f0183a33SFelipe Balbi  * Reported by Robert Schedel <r.schedel@yahoo.de>
2145f0183a33SFelipe Balbi  * Note: this is a 'super top' device like the above 14cd/6600 device
2146f0183a33SFelipe Balbi  */
2147f1cd4ad2SPhil Dibowitz UNUSUAL_DEV(  0x1652, 0x6600, 0x0201, 0x0201,
2148f1cd4ad2SPhil Dibowitz 		"Teac",
2149f1cd4ad2SPhil Dibowitz 		"HD-35PUK-B",
21508fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2151f1cd4ad2SPhil Dibowitz 		US_FL_IGNORE_RESIDUE ),
2152f1cd4ad2SPhil Dibowitz 
215332c37fc3SOliver Neukum /* Reported by Oliver Neukum <oneukum@suse.com> */
215432c37fc3SOliver Neukum UNUSUAL_DEV(  0x174c, 0x55aa, 0x0100, 0x0100,
215532c37fc3SOliver Neukum 		"ASMedia",
215632c37fc3SOliver Neukum 		"AS2105",
215732c37fc3SOliver Neukum 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
215832c37fc3SOliver Neukum 		US_FL_NEEDS_CAP16),
215932c37fc3SOliver Neukum 
2160df767b71SAlan Stern /* Reported by Jesse Feddema <jdfeddema@gmail.com> */
2161df767b71SAlan Stern UNUSUAL_DEV(  0x177f, 0x0400, 0x0000, 0x0000,
2162df767b71SAlan Stern 		"Yarvik",
2163df767b71SAlan Stern 		"PMP400",
2164df767b71SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2165df767b71SAlan Stern 		US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ),
2166df767b71SAlan Stern 
2167b6a3ed67SMark UNUSUAL_DEV(  0x1822, 0x0001, 0x0000, 0x9999,
2168b6a3ed67SMark 		"Ariston Technologies",
2169b6a3ed67SMark 		"iConnect USB to SCSI adapter",
2170b6a3ed67SMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
2171b6a3ed67SMark 		US_FL_SCM_MULT_TARG ),
2172b6a3ed67SMark 
2173f0183a33SFelipe Balbi /*
2174f0183a33SFelipe Balbi  * Reported by Hans de Goede <hdegoede@redhat.com>
2175a78f4f1aSHans de Goede  * These Appotech controllers are found in Picture Frames, they provide a
2176a78f4f1aSHans de Goede  * (buggy) emulation of a cdrom drive which contains the windows software
2177f0183a33SFelipe Balbi  * Uploading of pictures happens over the corresponding /dev/sg device.
2178f0183a33SFelipe Balbi  */
2179a78f4f1aSHans de Goede UNUSUAL_DEV( 0x1908, 0x1315, 0x0000, 0x0000,
2180a78f4f1aSHans de Goede 		"BUILDWIN",
2181a78f4f1aSHans de Goede 		"Photo Frame",
21828fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2183a78f4f1aSHans de Goede 		US_FL_BAD_SENSE ),
2184a78f4f1aSHans de Goede UNUSUAL_DEV( 0x1908, 0x1320, 0x0000, 0x0000,
2185a78f4f1aSHans de Goede 		"BUILDWIN",
2186a78f4f1aSHans de Goede 		"Photo Frame",
21878fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2188a78f4f1aSHans de Goede 		US_FL_BAD_SENSE ),
2189ae38c78aSHans de Goede UNUSUAL_DEV( 0x1908, 0x3335, 0x0200, 0x0200,
2190ae38c78aSHans de Goede 		"BUILDWIN",
2191ae38c78aSHans de Goede 		"Photo Frame",
2192ae38c78aSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2193ae38c78aSHans de Goede 		US_FL_NO_READ_DISC_INFO ),
2194a78f4f1aSHans de Goede 
2195f0183a33SFelipe Balbi /*
2196f0183a33SFelipe Balbi  * Reported by Oliver Neukum <oneukum@suse.com>
21975fb2c782SOliver Neukum  * This device morphes spontaneously into another device if the access
21985fb2c782SOliver Neukum  * pattern of Windows isn't followed. Thus writable media would be dirty
21995fb2c782SOliver Neukum  * if the initial instance is used. So the device is limited to its
22005fb2c782SOliver Neukum  * virtual CD.
2201f0183a33SFelipe Balbi  * And yes, the concept that BCD goes up to 9 is not heeded
2202f0183a33SFelipe Balbi  */
22035fb2c782SOliver Neukum UNUSUAL_DEV( 0x19d2, 0x1225, 0x0000, 0xffff,
22045fb2c782SOliver Neukum 		"ZTE,Incorporated",
22055fb2c782SOliver Neukum 		"ZTE WCDMA Technologies MSM",
22065fb2c782SOliver Neukum 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22075fb2c782SOliver Neukum 		US_FL_SINGLE_LUN ),
22085fb2c782SOliver Neukum 
2209f0183a33SFelipe Balbi /*
2210f0183a33SFelipe Balbi  * Reported by Sven Geggus <sven-usbst@geggus.net>
221121c13a4fSAlan Stern  * This encrypted pen drive returns bogus data for the initial READ(10).
221221c13a4fSAlan Stern  */
221321c13a4fSAlan Stern UNUSUAL_DEV(  0x1b1c, 0x1ab5, 0x0200, 0x0200,
221421c13a4fSAlan Stern 		"Corsair",
221521c13a4fSAlan Stern 		"Padlock v2",
221621c13a4fSAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
221721c13a4fSAlan Stern 		US_FL_INITIAL_READ10 ),
221821c13a4fSAlan Stern 
2219f0183a33SFelipe Balbi /*
2220f0183a33SFelipe Balbi  * Reported by Hans de Goede <hdegoede@redhat.com>
22212d64f31bSHans de Goede  * These are mini projectors using USB for both power and video data transport
22222d64f31bSHans de Goede  * The usb-storage interface is a virtual windows driver CD, which the gm12u320
22232d64f31bSHans de Goede  * driver automatically converts into framebuffer & kms dri device nodes.
22242d64f31bSHans de Goede  */
22252d64f31bSHans de Goede UNUSUAL_DEV( 0x1de1, 0xc102, 0x0000, 0xffff,
22262d64f31bSHans de Goede 		"Grain-media Technology Corp.",
22272d64f31bSHans de Goede 		"USB3.0 Device GM12U320",
22282d64f31bSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22292d64f31bSHans de Goede 		US_FL_IGNORE_DEVICE ),
22302d64f31bSHans de Goede 
2231f0183a33SFelipe Balbi /*
2232f0183a33SFelipe Balbi  * Patch by Richard Schütz <r.schtz@t-online.de>
22337e1e7bd9SRichard Schütz  * This external hard drive enclosure uses a JMicron chip which
2234f0183a33SFelipe Balbi  * needs the US_FL_IGNORE_RESIDUE flag to work properly.
2235f0183a33SFelipe Balbi  */
22367e1e7bd9SRichard Schütz UNUSUAL_DEV(  0x1e68, 0x001b, 0x0000, 0x0000,
22377e1e7bd9SRichard Schütz 		"TrekStor GmbH & Co. KG",
22387e1e7bd9SRichard Schütz 		"DataStation maxi g.u",
22397e1e7bd9SRichard Schütz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22407e1e7bd9SRichard Schütz 		US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ),
22417e1e7bd9SRichard Schütz 
22423ea3c9b5SAlan Stern /* Reported by Jasper Mackenzie <scarletpimpernal@hotmail.com> */
22433ea3c9b5SAlan Stern UNUSUAL_DEV( 0x1e74, 0x4621, 0x0000, 0x0000,
22443ea3c9b5SAlan Stern 		"Coby Electronics",
22453ea3c9b5SAlan Stern 		"MP3 Player",
22463ea3c9b5SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22473ea3c9b5SAlan Stern 		US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ),
22483ea3c9b5SAlan Stern 
224957cde01aSMark Knibbs /* Supplied with some Castlewood ORB removable drives */
225057cde01aSMark Knibbs UNUSUAL_DEV(  0x2027, 0xa001, 0x0000, 0x9999,
225157cde01aSMark Knibbs 		"Double-H Technology",
225257cde01aSMark Knibbs 		"USB to SCSI Intelligent Cable",
225357cde01aSMark Knibbs 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
225457cde01aSMark Knibbs 		US_FL_SCM_MULT_TARG ),
225557cde01aSMark Knibbs 
2256b90de8aeSOliver Neukum UNUSUAL_DEV( 0x2116, 0x0320, 0x0001, 0x0001,
2257b90de8aeSOliver Neukum 		"ST",
2258b90de8aeSOliver Neukum 		"2A",
22598fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2260b90de8aeSOliver Neukum 		US_FL_FIX_CAPACITY),
2261b90de8aeSOliver Neukum 
2262f0183a33SFelipe Balbi /*
2263f0183a33SFelipe Balbi  * patch submitted by Davide Perini <perini.davide@dpsoftware.org>
22640ddc0634SDavide Perini  * and Renato Perini <rperini@email.it>
22650ddc0634SDavide Perini  */
22660ddc0634SDavide Perini UNUSUAL_DEV(  0x22b8, 0x3010, 0x0001, 0x0001,
22670ddc0634SDavide Perini 		"Motorola",
22680ddc0634SDavide Perini 		"RAZR V3x",
22698fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22700ddc0634SDavide Perini 		US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ),
22710ddc0634SDavide Perini 
2272a7f3dd5dSPete Zaitcev /*
2273cc36bdd4SConstantin Baranov  * Patch by Constantin Baranov <const@tltsu.ru>
2274cc36bdd4SConstantin Baranov  * Report by Andreas Koenecke.
2275cc36bdd4SConstantin Baranov  * Motorola ROKR Z6.
2276cc36bdd4SConstantin Baranov  */
2277cc36bdd4SConstantin Baranov UNUSUAL_DEV(  0x22b8, 0x6426, 0x0101, 0x0101,
2278cc36bdd4SConstantin Baranov 		"Motorola",
2279cc36bdd4SConstantin Baranov 		"MSnc.",
22808fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2281cc36bdd4SConstantin Baranov 		US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY | US_FL_BULK_IGNORE_TAG),
2282cc36bdd4SConstantin Baranov 
22831da177e4SLinus Torvalds /* Reported by Radovan Garabik <garabik@kassiopeia.juls.savba.sk> */
22841da177e4SLinus Torvalds UNUSUAL_DEV(  0x2735, 0x100b, 0x0000, 0x9999,
22851da177e4SLinus Torvalds 		"MPIO",
22861da177e4SLinus Torvalds 		"HS200",
22878fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22881da177e4SLinus Torvalds 		US_FL_GO_SLOW ),
22891da177e4SLinus Torvalds 
2290f0183a33SFelipe Balbi /*
2291f0183a33SFelipe Balbi  * Reported by Frederic Marchal <frederic.marchal@wowcompany.com>
2292e8fab4ceSFrédéric Marchal  * Mio Moov 330
2293e8fab4ceSFrédéric Marchal  */
2294e8fab4ceSFrédéric Marchal UNUSUAL_DEV(  0x3340, 0xffff, 0x0000, 0x0000,
2295e8fab4ceSFrédéric Marchal 		"Mitac",
2296e8fab4ceSFrédéric Marchal 		"Mio DigiWalker USB Sync",
22978fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE,USB_PR_DEVICE,NULL,
2298e8fab4ceSFrédéric Marchal 		US_FL_MAX_SECTORS_64 ),
2299e8fab4ceSFrédéric Marchal 
2300368ee646SAlan Stern /* Reported by Andrey Rahmatullin <wrar@altlinux.org> */
2301368ee646SAlan Stern UNUSUAL_DEV(  0x4102, 0x1020, 0x0100,  0x0100,
2302368ee646SAlan Stern 		"iRiver",
2303368ee646SAlan Stern 		"MP3 T10",
23048fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2305368ee646SAlan Stern 		US_FL_IGNORE_RESIDUE ),
2306368ee646SAlan Stern 
23072f13612aSSergey Pinaev /* Reported by Sergey Pinaev <dfo@antex.ru> */
23082f13612aSSergey Pinaev UNUSUAL_DEV(  0x4102, 0x1059, 0x0000,  0x0000,
23092f13612aSSergey Pinaev                "iRiver",
23102f13612aSSergey Pinaev                "P7K",
23118fa7fd74SMichal Nazarewicz                USB_SC_DEVICE, USB_PR_DEVICE, NULL,
23122f13612aSSergey Pinaev                US_FL_MAX_SECTORS_64 ),
23132f13612aSSergey Pinaev 
231463dc3ff3SDavid Härdeman /*
231596de0e25SJan Engelhardt  * David Härdeman <david@2gen.com>
231663dc3ff3SDavid Härdeman  * The key makes the SCSI stack print confusing (but harmless) messages
231763dc3ff3SDavid Härdeman  */
231863dc3ff3SDavid Härdeman UNUSUAL_DEV(  0x4146, 0xba01, 0x0100, 0x0100,
231963dc3ff3SDavid Härdeman 		"Iomega",
232063dc3ff3SDavid Härdeman 		"Micro Mini 1GB",
23218fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ),
232263dc3ff3SDavid Härdeman 
2323a871e4f5SNick Bowler /*
2324a871e4f5SNick Bowler  * Nick Bowler <nbowler@elliptictech.com>
2325a871e4f5SNick Bowler  * SCSI stack spams (otherwise harmless) error messages.
2326a871e4f5SNick Bowler  */
2327a871e4f5SNick Bowler UNUSUAL_DEV(  0xc251, 0x4003, 0x0100, 0x0100,
2328a871e4f5SNick Bowler 		"Keil Software, Inc.",
2329a871e4f5SNick Bowler 		"V2M MotherBoard",
2330a871e4f5SNick Bowler 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2331a871e4f5SNick Bowler 		US_FL_NOT_LOCKABLE),
2332a871e4f5SNick Bowler 
2333a2149bceSAlan Stern /* Reported by Andrew Simmons <andrew.simmons@gmail.com> */
2334a2149bceSAlan Stern UNUSUAL_DEV(  0xed06, 0x4500, 0x0001, 0x0001,
2335a2149bceSAlan Stern 		"DataStor",
2336a2149bceSAlan Stern 		"USB4500 FW1.04",
23378fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
233861bf54b7SOliver Neukum 		US_FL_CAPACITY_HEURISTICS),
2339a2149bceSAlan Stern 
234046c6e93fSChuck Short /* Reported by Alessio Treglia <quadrispro@ubuntu.com> */
234146c6e93fSChuck Short UNUSUAL_DEV( 0xed10, 0x7636, 0x0001, 0x0001,
234246c6e93fSChuck Short 		"TGE",
234346c6e93fSChuck Short 		"Digital MP3 Audio Player",
23448fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ),
234546c6e93fSChuck Short 
23465bfd5b5dSHans de Goede /* Unusual uas devices */
23475bfd5b5dSHans de Goede #if IS_ENABLED(CONFIG_USB_UAS)
23485bfd5b5dSHans de Goede #include "unusual_uas.h"
23495bfd5b5dSHans de Goede #endif
23505bfd5b5dSHans de Goede 
2351a00828e9SPete Zaitcev /* Control/Bulk transport for all SubClass values */
2352f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_RBC, USB_PR_CB),
2353f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8020, USB_PR_CB),
2354f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_QIC, USB_PR_CB),
2355f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_UFI, USB_PR_CB),
2356f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8070, USB_PR_CB),
2357f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_SCSI, USB_PR_CB),
2358a00828e9SPete Zaitcev 
2359a00828e9SPete Zaitcev /* Control/Bulk/Interrupt transport for all SubClass values */
2360f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_RBC, USB_PR_CBI),
2361f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8020, USB_PR_CBI),
2362f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_QIC, USB_PR_CBI),
2363f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_UFI, USB_PR_CBI),
2364f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8070, USB_PR_CBI),
2365f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_SCSI, USB_PR_CBI),
2366a00828e9SPete Zaitcev 
2367a00828e9SPete Zaitcev /* Bulk-only transport for all SubClass values */
2368f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_RBC, USB_PR_BULK),
2369f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8020, USB_PR_BULK),
2370f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_QIC, USB_PR_BULK),
2371f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_UFI, USB_PR_BULK),
2372f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8070, USB_PR_BULK),
2373f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_SCSI, USB_PR_BULK),
2374