diff options
author | Stephan Günther <guenther@tum.de> | 2015-12-01 15:23:22 -0500 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2015-12-01 15:23:22 -0500 |
commit | 1f390c1fde3a96974784be53cb3a645da3e4849c (patch) | |
tree | d84e25cbfbdab69b8b12da857557a20a232b8e6d | |
parent | dbac117542b7e814245c43daa638a3626230cb2a (diff) |
nvme: temporary fix for Apple controller reset
Recent patches added basic support for the Apple NVMe controller but
still cause resets and data corruption on that particular controller
when a specific pattern of read/flush commands occurs. Limiting the
queue depth to 2 works around that issue.
This patch enforces that limit only for the Apple controller and is
considered a temporary fix until we find the root source of that
problem.
Signed-off-by: Stephan Günther <guenther@tum.de>
Signed-off-by: Maurice Leclaire <leclaire@in.tum.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
-rw-r--r-- | drivers/nvme/host/pci.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index f3b53af789ef..9e294ff4e652 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c | |||
@@ -2708,6 +2708,18 @@ static int nvme_dev_map(struct nvme_dev *dev) | |||
2708 | dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH); | 2708 | dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH); |
2709 | dev->db_stride = 1 << NVME_CAP_STRIDE(cap); | 2709 | dev->db_stride = 1 << NVME_CAP_STRIDE(cap); |
2710 | dev->dbs = ((void __iomem *)dev->bar) + 4096; | 2710 | dev->dbs = ((void __iomem *)dev->bar) + 4096; |
2711 | |||
2712 | /* | ||
2713 | * Temporary fix for the Apple controller found in the MacBook8,1 and | ||
2714 | * some MacBook7,1 to avoid controller resets and data loss. | ||
2715 | */ | ||
2716 | if (pdev->vendor == PCI_VENDOR_ID_APPLE && pdev->device == 0x2001) { | ||
2717 | dev->q_depth = 2; | ||
2718 | dev_warn(dev->dev, "detected Apple NVMe controller, set " | ||
2719 | "queue depth=%u to work around controller resets\n", | ||
2720 | dev->q_depth); | ||
2721 | } | ||
2722 | |||
2711 | if (readl(&dev->bar->vs) >= NVME_VS(1, 2)) | 2723 | if (readl(&dev->bar->vs) >= NVME_VS(1, 2)) |
2712 | dev->cmb = nvme_map_cmb(dev); | 2724 | dev->cmb = nvme_map_cmb(dev); |
2713 | 2725 | ||