diff options
author | Tobias Jakobi <tjakobi@math.uni-bielefeld.de> | 2017-04-04 15:32:38 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-12 06:41:22 -0400 |
commit | af11789a05485a0ddc6c5d4e2b9a658ff3c2e7bf (patch) | |
tree | 405e0e13031ab797c151cc5be28b08bc2c8bb2b9 | |
parent | e5525c7419f16e75c31dd5eaa25c375882ec99bd (diff) |
usb-storage: Add ignore-residue quirk for Initio INIC-3619
[ Upstream commit d595259fbb7a7afed241b1afb2c4fe4b47de47fa ]
This USB-SATA bridge chip is used in a StarTech enclosure for
optical drives.
Without the quirk MakeMKV fails during the key exchange with an
installed BluRay drive:
> Error 'Scsi error - ILLEGAL REQUEST:COPY PROTECTION KEY EXCHANGE FAILURE - KEY NOT ESTABLISHED'
> occurred while issuing SCSI command AD010..080002400 to device 'SG:dev_11:2'
Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
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 16cc18369111..9129f6cb8230 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h | |||
@@ -2071,6 +2071,20 @@ UNUSUAL_DEV( 0x1370, 0x6828, 0x0110, 0x0110, | |||
2071 | USB_SC_DEVICE, USB_PR_DEVICE, NULL, | 2071 | USB_SC_DEVICE, USB_PR_DEVICE, NULL, |
2072 | US_FL_IGNORE_RESIDUE ), | 2072 | US_FL_IGNORE_RESIDUE ), |
2073 | 2073 | ||
2074 | /* | ||
2075 | * Reported by Tobias Jakobi <tjakobi@math.uni-bielefeld.de> | ||
2076 | * The INIC-3619 bridge is used in the StarTech SLSODDU33B | ||
2077 | * SATA-USB enclosure for slimline optical drives. | ||
2078 | * | ||
2079 | * The quirk enables MakeMKV to properly exchange keys with | ||
2080 | * an installed BD drive. | ||
2081 | */ | ||
2082 | UNUSUAL_DEV( 0x13fd, 0x3609, 0x0209, 0x0209, | ||
2083 | "Initio Corporation", | ||
2084 | "INIC-3619", | ||
2085 | USB_SC_DEVICE, USB_PR_DEVICE, NULL, | ||
2086 | US_FL_IGNORE_RESIDUE ), | ||
2087 | |||
2074 | /* Reported by Qinglin Ye <yestyle@gmail.com> */ | 2088 | /* Reported by Qinglin Ye <yestyle@gmail.com> */ |
2075 | UNUSUAL_DEV( 0x13fe, 0x3600, 0x0100, 0x0100, | 2089 | UNUSUAL_DEV( 0x13fe, 0x3600, 0x0100, 0x0100, |
2076 | "Kingston", | 2090 | "Kingston", |