159b4e0cdSNishad Kamdar /* SPDX-License-Identifier: GPL-2.0+ */
2f0183a33SFelipe Balbi /*
3f0183a33SFelipe Balbi  * Driver for USB Attached SCSI devices - Unusual Devices File
479b4c061SHans de Goede  *
579b4c061SHans de Goede  *   (c) 2013 Hans de Goede <hdegoede@redhat.com>
679b4c061SHans de Goede  *
779b4c061SHans de Goede  * Based on the same file for the usb-storage driver, which is:
879b4c061SHans de Goede  *   (c) 2000-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
979b4c061SHans de Goede  *   (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc.
1079b4c061SHans de Goede  */
1179b4c061SHans de Goede 
1279b4c061SHans de Goede /*
1379b4c061SHans de Goede  * IMPORTANT NOTE: This file must be included in another file which defines
1479b4c061SHans de Goede  * a UNUSUAL_DEV macro before this file is included.
1579b4c061SHans de Goede  */
1679b4c061SHans de Goede 
1779b4c061SHans de Goede /*
1879b4c061SHans de Goede  * If you edit this file, please try to keep it sorted first by VendorID,
1979b4c061SHans de Goede  * then by ProductID.
2079b4c061SHans de Goede  *
2179b4c061SHans de Goede  * If you want to add an entry for this file, be sure to include the
2279b4c061SHans de Goede  * following information:
2379b4c061SHans de Goede  *	- a patch that adds the entry for your device, including your
2479b4c061SHans de Goede  *	  email address right above the entry (plus maybe a brief
2579b4c061SHans de Goede  *	  explanation of the reason for the entry),
2679b4c061SHans de Goede  *	- lsusb -v output for the device
2779b4c061SHans de Goede  * Send your submission to Hans de Goede <hdegoede@redhat.com>
2879b4c061SHans de Goede  * and don't forget to CC: the USB development list <linux-usb@vger.kernel.org>
2979b4c061SHans de Goede  */
3079b4c061SHans de Goede 
3120934c0dSAlan Stern /* Reported-by: Till Dörges <doerges@pre-sense.de> */
3220934c0dSAlan Stern UNUSUAL_DEV(0x054c, 0x087d, 0x0000, 0x9999,
3320934c0dSAlan Stern 		"Sony",
3420934c0dSAlan Stern 		"PSZ-HA*",
3520934c0dSAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
3620934c0dSAlan Stern 		US_FL_NO_REPORT_OPCODES),
3720934c0dSAlan Stern 
388010622cSOliver Neukum /*
398010622cSOliver Neukum  *  Initially Reported-by: Julian Groß <julian.g@posteo.de>
408010622cSOliver Neukum  *  Further reports David C. Partridge <david.partridge@perdrix.co.uk>
418010622cSOliver Neukum  */
429f04db23SOliver Neukum UNUSUAL_DEV(0x059f, 0x105f, 0x0000, 0x9999,
439f04db23SOliver Neukum 		"LaCie",
449f04db23SOliver Neukum 		"2Big Quadra USB3",
459f04db23SOliver Neukum 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
468010622cSOliver Neukum 		US_FL_NO_REPORT_OPCODES | US_FL_NO_SAME),
479f04db23SOliver Neukum 
486abf2fe6SJulian Sikorski /* Reported-by: Julian Sikorski <belegdol@gmail.com> */
496abf2fe6SJulian Sikorski UNUSUAL_DEV(0x059f, 0x1061, 0x0000, 0x9999,
506abf2fe6SJulian Sikorski 		"LaCie",
516abf2fe6SJulian Sikorski 		"Rugged USB3-FW",
526abf2fe6SJulian Sikorski 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
53ce1c42b4SJulian Sikorski 		US_FL_NO_REPORT_OPCODES | US_FL_NO_SAME),
546abf2fe6SJulian Sikorski 
55a625a4b8SHongling Zeng /* Reported-by: Hongling Zeng <zenghongling@kylinos.cn> */
56a625a4b8SHongling Zeng UNUSUAL_DEV(0x090c, 0x2000, 0x0000, 0x9999,
57a625a4b8SHongling Zeng 		"Hiksemi",
58a625a4b8SHongling Zeng 		"External HDD",
59a625a4b8SHongling Zeng 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
60a625a4b8SHongling Zeng 		US_FL_IGNORE_UAS),
61a625a4b8SHongling Zeng 
6236d1ffdbSDarrick J. Wong /*
6336d1ffdbSDarrick J. Wong  * Apricorn USB3 dongle sometimes returns "USBSUSBSUSBS" in response to SCSI
6436d1ffdbSDarrick J. Wong  * commands in UAS mode.  Observed with the 1.28 firmware; are there others?
6536d1ffdbSDarrick J. Wong  */
6636d1ffdbSDarrick J. Wong UNUSUAL_DEV(0x0984, 0x0301, 0x0128, 0x0128,
6736d1ffdbSDarrick J. Wong 		"Apricorn",
6836d1ffdbSDarrick J. Wong 		"",
6936d1ffdbSDarrick J. Wong 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
7036d1ffdbSDarrick J. Wong 		US_FL_IGNORE_UAS),
7136d1ffdbSDarrick J. Wong 
72c61feaeeSHu Xiaoying /* Reported-by: Tom Hu <huxiaoying@kylinos.cn> */
73c61feaeeSHu Xiaoying UNUSUAL_DEV(0x0b05, 0x1932, 0x0000, 0x9999,
74c61feaeeSHu Xiaoying 		"ASUS",
75c61feaeeSHu Xiaoying 		"External HDD",
76c61feaeeSHu Xiaoying 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
77c61feaeeSHu Xiaoying 		US_FL_IGNORE_UAS),
78c61feaeeSHu Xiaoying 
7913630746SHans de Goede /* Reported-by: David Webb <djw@noc.ac.uk> */
8013630746SHans de Goede UNUSUAL_DEV(0x0bc2, 0x331a, 0x0000, 0x9999,
8113630746SHans de Goede 		"Seagate",
8213630746SHans de Goede 		"Expansion Desk",
8313630746SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
8413630746SHans de Goede 		US_FL_NO_REPORT_LUNS),
8513630746SHans de Goede 
86bda13e35SHans de Goede /* Reported-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> */
87bda13e35SHans de Goede UNUSUAL_DEV(0x13fd, 0x3940, 0x0000, 0x9999,
88bda13e35SHans de Goede 		"Initio Corporation",
8989f23d51SAlan Swanson 		"INIC-3069",
90bda13e35SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9189f23d51SAlan Swanson 		US_FL_NO_ATA_1X | US_FL_IGNORE_RESIDUE),
92bda13e35SHans de Goede 
9359e980efSHans de Goede /* Reported-by: Tom Arild Naess <tanaess@gmail.com> */
9459e980efSHans de Goede UNUSUAL_DEV(0x152d, 0x0539, 0x0000, 0x9999,
9559e980efSHans de Goede 		"JMicron",
9659e980efSHans de Goede 		"JMS539",
9759e980efSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
9859e980efSHans de Goede 		US_FL_NO_REPORT_OPCODES),
9959e980efSHans de Goede 
100734016b0SHans de Goede /* Reported-by: Claudio Bizzarri <claudio.bizzarri@gmail.com> */
101734016b0SHans de Goede UNUSUAL_DEV(0x152d, 0x0567, 0x0000, 0x9999,
102734016b0SHans de Goede 		"JMicron",
103734016b0SHans de Goede 		"JMS567",
104734016b0SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1059fa62b1aSDmitry Katsubo 		US_FL_BROKEN_FUA | US_FL_NO_REPORT_OPCODES),
106710f1bf1SHans de Goede 
10762354454SDavid Kozub /* Reported-by: David Kozub <zub@linux.fjfi.cvut.cz> */
10862354454SDavid Kozub UNUSUAL_DEV(0x152d, 0x0578, 0x0000, 0x9999,
10962354454SDavid Kozub 		"JMicron",
11062354454SDavid Kozub 		"JMS567",
11162354454SDavid Kozub 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
11262354454SDavid Kozub 		US_FL_BROKEN_FUA),
11362354454SDavid Kozub 
114*a37eb61bSYaroslav Furman /* Reported by: Yaroslav Furman <yaro330@gmail.com> */
115*a37eb61bSYaroslav Furman UNUSUAL_DEV(0x152d, 0x0583, 0x0000, 0x9999,
116*a37eb61bSYaroslav Furman 		"JMicron",
117*a37eb61bSYaroslav Furman 		"JMS583Gen 2",
118*a37eb61bSYaroslav Furman 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
119*a37eb61bSYaroslav Furman 		US_FL_NO_REPORT_OPCODES),
120*a37eb61bSYaroslav Furman 
1219a469bc9SThinh Nguyen /* Reported-by: Thinh Nguyen <thinhn@synopsys.com> */
12296ebc9c8SThinh Nguyen UNUSUAL_DEV(0x154b, 0xf00b, 0x0000, 0x9999,
12396ebc9c8SThinh Nguyen 		"PNY",
12496ebc9c8SThinh Nguyen 		"Pro Elite SSD",
12596ebc9c8SThinh Nguyen 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
12696ebc9c8SThinh Nguyen 		US_FL_NO_ATA_1X),
12796ebc9c8SThinh Nguyen 
12896ebc9c8SThinh Nguyen /* Reported-by: Thinh Nguyen <thinhn@synopsys.com> */
1299a469bc9SThinh Nguyen UNUSUAL_DEV(0x154b, 0xf00d, 0x0000, 0x9999,
1309a469bc9SThinh Nguyen 		"PNY",
1319a469bc9SThinh Nguyen 		"Pro Elite SSD",
1329a469bc9SThinh Nguyen 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1339a469bc9SThinh Nguyen 		US_FL_NO_ATA_1X),
1349a469bc9SThinh Nguyen 
1350fb9703aSHongling Zeng /* Reported-by: Hongling Zeng <zenghongling@kylinos.cn> */
1360fb9703aSHongling Zeng UNUSUAL_DEV(0x17ef, 0x3899, 0x0000, 0x9999,
1370fb9703aSHongling Zeng 		"Thinkplus",
1380fb9703aSHongling Zeng 		"External HDD",
1390fb9703aSHongling Zeng 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1400fb9703aSHongling Zeng 		US_FL_IGNORE_UAS),
1410fb9703aSHongling Zeng 
142673029feSHans de Goede /* Reported-by: Hans de Goede <hdegoede@redhat.com> */
143673029feSHans de Goede UNUSUAL_DEV(0x2109, 0x0711, 0x0000, 0x9999,
144673029feSHans de Goede 		"VIA",
145673029feSHans de Goede 		"VL711",
146673029feSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
147673029feSHans de Goede 		US_FL_NO_ATA_1X),
1488daee135SHans de Goede 
149928afc85SIcenowy Zheng /* Reported-by: Icenowy Zheng <icenowy@aosc.io> */
150928afc85SIcenowy Zheng UNUSUAL_DEV(0x2537, 0x1068, 0x0000, 0x9999,
151928afc85SIcenowy Zheng 		"Norelsys",
152928afc85SIcenowy Zheng 		"NS1068X",
153928afc85SIcenowy Zheng 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
154928afc85SIcenowy Zheng 		US_FL_IGNORE_UAS),
155928afc85SIcenowy Zheng 
156bc3bdb12SLaura Abbott /*
157bc3bdb12SLaura Abbott  * Initially Reported-by: Takeo Nakayama <javhera@gmx.com>
158bc3bdb12SLaura Abbott  * UAS Ignore Reported by Steven Ellis <sellis@redhat.com>
159bc3bdb12SLaura Abbott  */
160c6fa3945SHans de Goede UNUSUAL_DEV(0x357d, 0x7788, 0x0000, 0x9999,
161c6fa3945SHans de Goede 		"JMicron",
162c6fa3945SHans de Goede 		"JMS566",
163c6fa3945SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
164bc3bdb12SLaura Abbott 		US_FL_NO_REPORT_OPCODES | US_FL_IGNORE_UAS),
165c6fa3945SHans de Goede 
1668daee135SHans de Goede /* Reported-by: Hans de Goede <hdegoede@redhat.com> */
1678daee135SHans de Goede UNUSUAL_DEV(0x4971, 0x1012, 0x0000, 0x9999,
1688daee135SHans de Goede 		"Hitachi",
1698daee135SHans de Goede 		"External HDD",
1708daee135SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1718daee135SHans de Goede 		US_FL_IGNORE_UAS),
1728a870880SHans de Goede 
1738a870880SHans de Goede /* Reported-by: Richard Henderson <rth@redhat.com> */
1748a870880SHans de Goede UNUSUAL_DEV(0x4971, 0x8017, 0x0000, 0x9999,
1758a870880SHans de Goede 		"SimpleTech",
1768a870880SHans de Goede 		"External HDD",
1778a870880SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1788a870880SHans de Goede 		US_FL_NO_REPORT_OPCODES),
179ca7d9515SAlexander Kappner 
180ca7d9515SAlexander Kappner /* "G-DRIVE" external HDD hangs on write without these.
181ca7d9515SAlexander Kappner  * Patch submitted by Alexander Kappner <agk@godking.net>
182ca7d9515SAlexander Kappner  */
183ca7d9515SAlexander Kappner UNUSUAL_DEV(0x4971, 0x8024, 0x0000, 0x9999,
184ca7d9515SAlexander Kappner 		"SimpleTech",
185ca7d9515SAlexander Kappner 		"External HDD",
186ca7d9515SAlexander Kappner 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
187ca7d9515SAlexander Kappner 		US_FL_ALWAYS_SYNC),
188