179b4c061SHans de Goede /* Driver for USB Attached SCSI devices - Unusual Devices File
279b4c061SHans de Goede  *
379b4c061SHans de Goede  *   (c) 2013 Hans de Goede <hdegoede@redhat.com>
479b4c061SHans de Goede  *
579b4c061SHans de Goede  * Based on the same file for the usb-storage driver, which is:
679b4c061SHans de Goede  *   (c) 2000-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
779b4c061SHans de Goede  *   (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc.
879b4c061SHans de Goede  *
979b4c061SHans de Goede  * This program is free software; you can redistribute it and/or modify it
1079b4c061SHans de Goede  * under the terms of the GNU General Public License as published by the
1179b4c061SHans de Goede  * Free Software Foundation; either version 2, or (at your option) any
1279b4c061SHans de Goede  * later version.
1379b4c061SHans de Goede  *
1479b4c061SHans de Goede  * This program is distributed in the hope that it will be useful, but
1579b4c061SHans de Goede  * WITHOUT ANY WARRANTY; without even the implied warranty of
1679b4c061SHans de Goede  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1779b4c061SHans de Goede  * General Public License for more details.
1879b4c061SHans de Goede  *
1979b4c061SHans de Goede  * You should have received a copy of the GNU General Public License along
2079b4c061SHans de Goede  * with this program; if not, write to the Free Software Foundation, Inc.,
2179b4c061SHans de Goede  * 675 Mass Ave, Cambridge, MA 02139, USA.
2279b4c061SHans de Goede  */
2379b4c061SHans de Goede 
2479b4c061SHans de Goede /*
2579b4c061SHans de Goede  * IMPORTANT NOTE: This file must be included in another file which defines
2679b4c061SHans de Goede  * a UNUSUAL_DEV macro before this file is included.
2779b4c061SHans de Goede  */
2879b4c061SHans de Goede 
2979b4c061SHans de Goede /*
3079b4c061SHans de Goede  * If you edit this file, please try to keep it sorted first by VendorID,
3179b4c061SHans de Goede  * then by ProductID.
3279b4c061SHans de Goede  *
3379b4c061SHans de Goede  * If you want to add an entry for this file, be sure to include the
3479b4c061SHans de Goede  * following information:
3579b4c061SHans de Goede  *	- a patch that adds the entry for your device, including your
3679b4c061SHans de Goede  *	  email address right above the entry (plus maybe a brief
3779b4c061SHans de Goede  *	  explanation of the reason for the entry),
3879b4c061SHans de Goede  *	- lsusb -v output for the device
3979b4c061SHans de Goede  * Send your submission to Hans de Goede <hdegoede@redhat.com>
4079b4c061SHans de Goede  * and don't forget to CC: the USB development list <linux-usb@vger.kernel.org>
4179b4c061SHans de Goede  */
4279b4c061SHans de Goede 
4336d1ffdbSDarrick J. Wong /*
4436d1ffdbSDarrick J. Wong  * Apricorn USB3 dongle sometimes returns "USBSUSBSUSBS" in response to SCSI
4536d1ffdbSDarrick J. Wong  * commands in UAS mode.  Observed with the 1.28 firmware; are there others?
4636d1ffdbSDarrick J. Wong  */
4736d1ffdbSDarrick J. Wong UNUSUAL_DEV(0x0984, 0x0301, 0x0128, 0x0128,
4836d1ffdbSDarrick J. Wong 		"Apricorn",
4936d1ffdbSDarrick J. Wong 		"",
5036d1ffdbSDarrick J. Wong 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
5136d1ffdbSDarrick J. Wong 		US_FL_IGNORE_UAS),
5236d1ffdbSDarrick J. Wong 
5359307852SHans de Goede /* https://bugzilla.kernel.org/show_bug.cgi?id=79511 */
5459307852SHans de Goede UNUSUAL_DEV(0x0bc2, 0x2312, 0x0000, 0x9999,
5559307852SHans de Goede 		"Seagate",
5659307852SHans de Goede 		"Expansion Desk",
5759307852SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
5859307852SHans de Goede 		US_FL_NO_ATA_1X),
5959307852SHans de Goede 
6059307852SHans de Goede /* https://bbs.archlinux.org/viewtopic.php?id=183190 */
6159307852SHans de Goede UNUSUAL_DEV(0x0bc2, 0x3312, 0x0000, 0x9999,
6259307852SHans de Goede 		"Seagate",
6359307852SHans de Goede 		"Expansion Desk",
6459307852SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
6559307852SHans de Goede 		US_FL_NO_ATA_1X),
66734016b0SHans de Goede 
67d1d95482SHans de Goede /* Reported-by: Hans de Goede <hdegoede@redhat.com> */
68d1d95482SHans de Goede UNUSUAL_DEV(0x0bc2, 0x3320, 0x0000, 0x9999,
69d1d95482SHans de Goede 		"Seagate",
70d1d95482SHans de Goede 		"Expansion Desk",
71d1d95482SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
72d1d95482SHans de Goede 		US_FL_NO_ATA_1X),
73d1d95482SHans de Goede 
74d1d95482SHans de Goede /* Reported-by: Bogdan Mihalcea <bogdan.mihalcea@infim.ro> */
75d1d95482SHans de Goede UNUSUAL_DEV(0x0bc2, 0xa003, 0x0000, 0x9999,
76d1d95482SHans de Goede 		"Seagate",
77d1d95482SHans de Goede 		"Backup Plus",
78d1d95482SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
79d1d95482SHans de Goede 		US_FL_NO_ATA_1X),
80d1d95482SHans de Goede 
81e5797a3dSHans de Goede /* Reported-by: Marcin Zajączkowski <mszpak@wp.pl> */
82e5797a3dSHans de Goede UNUSUAL_DEV(0x0bc2, 0xa013, 0x0000, 0x9999,
83e5797a3dSHans de Goede 		"Seagate",
84e5797a3dSHans de Goede 		"Backup Plus",
85e5797a3dSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
86e5797a3dSHans de Goede 		US_FL_NO_ATA_1X),
87e5797a3dSHans de Goede 
883ca8c717SHans de Goede /* Reported-by: Hans de Goede <hdegoede@redhat.com> */
893ca8c717SHans de Goede UNUSUAL_DEV(0x0bc2, 0xa0a4, 0x0000, 0x9999,
903ca8c717SHans de Goede 		"Seagate",
913ca8c717SHans de Goede 		"Backup Plus Desk",
923ca8c717SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
933ca8c717SHans de Goede 		US_FL_NO_ATA_1X),
943ca8c717SHans de Goede 
95f9554a6bSHans de Goede /* https://bbs.archlinux.org/viewtopic.php?id=183190 */
96f9554a6bSHans de Goede UNUSUAL_DEV(0x0bc2, 0xab20, 0x0000, 0x9999,
97f9554a6bSHans de Goede 		"Seagate",
98f9554a6bSHans de Goede 		"Backup+ BK",
99f9554a6bSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
100f9554a6bSHans de Goede 		US_FL_NO_ATA_1X),
101f9554a6bSHans de Goede 
102aee0ce3aSHans de Goede /* https://bbs.archlinux.org/viewtopic.php?id=183190 */
103aee0ce3aSHans de Goede UNUSUAL_DEV(0x0bc2, 0xab21, 0x0000, 0x9999,
104aee0ce3aSHans de Goede 		"Seagate",
105aee0ce3aSHans de Goede 		"Backup+ BK",
106aee0ce3aSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
107aee0ce3aSHans de Goede 		US_FL_NO_ATA_1X),
108aee0ce3aSHans de Goede 
1093ca8c717SHans de Goede /* Reported-by: G. Richard Bellamy <rbellamy@pteradigm.com> */
1103ca8c717SHans de Goede UNUSUAL_DEV(0x0bc2, 0xab2a, 0x0000, 0x9999,
1113ca8c717SHans de Goede 		"Seagate",
1123ca8c717SHans de Goede 		"BUP Fast HDD",
1133ca8c717SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1143ca8c717SHans de Goede 		US_FL_NO_ATA_1X),
1153ca8c717SHans de Goede 
11659e980efSHans de Goede /* Reported-by: Tom Arild Naess <tanaess@gmail.com> */
11759e980efSHans de Goede UNUSUAL_DEV(0x152d, 0x0539, 0x0000, 0x9999,
11859e980efSHans de Goede 		"JMicron",
11959e980efSHans de Goede 		"JMS539",
12059e980efSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
12159e980efSHans de Goede 		US_FL_NO_REPORT_OPCODES),
12259e980efSHans de Goede 
123734016b0SHans de Goede /* Reported-by: Claudio Bizzarri <claudio.bizzarri@gmail.com> */
124734016b0SHans de Goede UNUSUAL_DEV(0x152d, 0x0567, 0x0000, 0x9999,
125734016b0SHans de Goede 		"JMicron",
126734016b0SHans de Goede 		"JMS567",
127734016b0SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
128734016b0SHans de Goede 		US_FL_NO_REPORT_OPCODES),
129710f1bf1SHans de Goede 
130673029feSHans de Goede /* Reported-by: Hans de Goede <hdegoede@redhat.com> */
131673029feSHans de Goede UNUSUAL_DEV(0x2109, 0x0711, 0x0000, 0x9999,
132673029feSHans de Goede 		"VIA",
133673029feSHans de Goede 		"VL711",
134673029feSHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
135673029feSHans de Goede 		US_FL_NO_ATA_1X),
1368daee135SHans de Goede 
137c6fa3945SHans de Goede /* Reported-by: Takeo Nakayama <javhera@gmx.com> */
138c6fa3945SHans de Goede UNUSUAL_DEV(0x357d, 0x7788, 0x0000, 0x9999,
139c6fa3945SHans de Goede 		"JMicron",
140c6fa3945SHans de Goede 		"JMS566",
141c6fa3945SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
142c6fa3945SHans de Goede 		US_FL_NO_REPORT_OPCODES),
143c6fa3945SHans de Goede 
1448daee135SHans de Goede /* Reported-by: Hans de Goede <hdegoede@redhat.com> */
1458daee135SHans de Goede UNUSUAL_DEV(0x4971, 0x1012, 0x0000, 0x9999,
1468daee135SHans de Goede 		"Hitachi",
1478daee135SHans de Goede 		"External HDD",
1488daee135SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1498daee135SHans de Goede 		US_FL_IGNORE_UAS),
1508a870880SHans de Goede 
1518a870880SHans de Goede /* Reported-by: Richard Henderson <rth@redhat.com> */
1528a870880SHans de Goede UNUSUAL_DEV(0x4971, 0x8017, 0x0000, 0x9999,
1538a870880SHans de Goede 		"SimpleTech",
1548a870880SHans de Goede 		"External HDD",
1558a870880SHans de Goede 		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1568a870880SHans de Goede 		US_FL_NO_REPORT_OPCODES),
157