18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0+ */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Driver for USB Attached SCSI devices - Unusual Devices File
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci *   (c) 2013 Hans de Goede <hdegoede@redhat.com>
68c2ecf20Sopenharmony_ci *
78c2ecf20Sopenharmony_ci * Based on the same file for the usb-storage driver, which is:
88c2ecf20Sopenharmony_ci *   (c) 2000-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
98c2ecf20Sopenharmony_ci *   (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc.
108c2ecf20Sopenharmony_ci */
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci/*
138c2ecf20Sopenharmony_ci * IMPORTANT NOTE: This file must be included in another file which defines
148c2ecf20Sopenharmony_ci * a UNUSUAL_DEV macro before this file is included.
158c2ecf20Sopenharmony_ci */
168c2ecf20Sopenharmony_ci
178c2ecf20Sopenharmony_ci/*
188c2ecf20Sopenharmony_ci * If you edit this file, please try to keep it sorted first by VendorID,
198c2ecf20Sopenharmony_ci * then by ProductID.
208c2ecf20Sopenharmony_ci *
218c2ecf20Sopenharmony_ci * If you want to add an entry for this file, be sure to include the
228c2ecf20Sopenharmony_ci * following information:
238c2ecf20Sopenharmony_ci *	- a patch that adds the entry for your device, including your
248c2ecf20Sopenharmony_ci *	  email address right above the entry (plus maybe a brief
258c2ecf20Sopenharmony_ci *	  explanation of the reason for the entry),
268c2ecf20Sopenharmony_ci *	- lsusb -v output for the device
278c2ecf20Sopenharmony_ci * Send your submission to Hans de Goede <hdegoede@redhat.com>
288c2ecf20Sopenharmony_ci * and don't forget to CC: the USB development list <linux-usb@vger.kernel.org>
298c2ecf20Sopenharmony_ci */
308c2ecf20Sopenharmony_ci
318c2ecf20Sopenharmony_ci/* Reported-by: Till Dörges <doerges@pre-sense.de> */
328c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x054c, 0x087d, 0x0000, 0x9999,
338c2ecf20Sopenharmony_ci		"Sony",
348c2ecf20Sopenharmony_ci		"PSZ-HA*",
358c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
368c2ecf20Sopenharmony_ci		US_FL_NO_REPORT_OPCODES),
378c2ecf20Sopenharmony_ci
388c2ecf20Sopenharmony_ci/*
398c2ecf20Sopenharmony_ci *  Initially Reported-by: Julian Groß <julian.g@posteo.de>
408c2ecf20Sopenharmony_ci *  Further reports David C. Partridge <david.partridge@perdrix.co.uk>
418c2ecf20Sopenharmony_ci */
428c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x059f, 0x105f, 0x0000, 0x9999,
438c2ecf20Sopenharmony_ci		"LaCie",
448c2ecf20Sopenharmony_ci		"2Big Quadra USB3",
458c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
468c2ecf20Sopenharmony_ci		US_FL_NO_REPORT_OPCODES | US_FL_NO_SAME),
478c2ecf20Sopenharmony_ci
488c2ecf20Sopenharmony_ci/* Reported-by: Julian Sikorski <belegdol@gmail.com> */
498c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x059f, 0x1061, 0x0000, 0x9999,
508c2ecf20Sopenharmony_ci		"LaCie",
518c2ecf20Sopenharmony_ci		"Rugged USB3-FW",
528c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
538c2ecf20Sopenharmony_ci		US_FL_NO_REPORT_OPCODES | US_FL_NO_SAME),
548c2ecf20Sopenharmony_ci
558c2ecf20Sopenharmony_ci/* Reported-by: Hongling Zeng <zenghongling@kylinos.cn> */
568c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x090c, 0x2000, 0x0000, 0x9999,
578c2ecf20Sopenharmony_ci		"Hiksemi",
588c2ecf20Sopenharmony_ci		"External HDD",
598c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
608c2ecf20Sopenharmony_ci		US_FL_IGNORE_UAS),
618c2ecf20Sopenharmony_ci
628c2ecf20Sopenharmony_ci/*
638c2ecf20Sopenharmony_ci * Apricorn USB3 dongle sometimes returns "USBSUSBSUSBS" in response to SCSI
648c2ecf20Sopenharmony_ci * commands in UAS mode.  Observed with the 1.28 firmware; are there others?
658c2ecf20Sopenharmony_ci */
668c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x0984, 0x0301, 0x0128, 0x0128,
678c2ecf20Sopenharmony_ci		"Apricorn",
688c2ecf20Sopenharmony_ci		"",
698c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
708c2ecf20Sopenharmony_ci		US_FL_IGNORE_UAS),
718c2ecf20Sopenharmony_ci
728c2ecf20Sopenharmony_ci/* Reported-by: Tom Hu <huxiaoying@kylinos.cn> */
738c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x0b05, 0x1932, 0x0000, 0x9999,
748c2ecf20Sopenharmony_ci		"ASUS",
758c2ecf20Sopenharmony_ci		"External HDD",
768c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
778c2ecf20Sopenharmony_ci		US_FL_IGNORE_UAS),
788c2ecf20Sopenharmony_ci
798c2ecf20Sopenharmony_ci/* Reported-by: David Webb <djw@noc.ac.uk> */
808c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x0bc2, 0x331a, 0x0000, 0x9999,
818c2ecf20Sopenharmony_ci		"Seagate",
828c2ecf20Sopenharmony_ci		"Expansion Desk",
838c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
848c2ecf20Sopenharmony_ci		US_FL_NO_REPORT_LUNS),
858c2ecf20Sopenharmony_ci
868c2ecf20Sopenharmony_ci/* Reported-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> */
878c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x13fd, 0x3940, 0x0000, 0x9999,
888c2ecf20Sopenharmony_ci		"Initio Corporation",
898c2ecf20Sopenharmony_ci		"INIC-3069",
908c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
918c2ecf20Sopenharmony_ci		US_FL_NO_ATA_1X | US_FL_IGNORE_RESIDUE),
928c2ecf20Sopenharmony_ci
938c2ecf20Sopenharmony_ci/* Reported-by: Tom Arild Naess <tanaess@gmail.com> */
948c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x152d, 0x0539, 0x0000, 0x9999,
958c2ecf20Sopenharmony_ci		"JMicron",
968c2ecf20Sopenharmony_ci		"JMS539",
978c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
988c2ecf20Sopenharmony_ci		US_FL_NO_REPORT_OPCODES),
998c2ecf20Sopenharmony_ci
1008c2ecf20Sopenharmony_ci/* Reported-by: Claudio Bizzarri <claudio.bizzarri@gmail.com> */
1018c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x152d, 0x0567, 0x0000, 0x9999,
1028c2ecf20Sopenharmony_ci		"JMicron",
1038c2ecf20Sopenharmony_ci		"JMS567",
1048c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1058c2ecf20Sopenharmony_ci		US_FL_BROKEN_FUA | US_FL_NO_REPORT_OPCODES),
1068c2ecf20Sopenharmony_ci
1078c2ecf20Sopenharmony_ci/* Reported-by: David Kozub <zub@linux.fjfi.cvut.cz> */
1088c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x152d, 0x0578, 0x0000, 0x9999,
1098c2ecf20Sopenharmony_ci		"JMicron",
1108c2ecf20Sopenharmony_ci		"JMS567",
1118c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1128c2ecf20Sopenharmony_ci		US_FL_BROKEN_FUA),
1138c2ecf20Sopenharmony_ci
1148c2ecf20Sopenharmony_ci/* Reported by: Yaroslav Furman <yaro330@gmail.com> */
1158c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x152d, 0x0583, 0x0000, 0x9999,
1168c2ecf20Sopenharmony_ci		"JMicron",
1178c2ecf20Sopenharmony_ci		"JMS583Gen 2",
1188c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1198c2ecf20Sopenharmony_ci		US_FL_NO_REPORT_OPCODES),
1208c2ecf20Sopenharmony_ci
1218c2ecf20Sopenharmony_ci/* Reported-by: Thinh Nguyen <thinhn@synopsys.com> */
1228c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x154b, 0xf00b, 0x0000, 0x9999,
1238c2ecf20Sopenharmony_ci		"PNY",
1248c2ecf20Sopenharmony_ci		"Pro Elite SSD",
1258c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1268c2ecf20Sopenharmony_ci		US_FL_NO_ATA_1X),
1278c2ecf20Sopenharmony_ci
1288c2ecf20Sopenharmony_ci/* Reported-by: Thinh Nguyen <thinhn@synopsys.com> */
1298c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x154b, 0xf00d, 0x0000, 0x9999,
1308c2ecf20Sopenharmony_ci		"PNY",
1318c2ecf20Sopenharmony_ci		"Pro Elite SSD",
1328c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1338c2ecf20Sopenharmony_ci		US_FL_NO_ATA_1X),
1348c2ecf20Sopenharmony_ci
1358c2ecf20Sopenharmony_ci/* Reported-by: Hongling Zeng <zenghongling@kylinos.cn> */
1368c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x17ef, 0x3899, 0x0000, 0x9999,
1378c2ecf20Sopenharmony_ci		"Thinkplus",
1388c2ecf20Sopenharmony_ci		"External HDD",
1398c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1408c2ecf20Sopenharmony_ci		US_FL_IGNORE_UAS),
1418c2ecf20Sopenharmony_ci
1428c2ecf20Sopenharmony_ci/* Reported-by: Hans de Goede <hdegoede@redhat.com> */
1438c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x2109, 0x0711, 0x0000, 0x9999,
1448c2ecf20Sopenharmony_ci		"VIA",
1458c2ecf20Sopenharmony_ci		"VL711",
1468c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1478c2ecf20Sopenharmony_ci		US_FL_NO_ATA_1X),
1488c2ecf20Sopenharmony_ci
1498c2ecf20Sopenharmony_ci/* Reported-by: Icenowy Zheng <icenowy@aosc.io> */
1508c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x2537, 0x1068, 0x0000, 0x9999,
1518c2ecf20Sopenharmony_ci		"Norelsys",
1528c2ecf20Sopenharmony_ci		"NS1068X",
1538c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1548c2ecf20Sopenharmony_ci		US_FL_IGNORE_UAS),
1558c2ecf20Sopenharmony_ci
1568c2ecf20Sopenharmony_ci/*
1578c2ecf20Sopenharmony_ci * Initially Reported-by: Takeo Nakayama <javhera@gmx.com>
1588c2ecf20Sopenharmony_ci * UAS Ignore Reported by Steven Ellis <sellis@redhat.com>
1598c2ecf20Sopenharmony_ci */
1608c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x357d, 0x7788, 0x0000, 0x9999,
1618c2ecf20Sopenharmony_ci		"JMicron",
1628c2ecf20Sopenharmony_ci		"JMS566",
1638c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1648c2ecf20Sopenharmony_ci		US_FL_NO_REPORT_OPCODES | US_FL_IGNORE_UAS),
1658c2ecf20Sopenharmony_ci
1668c2ecf20Sopenharmony_ci/* Reported-by: Hans de Goede <hdegoede@redhat.com> */
1678c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x4971, 0x1012, 0x0000, 0x9999,
1688c2ecf20Sopenharmony_ci		"Hitachi",
1698c2ecf20Sopenharmony_ci		"External HDD",
1708c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1718c2ecf20Sopenharmony_ci		US_FL_IGNORE_UAS),
1728c2ecf20Sopenharmony_ci
1738c2ecf20Sopenharmony_ci/* Reported-by: Richard Henderson <rth@redhat.com> */
1748c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x4971, 0x8017, 0x0000, 0x9999,
1758c2ecf20Sopenharmony_ci		"SimpleTech",
1768c2ecf20Sopenharmony_ci		"External HDD",
1778c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1788c2ecf20Sopenharmony_ci		US_FL_NO_REPORT_OPCODES),
1798c2ecf20Sopenharmony_ci
1808c2ecf20Sopenharmony_ci/* "G-DRIVE" external HDD hangs on write without these.
1818c2ecf20Sopenharmony_ci * Patch submitted by Alexander Kappner <agk@godking.net>
1828c2ecf20Sopenharmony_ci */
1838c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x4971, 0x8024, 0x0000, 0x9999,
1848c2ecf20Sopenharmony_ci		"SimpleTech",
1858c2ecf20Sopenharmony_ci		"External HDD",
1868c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, NULL,
1878c2ecf20Sopenharmony_ci		US_FL_ALWAYS_SYNC),
188