xref: /linux/drivers/usb/storage/unusual_devs.h (revision ba01565ced22c04749a6f71aa8a658d3a64734bc)
159b4e0cdSNishad Kamdar /* 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 
13f0183a33SFelipe Balbi /*
14f0183a33SFelipe Balbi  * IMPORTANT NOTE: This file must be included in another file which does
151da177e4SLinus Torvalds  * the following thing for it to work:
1625ff1c31SAlan Stern  * The UNUSUAL_DEV, COMPLIANT_DEV, and USUAL_DEV macros must be defined
1725ff1c31SAlan Stern  * before this file is included.
181da177e4SLinus Torvalds  */
191da177e4SLinus Torvalds 
20f0183a33SFelipe Balbi /*
21f0183a33SFelipe Balbi  * If you edit this file, please try to keep it sorted first by VendorID,
221da177e4SLinus Torvalds  * then by ProductID.
231da177e4SLinus Torvalds  *
241da177e4SLinus Torvalds  * If you want to add an entry for this file, be sure to include the
251da177e4SLinus Torvalds  * following information:
261da177e4SLinus Torvalds  *	- a patch that adds the entry for your device, including your
271da177e4SLinus Torvalds  *	  email address right above the entry (plus maybe a brief
281da177e4SLinus Torvalds  *	  explanation of the reason for the entry),
2921470e32SMauro Carvalho Chehab  *	- a copy of /sys/kernel/debug/usb/devices with your device plugged in
301da177e4SLinus Torvalds  *	  running with this patch.
3143618257SGreg Kroah-Hartman  * Send your submission to the USB development list <linux-usb@vger.kernel.org>
321da177e4SLinus Torvalds  */
331da177e4SLinus Torvalds 
34f0183a33SFelipe Balbi /*
35f0183a33SFelipe Balbi  * Note: If you add an entry only in order to set the CAPACITY_OK flag,
3625ff1c31SAlan Stern  * use the COMPLIANT_DEV macro instead of UNUSUAL_DEV.  This is
3725ff1c31SAlan Stern  * because such entries mark devices which actually work correctly,
3825ff1c31SAlan Stern  * as opposed to devices that do something strangely or wrongly.
3925ff1c31SAlan Stern  */
4025ff1c31SAlan Stern 
41f0183a33SFelipe Balbi /*
42f0183a33SFelipe Balbi  * In-kernel mode switching is deprecated.  Do not add new devices to
43fbb8c745SBjørn Mork  * this list for the sole purpose of switching them to a different
44fbb8c745SBjørn Mork  * mode.  Existing userspace solutions are superior.
45fbb8c745SBjørn Mork  *
46fbb8c745SBjørn Mork  * New mode switching devices should instead be added to the database
47e46d8cb5SAlexander A. Klimov  * maintained at https://www.draisberghof.de/usb_modeswitch/
48fbb8c745SBjørn Mork  */
49fbb8c745SBjørn Mork 
500ff71883SAlan Stern #if !defined(CONFIG_USB_STORAGE_SDDR09) && \
510ff71883SAlan Stern 		!defined(CONFIG_USB_STORAGE_SDDR09_MODULE)
520ff71883SAlan Stern #define NO_SDDR09
530ff71883SAlan Stern #endif
540ff71883SAlan Stern 
55f0183a33SFelipe Balbi /* patch submitted by Vivian Bregier <Vivian.Bregier@imag.fr> */
568af60be9SVivian Bregier UNUSUAL_DEV(  0x03eb, 0x2002, 0x0100, 0x0100,
578af60be9SVivian Bregier 		"ATMEL",
588af60be9SVivian Bregier 		"SND1 Storage",
598fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
608af60be9SVivian Bregier 		US_FL_IGNORE_RESIDUE),
618af60be9SVivian Bregier 
629d5847bcSRodolfo Quesada /* Reported by Rodolfo Quesada <rquesada@roqz.net> */
639d5847bcSRodolfo Quesada UNUSUAL_DEV(  0x03ee, 0x6906, 0x0003, 0x0003,
649d5847bcSRodolfo Quesada 		"VIA Technologies Inc.",
659d5847bcSRodolfo Quesada 		"Mitsumi multi cardreader",
668fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
679d5847bcSRodolfo Quesada 		US_FL_IGNORE_RESIDUE ),
689d5847bcSRodolfo Quesada 
691da177e4SLinus Torvalds UNUSUAL_DEV(  0x03f0, 0x0107, 0x0200, 0x0200,
701da177e4SLinus Torvalds 		"HP",
711da177e4SLinus Torvalds 		"CD-Writer+",
728fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_CB, NULL, 0),
731da177e4SLinus Torvalds 
74dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */
75dbe6e0c0SBen Efros UNUSUAL_DEV(  0x03f0, 0x070c, 0x0000, 0x0000,
76dbe6e0c0SBen Efros 		"HP",
77dbe6e0c0SBen Efros 		"Personal Media Drive",
788fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
79dbe6e0c0SBen Efros 		US_FL_SANE_SENSE ),
80dbe6e0c0SBen Efros 
81f0183a33SFelipe Balbi /*
82f0183a33SFelipe Balbi  * Reported by Grant Grundler <grundler@parisc-linux.org>
834b24f91cSGrant Grundler  * HP r707 camera in "Disk" mode with 2.00.23 or 2.00.24 firmware.
844b24f91cSGrant Grundler  */
854b24f91cSGrant Grundler UNUSUAL_DEV(  0x03f0, 0x4002, 0x0001, 0x0001,
864b24f91cSGrant Grundler 		"HP",
874b24f91cSGrant Grundler 		"PhotoSmart R707",
888fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_CAPACITY),
894b24f91cSGrant Grundler 
9067d365a5SMark UNUSUAL_DEV(  0x03f3, 0x0001, 0x0000, 0x9999,
9167d365a5SMark 		"Adaptec",
9267d365a5SMark 		"USBConnect 2000",
9367d365a5SMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
9467d365a5SMark 		US_FL_SCM_MULT_TARG ),
9567d365a5SMark 
96f0183a33SFelipe Balbi /*
97f0183a33SFelipe Balbi  * Reported by Sebastian Kapfer <sebastian_kapfer@gmx.net>
981ea640ceSPhil Dibowitz  * and Olaf Hering <olh@suse.de> (different bcd's, same vendor/product)
991ea640ceSPhil Dibowitz  * for USB floppies that need the SINGLE_LUN enforcement.
1001ea640ceSPhil Dibowitz  */
1011ea640ceSPhil Dibowitz UNUSUAL_DEV(  0x0409, 0x0040, 0x0000, 0x9999,
1021ea640ceSPhil Dibowitz 		"NEC",
1031ea640ceSPhil Dibowitz 		"NEC USB UF000x",
1048fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1051ea640ceSPhil Dibowitz 		US_FL_SINGLE_LUN ),
1061ea640ceSPhil Dibowitz 
1073e220e95SPhil Dibowitz /* Patch submitted by Mihnea-Costin Grigore <mihnea@zulu.ro> */
1083e220e95SPhil Dibowitz UNUSUAL_DEV(  0x040d, 0x6205, 0x0003, 0x0003,
1093e220e95SPhil Dibowitz 		"VIA Technologies Inc.",
1103e220e95SPhil Dibowitz 		"USB 2.0 Card Reader",
1118fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1123e220e95SPhil Dibowitz 		US_FL_IGNORE_RESIDUE ),
1133e220e95SPhil Dibowitz 
114f0183a33SFelipe Balbi /*
115f0183a33SFelipe Balbi  * Deduced by Jonathan Woithe <jwoithe@just42.net>
1161da177e4SLinus Torvalds  * Entry needed for flags: US_FL_FIX_INQUIRY because initial inquiry message
1171da177e4SLinus Torvalds  * always fails and confuses drive.
1181da177e4SLinus Torvalds  */
1191da177e4SLinus Torvalds UNUSUAL_DEV(  0x0411, 0x001c, 0x0113, 0x0113,
1201da177e4SLinus Torvalds 		"Buffalo",
1211da177e4SLinus Torvalds 		"DUB-P40G HDD",
1228fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1231da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
1241da177e4SLinus Torvalds 
125d8840d60SErnis /* Submitted by Ernestas Vaiciukevicius <ernisv@gmail.com> */
126d8840d60SErnis UNUSUAL_DEV(  0x0419, 0x0100, 0x0100, 0x0100,
127d8840d60SErnis 		"Samsung Info. Systems America, Inc.",
128d8840d60SErnis 		"MP3 Player",
1298fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
130d8840d60SErnis 		US_FL_IGNORE_RESIDUE ),
131d8840d60SErnis 
1325501a48cSPhil Dibowitz /* Reported by Orgad Shaneh <orgads@gmail.com> */
1335501a48cSPhil Dibowitz UNUSUAL_DEV(  0x0419, 0xaace, 0x0100, 0x0100,
1345501a48cSPhil Dibowitz 		"Samsung", "MP3 Player",
1358fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1365501a48cSPhil Dibowitz 		US_FL_IGNORE_RESIDUE ),
1375501a48cSPhil Dibowitz 
1381d614a4bSAlan Stern /* Reported by Christian Leber <christian@leber.de> */
1391d614a4bSAlan Stern UNUSUAL_DEV(  0x0419, 0xaaf5, 0x0100, 0x0100,
1401d614a4bSAlan Stern 		"TrekStor",
1411d614a4bSAlan Stern 		"i.Beat 115 2.0",
1428fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1431d614a4bSAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_NOT_LOCKABLE ),
1441d614a4bSAlan Stern 
145e4a16e0cSPhil Dibowitz /* Reported by Stefan Werner <dustbln@gmx.de> */
146e4a16e0cSPhil Dibowitz UNUSUAL_DEV(  0x0419, 0xaaf6, 0x0100, 0x0100,
147e4a16e0cSPhil Dibowitz 		"TrekStor",
148e4a16e0cSPhil Dibowitz 		"i.Beat Joy 2.0",
1498fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
150e4a16e0cSPhil Dibowitz 		US_FL_IGNORE_RESIDUE ),
151e4a16e0cSPhil Dibowitz 
15223b7885dSPete Zaitcev /* Reported by Pete Zaitcev <zaitcev@redhat.com>, bz#176584 */
15323b7885dSPete Zaitcev UNUSUAL_DEV(  0x0420, 0x0001, 0x0100, 0x0100,
15423b7885dSPete Zaitcev 		"GENERIC", "MP3 PLAYER", /* MyMusix PD-205 on the outside. */
1558fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15623b7885dSPete Zaitcev 		US_FL_IGNORE_RESIDUE ),
15723b7885dSPete Zaitcev 
158f0183a33SFelipe Balbi /*
159f0183a33SFelipe Balbi  * Reported by Andrew Nayenko <relan@bk.ru>
1601022ccdbSPhillip Potter  * Updated for new firmware by Phillip Potter <phil@philpotter.co.uk>
161f0183a33SFelipe Balbi  */
162031defd1SPhil Dibowitz UNUSUAL_DEV(  0x0421, 0x0019, 0x0592, 0x0610,
1630d8c7aeaSAndrew Nayenko 		"Nokia",
1640d8c7aeaSAndrew Nayenko 		"Nokia 6288",
1658fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1660d8c7aeaSAndrew Nayenko 		US_FL_MAX_SECTORS_64 ),
1670d8c7aeaSAndrew Nayenko 
168de1caa47SAlan Stern /* Reported by Mario Rettig <mariorettig@web.de> */
169de1caa47SAlan Stern UNUSUAL_DEV(  0x0421, 0x042e, 0x0100, 0x0100,
170de1caa47SAlan Stern 		"Nokia",
171de1caa47SAlan Stern 		"Nokia 3250",
1728fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
173de1caa47SAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
174de1caa47SAlan Stern 
175fe1ec341SAndrew Morton /* Reported by <honkkis@gmail.com> */
176fe1ec341SAndrew Morton UNUSUAL_DEV(  0x0421, 0x0433, 0x0100, 0x0100,
177fe1ec341SAndrew Morton 		"Nokia",
178fe1ec341SAndrew Morton 		"E70",
1798fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
180fe1ec341SAndrew Morton 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
181fe1ec341SAndrew Morton 
1827923811aSAlan Stern /* Reported by Jon Hart <Jon.Hart@web.de> */
1837923811aSAlan Stern UNUSUAL_DEV(  0x0421, 0x0434, 0x0100, 0x0100,
1847923811aSAlan Stern 		"Nokia",
1857923811aSAlan Stern 		"E60",
1868fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1877923811aSAlan Stern 		US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ),
1887923811aSAlan Stern 
189f0183a33SFelipe Balbi /*
190f0183a33SFelipe Balbi  * Reported by Sumedha Swamy <sumedhaswamy@gmail.com> and
191f0183a33SFelipe Balbi  * Einar Th. Einarsson <einarthered@gmail.com>
192f0183a33SFelipe Balbi  */
1939a01355eSAlan Stern UNUSUAL_DEV(  0x0421, 0x0444, 0x0100, 0x0100,
1949a01355eSAlan Stern 		"Nokia",
1959a01355eSAlan Stern 		"N91",
1968fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1979a01355eSAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
1989a01355eSAlan Stern 
199f0183a33SFelipe Balbi /*
200f0183a33SFelipe Balbi  * Reported by Jiri Slaby <jirislaby@gmail.com> and
201f0183a33SFelipe Balbi  * Rene C. Castberg <Rene@Castberg.org>
202f0183a33SFelipe Balbi  */
203d5681fe8SAlan Stern UNUSUAL_DEV(  0x0421, 0x0446, 0x0100, 0x0100,
204d5681fe8SAlan Stern 		"Nokia",
205d5681fe8SAlan Stern 		"N80",
2068fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
207d5681fe8SAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
208d5681fe8SAlan Stern 
20957b01b1eSAlan Stern /* Reported by Matthew Bloch <matthew@bytemark.co.uk> */
21057b01b1eSAlan Stern UNUSUAL_DEV(  0x0421, 0x044e, 0x0100, 0x0100,
21157b01b1eSAlan Stern 		"Nokia",
21257b01b1eSAlan Stern 		"E61",
2138fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
21457b01b1eSAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
21557b01b1eSAlan Stern 
216e4a20daaSAlan Stern /* Reported by Bardur Arantsson <bardur@scientician.net> */
217393e5511SAlan Stern UNUSUAL_DEV(  0x0421, 0x047c, 0x0370, 0x0610,
218e4a20daaSAlan Stern 		"Nokia",
219e4a20daaSAlan Stern 		"6131",
2208fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
221e4a20daaSAlan Stern 		US_FL_MAX_SECTORS_64 ),
222e4a20daaSAlan Stern 
22339559b4fSManuel Osdoba /* Reported by Manuel Osdoba <manuel.osdoba@tu-ilmenau.de> */
224716a9c85SMoritz Muehlenhoff UNUSUAL_DEV( 0x0421, 0x0492, 0x0452, 0x9999,
22539559b4fSManuel Osdoba 		"Nokia",
22639559b4fSManuel Osdoba 		"Nokia 6233",
2278fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22839559b4fSManuel Osdoba 		US_FL_MAX_SECTORS_64 ),
22939559b4fSManuel Osdoba 
2303ccf25ceSAlan Stern /* Reported by Alex Corcoles <alex@corcoles.net> */
2313ccf25ceSAlan Stern UNUSUAL_DEV(  0x0421, 0x0495, 0x0370, 0x0370,
2323ccf25ceSAlan Stern 		"Nokia",
2333ccf25ceSAlan Stern 		"6234",
2348fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2353ccf25ceSAlan Stern 		US_FL_MAX_SECTORS_64 ),
2363ccf25ceSAlan Stern 
2376ed07d45SDaniele Forsi /* Reported by Daniele Forsi <dforsi@gmail.com> */
2386ed07d45SDaniele Forsi UNUSUAL_DEV(  0x0421, 0x04b9, 0x0350, 0x0350,
2396ed07d45SDaniele Forsi 		"Nokia",
2406ed07d45SDaniele Forsi 		"5300",
2416ed07d45SDaniele Forsi 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2426ed07d45SDaniele Forsi 		US_FL_MAX_SECTORS_64 ),
2436ed07d45SDaniele Forsi 
244f0ef5d41SVictor A. Santos /* Patch submitted by Victor A. Santos <victoraur.santos@gmail.com> */
245f0ef5d41SVictor A. Santos UNUSUAL_DEV(  0x0421, 0x05af, 0x0742, 0x0742,
246f0ef5d41SVictor A. Santos 		"Nokia",
247f0ef5d41SVictor A. Santos 		"305",
248f0ef5d41SVictor A. Santos 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
249f0ef5d41SVictor A. Santos 		US_FL_MAX_SECTORS_64),
250f0ef5d41SVictor A. Santos 
2510e16114fSMikhail Zolotaryov /* Patch submitted by Mikhail Zolotaryov <lebon@lebon.org.ua> */
2520e16114fSMikhail Zolotaryov UNUSUAL_DEV(  0x0421, 0x06aa, 0x1110, 0x1110,
2530e16114fSMikhail Zolotaryov 		"Nokia",
2540e16114fSMikhail Zolotaryov 		"502",
2550e16114fSMikhail Zolotaryov 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2560e16114fSMikhail Zolotaryov 		US_FL_MAX_SECTORS_64 ),
2570e16114fSMikhail Zolotaryov 
2580ff71883SAlan Stern #ifdef NO_SDDR09
259c20b15fdSAlan Stern UNUSUAL_DEV(  0x0436, 0x0005, 0x0100, 0x0100,
260c20b15fdSAlan Stern 		"Microtech",
261c20b15fdSAlan Stern 		"CameraMate",
2628fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
263c20b15fdSAlan Stern 		US_FL_SINGLE_LUN ),
2641da177e4SLinus Torvalds #endif
2651da177e4SLinus Torvalds 
266f0183a33SFelipe Balbi /*
267f0183a33SFelipe Balbi  * Patch submitted by Daniel Drake <dsd@gentoo.org>
268f0183a33SFelipe Balbi  * Device reports nonsense bInterfaceProtocol 6 when connected over USB2
269f0183a33SFelipe Balbi  */
27016f05be7SPhil Dibowitz UNUSUAL_DEV(  0x0451, 0x5416, 0x0100, 0x0100,
27116f05be7SPhil Dibowitz 		"Neuros Audio",
27216f05be7SPhil Dibowitz 		"USB 2.0 HD 2.5",
2738fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_BULK, NULL,
27416f05be7SPhil Dibowitz 		US_FL_NEED_OVERRIDE ),
27516f05be7SPhil Dibowitz 
276490dce15SPete Zaitcev /*
277490dce15SPete Zaitcev  * Pete Zaitcev <zaitcev@yahoo.com>, from Patrick C. F. Ernzer, bz#162559.
278490dce15SPete Zaitcev  * The key does not actually break, but it returns zero sense which
279490dce15SPete Zaitcev  * makes our SCSI stack to print confusing messages.
280490dce15SPete Zaitcev  */
281490dce15SPete Zaitcev UNUSUAL_DEV(  0x0457, 0x0150, 0x0100, 0x0100,
282490dce15SPete Zaitcev 		"USBest Technology",	/* sold by Transcend */
283490dce15SPete Zaitcev 		"USB Mass Storage Device",
2848fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ),
285490dce15SPete Zaitcev 
28616f05be7SPhil Dibowitz /*
28716f05be7SPhil Dibowitz  * Bohdan Linda <bohdan.linda@gmail.com>
28816f05be7SPhil Dibowitz  * 1GB USB sticks MyFlash High Speed. I have restricted
28916f05be7SPhil Dibowitz  * the revision to my model only
29016f05be7SPhil Dibowitz  */
29116f05be7SPhil Dibowitz UNUSUAL_DEV(  0x0457, 0x0151, 0x0100, 0x0100,
29216f05be7SPhil Dibowitz 		"USB 2.0",
29316f05be7SPhil Dibowitz 		"Flash Disk",
2948fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
29516f05be7SPhil Dibowitz 		US_FL_NOT_LOCKABLE ),
296e1c37b8dSDaniel Drake 
297f0183a33SFelipe Balbi /*
298f0183a33SFelipe Balbi  * Reported by Tamas Kerecsen <kerecsen@bigfoot.com>
299a6b7b034SAlan Stern  * Obviously the PROM has not been customized by the VAR;
300a6b7b034SAlan Stern  * the Vendor and Product string descriptors are:
301a6b7b034SAlan Stern  *	Generic Mass Storage (PROTOTYPE--Remember to change idVendor)
302a6b7b034SAlan Stern  *	Generic Manufacturer (PROTOTYPE--Remember to change idVendor)
303a6b7b034SAlan Stern  */
304a6b7b034SAlan Stern UNUSUAL_DEV(  0x045e, 0xffff, 0x0000, 0x0000,
305a6b7b034SAlan Stern 		"Mitac",
306a6b7b034SAlan Stern 		"GPS",
3078fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
308a6b7b034SAlan Stern 		US_FL_MAX_SECTORS_64 ),
309a6b7b034SAlan Stern 
310379885a9SPete Zaitcev /*
311379885a9SPete Zaitcev  * This virtual floppy is found in Sun equipment (x4600, x4200m2, etc.)
312379885a9SPete Zaitcev  * Reported by Pete Zaitcev <zaitcev@redhat.com>
313379885a9SPete Zaitcev  * This device chokes on both version of MODE SENSE which we have, so
314379885a9SPete Zaitcev  * use_10_for_ms is not effective, and we use US_FL_NO_WP_DETECT.
315379885a9SPete Zaitcev  */
316379885a9SPete Zaitcev UNUSUAL_DEV(  0x046b, 0xff40, 0x0100, 0x0100,
317379885a9SPete Zaitcev 		"AMI",
318379885a9SPete Zaitcev 		"Virtual Floppy",
3198fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
320379885a9SPete Zaitcev 		US_FL_NO_WP_DETECT),
321379885a9SPete Zaitcev 
322050bc4e8SOliver Neukum /* Reported by Egbert Eich <eich@suse.com> */
323050bc4e8SOliver Neukum UNUSUAL_DEV(  0x0480, 0xd010, 0x0100, 0x9999,
324050bc4e8SOliver Neukum 		"Toshiba",
325050bc4e8SOliver Neukum 		"External USB 3.0",
326050bc4e8SOliver Neukum 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
327050bc4e8SOliver Neukum 		US_FL_ALWAYS_SYNC),
328050bc4e8SOliver Neukum 
3291da177e4SLinus Torvalds /* Patch submitted by Philipp Friedrich <philipp@void.at> */
3301da177e4SLinus Torvalds UNUSUAL_DEV(  0x0482, 0x0100, 0x0100, 0x0100,
3311da177e4SLinus Torvalds 		"Kyocera",
3321da177e4SLinus Torvalds 		"Finecam S3x",
3338fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_CB, NULL, US_FL_FIX_INQUIRY),
3341da177e4SLinus Torvalds 
3351da177e4SLinus Torvalds /* Patch submitted by Philipp Friedrich <philipp@void.at> */
3361da177e4SLinus Torvalds UNUSUAL_DEV(  0x0482, 0x0101, 0x0100, 0x0100,
3371da177e4SLinus Torvalds 		"Kyocera",
3381da177e4SLinus Torvalds 		"Finecam S4",
3398fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_CB, NULL, US_FL_FIX_INQUIRY),
3401da177e4SLinus Torvalds 
3411da177e4SLinus Torvalds /* Patch submitted by Stephane Galles <stephane.galles@free.fr> */
3421da177e4SLinus Torvalds UNUSUAL_DEV(  0x0482, 0x0103, 0x0100, 0x0100,
3431da177e4SLinus Torvalds 		"Kyocera",
3441da177e4SLinus Torvalds 		"Finecam S5",
3458fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY),
3461da177e4SLinus Torvalds 
34774511bb3SJens Taprogge /* Patch submitted by Jens Taprogge <jens.taprogge@taprogge.org> */
34874511bb3SJens Taprogge UNUSUAL_DEV(  0x0482, 0x0107, 0x0100, 0x0100,
34974511bb3SJens Taprogge 		"Kyocera",
35074511bb3SJens Taprogge 		"CONTAX SL300R T*",
3518fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
35274511bb3SJens Taprogge 		US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE),
35374511bb3SJens Taprogge 
354f0183a33SFelipe Balbi /*
355f0183a33SFelipe Balbi  * Reported by Paul Stewart <stewart@wetlogic.net>
356f0183a33SFelipe Balbi  * This entry is needed because the device reports Sub=ff
357f0183a33SFelipe Balbi  */
3581da177e4SLinus Torvalds UNUSUAL_DEV(  0x04a4, 0x0004, 0x0001, 0x0001,
3591da177e4SLinus Torvalds 		"Hitachi",
3601da177e4SLinus Torvalds 		"DVD-CAM DZ-MV100A Camcorder",
3618fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL, US_FL_SINGLE_LUN),
3621da177e4SLinus Torvalds 
363f0183a33SFelipe Balbi /*
364f0183a33SFelipe Balbi  * BENQ DC5330
365f9dc8f99SAlan Stern  * Reported by Manuel Fombuena <mfombuena@ya.com> and
366f0183a33SFelipe Balbi  * Frank Copeland <fjc@thingy.apana.org.au>
367f0183a33SFelipe Balbi  */
368f9dc8f99SAlan Stern UNUSUAL_DEV(  0x04a5, 0x3010, 0x0100, 0x0100,
369f9dc8f99SAlan Stern 		"Tekom Technologies, Inc",
370f9dc8f99SAlan Stern 		"300_CAMERA",
3718fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
372f9dc8f99SAlan Stern 		US_FL_IGNORE_RESIDUE ),
373f9dc8f99SAlan Stern 
374f0183a33SFelipe Balbi /*
375f0183a33SFelipe Balbi  * Patch for Nikon coolpix 2000
376f0183a33SFelipe Balbi  * Submitted by Fabien Cosse <fabien.cosse@wanadoo.fr>
377f0183a33SFelipe Balbi  */
37817fa6e55Sfabien COSSE UNUSUAL_DEV(  0x04b0, 0x0301, 0x0010, 0x0010,
37917fa6e55Sfabien COSSE 		"NIKON",
38017fa6e55Sfabien COSSE 		"NIKON DSC E2000",
3818fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE,NULL,
38217fa6e55Sfabien COSSE 		US_FL_NOT_LOCKABLE ),
38317fa6e55Sfabien COSSE 
38433abc04fSDoug Maxey /* Reported by Doug Maxey (dwm@austin.ibm.com) */
38533abc04fSDoug Maxey UNUSUAL_DEV(  0x04b3, 0x4001, 0x0110, 0x0110,
38633abc04fSDoug Maxey 		"IBM",
38733abc04fSDoug Maxey 		"IBM RSA2",
3888fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_CB, NULL,
38933abc04fSDoug Maxey 		US_FL_MAX_SECTORS_MIN),
39033abc04fSDoug Maxey 
391f0183a33SFelipe Balbi /*
392f0183a33SFelipe Balbi  * Reported by Simon Levitt <simon@whattf.com>
393f0183a33SFelipe Balbi  * This entry needs Sub and Proto fields
394f0183a33SFelipe Balbi  */
3951da177e4SLinus Torvalds UNUSUAL_DEV(  0x04b8, 0x0601, 0x0100, 0x0100,
3961da177e4SLinus Torvalds 		"Epson",
3971da177e4SLinus Torvalds 		"875DC Storage",
3988fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL, US_FL_FIX_INQUIRY),
3991da177e4SLinus Torvalds 
400f0183a33SFelipe Balbi /*
401f0183a33SFelipe Balbi  * Reported by Khalid Aziz <khalid@gonehiking.org>
402f0183a33SFelipe Balbi  * This entry is needed because the device reports Sub=ff
403f0183a33SFelipe Balbi  */
4041da177e4SLinus Torvalds UNUSUAL_DEV(  0x04b8, 0x0602, 0x0110, 0x0110,
4051da177e4SLinus Torvalds 		"Epson",
4061da177e4SLinus Torvalds 		"785EPX Storage",
4078fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, NULL, US_FL_SINGLE_LUN),
4081da177e4SLinus Torvalds 
409f0183a33SFelipe Balbi /*
41005c8f1b6SJames Buren  * Reported by James Buren <braewoods+lkml@braewoods.net>
41105c8f1b6SJames Buren  * Virtual ISOs cannot be remounted if ejected while the device is locked
41205c8f1b6SJames Buren  * Disable locking to mimic Windows behavior that bypasses the issue
41305c8f1b6SJames Buren  */
41405c8f1b6SJames Buren UNUSUAL_DEV(  0x04c5, 0x2028, 0x0001, 0x0001,
41505c8f1b6SJames Buren 		"iODD",
41605c8f1b6SJames Buren 		"2531/2541",
41705c8f1b6SJames Buren 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE),
41805c8f1b6SJames Buren 
41905c8f1b6SJames Buren /*
420f0183a33SFelipe Balbi  * Not sure who reported this originally but
4211da177e4SLinus Torvalds  * Pavel Machek <pavel@ucw.cz> reported that the extra US_FL_SINGLE_LUN
4221da177e4SLinus Torvalds  * flag be added */
4231da177e4SLinus Torvalds UNUSUAL_DEV(  0x04cb, 0x0100, 0x0000, 0x2210,
4241da177e4SLinus Torvalds 		"Fujifilm",
4251da177e4SLinus Torvalds 		"FinePix 1400Zoom",
4268fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY | US_FL_SINGLE_LUN),
4271da177e4SLinus Torvalds 
428f0183a33SFelipe Balbi /*
429b55d37efSOndrej Zary  * Reported by Ondrej Zary <linux@zary.sk>
430cd0e8aa1SOndrej Zary  * The device reports one sector more and breaks when that sector is accessed
431b55d37efSOndrej Zary  * Firmwares older than 2.6c (the latest one and the only that claims Linux
432b55d37efSOndrej Zary  * support) have also broken tag handling
433cd0e8aa1SOndrej Zary  */
434b55d37efSOndrej Zary UNUSUAL_DEV(  0x04ce, 0x0002, 0x0000, 0x026b,
435b55d37efSOndrej Zary 		"ScanLogic",
436b55d37efSOndrej Zary 		"SL11R-IDE",
437b55d37efSOndrej Zary 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
438b55d37efSOndrej Zary 		US_FL_FIX_CAPACITY | US_FL_BULK_IGNORE_TAG),
439cd0e8aa1SOndrej Zary UNUSUAL_DEV(  0x04ce, 0x0002, 0x026c, 0x026c,
440cd0e8aa1SOndrej Zary 		"ScanLogic",
441cd0e8aa1SOndrej Zary 		"SL11R-IDE",
4428fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
443cd0e8aa1SOndrej Zary 		US_FL_FIX_CAPACITY),
444cd0e8aa1SOndrej Zary 
445f0183a33SFelipe Balbi /*
446f0183a33SFelipe Balbi  * Reported by Kriston Fincher <kriston@airmail.net>
4471da177e4SLinus Torvalds  * Patch submitted by Sean Millichamp <sean@bruenor.org>
4481da177e4SLinus Torvalds  * This is to support the Panasonic PalmCam PV-SD4090
4491da177e4SLinus Torvalds  * This entry is needed because the device reports Sub=ff
4501da177e4SLinus Torvalds  */
4511da177e4SLinus Torvalds UNUSUAL_DEV(  0x04da, 0x0901, 0x0100, 0x0200,
4521da177e4SLinus Torvalds 		"Panasonic",
4531da177e4SLinus Torvalds 		"LS-120 Camera",
4548fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_DEVICE, NULL, 0),
4551da177e4SLinus Torvalds 
456f0183a33SFelipe Balbi /*
457f0183a33SFelipe Balbi  * From Yukihiro Nakai, via zaitcev@yahoo.com.
458f0183a33SFelipe Balbi  * This is needed for CB instead of CBI
459f0183a33SFelipe Balbi  */
4601da177e4SLinus Torvalds UNUSUAL_DEV(  0x04da, 0x0d05, 0x0000, 0x0000,
4611da177e4SLinus Torvalds 		"Sharp CE-CW05",
4621da177e4SLinus Torvalds 		"CD-R/RW Drive",
4638fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_CB, NULL, 0),
4641da177e4SLinus Torvalds 
4651da177e4SLinus Torvalds /* Reported by Adriaan Penning <a.penning@luon.net> */
4661da177e4SLinus Torvalds UNUSUAL_DEV(  0x04da, 0x2372, 0x0000, 0x9999,
4671da177e4SLinus Torvalds 		"Panasonic",
4681da177e4SLinus Torvalds 		"DMC-LCx Camera",
4698fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
4701da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ),
4711da177e4SLinus Torvalds 
472dcab4eafSSimeon Simeonov /* Reported by Simeon Simeonov <simeonov_2000@yahoo.com> */
473dcab4eafSSimeon Simeonov UNUSUAL_DEV(  0x04da, 0x2373, 0x0000, 0x9999,
474dcab4eafSSimeon Simeonov 		"LEICA",
475dcab4eafSSimeon Simeonov 		"D-LUX Camera",
4768fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
477dcab4eafSSimeon Simeonov 		US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ),
478dcab4eafSSimeon Simeonov 
479f0183a33SFelipe Balbi /*
480f0183a33SFelipe Balbi  * Most of the following entries were developed with the help of
4811da177e4SLinus Torvalds  * Shuttle/SCM directly.
4821da177e4SLinus Torvalds  */
4831da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x0001, 0x0200, 0x0200,
4841da177e4SLinus Torvalds 		"Matshita",
4851da177e4SLinus Torvalds 		"LS-120",
4868fa7fd74SMichal Nazarewicz 		USB_SC_8020, USB_PR_CB, NULL, 0),
4871da177e4SLinus Torvalds 
4881da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x0002, 0x0100, 0x0100,
4891da177e4SLinus Torvalds 		"Shuttle",
4901da177e4SLinus Torvalds 		"eUSCSI Bridge",
4918fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
4921da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
4931da177e4SLinus Torvalds 
4940ff71883SAlan Stern #ifdef NO_SDDR09
495c20b15fdSAlan Stern UNUSUAL_DEV(  0x04e6, 0x0005, 0x0100, 0x0208,
496c20b15fdSAlan Stern 		"SCM Microsystems",
497c20b15fdSAlan Stern 		"eUSB CompactFlash Adapter",
4988fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
499c20b15fdSAlan Stern 		US_FL_SINGLE_LUN),
5001da177e4SLinus Torvalds #endif
5011da177e4SLinus Torvalds 
5021da177e4SLinus Torvalds /* Reported by Markus Demleitner <msdemlei@cl.uni-heidelberg.de> */
5031da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x0006, 0x0100, 0x0100,
5041da177e4SLinus Torvalds 		"SCM Microsystems Inc.",
5051da177e4SLinus Torvalds 		"eUSB MMC Adapter",
5068fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
5071da177e4SLinus Torvalds 		US_FL_SINGLE_LUN),
5081da177e4SLinus Torvalds 
5091da177e4SLinus Torvalds /* Reported by Daniel Nouri <dpunktnpunkt@web.de> */
5101da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x0006, 0x0205, 0x0205,
5111da177e4SLinus Torvalds 		"Shuttle",
5121da177e4SLinus Torvalds 		"eUSB MMC Adapter",
5138fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_DEVICE, NULL,
5141da177e4SLinus Torvalds 		US_FL_SINGLE_LUN),
5151da177e4SLinus Torvalds 
5161da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x0007, 0x0100, 0x0200,
5171da177e4SLinus Torvalds 		"Sony",
5181da177e4SLinus Torvalds 		"Hifd",
5198fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
5201da177e4SLinus Torvalds 		US_FL_SINGLE_LUN),
5211da177e4SLinus Torvalds 
5221da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x0009, 0x0200, 0x0200,
5231da177e4SLinus Torvalds 		"Shuttle",
5241da177e4SLinus Torvalds 		"eUSB ATA/ATAPI Adapter",
5258fa7fd74SMichal Nazarewicz 		USB_SC_8020, USB_PR_CB, NULL, 0),
5261da177e4SLinus Torvalds 
5271da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x000a, 0x0200, 0x0200,
5281da177e4SLinus Torvalds 		"Shuttle",
5291da177e4SLinus Torvalds 		"eUSB CompactFlash Adapter",
5308fa7fd74SMichal Nazarewicz 		USB_SC_8020, USB_PR_CB, NULL, 0),
5311da177e4SLinus Torvalds 
5323512e7bfSMark Knibbs UNUSUAL_DEV(  0x04e6, 0x000b, 0x0100, 0x0100,
5331da177e4SLinus Torvalds 		"Shuttle",
5341da177e4SLinus Torvalds 		"eUSCSI Bridge",
5358fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
5361da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
5371da177e4SLinus Torvalds 
5383512e7bfSMark Knibbs UNUSUAL_DEV(  0x04e6, 0x000c, 0x0100, 0x0100,
5391da177e4SLinus Torvalds 		"Shuttle",
5401da177e4SLinus Torvalds 		"eUSCSI Bridge",
5418fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
5421da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
5431da177e4SLinus Torvalds 
5443512e7bfSMark Knibbs UNUSUAL_DEV(  0x04e6, 0x000f, 0x0000, 0x9999,
5453512e7bfSMark Knibbs 		"SCM Microsystems",
5463512e7bfSMark Knibbs 		"eUSB SCSI Adapter (Bus Powered)",
547a7a34d02SMark Knibbs 		USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
5483512e7bfSMark Knibbs 		US_FL_SCM_MULT_TARG ),
5493512e7bfSMark Knibbs 
5501da177e4SLinus Torvalds UNUSUAL_DEV(  0x04e6, 0x0101, 0x0200, 0x0200,
5511da177e4SLinus Torvalds 		"Shuttle",
5521da177e4SLinus Torvalds 		"CD-RW Device",
5538fa7fd74SMichal Nazarewicz 		USB_SC_8020, USB_PR_CB, NULL, 0),
5541da177e4SLinus Torvalds 
555b28884c1SAlan Stern /* Reported by Dmitry Khlystov <adminimus@gmail.com> */
556b28884c1SAlan Stern UNUSUAL_DEV(  0x04e8, 0x507c, 0x0220, 0x0220,
557b28884c1SAlan Stern 		"Samsung",
558b28884c1SAlan Stern 		"YP-U3",
5598fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
560b28884c1SAlan Stern 		US_FL_MAX_SECTORS_64),
561b28884c1SAlan Stern 
562d73a9b30SVitaly Kuznetsov /* Reported by Vitaly Kuznetsov <vitty@altlinux.ru> */
563d73a9b30SVitaly Kuznetsov UNUSUAL_DEV(  0x04e8, 0x5122, 0x0000, 0x9999,
564d73a9b30SVitaly Kuznetsov 		"Samsung",
565d73a9b30SVitaly Kuznetsov 		"YP-CP3",
566d73a9b30SVitaly Kuznetsov 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
567d73a9b30SVitaly Kuznetsov 		US_FL_MAX_SECTORS_64 | US_FL_BULK_IGNORE_TAG),
568d73a9b30SVitaly Kuznetsov 
56929f86e66SDmitry Artamonow /* Added by Dmitry Artamonow <mad_soft@inbox.ru> */
57029f86e66SDmitry Artamonow UNUSUAL_DEV(  0x04e8, 0x5136, 0x0000, 0x9999,
57129f86e66SDmitry Artamonow 		"Samsung",
57229f86e66SDmitry Artamonow 		"YP-Z3",
57329f86e66SDmitry Artamonow 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
57429f86e66SDmitry Artamonow 		US_FL_MAX_SECTORS_64),
57529f86e66SDmitry Artamonow 
576f0183a33SFelipe Balbi /*
577f0183a33SFelipe Balbi  * Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>.
578ed3e8fcaSPhil Dibowitz  * Device uses standards-violating 32-byte Bulk Command Block Wrappers and
579ed3e8fcaSPhil Dibowitz  * reports itself as "Proprietary SCSI Bulk." Cf. device entry 0x084d:0x0011.
580ed3e8fcaSPhil Dibowitz  */
581ed3e8fcaSPhil Dibowitz UNUSUAL_DEV(  0x04fc, 0x80c2, 0x0100, 0x0100,
582ed3e8fcaSPhil Dibowitz 		"Kobian Mercury",
583ed3e8fcaSPhil Dibowitz 		"Binocam DCB-132",
5848fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
585ed3e8fcaSPhil Dibowitz 		US_FL_BULK32),
586ed3e8fcaSPhil Dibowitz 
5871da177e4SLinus Torvalds /* Reported by Bob Sass <rls@vectordb.com> -- only rev 1.33 tested */
5881da177e4SLinus Torvalds UNUSUAL_DEV(  0x050d, 0x0115, 0x0133, 0x0133,
5891da177e4SLinus Torvalds 		"Belkin",
5901da177e4SLinus Torvalds 		"USB SCSI Adaptor",
5918fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, usb_stor_euscsi_init,
5921da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
5931da177e4SLinus Torvalds 
594f0183a33SFelipe Balbi /*
595f0183a33SFelipe Balbi  * Iomega Clik! Drive
5961da177e4SLinus Torvalds  * Reported by David Chatenay <dchatenay@hotmail.com>
5971da177e4SLinus Torvalds  * The reason this is needed is not fully known.
5981da177e4SLinus Torvalds  */
5991da177e4SLinus Torvalds UNUSUAL_DEV(  0x0525, 0xa140, 0x0100, 0x0100,
6001da177e4SLinus Torvalds 		"Iomega",
6011da177e4SLinus Torvalds 		"USB Clik! 40",
6028fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_DEVICE, NULL,
6031da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
6041da177e4SLinus Torvalds 
60525ff1c31SAlan Stern /* Added by Alan Stern <stern@rowland.harvard.edu> */
60625ff1c31SAlan Stern COMPLIANT_DEV(0x0525, 0xa4a5, 0x0000, 0x9999,
60725ff1c31SAlan Stern 		"Linux",
60825ff1c31SAlan Stern 		"File-backed Storage Gadget",
6098fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
61025ff1c31SAlan Stern 		US_FL_CAPACITY_OK ),
61125ff1c31SAlan Stern 
612f0183a33SFelipe Balbi /*
613f0183a33SFelipe Balbi  * Yakumo Mega Image 37
6141da177e4SLinus Torvalds  * Submitted by Stephan Fuhrmann <atomenergie@t-online.de> */
6151da177e4SLinus Torvalds UNUSUAL_DEV(  0x052b, 0x1801, 0x0100, 0x0100,
6161da177e4SLinus Torvalds 		"Tekom Technologies, Inc",
6171da177e4SLinus Torvalds 		"300_CAMERA",
6188fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6191da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
6201da177e4SLinus Torvalds 
621f0183a33SFelipe Balbi /*
622f0183a33SFelipe Balbi  * Another Yakumo camera.
623f0183a33SFelipe Balbi  * Reported by Michele Alzetta <michele.alzetta@aliceposta.it>
624f0183a33SFelipe Balbi  */
6251da177e4SLinus Torvalds UNUSUAL_DEV(  0x052b, 0x1804, 0x0100, 0x0100,
6261da177e4SLinus Torvalds 		"Tekom Technologies, Inc",
6271da177e4SLinus Torvalds 		"300_CAMERA",
6288fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6291da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
6301da177e4SLinus Torvalds 
6311da177e4SLinus Torvalds /* Reported by Iacopo Spalletti <avvisi@spalletti.it> */
6321da177e4SLinus Torvalds UNUSUAL_DEV(  0x052b, 0x1807, 0x0100, 0x0100,
6331da177e4SLinus Torvalds 		"Tekom Technologies, Inc",
6341da177e4SLinus Torvalds 		"300_CAMERA",
6358fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6361da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
6371da177e4SLinus Torvalds 
638f0183a33SFelipe Balbi /*
639f0183a33SFelipe Balbi  * Yakumo Mega Image 47
640f0183a33SFelipe Balbi  * Reported by Bjoern Paetzel <kolrabi@kolrabi.de>
641f0183a33SFelipe Balbi  */
6421da177e4SLinus Torvalds UNUSUAL_DEV(  0x052b, 0x1905, 0x0100, 0x0100,
6431da177e4SLinus Torvalds 		"Tekom Technologies, Inc",
6441da177e4SLinus Torvalds 		"400_CAMERA",
6458fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6461da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
6471da177e4SLinus Torvalds 
648f0183a33SFelipe Balbi /*
649f0183a33SFelipe Balbi  * Reported by Paul Ortyl <ortylp@3miasto.net>
650f0183a33SFelipe Balbi  * Note that it's similar to the device above, only different prodID
651f0183a33SFelipe Balbi  */
6521da177e4SLinus Torvalds UNUSUAL_DEV(  0x052b, 0x1911, 0x0100, 0x0100,
6531da177e4SLinus Torvalds 		"Tekom Technologies, Inc",
6541da177e4SLinus Torvalds 		"400_CAMERA",
6558fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6561da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
6571da177e4SLinus Torvalds 
6581da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x0010, 0x0106, 0x0450,
6591da177e4SLinus Torvalds 		"Sony",
6601da177e4SLinus Torvalds 		"DSC-S30/S70/S75/505V/F505/F707/F717/P8",
6618fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_DEVICE, NULL,
6621da177e4SLinus Torvalds 		US_FL_SINGLE_LUN | US_FL_NOT_LOCKABLE | US_FL_NO_WP_DETECT ),
6631da177e4SLinus Torvalds 
664f0183a33SFelipe Balbi /*
665f0183a33SFelipe Balbi  * Submitted by Lars Jacob <jacob.lars@googlemail.com>
666f0183a33SFelipe Balbi  * This entry is needed because the device reports Sub=ff
667f0183a33SFelipe Balbi  */
6687e3bd120SLars Jacob UNUSUAL_DEV(  0x054c, 0x0010, 0x0500, 0x0610,
6691da177e4SLinus Torvalds 		"Sony",
6707e3bd120SLars Jacob 		"DSC-T1/T5/H5",
6718fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_DEVICE, NULL,
6721da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
6731da177e4SLinus Torvalds 
6741da177e4SLinus Torvalds 
6751da177e4SLinus Torvalds /* Reported by wim@geeks.nl */
6761da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x0025, 0x0100, 0x0100,
6771da177e4SLinus Torvalds 		"Sony",
6781da177e4SLinus Torvalds 		"Memorystick NW-MS7",
6798fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6801da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
6811da177e4SLinus Torvalds 
6821da177e4SLinus Torvalds /* Submitted by Olaf Hering, <olh@suse.de> SuSE Bugzilla #49049 */
68320b2e28fSLuiz Fernando N. Capitulino UNUSUAL_DEV(  0x054c, 0x002c, 0x0501, 0x2000,
6841da177e4SLinus Torvalds 		"Sony",
6851da177e4SLinus Torvalds 		"USB Floppy Drive",
6868fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6871da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
6881da177e4SLinus Torvalds 
6891da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x002d, 0x0100, 0x0100,
6901da177e4SLinus Torvalds 		"Sony",
6911da177e4SLinus Torvalds 		"Memorystick MSAC-US1",
6928fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6931da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
6941da177e4SLinus Torvalds 
6951da177e4SLinus Torvalds /* Submitted by Klaus Mueller <k.mueller@intershop.de> */
6961da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x002e, 0x0106, 0x0310,
6971da177e4SLinus Torvalds 		"Sony",
6981da177e4SLinus Torvalds 		"Handycam",
6998fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_DEVICE, NULL,
7001da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
7011da177e4SLinus Torvalds 
7021da177e4SLinus Torvalds /* Submitted by Rajesh Kumble Nayak <nayak@obs-nice.fr> */
7031da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x002e, 0x0500, 0x0500,
7041da177e4SLinus Torvalds 		"Sony",
7051da177e4SLinus Torvalds 		"Handycam HC-85",
7068fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_DEVICE, NULL,
7071da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
7081da177e4SLinus Torvalds 
7091da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x0032, 0x0000, 0x9999,
7101da177e4SLinus Torvalds 		"Sony",
7111da177e4SLinus Torvalds 		"Memorystick MSC-U01N",
7128fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7131da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
7141da177e4SLinus Torvalds 
7151da177e4SLinus Torvalds /* Submitted by Michal Mlotek <mlotek@foobar.pl> */
7161da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x0058, 0x0000, 0x9999,
7171da177e4SLinus Torvalds 		"Sony",
7181da177e4SLinus Torvalds 		"PEG N760c Memorystick",
7198fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7201da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
7211da177e4SLinus Torvalds 
7221da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x0069, 0x0000, 0x9999,
7231da177e4SLinus Torvalds 		"Sony",
7241da177e4SLinus Torvalds 		"Memorystick MSC-U03",
7258fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_CB, NULL,
7261da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
7271da177e4SLinus Torvalds 
7281da177e4SLinus Torvalds /* Submitted by Nathan Babb <nathan@lexi.com> */
7291da177e4SLinus Torvalds UNUSUAL_DEV(  0x054c, 0x006d, 0x0000, 0x9999,
7301da177e4SLinus Torvalds 		"Sony",
7311da177e4SLinus Torvalds 		"PEG Mass Storage",
7328fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7331da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
7341da177e4SLinus Torvalds 
735f9dc8f99SAlan Stern /* Submitted by Frank Engel <frankie@cse.unsw.edu.au> */
736f9dc8f99SAlan Stern UNUSUAL_DEV(  0x054c, 0x0099, 0x0000, 0x9999,
7371da177e4SLinus Torvalds 		"Sony",
7381da177e4SLinus Torvalds 		"PEG Mass Storage",
7398fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7401da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
7411da177e4SLinus Torvalds 
742f9dc8f99SAlan Stern /* Submitted by Mike Alborn <malborn@deandra.homeip.net> */
743f9dc8f99SAlan Stern UNUSUAL_DEV(  0x054c, 0x016a, 0x0000, 0x9999,
7441da177e4SLinus Torvalds 		"Sony",
7451da177e4SLinus Torvalds 		"PEG Mass Storage",
7468fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7471da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
7481da177e4SLinus Torvalds 
749e7a6121fSRen Bigcren /* Submitted by Ren Bigcren <bigcren.ren@sonymobile.com> */
750e7a6121fSRen Bigcren UNUSUAL_DEV(  0x054c, 0x02a5, 0x0100, 0x0100,
751e7a6121fSRen Bigcren 		"Sony Corp.",
752e7a6121fSRen Bigcren 		"MicroVault Flash Drive",
753e7a6121fSRen Bigcren 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
754e7a6121fSRen Bigcren 		US_FL_NO_READ_CAPACITY_16 ),
755e7a6121fSRen Bigcren 
756082fdd12Sjuergen.mell@t-online.de /* floppy reports multiple luns */
757082fdd12Sjuergen.mell@t-online.de UNUSUAL_DEV(  0x055d, 0x2020, 0x0000, 0x0210,
758082fdd12Sjuergen.mell@t-online.de 		"SAMSUNG",
759082fdd12Sjuergen.mell@t-online.de 		"SFD-321U [FW 0C]",
7608fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
761082fdd12Sjuergen.mell@t-online.de 		US_FL_SINGLE_LUN ),
762082fdd12Sjuergen.mell@t-online.de 
763fd4f3a93SPete Zaitcev /* We keep this entry to force the transport; firmware 3.00 and later is ok. */
7641da177e4SLinus Torvalds UNUSUAL_DEV(  0x057b, 0x0000, 0x0000, 0x0299,
7651da177e4SLinus Torvalds 		"Y-E Data",
7661da177e4SLinus Torvalds 		"Flashbuster-U",
7678fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE,  USB_PR_CB, NULL,
7681da177e4SLinus Torvalds 		US_FL_SINGLE_LUN),
7691da177e4SLinus Torvalds 
770f0183a33SFelipe Balbi /*
771f0183a33SFelipe Balbi  * Reported by Johann Cardon <johann.cardon@free.fr>
7721da177e4SLinus Torvalds  * This entry is needed only because the device reports
7731da177e4SLinus Torvalds  * bInterfaceClass = 0xff (vendor-specific)
7741da177e4SLinus Torvalds  */
7751da177e4SLinus Torvalds UNUSUAL_DEV(  0x057b, 0x0022, 0x0000, 0x9999,
7761da177e4SLinus Torvalds 		"Y-E Data",
7771da177e4SLinus Torvalds 		"Silicon Media R/W",
7788fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, 0),
7791da177e4SLinus Torvalds 
780f1e8de0dSAlan Stern /* Reported by RTE <raszilki@yandex.ru> */
781f1e8de0dSAlan Stern UNUSUAL_DEV(  0x058f, 0x6387, 0x0141, 0x0141,
782f1e8de0dSAlan Stern 		"JetFlash",
783f1e8de0dSAlan Stern 		"TS1GJF2A/120",
7848fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
785f1e8de0dSAlan Stern 		US_FL_MAX_SECTORS_64 ),
786f1e8de0dSAlan Stern 
7871da177e4SLinus Torvalds /* Fabrizio Fellini <fello@libero.it> */
7881da177e4SLinus Torvalds UNUSUAL_DEV(  0x0595, 0x4343, 0x0000, 0x2210,
7891da177e4SLinus Torvalds 		"Fujifilm",
7901da177e4SLinus Torvalds 		"Digital Camera EX-20 DSC",
7918fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_DEVICE, NULL, 0 ),
7921da177e4SLinus Torvalds 
793f0183a33SFelipe Balbi /*
794f0183a33SFelipe Balbi  * Reported by Andre Welter <a.r.welter@gmx.de>
795a462549bSAlan Stern  * This antique device predates the release of the Bulk-only Transport
796a462549bSAlan Stern  * spec, and if it gets a Get-Max-LUN then it requires the host to do a
797a462549bSAlan Stern  * Clear-Halt on the bulk endpoints.  The SINGLE_LUN flag will prevent
798a462549bSAlan Stern  * us from sending the request.
799a462549bSAlan Stern  */
800a462549bSAlan Stern UNUSUAL_DEV(  0x059b, 0x0001, 0x0100, 0x0100,
801a462549bSAlan Stern 		"Iomega",
802a462549bSAlan Stern 		"ZIP 100",
8038fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
804a462549bSAlan Stern 		US_FL_SINGLE_LUN ),
805a462549bSAlan Stern 
806c66f1c62SMark UNUSUAL_DEV(  0x059b, 0x0040, 0x0100, 0x0100,
807c66f1c62SMark 		"Iomega",
808c66f1c62SMark 		"Jaz USB Adapter",
809c66f1c62SMark 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
810c66f1c62SMark 		US_FL_SINGLE_LUN ),
811c66f1c62SMark 
812b97b196cSAlan Stern /* Reported by <Hendryk.Pfeiffer@gmx.de> */
813b97b196cSAlan Stern UNUSUAL_DEV(  0x059f, 0x0643, 0x0000, 0x0000,
814b97b196cSAlan Stern 		"LaCie",
815b97b196cSAlan Stern 		"DVD+-RW",
8168fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
817b97b196cSAlan Stern 		US_FL_GO_SLOW ),
818b97b196cSAlan Stern 
81917211509SHans de Goede /* Reported by Christian Schaller <cschalle@redhat.com> */
82017211509SHans de Goede UNUSUAL_DEV(  0x059f, 0x0651, 0x0000, 0x0000,
82117211509SHans de Goede 		"LaCie",
82217211509SHans de Goede 		"External HDD",
82317211509SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
82417211509SHans de Goede 		US_FL_NO_WP_DETECT ),
82517211509SHans de Goede 
826f0183a33SFelipe Balbi /*
827f0183a33SFelipe Balbi  * Submitted by Joel Bourquard <numlock@freesurf.ch>
8281da177e4SLinus Torvalds  * Some versions of this device need the SubClass and Protocol overrides
8291da177e4SLinus Torvalds  * while others don't.
8301da177e4SLinus Torvalds  */
8311da177e4SLinus Torvalds UNUSUAL_DEV(  0x05ab, 0x0060, 0x1104, 0x1110,
8321da177e4SLinus Torvalds 		"In-System",
8331da177e4SLinus Torvalds 		"PyroGate External CD-ROM Enclosure (FCD-523)",
8348fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, NULL,
8351da177e4SLinus Torvalds 		US_FL_NEED_OVERRIDE ),
8361da177e4SLinus Torvalds 
837f0183a33SFelipe Balbi /*
838f0183a33SFelipe Balbi  * Submitted by Sven Anderson <sven-linux@anderson.de>
83935f4a0c4SSven Anderson  * There are at least four ProductIDs used for iPods, so I added 0x1202 and
84035f4a0c4SSven Anderson  * 0x1204. They just need the US_FL_FIX_CAPACITY. As the bcdDevice appears
84135f4a0c4SSven Anderson  * to change with firmware updates, I changed the range to maximum for all
84235f4a0c4SSven Anderson  * iPod entries.
84335f4a0c4SSven Anderson  */
84435f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1202, 0x0000, 0x9999,
8451da177e4SLinus Torvalds 		"Apple",
8461da177e4SLinus Torvalds 		"iPod",
8478fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
8481da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY ),
8491da177e4SLinus Torvalds 
85035f4a0c4SSven Anderson /* Reported by Avi Kivity <avi@argo.co.il> */
85135f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1203, 0x0000, 0x9999,
85235f4a0c4SSven Anderson 		"Apple",
85335f4a0c4SSven Anderson 		"iPod",
8548fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
85535f4a0c4SSven Anderson 		US_FL_FIX_CAPACITY ),
85635f4a0c4SSven Anderson 
85735f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1204, 0x0000, 0x9999,
85835f4a0c4SSven Anderson 		"Apple",
85935f4a0c4SSven Anderson 		"iPod",
8608fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
861ad1428c9SPete Zaitcev 		US_FL_FIX_CAPACITY | US_FL_NOT_LOCKABLE ),
86235f4a0c4SSven Anderson 
86335f4a0c4SSven Anderson UNUSUAL_DEV( 0x05ac, 0x1205, 0x0000, 0x9999,
8641da177e4SLinus Torvalds 		"Apple",
8651da177e4SLinus Torvalds 		"iPod",
8668fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
8671da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY ),
8681da177e4SLinus Torvalds 
869880a9b5eSPhil Dibowitz /*
870880a9b5eSPhil Dibowitz  * Reported by Tyson Vinson <lornoss@gmail.com>
871880a9b5eSPhil Dibowitz  * This particular productId is the iPod Nano
872880a9b5eSPhil Dibowitz  */
873880a9b5eSPhil Dibowitz UNUSUAL_DEV( 0x05ac, 0x120a, 0x0000, 0x9999,
874880a9b5eSPhil Dibowitz 		"Apple",
875880a9b5eSPhil Dibowitz 		"iPod",
8768fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
877880a9b5eSPhil Dibowitz 		US_FL_FIX_CAPACITY ),
878880a9b5eSPhil Dibowitz 
879f0183a33SFelipe Balbi /*
880f0183a33SFelipe Balbi  * Reported by Dan Williams <dcbw@redhat.com>
881281b064fSDan Williams  * Option N.V. mobile broadband modems
882281b064fSDan Williams  * Ignore driver CD mode and force into modem mode by default.
883281b064fSDan Williams  */
884281b064fSDan Williams 
885281b064fSDan Williams /* Globetrotter HSDPA; mass storage shows up as Qualcomm for vendor */
886281b064fSDan Williams UNUSUAL_DEV(  0x05c6, 0x1000, 0x0000, 0x9999,
887281b064fSDan Williams 		"Option N.V.",
888281b064fSDan Williams 		"Mass Storage",
8898fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init,
890281b064fSDan Williams 		0),
891281b064fSDan Williams 
8921da177e4SLinus Torvalds /* Reported by Blake Matheny <bmatheny@purdue.edu> */
8931da177e4SLinus Torvalds UNUSUAL_DEV(  0x05dc, 0xb002, 0x0000, 0x0113,
8941da177e4SLinus Torvalds 		"Lexar",
8951da177e4SLinus Torvalds 		"USB CF Reader",
8968fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
8971da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
8981da177e4SLinus Torvalds 
899f0183a33SFelipe Balbi /*
900f0183a33SFelipe Balbi  * The following two entries are for a Genesys USB to IDE
9011da177e4SLinus Torvalds  * converter chip, but it changes its ProductId depending
9021da177e4SLinus Torvalds  * on whether or not a disk or an optical device is enclosed
9031da177e4SLinus Torvalds  * They were originally reported by Alexander Oltu
9041da177e4SLinus Torvalds  * <alexander@all-2.com> and Peter Marks <peter.marks@turner.com>
9051da177e4SLinus Torvalds  * respectively.
906883d989aSPhil Dibowitz  *
907883d989aSPhil Dibowitz  * US_FL_GO_SLOW and US_FL_MAX_SECTORS_64 added by Phil Dibowitz
908883d989aSPhil Dibowitz  * <phil@ipom.com> as these flags were made and hard-coded
909883d989aSPhil Dibowitz  * special-cases were pulled from scsiglue.c.
9101da177e4SLinus Torvalds  */
9111da177e4SLinus Torvalds UNUSUAL_DEV(  0x05e3, 0x0701, 0x0000, 0xffff,
9121da177e4SLinus Torvalds 		"Genesys Logic",
9131da177e4SLinus Torvalds 		"USB to IDE Optical",
9148fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9155126a267SAlan Stern 		US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 | US_FL_IGNORE_RESIDUE ),
9161da177e4SLinus Torvalds 
9171da177e4SLinus Torvalds UNUSUAL_DEV(  0x05e3, 0x0702, 0x0000, 0xffff,
9181da177e4SLinus Torvalds 		"Genesys Logic",
9191da177e4SLinus Torvalds 		"USB to IDE Disk",
9208fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9215126a267SAlan Stern 		US_FL_GO_SLOW | US_FL_MAX_SECTORS_64 | US_FL_IGNORE_RESIDUE ),
9221da177e4SLinus Torvalds 
923dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */
924dbe6e0c0SBen Efros UNUSUAL_DEV(  0x05e3, 0x0723, 0x9451, 0x9451,
925dbe6e0c0SBen Efros 		"Genesys Logic",
926dbe6e0c0SBen Efros 		"USB to SATA",
9278fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
928dbe6e0c0SBen Efros 		US_FL_SANE_SENSE ),
929dbe6e0c0SBen Efros 
930f0183a33SFelipe Balbi /*
931f0183a33SFelipe Balbi  * Reported by Hanno Boeck <hanno@gmx.de>
932f0183a33SFelipe Balbi  * Taken from the Lycoris Kernel
933f0183a33SFelipe Balbi  */
9341da177e4SLinus Torvalds UNUSUAL_DEV(  0x0636, 0x0003, 0x0000, 0x9999,
9351da177e4SLinus Torvalds 		"Vivitar",
9361da177e4SLinus Torvalds 		"Vivicam 35Xx",
9378fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, NULL,
9381da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
9391da177e4SLinus Torvalds 
9401da177e4SLinus Torvalds UNUSUAL_DEV(  0x0644, 0x0000, 0x0100, 0x0100,
9411da177e4SLinus Torvalds 		"TEAC",
9421da177e4SLinus Torvalds 		"Floppy Drive",
9438fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_CB, NULL, 0 ),
9441da177e4SLinus Torvalds 
9451da177e4SLinus Torvalds /* Reported by Darsen Lu <darsen@micro.ee.nthu.edu.tw> */
9461da177e4SLinus Torvalds UNUSUAL_DEV( 0x066f, 0x8000, 0x0001, 0x0001,
9471da177e4SLinus Torvalds 		"SigmaTel",
9481da177e4SLinus Torvalds 		"USBMSC Audio Player",
9498fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9501da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY ),
9511da177e4SLinus Torvalds 
952a0bb1081SAlan Stern /* Reported by Daniel Kukula <daniel.kuku@gmail.com> */
953a0bb1081SAlan Stern UNUSUAL_DEV( 0x067b, 0x1063, 0x0100, 0x0100,
954a0bb1081SAlan Stern 		"Prolific Technology, Inc.",
955a0bb1081SAlan Stern 		"Prolific Storage Gadget",
9568fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
957a0bb1081SAlan Stern 		US_FL_BAD_SENSE ),
958a0bb1081SAlan Stern 
959c15e3ca1SRogerio Brito /* Reported by Rogerio Brito <rbrito@ime.usp.br> */
960c15e3ca1SRogerio Brito UNUSUAL_DEV( 0x067b, 0x2317, 0x0001, 0x001,
961c15e3ca1SRogerio Brito 		"Prolific Technology, Inc.",
962c15e3ca1SRogerio Brito 		"Mass Storage Device",
9638fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
964c15e3ca1SRogerio Brito 		US_FL_NOT_LOCKABLE ),
965c15e3ca1SRogerio Brito 
9661da177e4SLinus Torvalds /* Reported by Richard -=[]=- <micro_flyer@hotmail.com> */
967f0183a33SFelipe Balbi /*
968f0183a33SFelipe Balbi  * Change to bcdDeviceMin (0x0100 to 0x0001) reported by
969f0183a33SFelipe Balbi  * Thomas Bartosik <tbartdev@gmx-topmail.de>
970f0183a33SFelipe Balbi  */
9718a0845c5SThomas Bartosik UNUSUAL_DEV( 0x067b, 0x2507, 0x0001, 0x0100,
9721da177e4SLinus Torvalds 		"Prolific Technology Inc.",
9731da177e4SLinus Torvalds 		"Mass Storage Device",
9748fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9751da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY | US_FL_GO_SLOW ),
9761da177e4SLinus Torvalds 
9771da177e4SLinus Torvalds /* Reported by Alex Butcher <alex.butcher@assursys.co.uk> */
978b1636399SOliver Neukum UNUSUAL_DEV( 0x067b, 0x3507, 0x0001, 0x0101,
9791da177e4SLinus Torvalds 		"Prolific Technology Inc.",
9801da177e4SLinus Torvalds 		"ATAPI-6 Bridge Controller",
9818fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9821da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY | US_FL_GO_SLOW ),
9831da177e4SLinus Torvalds 
9841da177e4SLinus Torvalds /* Submitted by Benny Sjostrand <benny@hostmobility.com> */
9851da177e4SLinus Torvalds UNUSUAL_DEV( 0x0686, 0x4011, 0x0001, 0x0001,
9861da177e4SLinus Torvalds 		"Minolta",
9871da177e4SLinus Torvalds 		"Dimage F300",
9888fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, NULL, 0 ),
9891da177e4SLinus Torvalds 
9901da177e4SLinus Torvalds /* Reported by Miguel A. Fosas <amn3s1a@ono.com> */
9911da177e4SLinus Torvalds UNUSUAL_DEV(  0x0686, 0x4017, 0x0001, 0x0001,
9921da177e4SLinus Torvalds 		"Minolta",
9931da177e4SLinus Torvalds 		"DIMAGE E223",
9948fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_DEVICE, NULL, 0 ),
9951da177e4SLinus Torvalds 
9961da177e4SLinus Torvalds UNUSUAL_DEV(  0x0693, 0x0005, 0x0100, 0x0100,
9971da177e4SLinus Torvalds 		"Hagiwara",
9981da177e4SLinus Torvalds 		"Flashgate",
9998fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_BULK, NULL, 0 ),
10001da177e4SLinus Torvalds 
1001754501b3SAlan Stern /* Reported by David Hamilton <niftimusmaximus@lycos.com> */
1002754501b3SAlan Stern UNUSUAL_DEV(  0x069b, 0x3004, 0x0001, 0x0001,
1003754501b3SAlan Stern 		"Thomson Multimedia Inc.",
1004754501b3SAlan Stern 		"RCA RD1080 MP3 Player",
10058fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1006754501b3SAlan Stern 		US_FL_FIX_CAPACITY ),
1007754501b3SAlan Stern 
1008a7e69ddbSMark UNUSUAL_DEV(  0x06ca, 0x2003, 0x0100, 0x0100,
1009a7e69ddbSMark 		"Newer Technology",
1010a7e69ddbSMark 		"uSCSI",
1011a7e69ddbSMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
1012a7e69ddbSMark 		US_FL_SCM_MULT_TARG ),
1013a7e69ddbSMark 
1014fe1926a0SAlan Stern /* Reported by Adrian Pilchowiec <adi1981@epf.pl> */
1015fe1926a0SAlan Stern UNUSUAL_DEV(  0x071b, 0x3203, 0x0000, 0x0000,
1016fe1926a0SAlan Stern 		"RockChip",
1017fe1926a0SAlan Stern 		"MP3",
10188fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
101900914025SHans de Goede 		US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64 |
102000914025SHans de Goede 		US_FL_NO_READ_CAPACITY_16),
1021fe1926a0SAlan Stern 
1022f0183a33SFelipe Balbi /*
1023f0183a33SFelipe Balbi  * Reported by Jean-Baptiste Onofre <jb@nanthrax.net>
102464915092SJean-Baptiste Onofre  * Support the following product :
102564915092SJean-Baptiste Onofre  *    "Dane-Elec MediaTouch"
102664915092SJean-Baptiste Onofre  */
102764915092SJean-Baptiste Onofre UNUSUAL_DEV(  0x071b, 0x32bb, 0x0000, 0x0000,
102864915092SJean-Baptiste Onofre 		"RockChip",
102964915092SJean-Baptiste Onofre 		"MTP",
10308fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
103164915092SJean-Baptiste Onofre 		US_FL_NO_WP_DETECT | US_FL_MAX_SECTORS_64),
103264915092SJean-Baptiste Onofre 
1033f0183a33SFelipe Balbi /*
1034f0183a33SFelipe Balbi  * Reported by Massimiliano Ghilardi <massimiliano.ghilardi@gmail.com>
1035c4766560SMassimiliano Ghilardi  * This USB MP3/AVI player device fails and disconnects if more than 128
1036c4766560SMassimiliano Ghilardi  * sectors (64kB) are read/written in a single command, and may be present
1037c4766560SMassimiliano Ghilardi  * at least in the following products:
1038c4766560SMassimiliano Ghilardi  *   "Magnex Digital Video Panel DVP 1800"
1039c4766560SMassimiliano Ghilardi  *   "MP4 AIGO 4GB SLOT SD"
1040c4766560SMassimiliano Ghilardi  *   "Teclast TL-C260 MP3"
1041c4766560SMassimiliano Ghilardi  *   "i.Meizu PMP MP3/MP4"
1042c4766560SMassimiliano Ghilardi  *   "Speed MV8 MP4 Audio Player"
1043c4766560SMassimiliano Ghilardi  */
1044c4766560SMassimiliano Ghilardi UNUSUAL_DEV(  0x071b, 0x3203, 0x0100, 0x0100,
1045c4766560SMassimiliano Ghilardi 		"RockChip",
1046c4766560SMassimiliano Ghilardi 		"ROCK MP3",
10478fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1048c4766560SMassimiliano Ghilardi 		US_FL_MAX_SECTORS_64),
1049c4766560SMassimiliano Ghilardi 
1050f430c405SOlivier Blondeau /* Reported by Olivier Blondeau <zeitoun@gmail.com> */
1051f430c405SOlivier Blondeau UNUSUAL_DEV(  0x0727, 0x0306, 0x0100, 0x0100,
1052f430c405SOlivier Blondeau 		"ATMEL",
1053f430c405SOlivier Blondeau 		"SND1 Storage",
10548fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1055f430c405SOlivier Blondeau 		US_FL_IGNORE_RESIDUE),
1056f430c405SOlivier Blondeau 
10571e7a5a84SPhil Dibowitz /* Submitted by Roman Hodek <roman@hodek.net> */
10581da177e4SLinus Torvalds UNUSUAL_DEV(  0x0781, 0x0001, 0x0200, 0x0200,
10591da177e4SLinus Torvalds 		"Sandisk",
10601da177e4SLinus Torvalds 		"ImageMate SDDR-05a",
10618fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
10621da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
10631da177e4SLinus Torvalds 
10641e7a5a84SPhil Dibowitz UNUSUAL_DEV(  0x0781, 0x0002, 0x0009, 0x0009,
10651e7a5a84SPhil Dibowitz 		"SanDisk Corporation",
10661e7a5a84SPhil Dibowitz 		"ImageMate CompactFlash USB",
10678fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
10681e7a5a84SPhil Dibowitz 		US_FL_FIX_CAPACITY ),
10691e7a5a84SPhil Dibowitz 
10701da177e4SLinus Torvalds UNUSUAL_DEV(  0x0781, 0x0100, 0x0100, 0x0100,
10711da177e4SLinus Torvalds 		"Sandisk",
10721da177e4SLinus Torvalds 		"ImageMate SDDR-12",
10738fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
10741da177e4SLinus Torvalds 		US_FL_SINGLE_LUN ),
10751da177e4SLinus Torvalds 
10761da177e4SLinus Torvalds /* Reported by Eero Volotinen <eero@ping-viini.org> */
1077e5278320SPhil Dibowitz UNUSUAL_DEV(  0x07ab, 0xfccd, 0x0000, 0x9999,
10781da177e4SLinus Torvalds 		"Freecom Technologies",
10791da177e4SLinus Torvalds 		"FHD-Classic",
10808fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
10811da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY),
10821da177e4SLinus Torvalds 
10831da177e4SLinus Torvalds UNUSUAL_DEV(  0x07af, 0x0004, 0x0100, 0x0133,
10841da177e4SLinus Torvalds 		"Microtech",
10851da177e4SLinus Torvalds 		"USB-SCSI-DB25",
10868fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
10871da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
10881da177e4SLinus Torvalds 
10891da177e4SLinus Torvalds UNUSUAL_DEV(  0x07af, 0x0005, 0x0100, 0x0100,
10901da177e4SLinus Torvalds 		"Microtech",
10911da177e4SLinus Torvalds 		"USB-SCSI-HD50",
10928fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
10931da177e4SLinus Torvalds 		US_FL_SCM_MULT_TARG ),
10941da177e4SLinus Torvalds 
10950ff71883SAlan Stern #ifdef NO_SDDR09
1096c20b15fdSAlan Stern UNUSUAL_DEV(  0x07af, 0x0006, 0x0100, 0x0100,
1097c20b15fdSAlan Stern 		"Microtech",
1098c20b15fdSAlan Stern 		"CameraMate",
10998fa7fd74SMichal Nazarewicz 		USB_SC_SCSI, USB_PR_CB, NULL,
1100c20b15fdSAlan Stern 		US_FL_SINGLE_LUN ),
11011da177e4SLinus Torvalds #endif
11021da177e4SLinus Torvalds 
1103f0183a33SFelipe Balbi /*
1104f0183a33SFelipe Balbi  * Datafab KECF-USB / Sagatek DCS-CF / Simpletech Flashlink UCF-100
11051da177e4SLinus Torvalds  * Only revision 1.13 tested (same for all of the above devices,
11061da177e4SLinus Torvalds  * based on the Datafab DF-UG-07 chip).  Needed for US_FL_FIX_INQUIRY.
11071da177e4SLinus Torvalds  * Submitted by Marek Michalkiewicz <marekm@amelek.gda.pl>.
11081da177e4SLinus Torvalds  * See also http://martin.wilck.bei.t-online.de/#kecf .
11091da177e4SLinus Torvalds  */
11101da177e4SLinus Torvalds UNUSUAL_DEV(  0x07c4, 0xa400, 0x0000, 0xffff,
11111da177e4SLinus Torvalds 		"Datafab",
11121da177e4SLinus Torvalds 		"KECF-USB",
11138fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1114049a6acbSNick Holloway 		US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY ),
11151da177e4SLinus Torvalds 
1116f0183a33SFelipe Balbi /*
1117f0183a33SFelipe Balbi  * Reported by Rauch Wolke <rauchwolke@gmx.net>
1118e4813eecSAlan Stern  * and augmented by binbin <binbinsh@gmail.com> (Bugzilla #12882)
1119e4813eecSAlan Stern  */
1120368ee646SAlan Stern UNUSUAL_DEV(  0x07c4, 0xa4a5, 0x0000, 0xffff,
1121368ee646SAlan Stern 		"Simple Tech/Datafab",
1122368ee646SAlan Stern 		"CF+SM Reader",
11238fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1124e4813eecSAlan Stern 		US_FL_IGNORE_RESIDUE | US_FL_MAX_SECTORS_64 ),
1125368ee646SAlan Stern 
1126f0183a33SFelipe Balbi /*
1127f0183a33SFelipe Balbi  * Casio QV 2x00/3x00/4000/8000 digital still cameras are not conformant
11281da177e4SLinus Torvalds  * to the USB storage specification in two ways:
11291da177e4SLinus Torvalds  * - They tell us they are using transport protocol CBI. In reality they
11301da177e4SLinus Torvalds  *   are using transport protocol CB.
11311da177e4SLinus Torvalds  * - They don't like the INQUIRY command. So we must handle this command
11321da177e4SLinus Torvalds  *   of the SCSI layer ourselves.
11331da177e4SLinus Torvalds  * - Some cameras with idProduct=0x1001 and bcdDevice=0x1000 have
11348fa7fd74SMichal Nazarewicz  *   bInterfaceProtocol=0x00 (USB_PR_CBI) while others have 0x01 (USB_PR_CB).
11358fa7fd74SMichal Nazarewicz  *   So don't remove the USB_PR_CB override!
11368fa7fd74SMichal Nazarewicz  * - Cameras with bcdDevice=0x9009 require the USB_SC_8070 override.
11371da177e4SLinus Torvalds  */
11381da177e4SLinus Torvalds UNUSUAL_DEV( 0x07cf, 0x1001, 0x1000, 0x9999,
11391da177e4SLinus Torvalds 		"Casio",
11401da177e4SLinus Torvalds 		"QV DigitalCamera",
11418fa7fd74SMichal Nazarewicz 		USB_SC_8070, USB_PR_CB, NULL,
11421da177e4SLinus Torvalds 		US_FL_NEED_OVERRIDE | US_FL_FIX_INQUIRY ),
11431da177e4SLinus Torvalds 
1144d7870af7SMichael Shigorin /* Submitted by Oleksandr Chumachenko <ledest@gmail.com> */
1145d7870af7SMichael Shigorin UNUSUAL_DEV( 0x07cf, 0x1167, 0x0100, 0x0100,
1146d7870af7SMichael Shigorin 		"Casio",
1147d7870af7SMichael Shigorin 		"EX-N1 DigitalCamera",
1148d7870af7SMichael Shigorin 		USB_SC_8070, USB_PR_DEVICE, NULL, 0),
1149d7870af7SMichael Shigorin 
11501da177e4SLinus Torvalds /* Submitted by Hartmut Wahl <hwahl@hwahl.de>*/
11511da177e4SLinus Torvalds UNUSUAL_DEV( 0x0839, 0x000a, 0x0001, 0x0001,
11521da177e4SLinus Torvalds 		"Samsung",
11531da177e4SLinus Torvalds 		"Digimax 410",
11548fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
11551da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY),
11561da177e4SLinus Torvalds 
11578010e06cSAlan Stern /* Reported by Luciano Rocha <luciano@eurotux.com> */
11588010e06cSAlan Stern UNUSUAL_DEV( 0x0840, 0x0082, 0x0001, 0x0001,
11598010e06cSAlan Stern 		"Argosy",
11608010e06cSAlan Stern 		"Storage",
11618fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
11628010e06cSAlan Stern 		US_FL_FIX_CAPACITY),
11638010e06cSAlan Stern 
1164e2673b28SNguyen Anh Quynh /* Reported and patched by Nguyen Anh Quynh <aquynh@gmail.com> */
1165e2673b28SNguyen Anh Quynh UNUSUAL_DEV( 0x0840, 0x0084, 0x0001, 0x0001,
1166e2673b28SNguyen Anh Quynh 		"Argosy",
1167e2673b28SNguyen Anh Quynh 		"Storage",
11688fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1169e2673b28SNguyen Anh Quynh 		US_FL_FIX_CAPACITY),
1170e2673b28SNguyen Anh Quynh 
1171aa23c8d6SPhil Dibowitz /* Reported by Martijn Hijdra <martijn.hijdra@gmail.com> */
1172aa23c8d6SPhil Dibowitz UNUSUAL_DEV( 0x0840, 0x0085, 0x0001, 0x0001,
1173aa23c8d6SPhil Dibowitz 		"Argosy",
1174aa23c8d6SPhil Dibowitz 		"Storage",
11758fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1176aa23c8d6SPhil Dibowitz 		US_FL_FIX_CAPACITY),
1177aa23c8d6SPhil Dibowitz 
117857cde01aSMark Knibbs /* Supplied with some Castlewood ORB removable drives */
117957cde01aSMark Knibbs UNUSUAL_DEV(  0x084b, 0xa001, 0x0000, 0x9999,
118057cde01aSMark Knibbs 		"Castlewood Systems",
118157cde01aSMark Knibbs 		"USB to SCSI cable",
118257cde01aSMark Knibbs 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
118357cde01aSMark Knibbs 		US_FL_SCM_MULT_TARG ),
118457cde01aSMark Knibbs 
1185f0183a33SFelipe Balbi /*
1186f0183a33SFelipe Balbi  * Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>.
11871da177e4SLinus Torvalds  * Flag will support Bulk devices which use a standards-violating 32-byte
11881da177e4SLinus Torvalds  * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with
11891da177e4SLinus Torvalds  * Grandtech GT892x chip, which request "Proprietary SCSI Bulk" support.
11901da177e4SLinus Torvalds  */
11911da177e4SLinus Torvalds 
11921da177e4SLinus Torvalds UNUSUAL_DEV(  0x084d, 0x0011, 0x0110, 0x0110,
11931da177e4SLinus Torvalds 		"Grandtech",
11941da177e4SLinus Torvalds 		"DC2MEGA",
11958fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
11961da177e4SLinus Torvalds 		US_FL_BULK32),
11971da177e4SLinus Torvalds 
1198f0183a33SFelipe Balbi /*
1199f0183a33SFelipe Balbi  * Reported by <ttkspam@free.fr>
120012f68c48SAlan Stern  * The device reports a vendor-specific device class, requiring an
120112f68c48SAlan Stern  * explicit vendor/product match.
120212f68c48SAlan Stern  */
120312f68c48SAlan Stern UNUSUAL_DEV(  0x0851, 0x1542, 0x0002, 0x0002,
120412f68c48SAlan Stern 		"MagicPixel",
120512f68c48SAlan Stern 		"FW_Omega2",
120612f68c48SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, 0),
120712f68c48SAlan Stern 
1208f0183a33SFelipe Balbi /*
1209f0183a33SFelipe Balbi  * Andrew Lunn <andrew@lunn.ch>
1210f7687217SAndrew Lunn  * PanDigital Digital Picture Frame. Does not like ALLOW_MEDIUM_REMOVAL
1211f7687217SAndrew Lunn  * on LUN 4.
1212f7687217SAndrew Lunn  * Note: Vend:Prod clash with "Ltd Maxell WS30 Slim Digital Camera"
1213f7687217SAndrew Lunn  */
1214f7687217SAndrew Lunn UNUSUAL_DEV(  0x0851, 0x1543, 0x0200, 0x0200,
1215f7687217SAndrew Lunn 		"PanDigital",
1216f7687217SAndrew Lunn 		"Photo Frame",
12178fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1218f7687217SAndrew Lunn 		US_FL_NOT_LOCKABLE),
1219f7687217SAndrew Lunn 
1220c80b4495SMark UNUSUAL_DEV(  0x085a, 0x0026, 0x0100, 0x0133,
1221c80b4495SMark 		"Xircom",
1222c80b4495SMark 		"PortGear USB-SCSI (Mac USB Dock)",
1223c80b4495SMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
1224c80b4495SMark 		US_FL_SCM_MULT_TARG ),
1225c80b4495SMark 
1226c80b4495SMark UNUSUAL_DEV(  0x085a, 0x0028, 0x0100, 0x0133,
1227c80b4495SMark 		"Xircom",
1228c80b4495SMark 		"PortGear USB to SCSI Converter",
1229c80b4495SMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
1230c80b4495SMark 		US_FL_SCM_MULT_TARG ),
1231c80b4495SMark 
1232ba3e93adSAlan Stern /* Submitted by Jan De Luyck <lkml@kcore.org> */
1233ba3e93adSAlan Stern UNUSUAL_DEV(  0x08bd, 0x1100, 0x0000, 0x0000,
1234ba3e93adSAlan Stern 		"CITIZEN",
1235ba3e93adSAlan Stern 		"X1DE-USB",
12368fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1237ba3e93adSAlan Stern 		US_FL_SINGLE_LUN),
12381da177e4SLinus Torvalds 
1239f0183a33SFelipe Balbi /*
1240f0183a33SFelipe Balbi  * Submitted by Dylan Taft <d13f00l@gmail.com>
1241a7e555b6SDylan Taft  * US_FL_IGNORE_RESIDUE Needed
1242a7e555b6SDylan Taft  */
1243a7e555b6SDylan Taft UNUSUAL_DEV(  0x08ca, 0x3103, 0x0100, 0x0100,
1244a7e555b6SDylan Taft 		"AIPTEK",
1245a7e555b6SDylan Taft 		"Aiptek USB Keychain MP3 Player",
12468fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1247a7e555b6SDylan Taft 		US_FL_IGNORE_RESIDUE),
1248a7e555b6SDylan Taft 
1249f0183a33SFelipe Balbi /*
1250f0183a33SFelipe Balbi  * Entry needed for flags. Moreover, all devices with this ID use
12511da177e4SLinus Torvalds  * bulk-only transport, but _some_ falsely report Control/Bulk instead.
12521da177e4SLinus Torvalds  * One example is "Trumpion Digital Research MYMP3".
12531da177e4SLinus Torvalds  * Submitted by Bjoern Brill <brill(at)fs.math.uni-frankfurt.de>
12541da177e4SLinus Torvalds  */
12551da177e4SLinus Torvalds UNUSUAL_DEV(  0x090a, 0x1001, 0x0100, 0x0100,
12561da177e4SLinus Torvalds 		"Trumpion",
12571da177e4SLinus Torvalds 		"t33520 USB Flash Card Controller",
12588fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_BULK, NULL,
12591da177e4SLinus Torvalds 		US_FL_NEED_OVERRIDE ),
12601da177e4SLinus Torvalds 
1261f0183a33SFelipe Balbi /*
1262f0183a33SFelipe Balbi  * Reported by Filippo Bardelli <filibard@libero.it>
12631724757eSPhil Dibowitz  * The device reports a subclass of RBC, which is wrong.
12641724757eSPhil Dibowitz  */
12651724757eSPhil Dibowitz UNUSUAL_DEV(  0x090a, 0x1050, 0x0100, 0x0100,
12661724757eSPhil Dibowitz 		"Trumpion Microelectronics, Inc.",
12671724757eSPhil Dibowitz 		"33520 USB Digital Voice Recorder",
12688fa7fd74SMichal Nazarewicz 		USB_SC_UFI, USB_PR_DEVICE, NULL,
12691724757eSPhil Dibowitz 		0),
12701724757eSPhil Dibowitz 
12711da177e4SLinus Torvalds /* Trumpion Microelectronics MP3 player (felipe_alfaro@linuxmail.org) */
12721da177e4SLinus Torvalds UNUSUAL_DEV( 0x090a, 0x1200, 0x0000, 0x9999,
12731da177e4SLinus Torvalds 		"Trumpion",
12741da177e4SLinus Torvalds 		"MP3 player",
12758fa7fd74SMichal Nazarewicz 		USB_SC_RBC, USB_PR_BULK, NULL,
12761da177e4SLinus Torvalds 		0 ),
12771da177e4SLinus Torvalds 
12781da177e4SLinus Torvalds /* aeb */
12791da177e4SLinus Torvalds UNUSUAL_DEV( 0x090c, 0x1132, 0x0000, 0xffff,
12801da177e4SLinus Torvalds 		"Feiya",
12811da177e4SLinus Torvalds 		"5-in-1 Card Reader",
12828fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
12831da177e4SLinus Torvalds 		US_FL_FIX_CAPACITY ),
12841da177e4SLinus Torvalds 
1285f0183a33SFelipe Balbi /*
12860a99cc4bSIcenowy Zheng  * Reported by Icenowy Zheng <icenowy@aosc.io>
12870a99cc4bSIcenowy Zheng  * The SMI SM3350 USB-UFS bridge controller will enter a wrong state
12880a99cc4bSIcenowy Zheng  * that do not process read/write command if a long sense is requested,
12890a99cc4bSIcenowy Zheng  * so force to use 18-byte sense.
12900a99cc4bSIcenowy Zheng  */
12910a99cc4bSIcenowy Zheng UNUSUAL_DEV(  0x090c, 0x3350, 0x0000, 0xffff,
12920a99cc4bSIcenowy Zheng 		"SMI",
12930a99cc4bSIcenowy Zheng 		"SM3350 UFS-to-USB-Mass-Storage bridge",
12940a99cc4bSIcenowy Zheng 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
12950a99cc4bSIcenowy Zheng 		US_FL_BAD_SENSE ),
12960a99cc4bSIcenowy Zheng 
12970a99cc4bSIcenowy Zheng /*
1298f0183a33SFelipe Balbi  * Reported by Paul Hartman <paul.hartman+linux@gmail.com>
129921c13a4fSAlan Stern  * This card reader returns "Illegal Request, Logical Block Address
130021c13a4fSAlan Stern  * Out of Range" for the first READ(10) after a new card is inserted.
130121c13a4fSAlan Stern  */
130221c13a4fSAlan Stern UNUSUAL_DEV(  0x090c, 0x6000, 0x0100, 0x0100,
130321c13a4fSAlan Stern 		"Feiya",
130421c13a4fSAlan Stern 		"SD/SDHC Card Reader",
130521c13a4fSAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
130621c13a4fSAlan Stern 		US_FL_INITIAL_READ10 ),
130721c13a4fSAlan Stern 
1308f0183a33SFelipe Balbi /*
1309772685c1STasos Sahanidis  * Patch by Tasos Sahanidis <tasos@tasossah.com>
1310772685c1STasos Sahanidis  * This flash drive always shows up with write protect enabled
1311772685c1STasos Sahanidis  * during the first mode sense.
1312772685c1STasos Sahanidis  */
1313772685c1STasos Sahanidis UNUSUAL_DEV(0x0951, 0x1697, 0x0100, 0x0100,
1314772685c1STasos Sahanidis 		"Kingston",
1315772685c1STasos Sahanidis 		"DT Ultimate G3",
1316772685c1STasos Sahanidis 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1317772685c1STasos Sahanidis 		US_FL_NO_WP_DETECT),
1318772685c1STasos Sahanidis 
1319772685c1STasos Sahanidis /*
1320f0183a33SFelipe Balbi  * This Pentax still camera is not conformant
13211da177e4SLinus Torvalds  * to the USB storage specification: -
13221da177e4SLinus Torvalds  * - It does not like the INQUIRY command. So we must handle this command
13231da177e4SLinus Torvalds  *   of the SCSI layer ourselves.
13241da177e4SLinus Torvalds  * Tested on Rev. 10.00 (0x1000)
13251da177e4SLinus Torvalds  * Submitted by James Courtier-Dutton <James@superbug.demon.co.uk>
13261da177e4SLinus Torvalds  */
13271da177e4SLinus Torvalds UNUSUAL_DEV( 0x0a17, 0x0004, 0x1000, 0x1000,
13281da177e4SLinus Torvalds 		"Pentax",
13291da177e4SLinus Torvalds 		"Optio 2/3/400",
13308fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
13311da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
13321da177e4SLinus Torvalds 
1333f0183a33SFelipe Balbi /*
1334f0183a33SFelipe Balbi  * These are virtual windows driver CDs, which the zd1211rw driver
1335f0183a33SFelipe Balbi  * automatically converts into WLAN devices.
1336f0183a33SFelipe Balbi  */
13373c332422SDaniel Drake UNUSUAL_DEV( 0x0ace, 0x2011, 0x0101, 0x0101,
13383c332422SDaniel Drake 		"ZyXEL",
13393c332422SDaniel Drake 		"G-220F USB-WLAN Install",
13408fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
13413c332422SDaniel Drake 		US_FL_IGNORE_DEVICE ),
13423c332422SDaniel Drake 
134364902cbaSMatthew Davidson UNUSUAL_DEV( 0x0ace, 0x20ff, 0x0101, 0x0101,
134464902cbaSMatthew Davidson 		"SiteCom",
134564902cbaSMatthew Davidson 		"WL-117 USB-WLAN Install",
13468fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
134764902cbaSMatthew Davidson 		US_FL_IGNORE_DEVICE ),
134864902cbaSMatthew Davidson 
1349f0183a33SFelipe Balbi /*
1350f0183a33SFelipe Balbi  * Reported by Dan Williams <dcbw@redhat.com>
1351281b064fSDan Williams  * Option N.V. mobile broadband modems
1352281b064fSDan Williams  * Ignore driver CD mode and force into modem mode by default.
1353281b064fSDan Williams  */
1354281b064fSDan Williams 
1355281b064fSDan Williams /* iCON 225 */
1356281b064fSDan Williams UNUSUAL_DEV(  0x0af0, 0x6971, 0x0000, 0x9999,
1357281b064fSDan Williams 		"Option N.V.",
1358281b064fSDan Williams 		"Mass Storage",
13598fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init,
1360281b064fSDan Williams 		0),
1361281b064fSDan Williams 
1362f0183a33SFelipe Balbi /*
1363f0183a33SFelipe Balbi  * Reported by F. Aben <f.aben@option.com>
1364e7c6f80fSFilip Aben  * This device (wrongly) has a vendor-specific device descriptor.
1365e7c6f80fSFilip Aben  * The entry is needed so usb-storage can bind to it's mass-storage
1366f0183a33SFelipe Balbi  * interface as an interface driver
1367f0183a33SFelipe Balbi  */
1368e7c6f80fSFilip Aben UNUSUAL_DEV( 0x0af0, 0x7401, 0x0000, 0x0000,
1369e7c6f80fSFilip Aben 		"Option",
1370e7c6f80fSFilip Aben 		"GI 0401 SD-Card",
13718fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1372e7c6f80fSFilip Aben 		0 ),
1373e7c6f80fSFilip Aben 
1374f0183a33SFelipe Balbi /*
1375f0183a33SFelipe Balbi  * Reported by Jan Dumon <j.dumon@option.com>
137646216e4fSJan Dumon  * These devices (wrongly) have a vendor-specific device descriptor.
137746216e4fSJan Dumon  * These entries are needed so usb-storage can bind to their mass-storage
1378f0183a33SFelipe Balbi  * interface as an interface driver
1379f0183a33SFelipe Balbi  */
1380c497e715SJan Dumon UNUSUAL_DEV( 0x0af0, 0x7501, 0x0000, 0x0000,
1381c497e715SJan Dumon 		"Option",
1382c497e715SJan Dumon 		"GI 0431 SD-Card",
13838fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1384c497e715SJan Dumon 		0 ),
1385c497e715SJan Dumon 
138646216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7701, 0x0000, 0x0000,
138746216e4fSJan Dumon 		"Option",
138846216e4fSJan Dumon 		"GI 0451 SD-Card",
13898fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
139046216e4fSJan Dumon 		0 ),
139146216e4fSJan Dumon 
139246216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7706, 0x0000, 0x0000,
139346216e4fSJan Dumon 		"Option",
139446216e4fSJan Dumon 		"GI 0451 SD-Card",
13958fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
139646216e4fSJan Dumon 		0 ),
139746216e4fSJan Dumon 
139846216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7901, 0x0000, 0x0000,
139946216e4fSJan Dumon 		"Option",
140046216e4fSJan Dumon 		"GI 0452 SD-Card",
14018fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
140246216e4fSJan Dumon 		0 ),
140346216e4fSJan Dumon 
140446216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7A01, 0x0000, 0x0000,
140546216e4fSJan Dumon 		"Option",
140646216e4fSJan Dumon 		"GI 0461 SD-Card",
14078fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
140846216e4fSJan Dumon 		0 ),
140946216e4fSJan Dumon 
141046216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x7A05, 0x0000, 0x0000,
141146216e4fSJan Dumon 		"Option",
141246216e4fSJan Dumon 		"GI 0461 SD-Card",
14138fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
141446216e4fSJan Dumon 		0 ),
141546216e4fSJan Dumon 
141646216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x8300, 0x0000, 0x0000,
141746216e4fSJan Dumon 		"Option",
141846216e4fSJan Dumon 		"GI 033x SD-Card",
14198fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
142046216e4fSJan Dumon 		0 ),
142146216e4fSJan Dumon 
142246216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x8302, 0x0000, 0x0000,
142346216e4fSJan Dumon 		"Option",
142446216e4fSJan Dumon 		"GI 033x SD-Card",
14258fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
142646216e4fSJan Dumon 		0 ),
142746216e4fSJan Dumon 
142846216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0x8304, 0x0000, 0x0000,
142946216e4fSJan Dumon 		"Option",
143046216e4fSJan Dumon 		"GI 033x SD-Card",
14318fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
143246216e4fSJan Dumon 		0 ),
143346216e4fSJan Dumon 
143446216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xc100, 0x0000, 0x0000,
143546216e4fSJan Dumon 		"Option",
143646216e4fSJan Dumon 		"GI 070x SD-Card",
14378fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
143846216e4fSJan Dumon 		0 ),
143946216e4fSJan Dumon 
144046216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd057, 0x0000, 0x0000,
144146216e4fSJan Dumon 		"Option",
144246216e4fSJan Dumon 		"GI 1505 SD-Card",
14438fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
144446216e4fSJan Dumon 		0 ),
144546216e4fSJan Dumon 
144646216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd058, 0x0000, 0x0000,
144746216e4fSJan Dumon 		"Option",
144846216e4fSJan Dumon 		"GI 1509 SD-Card",
14498fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
145046216e4fSJan Dumon 		0 ),
145146216e4fSJan Dumon 
145246216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd157, 0x0000, 0x0000,
145346216e4fSJan Dumon 		"Option",
145446216e4fSJan Dumon 		"GI 1515 SD-Card",
14558fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
145646216e4fSJan Dumon 		0 ),
145746216e4fSJan Dumon 
145846216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd257, 0x0000, 0x0000,
145946216e4fSJan Dumon 		"Option",
146046216e4fSJan Dumon 		"GI 1215 SD-Card",
14618fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
146246216e4fSJan Dumon 		0 ),
146346216e4fSJan Dumon 
146446216e4fSJan Dumon UNUSUAL_DEV( 0x0af0, 0xd357, 0x0000, 0x0000,
146546216e4fSJan Dumon 		"Option",
146646216e4fSJan Dumon 		"GI 1505 SD-Card",
14678fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
146846216e4fSJan Dumon 		0 ),
146946216e4fSJan Dumon 
14703bd4dc9bSNamjae Jeon /* Reported by Namjae Jeon <namjae.jeon@samsung.com> */
14713bd4dc9bSNamjae Jeon UNUSUAL_DEV(0x0bc2, 0x2300, 0x0000, 0x9999,
14723bd4dc9bSNamjae Jeon 		"Seagate",
14733bd4dc9bSNamjae Jeon 		"Portable HDD",
14743bd4dc9bSNamjae Jeon 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_WRITE_CACHE),
14753bd4dc9bSNamjae Jeon 
1476dbe6e0c0SBen Efros /* Reported by Ben Efros <ben@pc-doctor.com> */
1477dbe6e0c0SBen Efros UNUSUAL_DEV( 0x0bc2, 0x3010, 0x0000, 0x0000,
1478dbe6e0c0SBen Efros 		"Seagate",
1479dbe6e0c0SBen Efros 		"FreeAgent Pro",
14808fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1481dbe6e0c0SBen Efros 		US_FL_SANE_SENSE ),
1482dbe6e0c0SBen Efros 
1483113f6eb6SAlan Stern /* Reported by Kris Lindgren <kris.lindgren@gmail.com> */
1484113f6eb6SAlan Stern UNUSUAL_DEV( 0x0bc2, 0x3332, 0x0000, 0x9999,
1485113f6eb6SAlan Stern 		"Seagate",
1486113f6eb6SAlan Stern 		"External",
1487113f6eb6SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1488113f6eb6SAlan Stern 		US_FL_NO_WP_DETECT ),
1489113f6eb6SAlan Stern 
1490dbe6e0c0SBen Efros UNUSUAL_DEV(  0x0d49, 0x7310, 0x0000, 0x9999,
1491dbe6e0c0SBen Efros 		"Maxtor",
1492dbe6e0c0SBen Efros 		"USB to SATA",
14938fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1494dbe6e0c0SBen Efros 		US_FL_SANE_SENSE),
1495dbe6e0c0SBen Efros 
1496f9dc8f99SAlan Stern /*
1497f9dc8f99SAlan Stern  * Pete Zaitcev <zaitcev@yahoo.com>, bz#164688.
1498f9dc8f99SAlan Stern  * The device blatantly ignores LUN and returns 1 in GetMaxLUN.
1499f9dc8f99SAlan Stern  */
1500f9dc8f99SAlan Stern UNUSUAL_DEV( 0x0c45, 0x1060, 0x0100, 0x0100,
1501f9dc8f99SAlan Stern 		"Unknown",
1502f9dc8f99SAlan Stern 		"Unknown",
15038fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1504f9dc8f99SAlan Stern 		US_FL_SINGLE_LUN ),
1505f9dc8f99SAlan Stern 
15061da177e4SLinus Torvalds /* Submitted by Joris Struyve <joris@struyve.be> */
15071da177e4SLinus Torvalds UNUSUAL_DEV( 0x0d96, 0x410a, 0x0001, 0xffff,
15081da177e4SLinus Torvalds 		"Medion",
15091da177e4SLinus Torvalds 		"MD 7425",
15108fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15111da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY),
15121da177e4SLinus Torvalds 
15131da177e4SLinus Torvalds /*
15141da177e4SLinus Torvalds  * Entry for Jenoptik JD 5200z3
15151da177e4SLinus Torvalds  *
15161da177e4SLinus Torvalds  * email: car.busse@gmx.de
15171da177e4SLinus Torvalds  */
15181da177e4SLinus Torvalds UNUSUAL_DEV(  0x0d96, 0x5200, 0x0001, 0x0200,
15191da177e4SLinus Torvalds 		"Jenoptik",
15201da177e4SLinus Torvalds 		"JD 5200 z3",
15218fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_FIX_INQUIRY),
15221da177e4SLinus Torvalds 
15233b438e30SSergey Ovcharenko /* Reported by  Jason Johnston <killean@shaw.ca> */
15243b438e30SSergey Ovcharenko UNUSUAL_DEV(  0x0dc4, 0x0073, 0x0000, 0x0000,
15253b438e30SSergey Ovcharenko 		"Macpower Technology Co.LTD.",
15263b438e30SSergey Ovcharenko 		"USB 2.0 3.5\" DEVICE",
15278fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15283b438e30SSergey Ovcharenko 		US_FL_FIX_CAPACITY),
15293b438e30SSergey Ovcharenko 
1530f0183a33SFelipe Balbi /*
1531f0183a33SFelipe Balbi  * Reported by Lubomir Blaha <tritol@trilogic.cz>
15321da177e4SLinus Torvalds  * I _REALLY_ don't know what 3rd, 4th number and all defines mean, but this
15331da177e4SLinus Torvalds  * works for me. Can anybody correct these values? (I able to test corrected
15341da177e4SLinus Torvalds  * version.)
15351da177e4SLinus Torvalds  */
15361da177e4SLinus Torvalds UNUSUAL_DEV( 0x0dd8, 0x1060, 0x0000, 0xffff,
15371da177e4SLinus Torvalds 		"Netac",
15381da177e4SLinus Torvalds 		"USB-CF-Card",
15398fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15401da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
15411da177e4SLinus Torvalds 
1542f0183a33SFelipe Balbi /*
1543f0183a33SFelipe Balbi  * Reported by Edward Chapman (taken from linux-usb mailing list)
1544f0183a33SFelipe Balbi  * Netac OnlyDisk Mini U2CV2 512MB USB 2.0 Flash Drive
1545f0183a33SFelipe Balbi  */
154667fa1062SBen Collins UNUSUAL_DEV( 0x0dd8, 0xd202, 0x0000, 0x9999,
154767fa1062SBen Collins 		"Netac",
154867fa1062SBen Collins 		"USB Flash Disk",
15498fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
155067fa1062SBen Collins 		US_FL_IGNORE_RESIDUE ),
155167fa1062SBen Collins 
155267fa1062SBen Collins 
1553f0183a33SFelipe Balbi /*
1554f0183a33SFelipe Balbi  * Patch by Stephan Walter <stephan.walter@epfl.ch>
1555f0183a33SFelipe Balbi  * I don't know why, but it works...
1556f0183a33SFelipe Balbi  */
15571da177e4SLinus Torvalds UNUSUAL_DEV( 0x0dda, 0x0001, 0x0012, 0x0012,
15581da177e4SLinus Torvalds 		"WINWARD",
15591da177e4SLinus Torvalds 		"Music Disk",
15608fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15611da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
15621da177e4SLinus Torvalds 
15631da177e4SLinus Torvalds /* Reported by Ian McConnell <ian at emit.demon.co.uk> */
15641da177e4SLinus Torvalds UNUSUAL_DEV(  0x0dda, 0x0301, 0x0012, 0x0012,
15651da177e4SLinus Torvalds 		"PNP_MP3",
15661da177e4SLinus Torvalds 		"PNP_MP3 PLAYER",
15678fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15681da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
15691da177e4SLinus Torvalds 
1570982db2a1SAlan Stern /* Reported by Jim McCloskey <mcclosk@ucsc.edu> */
1571982db2a1SAlan Stern UNUSUAL_DEV( 0x0e21, 0x0520, 0x0100, 0x0100,
1572982db2a1SAlan Stern 		"Cowon Systems",
1573982db2a1SAlan Stern 		"iAUDIO M5",
15748fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_BULK, NULL,
1575bc724b98SPhil Dibowitz 		US_FL_NEED_OVERRIDE ),
1576982db2a1SAlan Stern 
15771da177e4SLinus Torvalds /* Submitted by Antoine Mairesse <antoine.mairesse@free.fr> */
15781da177e4SLinus Torvalds UNUSUAL_DEV( 0x0ed1, 0x6660, 0x0100, 0x0300,
15791da177e4SLinus Torvalds 		"USB",
15801da177e4SLinus Torvalds 		"Solid state disk",
15818fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15821da177e4SLinus Torvalds 		US_FL_FIX_INQUIRY ),
15831da177e4SLinus Torvalds 
1584f0183a33SFelipe Balbi /*
1585f0183a33SFelipe Balbi  * Submitted by Daniel Drake <dsd@gentoo.org>
1586f0183a33SFelipe Balbi  * Reported by dayul on the Gentoo Forums
1587f0183a33SFelipe Balbi  */
15881da177e4SLinus Torvalds UNUSUAL_DEV(  0x0ea0, 0x2168, 0x0110, 0x0110,
15891da177e4SLinus Torvalds 		"Ours Technology",
15901da177e4SLinus Torvalds 		"Flash Disk",
15918fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15921da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
15931da177e4SLinus Torvalds 
15941da177e4SLinus Torvalds /* Reported by Rastislav Stanik <rs_kernel@yahoo.com> */
15951da177e4SLinus Torvalds UNUSUAL_DEV(  0x0ea0, 0x6828, 0x0110, 0x0110,
15961da177e4SLinus Torvalds 		"USB",
15971da177e4SLinus Torvalds 		"Flash Disk",
15988fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
15991da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
16001da177e4SLinus Torvalds 
1601f0183a33SFelipe Balbi /*
1602f0183a33SFelipe Balbi  * Reported by Benjamin Schiller <sbenni@gmx.de>
1603f0183a33SFelipe Balbi  * It is also sold by Easylite as DJ 20
1604f0183a33SFelipe Balbi  */
1605883d989aSPhil Dibowitz UNUSUAL_DEV(  0x0ed1, 0x7636, 0x0103, 0x0103,
1606883d989aSPhil Dibowitz 		"Typhoon",
1607883d989aSPhil Dibowitz 		"My DJ 1820",
16088fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1609883d989aSPhil Dibowitz 		US_FL_IGNORE_RESIDUE | US_FL_GO_SLOW | US_FL_MAX_SECTORS_64),
1610883d989aSPhil Dibowitz 
1611f0183a33SFelipe Balbi /*
1612f0183a33SFelipe Balbi  * Patch by Leonid Petrov mail at lpetrov.net
16134e58407dSRobert Spitzenpfeil  * Reported by Robert Spitzenpfeil <robert@spitzenpfeil.org>
16144e58407dSRobert Spitzenpfeil  * http://www.qbik.ch/usb/devices/showdev.php?id=1705
16154e58407dSRobert Spitzenpfeil  * Updated to 103 device by MJ Ray mjr at phonecoop.coop
16164e58407dSRobert Spitzenpfeil  */
16174e58407dSRobert Spitzenpfeil UNUSUAL_DEV(  0x0f19, 0x0103, 0x0100, 0x0100,
16184e58407dSRobert Spitzenpfeil 		"Oracom Co., Ltd",
16194e58407dSRobert Spitzenpfeil 		"ORC-200M",
16208fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
16214e58407dSRobert Spitzenpfeil 		US_FL_IGNORE_RESIDUE ),
16224e58407dSRobert Spitzenpfeil 
1623f0183a33SFelipe Balbi /*
1624f0183a33SFelipe Balbi  * David Kuehling <dvdkhlng@gmx.de>:
1625b41ee5d6SDavid Kuehling  * for MP3-Player AVOX WSX-300ER (bought in Japan).  Reports lots of SCSI
1626b41ee5d6SDavid Kuehling  * errors when trying to write.
1627b41ee5d6SDavid Kuehling  */
1628b41ee5d6SDavid Kuehling UNUSUAL_DEV(  0x0f19, 0x0105, 0x0100, 0x0100,
1629b41ee5d6SDavid Kuehling 		"C-MEX",
1630b41ee5d6SDavid Kuehling 		"A-VOX",
16318fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1632b41ee5d6SDavid Kuehling 		US_FL_IGNORE_RESIDUE ),
1633b41ee5d6SDavid Kuehling 
1634c25f6b15SNick Holloway /* Submitted by Nick Holloway */
1635c25f6b15SNick Holloway UNUSUAL_DEV( 0x0f88, 0x042e, 0x0100, 0x0100,
1636c25f6b15SNick Holloway 		"VTech",
1637c25f6b15SNick Holloway 		"Kidizoom",
1638c25f6b15SNick Holloway 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1639c25f6b15SNick Holloway 		US_FL_FIX_CAPACITY ),
1640c25f6b15SNick Holloway 
1641c5637e51SAlan Stern /* Reported by Moritz Moeller-Herrmann <moritz-kernel@moeller-herrmann.de> */
1642c5637e51SAlan Stern UNUSUAL_DEV(  0x0fca, 0x8004, 0x0201, 0x0201,
1643c5637e51SAlan Stern 		"Research In Motion",
1644c5637e51SAlan Stern 		"BlackBerry Bold 9000",
1645c5637e51SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1646c5637e51SAlan Stern 		US_FL_MAX_SECTORS_64 ),
1647c5637e51SAlan Stern 
16481da177e4SLinus Torvalds /* Reported by Michael Stattmann <michael@stattmann.com> */
16491da177e4SLinus Torvalds UNUSUAL_DEV(  0x0fce, 0xd008, 0x0000, 0x0000,
16501da177e4SLinus Torvalds 		"Sony Ericsson",
16511da177e4SLinus Torvalds 		"V800-Vodafone 802",
16528fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
16531da177e4SLinus Torvalds 		US_FL_NO_WP_DETECT ),
16541da177e4SLinus Torvalds 
1655a83775b1SPhil Dibowitz /* Reported by The Solutor <thesolutor@gmail.com> */
1656a83775b1SPhil Dibowitz UNUSUAL_DEV(  0x0fce, 0xd0e1, 0x0000, 0x0000,
1657a83775b1SPhil Dibowitz 		"Sony Ericsson",
1658a83775b1SPhil Dibowitz 		"MD400",
16598fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1660a83775b1SPhil Dibowitz 		US_FL_IGNORE_DEVICE),
1661a83775b1SPhil Dibowitz 
1662f0183a33SFelipe Balbi /*
1663f0183a33SFelipe Balbi  * Reported by Jan Mate <mate@fiit.stuba.sk>
1664f0183a33SFelipe Balbi  * and by Soeren Sonnenburg <kernel@nn7.de>
1665f0183a33SFelipe Balbi  */
166639c2f3acSPhil Dibowitz UNUSUAL_DEV(  0x0fce, 0xe030, 0x0000, 0x0000,
166739c2f3acSPhil Dibowitz 		"Sony Ericsson",
166839c2f3acSPhil Dibowitz 		"P990i",
16698fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1670b544d749SAlan Stern 		US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ),
167139c2f3acSPhil Dibowitz 
1672c9c770edSPhil Dibowitz /* Reported by Emmanuel Vasilakis <evas@forthnet.gr> */
1673c9c770edSPhil Dibowitz UNUSUAL_DEV(  0x0fce, 0xe031, 0x0000, 0x0000,
1674c9c770edSPhil Dibowitz 		"Sony Ericsson",
1675c9c770edSPhil Dibowitz 		"M600i",
16768fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1677c5f23b0eSPhil Dibowitz 		US_FL_IGNORE_RESIDUE | US_FL_FIX_CAPACITY ),
1678c9c770edSPhil Dibowitz 
1679f9dc8f99SAlan Stern /* Reported by Ricardo Barberis <ricardo@dattatec.com> */
1680f9dc8f99SAlan Stern UNUSUAL_DEV(  0x0fce, 0xe092, 0x0000, 0x0000,
1681f9dc8f99SAlan Stern 		"Sony Ericsson",
1682f9dc8f99SAlan Stern 		"P1i",
16838fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1684f9dc8f99SAlan Stern 		US_FL_IGNORE_RESIDUE ),
1685f9dc8f99SAlan Stern 
1686f0183a33SFelipe Balbi /*
1687f0183a33SFelipe Balbi  * Reported by Kevin Cernekee <kpc-usbdev@gelato.uiuc.edu>
16881da177e4SLinus Torvalds  * Tested on hardware version 1.10.
16891da177e4SLinus Torvalds  * Entry is needed only for the initializer function override.
169051b5bce8SPhil Dibowitz  * Devices with bcd > 110 seem to not need it while those
169151b5bce8SPhil Dibowitz  * with bcd < 110 appear to need it.
16921da177e4SLinus Torvalds  */
169351b5bce8SPhil Dibowitz UNUSUAL_DEV(  0x1019, 0x0c55, 0x0000, 0x0110,
16941da177e4SLinus Torvalds 		"Desknote",
16951da177e4SLinus Torvalds 		"UCR-61S2B",
16968fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_ucr61s2b_init,
16971da177e4SLinus Torvalds 		0 ),
16981da177e4SLinus Torvalds 
1699dbe6e0c0SBen Efros UNUSUAL_DEV(  0x1058, 0x0704, 0x0000, 0x9999,
1700dbe6e0c0SBen Efros 		"Western Digital",
1701dbe6e0c0SBen Efros 		"External HDD",
17028fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1703dbe6e0c0SBen Efros 		US_FL_SANE_SENSE),
1704dbe6e0c0SBen Efros 
17053bd4dc9bSNamjae Jeon /* Reported by Namjae Jeon <namjae.jeon@samsung.com> */
17063bd4dc9bSNamjae Jeon UNUSUAL_DEV(0x1058, 0x070a, 0x0000, 0x9999,
17073bd4dc9bSNamjae Jeon 		"Western Digital",
17083bd4dc9bSNamjae Jeon 		"My Passport HDD",
17093bd4dc9bSNamjae Jeon 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_WRITE_CACHE),
17103bd4dc9bSNamjae Jeon 
1711f0183a33SFelipe Balbi /*
1712f0183a33SFelipe Balbi  * Reported by Fabio Venturi <f.venturi@tdnet.it>
1713274399d1SAlan Stern  * The device reports a vendor-specific bDeviceClass.
1714274399d1SAlan Stern  */
1715274399d1SAlan Stern UNUSUAL_DEV(  0x10d6, 0x2200, 0x0100, 0x0100,
1716274399d1SAlan Stern 		"Actions Semiconductor",
1717274399d1SAlan Stern 		"Mtp device",
17188fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1719274399d1SAlan Stern 		0),
1720274399d1SAlan Stern 
1721f0183a33SFelipe Balbi /*
1722f0183a33SFelipe Balbi  * Reported by Pascal Terjan <pterjan@mandriva.com>
1723c00deaa5SPascal Terjan  * Ignore driver CD mode and force into modem mode by default.
1724c00deaa5SPascal Terjan  */
1725c00deaa5SPascal Terjan UNUSUAL_DEV(  0x1186, 0x3e04, 0x0000, 0x0000,
1726c00deaa5SPascal Terjan            "D-Link",
1727c00deaa5SPascal Terjan            "USB Mass Storage",
17288fa7fd74SMichal Nazarewicz            USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init, US_FL_IGNORE_DEVICE),
1729c00deaa5SPascal Terjan 
1730f0183a33SFelipe Balbi /*
1731f0183a33SFelipe Balbi  * Reported by Kevin Lloyd <linux@sierrawireless.com>
1732112225b1SKevin Lloyd  * Entry is needed for the initializer function override,
1733112225b1SKevin Lloyd  * which instructs the device to load as a modem
1734112225b1SKevin Lloyd  * device.
1735112225b1SKevin Lloyd  */
1736112225b1SKevin Lloyd UNUSUAL_DEV(  0x1199, 0x0fff, 0x0000, 0x9999,
1737112225b1SKevin Lloyd 		"Sierra Wireless",
1738112225b1SKevin Lloyd 		"USB MMC Storage",
17398fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, sierra_ms_init,
174032fe5e39SKevin Lloyd 		0),
1741112225b1SKevin Lloyd 
1742f0183a33SFelipe Balbi /*
1743f0183a33SFelipe Balbi  * Reported by Jaco Kroon <jaco@kroon.co.za>
174449314378SJaco Kroon  * The usb-storage module found on the Digitech GNX4 (and supposedly other
174549314378SJaco Kroon  * devices) misbehaves and causes a bunch of invalid I/O errors.
174649314378SJaco Kroon  */
174749314378SJaco Kroon UNUSUAL_DEV(  0x1210, 0x0003, 0x0100, 0x0100,
174849314378SJaco Kroon 		"Digitech HMG",
174949314378SJaco Kroon 		"DigiTech Mass Storage",
17508fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
175149314378SJaco Kroon 		US_FL_IGNORE_RESIDUE ),
175249314378SJaco Kroon 
1753f0183a33SFelipe Balbi /*
1754f0183a33SFelipe Balbi  * Reported by fangxiaozhi <huananhu@huawei.com>
1755aad8a278Sfangxiaozhi  * This brings the HUAWEI data card devices into multi-port mode
1756d853d872SJohann Wilhelm  */
1757ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1001, 0x0000, 0x0000,
1758aad8a278Sfangxiaozhi 		"HUAWEI MOBILE",
1759aad8a278Sfangxiaozhi 		"Mass Storage",
1760ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1761ab4b7164SBjørn Mork 		0),
1762ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1003, 0x0000, 0x0000,
1763ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1764ab4b7164SBjørn Mork 		"Mass Storage",
1765ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1766ab4b7164SBjørn Mork 		0),
1767ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1004, 0x0000, 0x0000,
1768ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1769ab4b7164SBjørn Mork 		"Mass Storage",
1770ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1771ab4b7164SBjørn Mork 		0),
1772ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1401, 0x0000, 0x0000,
1773ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1774ab4b7164SBjørn Mork 		"Mass Storage",
1775ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1776ab4b7164SBjørn Mork 		0),
1777ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1402, 0x0000, 0x0000,
1778ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1779ab4b7164SBjørn Mork 		"Mass Storage",
1780ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1781ab4b7164SBjørn Mork 		0),
1782ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1403, 0x0000, 0x0000,
1783ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1784ab4b7164SBjørn Mork 		"Mass Storage",
1785ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1786ab4b7164SBjørn Mork 		0),
1787ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1404, 0x0000, 0x0000,
1788ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1789ab4b7164SBjørn Mork 		"Mass Storage",
1790ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1791ab4b7164SBjørn Mork 		0),
1792ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1405, 0x0000, 0x0000,
1793ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1794ab4b7164SBjørn Mork 		"Mass Storage",
1795ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1796ab4b7164SBjørn Mork 		0),
1797ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1406, 0x0000, 0x0000,
1798ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1799ab4b7164SBjørn Mork 		"Mass Storage",
1800ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1801ab4b7164SBjørn Mork 		0),
1802ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1407, 0x0000, 0x0000,
1803ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1804ab4b7164SBjørn Mork 		"Mass Storage",
1805ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1806ab4b7164SBjørn Mork 		0),
1807ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1408, 0x0000, 0x0000,
1808ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1809ab4b7164SBjørn Mork 		"Mass Storage",
1810ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1811ab4b7164SBjørn Mork 		0),
1812ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1409, 0x0000, 0x0000,
1813ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1814ab4b7164SBjørn Mork 		"Mass Storage",
1815ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1816ab4b7164SBjørn Mork 		0),
1817ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140A, 0x0000, 0x0000,
1818ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1819ab4b7164SBjørn Mork 		"Mass Storage",
1820ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1821ab4b7164SBjørn Mork 		0),
1822ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140B, 0x0000, 0x0000,
1823ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1824ab4b7164SBjørn Mork 		"Mass Storage",
1825ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1826ab4b7164SBjørn Mork 		0),
1827ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140C, 0x0000, 0x0000,
1828ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1829ab4b7164SBjørn Mork 		"Mass Storage",
1830ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1831ab4b7164SBjørn Mork 		0),
1832ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140D, 0x0000, 0x0000,
1833ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1834ab4b7164SBjørn Mork 		"Mass Storage",
1835ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1836ab4b7164SBjørn Mork 		0),
1837ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140E, 0x0000, 0x0000,
1838ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1839ab4b7164SBjørn Mork 		"Mass Storage",
1840ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1841ab4b7164SBjørn Mork 		0),
1842ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x140F, 0x0000, 0x0000,
1843ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1844ab4b7164SBjørn Mork 		"Mass Storage",
1845ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1846ab4b7164SBjørn Mork 		0),
1847ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1410, 0x0000, 0x0000,
1848ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1849ab4b7164SBjørn Mork 		"Mass Storage",
1850ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1851ab4b7164SBjørn Mork 		0),
1852ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1411, 0x0000, 0x0000,
1853ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1854ab4b7164SBjørn Mork 		"Mass Storage",
1855ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1856ab4b7164SBjørn Mork 		0),
1857ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1412, 0x0000, 0x0000,
1858ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1859ab4b7164SBjørn Mork 		"Mass Storage",
1860ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1861ab4b7164SBjørn Mork 		0),
1862ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1413, 0x0000, 0x0000,
1863ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1864ab4b7164SBjørn Mork 		"Mass Storage",
1865ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1866ab4b7164SBjørn Mork 		0),
1867ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1414, 0x0000, 0x0000,
1868ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1869ab4b7164SBjørn Mork 		"Mass Storage",
1870ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1871ab4b7164SBjørn Mork 		0),
1872ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1415, 0x0000, 0x0000,
1873ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1874ab4b7164SBjørn Mork 		"Mass Storage",
1875ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1876ab4b7164SBjørn Mork 		0),
1877ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1416, 0x0000, 0x0000,
1878ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1879ab4b7164SBjørn Mork 		"Mass Storage",
1880ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1881ab4b7164SBjørn Mork 		0),
1882ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1417, 0x0000, 0x0000,
1883ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1884ab4b7164SBjørn Mork 		"Mass Storage",
1885ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1886ab4b7164SBjørn Mork 		0),
1887ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1418, 0x0000, 0x0000,
1888ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1889ab4b7164SBjørn Mork 		"Mass Storage",
1890ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1891ab4b7164SBjørn Mork 		0),
1892ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1419, 0x0000, 0x0000,
1893ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1894ab4b7164SBjørn Mork 		"Mass Storage",
1895ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1896ab4b7164SBjørn Mork 		0),
1897ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141A, 0x0000, 0x0000,
1898ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1899ab4b7164SBjørn Mork 		"Mass Storage",
1900ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1901ab4b7164SBjørn Mork 		0),
1902ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141B, 0x0000, 0x0000,
1903ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1904ab4b7164SBjørn Mork 		"Mass Storage",
1905ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1906ab4b7164SBjørn Mork 		0),
1907ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141C, 0x0000, 0x0000,
1908ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1909ab4b7164SBjørn Mork 		"Mass Storage",
1910ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1911ab4b7164SBjørn Mork 		0),
1912ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141D, 0x0000, 0x0000,
1913ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1914ab4b7164SBjørn Mork 		"Mass Storage",
1915ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1916ab4b7164SBjørn Mork 		0),
1917ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141E, 0x0000, 0x0000,
1918ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1919ab4b7164SBjørn Mork 		"Mass Storage",
1920ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1921ab4b7164SBjørn Mork 		0),
1922ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x141F, 0x0000, 0x0000,
1923ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1924ab4b7164SBjørn Mork 		"Mass Storage",
1925ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1926ab4b7164SBjørn Mork 		0),
1927ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1420, 0x0000, 0x0000,
1928ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1929ab4b7164SBjørn Mork 		"Mass Storage",
1930ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1931ab4b7164SBjørn Mork 		0),
1932ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1421, 0x0000, 0x0000,
1933ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1934ab4b7164SBjørn Mork 		"Mass Storage",
1935ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1936ab4b7164SBjørn Mork 		0),
1937ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1422, 0x0000, 0x0000,
1938ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1939ab4b7164SBjørn Mork 		"Mass Storage",
1940ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1941ab4b7164SBjørn Mork 		0),
1942ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1423, 0x0000, 0x0000,
1943ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1944ab4b7164SBjørn Mork 		"Mass Storage",
1945ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1946ab4b7164SBjørn Mork 		0),
1947ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1424, 0x0000, 0x0000,
1948ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1949ab4b7164SBjørn Mork 		"Mass Storage",
1950ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1951ab4b7164SBjørn Mork 		0),
1952ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1425, 0x0000, 0x0000,
1953ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1954ab4b7164SBjørn Mork 		"Mass Storage",
1955ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1956ab4b7164SBjørn Mork 		0),
1957ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1426, 0x0000, 0x0000,
1958ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1959ab4b7164SBjørn Mork 		"Mass Storage",
1960ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1961ab4b7164SBjørn Mork 		0),
1962ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1427, 0x0000, 0x0000,
1963ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1964ab4b7164SBjørn Mork 		"Mass Storage",
1965ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1966ab4b7164SBjørn Mork 		0),
1967ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1428, 0x0000, 0x0000,
1968ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1969ab4b7164SBjørn Mork 		"Mass Storage",
1970ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1971ab4b7164SBjørn Mork 		0),
1972ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1429, 0x0000, 0x0000,
1973ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1974ab4b7164SBjørn Mork 		"Mass Storage",
1975ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1976ab4b7164SBjørn Mork 		0),
1977ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142A, 0x0000, 0x0000,
1978ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1979ab4b7164SBjørn Mork 		"Mass Storage",
1980ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1981ab4b7164SBjørn Mork 		0),
1982ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142B, 0x0000, 0x0000,
1983ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1984ab4b7164SBjørn Mork 		"Mass Storage",
1985ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1986ab4b7164SBjørn Mork 		0),
1987ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142C, 0x0000, 0x0000,
1988ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1989ab4b7164SBjørn Mork 		"Mass Storage",
1990ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1991ab4b7164SBjørn Mork 		0),
1992ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142D, 0x0000, 0x0000,
1993ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1994ab4b7164SBjørn Mork 		"Mass Storage",
1995ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
1996ab4b7164SBjørn Mork 		0),
1997ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142E, 0x0000, 0x0000,
1998ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
1999ab4b7164SBjørn Mork 		"Mass Storage",
2000ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2001ab4b7164SBjørn Mork 		0),
2002ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x142F, 0x0000, 0x0000,
2003ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2004ab4b7164SBjørn Mork 		"Mass Storage",
2005ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2006ab4b7164SBjørn Mork 		0),
2007ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1430, 0x0000, 0x0000,
2008ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2009ab4b7164SBjørn Mork 		"Mass Storage",
2010ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2011ab4b7164SBjørn Mork 		0),
2012ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1431, 0x0000, 0x0000,
2013ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2014ab4b7164SBjørn Mork 		"Mass Storage",
2015ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2016ab4b7164SBjørn Mork 		0),
2017ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1432, 0x0000, 0x0000,
2018ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2019ab4b7164SBjørn Mork 		"Mass Storage",
2020ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2021ab4b7164SBjørn Mork 		0),
2022ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1433, 0x0000, 0x0000,
2023ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2024ab4b7164SBjørn Mork 		"Mass Storage",
2025ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2026ab4b7164SBjørn Mork 		0),
2027ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1434, 0x0000, 0x0000,
2028ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2029ab4b7164SBjørn Mork 		"Mass Storage",
2030ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2031ab4b7164SBjørn Mork 		0),
2032ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1435, 0x0000, 0x0000,
2033ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2034ab4b7164SBjørn Mork 		"Mass Storage",
2035ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2036ab4b7164SBjørn Mork 		0),
2037ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1436, 0x0000, 0x0000,
2038ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2039ab4b7164SBjørn Mork 		"Mass Storage",
2040ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2041ab4b7164SBjørn Mork 		0),
2042ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1437, 0x0000, 0x0000,
2043ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2044ab4b7164SBjørn Mork 		"Mass Storage",
2045ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2046ab4b7164SBjørn Mork 		0),
2047ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1438, 0x0000, 0x0000,
2048ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2049ab4b7164SBjørn Mork 		"Mass Storage",
2050ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2051ab4b7164SBjørn Mork 		0),
2052ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x1439, 0x0000, 0x0000,
2053ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2054ab4b7164SBjørn Mork 		"Mass Storage",
2055ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2056ab4b7164SBjørn Mork 		0),
2057ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143A, 0x0000, 0x0000,
2058ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2059ab4b7164SBjørn Mork 		"Mass Storage",
2060ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2061ab4b7164SBjørn Mork 		0),
2062ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143B, 0x0000, 0x0000,
2063ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2064ab4b7164SBjørn Mork 		"Mass Storage",
2065ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2066ab4b7164SBjørn Mork 		0),
2067ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143C, 0x0000, 0x0000,
2068ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2069ab4b7164SBjørn Mork 		"Mass Storage",
2070ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2071ab4b7164SBjørn Mork 		0),
2072ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143D, 0x0000, 0x0000,
2073ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2074ab4b7164SBjørn Mork 		"Mass Storage",
2075ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2076ab4b7164SBjørn Mork 		0),
2077ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143E, 0x0000, 0x0000,
2078ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2079ab4b7164SBjørn Mork 		"Mass Storage",
2080ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
2081ab4b7164SBjørn Mork 		0),
2082ab4b7164SBjørn Mork UNUSUAL_DEV(  0x12d1, 0x143F, 0x0000, 0x0000,
2083ab4b7164SBjørn Mork 		"HUAWEI MOBILE",
2084ab4b7164SBjørn Mork 		"Mass Storage",
2085ab4b7164SBjørn Mork 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,
20861460e5e4Sfangxiaozhi 		0),
2087d853d872SJohann Wilhelm 
20887b1cbebaSPhil Dibowitz /* Reported by Vilius Bilinkevicius <vilisas AT xxx DOT lt) */
20897b1cbebaSPhil Dibowitz UNUSUAL_DEV(  0x132b, 0x000b, 0x0001, 0x0001,
20907b1cbebaSPhil Dibowitz 		"Minolta",
20917b1cbebaSPhil Dibowitz 		"Dimage Z10",
20928fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
20937b1cbebaSPhil Dibowitz 		0 ),
20947b1cbebaSPhil Dibowitz 
20951da177e4SLinus Torvalds /* Reported by Kotrla Vitezslav <kotrla@ceb.cz> */
20961da177e4SLinus Torvalds UNUSUAL_DEV(  0x1370, 0x6828, 0x0110, 0x0110,
20971da177e4SLinus Torvalds 		"SWISSBIT",
20981da177e4SLinus Torvalds 		"Black Silver",
20998fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
21001da177e4SLinus Torvalds 		US_FL_IGNORE_RESIDUE ),
21011da177e4SLinus Torvalds 
2102d595259fSTobias Jakobi /*
2103d595259fSTobias Jakobi  * Reported by Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
2104d595259fSTobias Jakobi  * The INIC-3619 bridge is used in the StarTech SLSODDU33B
2105d595259fSTobias Jakobi  * SATA-USB enclosure for slimline optical drives.
2106d595259fSTobias Jakobi  *
2107d595259fSTobias Jakobi  * The quirk enables MakeMKV to properly exchange keys with
2108d595259fSTobias Jakobi  * an installed BD drive.
2109d595259fSTobias Jakobi  */
2110d595259fSTobias Jakobi UNUSUAL_DEV(  0x13fd, 0x3609, 0x0209, 0x0209,
2111d595259fSTobias Jakobi 		"Initio Corporation",
2112d595259fSTobias Jakobi 		"INIC-3619",
2113d595259fSTobias Jakobi 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2114d595259fSTobias Jakobi 		US_FL_IGNORE_RESIDUE ),
2115d595259fSTobias Jakobi 
2116cec28a54SQinglin Ye /* Reported by Qinglin Ye <yestyle@gmail.com> */
2117cec28a54SQinglin Ye UNUSUAL_DEV(  0x13fe, 0x3600, 0x0100, 0x0100,
2118cec28a54SQinglin Ye 		"Kingston",
2119cec28a54SQinglin Ye 		"DT 101 G2",
2120cec28a54SQinglin Ye 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2121cec28a54SQinglin Ye 		US_FL_BULK_IGNORE_TAG ),
2122cec28a54SQinglin Ye 
2123f1cd4ad2SPhil Dibowitz /* Reported by Francesco Foresti <frafore@tiscali.it> */
2124f1cd4ad2SPhil Dibowitz UNUSUAL_DEV(  0x14cd, 0x6600, 0x0201, 0x0201,
2125f1cd4ad2SPhil Dibowitz 		"Super Top",
2126f1cd4ad2SPhil Dibowitz 		"IDE DEVICE",
21278fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2128f1cd4ad2SPhil Dibowitz 		US_FL_IGNORE_RESIDUE ),
2129f1cd4ad2SPhil Dibowitz 
2130b14bf2d0SAlan Stern /* Reported by Michael Büsch <m@bues.ch> */
213108d676d1SHenk van der Laan UNUSUAL_DEV(  0x152d, 0x0567, 0x0114, 0x0117,
2132b14bf2d0SAlan Stern 		"JMicron",
2133b14bf2d0SAlan Stern 		"USB to ATA/ATAPI Bridge",
2134b14bf2d0SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2135b14bf2d0SAlan Stern 		US_FL_BROKEN_FUA ),
2136b14bf2d0SAlan Stern 
213762354454SDavid Kozub /* Reported by David Kozub <zub@linux.fjfi.cvut.cz> */
213862354454SDavid Kozub UNUSUAL_DEV(0x152d, 0x0578, 0x0000, 0x9999,
213962354454SDavid Kozub 		"JMicron",
214062354454SDavid Kozub 		"JMS567",
214162354454SDavid Kozub 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
214262354454SDavid Kozub 		US_FL_BROKEN_FUA),
214362354454SDavid Kozub 
2144f0183a33SFelipe Balbi /*
2145f0183a33SFelipe Balbi  * Reported by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
21463030ca4cSPhil Dibowitz  * JMicron responds to USN and several other SCSI ioctls with a
21473030ca4cSPhil Dibowitz  * residue that causes subsequent I/O requests to fail.  */
21483030ca4cSPhil Dibowitz UNUSUAL_DEV(  0x152d, 0x2329, 0x0100, 0x0100,
21493030ca4cSPhil Dibowitz 		"JMicron",
21503030ca4cSPhil Dibowitz 		"USB to ATA/ATAPI Bridge",
21518fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2152dbe6e0c0SBen Efros 		US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ),
21533030ca4cSPhil Dibowitz 
2154bf5c4136SDmitry Nezhevenko /* Reported by Dmitry Nezhevenko <dion@dion.org.ua> */
2155bf5c4136SDmitry Nezhevenko UNUSUAL_DEV(  0x152d, 0x2566, 0x0114, 0x0114,
2156bf5c4136SDmitry Nezhevenko 		"JMicron",
2157bf5c4136SDmitry Nezhevenko 		"USB to ATA/ATAPI Bridge",
2158bf5c4136SDmitry Nezhevenko 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2159bf5c4136SDmitry Nezhevenko 		US_FL_BROKEN_FUA ),
2160bf5c4136SDmitry Nezhevenko 
21615126a504STeijo Kinnunen /* Reported by Teijo Kinnunen <teijo.kinnunen@code-q.fi> */
21625126a504STeijo Kinnunen UNUSUAL_DEV(  0x152d, 0x2567, 0x0117, 0x0117,
21635126a504STeijo Kinnunen 		"JMicron",
21645126a504STeijo Kinnunen 		"USB to ATA/ATAPI Bridge",
21655126a504STeijo Kinnunen 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
21665126a504STeijo Kinnunen 		US_FL_BROKEN_FUA ),
21675126a504STeijo Kinnunen 
2168674aea07SOliver Neukum /* Reported-by George Cherian <george.cherian@cavium.com> */
2169674aea07SOliver Neukum UNUSUAL_DEV(0x152d, 0x9561, 0x0000, 0x9999,
2170674aea07SOliver Neukum 		"JMicron",
2171674aea07SOliver Neukum 		"JMS56x",
2172674aea07SOliver Neukum 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2173674aea07SOliver Neukum 		US_FL_NO_REPORT_OPCODES),
2174674aea07SOliver Neukum 
2175f0183a33SFelipe Balbi /*
2176f0183a33SFelipe Balbi  * Entrega Technologies U1-SC25 (later Xircom PortGear PGSCSI)
2177c80b4495SMark  * and Mac USB Dock USB-SCSI */
2178c80b4495SMark UNUSUAL_DEV(  0x1645, 0x0007, 0x0100, 0x0133,
2179c80b4495SMark 		"Entrega Technologies",
2180c80b4495SMark 		"USB to SCSI Converter",
2181c80b4495SMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
2182c80b4495SMark 		US_FL_SCM_MULT_TARG ),
2183c80b4495SMark 
2184f0183a33SFelipe Balbi /*
2185f0183a33SFelipe Balbi  * Reported by Robert Schedel <r.schedel@yahoo.de>
2186f0183a33SFelipe Balbi  * Note: this is a 'super top' device like the above 14cd/6600 device
2187f0183a33SFelipe Balbi  */
2188f1cd4ad2SPhil Dibowitz UNUSUAL_DEV(  0x1652, 0x6600, 0x0201, 0x0201,
2189f1cd4ad2SPhil Dibowitz 		"Teac",
2190f1cd4ad2SPhil Dibowitz 		"HD-35PUK-B",
21918fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2192f1cd4ad2SPhil Dibowitz 		US_FL_IGNORE_RESIDUE ),
2193f1cd4ad2SPhil Dibowitz 
219432c37fc3SOliver Neukum /* Reported by Oliver Neukum <oneukum@suse.com> */
219532c37fc3SOliver Neukum UNUSUAL_DEV(  0x174c, 0x55aa, 0x0100, 0x0100,
219632c37fc3SOliver Neukum 		"ASMedia",
219732c37fc3SOliver Neukum 		"AS2105",
219832c37fc3SOliver Neukum 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
219932c37fc3SOliver Neukum 		US_FL_NEEDS_CAP16),
220032c37fc3SOliver Neukum 
2201df767b71SAlan Stern /* Reported by Jesse Feddema <jdfeddema@gmail.com> */
2202df767b71SAlan Stern UNUSUAL_DEV(  0x177f, 0x0400, 0x0000, 0x0000,
2203df767b71SAlan Stern 		"Yarvik",
2204df767b71SAlan Stern 		"PMP400",
2205df767b71SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2206df767b71SAlan Stern 		US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ),
2207df767b71SAlan Stern 
2208b6a3ed67SMark UNUSUAL_DEV(  0x1822, 0x0001, 0x0000, 0x9999,
2209b6a3ed67SMark 		"Ariston Technologies",
2210b6a3ed67SMark 		"iConnect USB to SCSI adapter",
2211b6a3ed67SMark 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
2212b6a3ed67SMark 		US_FL_SCM_MULT_TARG ),
2213b6a3ed67SMark 
2214f0183a33SFelipe Balbi /*
2215f0183a33SFelipe Balbi  * Reported by Hans de Goede <hdegoede@redhat.com>
2216a78f4f1aSHans de Goede  * These Appotech controllers are found in Picture Frames, they provide a
2217a78f4f1aSHans de Goede  * (buggy) emulation of a cdrom drive which contains the windows software
2218f0183a33SFelipe Balbi  * Uploading of pictures happens over the corresponding /dev/sg device.
2219f0183a33SFelipe Balbi  */
2220a78f4f1aSHans de Goede UNUSUAL_DEV( 0x1908, 0x1315, 0x0000, 0x0000,
2221a78f4f1aSHans de Goede 		"BUILDWIN",
2222a78f4f1aSHans de Goede 		"Photo Frame",
22238fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2224a78f4f1aSHans de Goede 		US_FL_BAD_SENSE ),
2225a78f4f1aSHans de Goede UNUSUAL_DEV( 0x1908, 0x1320, 0x0000, 0x0000,
2226a78f4f1aSHans de Goede 		"BUILDWIN",
2227a78f4f1aSHans de Goede 		"Photo Frame",
22288fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2229a78f4f1aSHans de Goede 		US_FL_BAD_SENSE ),
2230ae38c78aSHans de Goede UNUSUAL_DEV( 0x1908, 0x3335, 0x0200, 0x0200,
2231ae38c78aSHans de Goede 		"BUILDWIN",
2232ae38c78aSHans de Goede 		"Photo Frame",
2233ae38c78aSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2234ae38c78aSHans de Goede 		US_FL_NO_READ_DISC_INFO ),
2235a78f4f1aSHans de Goede 
2236f0183a33SFelipe Balbi /*
2237546aa0e4SAlan Stern  * Reported by Matthias Schwarzott <zzam@gentoo.org>
2238546aa0e4SAlan Stern  * The Amazon Kindle treats SYNCHRONIZE CACHE as an indication that
2239546aa0e4SAlan Stern  * the host may be finished with it, and automatically ejects its
2240546aa0e4SAlan Stern  * emulated media unless it receives another command within one second.
2241546aa0e4SAlan Stern  */
2242546aa0e4SAlan Stern UNUSUAL_DEV( 0x1949, 0x0004, 0x0000, 0x9999,
2243546aa0e4SAlan Stern 		"Amazon",
2244546aa0e4SAlan Stern 		"Kindle",
2245546aa0e4SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2246546aa0e4SAlan Stern 		US_FL_SENSE_AFTER_SYNC ),
2247546aa0e4SAlan Stern 
2248546aa0e4SAlan Stern /*
2249f0183a33SFelipe Balbi  * Reported by Oliver Neukum <oneukum@suse.com>
22505fb2c782SOliver Neukum  * This device morphes spontaneously into another device if the access
22515fb2c782SOliver Neukum  * pattern of Windows isn't followed. Thus writable media would be dirty
22525fb2c782SOliver Neukum  * if the initial instance is used. So the device is limited to its
22535fb2c782SOliver Neukum  * virtual CD.
2254f0183a33SFelipe Balbi  * And yes, the concept that BCD goes up to 9 is not heeded
2255f0183a33SFelipe Balbi  */
22565fb2c782SOliver Neukum UNUSUAL_DEV( 0x19d2, 0x1225, 0x0000, 0xffff,
22575fb2c782SOliver Neukum 		"ZTE,Incorporated",
22585fb2c782SOliver Neukum 		"ZTE WCDMA Technologies MSM",
22595fb2c782SOliver Neukum 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22605fb2c782SOliver Neukum 		US_FL_SINGLE_LUN ),
22615fb2c782SOliver Neukum 
2262f0183a33SFelipe Balbi /*
2263f0183a33SFelipe Balbi  * Reported by Sven Geggus <sven-usbst@geggus.net>
226421c13a4fSAlan Stern  * This encrypted pen drive returns bogus data for the initial READ(10).
226521c13a4fSAlan Stern  */
226621c13a4fSAlan Stern UNUSUAL_DEV(  0x1b1c, 0x1ab5, 0x0200, 0x0200,
226721c13a4fSAlan Stern 		"Corsair",
226821c13a4fSAlan Stern 		"Padlock v2",
226921c13a4fSAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
227021c13a4fSAlan Stern 		US_FL_INITIAL_READ10 ),
227121c13a4fSAlan Stern 
2272f0183a33SFelipe Balbi /*
2273f0183a33SFelipe Balbi  * Reported by Hans de Goede <hdegoede@redhat.com>
22742d64f31bSHans de Goede  * These are mini projectors using USB for both power and video data transport
22752d64f31bSHans de Goede  * The usb-storage interface is a virtual windows driver CD, which the gm12u320
22762d64f31bSHans de Goede  * driver automatically converts into framebuffer & kms dri device nodes.
22772d64f31bSHans de Goede  */
22782d64f31bSHans de Goede UNUSUAL_DEV( 0x1de1, 0xc102, 0x0000, 0xffff,
22792d64f31bSHans de Goede 		"Grain-media Technology Corp.",
22802d64f31bSHans de Goede 		"USB3.0 Device GM12U320",
22812d64f31bSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22822d64f31bSHans de Goede 		US_FL_IGNORE_DEVICE ),
22832d64f31bSHans de Goede 
2284f0183a33SFelipe Balbi /*
2285f0183a33SFelipe Balbi  * Patch by Richard Schütz <r.schtz@t-online.de>
22867e1e7bd9SRichard Schütz  * This external hard drive enclosure uses a JMicron chip which
2287f0183a33SFelipe Balbi  * needs the US_FL_IGNORE_RESIDUE flag to work properly.
2288f0183a33SFelipe Balbi  */
22897e1e7bd9SRichard Schütz UNUSUAL_DEV(  0x1e68, 0x001b, 0x0000, 0x0000,
22907e1e7bd9SRichard Schütz 		"TrekStor GmbH & Co. KG",
22917e1e7bd9SRichard Schütz 		"DataStation maxi g.u",
22927e1e7bd9SRichard Schütz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
22937e1e7bd9SRichard Schütz 		US_FL_IGNORE_RESIDUE | US_FL_SANE_SENSE ),
22947e1e7bd9SRichard Schütz 
22953ea3c9b5SAlan Stern /* Reported by Jasper Mackenzie <scarletpimpernal@hotmail.com> */
22963ea3c9b5SAlan Stern UNUSUAL_DEV( 0x1e74, 0x4621, 0x0000, 0x0000,
22973ea3c9b5SAlan Stern 		"Coby Electronics",
22983ea3c9b5SAlan Stern 		"MP3 Player",
22993ea3c9b5SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
23003ea3c9b5SAlan Stern 		US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ),
23013ea3c9b5SAlan Stern 
23022aa48857SWitold Lipieta /* Reported by Witold Lipieta <witold.lipieta@thaumatec.com> */
23032aa48857SWitold Lipieta UNUSUAL_DEV( 0x1fc9, 0x0117, 0x0100, 0x0100,
23042aa48857SWitold Lipieta 		"NXP Semiconductors",
23052aa48857SWitold Lipieta 		"PN7462AU",
23062aa48857SWitold Lipieta 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
23072aa48857SWitold Lipieta 		US_FL_IGNORE_RESIDUE ),
23082aa48857SWitold Lipieta 
230957cde01aSMark Knibbs /* Supplied with some Castlewood ORB removable drives */
231057cde01aSMark Knibbs UNUSUAL_DEV(  0x2027, 0xa001, 0x0000, 0x9999,
231157cde01aSMark Knibbs 		"Double-H Technology",
231257cde01aSMark Knibbs 		"USB to SCSI Intelligent Cable",
231357cde01aSMark Knibbs 		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init,
231457cde01aSMark Knibbs 		US_FL_SCM_MULT_TARG ),
231557cde01aSMark Knibbs 
23165b67b315SAlan Stern /*
23175b67b315SAlan Stern  * Reported by DocMAX <mail@vacharakis.de>
23185b67b315SAlan Stern  * and Thomas Weißschuh <linux@weissschuh.net>
23195b67b315SAlan Stern  */
23205b67b315SAlan Stern UNUSUAL_DEV( 0x2109, 0x0715, 0x9999, 0x9999,
23215b67b315SAlan Stern 		"VIA Labs, Inc.",
23225b67b315SAlan Stern 		"VL817 SATA Bridge",
23235b67b315SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
23245b67b315SAlan Stern 		US_FL_IGNORE_UAS),
23255b67b315SAlan Stern 
2326b90de8aeSOliver Neukum UNUSUAL_DEV( 0x2116, 0x0320, 0x0001, 0x0001,
2327b90de8aeSOliver Neukum 		"ST",
2328b90de8aeSOliver Neukum 		"2A",
23298fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2330b90de8aeSOliver Neukum 		US_FL_FIX_CAPACITY),
2331b90de8aeSOliver Neukum 
2332f0183a33SFelipe Balbi /*
2333f0183a33SFelipe Balbi  * patch submitted by Davide Perini <perini.davide@dpsoftware.org>
23340ddc0634SDavide Perini  * and Renato Perini <rperini@email.it>
23350ddc0634SDavide Perini  */
23360ddc0634SDavide Perini UNUSUAL_DEV(  0x22b8, 0x3010, 0x0001, 0x0001,
23370ddc0634SDavide Perini 		"Motorola",
23380ddc0634SDavide Perini 		"RAZR V3x",
23398fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
23400ddc0634SDavide Perini 		US_FL_FIX_CAPACITY | US_FL_IGNORE_RESIDUE ),
23410ddc0634SDavide Perini 
2342a7f3dd5dSPete Zaitcev /*
2343cc36bdd4SConstantin Baranov  * Patch by Constantin Baranov <const@tltsu.ru>
2344cc36bdd4SConstantin Baranov  * Report by Andreas Koenecke.
2345cc36bdd4SConstantin Baranov  * Motorola ROKR Z6.
2346cc36bdd4SConstantin Baranov  */
2347cc36bdd4SConstantin Baranov UNUSUAL_DEV(  0x22b8, 0x6426, 0x0101, 0x0101,
2348cc36bdd4SConstantin Baranov 		"Motorola",
2349cc36bdd4SConstantin Baranov 		"MSnc.",
23508fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2351cc36bdd4SConstantin Baranov 		US_FL_FIX_INQUIRY | US_FL_FIX_CAPACITY | US_FL_BULK_IGNORE_TAG),
2352cc36bdd4SConstantin Baranov 
23531da177e4SLinus Torvalds /* Reported by Radovan Garabik <garabik@kassiopeia.juls.savba.sk> */
23541da177e4SLinus Torvalds UNUSUAL_DEV(  0x2735, 0x100b, 0x0000, 0x9999,
23551da177e4SLinus Torvalds 		"MPIO",
23561da177e4SLinus Torvalds 		"HS200",
23578fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
23581da177e4SLinus Torvalds 		US_FL_GO_SLOW ),
23591da177e4SLinus Torvalds 
2360f45681f9STim Anderson /* Reported-by: Tim Anderson <tsa@biglakesoftware.com> */
2361f45681f9STim Anderson UNUSUAL_DEV(  0x2ca3, 0x0031, 0x0000, 0x9999,
2362f45681f9STim Anderson 		"DJI",
2363f45681f9STim Anderson 		"CineSSD",
2364f45681f9STim Anderson 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2365f45681f9STim Anderson 		US_FL_NO_ATA_1X),
2366f45681f9STim Anderson 
2367f0183a33SFelipe Balbi /*
2368f0183a33SFelipe Balbi  * Reported by Frederic Marchal <frederic.marchal@wowcompany.com>
2369e8fab4ceSFrédéric Marchal  * Mio Moov 330
2370e8fab4ceSFrédéric Marchal  */
2371e8fab4ceSFrédéric Marchal UNUSUAL_DEV(  0x3340, 0xffff, 0x0000, 0x0000,
2372e8fab4ceSFrédéric Marchal 		"Mitac",
2373e8fab4ceSFrédéric Marchal 		"Mio DigiWalker USB Sync",
23748fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE,USB_PR_DEVICE,NULL,
2375e8fab4ceSFrédéric Marchal 		US_FL_MAX_SECTORS_64 ),
2376e8fab4ceSFrédéric Marchal 
237794f9c8c3SAlan Stern /* Reported by Cyril Roelandt <tipecaml@gmail.com> */
237894f9c8c3SAlan Stern UNUSUAL_DEV(  0x357d, 0x7788, 0x0114, 0x0114,
237994f9c8c3SAlan Stern 		"JMicron",
238094f9c8c3SAlan Stern 		"USB to ATA/ATAPI Bridge",
238194f9c8c3SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
23829aa37788SCyril Roelandt 		US_FL_BROKEN_FUA | US_FL_IGNORE_UAS ),
238394f9c8c3SAlan Stern 
2384368ee646SAlan Stern /* Reported by Andrey Rahmatullin <wrar@altlinux.org> */
2385368ee646SAlan Stern UNUSUAL_DEV(  0x4102, 0x1020, 0x0100,  0x0100,
2386368ee646SAlan Stern 		"iRiver",
2387368ee646SAlan Stern 		"MP3 T10",
23888fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2389368ee646SAlan Stern 		US_FL_IGNORE_RESIDUE ),
2390368ee646SAlan Stern 
23912f13612aSSergey Pinaev /* Reported by Sergey Pinaev <dfo@antex.ru> */
23922f13612aSSergey Pinaev UNUSUAL_DEV(  0x4102, 0x1059, 0x0000,  0x0000,
23932f13612aSSergey Pinaev                "iRiver",
23942f13612aSSergey Pinaev                "P7K",
23958fa7fd74SMichal Nazarewicz                USB_SC_DEVICE, USB_PR_DEVICE, NULL,
23962f13612aSSergey Pinaev                US_FL_MAX_SECTORS_64 ),
23972f13612aSSergey Pinaev 
239863dc3ff3SDavid Härdeman /*
239996de0e25SJan Engelhardt  * David Härdeman <david@2gen.com>
240063dc3ff3SDavid Härdeman  * The key makes the SCSI stack print confusing (but harmless) messages
240163dc3ff3SDavid Härdeman  */
240263dc3ff3SDavid Härdeman UNUSUAL_DEV(  0x4146, 0xba01, 0x0100, 0x0100,
240363dc3ff3SDavid Härdeman 		"Iomega",
240463dc3ff3SDavid Härdeman 		"Micro Mini 1GB",
24058fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ),
240663dc3ff3SDavid Härdeman 
2407ca7d9515SAlexander Kappner /* "G-DRIVE" external HDD hangs on write without these.
2408ca7d9515SAlexander Kappner  * Patch submitted by Alexander Kappner <agk@godking.net>
2409ca7d9515SAlexander Kappner  */
2410ca7d9515SAlexander Kappner UNUSUAL_DEV(0x4971, 0x8024, 0x0000, 0x9999,
2411ca7d9515SAlexander Kappner 		"SimpleTech",
2412ca7d9515SAlexander Kappner 		"External HDD",
2413ca7d9515SAlexander Kappner 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2414ca7d9515SAlexander Kappner 		US_FL_ALWAYS_SYNC),
2415ca7d9515SAlexander Kappner 
2416a871e4f5SNick Bowler /*
2417a871e4f5SNick Bowler  * Nick Bowler <nbowler@elliptictech.com>
2418a871e4f5SNick Bowler  * SCSI stack spams (otherwise harmless) error messages.
2419a871e4f5SNick Bowler  */
2420a871e4f5SNick Bowler UNUSUAL_DEV(  0xc251, 0x4003, 0x0100, 0x0100,
2421a871e4f5SNick Bowler 		"Keil Software, Inc.",
2422a871e4f5SNick Bowler 		"V2M MotherBoard",
2423a871e4f5SNick Bowler 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2424a871e4f5SNick Bowler 		US_FL_NOT_LOCKABLE),
2425a871e4f5SNick Bowler 
2426*a6555cb1SIcenowy Zheng /*
2427*a6555cb1SIcenowy Zheng  * Reported by Icenowy Zheng <uwu@icenowy.me>
2428*a6555cb1SIcenowy Zheng  * This is an interface for vendor-specific cryptic commands instead
2429*a6555cb1SIcenowy Zheng  * of real USB storage device.
2430*a6555cb1SIcenowy Zheng  */
2431*a6555cb1SIcenowy Zheng UNUSUAL_DEV(  0xe5b7, 0x0811, 0x0100, 0x0100,
2432*a6555cb1SIcenowy Zheng 		"ZhuHai JieLi Technology",
2433*a6555cb1SIcenowy Zheng 		"JieLi BR21",
2434*a6555cb1SIcenowy Zheng 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
2435*a6555cb1SIcenowy Zheng 		US_FL_IGNORE_DEVICE),
2436*a6555cb1SIcenowy Zheng 
2437a2149bceSAlan Stern /* Reported by Andrew Simmons <andrew.simmons@gmail.com> */
2438a2149bceSAlan Stern UNUSUAL_DEV(  0xed06, 0x4500, 0x0001, 0x0001,
2439a2149bceSAlan Stern 		"DataStor",
2440a2149bceSAlan Stern 		"USB4500 FW1.04",
24418fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
244261bf54b7SOliver Neukum 		US_FL_CAPACITY_HEURISTICS),
2443a2149bceSAlan Stern 
244446c6e93fSChuck Short /* Reported by Alessio Treglia <quadrispro@ubuntu.com> */
244546c6e93fSChuck Short UNUSUAL_DEV( 0xed10, 0x7636, 0x0001, 0x0001,
244646c6e93fSChuck Short 		"TGE",
244746c6e93fSChuck Short 		"Digital MP3 Audio Player",
24488fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ),
244946c6e93fSChuck Short 
24505bfd5b5dSHans de Goede /* Unusual uas devices */
24515bfd5b5dSHans de Goede #if IS_ENABLED(CONFIG_USB_UAS)
24525bfd5b5dSHans de Goede #include "unusual_uas.h"
24535bfd5b5dSHans de Goede #endif
24545bfd5b5dSHans de Goede 
2455a00828e9SPete Zaitcev /* Control/Bulk transport for all SubClass values */
2456f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_RBC, USB_PR_CB),
2457f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8020, USB_PR_CB),
2458f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_QIC, USB_PR_CB),
2459f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_UFI, USB_PR_CB),
2460f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8070, USB_PR_CB),
2461f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_SCSI, USB_PR_CB),
2462a00828e9SPete Zaitcev 
2463a00828e9SPete Zaitcev /* Control/Bulk/Interrupt transport for all SubClass values */
2464f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_RBC, USB_PR_CBI),
2465f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8020, USB_PR_CBI),
2466f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_QIC, USB_PR_CBI),
2467f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_UFI, USB_PR_CBI),
2468f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8070, USB_PR_CBI),
2469f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_SCSI, USB_PR_CBI),
2470a00828e9SPete Zaitcev 
2471a00828e9SPete Zaitcev /* Bulk-only transport for all SubClass values */
2472f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_RBC, USB_PR_BULK),
2473f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8020, USB_PR_BULK),
2474f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_QIC, USB_PR_BULK),
2475f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_UFI, USB_PR_BULK),
2476f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_8070, USB_PR_BULK),
2477f61870eeSSebastian Andrzej Siewior USUAL_DEV(USB_SC_SCSI, USB_PR_BULK),
2478