diff options
author | Mark Knibbs <markk@clara.co.uk> | 2014-09-23 06:20:17 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-24 01:29:27 -0400 |
commit | 57cde01a7b8111cdd43b6a261763aad1ead8161c (patch) | |
tree | 77a3a01fe5c85c3c35c26ca7b5e97fbf588b62b5 | |
parent | bda9893c50fb56253d3c206c14e3f933e5f68b3c (diff) |
storage: Add quirks for Castlewood and Double-H USB-SCSI converters
Castlewood Systems supplied various models of USB-SCSI converter with their
ORB external removable-media drive. The ORB Windows and Macintosh drivers
support six USB IDs:
084B:A001 [VID 084B is Castlewood Systems]
04E6:0002 (*) ORB USB Smart Cable P/N 88205-001 (generic SCM ID)
2027:A001 Double-H Technology DH-2000SC
1822:0001 (*) Ariston iConnect/iSCSI
07AF:0004 (*) Microtech XpressSCSI (25-pin)
07AF:0005 (*) Microtech XpressSCSI (50-pin)
*: quirk already in unusual-devs.h
[Apparently the official VID for Double-H Technology is 0x07EB = 2027
decimal. That's another hex/decimal mix-up with these SCM-based products
(in addition to the Ariston and Entrega ones). Perhaps the USB-IF informed
companies of their allocated VID in decimal, but they assumed it was hex?
It seems all Entrega products used VID 0x1645, not just the USB-SCSI
converter.]
Double-H Technology Co., Ltd. produced a USB-SCSI converter, model
DH-2000SC, which is probably the one supported by the ORB drivers. Perhaps
the Castlewood-bundled product had a different label or PID though?
Castlewood mentioned Conmate as being one type of USB-SCSI converter.
Conmate and Double-H seem related somehow; both company addresses in the
same road, and at one point the Conmate web site mentioned DH-2000H4,
DH-200D4/DH-2000C4 as models of USB hub (DH short for Double-H presumably).
Conmate did show a USB-SCSI converter model CM-660 on their web site at one
point. My guess is that was identical to the DH-2000SC.
Mention of the Double-H product:
http://web.archive.org/web/20010221010141/http://www.doubleh.com.tw/dh-2000sc.htm
The only picture I could find is at
http://jp.acesuppliers.com/catalog/j64/component/page03.html
The casing design looks the same as my ORB USB Smart Cable which has ID
04E6:0002.
Anyway, that's enough rambling. Here's the patch.
storage: Add quirks for Castlewood and Double-H USB-SCSI converters
Add quirks for two SCM-based USB-SCSI converters which were bundled with
some Castlewood ORB removable drives. Without the quirk only the (single)
drive with SCSI ID 0 can be accessed.
Signed-off-by: Mark Knibbs <markk@clara.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/storage/unusual_devs.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 4a5c68a47e46..b065398c5566 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h | |||
@@ -1099,6 +1099,13 @@ UNUSUAL_DEV( 0x0840, 0x0085, 0x0001, 0x0001, | |||
1099 | USB_SC_DEVICE, USB_PR_DEVICE, NULL, | 1099 | USB_SC_DEVICE, USB_PR_DEVICE, NULL, |
1100 | US_FL_FIX_CAPACITY), | 1100 | US_FL_FIX_CAPACITY), |
1101 | 1101 | ||
1102 | /* Supplied with some Castlewood ORB removable drives */ | ||
1103 | UNUSUAL_DEV( 0x084b, 0xa001, 0x0000, 0x9999, | ||
1104 | "Castlewood Systems", | ||
1105 | "USB to SCSI cable", | ||
1106 | USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, | ||
1107 | US_FL_SCM_MULT_TARG ), | ||
1108 | |||
1102 | /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. | 1109 | /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>. |
1103 | * Flag will support Bulk devices which use a standards-violating 32-byte | 1110 | * Flag will support Bulk devices which use a standards-violating 32-byte |
1104 | * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with | 1111 | * Command Block Wrapper. Here, the "DC2MEGA" cameras (several brands) with |
@@ -2063,6 +2070,13 @@ UNUSUAL_DEV( 0x1e74, 0x4621, 0x0000, 0x0000, | |||
2063 | USB_SC_DEVICE, USB_PR_DEVICE, NULL, | 2070 | USB_SC_DEVICE, USB_PR_DEVICE, NULL, |
2064 | US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ), | 2071 | US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ), |
2065 | 2072 | ||
2073 | /* Supplied with some Castlewood ORB removable drives */ | ||
2074 | UNUSUAL_DEV( 0x2027, 0xa001, 0x0000, 0x9999, | ||
2075 | "Double-H Technology", | ||
2076 | "USB to SCSI Intelligent Cable", | ||
2077 | USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_euscsi_init, | ||
2078 | US_FL_SCM_MULT_TARG ), | ||
2079 | |||
2066 | UNUSUAL_DEV( 0x2116, 0x0320, 0x0001, 0x0001, | 2080 | UNUSUAL_DEV( 0x2116, 0x0320, 0x0001, 0x0001, |
2067 | "ST", | 2081 | "ST", |
2068 | "2A", | 2082 | "2A", |