Skip to content

Commit cc2750d

Browse files
committed
drivers/nvme: Add quirks for WDC Blue SN550 15b7:5009
This commit adds NVME_QUIRK_NO_DEEPEST_PS for WDC Blue SN550. a user Jack Rio talk to me that the problem and solve with nvme_core.default_ps_max_latency_us=0, so add the quirk. I also found some report in the following link. Log: lspci -nn | grep -i memory 03:00.0 Non-Volatile memory controller [0108]: Sandisk Corp SanDisk Ultra 3D / WD PC SN530, IX SN530, Blue SN550 NVMe SSD (DRAM-less) [15b7:5009] (rev 01) Link: https://bugzilla.kernel.org/show_bug.cgi?id=208123 Signed-off-by: Wentao Guan <guanwentao@uniontech.com>
1 parent 7616b7d commit cc2750d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

drivers/nvme/host/pci.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3453,6 +3453,8 @@ static const struct pci_device_id nvme_id_table[] = {
34533453
NVME_QUIRK_IGNORE_DEV_SUBNQN, },
34543454
{ PCI_DEVICE(0x15b7, 0x5008), /* Sandisk SN530 */
34553455
.driver_data = NVME_QUIRK_BROKEN_MSI },
3456+
{ PCI_DEVICE(0x15b7, 0x5009), /* Sandisk SN550 */
3457+
.driver_data = NVME_QUIRK_NO_DEEPEST_PS },
34563458
{ PCI_DEVICE(0x1987, 0x5012), /* Phison E12 */
34573459
.driver_data = NVME_QUIRK_BOGUS_NID, },
34583460
{ PCI_DEVICE(0x1987, 0x5016), /* Phison E16 */

0 commit comments

Comments
 (0)