nvme-pci: Rate limit the nvme timeout warnings
[linux-2.6-block.git] / drivers / nvme / host / pci.c
CommitLineData
b60503ba
MW
1/*
2 * NVM Express device driver
6eb0d698 3 * Copyright (c) 2011-2014, Intel Corporation.
b60503ba
MW
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
b60503ba
MW
13 */
14
a0a3408e 15#include <linux/aer.h>
18119775 16#include <linux/async.h>
b60503ba 17#include <linux/blkdev.h>
a4aea562 18#include <linux/blk-mq.h>
dca51e78 19#include <linux/blk-mq-pci.h>
ff5350a8 20#include <linux/dmi.h>
b60503ba
MW
21#include <linux/init.h>
22#include <linux/interrupt.h>
23#include <linux/io.h>
b60503ba
MW
24#include <linux/mm.h>
25#include <linux/module.h>
77bf25ea 26#include <linux/mutex.h>
d0877473 27#include <linux/once.h>
b60503ba 28#include <linux/pci.h>
e1e5e564 29#include <linux/t10-pi.h>
b60503ba 30#include <linux/types.h>
2f8e2c87 31#include <linux/io-64-nonatomic-lo-hi.h>
a98e58e5 32#include <linux/sed-opal.h>
797a796a 33
f11bb3e2
CH
34#include "nvme.h"
35
b60503ba
MW
36#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
37#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
c965809c 38
a7a7cbe3 39#define SGES_PER_PAGE (PAGE_SIZE / sizeof(struct nvme_sgl_desc))
9d43cf64 40
58ffacb5
MW
41static int use_threaded_interrupts;
42module_param(use_threaded_interrupts, int, 0);
43
8ffaadf7
JD
44static bool use_cmb_sqes = true;
45module_param(use_cmb_sqes, bool, 0644);
46MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
47
87ad72a5
CH
48static unsigned int max_host_mem_size_mb = 128;
49module_param(max_host_mem_size_mb, uint, 0444);
50MODULE_PARM_DESC(max_host_mem_size_mb,
51 "Maximum Host Memory Buffer (HMB) size per controller (in MiB)");
1fa6aead 52
a7a7cbe3
CK
53static unsigned int sgl_threshold = SZ_32K;
54module_param(sgl_threshold, uint, 0644);
55MODULE_PARM_DESC(sgl_threshold,
56 "Use SGLs when average request segment size is larger or equal to "
57 "this size. Use 0 to disable SGLs.");
58
b27c1e68 59static int io_queue_depth_set(const char *val, const struct kernel_param *kp);
60static const struct kernel_param_ops io_queue_depth_ops = {
61 .set = io_queue_depth_set,
62 .get = param_get_int,
63};
64
65static int io_queue_depth = 1024;
66module_param_cb(io_queue_depth, &io_queue_depth_ops, &io_queue_depth, 0644);
67MODULE_PARM_DESC(io_queue_depth, "set io queue depth, should >= 2");
68
1c63dc66
CH
69struct nvme_dev;
70struct nvme_queue;
b3fffdef 71
a5cdb68c 72static void nvme_dev_disable(struct nvme_dev *dev, bool shutdown);
d4b4ff8e 73
1c63dc66
CH
74/*
75 * Represents an NVM Express device. Each nvme_dev is a PCI function.
76 */
77struct nvme_dev {
147b27e4 78 struct nvme_queue *queues;
1c63dc66
CH
79 struct blk_mq_tag_set tagset;
80 struct blk_mq_tag_set admin_tagset;
81 u32 __iomem *dbs;
82 struct device *dev;
83 struct dma_pool *prp_page_pool;
84 struct dma_pool *prp_small_pool;
1c63dc66
CH
85 unsigned online_queues;
86 unsigned max_qid;
22b55601 87 unsigned int num_vecs;
1c63dc66
CH
88 int q_depth;
89 u32 db_stride;
1c63dc66 90 void __iomem *bar;
97f6ef64 91 unsigned long bar_mapped_size;
5c8809e6 92 struct work_struct remove_work;
77bf25ea 93 struct mutex shutdown_lock;
1c63dc66 94 bool subsystem;
1c63dc66 95 void __iomem *cmb;
8969f1f8 96 pci_bus_addr_t cmb_bus_addr;
1c63dc66
CH
97 u64 cmb_size;
98 u32 cmbsz;
202021c1 99 u32 cmbloc;
1c63dc66 100 struct nvme_ctrl ctrl;
db3cbfff 101 struct completion ioq_wait;
87ad72a5
CH
102
103 /* shadow doorbell buffer support: */
f9f38e33
HK
104 u32 *dbbuf_dbs;
105 dma_addr_t dbbuf_dbs_dma_addr;
106 u32 *dbbuf_eis;
107 dma_addr_t dbbuf_eis_dma_addr;
87ad72a5
CH
108
109 /* host memory buffer support: */
110 u64 host_mem_size;
111 u32 nr_host_mem_descs;
4033f35d 112 dma_addr_t host_mem_descs_dma;
87ad72a5
CH
113 struct nvme_host_mem_buf_desc *host_mem_descs;
114 void **host_mem_desc_bufs;
4d115420 115};
1fa6aead 116
b27c1e68 117static int io_queue_depth_set(const char *val, const struct kernel_param *kp)
118{
119 int n = 0, ret;
120
121 ret = kstrtoint(val, 10, &n);
122 if (ret != 0 || n < 2)
123 return -EINVAL;
124
125 return param_set_int(val, kp);
126}
127
f9f38e33
HK
128static inline unsigned int sq_idx(unsigned int qid, u32 stride)
129{
130 return qid * 2 * stride;
131}
132
133static inline unsigned int cq_idx(unsigned int qid, u32 stride)
134{
135 return (qid * 2 + 1) * stride;
136}
137
1c63dc66
CH
138static inline struct nvme_dev *to_nvme_dev(struct nvme_ctrl *ctrl)
139{
140 return container_of(ctrl, struct nvme_dev, ctrl);
141}
142
b60503ba
MW
143/*
144 * An NVM Express queue. Each device has at least two (one for admin
145 * commands and one for I/O commands).
146 */
147struct nvme_queue {
148 struct device *q_dmadev;
091b6092 149 struct nvme_dev *dev;
1ab0cd69 150 spinlock_t sq_lock;
b60503ba 151 struct nvme_command *sq_cmds;
8ffaadf7 152 struct nvme_command __iomem *sq_cmds_io;
1ab0cd69 153 spinlock_t cq_lock ____cacheline_aligned_in_smp;
b60503ba 154 volatile struct nvme_completion *cqes;
42483228 155 struct blk_mq_tags **tags;
b60503ba
MW
156 dma_addr_t sq_dma_addr;
157 dma_addr_t cq_dma_addr;
b60503ba
MW
158 u32 __iomem *q_db;
159 u16 q_depth;
6222d172 160 s16 cq_vector;
b60503ba
MW
161 u16 sq_tail;
162 u16 cq_head;
68fa9dbe 163 u16 last_cq_head;
c30341dc 164 u16 qid;
e9539f47 165 u8 cq_phase;
f9f38e33
HK
166 u32 *dbbuf_sq_db;
167 u32 *dbbuf_cq_db;
168 u32 *dbbuf_sq_ei;
169 u32 *dbbuf_cq_ei;
b60503ba
MW
170};
171
71bd150c
CH
172/*
173 * The nvme_iod describes the data in an I/O, including the list of PRP
174 * entries. You can't see it in this data structure because C doesn't let
f4800d6d 175 * me express that. Use nvme_init_iod to ensure there's enough space
71bd150c
CH
176 * allocated to store the PRP list.
177 */
178struct nvme_iod {
d49187e9 179 struct nvme_request req;
f4800d6d 180 struct nvme_queue *nvmeq;
a7a7cbe3 181 bool use_sgl;
f4800d6d 182 int aborted;
71bd150c 183 int npages; /* In the PRP list. 0 means small pool in use */
71bd150c
CH
184 int nents; /* Used in scatterlist */
185 int length; /* Of data, in bytes */
186 dma_addr_t first_dma;
bf684057 187 struct scatterlist meta_sg; /* metadata requires single contiguous buffer */
f4800d6d
CH
188 struct scatterlist *sg;
189 struct scatterlist inline_sg[0];
b60503ba
MW
190};
191
192/*
193 * Check we didin't inadvertently grow the command struct
194 */
195static inline void _nvme_check_size(void)
196{
197 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
198 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
199 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
200 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
201 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
f8ebf840 202 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
c30341dc 203 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
b60503ba 204 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
0add5e8e
JT
205 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != NVME_IDENTIFY_DATA_SIZE);
206 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != NVME_IDENTIFY_DATA_SIZE);
b60503ba 207 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
6ecec745 208 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
f9f38e33
HK
209 BUILD_BUG_ON(sizeof(struct nvme_dbbuf) != 64);
210}
211
212static inline unsigned int nvme_dbbuf_size(u32 stride)
213{
214 return ((num_possible_cpus() + 1) * 8 * stride);
215}
216
217static int nvme_dbbuf_dma_alloc(struct nvme_dev *dev)
218{
219 unsigned int mem_size = nvme_dbbuf_size(dev->db_stride);
220
221 if (dev->dbbuf_dbs)
222 return 0;
223
224 dev->dbbuf_dbs = dma_alloc_coherent(dev->dev, mem_size,
225 &dev->dbbuf_dbs_dma_addr,
226 GFP_KERNEL);
227 if (!dev->dbbuf_dbs)
228 return -ENOMEM;
229 dev->dbbuf_eis = dma_alloc_coherent(dev->dev, mem_size,
230 &dev->dbbuf_eis_dma_addr,
231 GFP_KERNEL);
232 if (!dev->dbbuf_eis) {
233 dma_free_coherent(dev->dev, mem_size,
234 dev->dbbuf_dbs, dev->dbbuf_dbs_dma_addr);
235 dev->dbbuf_dbs = NULL;
236 return -ENOMEM;
237 }
238
239 return 0;
240}
241
242static void nvme_dbbuf_dma_free(struct nvme_dev *dev)
243{
244 unsigned int mem_size = nvme_dbbuf_size(dev->db_stride);
245
246 if (dev->dbbuf_dbs) {
247 dma_free_coherent(dev->dev, mem_size,
248 dev->dbbuf_dbs, dev->dbbuf_dbs_dma_addr);
249 dev->dbbuf_dbs = NULL;
250 }
251 if (dev->dbbuf_eis) {
252 dma_free_coherent(dev->dev, mem_size,
253 dev->dbbuf_eis, dev->dbbuf_eis_dma_addr);
254 dev->dbbuf_eis = NULL;
255 }
256}
257
258static void nvme_dbbuf_init(struct nvme_dev *dev,
259 struct nvme_queue *nvmeq, int qid)
260{
261 if (!dev->dbbuf_dbs || !qid)
262 return;
263
264 nvmeq->dbbuf_sq_db = &dev->dbbuf_dbs[sq_idx(qid, dev->db_stride)];
265 nvmeq->dbbuf_cq_db = &dev->dbbuf_dbs[cq_idx(qid, dev->db_stride)];
266 nvmeq->dbbuf_sq_ei = &dev->dbbuf_eis[sq_idx(qid, dev->db_stride)];
267 nvmeq->dbbuf_cq_ei = &dev->dbbuf_eis[cq_idx(qid, dev->db_stride)];
268}
269
270static void nvme_dbbuf_set(struct nvme_dev *dev)
271{
272 struct nvme_command c;
273
274 if (!dev->dbbuf_dbs)
275 return;
276
277 memset(&c, 0, sizeof(c));
278 c.dbbuf.opcode = nvme_admin_dbbuf;
279 c.dbbuf.prp1 = cpu_to_le64(dev->dbbuf_dbs_dma_addr);
280 c.dbbuf.prp2 = cpu_to_le64(dev->dbbuf_eis_dma_addr);
281
282 if (nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0)) {
9bdcfb10 283 dev_warn(dev->ctrl.device, "unable to set dbbuf\n");
f9f38e33
HK
284 /* Free memory and continue on */
285 nvme_dbbuf_dma_free(dev);
286 }
287}
288
289static inline int nvme_dbbuf_need_event(u16 event_idx, u16 new_idx, u16 old)
290{
291 return (u16)(new_idx - event_idx - 1) < (u16)(new_idx - old);
292}
293
294/* Update dbbuf and return true if an MMIO is required */
295static bool nvme_dbbuf_update_and_check_event(u16 value, u32 *dbbuf_db,
296 volatile u32 *dbbuf_ei)
297{
298 if (dbbuf_db) {
299 u16 old_value;
300
301 /*
302 * Ensure that the queue is written before updating
303 * the doorbell in memory
304 */
305 wmb();
306
307 old_value = *dbbuf_db;
308 *dbbuf_db = value;
309
310 if (!nvme_dbbuf_need_event(*dbbuf_ei, value, old_value))
311 return false;
312 }
313
314 return true;
b60503ba
MW
315}
316
ac3dd5bd
JA
317/*
318 * Max size of iod being embedded in the request payload
319 */
320#define NVME_INT_PAGES 2
5fd4ce1b 321#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->ctrl.page_size)
ac3dd5bd
JA
322
323/*
324 * Will slightly overestimate the number of pages needed. This is OK
325 * as it only leads to a small amount of wasted memory for the lifetime of
326 * the I/O.
327 */
328static int nvme_npages(unsigned size, struct nvme_dev *dev)
329{
5fd4ce1b
CH
330 unsigned nprps = DIV_ROUND_UP(size + dev->ctrl.page_size,
331 dev->ctrl.page_size);
ac3dd5bd
JA
332 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
333}
334
a7a7cbe3
CK
335/*
336 * Calculates the number of pages needed for the SGL segments. For example a 4k
337 * page can accommodate 256 SGL descriptors.
338 */
339static int nvme_pci_npages_sgl(unsigned int num_seg)
ac3dd5bd 340{
a7a7cbe3 341 return DIV_ROUND_UP(num_seg * sizeof(struct nvme_sgl_desc), PAGE_SIZE);
f4800d6d 342}
ac3dd5bd 343
a7a7cbe3
CK
344static unsigned int nvme_pci_iod_alloc_size(struct nvme_dev *dev,
345 unsigned int size, unsigned int nseg, bool use_sgl)
f4800d6d 346{
a7a7cbe3
CK
347 size_t alloc_size;
348
349 if (use_sgl)
350 alloc_size = sizeof(__le64 *) * nvme_pci_npages_sgl(nseg);
351 else
352 alloc_size = sizeof(__le64 *) * nvme_npages(size, dev);
353
354 return alloc_size + sizeof(struct scatterlist) * nseg;
f4800d6d 355}
ac3dd5bd 356
a7a7cbe3 357static unsigned int nvme_pci_cmd_size(struct nvme_dev *dev, bool use_sgl)
f4800d6d 358{
a7a7cbe3
CK
359 unsigned int alloc_size = nvme_pci_iod_alloc_size(dev,
360 NVME_INT_BYTES(dev), NVME_INT_PAGES,
361 use_sgl);
362
363 return sizeof(struct nvme_iod) + alloc_size;
ac3dd5bd
JA
364}
365
a4aea562
MB
366static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
367 unsigned int hctx_idx)
e85248e5 368{
a4aea562 369 struct nvme_dev *dev = data;
147b27e4 370 struct nvme_queue *nvmeq = &dev->queues[0];
a4aea562 371
42483228
KB
372 WARN_ON(hctx_idx != 0);
373 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
374 WARN_ON(nvmeq->tags);
375
a4aea562 376 hctx->driver_data = nvmeq;
42483228 377 nvmeq->tags = &dev->admin_tagset.tags[0];
a4aea562 378 return 0;
e85248e5
MW
379}
380
4af0e21c
KB
381static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
382{
383 struct nvme_queue *nvmeq = hctx->driver_data;
384
385 nvmeq->tags = NULL;
386}
387
a4aea562
MB
388static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
389 unsigned int hctx_idx)
b60503ba 390{
a4aea562 391 struct nvme_dev *dev = data;
147b27e4 392 struct nvme_queue *nvmeq = &dev->queues[hctx_idx + 1];
a4aea562 393
42483228
KB
394 if (!nvmeq->tags)
395 nvmeq->tags = &dev->tagset.tags[hctx_idx];
b60503ba 396
42483228 397 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
a4aea562
MB
398 hctx->driver_data = nvmeq;
399 return 0;
b60503ba
MW
400}
401
d6296d39
CH
402static int nvme_init_request(struct blk_mq_tag_set *set, struct request *req,
403 unsigned int hctx_idx, unsigned int numa_node)
b60503ba 404{
d6296d39 405 struct nvme_dev *dev = set->driver_data;
f4800d6d 406 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
0350815a 407 int queue_idx = (set == &dev->tagset) ? hctx_idx + 1 : 0;
147b27e4 408 struct nvme_queue *nvmeq = &dev->queues[queue_idx];
a4aea562
MB
409
410 BUG_ON(!nvmeq);
f4800d6d 411 iod->nvmeq = nvmeq;
a4aea562
MB
412 return 0;
413}
414
dca51e78
CH
415static int nvme_pci_map_queues(struct blk_mq_tag_set *set)
416{
417 struct nvme_dev *dev = set->driver_data;
418
22b55601
KB
419 return blk_mq_pci_map_queues(set, to_pci_dev(dev->dev),
420 dev->num_vecs > 1 ? 1 /* admin queue */ : 0);
dca51e78
CH
421}
422
b60503ba 423/**
adf68f21 424 * __nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
b60503ba
MW
425 * @nvmeq: The queue to use
426 * @cmd: The command to send
427 *
428 * Safe to use from interrupt context
429 */
e3f879bf
SB
430static void __nvme_submit_cmd(struct nvme_queue *nvmeq,
431 struct nvme_command *cmd)
b60503ba 432{
a4aea562
MB
433 u16 tail = nvmeq->sq_tail;
434
8ffaadf7
JD
435 if (nvmeq->sq_cmds_io)
436 memcpy_toio(&nvmeq->sq_cmds_io[tail], cmd, sizeof(*cmd));
437 else
438 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
439
b60503ba
MW
440 if (++tail == nvmeq->q_depth)
441 tail = 0;
f9f38e33
HK
442 if (nvme_dbbuf_update_and_check_event(tail, nvmeq->dbbuf_sq_db,
443 nvmeq->dbbuf_sq_ei))
444 writel(tail, nvmeq->q_db);
b60503ba 445 nvmeq->sq_tail = tail;
b60503ba
MW
446}
447
a7a7cbe3 448static void **nvme_pci_iod_list(struct request *req)
b60503ba 449{
f4800d6d 450 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
a7a7cbe3 451 return (void **)(iod->sg + blk_rq_nr_phys_segments(req));
b60503ba
MW
452}
453
955b1b5a
MI
454static inline bool nvme_pci_use_sgls(struct nvme_dev *dev, struct request *req)
455{
456 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
20469a37 457 int nseg = blk_rq_nr_phys_segments(req);
955b1b5a
MI
458 unsigned int avg_seg_size;
459
20469a37
KB
460 if (nseg == 0)
461 return false;
462
463 avg_seg_size = DIV_ROUND_UP(blk_rq_payload_bytes(req), nseg);
955b1b5a
MI
464
465 if (!(dev->ctrl.sgls & ((1 << 0) | (1 << 1))))
466 return false;
467 if (!iod->nvmeq->qid)
468 return false;
469 if (!sgl_threshold || avg_seg_size < sgl_threshold)
470 return false;
471 return true;
472}
473
fc17b653 474static blk_status_t nvme_init_iod(struct request *rq, struct nvme_dev *dev)
ac3dd5bd 475{
f4800d6d 476 struct nvme_iod *iod = blk_mq_rq_to_pdu(rq);
f9d03f96 477 int nseg = blk_rq_nr_phys_segments(rq);
b131c61d 478 unsigned int size = blk_rq_payload_bytes(rq);
ac3dd5bd 479
955b1b5a
MI
480 iod->use_sgl = nvme_pci_use_sgls(dev, rq);
481
f4800d6d 482 if (nseg > NVME_INT_PAGES || size > NVME_INT_BYTES(dev)) {
a7a7cbe3
CK
483 size_t alloc_size = nvme_pci_iod_alloc_size(dev, size, nseg,
484 iod->use_sgl);
485
486 iod->sg = kmalloc(alloc_size, GFP_ATOMIC);
f4800d6d 487 if (!iod->sg)
fc17b653 488 return BLK_STS_RESOURCE;
f4800d6d
CH
489 } else {
490 iod->sg = iod->inline_sg;
ac3dd5bd
JA
491 }
492
f4800d6d
CH
493 iod->aborted = 0;
494 iod->npages = -1;
495 iod->nents = 0;
496 iod->length = size;
f80ec966 497
fc17b653 498 return BLK_STS_OK;
ac3dd5bd
JA
499}
500
f4800d6d 501static void nvme_free_iod(struct nvme_dev *dev, struct request *req)
b60503ba 502{
f4800d6d 503 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
a7a7cbe3
CK
504 const int last_prp = dev->ctrl.page_size / sizeof(__le64) - 1;
505 dma_addr_t dma_addr = iod->first_dma, next_dma_addr;
506
eca18b23 507 int i;
eca18b23
MW
508
509 if (iod->npages == 0)
a7a7cbe3
CK
510 dma_pool_free(dev->prp_small_pool, nvme_pci_iod_list(req)[0],
511 dma_addr);
512
eca18b23 513 for (i = 0; i < iod->npages; i++) {
a7a7cbe3
CK
514 void *addr = nvme_pci_iod_list(req)[i];
515
516 if (iod->use_sgl) {
517 struct nvme_sgl_desc *sg_list = addr;
518
519 next_dma_addr =
520 le64_to_cpu((sg_list[SGES_PER_PAGE - 1]).addr);
521 } else {
522 __le64 *prp_list = addr;
523
524 next_dma_addr = le64_to_cpu(prp_list[last_prp]);
525 }
526
527 dma_pool_free(dev->prp_page_pool, addr, dma_addr);
528 dma_addr = next_dma_addr;
eca18b23 529 }
ac3dd5bd 530
f4800d6d
CH
531 if (iod->sg != iod->inline_sg)
532 kfree(iod->sg);
b4ff9c8d
KB
533}
534
52b68d7e 535#ifdef CONFIG_BLK_DEV_INTEGRITY
e1e5e564
KB
536static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
537{
538 if (be32_to_cpu(pi->ref_tag) == v)
539 pi->ref_tag = cpu_to_be32(p);
540}
541
542static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
543{
544 if (be32_to_cpu(pi->ref_tag) == p)
545 pi->ref_tag = cpu_to_be32(v);
546}
547
548/**
549 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
550 *
551 * The virtual start sector is the one that was originally submitted by the
552 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
553 * start sector may be different. Remap protection information to match the
554 * physical LBA on writes, and back to the original seed on reads.
555 *
556 * Type 0 and 3 do not have a ref tag, so no remapping required.
557 */
558static void nvme_dif_remap(struct request *req,
559 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
560{
561 struct nvme_ns *ns = req->rq_disk->private_data;
562 struct bio_integrity_payload *bip;
563 struct t10_pi_tuple *pi;
564 void *p, *pmap;
565 u32 i, nlb, ts, phys, virt;
566
567 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
568 return;
569
570 bip = bio_integrity(req->bio);
571 if (!bip)
572 return;
573
574 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
e1e5e564
KB
575
576 p = pmap;
577 virt = bip_get_seed(bip);
578 phys = nvme_block_nr(ns, blk_rq_pos(req));
579 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
ac6fc48c 580 ts = ns->disk->queue->integrity.tuple_size;
e1e5e564
KB
581
582 for (i = 0; i < nlb; i++, virt++, phys++) {
583 pi = (struct t10_pi_tuple *)p;
584 dif_swap(phys, virt, pi);
585 p += ts;
586 }
587 kunmap_atomic(pmap);
588}
52b68d7e
KB
589#else /* CONFIG_BLK_DEV_INTEGRITY */
590static void nvme_dif_remap(struct request *req,
591 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
592{
593}
594static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
595{
596}
597static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
598{
599}
52b68d7e
KB
600#endif
601
d0877473
KB
602static void nvme_print_sgl(struct scatterlist *sgl, int nents)
603{
604 int i;
605 struct scatterlist *sg;
606
607 for_each_sg(sgl, sg, nents, i) {
608 dma_addr_t phys = sg_phys(sg);
609 pr_warn("sg[%d] phys_addr:%pad offset:%d length:%d "
610 "dma_address:%pad dma_length:%d\n",
611 i, &phys, sg->offset, sg->length, &sg_dma_address(sg),
612 sg_dma_len(sg));
613 }
614}
615
a7a7cbe3
CK
616static blk_status_t nvme_pci_setup_prps(struct nvme_dev *dev,
617 struct request *req, struct nvme_rw_command *cmnd)
ff22b54f 618{
f4800d6d 619 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
99802a7a 620 struct dma_pool *pool;
b131c61d 621 int length = blk_rq_payload_bytes(req);
eca18b23 622 struct scatterlist *sg = iod->sg;
ff22b54f
MW
623 int dma_len = sg_dma_len(sg);
624 u64 dma_addr = sg_dma_address(sg);
5fd4ce1b 625 u32 page_size = dev->ctrl.page_size;
f137e0f1 626 int offset = dma_addr & (page_size - 1);
e025344c 627 __le64 *prp_list;
a7a7cbe3 628 void **list = nvme_pci_iod_list(req);
e025344c 629 dma_addr_t prp_dma;
eca18b23 630 int nprps, i;
ff22b54f 631
1d090624 632 length -= (page_size - offset);
5228b328
JS
633 if (length <= 0) {
634 iod->first_dma = 0;
a7a7cbe3 635 goto done;
5228b328 636 }
ff22b54f 637
1d090624 638 dma_len -= (page_size - offset);
ff22b54f 639 if (dma_len) {
1d090624 640 dma_addr += (page_size - offset);
ff22b54f
MW
641 } else {
642 sg = sg_next(sg);
643 dma_addr = sg_dma_address(sg);
644 dma_len = sg_dma_len(sg);
645 }
646
1d090624 647 if (length <= page_size) {
edd10d33 648 iod->first_dma = dma_addr;
a7a7cbe3 649 goto done;
e025344c
SMM
650 }
651
1d090624 652 nprps = DIV_ROUND_UP(length, page_size);
99802a7a
MW
653 if (nprps <= (256 / 8)) {
654 pool = dev->prp_small_pool;
eca18b23 655 iod->npages = 0;
99802a7a
MW
656 } else {
657 pool = dev->prp_page_pool;
eca18b23 658 iod->npages = 1;
99802a7a
MW
659 }
660
69d2b571 661 prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
b77954cb 662 if (!prp_list) {
edd10d33 663 iod->first_dma = dma_addr;
eca18b23 664 iod->npages = -1;
86eea289 665 return BLK_STS_RESOURCE;
b77954cb 666 }
eca18b23
MW
667 list[0] = prp_list;
668 iod->first_dma = prp_dma;
e025344c
SMM
669 i = 0;
670 for (;;) {
1d090624 671 if (i == page_size >> 3) {
e025344c 672 __le64 *old_prp_list = prp_list;
69d2b571 673 prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
eca18b23 674 if (!prp_list)
86eea289 675 return BLK_STS_RESOURCE;
eca18b23 676 list[iod->npages++] = prp_list;
7523d834
MW
677 prp_list[0] = old_prp_list[i - 1];
678 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
679 i = 1;
e025344c
SMM
680 }
681 prp_list[i++] = cpu_to_le64(dma_addr);
1d090624
KB
682 dma_len -= page_size;
683 dma_addr += page_size;
684 length -= page_size;
e025344c
SMM
685 if (length <= 0)
686 break;
687 if (dma_len > 0)
688 continue;
86eea289
KB
689 if (unlikely(dma_len < 0))
690 goto bad_sgl;
e025344c
SMM
691 sg = sg_next(sg);
692 dma_addr = sg_dma_address(sg);
693 dma_len = sg_dma_len(sg);
ff22b54f
MW
694 }
695
a7a7cbe3
CK
696done:
697 cmnd->dptr.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
698 cmnd->dptr.prp2 = cpu_to_le64(iod->first_dma);
699
86eea289
KB
700 return BLK_STS_OK;
701
702 bad_sgl:
d0877473
KB
703 WARN(DO_ONCE(nvme_print_sgl, iod->sg, iod->nents),
704 "Invalid SGL for payload:%d nents:%d\n",
705 blk_rq_payload_bytes(req), iod->nents);
86eea289 706 return BLK_STS_IOERR;
ff22b54f
MW
707}
708
a7a7cbe3
CK
709static void nvme_pci_sgl_set_data(struct nvme_sgl_desc *sge,
710 struct scatterlist *sg)
711{
712 sge->addr = cpu_to_le64(sg_dma_address(sg));
713 sge->length = cpu_to_le32(sg_dma_len(sg));
714 sge->type = NVME_SGL_FMT_DATA_DESC << 4;
715}
716
717static void nvme_pci_sgl_set_seg(struct nvme_sgl_desc *sge,
718 dma_addr_t dma_addr, int entries)
719{
720 sge->addr = cpu_to_le64(dma_addr);
721 if (entries < SGES_PER_PAGE) {
722 sge->length = cpu_to_le32(entries * sizeof(*sge));
723 sge->type = NVME_SGL_FMT_LAST_SEG_DESC << 4;
724 } else {
725 sge->length = cpu_to_le32(PAGE_SIZE);
726 sge->type = NVME_SGL_FMT_SEG_DESC << 4;
727 }
728}
729
730static blk_status_t nvme_pci_setup_sgls(struct nvme_dev *dev,
b0f2853b 731 struct request *req, struct nvme_rw_command *cmd, int entries)
a7a7cbe3
CK
732{
733 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
a7a7cbe3
CK
734 struct dma_pool *pool;
735 struct nvme_sgl_desc *sg_list;
736 struct scatterlist *sg = iod->sg;
a7a7cbe3 737 dma_addr_t sgl_dma;
b0f2853b 738 int i = 0;
a7a7cbe3 739
a7a7cbe3
CK
740 /* setting the transfer type as SGL */
741 cmd->flags = NVME_CMD_SGL_METABUF;
742
b0f2853b 743 if (entries == 1) {
a7a7cbe3
CK
744 nvme_pci_sgl_set_data(&cmd->dptr.sgl, sg);
745 return BLK_STS_OK;
746 }
747
748 if (entries <= (256 / sizeof(struct nvme_sgl_desc))) {
749 pool = dev->prp_small_pool;
750 iod->npages = 0;
751 } else {
752 pool = dev->prp_page_pool;
753 iod->npages = 1;
754 }
755
756 sg_list = dma_pool_alloc(pool, GFP_ATOMIC, &sgl_dma);
757 if (!sg_list) {
758 iod->npages = -1;
759 return BLK_STS_RESOURCE;
760 }
761
762 nvme_pci_iod_list(req)[0] = sg_list;
763 iod->first_dma = sgl_dma;
764
765 nvme_pci_sgl_set_seg(&cmd->dptr.sgl, sgl_dma, entries);
766
767 do {
768 if (i == SGES_PER_PAGE) {
769 struct nvme_sgl_desc *old_sg_desc = sg_list;
770 struct nvme_sgl_desc *link = &old_sg_desc[i - 1];
771
772 sg_list = dma_pool_alloc(pool, GFP_ATOMIC, &sgl_dma);
773 if (!sg_list)
774 return BLK_STS_RESOURCE;
775
776 i = 0;
777 nvme_pci_iod_list(req)[iod->npages++] = sg_list;
778 sg_list[i++] = *link;
779 nvme_pci_sgl_set_seg(link, sgl_dma, entries);
780 }
781
782 nvme_pci_sgl_set_data(&sg_list[i++], sg);
a7a7cbe3 783 sg = sg_next(sg);
b0f2853b 784 } while (--entries > 0);
a7a7cbe3 785
a7a7cbe3
CK
786 return BLK_STS_OK;
787}
788
fc17b653 789static blk_status_t nvme_map_data(struct nvme_dev *dev, struct request *req,
b131c61d 790 struct nvme_command *cmnd)
d29ec824 791{
f4800d6d 792 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
ba1ca37e
CH
793 struct request_queue *q = req->q;
794 enum dma_data_direction dma_dir = rq_data_dir(req) ?
795 DMA_TO_DEVICE : DMA_FROM_DEVICE;
fc17b653 796 blk_status_t ret = BLK_STS_IOERR;
b0f2853b 797 int nr_mapped;
d29ec824 798
f9d03f96 799 sg_init_table(iod->sg, blk_rq_nr_phys_segments(req));
ba1ca37e
CH
800 iod->nents = blk_rq_map_sg(q, req, iod->sg);
801 if (!iod->nents)
802 goto out;
d29ec824 803
fc17b653 804 ret = BLK_STS_RESOURCE;
b0f2853b
CH
805 nr_mapped = dma_map_sg_attrs(dev->dev, iod->sg, iod->nents, dma_dir,
806 DMA_ATTR_NO_WARN);
807 if (!nr_mapped)
ba1ca37e 808 goto out;
d29ec824 809
955b1b5a 810 if (iod->use_sgl)
b0f2853b 811 ret = nvme_pci_setup_sgls(dev, req, &cmnd->rw, nr_mapped);
a7a7cbe3
CK
812 else
813 ret = nvme_pci_setup_prps(dev, req, &cmnd->rw);
814
86eea289 815 if (ret != BLK_STS_OK)
ba1ca37e 816 goto out_unmap;
0e5e4f0e 817
fc17b653 818 ret = BLK_STS_IOERR;
ba1ca37e
CH
819 if (blk_integrity_rq(req)) {
820 if (blk_rq_count_integrity_sg(q, req->bio) != 1)
821 goto out_unmap;
0e5e4f0e 822
bf684057
CH
823 sg_init_table(&iod->meta_sg, 1);
824 if (blk_rq_map_integrity_sg(q, req->bio, &iod->meta_sg) != 1)
ba1ca37e 825 goto out_unmap;
0e5e4f0e 826
b5d8af5b 827 if (req_op(req) == REQ_OP_WRITE)
ba1ca37e 828 nvme_dif_remap(req, nvme_dif_prep);
0e5e4f0e 829
bf684057 830 if (!dma_map_sg(dev->dev, &iod->meta_sg, 1, dma_dir))
ba1ca37e 831 goto out_unmap;
d29ec824 832 }
00df5cb4 833
ba1ca37e 834 if (blk_integrity_rq(req))
bf684057 835 cmnd->rw.metadata = cpu_to_le64(sg_dma_address(&iod->meta_sg));
fc17b653 836 return BLK_STS_OK;
00df5cb4 837
ba1ca37e
CH
838out_unmap:
839 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
840out:
841 return ret;
00df5cb4
MW
842}
843
f4800d6d 844static void nvme_unmap_data(struct nvme_dev *dev, struct request *req)
b60503ba 845{
f4800d6d 846 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
d4f6c3ab
CH
847 enum dma_data_direction dma_dir = rq_data_dir(req) ?
848 DMA_TO_DEVICE : DMA_FROM_DEVICE;
849
850 if (iod->nents) {
851 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
852 if (blk_integrity_rq(req)) {
b5d8af5b 853 if (req_op(req) == REQ_OP_READ)
d4f6c3ab 854 nvme_dif_remap(req, nvme_dif_complete);
bf684057 855 dma_unmap_sg(dev->dev, &iod->meta_sg, 1, dma_dir);
e1e5e564 856 }
e19b127f 857 }
e1e5e564 858
f9d03f96 859 nvme_cleanup_cmd(req);
f4800d6d 860 nvme_free_iod(dev, req);
d4f6c3ab 861}
b60503ba 862
d29ec824
CH
863/*
864 * NOTE: ns is NULL when called on the admin queue.
865 */
fc17b653 866static blk_status_t nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
a4aea562 867 const struct blk_mq_queue_data *bd)
edd10d33 868{
a4aea562
MB
869 struct nvme_ns *ns = hctx->queue->queuedata;
870 struct nvme_queue *nvmeq = hctx->driver_data;
d29ec824 871 struct nvme_dev *dev = nvmeq->dev;
a4aea562 872 struct request *req = bd->rq;
ba1ca37e 873 struct nvme_command cmnd;
ebe6d874 874 blk_status_t ret;
e1e5e564 875
d1f06f4a
JA
876 /*
877 * We should not need to do this, but we're still using this to
878 * ensure we can drain requests on a dying queue.
879 */
880 if (unlikely(nvmeq->cq_vector < 0))
881 return BLK_STS_IOERR;
882
f9d03f96 883 ret = nvme_setup_cmd(ns, req, &cmnd);
fc17b653 884 if (ret)
f4800d6d 885 return ret;
a4aea562 886
b131c61d 887 ret = nvme_init_iod(req, dev);
fc17b653 888 if (ret)
f9d03f96 889 goto out_free_cmd;
a4aea562 890
fc17b653 891 if (blk_rq_nr_phys_segments(req)) {
b131c61d 892 ret = nvme_map_data(dev, req, &cmnd);
fc17b653
CH
893 if (ret)
894 goto out_cleanup_iod;
895 }
a4aea562 896
aae239e1 897 blk_mq_start_request(req);
a4aea562 898
1eae349d 899 spin_lock(&nvmeq->sq_lock);
ba1ca37e 900 __nvme_submit_cmd(nvmeq, &cmnd);
1eae349d 901 spin_unlock(&nvmeq->sq_lock);
fc17b653 902 return BLK_STS_OK;
f9d03f96 903out_cleanup_iod:
f4800d6d 904 nvme_free_iod(dev, req);
f9d03f96
CH
905out_free_cmd:
906 nvme_cleanup_cmd(req);
ba1ca37e 907 return ret;
b60503ba 908}
e1e5e564 909
77f02a7a 910static void nvme_pci_complete_rq(struct request *req)
eee417b0 911{
f4800d6d 912 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
a4aea562 913
77f02a7a
CH
914 nvme_unmap_data(iod->nvmeq->dev, req);
915 nvme_complete_rq(req);
b60503ba
MW
916}
917
d783e0bd 918/* We read the CQE phase first to check if the rest of the entry is valid */
750dde44 919static inline bool nvme_cqe_pending(struct nvme_queue *nvmeq)
d783e0bd 920{
750dde44
CH
921 return (le16_to_cpu(nvmeq->cqes[nvmeq->cq_head].status) & 1) ==
922 nvmeq->cq_phase;
d783e0bd
MR
923}
924
eb281c82 925static inline void nvme_ring_cq_doorbell(struct nvme_queue *nvmeq)
b60503ba 926{
eb281c82 927 u16 head = nvmeq->cq_head;
adf68f21 928
eb281c82
SG
929 if (likely(nvmeq->cq_vector >= 0)) {
930 if (nvme_dbbuf_update_and_check_event(head, nvmeq->dbbuf_cq_db,
931 nvmeq->dbbuf_cq_ei))
932 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
933 }
934}
aae239e1 935
5cb525c8 936static inline void nvme_handle_cqe(struct nvme_queue *nvmeq, u16 idx)
83a12fb7 937{
5cb525c8 938 volatile struct nvme_completion *cqe = &nvmeq->cqes[idx];
83a12fb7 939 struct request *req;
adf68f21 940
83a12fb7
SG
941 if (unlikely(cqe->command_id >= nvmeq->q_depth)) {
942 dev_warn(nvmeq->dev->ctrl.device,
943 "invalid id %d completed on queue %d\n",
944 cqe->command_id, le16_to_cpu(cqe->sq_id));
945 return;
b60503ba
MW
946 }
947
83a12fb7
SG
948 /*
949 * AEN requests are special as they don't time out and can
950 * survive any kind of queue freeze and often don't respond to
951 * aborts. We don't even bother to allocate a struct request
952 * for them but rather special case them here.
953 */
954 if (unlikely(nvmeq->qid == 0 &&
38dabe21 955 cqe->command_id >= NVME_AQ_BLK_MQ_DEPTH)) {
83a12fb7
SG
956 nvme_complete_async_event(&nvmeq->dev->ctrl,
957 cqe->status, &cqe->result);
a0fa9647 958 return;
83a12fb7 959 }
b60503ba 960
83a12fb7
SG
961 req = blk_mq_tag_to_rq(*nvmeq->tags, cqe->command_id);
962 nvme_end_request(req, cqe->status, cqe->result);
963}
b60503ba 964
5cb525c8 965static void nvme_complete_cqes(struct nvme_queue *nvmeq, u16 start, u16 end)
b60503ba 966{
5cb525c8
JA
967 while (start != end) {
968 nvme_handle_cqe(nvmeq, start);
969 if (++start == nvmeq->q_depth)
970 start = 0;
971 }
972}
adf68f21 973
5cb525c8
JA
974static inline void nvme_update_cq_head(struct nvme_queue *nvmeq)
975{
976 if (++nvmeq->cq_head == nvmeq->q_depth) {
977 nvmeq->cq_head = 0;
978 nvmeq->cq_phase = !nvmeq->cq_phase;
b60503ba 979 }
a0fa9647
JA
980}
981
5cb525c8
JA
982static inline bool nvme_process_cq(struct nvme_queue *nvmeq, u16 *start,
983 u16 *end, int tag)
a0fa9647 984{
5cb525c8 985 bool found = false;
b60503ba 986
5cb525c8
JA
987 *start = nvmeq->cq_head;
988 while (!found && nvme_cqe_pending(nvmeq)) {
989 if (nvmeq->cqes[nvmeq->cq_head].command_id == tag)
990 found = true;
991 nvme_update_cq_head(nvmeq);
920d13a8 992 }
5cb525c8 993 *end = nvmeq->cq_head;
eb281c82 994
5cb525c8 995 if (*start != *end)
920d13a8 996 nvme_ring_cq_doorbell(nvmeq);
5cb525c8 997 return found;
b60503ba
MW
998}
999
1000static irqreturn_t nvme_irq(int irq, void *data)
58ffacb5 1001{
58ffacb5 1002 struct nvme_queue *nvmeq = data;
68fa9dbe 1003 irqreturn_t ret = IRQ_NONE;
5cb525c8
JA
1004 u16 start, end;
1005
1ab0cd69 1006 spin_lock(&nvmeq->cq_lock);
68fa9dbe
JA
1007 if (nvmeq->cq_head != nvmeq->last_cq_head)
1008 ret = IRQ_HANDLED;
5cb525c8 1009 nvme_process_cq(nvmeq, &start, &end, -1);
68fa9dbe 1010 nvmeq->last_cq_head = nvmeq->cq_head;
1ab0cd69 1011 spin_unlock(&nvmeq->cq_lock);
5cb525c8 1012
68fa9dbe
JA
1013 if (start != end) {
1014 nvme_complete_cqes(nvmeq, start, end);
1015 return IRQ_HANDLED;
1016 }
1017
1018 return ret;
58ffacb5
MW
1019}
1020
1021static irqreturn_t nvme_irq_check(int irq, void *data)
1022{
1023 struct nvme_queue *nvmeq = data;
750dde44 1024 if (nvme_cqe_pending(nvmeq))
d783e0bd
MR
1025 return IRQ_WAKE_THREAD;
1026 return IRQ_NONE;
58ffacb5
MW
1027}
1028
7776db1c 1029static int __nvme_poll(struct nvme_queue *nvmeq, unsigned int tag)
a0fa9647 1030{
5cb525c8
JA
1031 u16 start, end;
1032 bool found;
a0fa9647 1033
750dde44 1034 if (!nvme_cqe_pending(nvmeq))
442e19b7 1035 return 0;
a0fa9647 1036
1ab0cd69 1037 spin_lock_irq(&nvmeq->cq_lock);
5cb525c8 1038 found = nvme_process_cq(nvmeq, &start, &end, tag);
1ab0cd69 1039 spin_unlock_irq(&nvmeq->cq_lock);
442e19b7 1040
5cb525c8 1041 nvme_complete_cqes(nvmeq, start, end);
442e19b7 1042 return found;
a0fa9647
JA
1043}
1044
7776db1c
KB
1045static int nvme_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag)
1046{
1047 struct nvme_queue *nvmeq = hctx->driver_data;
1048
1049 return __nvme_poll(nvmeq, tag);
1050}
1051
ad22c355 1052static void nvme_pci_submit_async_event(struct nvme_ctrl *ctrl)
b60503ba 1053{
f866fc42 1054 struct nvme_dev *dev = to_nvme_dev(ctrl);
147b27e4 1055 struct nvme_queue *nvmeq = &dev->queues[0];
a4aea562 1056 struct nvme_command c;
b60503ba 1057
a4aea562
MB
1058 memset(&c, 0, sizeof(c));
1059 c.common.opcode = nvme_admin_async_event;
ad22c355 1060 c.common.command_id = NVME_AQ_BLK_MQ_DEPTH;
3c0cf138 1061
1eae349d 1062 spin_lock(&nvmeq->sq_lock);
f866fc42 1063 __nvme_submit_cmd(nvmeq, &c);
1eae349d 1064 spin_unlock(&nvmeq->sq_lock);
f705f837
CH
1065}
1066
b60503ba 1067static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
f705f837 1068{
b60503ba
MW
1069 struct nvme_command c;
1070
1071 memset(&c, 0, sizeof(c));
1072 c.delete_queue.opcode = opcode;
1073 c.delete_queue.qid = cpu_to_le16(id);
1074
1c63dc66 1075 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
b60503ba
MW
1076}
1077
b60503ba 1078static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
a8e3e0bb 1079 struct nvme_queue *nvmeq, s16 vector)
b60503ba 1080{
b60503ba
MW
1081 struct nvme_command c;
1082 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
1083
d29ec824 1084 /*
16772ae6 1085 * Note: we (ab)use the fact that the prp fields survive if no data
d29ec824
CH
1086 * is attached to the request.
1087 */
b60503ba
MW
1088 memset(&c, 0, sizeof(c));
1089 c.create_cq.opcode = nvme_admin_create_cq;
1090 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1091 c.create_cq.cqid = cpu_to_le16(qid);
1092 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1093 c.create_cq.cq_flags = cpu_to_le16(flags);
a8e3e0bb 1094 c.create_cq.irq_vector = cpu_to_le16(vector);
b60503ba 1095
1c63dc66 1096 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
b60503ba
MW
1097}
1098
1099static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1100 struct nvme_queue *nvmeq)
1101{
b60503ba 1102 struct nvme_command c;
81c1cd98 1103 int flags = NVME_QUEUE_PHYS_CONTIG;
b60503ba 1104
d29ec824 1105 /*
16772ae6 1106 * Note: we (ab)use the fact that the prp fields survive if no data
d29ec824
CH
1107 * is attached to the request.
1108 */
b60503ba
MW
1109 memset(&c, 0, sizeof(c));
1110 c.create_sq.opcode = nvme_admin_create_sq;
1111 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1112 c.create_sq.sqid = cpu_to_le16(qid);
1113 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1114 c.create_sq.sq_flags = cpu_to_le16(flags);
1115 c.create_sq.cqid = cpu_to_le16(qid);
1116
1c63dc66 1117 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
b60503ba
MW
1118}
1119
1120static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1121{
1122 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1123}
1124
1125static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1126{
1127 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1128}
1129
2a842aca 1130static void abort_endio(struct request *req, blk_status_t error)
bc5fc7e4 1131{
f4800d6d
CH
1132 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
1133 struct nvme_queue *nvmeq = iod->nvmeq;
e44ac588 1134
27fa9bc5
CH
1135 dev_warn(nvmeq->dev->ctrl.device,
1136 "Abort status: 0x%x", nvme_req(req)->status);
e7a2a87d 1137 atomic_inc(&nvmeq->dev->ctrl.abort_limit);
e7a2a87d 1138 blk_mq_free_request(req);
bc5fc7e4
MW
1139}
1140
b2a0eb1a
KB
1141static bool nvme_should_reset(struct nvme_dev *dev, u32 csts)
1142{
1143
1144 /* If true, indicates loss of adapter communication, possibly by a
1145 * NVMe Subsystem reset.
1146 */
1147 bool nssro = dev->subsystem && (csts & NVME_CSTS_NSSRO);
1148
ad70062c
JW
1149 /* If there is a reset/reinit ongoing, we shouldn't reset again. */
1150 switch (dev->ctrl.state) {
1151 case NVME_CTRL_RESETTING:
ad6a0a52 1152 case NVME_CTRL_CONNECTING:
b2a0eb1a 1153 return false;
ad70062c
JW
1154 default:
1155 break;
1156 }
b2a0eb1a
KB
1157
1158 /* We shouldn't reset unless the controller is on fatal error state
1159 * _or_ if we lost the communication with it.
1160 */
1161 if (!(csts & NVME_CSTS_CFS) && !nssro)
1162 return false;
1163
b2a0eb1a
KB
1164 return true;
1165}
1166
1167static void nvme_warn_reset(struct nvme_dev *dev, u32 csts)
1168{
1169 /* Read a config register to help see what died. */
1170 u16 pci_status;
1171 int result;
1172
1173 result = pci_read_config_word(to_pci_dev(dev->dev), PCI_STATUS,
1174 &pci_status);
1175 if (result == PCIBIOS_SUCCESSFUL)
1176 dev_warn(dev->ctrl.device,
1177 "controller is down; will reset: CSTS=0x%x, PCI_STATUS=0x%hx\n",
1178 csts, pci_status);
1179 else
1180 dev_warn(dev->ctrl.device,
1181 "controller is down; will reset: CSTS=0x%x, PCI_STATUS read failed (%d)\n",
1182 csts, result);
1183}
1184
31c7c7d2 1185static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
c30341dc 1186{
f4800d6d
CH
1187 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
1188 struct nvme_queue *nvmeq = iod->nvmeq;
c30341dc 1189 struct nvme_dev *dev = nvmeq->dev;
a4aea562 1190 struct request *abort_req;
a4aea562 1191 struct nvme_command cmd;
b2a0eb1a
KB
1192 u32 csts = readl(dev->bar + NVME_REG_CSTS);
1193
651438bb
WX
1194 /* If PCI error recovery process is happening, we cannot reset or
1195 * the recovery mechanism will surely fail.
1196 */
1197 mb();
1198 if (pci_channel_offline(to_pci_dev(dev->dev)))
1199 return BLK_EH_RESET_TIMER;
1200
b2a0eb1a
KB
1201 /*
1202 * Reset immediately if the controller is failed
1203 */
1204 if (nvme_should_reset(dev, csts)) {
1205 nvme_warn_reset(dev, csts);
1206 nvme_dev_disable(dev, false);
d86c4d8e 1207 nvme_reset_ctrl(&dev->ctrl);
db8c48e4 1208 return BLK_EH_DONE;
b2a0eb1a 1209 }
c30341dc 1210
7776db1c
KB
1211 /*
1212 * Did we miss an interrupt?
1213 */
1214 if (__nvme_poll(nvmeq, req->tag)) {
1215 dev_warn(dev->ctrl.device,
1216 "I/O %d QID %d timeout, completion polled\n",
1217 req->tag, nvmeq->qid);
db8c48e4 1218 return BLK_EH_DONE;
7776db1c
KB
1219 }
1220
31c7c7d2 1221 /*
fd634f41
CH
1222 * Shutdown immediately if controller times out while starting. The
1223 * reset work will see the pci device disabled when it gets the forced
1224 * cancellation error. All outstanding requests are completed on
db8c48e4 1225 * shutdown, so we return BLK_EH_DONE.
fd634f41 1226 */
4244140d
KB
1227 switch (dev->ctrl.state) {
1228 case NVME_CTRL_CONNECTING:
1229 case NVME_CTRL_RESETTING:
b9cac43c 1230 dev_warn_ratelimited(dev->ctrl.device,
fd634f41
CH
1231 "I/O %d QID %d timeout, disable controller\n",
1232 req->tag, nvmeq->qid);
a5cdb68c 1233 nvme_dev_disable(dev, false);
27fa9bc5 1234 nvme_req(req)->flags |= NVME_REQ_CANCELLED;
db8c48e4 1235 return BLK_EH_DONE;
4244140d
KB
1236 default:
1237 break;
c30341dc
KB
1238 }
1239
fd634f41
CH
1240 /*
1241 * Shutdown the controller immediately and schedule a reset if the
1242 * command was already aborted once before and still hasn't been
1243 * returned to the driver, or if this is the admin queue.
31c7c7d2 1244 */
f4800d6d 1245 if (!nvmeq->qid || iod->aborted) {
1b3c47c1 1246 dev_warn(dev->ctrl.device,
e1569a16
KB
1247 "I/O %d QID %d timeout, reset controller\n",
1248 req->tag, nvmeq->qid);
a5cdb68c 1249 nvme_dev_disable(dev, false);
d86c4d8e 1250 nvme_reset_ctrl(&dev->ctrl);
c30341dc 1251
27fa9bc5 1252 nvme_req(req)->flags |= NVME_REQ_CANCELLED;
db8c48e4 1253 return BLK_EH_DONE;
c30341dc 1254 }
c30341dc 1255
e7a2a87d 1256 if (atomic_dec_return(&dev->ctrl.abort_limit) < 0) {
6bf25d16 1257 atomic_inc(&dev->ctrl.abort_limit);
31c7c7d2 1258 return BLK_EH_RESET_TIMER;
6bf25d16 1259 }
7bf7d778 1260 iod->aborted = 1;
a4aea562 1261
c30341dc
KB
1262 memset(&cmd, 0, sizeof(cmd));
1263 cmd.abort.opcode = nvme_admin_abort_cmd;
a4aea562 1264 cmd.abort.cid = req->tag;
c30341dc 1265 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
c30341dc 1266
1b3c47c1
SG
1267 dev_warn(nvmeq->dev->ctrl.device,
1268 "I/O %d QID %d timeout, aborting\n",
1269 req->tag, nvmeq->qid);
e7a2a87d
CH
1270
1271 abort_req = nvme_alloc_request(dev->ctrl.admin_q, &cmd,
eb71f435 1272 BLK_MQ_REQ_NOWAIT, NVME_QID_ANY);
e7a2a87d
CH
1273 if (IS_ERR(abort_req)) {
1274 atomic_inc(&dev->ctrl.abort_limit);
1275 return BLK_EH_RESET_TIMER;
1276 }
1277
1278 abort_req->timeout = ADMIN_TIMEOUT;
1279 abort_req->end_io_data = NULL;
1280 blk_execute_rq_nowait(abort_req->q, NULL, abort_req, 0, abort_endio);
c30341dc 1281
31c7c7d2
CH
1282 /*
1283 * The aborted req will be completed on receiving the abort req.
1284 * We enable the timer again. If hit twice, it'll cause a device reset,
1285 * as the device then is in a faulty state.
1286 */
1287 return BLK_EH_RESET_TIMER;
c30341dc
KB
1288}
1289
a4aea562
MB
1290static void nvme_free_queue(struct nvme_queue *nvmeq)
1291{
9e866774
MW
1292 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1293 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
8ffaadf7
JD
1294 if (nvmeq->sq_cmds)
1295 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
9e866774 1296 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
9e866774
MW
1297}
1298
a1a5ef99 1299static void nvme_free_queues(struct nvme_dev *dev, int lowest)
22404274
KB
1300{
1301 int i;
1302
d858e5f0 1303 for (i = dev->ctrl.queue_count - 1; i >= lowest; i--) {
d858e5f0 1304 dev->ctrl.queue_count--;
147b27e4 1305 nvme_free_queue(&dev->queues[i]);
121c7ad4 1306 }
22404274
KB
1307}
1308
4d115420
KB
1309/**
1310 * nvme_suspend_queue - put queue into suspended state
1311 * @nvmeq - queue to suspend
4d115420
KB
1312 */
1313static int nvme_suspend_queue(struct nvme_queue *nvmeq)
b60503ba 1314{
2b25d981 1315 int vector;
b60503ba 1316
1ab0cd69 1317 spin_lock_irq(&nvmeq->cq_lock);
2b25d981 1318 if (nvmeq->cq_vector == -1) {
1ab0cd69 1319 spin_unlock_irq(&nvmeq->cq_lock);
2b25d981
KB
1320 return 1;
1321 }
0ff199cb 1322 vector = nvmeq->cq_vector;
42f61420 1323 nvmeq->dev->online_queues--;
2b25d981 1324 nvmeq->cq_vector = -1;
1ab0cd69 1325 spin_unlock_irq(&nvmeq->cq_lock);
a09115b2 1326
d1f06f4a
JA
1327 /*
1328 * Ensure that nvme_queue_rq() sees it ->cq_vector == -1 without
1329 * having to grab the lock.
1330 */
1331 mb();
1332
1c63dc66 1333 if (!nvmeq->qid && nvmeq->dev->ctrl.admin_q)
c81545f9 1334 blk_mq_quiesce_queue(nvmeq->dev->ctrl.admin_q);
6df3dbc8 1335
0ff199cb 1336 pci_free_irq(to_pci_dev(nvmeq->dev->dev), vector, nvmeq);
b60503ba 1337
4d115420
KB
1338 return 0;
1339}
b60503ba 1340
a5cdb68c 1341static void nvme_disable_admin_queue(struct nvme_dev *dev, bool shutdown)
4d115420 1342{
147b27e4 1343 struct nvme_queue *nvmeq = &dev->queues[0];
5cb525c8 1344 u16 start, end;
4d115420 1345
a5cdb68c
KB
1346 if (shutdown)
1347 nvme_shutdown_ctrl(&dev->ctrl);
1348 else
20d0dfe6 1349 nvme_disable_ctrl(&dev->ctrl, dev->ctrl.cap);
07836e65 1350
1ab0cd69 1351 spin_lock_irq(&nvmeq->cq_lock);
5cb525c8 1352 nvme_process_cq(nvmeq, &start, &end, -1);
1ab0cd69 1353 spin_unlock_irq(&nvmeq->cq_lock);
5cb525c8
JA
1354
1355 nvme_complete_cqes(nvmeq, start, end);
b60503ba
MW
1356}
1357
8ffaadf7
JD
1358static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1359 int entry_size)
1360{
1361 int q_depth = dev->q_depth;
5fd4ce1b
CH
1362 unsigned q_size_aligned = roundup(q_depth * entry_size,
1363 dev->ctrl.page_size);
8ffaadf7
JD
1364
1365 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
c45f5c99 1366 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
5fd4ce1b 1367 mem_per_q = round_down(mem_per_q, dev->ctrl.page_size);
c45f5c99 1368 q_depth = div_u64(mem_per_q, entry_size);
8ffaadf7
JD
1369
1370 /*
1371 * Ensure the reduced q_depth is above some threshold where it
1372 * would be better to map queues in system memory with the
1373 * original depth
1374 */
1375 if (q_depth < 64)
1376 return -ENOMEM;
1377 }
1378
1379 return q_depth;
1380}
1381
1382static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1383 int qid, int depth)
1384{
815c6704
KB
1385 /* CMB SQEs will be mapped before creation */
1386 if (qid && dev->cmb && use_cmb_sqes && (dev->cmbsz & NVME_CMBSZ_SQS))
1387 return 0;
8ffaadf7 1388
815c6704
KB
1389 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1390 &nvmeq->sq_dma_addr, GFP_KERNEL);
1391 if (!nvmeq->sq_cmds)
1392 return -ENOMEM;
8ffaadf7
JD
1393 return 0;
1394}
1395
a6ff7262 1396static int nvme_alloc_queue(struct nvme_dev *dev, int qid, int depth)
b60503ba 1397{
147b27e4 1398 struct nvme_queue *nvmeq = &dev->queues[qid];
b60503ba 1399
62314e40
KB
1400 if (dev->ctrl.queue_count > qid)
1401 return 0;
b60503ba 1402
e75ec752 1403 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
4d51abf9 1404 &nvmeq->cq_dma_addr, GFP_KERNEL);
b60503ba
MW
1405 if (!nvmeq->cqes)
1406 goto free_nvmeq;
b60503ba 1407
8ffaadf7 1408 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
b60503ba
MW
1409 goto free_cqdma;
1410
e75ec752 1411 nvmeq->q_dmadev = dev->dev;
091b6092 1412 nvmeq->dev = dev;
1ab0cd69
JA
1413 spin_lock_init(&nvmeq->sq_lock);
1414 spin_lock_init(&nvmeq->cq_lock);
b60503ba 1415 nvmeq->cq_head = 0;
82123460 1416 nvmeq->cq_phase = 1;
b80d5ccc 1417 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
b60503ba 1418 nvmeq->q_depth = depth;
c30341dc 1419 nvmeq->qid = qid;
758dd7fd 1420 nvmeq->cq_vector = -1;
d858e5f0 1421 dev->ctrl.queue_count++;
36a7e993 1422
147b27e4 1423 return 0;
b60503ba
MW
1424
1425 free_cqdma:
e75ec752 1426 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
b60503ba
MW
1427 nvmeq->cq_dma_addr);
1428 free_nvmeq:
147b27e4 1429 return -ENOMEM;
b60503ba
MW
1430}
1431
dca51e78 1432static int queue_request_irq(struct nvme_queue *nvmeq)
3001082c 1433{
0ff199cb
CH
1434 struct pci_dev *pdev = to_pci_dev(nvmeq->dev->dev);
1435 int nr = nvmeq->dev->ctrl.instance;
1436
1437 if (use_threaded_interrupts) {
1438 return pci_request_irq(pdev, nvmeq->cq_vector, nvme_irq_check,
1439 nvme_irq, nvmeq, "nvme%dq%d", nr, nvmeq->qid);
1440 } else {
1441 return pci_request_irq(pdev, nvmeq->cq_vector, nvme_irq,
1442 NULL, nvmeq, "nvme%dq%d", nr, nvmeq->qid);
1443 }
3001082c
MW
1444}
1445
22404274 1446static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
b60503ba 1447{
22404274 1448 struct nvme_dev *dev = nvmeq->dev;
b60503ba 1449
1ab0cd69 1450 spin_lock_irq(&nvmeq->cq_lock);
22404274
KB
1451 nvmeq->sq_tail = 0;
1452 nvmeq->cq_head = 0;
1453 nvmeq->cq_phase = 1;
b80d5ccc 1454 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
22404274 1455 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
f9f38e33 1456 nvme_dbbuf_init(dev, nvmeq, qid);
42f61420 1457 dev->online_queues++;
1ab0cd69 1458 spin_unlock_irq(&nvmeq->cq_lock);
22404274
KB
1459}
1460
1461static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1462{
1463 struct nvme_dev *dev = nvmeq->dev;
1464 int result;
a8e3e0bb 1465 s16 vector;
3f85d50b 1466
815c6704
KB
1467 if (dev->cmb && use_cmb_sqes && (dev->cmbsz & NVME_CMBSZ_SQS)) {
1468 unsigned offset = (qid - 1) * roundup(SQ_SIZE(nvmeq->q_depth),
1469 dev->ctrl.page_size);
1470 nvmeq->sq_dma_addr = dev->cmb_bus_addr + offset;
1471 nvmeq->sq_cmds_io = dev->cmb + offset;
1472 }
1473
22b55601
KB
1474 /*
1475 * A queue's vector matches the queue identifier unless the controller
1476 * has only one vector available.
1477 */
a8e3e0bb
JW
1478 vector = dev->num_vecs == 1 ? 0 : qid;
1479 result = adapter_alloc_cq(dev, qid, nvmeq, vector);
b60503ba 1480 if (result < 0)
a8e3e0bb 1481 goto out;
b60503ba
MW
1482
1483 result = adapter_alloc_sq(dev, qid, nvmeq);
1484 if (result < 0)
1485 goto release_cq;
1486
a8e3e0bb
JW
1487 /*
1488 * Set cq_vector after alloc cq/sq, otherwise nvme_suspend_queue will
1489 * invoke free_irq for it and cause a 'Trying to free already-free IRQ
1490 * xxx' warning if the create CQ/SQ command times out.
1491 */
1492 nvmeq->cq_vector = vector;
161b8be2 1493 nvme_init_queue(nvmeq, qid);
dca51e78 1494 result = queue_request_irq(nvmeq);
b60503ba
MW
1495 if (result < 0)
1496 goto release_sq;
1497
22404274 1498 return result;
b60503ba 1499
a8e3e0bb
JW
1500release_sq:
1501 nvmeq->cq_vector = -1;
f25a2dfc 1502 dev->online_queues--;
b60503ba 1503 adapter_delete_sq(dev, qid);
a8e3e0bb 1504release_cq:
b60503ba 1505 adapter_delete_cq(dev, qid);
a8e3e0bb 1506out:
22404274 1507 return result;
b60503ba
MW
1508}
1509
f363b089 1510static const struct blk_mq_ops nvme_mq_admin_ops = {
d29ec824 1511 .queue_rq = nvme_queue_rq,
77f02a7a 1512 .complete = nvme_pci_complete_rq,
a4aea562 1513 .init_hctx = nvme_admin_init_hctx,
4af0e21c 1514 .exit_hctx = nvme_admin_exit_hctx,
0350815a 1515 .init_request = nvme_init_request,
a4aea562
MB
1516 .timeout = nvme_timeout,
1517};
1518
f363b089 1519static const struct blk_mq_ops nvme_mq_ops = {
a4aea562 1520 .queue_rq = nvme_queue_rq,
77f02a7a 1521 .complete = nvme_pci_complete_rq,
a4aea562
MB
1522 .init_hctx = nvme_init_hctx,
1523 .init_request = nvme_init_request,
dca51e78 1524 .map_queues = nvme_pci_map_queues,
a4aea562 1525 .timeout = nvme_timeout,
a0fa9647 1526 .poll = nvme_poll,
a4aea562
MB
1527};
1528
ea191d2f
KB
1529static void nvme_dev_remove_admin(struct nvme_dev *dev)
1530{
1c63dc66 1531 if (dev->ctrl.admin_q && !blk_queue_dying(dev->ctrl.admin_q)) {
69d9a99c
KB
1532 /*
1533 * If the controller was reset during removal, it's possible
1534 * user requests may be waiting on a stopped queue. Start the
1535 * queue to flush these to completion.
1536 */
c81545f9 1537 blk_mq_unquiesce_queue(dev->ctrl.admin_q);
1c63dc66 1538 blk_cleanup_queue(dev->ctrl.admin_q);
ea191d2f
KB
1539 blk_mq_free_tag_set(&dev->admin_tagset);
1540 }
1541}
1542
a4aea562
MB
1543static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1544{
1c63dc66 1545 if (!dev->ctrl.admin_q) {
a4aea562
MB
1546 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1547 dev->admin_tagset.nr_hw_queues = 1;
e3e9d50c 1548
38dabe21 1549 dev->admin_tagset.queue_depth = NVME_AQ_MQ_TAG_DEPTH;
a4aea562 1550 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
e75ec752 1551 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
a7a7cbe3 1552 dev->admin_tagset.cmd_size = nvme_pci_cmd_size(dev, false);
d3484991 1553 dev->admin_tagset.flags = BLK_MQ_F_NO_SCHED;
a4aea562
MB
1554 dev->admin_tagset.driver_data = dev;
1555
1556 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1557 return -ENOMEM;
34b6c231 1558 dev->ctrl.admin_tagset = &dev->admin_tagset;
a4aea562 1559
1c63dc66
CH
1560 dev->ctrl.admin_q = blk_mq_init_queue(&dev->admin_tagset);
1561 if (IS_ERR(dev->ctrl.admin_q)) {
a4aea562
MB
1562 blk_mq_free_tag_set(&dev->admin_tagset);
1563 return -ENOMEM;
1564 }
1c63dc66 1565 if (!blk_get_queue(dev->ctrl.admin_q)) {
ea191d2f 1566 nvme_dev_remove_admin(dev);
1c63dc66 1567 dev->ctrl.admin_q = NULL;
ea191d2f
KB
1568 return -ENODEV;
1569 }
0fb59cbc 1570 } else
c81545f9 1571 blk_mq_unquiesce_queue(dev->ctrl.admin_q);
a4aea562
MB
1572
1573 return 0;
1574}
1575
97f6ef64
XY
1576static unsigned long db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
1577{
1578 return NVME_REG_DBS + ((nr_io_queues + 1) * 8 * dev->db_stride);
1579}
1580
1581static int nvme_remap_bar(struct nvme_dev *dev, unsigned long size)
1582{
1583 struct pci_dev *pdev = to_pci_dev(dev->dev);
1584
1585 if (size <= dev->bar_mapped_size)
1586 return 0;
1587 if (size > pci_resource_len(pdev, 0))
1588 return -ENOMEM;
1589 if (dev->bar)
1590 iounmap(dev->bar);
1591 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
1592 if (!dev->bar) {
1593 dev->bar_mapped_size = 0;
1594 return -ENOMEM;
1595 }
1596 dev->bar_mapped_size = size;
1597 dev->dbs = dev->bar + NVME_REG_DBS;
1598
1599 return 0;
1600}
1601
01ad0990 1602static int nvme_pci_configure_admin_queue(struct nvme_dev *dev)
b60503ba 1603{
ba47e386 1604 int result;
b60503ba
MW
1605 u32 aqa;
1606 struct nvme_queue *nvmeq;
1607
97f6ef64
XY
1608 result = nvme_remap_bar(dev, db_bar_size(dev, 0));
1609 if (result < 0)
1610 return result;
1611
8ef2074d 1612 dev->subsystem = readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 1, 0) ?
20d0dfe6 1613 NVME_CAP_NSSRC(dev->ctrl.cap) : 0;
dfbac8c7 1614
7a67cbea
CH
1615 if (dev->subsystem &&
1616 (readl(dev->bar + NVME_REG_CSTS) & NVME_CSTS_NSSRO))
1617 writel(NVME_CSTS_NSSRO, dev->bar + NVME_REG_CSTS);
dfbac8c7 1618
20d0dfe6 1619 result = nvme_disable_ctrl(&dev->ctrl, dev->ctrl.cap);
ba47e386
MW
1620 if (result < 0)
1621 return result;
b60503ba 1622
a6ff7262 1623 result = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
147b27e4
SG
1624 if (result)
1625 return result;
b60503ba 1626
147b27e4 1627 nvmeq = &dev->queues[0];
b60503ba
MW
1628 aqa = nvmeq->q_depth - 1;
1629 aqa |= aqa << 16;
1630
7a67cbea
CH
1631 writel(aqa, dev->bar + NVME_REG_AQA);
1632 lo_hi_writeq(nvmeq->sq_dma_addr, dev->bar + NVME_REG_ASQ);
1633 lo_hi_writeq(nvmeq->cq_dma_addr, dev->bar + NVME_REG_ACQ);
b60503ba 1634
20d0dfe6 1635 result = nvme_enable_ctrl(&dev->ctrl, dev->ctrl.cap);
025c557a 1636 if (result)
d4875622 1637 return result;
a4aea562 1638
2b25d981 1639 nvmeq->cq_vector = 0;
161b8be2 1640 nvme_init_queue(nvmeq, 0);
dca51e78 1641 result = queue_request_irq(nvmeq);
758dd7fd
JD
1642 if (result) {
1643 nvmeq->cq_vector = -1;
d4875622 1644 return result;
758dd7fd 1645 }
025c557a 1646
b60503ba
MW
1647 return result;
1648}
1649
749941f2 1650static int nvme_create_io_queues(struct nvme_dev *dev)
42f61420 1651{
949928c1 1652 unsigned i, max;
749941f2 1653 int ret = 0;
42f61420 1654
d858e5f0 1655 for (i = dev->ctrl.queue_count; i <= dev->max_qid; i++) {
a6ff7262 1656 if (nvme_alloc_queue(dev, i, dev->q_depth)) {
749941f2 1657 ret = -ENOMEM;
42f61420 1658 break;
749941f2
CH
1659 }
1660 }
42f61420 1661
d858e5f0 1662 max = min(dev->max_qid, dev->ctrl.queue_count - 1);
949928c1 1663 for (i = dev->online_queues; i <= max; i++) {
147b27e4 1664 ret = nvme_create_queue(&dev->queues[i], i);
d4875622 1665 if (ret)
42f61420 1666 break;
27e8166c 1667 }
749941f2
CH
1668
1669 /*
1670 * Ignore failing Create SQ/CQ commands, we can continue with less
8adb8c14
MI
1671 * than the desired amount of queues, and even a controller without
1672 * I/O queues can still be used to issue admin commands. This might
749941f2
CH
1673 * be useful to upgrade a buggy firmware for example.
1674 */
1675 return ret >= 0 ? 0 : ret;
b60503ba
MW
1676}
1677
202021c1
SB
1678static ssize_t nvme_cmb_show(struct device *dev,
1679 struct device_attribute *attr,
1680 char *buf)
1681{
1682 struct nvme_dev *ndev = to_nvme_dev(dev_get_drvdata(dev));
1683
c965809c 1684 return scnprintf(buf, PAGE_SIZE, "cmbloc : x%08x\ncmbsz : x%08x\n",
202021c1
SB
1685 ndev->cmbloc, ndev->cmbsz);
1686}
1687static DEVICE_ATTR(cmb, S_IRUGO, nvme_cmb_show, NULL);
1688
88de4598 1689static u64 nvme_cmb_size_unit(struct nvme_dev *dev)
8ffaadf7 1690{
88de4598
CH
1691 u8 szu = (dev->cmbsz >> NVME_CMBSZ_SZU_SHIFT) & NVME_CMBSZ_SZU_MASK;
1692
1693 return 1ULL << (12 + 4 * szu);
1694}
1695
1696static u32 nvme_cmb_size(struct nvme_dev *dev)
1697{
1698 return (dev->cmbsz >> NVME_CMBSZ_SZ_SHIFT) & NVME_CMBSZ_SZ_MASK;
1699}
1700
f65efd6d 1701static void nvme_map_cmb(struct nvme_dev *dev)
8ffaadf7 1702{
88de4598 1703 u64 size, offset;
8ffaadf7
JD
1704 resource_size_t bar_size;
1705 struct pci_dev *pdev = to_pci_dev(dev->dev);
8969f1f8 1706 int bar;
8ffaadf7 1707
7a67cbea 1708 dev->cmbsz = readl(dev->bar + NVME_REG_CMBSZ);
f65efd6d
CH
1709 if (!dev->cmbsz)
1710 return;
202021c1 1711 dev->cmbloc = readl(dev->bar + NVME_REG_CMBLOC);
8ffaadf7 1712
202021c1 1713 if (!use_cmb_sqes)
f65efd6d 1714 return;
8ffaadf7 1715
88de4598
CH
1716 size = nvme_cmb_size_unit(dev) * nvme_cmb_size(dev);
1717 offset = nvme_cmb_size_unit(dev) * NVME_CMB_OFST(dev->cmbloc);
8969f1f8
CH
1718 bar = NVME_CMB_BIR(dev->cmbloc);
1719 bar_size = pci_resource_len(pdev, bar);
8ffaadf7
JD
1720
1721 if (offset > bar_size)
f65efd6d 1722 return;
8ffaadf7
JD
1723
1724 /*
1725 * Controllers may support a CMB size larger than their BAR,
1726 * for example, due to being behind a bridge. Reduce the CMB to
1727 * the reported size of the BAR
1728 */
1729 if (size > bar_size - offset)
1730 size = bar_size - offset;
1731
f65efd6d
CH
1732 dev->cmb = ioremap_wc(pci_resource_start(pdev, bar) + offset, size);
1733 if (!dev->cmb)
1734 return;
8969f1f8 1735 dev->cmb_bus_addr = pci_bus_address(pdev, bar) + offset;
8ffaadf7 1736 dev->cmb_size = size;
f65efd6d
CH
1737
1738 if (sysfs_add_file_to_group(&dev->ctrl.device->kobj,
1739 &dev_attr_cmb.attr, NULL))
1740 dev_warn(dev->ctrl.device,
1741 "failed to add sysfs attribute for CMB\n");
8ffaadf7
JD
1742}
1743
1744static inline void nvme_release_cmb(struct nvme_dev *dev)
1745{
1746 if (dev->cmb) {
1747 iounmap(dev->cmb);
1748 dev->cmb = NULL;
1c78f773
MG
1749 sysfs_remove_file_from_group(&dev->ctrl.device->kobj,
1750 &dev_attr_cmb.attr, NULL);
1751 dev->cmbsz = 0;
8ffaadf7
JD
1752 }
1753}
1754
87ad72a5
CH
1755static int nvme_set_host_mem(struct nvme_dev *dev, u32 bits)
1756{
4033f35d 1757 u64 dma_addr = dev->host_mem_descs_dma;
87ad72a5 1758 struct nvme_command c;
87ad72a5
CH
1759 int ret;
1760
87ad72a5
CH
1761 memset(&c, 0, sizeof(c));
1762 c.features.opcode = nvme_admin_set_features;
1763 c.features.fid = cpu_to_le32(NVME_FEAT_HOST_MEM_BUF);
1764 c.features.dword11 = cpu_to_le32(bits);
1765 c.features.dword12 = cpu_to_le32(dev->host_mem_size >>
1766 ilog2(dev->ctrl.page_size));
1767 c.features.dword13 = cpu_to_le32(lower_32_bits(dma_addr));
1768 c.features.dword14 = cpu_to_le32(upper_32_bits(dma_addr));
1769 c.features.dword15 = cpu_to_le32(dev->nr_host_mem_descs);
1770
1771 ret = nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
1772 if (ret) {
1773 dev_warn(dev->ctrl.device,
1774 "failed to set host mem (err %d, flags %#x).\n",
1775 ret, bits);
1776 }
87ad72a5
CH
1777 return ret;
1778}
1779
1780static void nvme_free_host_mem(struct nvme_dev *dev)
1781{
1782 int i;
1783
1784 for (i = 0; i < dev->nr_host_mem_descs; i++) {
1785 struct nvme_host_mem_buf_desc *desc = &dev->host_mem_descs[i];
1786 size_t size = le32_to_cpu(desc->size) * dev->ctrl.page_size;
1787
1788 dma_free_coherent(dev->dev, size, dev->host_mem_desc_bufs[i],
1789 le64_to_cpu(desc->addr));
1790 }
1791
1792 kfree(dev->host_mem_desc_bufs);
1793 dev->host_mem_desc_bufs = NULL;
4033f35d
CH
1794 dma_free_coherent(dev->dev,
1795 dev->nr_host_mem_descs * sizeof(*dev->host_mem_descs),
1796 dev->host_mem_descs, dev->host_mem_descs_dma);
87ad72a5 1797 dev->host_mem_descs = NULL;
7e5dd57e 1798 dev->nr_host_mem_descs = 0;
87ad72a5
CH
1799}
1800
92dc6895
CH
1801static int __nvme_alloc_host_mem(struct nvme_dev *dev, u64 preferred,
1802 u32 chunk_size)
9d713c2b 1803{
87ad72a5 1804 struct nvme_host_mem_buf_desc *descs;
92dc6895 1805 u32 max_entries, len;
4033f35d 1806 dma_addr_t descs_dma;
2ee0e4ed 1807 int i = 0;
87ad72a5 1808 void **bufs;
6fbcde66 1809 u64 size, tmp;
87ad72a5 1810
87ad72a5
CH
1811 tmp = (preferred + chunk_size - 1);
1812 do_div(tmp, chunk_size);
1813 max_entries = tmp;
044a9df1
CH
1814
1815 if (dev->ctrl.hmmaxd && dev->ctrl.hmmaxd < max_entries)
1816 max_entries = dev->ctrl.hmmaxd;
1817
4033f35d
CH
1818 descs = dma_zalloc_coherent(dev->dev, max_entries * sizeof(*descs),
1819 &descs_dma, GFP_KERNEL);
87ad72a5
CH
1820 if (!descs)
1821 goto out;
1822
1823 bufs = kcalloc(max_entries, sizeof(*bufs), GFP_KERNEL);
1824 if (!bufs)
1825 goto out_free_descs;
1826
244a8fe4 1827 for (size = 0; size < preferred && i < max_entries; size += len) {
87ad72a5
CH
1828 dma_addr_t dma_addr;
1829
50cdb7c6 1830 len = min_t(u64, chunk_size, preferred - size);
87ad72a5
CH
1831 bufs[i] = dma_alloc_attrs(dev->dev, len, &dma_addr, GFP_KERNEL,
1832 DMA_ATTR_NO_KERNEL_MAPPING | DMA_ATTR_NO_WARN);
1833 if (!bufs[i])
1834 break;
1835
1836 descs[i].addr = cpu_to_le64(dma_addr);
1837 descs[i].size = cpu_to_le32(len / dev->ctrl.page_size);
1838 i++;
1839 }
1840
92dc6895 1841 if (!size)
87ad72a5 1842 goto out_free_bufs;
87ad72a5 1843
87ad72a5
CH
1844 dev->nr_host_mem_descs = i;
1845 dev->host_mem_size = size;
1846 dev->host_mem_descs = descs;
4033f35d 1847 dev->host_mem_descs_dma = descs_dma;
87ad72a5
CH
1848 dev->host_mem_desc_bufs = bufs;
1849 return 0;
1850
1851out_free_bufs:
1852 while (--i >= 0) {
1853 size_t size = le32_to_cpu(descs[i].size) * dev->ctrl.page_size;
1854
1855 dma_free_coherent(dev->dev, size, bufs[i],
1856 le64_to_cpu(descs[i].addr));
1857 }
1858
1859 kfree(bufs);
1860out_free_descs:
4033f35d
CH
1861 dma_free_coherent(dev->dev, max_entries * sizeof(*descs), descs,
1862 descs_dma);
87ad72a5 1863out:
87ad72a5
CH
1864 dev->host_mem_descs = NULL;
1865 return -ENOMEM;
1866}
1867
92dc6895
CH
1868static int nvme_alloc_host_mem(struct nvme_dev *dev, u64 min, u64 preferred)
1869{
1870 u32 chunk_size;
1871
1872 /* start big and work our way down */
30f92d62 1873 for (chunk_size = min_t(u64, preferred, PAGE_SIZE * MAX_ORDER_NR_PAGES);
044a9df1 1874 chunk_size >= max_t(u32, dev->ctrl.hmminds * 4096, PAGE_SIZE * 2);
92dc6895
CH
1875 chunk_size /= 2) {
1876 if (!__nvme_alloc_host_mem(dev, preferred, chunk_size)) {
1877 if (!min || dev->host_mem_size >= min)
1878 return 0;
1879 nvme_free_host_mem(dev);
1880 }
1881 }
1882
1883 return -ENOMEM;
1884}
1885
9620cfba 1886static int nvme_setup_host_mem(struct nvme_dev *dev)
87ad72a5
CH
1887{
1888 u64 max = (u64)max_host_mem_size_mb * SZ_1M;
1889 u64 preferred = (u64)dev->ctrl.hmpre * 4096;
1890 u64 min = (u64)dev->ctrl.hmmin * 4096;
1891 u32 enable_bits = NVME_HOST_MEM_ENABLE;
6fbcde66 1892 int ret;
87ad72a5
CH
1893
1894 preferred = min(preferred, max);
1895 if (min > max) {
1896 dev_warn(dev->ctrl.device,
1897 "min host memory (%lld MiB) above limit (%d MiB).\n",
1898 min >> ilog2(SZ_1M), max_host_mem_size_mb);
1899 nvme_free_host_mem(dev);
9620cfba 1900 return 0;
87ad72a5
CH
1901 }
1902
1903 /*
1904 * If we already have a buffer allocated check if we can reuse it.
1905 */
1906 if (dev->host_mem_descs) {
1907 if (dev->host_mem_size >= min)
1908 enable_bits |= NVME_HOST_MEM_RETURN;
1909 else
1910 nvme_free_host_mem(dev);
1911 }
1912
1913 if (!dev->host_mem_descs) {
92dc6895
CH
1914 if (nvme_alloc_host_mem(dev, min, preferred)) {
1915 dev_warn(dev->ctrl.device,
1916 "failed to allocate host memory buffer.\n");
9620cfba 1917 return 0; /* controller must work without HMB */
92dc6895
CH
1918 }
1919
1920 dev_info(dev->ctrl.device,
1921 "allocated %lld MiB host memory buffer.\n",
1922 dev->host_mem_size >> ilog2(SZ_1M));
87ad72a5
CH
1923 }
1924
9620cfba
CH
1925 ret = nvme_set_host_mem(dev, enable_bits);
1926 if (ret)
87ad72a5 1927 nvme_free_host_mem(dev);
9620cfba 1928 return ret;
9d713c2b
KB
1929}
1930
8d85fce7 1931static int nvme_setup_io_queues(struct nvme_dev *dev)
b60503ba 1932{
147b27e4 1933 struct nvme_queue *adminq = &dev->queues[0];
e75ec752 1934 struct pci_dev *pdev = to_pci_dev(dev->dev);
97f6ef64
XY
1935 int result, nr_io_queues;
1936 unsigned long size;
b60503ba 1937
22b55601
KB
1938 struct irq_affinity affd = {
1939 .pre_vectors = 1
1940 };
1941
16ccfff2 1942 nr_io_queues = num_possible_cpus();
9a0be7ab
CH
1943 result = nvme_set_queue_count(&dev->ctrl, &nr_io_queues);
1944 if (result < 0)
1b23484b 1945 return result;
9a0be7ab 1946
f5fa90dc 1947 if (nr_io_queues == 0)
a5229050 1948 return 0;
b60503ba 1949
88de4598 1950 if (dev->cmb && (dev->cmbsz & NVME_CMBSZ_SQS)) {
8ffaadf7
JD
1951 result = nvme_cmb_qdepth(dev, nr_io_queues,
1952 sizeof(struct nvme_command));
1953 if (result > 0)
1954 dev->q_depth = result;
1955 else
1956 nvme_release_cmb(dev);
1957 }
1958
97f6ef64
XY
1959 do {
1960 size = db_bar_size(dev, nr_io_queues);
1961 result = nvme_remap_bar(dev, size);
1962 if (!result)
1963 break;
1964 if (!--nr_io_queues)
1965 return -ENOMEM;
1966 } while (1);
1967 adminq->q_db = dev->dbs;
f1938f6e 1968
9d713c2b 1969 /* Deregister the admin queue's interrupt */
0ff199cb 1970 pci_free_irq(pdev, 0, adminq);
9d713c2b 1971
e32efbfc
JA
1972 /*
1973 * If we enable msix early due to not intx, disable it again before
1974 * setting up the full range we need.
1975 */
dca51e78 1976 pci_free_irq_vectors(pdev);
22b55601
KB
1977 result = pci_alloc_irq_vectors_affinity(pdev, 1, nr_io_queues + 1,
1978 PCI_IRQ_ALL_TYPES | PCI_IRQ_AFFINITY, &affd);
1979 if (result <= 0)
dca51e78 1980 return -EIO;
22b55601
KB
1981 dev->num_vecs = result;
1982 dev->max_qid = max(result - 1, 1);
fa08a396 1983
063a8096
MW
1984 /*
1985 * Should investigate if there's a performance win from allocating
1986 * more queues than interrupt vectors; it might allow the submission
1987 * path to scale better, even if the receive path is limited by the
1988 * number of interrupts.
1989 */
063a8096 1990
dca51e78 1991 result = queue_request_irq(adminq);
758dd7fd
JD
1992 if (result) {
1993 adminq->cq_vector = -1;
d4875622 1994 return result;
758dd7fd 1995 }
749941f2 1996 return nvme_create_io_queues(dev);
b60503ba
MW
1997}
1998
2a842aca 1999static void nvme_del_queue_end(struct request *req, blk_status_t error)
a5768aa8 2000{
db3cbfff 2001 struct nvme_queue *nvmeq = req->end_io_data;
b5875222 2002
db3cbfff
KB
2003 blk_mq_free_request(req);
2004 complete(&nvmeq->dev->ioq_wait);
a5768aa8
KB
2005}
2006
2a842aca 2007static void nvme_del_cq_end(struct request *req, blk_status_t error)
a5768aa8 2008{
db3cbfff 2009 struct nvme_queue *nvmeq = req->end_io_data;
5cb525c8 2010 u16 start, end;
a5768aa8 2011
db3cbfff
KB
2012 if (!error) {
2013 unsigned long flags;
2014
2e39e0f6 2015 /*
1ab0cd69
JA
2016 * We might be called with the AQ cq_lock held
2017 * and the I/O queue cq_lock should always
2e39e0f6
ML
2018 * nest inside the AQ one.
2019 */
1ab0cd69 2020 spin_lock_irqsave_nested(&nvmeq->cq_lock, flags,
2e39e0f6 2021 SINGLE_DEPTH_NESTING);
5cb525c8 2022 nvme_process_cq(nvmeq, &start, &end, -1);
1ab0cd69 2023 spin_unlock_irqrestore(&nvmeq->cq_lock, flags);
5cb525c8
JA
2024
2025 nvme_complete_cqes(nvmeq, start, end);
a5768aa8 2026 }
db3cbfff
KB
2027
2028 nvme_del_queue_end(req, error);
a5768aa8
KB
2029}
2030
db3cbfff 2031static int nvme_delete_queue(struct nvme_queue *nvmeq, u8 opcode)
bda4e0fb 2032{
db3cbfff
KB
2033 struct request_queue *q = nvmeq->dev->ctrl.admin_q;
2034 struct request *req;
2035 struct nvme_command cmd;
bda4e0fb 2036
db3cbfff
KB
2037 memset(&cmd, 0, sizeof(cmd));
2038 cmd.delete_queue.opcode = opcode;
2039 cmd.delete_queue.qid = cpu_to_le16(nvmeq->qid);
bda4e0fb 2040
eb71f435 2041 req = nvme_alloc_request(q, &cmd, BLK_MQ_REQ_NOWAIT, NVME_QID_ANY);
db3cbfff
KB
2042 if (IS_ERR(req))
2043 return PTR_ERR(req);
bda4e0fb 2044
db3cbfff
KB
2045 req->timeout = ADMIN_TIMEOUT;
2046 req->end_io_data = nvmeq;
2047
2048 blk_execute_rq_nowait(q, NULL, req, false,
2049 opcode == nvme_admin_delete_cq ?
2050 nvme_del_cq_end : nvme_del_queue_end);
2051 return 0;
bda4e0fb
KB
2052}
2053
ee9aebb2 2054static void nvme_disable_io_queues(struct nvme_dev *dev)
a5768aa8 2055{
ee9aebb2 2056 int pass, queues = dev->online_queues - 1;
db3cbfff
KB
2057 unsigned long timeout;
2058 u8 opcode = nvme_admin_delete_sq;
a5768aa8 2059
db3cbfff 2060 for (pass = 0; pass < 2; pass++) {
014a0d60 2061 int sent = 0, i = queues;
db3cbfff
KB
2062
2063 reinit_completion(&dev->ioq_wait);
2064 retry:
2065 timeout = ADMIN_TIMEOUT;
c21377f8 2066 for (; i > 0; i--, sent++)
147b27e4 2067 if (nvme_delete_queue(&dev->queues[i], opcode))
db3cbfff 2068 break;
c21377f8 2069
db3cbfff
KB
2070 while (sent--) {
2071 timeout = wait_for_completion_io_timeout(&dev->ioq_wait, timeout);
2072 if (timeout == 0)
2073 return;
2074 if (i)
2075 goto retry;
2076 }
2077 opcode = nvme_admin_delete_cq;
2078 }
a5768aa8
KB
2079}
2080
422ef0c7 2081/*
2b1b7e78 2082 * return error value only when tagset allocation failed
422ef0c7 2083 */
8d85fce7 2084static int nvme_dev_add(struct nvme_dev *dev)
b60503ba 2085{
2b1b7e78
JW
2086 int ret;
2087
5bae7f73 2088 if (!dev->ctrl.tagset) {
ffe7704d
KB
2089 dev->tagset.ops = &nvme_mq_ops;
2090 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2091 dev->tagset.timeout = NVME_IO_TIMEOUT;
2092 dev->tagset.numa_node = dev_to_node(dev->dev);
2093 dev->tagset.queue_depth =
a4aea562 2094 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
a7a7cbe3
CK
2095 dev->tagset.cmd_size = nvme_pci_cmd_size(dev, false);
2096 if ((dev->ctrl.sgls & ((1 << 0) | (1 << 1))) && sgl_threshold) {
2097 dev->tagset.cmd_size = max(dev->tagset.cmd_size,
2098 nvme_pci_cmd_size(dev, true));
2099 }
ffe7704d
KB
2100 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2101 dev->tagset.driver_data = dev;
b60503ba 2102
2b1b7e78
JW
2103 ret = blk_mq_alloc_tag_set(&dev->tagset);
2104 if (ret) {
2105 dev_warn(dev->ctrl.device,
2106 "IO queues tagset allocation failed %d\n", ret);
2107 return ret;
2108 }
5bae7f73 2109 dev->ctrl.tagset = &dev->tagset;
f9f38e33
HK
2110
2111 nvme_dbbuf_set(dev);
949928c1
KB
2112 } else {
2113 blk_mq_update_nr_hw_queues(&dev->tagset, dev->online_queues - 1);
2114
2115 /* Free previously allocated queues that are no longer usable */
2116 nvme_free_queues(dev, dev->online_queues);
ffe7704d 2117 }
949928c1 2118
e1e5e564 2119 return 0;
b60503ba
MW
2120}
2121
b00a726a 2122static int nvme_pci_enable(struct nvme_dev *dev)
0877cb0d 2123{
b00a726a 2124 int result = -ENOMEM;
e75ec752 2125 struct pci_dev *pdev = to_pci_dev(dev->dev);
0877cb0d
KB
2126
2127 if (pci_enable_device_mem(pdev))
2128 return result;
2129
0877cb0d 2130 pci_set_master(pdev);
0877cb0d 2131
e75ec752
CH
2132 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
2133 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
052d0efa 2134 goto disable;
0877cb0d 2135
7a67cbea 2136 if (readl(dev->bar + NVME_REG_CSTS) == -1) {
0e53d180 2137 result = -ENODEV;
b00a726a 2138 goto disable;
0e53d180 2139 }
e32efbfc
JA
2140
2141 /*
a5229050
KB
2142 * Some devices and/or platforms don't advertise or work with INTx
2143 * interrupts. Pre-enable a single MSIX or MSI vec for setup. We'll
2144 * adjust this later.
e32efbfc 2145 */
dca51e78
CH
2146 result = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_ALL_TYPES);
2147 if (result < 0)
2148 return result;
e32efbfc 2149
20d0dfe6 2150 dev->ctrl.cap = lo_hi_readq(dev->bar + NVME_REG_CAP);
7a67cbea 2151
20d0dfe6 2152 dev->q_depth = min_t(int, NVME_CAP_MQES(dev->ctrl.cap) + 1,
b27c1e68 2153 io_queue_depth);
20d0dfe6 2154 dev->db_stride = 1 << NVME_CAP_STRIDE(dev->ctrl.cap);
7a67cbea 2155 dev->dbs = dev->bar + 4096;
1f390c1f
SG
2156
2157 /*
2158 * Temporary fix for the Apple controller found in the MacBook8,1 and
2159 * some MacBook7,1 to avoid controller resets and data loss.
2160 */
2161 if (pdev->vendor == PCI_VENDOR_ID_APPLE && pdev->device == 0x2001) {
2162 dev->q_depth = 2;
9bdcfb10
CH
2163 dev_warn(dev->ctrl.device, "detected Apple NVMe controller, "
2164 "set queue depth=%u to work around controller resets\n",
1f390c1f 2165 dev->q_depth);
d554b5e1
MP
2166 } else if (pdev->vendor == PCI_VENDOR_ID_SAMSUNG &&
2167 (pdev->device == 0xa821 || pdev->device == 0xa822) &&
20d0dfe6 2168 NVME_CAP_MQES(dev->ctrl.cap) == 0) {
d554b5e1
MP
2169 dev->q_depth = 64;
2170 dev_err(dev->ctrl.device, "detected PM1725 NVMe controller, "
2171 "set queue depth=%u\n", dev->q_depth);
1f390c1f
SG
2172 }
2173
f65efd6d 2174 nvme_map_cmb(dev);
202021c1 2175
a0a3408e
KB
2176 pci_enable_pcie_error_reporting(pdev);
2177 pci_save_state(pdev);
0877cb0d
KB
2178 return 0;
2179
2180 disable:
0877cb0d
KB
2181 pci_disable_device(pdev);
2182 return result;
2183}
2184
2185static void nvme_dev_unmap(struct nvme_dev *dev)
b00a726a
KB
2186{
2187 if (dev->bar)
2188 iounmap(dev->bar);
a1f447b3 2189 pci_release_mem_regions(to_pci_dev(dev->dev));
b00a726a
KB
2190}
2191
2192static void nvme_pci_disable(struct nvme_dev *dev)
0877cb0d 2193{
e75ec752
CH
2194 struct pci_dev *pdev = to_pci_dev(dev->dev);
2195
f63572df 2196 nvme_release_cmb(dev);
dca51e78 2197 pci_free_irq_vectors(pdev);
0877cb0d 2198
a0a3408e
KB
2199 if (pci_is_enabled(pdev)) {
2200 pci_disable_pcie_error_reporting(pdev);
e75ec752 2201 pci_disable_device(pdev);
4d115420 2202 }
4d115420
KB
2203}
2204
a5cdb68c 2205static void nvme_dev_disable(struct nvme_dev *dev, bool shutdown)
b60503ba 2206{
ee9aebb2 2207 int i;
302ad8cc
KB
2208 bool dead = true;
2209 struct pci_dev *pdev = to_pci_dev(dev->dev);
22404274 2210
77bf25ea 2211 mutex_lock(&dev->shutdown_lock);
302ad8cc
KB
2212 if (pci_is_enabled(pdev)) {
2213 u32 csts = readl(dev->bar + NVME_REG_CSTS);
2214
ebef7368
KB
2215 if (dev->ctrl.state == NVME_CTRL_LIVE ||
2216 dev->ctrl.state == NVME_CTRL_RESETTING)
302ad8cc
KB
2217 nvme_start_freeze(&dev->ctrl);
2218 dead = !!((csts & NVME_CSTS_CFS) || !(csts & NVME_CSTS_RDY) ||
2219 pdev->error_state != pci_channel_io_normal);
c9d3bf88 2220 }
c21377f8 2221
302ad8cc
KB
2222 /*
2223 * Give the controller a chance to complete all entered requests if
2224 * doing a safe shutdown.
2225 */
87ad72a5
CH
2226 if (!dead) {
2227 if (shutdown)
2228 nvme_wait_freeze_timeout(&dev->ctrl, NVME_IO_TIMEOUT);
9a915a5b
JW
2229 }
2230
2231 nvme_stop_queues(&dev->ctrl);
87ad72a5 2232
64ee0ac0 2233 if (!dead && dev->ctrl.queue_count > 0) {
87ad72a5
CH
2234 /*
2235 * If the controller is still alive tell it to stop using the
2236 * host memory buffer. In theory the shutdown / reset should
2237 * make sure that it doesn't access the host memoery anymore,
2238 * but I'd rather be safe than sorry..
2239 */
2240 if (dev->host_mem_descs)
2241 nvme_set_host_mem(dev, 0);
ee9aebb2 2242 nvme_disable_io_queues(dev);
a5cdb68c 2243 nvme_disable_admin_queue(dev, shutdown);
4d115420 2244 }
ee9aebb2
KB
2245 for (i = dev->ctrl.queue_count - 1; i >= 0; i--)
2246 nvme_suspend_queue(&dev->queues[i]);
2247
b00a726a 2248 nvme_pci_disable(dev);
07836e65 2249
e1958e65
ML
2250 blk_mq_tagset_busy_iter(&dev->tagset, nvme_cancel_request, &dev->ctrl);
2251 blk_mq_tagset_busy_iter(&dev->admin_tagset, nvme_cancel_request, &dev->ctrl);
302ad8cc
KB
2252
2253 /*
2254 * The driver will not be starting up queues again if shutting down so
2255 * must flush all entered requests to their failed completion to avoid
2256 * deadlocking blk-mq hot-cpu notifier.
2257 */
2258 if (shutdown)
2259 nvme_start_queues(&dev->ctrl);
77bf25ea 2260 mutex_unlock(&dev->shutdown_lock);
b60503ba
MW
2261}
2262
091b6092
MW
2263static int nvme_setup_prp_pools(struct nvme_dev *dev)
2264{
e75ec752 2265 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
091b6092
MW
2266 PAGE_SIZE, PAGE_SIZE, 0);
2267 if (!dev->prp_page_pool)
2268 return -ENOMEM;
2269
99802a7a 2270 /* Optimisation for I/Os between 4k and 128k */
e75ec752 2271 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
99802a7a
MW
2272 256, 256, 0);
2273 if (!dev->prp_small_pool) {
2274 dma_pool_destroy(dev->prp_page_pool);
2275 return -ENOMEM;
2276 }
091b6092
MW
2277 return 0;
2278}
2279
2280static void nvme_release_prp_pools(struct nvme_dev *dev)
2281{
2282 dma_pool_destroy(dev->prp_page_pool);
99802a7a 2283 dma_pool_destroy(dev->prp_small_pool);
091b6092
MW
2284}
2285
1673f1f0 2286static void nvme_pci_free_ctrl(struct nvme_ctrl *ctrl)
5e82e952 2287{
1673f1f0 2288 struct nvme_dev *dev = to_nvme_dev(ctrl);
9ac27090 2289
f9f38e33 2290 nvme_dbbuf_dma_free(dev);
e75ec752 2291 put_device(dev->dev);
4af0e21c
KB
2292 if (dev->tagset.tags)
2293 blk_mq_free_tag_set(&dev->tagset);
1c63dc66
CH
2294 if (dev->ctrl.admin_q)
2295 blk_put_queue(dev->ctrl.admin_q);
5e82e952 2296 kfree(dev->queues);
e286bcfc 2297 free_opal_dev(dev->ctrl.opal_dev);
5e82e952
KB
2298 kfree(dev);
2299}
2300
f58944e2
KB
2301static void nvme_remove_dead_ctrl(struct nvme_dev *dev, int status)
2302{
237045fc 2303 dev_warn(dev->ctrl.device, "Removing after probe failure status: %d\n", status);
f58944e2 2304
d22524a4 2305 nvme_get_ctrl(&dev->ctrl);
69d9a99c 2306 nvme_dev_disable(dev, false);
03e0f3a6 2307 if (!queue_work(nvme_wq, &dev->remove_work))
f58944e2
KB
2308 nvme_put_ctrl(&dev->ctrl);
2309}
2310
fd634f41 2311static void nvme_reset_work(struct work_struct *work)
5e82e952 2312{
d86c4d8e
CH
2313 struct nvme_dev *dev =
2314 container_of(work, struct nvme_dev, ctrl.reset_work);
a98e58e5 2315 bool was_suspend = !!(dev->ctrl.ctrl_config & NVME_CC_SHN_NORMAL);
f58944e2 2316 int result = -ENODEV;
2b1b7e78 2317 enum nvme_ctrl_state new_state = NVME_CTRL_LIVE;
5e82e952 2318
82b057ca 2319 if (WARN_ON(dev->ctrl.state != NVME_CTRL_RESETTING))
fd634f41 2320 goto out;
5e82e952 2321
fd634f41
CH
2322 /*
2323 * If we're called to reset a live controller first shut it down before
2324 * moving on.
2325 */
b00a726a 2326 if (dev->ctrl.ctrl_config & NVME_CC_ENABLE)
a5cdb68c 2327 nvme_dev_disable(dev, false);
5e82e952 2328
ad70062c 2329 /*
ad6a0a52 2330 * Introduce CONNECTING state from nvme-fc/rdma transports to mark the
ad70062c
JW
2331 * initializing procedure here.
2332 */
ad6a0a52 2333 if (!nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_CONNECTING)) {
ad70062c 2334 dev_warn(dev->ctrl.device,
ad6a0a52 2335 "failed to mark controller CONNECTING\n");
ad70062c
JW
2336 goto out;
2337 }
2338
b00a726a 2339 result = nvme_pci_enable(dev);
f0b50732 2340 if (result)
3cf519b5 2341 goto out;
f0b50732 2342
01ad0990 2343 result = nvme_pci_configure_admin_queue(dev);
f0b50732 2344 if (result)
f58944e2 2345 goto out;
f0b50732 2346
0fb59cbc
KB
2347 result = nvme_alloc_admin_tags(dev);
2348 if (result)
f58944e2 2349 goto out;
b9afca3e 2350
ce4541f4
CH
2351 result = nvme_init_identify(&dev->ctrl);
2352 if (result)
f58944e2 2353 goto out;
ce4541f4 2354
e286bcfc
SB
2355 if (dev->ctrl.oacs & NVME_CTRL_OACS_SEC_SUPP) {
2356 if (!dev->ctrl.opal_dev)
2357 dev->ctrl.opal_dev =
2358 init_opal_dev(&dev->ctrl, &nvme_sec_submit);
2359 else if (was_suspend)
2360 opal_unlock_from_suspend(dev->ctrl.opal_dev);
2361 } else {
2362 free_opal_dev(dev->ctrl.opal_dev);
2363 dev->ctrl.opal_dev = NULL;
4f1244c8 2364 }
a98e58e5 2365
f9f38e33
HK
2366 if (dev->ctrl.oacs & NVME_CTRL_OACS_DBBUF_SUPP) {
2367 result = nvme_dbbuf_dma_alloc(dev);
2368 if (result)
2369 dev_warn(dev->dev,
2370 "unable to allocate dma for dbbuf\n");
2371 }
2372
9620cfba
CH
2373 if (dev->ctrl.hmpre) {
2374 result = nvme_setup_host_mem(dev);
2375 if (result < 0)
2376 goto out;
2377 }
87ad72a5 2378
f0b50732 2379 result = nvme_setup_io_queues(dev);
badc34d4 2380 if (result)
f58944e2 2381 goto out;
f0b50732 2382
2659e57b
CH
2383 /*
2384 * Keep the controller around but remove all namespaces if we don't have
2385 * any working I/O queue.
2386 */
3cf519b5 2387 if (dev->online_queues < 2) {
1b3c47c1 2388 dev_warn(dev->ctrl.device, "IO queues not created\n");
3b24774e 2389 nvme_kill_queues(&dev->ctrl);
5bae7f73 2390 nvme_remove_namespaces(&dev->ctrl);
2b1b7e78 2391 new_state = NVME_CTRL_ADMIN_ONLY;
3cf519b5 2392 } else {
25646264 2393 nvme_start_queues(&dev->ctrl);
302ad8cc 2394 nvme_wait_freeze(&dev->ctrl);
2b1b7e78
JW
2395 /* hit this only when allocate tagset fails */
2396 if (nvme_dev_add(dev))
2397 new_state = NVME_CTRL_ADMIN_ONLY;
302ad8cc 2398 nvme_unfreeze(&dev->ctrl);
3cf519b5
CH
2399 }
2400
2b1b7e78
JW
2401 /*
2402 * If only admin queue live, keep it to do further investigation or
2403 * recovery.
2404 */
2405 if (!nvme_change_ctrl_state(&dev->ctrl, new_state)) {
2406 dev_warn(dev->ctrl.device,
2407 "failed to mark controller state %d\n", new_state);
bb8d261e
CH
2408 goto out;
2409 }
92911a55 2410
d09f2b45 2411 nvme_start_ctrl(&dev->ctrl);
3cf519b5 2412 return;
f0b50732 2413
3cf519b5 2414 out:
f58944e2 2415 nvme_remove_dead_ctrl(dev, result);
f0b50732
KB
2416}
2417
5c8809e6 2418static void nvme_remove_dead_ctrl_work(struct work_struct *work)
9a6b9458 2419{
5c8809e6 2420 struct nvme_dev *dev = container_of(work, struct nvme_dev, remove_work);
e75ec752 2421 struct pci_dev *pdev = to_pci_dev(dev->dev);
9a6b9458 2422
69d9a99c 2423 nvme_kill_queues(&dev->ctrl);
9a6b9458 2424 if (pci_get_drvdata(pdev))
921920ab 2425 device_release_driver(&pdev->dev);
1673f1f0 2426 nvme_put_ctrl(&dev->ctrl);
9a6b9458
KB
2427}
2428
1c63dc66 2429static int nvme_pci_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val)
9ca97374 2430{
1c63dc66 2431 *val = readl(to_nvme_dev(ctrl)->bar + off);
90667892 2432 return 0;
9ca97374
TH
2433}
2434
5fd4ce1b 2435static int nvme_pci_reg_write32(struct nvme_ctrl *ctrl, u32 off, u32 val)
4cc06521 2436{
5fd4ce1b
CH
2437 writel(val, to_nvme_dev(ctrl)->bar + off);
2438 return 0;
2439}
4cc06521 2440
7fd8930f
CH
2441static int nvme_pci_reg_read64(struct nvme_ctrl *ctrl, u32 off, u64 *val)
2442{
2443 *val = readq(to_nvme_dev(ctrl)->bar + off);
2444 return 0;
4cc06521
KB
2445}
2446
97c12223
KB
2447static int nvme_pci_get_address(struct nvme_ctrl *ctrl, char *buf, int size)
2448{
2449 struct pci_dev *pdev = to_pci_dev(to_nvme_dev(ctrl)->dev);
2450
2451 return snprintf(buf, size, "%s", dev_name(&pdev->dev));
2452}
2453
1c63dc66 2454static const struct nvme_ctrl_ops nvme_pci_ctrl_ops = {
1a353d85 2455 .name = "pcie",
e439bb12 2456 .module = THIS_MODULE,
c81bfba9 2457 .flags = NVME_F_METADATA_SUPPORTED,
1c63dc66 2458 .reg_read32 = nvme_pci_reg_read32,
5fd4ce1b 2459 .reg_write32 = nvme_pci_reg_write32,
7fd8930f 2460 .reg_read64 = nvme_pci_reg_read64,
1673f1f0 2461 .free_ctrl = nvme_pci_free_ctrl,
f866fc42 2462 .submit_async_event = nvme_pci_submit_async_event,
97c12223 2463 .get_address = nvme_pci_get_address,
1c63dc66 2464};
4cc06521 2465
b00a726a
KB
2466static int nvme_dev_map(struct nvme_dev *dev)
2467{
b00a726a
KB
2468 struct pci_dev *pdev = to_pci_dev(dev->dev);
2469
a1f447b3 2470 if (pci_request_mem_regions(pdev, "nvme"))
b00a726a
KB
2471 return -ENODEV;
2472
97f6ef64 2473 if (nvme_remap_bar(dev, NVME_REG_DBS + 4096))
b00a726a
KB
2474 goto release;
2475
9fa196e7 2476 return 0;
b00a726a 2477 release:
9fa196e7
MG
2478 pci_release_mem_regions(pdev);
2479 return -ENODEV;
b00a726a
KB
2480}
2481
8427bbc2 2482static unsigned long check_vendor_combination_bug(struct pci_dev *pdev)
ff5350a8
AL
2483{
2484 if (pdev->vendor == 0x144d && pdev->device == 0xa802) {
2485 /*
2486 * Several Samsung devices seem to drop off the PCIe bus
2487 * randomly when APST is on and uses the deepest sleep state.
2488 * This has been observed on a Samsung "SM951 NVMe SAMSUNG
2489 * 256GB", a "PM951 NVMe SAMSUNG 512GB", and a "Samsung SSD
2490 * 950 PRO 256GB", but it seems to be restricted to two Dell
2491 * laptops.
2492 */
2493 if (dmi_match(DMI_SYS_VENDOR, "Dell Inc.") &&
2494 (dmi_match(DMI_PRODUCT_NAME, "XPS 15 9550") ||
2495 dmi_match(DMI_PRODUCT_NAME, "Precision 5510")))
2496 return NVME_QUIRK_NO_DEEPEST_PS;
8427bbc2
KHF
2497 } else if (pdev->vendor == 0x144d && pdev->device == 0xa804) {
2498 /*
2499 * Samsung SSD 960 EVO drops off the PCIe bus after system
467c77d4
JJ
2500 * suspend on a Ryzen board, ASUS PRIME B350M-A, as well as
2501 * within few minutes after bootup on a Coffee Lake board -
2502 * ASUS PRIME Z370-A
8427bbc2
KHF
2503 */
2504 if (dmi_match(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC.") &&
467c77d4
JJ
2505 (dmi_match(DMI_BOARD_NAME, "PRIME B350M-A") ||
2506 dmi_match(DMI_BOARD_NAME, "PRIME Z370-A")))
8427bbc2 2507 return NVME_QUIRK_NO_APST;
ff5350a8
AL
2508 }
2509
2510 return 0;
2511}
2512
18119775
KB
2513static void nvme_async_probe(void *data, async_cookie_t cookie)
2514{
2515 struct nvme_dev *dev = data;
80f513b5 2516
18119775
KB
2517 nvme_reset_ctrl_sync(&dev->ctrl);
2518 flush_work(&dev->ctrl.scan_work);
80f513b5 2519 nvme_put_ctrl(&dev->ctrl);
18119775
KB
2520}
2521
8d85fce7 2522static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
b60503ba 2523{
a4aea562 2524 int node, result = -ENOMEM;
b60503ba 2525 struct nvme_dev *dev;
ff5350a8 2526 unsigned long quirks = id->driver_data;
b60503ba 2527
a4aea562
MB
2528 node = dev_to_node(&pdev->dev);
2529 if (node == NUMA_NO_NODE)
2fa84351 2530 set_dev_node(&pdev->dev, first_memory_node);
a4aea562
MB
2531
2532 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
b60503ba
MW
2533 if (!dev)
2534 return -ENOMEM;
147b27e4
SG
2535
2536 dev->queues = kcalloc_node(num_possible_cpus() + 1,
2537 sizeof(struct nvme_queue), GFP_KERNEL, node);
b60503ba
MW
2538 if (!dev->queues)
2539 goto free;
2540
e75ec752 2541 dev->dev = get_device(&pdev->dev);
9a6b9458 2542 pci_set_drvdata(pdev, dev);
1c63dc66 2543
b00a726a
KB
2544 result = nvme_dev_map(dev);
2545 if (result)
b00c9b7a 2546 goto put_pci;
b00a726a 2547
d86c4d8e 2548 INIT_WORK(&dev->ctrl.reset_work, nvme_reset_work);
5c8809e6 2549 INIT_WORK(&dev->remove_work, nvme_remove_dead_ctrl_work);
77bf25ea 2550 mutex_init(&dev->shutdown_lock);
db3cbfff 2551 init_completion(&dev->ioq_wait);
b60503ba 2552
091b6092
MW
2553 result = nvme_setup_prp_pools(dev);
2554 if (result)
b00c9b7a 2555 goto unmap;
4cc06521 2556
8427bbc2 2557 quirks |= check_vendor_combination_bug(pdev);
ff5350a8 2558
f3ca80fc 2559 result = nvme_init_ctrl(&dev->ctrl, &pdev->dev, &nvme_pci_ctrl_ops,
ff5350a8 2560 quirks);
4cc06521 2561 if (result)
2e1d8448 2562 goto release_pools;
740216fc 2563
1b3c47c1
SG
2564 dev_info(dev->ctrl.device, "pci function %s\n", dev_name(&pdev->dev));
2565
80f513b5 2566 nvme_get_ctrl(&dev->ctrl);
18119775 2567 async_schedule(nvme_async_probe, dev);
4caff8fc 2568
b60503ba
MW
2569 return 0;
2570
0877cb0d 2571 release_pools:
091b6092 2572 nvme_release_prp_pools(dev);
b00c9b7a
CJ
2573 unmap:
2574 nvme_dev_unmap(dev);
a96d4f5c 2575 put_pci:
e75ec752 2576 put_device(dev->dev);
b60503ba
MW
2577 free:
2578 kfree(dev->queues);
b60503ba
MW
2579 kfree(dev);
2580 return result;
2581}
2582
775755ed 2583static void nvme_reset_prepare(struct pci_dev *pdev)
f0d54a54 2584{
a6739479 2585 struct nvme_dev *dev = pci_get_drvdata(pdev);
f263fbb8 2586 nvme_dev_disable(dev, false);
775755ed 2587}
f0d54a54 2588
775755ed
CH
2589static void nvme_reset_done(struct pci_dev *pdev)
2590{
f263fbb8 2591 struct nvme_dev *dev = pci_get_drvdata(pdev);
79c48ccf 2592 nvme_reset_ctrl_sync(&dev->ctrl);
f0d54a54
KB
2593}
2594
09ece142
KB
2595static void nvme_shutdown(struct pci_dev *pdev)
2596{
2597 struct nvme_dev *dev = pci_get_drvdata(pdev);
a5cdb68c 2598 nvme_dev_disable(dev, true);
09ece142
KB
2599}
2600
f58944e2
KB
2601/*
2602 * The driver's remove may be called on a device in a partially initialized
2603 * state. This function must not have any dependencies on the device state in
2604 * order to proceed.
2605 */
8d85fce7 2606static void nvme_remove(struct pci_dev *pdev)
b60503ba
MW
2607{
2608 struct nvme_dev *dev = pci_get_drvdata(pdev);
9a6b9458 2609
bb8d261e
CH
2610 nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DELETING);
2611
d86c4d8e 2612 cancel_work_sync(&dev->ctrl.reset_work);
9a6b9458 2613 pci_set_drvdata(pdev, NULL);
0ff9d4e1 2614
6db28eda 2615 if (!pci_device_is_present(pdev)) {
0ff9d4e1 2616 nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DEAD);
6db28eda
KB
2617 nvme_dev_disable(dev, false);
2618 }
0ff9d4e1 2619
d86c4d8e 2620 flush_work(&dev->ctrl.reset_work);
d09f2b45
SG
2621 nvme_stop_ctrl(&dev->ctrl);
2622 nvme_remove_namespaces(&dev->ctrl);
a5cdb68c 2623 nvme_dev_disable(dev, true);
87ad72a5 2624 nvme_free_host_mem(dev);
a4aea562 2625 nvme_dev_remove_admin(dev);
a1a5ef99 2626 nvme_free_queues(dev, 0);
d09f2b45 2627 nvme_uninit_ctrl(&dev->ctrl);
9a6b9458 2628 nvme_release_prp_pools(dev);
b00a726a 2629 nvme_dev_unmap(dev);
1673f1f0 2630 nvme_put_ctrl(&dev->ctrl);
b60503ba
MW
2631}
2632
13880f5b
KB
2633static int nvme_pci_sriov_configure(struct pci_dev *pdev, int numvfs)
2634{
2635 int ret = 0;
2636
2637 if (numvfs == 0) {
2638 if (pci_vfs_assigned(pdev)) {
2639 dev_warn(&pdev->dev,
2640 "Cannot disable SR-IOV VFs while assigned\n");
2641 return -EPERM;
2642 }
2643 pci_disable_sriov(pdev);
2644 return 0;
2645 }
2646
2647 ret = pci_enable_sriov(pdev, numvfs);
2648 return ret ? ret : numvfs;
2649}
2650
671a6018 2651#ifdef CONFIG_PM_SLEEP
cd638946
KB
2652static int nvme_suspend(struct device *dev)
2653{
2654 struct pci_dev *pdev = to_pci_dev(dev);
2655 struct nvme_dev *ndev = pci_get_drvdata(pdev);
2656
a5cdb68c 2657 nvme_dev_disable(ndev, true);
cd638946
KB
2658 return 0;
2659}
2660
2661static int nvme_resume(struct device *dev)
2662{
2663 struct pci_dev *pdev = to_pci_dev(dev);
2664 struct nvme_dev *ndev = pci_get_drvdata(pdev);
cd638946 2665
d86c4d8e 2666 nvme_reset_ctrl(&ndev->ctrl);
9a6b9458 2667 return 0;
cd638946 2668}
671a6018 2669#endif
cd638946
KB
2670
2671static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
b60503ba 2672
a0a3408e
KB
2673static pci_ers_result_t nvme_error_detected(struct pci_dev *pdev,
2674 pci_channel_state_t state)
2675{
2676 struct nvme_dev *dev = pci_get_drvdata(pdev);
2677
2678 /*
2679 * A frozen channel requires a reset. When detected, this method will
2680 * shutdown the controller to quiesce. The controller will be restarted
2681 * after the slot reset through driver's slot_reset callback.
2682 */
a0a3408e
KB
2683 switch (state) {
2684 case pci_channel_io_normal:
2685 return PCI_ERS_RESULT_CAN_RECOVER;
2686 case pci_channel_io_frozen:
d011fb31
KB
2687 dev_warn(dev->ctrl.device,
2688 "frozen state error detected, reset controller\n");
a5cdb68c 2689 nvme_dev_disable(dev, false);
a0a3408e
KB
2690 return PCI_ERS_RESULT_NEED_RESET;
2691 case pci_channel_io_perm_failure:
d011fb31
KB
2692 dev_warn(dev->ctrl.device,
2693 "failure state error detected, request disconnect\n");
a0a3408e
KB
2694 return PCI_ERS_RESULT_DISCONNECT;
2695 }
2696 return PCI_ERS_RESULT_NEED_RESET;
2697}
2698
2699static pci_ers_result_t nvme_slot_reset(struct pci_dev *pdev)
2700{
2701 struct nvme_dev *dev = pci_get_drvdata(pdev);
2702
1b3c47c1 2703 dev_info(dev->ctrl.device, "restart after slot reset\n");
a0a3408e 2704 pci_restore_state(pdev);
72cd4cc2
KB
2705 nvme_reset_ctrl(&dev->ctrl);
2706 return PCI_ERS_RESULT_RECOVERED;
a0a3408e
KB
2707}
2708
2709static void nvme_error_resume(struct pci_dev *pdev)
2710{
72cd4cc2
KB
2711 struct nvme_dev *dev = pci_get_drvdata(pdev);
2712
2713 flush_work(&dev->ctrl.reset_work);
a0a3408e
KB
2714 pci_cleanup_aer_uncorrect_error_status(pdev);
2715}
2716
1d352035 2717static const struct pci_error_handlers nvme_err_handler = {
b60503ba 2718 .error_detected = nvme_error_detected,
b60503ba
MW
2719 .slot_reset = nvme_slot_reset,
2720 .resume = nvme_error_resume,
775755ed
CH
2721 .reset_prepare = nvme_reset_prepare,
2722 .reset_done = nvme_reset_done,
b60503ba
MW
2723};
2724
6eb0d698 2725static const struct pci_device_id nvme_id_table[] = {
106198ed 2726 { PCI_VDEVICE(INTEL, 0x0953),
08095e70 2727 .driver_data = NVME_QUIRK_STRIPE_SIZE |
e850fd16 2728 NVME_QUIRK_DEALLOCATE_ZEROES, },
99466e70
KB
2729 { PCI_VDEVICE(INTEL, 0x0a53),
2730 .driver_data = NVME_QUIRK_STRIPE_SIZE |
e850fd16 2731 NVME_QUIRK_DEALLOCATE_ZEROES, },
99466e70
KB
2732 { PCI_VDEVICE(INTEL, 0x0a54),
2733 .driver_data = NVME_QUIRK_STRIPE_SIZE |
e850fd16 2734 NVME_QUIRK_DEALLOCATE_ZEROES, },
f99cb7af
DWF
2735 { PCI_VDEVICE(INTEL, 0x0a55),
2736 .driver_data = NVME_QUIRK_STRIPE_SIZE |
2737 NVME_QUIRK_DEALLOCATE_ZEROES, },
50af47d0
AL
2738 { PCI_VDEVICE(INTEL, 0xf1a5), /* Intel 600P/P3100 */
2739 .driver_data = NVME_QUIRK_NO_DEEPEST_PS },
540c801c
KB
2740 { PCI_VDEVICE(INTEL, 0x5845), /* Qemu emulated controller */
2741 .driver_data = NVME_QUIRK_IDENTIFY_CNS, },
0302ae60
MP
2742 { PCI_DEVICE(0x1bb1, 0x0100), /* Seagate Nytro Flash Storage */
2743 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
54adc010
GP
2744 { PCI_DEVICE(0x1c58, 0x0003), /* HGST adapter */
2745 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
8c97eecc
JL
2746 { PCI_DEVICE(0x1c58, 0x0023), /* WDC SN200 adapter */
2747 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
015282c9
WW
2748 { PCI_DEVICE(0x1c5f, 0x0540), /* Memblaze Pblaze4 adapter */
2749 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
d554b5e1
MP
2750 { PCI_DEVICE(0x144d, 0xa821), /* Samsung PM1725 */
2751 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
2752 { PCI_DEVICE(0x144d, 0xa822), /* Samsung PM1725a */
2753 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
608cc4b1
CH
2754 { PCI_DEVICE(0x1d1d, 0x1f1f), /* LighNVM qemu device */
2755 .driver_data = NVME_QUIRK_LIGHTNVM, },
2756 { PCI_DEVICE(0x1d1d, 0x2807), /* CNEX WL */
2757 .driver_data = NVME_QUIRK_LIGHTNVM, },
ea48e877
WX
2758 { PCI_DEVICE(0x1d1d, 0x2601), /* CNEX Granby */
2759 .driver_data = NVME_QUIRK_LIGHTNVM, },
b60503ba 2760 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
c74dc780 2761 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
124298bd 2762 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2003) },
b60503ba
MW
2763 { 0, }
2764};
2765MODULE_DEVICE_TABLE(pci, nvme_id_table);
2766
2767static struct pci_driver nvme_driver = {
2768 .name = "nvme",
2769 .id_table = nvme_id_table,
2770 .probe = nvme_probe,
8d85fce7 2771 .remove = nvme_remove,
09ece142 2772 .shutdown = nvme_shutdown,
cd638946
KB
2773 .driver = {
2774 .pm = &nvme_dev_pm_ops,
2775 },
13880f5b 2776 .sriov_configure = nvme_pci_sriov_configure,
b60503ba
MW
2777 .err_handler = &nvme_err_handler,
2778};
2779
2780static int __init nvme_init(void)
2781{
9a6327d2 2782 return pci_register_driver(&nvme_driver);
b60503ba
MW
2783}
2784
2785static void __exit nvme_exit(void)
2786{
2787 pci_unregister_driver(&nvme_driver);
03e0f3a6 2788 flush_workqueue(nvme_wq);
21bd78bc 2789 _nvme_check_size();
b60503ba
MW
2790}
2791
2792MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
2793MODULE_LICENSE("GPL");
c78b4713 2794MODULE_VERSION("1.0");
b60503ba
MW
2795module_init(nvme_init);
2796module_exit(nvme_exit);