]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/nvme/host/pci.c
skd: fix function prototype
[mirror_ubuntu-bionic-kernel.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>
8de05535 16#include <linux/bitops.h>
b60503ba 17#include <linux/blkdev.h>
a4aea562 18#include <linux/blk-mq.h>
dca51e78 19#include <linux/blk-mq-pci.h>
42f61420 20#include <linux/cpu.h>
fd63e9ce 21#include <linux/delay.h>
b60503ba
MW
22#include <linux/errno.h>
23#include <linux/fs.h>
24#include <linux/genhd.h>
4cc09e2d 25#include <linux/hdreg.h>
5aff9382 26#include <linux/idr.h>
b60503ba
MW
27#include <linux/init.h>
28#include <linux/interrupt.h>
29#include <linux/io.h>
30#include <linux/kdev_t.h>
31#include <linux/kernel.h>
32#include <linux/mm.h>
33#include <linux/module.h>
34#include <linux/moduleparam.h>
77bf25ea 35#include <linux/mutex.h>
b60503ba 36#include <linux/pci.h>
be7b6275 37#include <linux/poison.h>
c3bfe717 38#include <linux/ptrace.h>
b60503ba
MW
39#include <linux/sched.h>
40#include <linux/slab.h>
e1e5e564 41#include <linux/t10-pi.h>
2d55cd5f 42#include <linux/timer.h>
b60503ba 43#include <linux/types.h>
2f8e2c87 44#include <linux/io-64-nonatomic-lo-hi.h>
1d277a63 45#include <asm/unaligned.h>
797a796a 46
f11bb3e2
CH
47#include "nvme.h"
48
9d43cf64 49#define NVME_Q_DEPTH 1024
d31af0a3 50#define NVME_AQ_DEPTH 256
b60503ba
MW
51#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
52#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
adf68f21
CH
53
54/*
55 * We handle AEN commands ourselves and don't even let the
56 * block layer know about them.
57 */
f866fc42 58#define NVME_AQ_BLKMQ_DEPTH (NVME_AQ_DEPTH - NVME_NR_AERS)
9d43cf64 59
58ffacb5
MW
60static int use_threaded_interrupts;
61module_param(use_threaded_interrupts, int, 0);
62
8ffaadf7
JD
63static bool use_cmb_sqes = true;
64module_param(use_cmb_sqes, bool, 0644);
65MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
66
9a6b9458 67static struct workqueue_struct *nvme_workq;
1fa6aead 68
1c63dc66
CH
69struct nvme_dev;
70struct nvme_queue;
b3fffdef 71
4cc06521 72static int nvme_reset(struct nvme_dev *dev);
a0fa9647 73static void nvme_process_cq(struct nvme_queue *nvmeq);
a5cdb68c 74static void nvme_dev_disable(struct nvme_dev *dev, bool shutdown);
d4b4ff8e 75
1c63dc66
CH
76/*
77 * Represents an NVM Express device. Each nvme_dev is a PCI function.
78 */
79struct nvme_dev {
1c63dc66
CH
80 struct nvme_queue **queues;
81 struct blk_mq_tag_set tagset;
82 struct blk_mq_tag_set admin_tagset;
83 u32 __iomem *dbs;
84 struct device *dev;
85 struct dma_pool *prp_page_pool;
86 struct dma_pool *prp_small_pool;
87 unsigned queue_count;
88 unsigned online_queues;
89 unsigned max_qid;
90 int q_depth;
91 u32 db_stride;
1c63dc66 92 void __iomem *bar;
1c63dc66 93 struct work_struct reset_work;
5c8809e6 94 struct work_struct remove_work;
2d55cd5f 95 struct timer_list watchdog_timer;
77bf25ea 96 struct mutex shutdown_lock;
1c63dc66 97 bool subsystem;
1c63dc66
CH
98 void __iomem *cmb;
99 dma_addr_t cmb_dma_addr;
100 u64 cmb_size;
101 u32 cmbsz;
1c63dc66 102 struct nvme_ctrl ctrl;
db3cbfff 103 struct completion ioq_wait;
4d115420 104};
1fa6aead 105
1c63dc66
CH
106static inline struct nvme_dev *to_nvme_dev(struct nvme_ctrl *ctrl)
107{
108 return container_of(ctrl, struct nvme_dev, ctrl);
109}
110
b60503ba
MW
111/*
112 * An NVM Express queue. Each device has at least two (one for admin
113 * commands and one for I/O commands).
114 */
115struct nvme_queue {
116 struct device *q_dmadev;
091b6092 117 struct nvme_dev *dev;
3193f07b 118 char irqname[24]; /* nvme4294967295-65535\0 */
b60503ba
MW
119 spinlock_t q_lock;
120 struct nvme_command *sq_cmds;
8ffaadf7 121 struct nvme_command __iomem *sq_cmds_io;
b60503ba 122 volatile struct nvme_completion *cqes;
42483228 123 struct blk_mq_tags **tags;
b60503ba
MW
124 dma_addr_t sq_dma_addr;
125 dma_addr_t cq_dma_addr;
b60503ba
MW
126 u32 __iomem *q_db;
127 u16 q_depth;
6222d172 128 s16 cq_vector;
b60503ba
MW
129 u16 sq_tail;
130 u16 cq_head;
c30341dc 131 u16 qid;
e9539f47
MW
132 u8 cq_phase;
133 u8 cqe_seen;
b60503ba
MW
134};
135
71bd150c
CH
136/*
137 * The nvme_iod describes the data in an I/O, including the list of PRP
138 * entries. You can't see it in this data structure because C doesn't let
f4800d6d 139 * me express that. Use nvme_init_iod to ensure there's enough space
71bd150c
CH
140 * allocated to store the PRP list.
141 */
142struct nvme_iod {
f4800d6d
CH
143 struct nvme_queue *nvmeq;
144 int aborted;
71bd150c 145 int npages; /* In the PRP list. 0 means small pool in use */
71bd150c
CH
146 int nents; /* Used in scatterlist */
147 int length; /* Of data, in bytes */
148 dma_addr_t first_dma;
bf684057 149 struct scatterlist meta_sg; /* metadata requires single contiguous buffer */
f4800d6d
CH
150 struct scatterlist *sg;
151 struct scatterlist inline_sg[0];
b60503ba
MW
152};
153
154/*
155 * Check we didin't inadvertently grow the command struct
156 */
157static inline void _nvme_check_size(void)
158{
159 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
160 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
161 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
162 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
163 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
f8ebf840 164 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
c30341dc 165 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
b60503ba
MW
166 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
167 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
168 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
169 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
6ecec745 170 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
b60503ba
MW
171}
172
ac3dd5bd
JA
173/*
174 * Max size of iod being embedded in the request payload
175 */
176#define NVME_INT_PAGES 2
5fd4ce1b 177#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->ctrl.page_size)
ac3dd5bd
JA
178
179/*
180 * Will slightly overestimate the number of pages needed. This is OK
181 * as it only leads to a small amount of wasted memory for the lifetime of
182 * the I/O.
183 */
184static int nvme_npages(unsigned size, struct nvme_dev *dev)
185{
5fd4ce1b
CH
186 unsigned nprps = DIV_ROUND_UP(size + dev->ctrl.page_size,
187 dev->ctrl.page_size);
ac3dd5bd
JA
188 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
189}
190
f4800d6d
CH
191static unsigned int nvme_iod_alloc_size(struct nvme_dev *dev,
192 unsigned int size, unsigned int nseg)
ac3dd5bd 193{
f4800d6d
CH
194 return sizeof(__le64 *) * nvme_npages(size, dev) +
195 sizeof(struct scatterlist) * nseg;
196}
ac3dd5bd 197
f4800d6d
CH
198static unsigned int nvme_cmd_size(struct nvme_dev *dev)
199{
200 return sizeof(struct nvme_iod) +
201 nvme_iod_alloc_size(dev, NVME_INT_BYTES(dev), NVME_INT_PAGES);
ac3dd5bd
JA
202}
203
dca51e78
CH
204static int nvmeq_irq(struct nvme_queue *nvmeq)
205{
206 return pci_irq_vector(to_pci_dev(nvmeq->dev->dev), nvmeq->cq_vector);
207}
208
a4aea562
MB
209static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
210 unsigned int hctx_idx)
e85248e5 211{
a4aea562
MB
212 struct nvme_dev *dev = data;
213 struct nvme_queue *nvmeq = dev->queues[0];
214
42483228
KB
215 WARN_ON(hctx_idx != 0);
216 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
217 WARN_ON(nvmeq->tags);
218
a4aea562 219 hctx->driver_data = nvmeq;
42483228 220 nvmeq->tags = &dev->admin_tagset.tags[0];
a4aea562 221 return 0;
e85248e5
MW
222}
223
4af0e21c
KB
224static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
225{
226 struct nvme_queue *nvmeq = hctx->driver_data;
227
228 nvmeq->tags = NULL;
229}
230
a4aea562
MB
231static int nvme_admin_init_request(void *data, struct request *req,
232 unsigned int hctx_idx, unsigned int rq_idx,
233 unsigned int numa_node)
22404274 234{
a4aea562 235 struct nvme_dev *dev = data;
f4800d6d 236 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
a4aea562
MB
237 struct nvme_queue *nvmeq = dev->queues[0];
238
239 BUG_ON(!nvmeq);
f4800d6d 240 iod->nvmeq = nvmeq;
a4aea562 241 return 0;
22404274
KB
242}
243
a4aea562
MB
244static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
245 unsigned int hctx_idx)
b60503ba 246{
a4aea562 247 struct nvme_dev *dev = data;
42483228 248 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
a4aea562 249
42483228
KB
250 if (!nvmeq->tags)
251 nvmeq->tags = &dev->tagset.tags[hctx_idx];
b60503ba 252
42483228 253 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
a4aea562
MB
254 hctx->driver_data = nvmeq;
255 return 0;
b60503ba
MW
256}
257
a4aea562
MB
258static int nvme_init_request(void *data, struct request *req,
259 unsigned int hctx_idx, unsigned int rq_idx,
260 unsigned int numa_node)
b60503ba 261{
a4aea562 262 struct nvme_dev *dev = data;
f4800d6d 263 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
a4aea562
MB
264 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
265
266 BUG_ON(!nvmeq);
f4800d6d 267 iod->nvmeq = nvmeq;
a4aea562
MB
268 return 0;
269}
270
dca51e78
CH
271static int nvme_pci_map_queues(struct blk_mq_tag_set *set)
272{
273 struct nvme_dev *dev = set->driver_data;
274
275 return blk_mq_pci_map_queues(set, to_pci_dev(dev->dev));
276}
277
b60503ba 278/**
adf68f21 279 * __nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
b60503ba
MW
280 * @nvmeq: The queue to use
281 * @cmd: The command to send
282 *
283 * Safe to use from interrupt context
284 */
e3f879bf
SB
285static void __nvme_submit_cmd(struct nvme_queue *nvmeq,
286 struct nvme_command *cmd)
b60503ba 287{
a4aea562
MB
288 u16 tail = nvmeq->sq_tail;
289
8ffaadf7
JD
290 if (nvmeq->sq_cmds_io)
291 memcpy_toio(&nvmeq->sq_cmds_io[tail], cmd, sizeof(*cmd));
292 else
293 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
294
b60503ba
MW
295 if (++tail == nvmeq->q_depth)
296 tail = 0;
7547881d 297 writel(tail, nvmeq->q_db);
b60503ba 298 nvmeq->sq_tail = tail;
b60503ba
MW
299}
300
f4800d6d 301static __le64 **iod_list(struct request *req)
b60503ba 302{
f4800d6d
CH
303 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
304 return (__le64 **)(iod->sg + req->nr_phys_segments);
b60503ba
MW
305}
306
58b45602
ML
307static int nvme_init_iod(struct request *rq, unsigned size,
308 struct nvme_dev *dev)
ac3dd5bd 309{
f4800d6d
CH
310 struct nvme_iod *iod = blk_mq_rq_to_pdu(rq);
311 int nseg = rq->nr_phys_segments;
ac3dd5bd 312
f4800d6d
CH
313 if (nseg > NVME_INT_PAGES || size > NVME_INT_BYTES(dev)) {
314 iod->sg = kmalloc(nvme_iod_alloc_size(dev, size, nseg), GFP_ATOMIC);
315 if (!iod->sg)
316 return BLK_MQ_RQ_QUEUE_BUSY;
317 } else {
318 iod->sg = iod->inline_sg;
ac3dd5bd
JA
319 }
320
f4800d6d
CH
321 iod->aborted = 0;
322 iod->npages = -1;
323 iod->nents = 0;
324 iod->length = size;
f80ec966 325
e8064021 326 if (!(rq->rq_flags & RQF_DONTPREP)) {
f80ec966 327 rq->retries = 0;
e8064021 328 rq->rq_flags |= RQF_DONTPREP;
f80ec966 329 }
f4800d6d 330 return 0;
ac3dd5bd
JA
331}
332
f4800d6d 333static void nvme_free_iod(struct nvme_dev *dev, struct request *req)
b60503ba 334{
f4800d6d 335 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
5fd4ce1b 336 const int last_prp = dev->ctrl.page_size / 8 - 1;
eca18b23 337 int i;
f4800d6d 338 __le64 **list = iod_list(req);
eca18b23
MW
339 dma_addr_t prp_dma = iod->first_dma;
340
6904242d 341 nvme_cleanup_cmd(req);
03b5929e 342
eca18b23
MW
343 if (iod->npages == 0)
344 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
345 for (i = 0; i < iod->npages; i++) {
346 __le64 *prp_list = list[i];
347 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
348 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
349 prp_dma = next_prp_dma;
350 }
ac3dd5bd 351
f4800d6d
CH
352 if (iod->sg != iod->inline_sg)
353 kfree(iod->sg);
b4ff9c8d
KB
354}
355
52b68d7e 356#ifdef CONFIG_BLK_DEV_INTEGRITY
e1e5e564
KB
357static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
358{
359 if (be32_to_cpu(pi->ref_tag) == v)
360 pi->ref_tag = cpu_to_be32(p);
361}
362
363static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
364{
365 if (be32_to_cpu(pi->ref_tag) == p)
366 pi->ref_tag = cpu_to_be32(v);
367}
368
369/**
370 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
371 *
372 * The virtual start sector is the one that was originally submitted by the
373 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
374 * start sector may be different. Remap protection information to match the
375 * physical LBA on writes, and back to the original seed on reads.
376 *
377 * Type 0 and 3 do not have a ref tag, so no remapping required.
378 */
379static void nvme_dif_remap(struct request *req,
380 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
381{
382 struct nvme_ns *ns = req->rq_disk->private_data;
383 struct bio_integrity_payload *bip;
384 struct t10_pi_tuple *pi;
385 void *p, *pmap;
386 u32 i, nlb, ts, phys, virt;
387
388 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
389 return;
390
391 bip = bio_integrity(req->bio);
392 if (!bip)
393 return;
394
395 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
e1e5e564
KB
396
397 p = pmap;
398 virt = bip_get_seed(bip);
399 phys = nvme_block_nr(ns, blk_rq_pos(req));
400 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
ac6fc48c 401 ts = ns->disk->queue->integrity.tuple_size;
e1e5e564
KB
402
403 for (i = 0; i < nlb; i++, virt++, phys++) {
404 pi = (struct t10_pi_tuple *)p;
405 dif_swap(phys, virt, pi);
406 p += ts;
407 }
408 kunmap_atomic(pmap);
409}
52b68d7e
KB
410#else /* CONFIG_BLK_DEV_INTEGRITY */
411static void nvme_dif_remap(struct request *req,
412 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
413{
414}
415static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
416{
417}
418static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
419{
420}
52b68d7e
KB
421#endif
422
f4800d6d 423static bool nvme_setup_prps(struct nvme_dev *dev, struct request *req,
69d2b571 424 int total_len)
ff22b54f 425{
f4800d6d 426 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
99802a7a 427 struct dma_pool *pool;
eca18b23
MW
428 int length = total_len;
429 struct scatterlist *sg = iod->sg;
ff22b54f
MW
430 int dma_len = sg_dma_len(sg);
431 u64 dma_addr = sg_dma_address(sg);
5fd4ce1b 432 u32 page_size = dev->ctrl.page_size;
f137e0f1 433 int offset = dma_addr & (page_size - 1);
e025344c 434 __le64 *prp_list;
f4800d6d 435 __le64 **list = iod_list(req);
e025344c 436 dma_addr_t prp_dma;
eca18b23 437 int nprps, i;
ff22b54f 438
1d090624 439 length -= (page_size - offset);
ff22b54f 440 if (length <= 0)
69d2b571 441 return true;
ff22b54f 442
1d090624 443 dma_len -= (page_size - offset);
ff22b54f 444 if (dma_len) {
1d090624 445 dma_addr += (page_size - offset);
ff22b54f
MW
446 } else {
447 sg = sg_next(sg);
448 dma_addr = sg_dma_address(sg);
449 dma_len = sg_dma_len(sg);
450 }
451
1d090624 452 if (length <= page_size) {
edd10d33 453 iod->first_dma = dma_addr;
69d2b571 454 return true;
e025344c
SMM
455 }
456
1d090624 457 nprps = DIV_ROUND_UP(length, page_size);
99802a7a
MW
458 if (nprps <= (256 / 8)) {
459 pool = dev->prp_small_pool;
eca18b23 460 iod->npages = 0;
99802a7a
MW
461 } else {
462 pool = dev->prp_page_pool;
eca18b23 463 iod->npages = 1;
99802a7a
MW
464 }
465
69d2b571 466 prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
b77954cb 467 if (!prp_list) {
edd10d33 468 iod->first_dma = dma_addr;
eca18b23 469 iod->npages = -1;
69d2b571 470 return false;
b77954cb 471 }
eca18b23
MW
472 list[0] = prp_list;
473 iod->first_dma = prp_dma;
e025344c
SMM
474 i = 0;
475 for (;;) {
1d090624 476 if (i == page_size >> 3) {
e025344c 477 __le64 *old_prp_list = prp_list;
69d2b571 478 prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
eca18b23 479 if (!prp_list)
69d2b571 480 return false;
eca18b23 481 list[iod->npages++] = prp_list;
7523d834
MW
482 prp_list[0] = old_prp_list[i - 1];
483 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
484 i = 1;
e025344c
SMM
485 }
486 prp_list[i++] = cpu_to_le64(dma_addr);
1d090624
KB
487 dma_len -= page_size;
488 dma_addr += page_size;
489 length -= page_size;
e025344c
SMM
490 if (length <= 0)
491 break;
492 if (dma_len > 0)
493 continue;
494 BUG_ON(dma_len < 0);
495 sg = sg_next(sg);
496 dma_addr = sg_dma_address(sg);
497 dma_len = sg_dma_len(sg);
ff22b54f
MW
498 }
499
69d2b571 500 return true;
ff22b54f
MW
501}
502
f4800d6d 503static int nvme_map_data(struct nvme_dev *dev, struct request *req,
03b5929e 504 unsigned size, struct nvme_command *cmnd)
d29ec824 505{
f4800d6d 506 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
ba1ca37e
CH
507 struct request_queue *q = req->q;
508 enum dma_data_direction dma_dir = rq_data_dir(req) ?
509 DMA_TO_DEVICE : DMA_FROM_DEVICE;
510 int ret = BLK_MQ_RQ_QUEUE_ERROR;
d29ec824 511
ba1ca37e
CH
512 sg_init_table(iod->sg, req->nr_phys_segments);
513 iod->nents = blk_rq_map_sg(q, req, iod->sg);
514 if (!iod->nents)
515 goto out;
d29ec824 516
ba1ca37e 517 ret = BLK_MQ_RQ_QUEUE_BUSY;
2b6b535d
MFO
518 if (!dma_map_sg_attrs(dev->dev, iod->sg, iod->nents, dma_dir,
519 DMA_ATTR_NO_WARN))
ba1ca37e 520 goto out;
d29ec824 521
03b5929e 522 if (!nvme_setup_prps(dev, req, size))
ba1ca37e 523 goto out_unmap;
0e5e4f0e 524
ba1ca37e
CH
525 ret = BLK_MQ_RQ_QUEUE_ERROR;
526 if (blk_integrity_rq(req)) {
527 if (blk_rq_count_integrity_sg(q, req->bio) != 1)
528 goto out_unmap;
0e5e4f0e 529
bf684057
CH
530 sg_init_table(&iod->meta_sg, 1);
531 if (blk_rq_map_integrity_sg(q, req->bio, &iod->meta_sg) != 1)
ba1ca37e 532 goto out_unmap;
0e5e4f0e 533
ba1ca37e
CH
534 if (rq_data_dir(req))
535 nvme_dif_remap(req, nvme_dif_prep);
0e5e4f0e 536
bf684057 537 if (!dma_map_sg(dev->dev, &iod->meta_sg, 1, dma_dir))
ba1ca37e 538 goto out_unmap;
d29ec824 539 }
00df5cb4 540
eb793e2c
CH
541 cmnd->rw.dptr.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
542 cmnd->rw.dptr.prp2 = cpu_to_le64(iod->first_dma);
ba1ca37e 543 if (blk_integrity_rq(req))
bf684057 544 cmnd->rw.metadata = cpu_to_le64(sg_dma_address(&iod->meta_sg));
ba1ca37e 545 return BLK_MQ_RQ_QUEUE_OK;
00df5cb4 546
ba1ca37e
CH
547out_unmap:
548 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
549out:
550 return ret;
00df5cb4
MW
551}
552
f4800d6d 553static void nvme_unmap_data(struct nvme_dev *dev, struct request *req)
b60503ba 554{
f4800d6d 555 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
d4f6c3ab
CH
556 enum dma_data_direction dma_dir = rq_data_dir(req) ?
557 DMA_TO_DEVICE : DMA_FROM_DEVICE;
558
559 if (iod->nents) {
560 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
561 if (blk_integrity_rq(req)) {
562 if (!rq_data_dir(req))
563 nvme_dif_remap(req, nvme_dif_complete);
bf684057 564 dma_unmap_sg(dev->dev, &iod->meta_sg, 1, dma_dir);
e1e5e564 565 }
e19b127f 566 }
e1e5e564 567
f4800d6d 568 nvme_free_iod(dev, req);
d4f6c3ab 569}
b60503ba 570
d29ec824
CH
571/*
572 * NOTE: ns is NULL when called on the admin queue.
573 */
a4aea562
MB
574static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
575 const struct blk_mq_queue_data *bd)
edd10d33 576{
a4aea562
MB
577 struct nvme_ns *ns = hctx->queue->queuedata;
578 struct nvme_queue *nvmeq = hctx->driver_data;
d29ec824 579 struct nvme_dev *dev = nvmeq->dev;
a4aea562 580 struct request *req = bd->rq;
ba1ca37e 581 struct nvme_command cmnd;
58b45602 582 unsigned map_len;
ba1ca37e 583 int ret = BLK_MQ_RQ_QUEUE_OK;
edd10d33 584
e1e5e564
KB
585 /*
586 * If formated with metadata, require the block layer provide a buffer
587 * unless this namespace is formated such that the metadata can be
588 * stripped/generated by the controller with PRACT=1.
589 */
d29ec824 590 if (ns && ns->ms && !blk_integrity_rq(req)) {
71feb364
KB
591 if (!(ns->pi_type && ns->ms == 8) &&
592 req->cmd_type != REQ_TYPE_DRV_PRIV) {
eee417b0 593 blk_mq_end_request(req, -EFAULT);
e1e5e564
KB
594 return BLK_MQ_RQ_QUEUE_OK;
595 }
596 }
597
58b45602
ML
598 map_len = nvme_map_len(req);
599 ret = nvme_init_iod(req, map_len, dev);
f4800d6d
CH
600 if (ret)
601 return ret;
a4aea562 602
8093f7ca 603 ret = nvme_setup_cmd(ns, req, &cmnd);
03b5929e
ML
604 if (ret)
605 goto out;
a4aea562 606
03b5929e
ML
607 if (req->nr_phys_segments)
608 ret = nvme_map_data(dev, req, map_len, &cmnd);
a4aea562 609
ba1ca37e
CH
610 if (ret)
611 goto out;
a4aea562 612
ba1ca37e 613 cmnd.common.command_id = req->tag;
aae239e1 614 blk_mq_start_request(req);
a4aea562 615
ba1ca37e 616 spin_lock_irq(&nvmeq->q_lock);
ae1fba20 617 if (unlikely(nvmeq->cq_vector < 0)) {
69d9a99c
KB
618 if (ns && !test_bit(NVME_NS_DEAD, &ns->flags))
619 ret = BLK_MQ_RQ_QUEUE_BUSY;
620 else
621 ret = BLK_MQ_RQ_QUEUE_ERROR;
ae1fba20
KB
622 spin_unlock_irq(&nvmeq->q_lock);
623 goto out;
624 }
ba1ca37e 625 __nvme_submit_cmd(nvmeq, &cmnd);
a4aea562
MB
626 nvme_process_cq(nvmeq);
627 spin_unlock_irq(&nvmeq->q_lock);
628 return BLK_MQ_RQ_QUEUE_OK;
ba1ca37e 629out:
f4800d6d 630 nvme_free_iod(dev, req);
ba1ca37e 631 return ret;
b60503ba 632}
e1e5e564 633
eee417b0
CH
634static void nvme_complete_rq(struct request *req)
635{
f4800d6d
CH
636 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
637 struct nvme_dev *dev = iod->nvmeq->dev;
eee417b0 638 int error = 0;
e1e5e564 639
f4800d6d 640 nvme_unmap_data(dev, req);
e1e5e564 641
eee417b0
CH
642 if (unlikely(req->errors)) {
643 if (nvme_req_needs_retry(req, req->errors)) {
f80ec966 644 req->retries++;
eee417b0
CH
645 nvme_requeue_req(req);
646 return;
e1e5e564 647 }
1974b1ae 648
eee417b0
CH
649 if (req->cmd_type == REQ_TYPE_DRV_PRIV)
650 error = req->errors;
651 else
652 error = nvme_error_status(req->errors);
653 }
a4aea562 654
f4800d6d 655 if (unlikely(iod->aborted)) {
1b3c47c1 656 dev_warn(dev->ctrl.device,
eee417b0
CH
657 "completing aborted command with status: %04x\n",
658 req->errors);
659 }
a4aea562 660
eee417b0 661 blk_mq_end_request(req, error);
b60503ba
MW
662}
663
d783e0bd
MR
664/* We read the CQE phase first to check if the rest of the entry is valid */
665static inline bool nvme_cqe_valid(struct nvme_queue *nvmeq, u16 head,
666 u16 phase)
667{
668 return (le16_to_cpu(nvmeq->cqes[head].status) & 1) == phase;
669}
670
a0fa9647 671static void __nvme_process_cq(struct nvme_queue *nvmeq, unsigned int *tag)
b60503ba 672{
82123460 673 u16 head, phase;
b60503ba 674
b60503ba 675 head = nvmeq->cq_head;
82123460 676 phase = nvmeq->cq_phase;
b60503ba 677
d783e0bd 678 while (nvme_cqe_valid(nvmeq, head, phase)) {
b60503ba 679 struct nvme_completion cqe = nvmeq->cqes[head];
eee417b0 680 struct request *req;
adf68f21 681
b60503ba
MW
682 if (++head == nvmeq->q_depth) {
683 head = 0;
82123460 684 phase = !phase;
b60503ba 685 }
adf68f21 686
a0fa9647
JA
687 if (tag && *tag == cqe.command_id)
688 *tag = -1;
adf68f21 689
aae239e1 690 if (unlikely(cqe.command_id >= nvmeq->q_depth)) {
1b3c47c1 691 dev_warn(nvmeq->dev->ctrl.device,
aae239e1
CH
692 "invalid id %d completed on queue %d\n",
693 cqe.command_id, le16_to_cpu(cqe.sq_id));
694 continue;
695 }
696
adf68f21
CH
697 /*
698 * AEN requests are special as they don't time out and can
699 * survive any kind of queue freeze and often don't respond to
700 * aborts. We don't even bother to allocate a struct request
701 * for them but rather special case them here.
702 */
703 if (unlikely(nvmeq->qid == 0 &&
704 cqe.command_id >= NVME_AQ_BLKMQ_DEPTH)) {
f866fc42 705 nvme_complete_async_event(&nvmeq->dev->ctrl, &cqe);
adf68f21
CH
706 continue;
707 }
708
eee417b0 709 req = blk_mq_tag_to_rq(*nvmeq->tags, cqe.command_id);
1cb3cce5
CH
710 if (req->cmd_type == REQ_TYPE_DRV_PRIV && req->special)
711 memcpy(req->special, &cqe, sizeof(cqe));
d783e0bd 712 blk_mq_complete_request(req, le16_to_cpu(cqe.status) >> 1);
eee417b0 713
b60503ba
MW
714 }
715
716 /* If the controller ignores the cq head doorbell and continuously
717 * writes to the queue, it is theoretically possible to wrap around
718 * the queue twice and mistakenly return IRQ_NONE. Linux only
719 * requires that 0.1% of your interrupts are handled, so this isn't
720 * a big problem.
721 */
82123460 722 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
a0fa9647 723 return;
b60503ba 724
604e8c8d
KB
725 if (likely(nvmeq->cq_vector >= 0))
726 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
b60503ba 727 nvmeq->cq_head = head;
82123460 728 nvmeq->cq_phase = phase;
b60503ba 729
e9539f47 730 nvmeq->cqe_seen = 1;
a0fa9647
JA
731}
732
733static void nvme_process_cq(struct nvme_queue *nvmeq)
734{
735 __nvme_process_cq(nvmeq, NULL);
b60503ba
MW
736}
737
738static irqreturn_t nvme_irq(int irq, void *data)
58ffacb5
MW
739{
740 irqreturn_t result;
741 struct nvme_queue *nvmeq = data;
742 spin_lock(&nvmeq->q_lock);
e9539f47
MW
743 nvme_process_cq(nvmeq);
744 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
745 nvmeq->cqe_seen = 0;
58ffacb5
MW
746 spin_unlock(&nvmeq->q_lock);
747 return result;
748}
749
750static irqreturn_t nvme_irq_check(int irq, void *data)
751{
752 struct nvme_queue *nvmeq = data;
d783e0bd
MR
753 if (nvme_cqe_valid(nvmeq, nvmeq->cq_head, nvmeq->cq_phase))
754 return IRQ_WAKE_THREAD;
755 return IRQ_NONE;
58ffacb5
MW
756}
757
a0fa9647
JA
758static int nvme_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag)
759{
760 struct nvme_queue *nvmeq = hctx->driver_data;
761
d783e0bd 762 if (nvme_cqe_valid(nvmeq, nvmeq->cq_head, nvmeq->cq_phase)) {
a0fa9647
JA
763 spin_lock_irq(&nvmeq->q_lock);
764 __nvme_process_cq(nvmeq, &tag);
765 spin_unlock_irq(&nvmeq->q_lock);
766
767 if (tag == -1)
768 return 1;
769 }
770
771 return 0;
772}
773
f866fc42 774static void nvme_pci_submit_async_event(struct nvme_ctrl *ctrl, int aer_idx)
b60503ba 775{
f866fc42 776 struct nvme_dev *dev = to_nvme_dev(ctrl);
9396dec9 777 struct nvme_queue *nvmeq = dev->queues[0];
a4aea562 778 struct nvme_command c;
b60503ba 779
a4aea562
MB
780 memset(&c, 0, sizeof(c));
781 c.common.opcode = nvme_admin_async_event;
f866fc42 782 c.common.command_id = NVME_AQ_BLKMQ_DEPTH + aer_idx;
3c0cf138 783
9396dec9 784 spin_lock_irq(&nvmeq->q_lock);
f866fc42 785 __nvme_submit_cmd(nvmeq, &c);
9396dec9 786 spin_unlock_irq(&nvmeq->q_lock);
f705f837
CH
787}
788
b60503ba 789static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
f705f837 790{
b60503ba
MW
791 struct nvme_command c;
792
793 memset(&c, 0, sizeof(c));
794 c.delete_queue.opcode = opcode;
795 c.delete_queue.qid = cpu_to_le16(id);
796
1c63dc66 797 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
b60503ba
MW
798}
799
b60503ba
MW
800static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
801 struct nvme_queue *nvmeq)
802{
b60503ba
MW
803 struct nvme_command c;
804 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
805
d29ec824
CH
806 /*
807 * Note: we (ab)use the fact the the prp fields survive if no data
808 * is attached to the request.
809 */
b60503ba
MW
810 memset(&c, 0, sizeof(c));
811 c.create_cq.opcode = nvme_admin_create_cq;
812 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
813 c.create_cq.cqid = cpu_to_le16(qid);
814 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
815 c.create_cq.cq_flags = cpu_to_le16(flags);
816 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
817
1c63dc66 818 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
b60503ba
MW
819}
820
821static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
822 struct nvme_queue *nvmeq)
823{
b60503ba
MW
824 struct nvme_command c;
825 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
826
d29ec824
CH
827 /*
828 * Note: we (ab)use the fact the the prp fields survive if no data
829 * is attached to the request.
830 */
b60503ba
MW
831 memset(&c, 0, sizeof(c));
832 c.create_sq.opcode = nvme_admin_create_sq;
833 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
834 c.create_sq.sqid = cpu_to_le16(qid);
835 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
836 c.create_sq.sq_flags = cpu_to_le16(flags);
837 c.create_sq.cqid = cpu_to_le16(qid);
838
1c63dc66 839 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
b60503ba
MW
840}
841
842static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
843{
844 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
845}
846
847static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
848{
849 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
850}
851
e7a2a87d 852static void abort_endio(struct request *req, int error)
bc5fc7e4 853{
f4800d6d
CH
854 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
855 struct nvme_queue *nvmeq = iod->nvmeq;
e7a2a87d 856 u16 status = req->errors;
e44ac588 857
1cb3cce5 858 dev_warn(nvmeq->dev->ctrl.device, "Abort status: 0x%x", status);
e7a2a87d 859 atomic_inc(&nvmeq->dev->ctrl.abort_limit);
e7a2a87d 860 blk_mq_free_request(req);
bc5fc7e4
MW
861}
862
31c7c7d2 863static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
c30341dc 864{
f4800d6d
CH
865 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
866 struct nvme_queue *nvmeq = iod->nvmeq;
c30341dc 867 struct nvme_dev *dev = nvmeq->dev;
a4aea562 868 struct request *abort_req;
a4aea562 869 struct nvme_command cmd;
c30341dc 870
31c7c7d2 871 /*
fd634f41
CH
872 * Shutdown immediately if controller times out while starting. The
873 * reset work will see the pci device disabled when it gets the forced
874 * cancellation error. All outstanding requests are completed on
875 * shutdown, so we return BLK_EH_HANDLED.
876 */
bb8d261e 877 if (dev->ctrl.state == NVME_CTRL_RESETTING) {
1b3c47c1 878 dev_warn(dev->ctrl.device,
fd634f41
CH
879 "I/O %d QID %d timeout, disable controller\n",
880 req->tag, nvmeq->qid);
a5cdb68c 881 nvme_dev_disable(dev, false);
fd634f41
CH
882 req->errors = NVME_SC_CANCELLED;
883 return BLK_EH_HANDLED;
c30341dc
KB
884 }
885
fd634f41
CH
886 /*
887 * Shutdown the controller immediately and schedule a reset if the
888 * command was already aborted once before and still hasn't been
889 * returned to the driver, or if this is the admin queue.
31c7c7d2 890 */
f4800d6d 891 if (!nvmeq->qid || iod->aborted) {
1b3c47c1 892 dev_warn(dev->ctrl.device,
e1569a16
KB
893 "I/O %d QID %d timeout, reset controller\n",
894 req->tag, nvmeq->qid);
a5cdb68c 895 nvme_dev_disable(dev, false);
e1569a16 896 queue_work(nvme_workq, &dev->reset_work);
c30341dc 897
e1569a16
KB
898 /*
899 * Mark the request as handled, since the inline shutdown
900 * forces all outstanding requests to complete.
901 */
902 req->errors = NVME_SC_CANCELLED;
903 return BLK_EH_HANDLED;
c30341dc 904 }
c30341dc 905
f4800d6d 906 iod->aborted = 1;
c30341dc 907
e7a2a87d 908 if (atomic_dec_return(&dev->ctrl.abort_limit) < 0) {
6bf25d16 909 atomic_inc(&dev->ctrl.abort_limit);
31c7c7d2 910 return BLK_EH_RESET_TIMER;
6bf25d16 911 }
a4aea562 912
c30341dc
KB
913 memset(&cmd, 0, sizeof(cmd));
914 cmd.abort.opcode = nvme_admin_abort_cmd;
a4aea562 915 cmd.abort.cid = req->tag;
c30341dc 916 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
c30341dc 917
1b3c47c1
SG
918 dev_warn(nvmeq->dev->ctrl.device,
919 "I/O %d QID %d timeout, aborting\n",
920 req->tag, nvmeq->qid);
e7a2a87d
CH
921
922 abort_req = nvme_alloc_request(dev->ctrl.admin_q, &cmd,
eb71f435 923 BLK_MQ_REQ_NOWAIT, NVME_QID_ANY);
e7a2a87d
CH
924 if (IS_ERR(abort_req)) {
925 atomic_inc(&dev->ctrl.abort_limit);
926 return BLK_EH_RESET_TIMER;
927 }
928
929 abort_req->timeout = ADMIN_TIMEOUT;
930 abort_req->end_io_data = NULL;
931 blk_execute_rq_nowait(abort_req->q, NULL, abort_req, 0, abort_endio);
c30341dc 932
31c7c7d2
CH
933 /*
934 * The aborted req will be completed on receiving the abort req.
935 * We enable the timer again. If hit twice, it'll cause a device reset,
936 * as the device then is in a faulty state.
937 */
938 return BLK_EH_RESET_TIMER;
c30341dc
KB
939}
940
a4aea562
MB
941static void nvme_free_queue(struct nvme_queue *nvmeq)
942{
9e866774
MW
943 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
944 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
8ffaadf7
JD
945 if (nvmeq->sq_cmds)
946 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
9e866774
MW
947 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
948 kfree(nvmeq);
949}
950
a1a5ef99 951static void nvme_free_queues(struct nvme_dev *dev, int lowest)
22404274
KB
952{
953 int i;
954
a1a5ef99 955 for (i = dev->queue_count - 1; i >= lowest; i--) {
a4aea562 956 struct nvme_queue *nvmeq = dev->queues[i];
22404274 957 dev->queue_count--;
a4aea562 958 dev->queues[i] = NULL;
f435c282 959 nvme_free_queue(nvmeq);
121c7ad4 960 }
22404274
KB
961}
962
4d115420
KB
963/**
964 * nvme_suspend_queue - put queue into suspended state
965 * @nvmeq - queue to suspend
4d115420
KB
966 */
967static int nvme_suspend_queue(struct nvme_queue *nvmeq)
b60503ba 968{
2b25d981 969 int vector;
b60503ba 970
a09115b2 971 spin_lock_irq(&nvmeq->q_lock);
2b25d981
KB
972 if (nvmeq->cq_vector == -1) {
973 spin_unlock_irq(&nvmeq->q_lock);
974 return 1;
975 }
dca51e78 976 vector = nvmeq_irq(nvmeq);
42f61420 977 nvmeq->dev->online_queues--;
2b25d981 978 nvmeq->cq_vector = -1;
a09115b2
MW
979 spin_unlock_irq(&nvmeq->q_lock);
980
1c63dc66 981 if (!nvmeq->qid && nvmeq->dev->ctrl.admin_q)
25646264 982 blk_mq_stop_hw_queues(nvmeq->dev->ctrl.admin_q);
6df3dbc8 983
aba2080f 984 free_irq(vector, nvmeq);
b60503ba 985
4d115420
KB
986 return 0;
987}
b60503ba 988
a5cdb68c 989static void nvme_disable_admin_queue(struct nvme_dev *dev, bool shutdown)
4d115420 990{
a5cdb68c 991 struct nvme_queue *nvmeq = dev->queues[0];
4d115420
KB
992
993 if (!nvmeq)
994 return;
995 if (nvme_suspend_queue(nvmeq))
996 return;
997
a5cdb68c
KB
998 if (shutdown)
999 nvme_shutdown_ctrl(&dev->ctrl);
1000 else
1001 nvme_disable_ctrl(&dev->ctrl, lo_hi_readq(
1002 dev->bar + NVME_REG_CAP));
07836e65
KB
1003
1004 spin_lock_irq(&nvmeq->q_lock);
1005 nvme_process_cq(nvmeq);
1006 spin_unlock_irq(&nvmeq->q_lock);
b60503ba
MW
1007}
1008
8ffaadf7
JD
1009static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1010 int entry_size)
1011{
1012 int q_depth = dev->q_depth;
5fd4ce1b
CH
1013 unsigned q_size_aligned = roundup(q_depth * entry_size,
1014 dev->ctrl.page_size);
8ffaadf7
JD
1015
1016 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
c45f5c99 1017 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
5fd4ce1b 1018 mem_per_q = round_down(mem_per_q, dev->ctrl.page_size);
c45f5c99 1019 q_depth = div_u64(mem_per_q, entry_size);
8ffaadf7
JD
1020
1021 /*
1022 * Ensure the reduced q_depth is above some threshold where it
1023 * would be better to map queues in system memory with the
1024 * original depth
1025 */
1026 if (q_depth < 64)
1027 return -ENOMEM;
1028 }
1029
1030 return q_depth;
1031}
1032
1033static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1034 int qid, int depth)
1035{
1036 if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) {
5fd4ce1b
CH
1037 unsigned offset = (qid - 1) * roundup(SQ_SIZE(depth),
1038 dev->ctrl.page_size);
8ffaadf7
JD
1039 nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset;
1040 nvmeq->sq_cmds_io = dev->cmb + offset;
1041 } else {
1042 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1043 &nvmeq->sq_dma_addr, GFP_KERNEL);
1044 if (!nvmeq->sq_cmds)
1045 return -ENOMEM;
1046 }
1047
1048 return 0;
1049}
1050
b60503ba 1051static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
2b25d981 1052 int depth)
b60503ba 1053{
a4aea562 1054 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
b60503ba
MW
1055 if (!nvmeq)
1056 return NULL;
1057
e75ec752 1058 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
4d51abf9 1059 &nvmeq->cq_dma_addr, GFP_KERNEL);
b60503ba
MW
1060 if (!nvmeq->cqes)
1061 goto free_nvmeq;
b60503ba 1062
8ffaadf7 1063 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
b60503ba
MW
1064 goto free_cqdma;
1065
e75ec752 1066 nvmeq->q_dmadev = dev->dev;
091b6092 1067 nvmeq->dev = dev;
3193f07b 1068 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
1c63dc66 1069 dev->ctrl.instance, qid);
b60503ba
MW
1070 spin_lock_init(&nvmeq->q_lock);
1071 nvmeq->cq_head = 0;
82123460 1072 nvmeq->cq_phase = 1;
b80d5ccc 1073 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
b60503ba 1074 nvmeq->q_depth = depth;
c30341dc 1075 nvmeq->qid = qid;
758dd7fd 1076 nvmeq->cq_vector = -1;
a4aea562 1077 dev->queues[qid] = nvmeq;
36a7e993
JD
1078 dev->queue_count++;
1079
b60503ba
MW
1080 return nvmeq;
1081
1082 free_cqdma:
e75ec752 1083 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
b60503ba
MW
1084 nvmeq->cq_dma_addr);
1085 free_nvmeq:
1086 kfree(nvmeq);
1087 return NULL;
1088}
1089
dca51e78 1090static int queue_request_irq(struct nvme_queue *nvmeq)
3001082c 1091{
58ffacb5 1092 if (use_threaded_interrupts)
dca51e78
CH
1093 return request_threaded_irq(nvmeq_irq(nvmeq), nvme_irq_check,
1094 nvme_irq, IRQF_SHARED, nvmeq->irqname, nvmeq);
1095 else
1096 return request_irq(nvmeq_irq(nvmeq), nvme_irq, IRQF_SHARED,
1097 nvmeq->irqname, nvmeq);
3001082c
MW
1098}
1099
22404274 1100static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
b60503ba 1101{
22404274 1102 struct nvme_dev *dev = nvmeq->dev;
b60503ba 1103
7be50e93 1104 spin_lock_irq(&nvmeq->q_lock);
22404274
KB
1105 nvmeq->sq_tail = 0;
1106 nvmeq->cq_head = 0;
1107 nvmeq->cq_phase = 1;
b80d5ccc 1108 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
22404274 1109 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
42f61420 1110 dev->online_queues++;
7be50e93 1111 spin_unlock_irq(&nvmeq->q_lock);
22404274
KB
1112}
1113
1114static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1115{
1116 struct nvme_dev *dev = nvmeq->dev;
1117 int result;
3f85d50b 1118
2b25d981 1119 nvmeq->cq_vector = qid - 1;
b60503ba
MW
1120 result = adapter_alloc_cq(dev, qid, nvmeq);
1121 if (result < 0)
22404274 1122 return result;
b60503ba
MW
1123
1124 result = adapter_alloc_sq(dev, qid, nvmeq);
1125 if (result < 0)
1126 goto release_cq;
1127
dca51e78 1128 result = queue_request_irq(nvmeq);
b60503ba
MW
1129 if (result < 0)
1130 goto release_sq;
1131
22404274 1132 nvme_init_queue(nvmeq, qid);
22404274 1133 return result;
b60503ba
MW
1134
1135 release_sq:
1136 adapter_delete_sq(dev, qid);
1137 release_cq:
1138 adapter_delete_cq(dev, qid);
22404274 1139 return result;
b60503ba
MW
1140}
1141
a4aea562 1142static struct blk_mq_ops nvme_mq_admin_ops = {
d29ec824 1143 .queue_rq = nvme_queue_rq,
eee417b0 1144 .complete = nvme_complete_rq,
a4aea562 1145 .init_hctx = nvme_admin_init_hctx,
4af0e21c 1146 .exit_hctx = nvme_admin_exit_hctx,
a4aea562
MB
1147 .init_request = nvme_admin_init_request,
1148 .timeout = nvme_timeout,
1149};
1150
1151static struct blk_mq_ops nvme_mq_ops = {
1152 .queue_rq = nvme_queue_rq,
eee417b0 1153 .complete = nvme_complete_rq,
a4aea562
MB
1154 .init_hctx = nvme_init_hctx,
1155 .init_request = nvme_init_request,
dca51e78 1156 .map_queues = nvme_pci_map_queues,
a4aea562 1157 .timeout = nvme_timeout,
a0fa9647 1158 .poll = nvme_poll,
a4aea562
MB
1159};
1160
ea191d2f
KB
1161static void nvme_dev_remove_admin(struct nvme_dev *dev)
1162{
1c63dc66 1163 if (dev->ctrl.admin_q && !blk_queue_dying(dev->ctrl.admin_q)) {
69d9a99c
KB
1164 /*
1165 * If the controller was reset during removal, it's possible
1166 * user requests may be waiting on a stopped queue. Start the
1167 * queue to flush these to completion.
1168 */
1169 blk_mq_start_stopped_hw_queues(dev->ctrl.admin_q, true);
1c63dc66 1170 blk_cleanup_queue(dev->ctrl.admin_q);
ea191d2f
KB
1171 blk_mq_free_tag_set(&dev->admin_tagset);
1172 }
1173}
1174
a4aea562
MB
1175static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1176{
1c63dc66 1177 if (!dev->ctrl.admin_q) {
a4aea562
MB
1178 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1179 dev->admin_tagset.nr_hw_queues = 1;
e3e9d50c
KB
1180
1181 /*
1182 * Subtract one to leave an empty queue entry for 'Full Queue'
1183 * condition. See NVM-Express 1.2 specification, section 4.1.2.
1184 */
1185 dev->admin_tagset.queue_depth = NVME_AQ_BLKMQ_DEPTH - 1;
a4aea562 1186 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
e75ec752 1187 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
ac3dd5bd 1188 dev->admin_tagset.cmd_size = nvme_cmd_size(dev);
a4aea562
MB
1189 dev->admin_tagset.driver_data = dev;
1190
1191 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1192 return -ENOMEM;
1193
1c63dc66
CH
1194 dev->ctrl.admin_q = blk_mq_init_queue(&dev->admin_tagset);
1195 if (IS_ERR(dev->ctrl.admin_q)) {
a4aea562
MB
1196 blk_mq_free_tag_set(&dev->admin_tagset);
1197 return -ENOMEM;
1198 }
1c63dc66 1199 if (!blk_get_queue(dev->ctrl.admin_q)) {
ea191d2f 1200 nvme_dev_remove_admin(dev);
1c63dc66 1201 dev->ctrl.admin_q = NULL;
ea191d2f
KB
1202 return -ENODEV;
1203 }
0fb59cbc 1204 } else
25646264 1205 blk_mq_start_stopped_hw_queues(dev->ctrl.admin_q, true);
a4aea562
MB
1206
1207 return 0;
1208}
1209
8d85fce7 1210static int nvme_configure_admin_queue(struct nvme_dev *dev)
b60503ba 1211{
ba47e386 1212 int result;
b60503ba 1213 u32 aqa;
7a67cbea 1214 u64 cap = lo_hi_readq(dev->bar + NVME_REG_CAP);
b60503ba
MW
1215 struct nvme_queue *nvmeq;
1216
7a67cbea 1217 dev->subsystem = readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 1) ?
dfbac8c7
KB
1218 NVME_CAP_NSSRC(cap) : 0;
1219
7a67cbea
CH
1220 if (dev->subsystem &&
1221 (readl(dev->bar + NVME_REG_CSTS) & NVME_CSTS_NSSRO))
1222 writel(NVME_CSTS_NSSRO, dev->bar + NVME_REG_CSTS);
dfbac8c7 1223
5fd4ce1b 1224 result = nvme_disable_ctrl(&dev->ctrl, cap);
ba47e386
MW
1225 if (result < 0)
1226 return result;
b60503ba 1227
a4aea562 1228 nvmeq = dev->queues[0];
cd638946 1229 if (!nvmeq) {
2b25d981 1230 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
cd638946
KB
1231 if (!nvmeq)
1232 return -ENOMEM;
cd638946 1233 }
b60503ba
MW
1234
1235 aqa = nvmeq->q_depth - 1;
1236 aqa |= aqa << 16;
1237
7a67cbea
CH
1238 writel(aqa, dev->bar + NVME_REG_AQA);
1239 lo_hi_writeq(nvmeq->sq_dma_addr, dev->bar + NVME_REG_ASQ);
1240 lo_hi_writeq(nvmeq->cq_dma_addr, dev->bar + NVME_REG_ACQ);
b60503ba 1241
5fd4ce1b 1242 result = nvme_enable_ctrl(&dev->ctrl, cap);
025c557a 1243 if (result)
a4aea562
MB
1244 goto free_nvmeq;
1245
2b25d981 1246 nvmeq->cq_vector = 0;
dca51e78 1247 result = queue_request_irq(nvmeq);
758dd7fd
JD
1248 if (result) {
1249 nvmeq->cq_vector = -1;
0fb59cbc 1250 goto free_nvmeq;
758dd7fd 1251 }
025c557a 1252
b60503ba 1253 return result;
a4aea562 1254
a4aea562
MB
1255 free_nvmeq:
1256 nvme_free_queues(dev, 0);
1257 return result;
b60503ba
MW
1258}
1259
c875a709
GP
1260static bool nvme_should_reset(struct nvme_dev *dev, u32 csts)
1261{
1262
1263 /* If true, indicates loss of adapter communication, possibly by a
1264 * NVMe Subsystem reset.
1265 */
1266 bool nssro = dev->subsystem && (csts & NVME_CSTS_NSSRO);
1267
1268 /* If there is a reset ongoing, we shouldn't reset again. */
1269 if (work_busy(&dev->reset_work))
1270 return false;
1271
1272 /* We shouldn't reset unless the controller is on fatal error state
1273 * _or_ if we lost the communication with it.
1274 */
1275 if (!(csts & NVME_CSTS_CFS) && !nssro)
1276 return false;
1277
1278 /* If PCI error recovery process is happening, we cannot reset or
1279 * the recovery mechanism will surely fail.
1280 */
1281 if (pci_channel_offline(to_pci_dev(dev->dev)))
1282 return false;
1283
1284 return true;
1285}
1286
2d55cd5f 1287static void nvme_watchdog_timer(unsigned long data)
1fa6aead 1288{
2d55cd5f
CH
1289 struct nvme_dev *dev = (struct nvme_dev *)data;
1290 u32 csts = readl(dev->bar + NVME_REG_CSTS);
1fa6aead 1291
c875a709
GP
1292 /* Skip controllers under certain specific conditions. */
1293 if (nvme_should_reset(dev, csts)) {
1294 if (queue_work(nvme_workq, &dev->reset_work))
2d55cd5f
CH
1295 dev_warn(dev->dev,
1296 "Failed status: 0x%x, reset controller.\n",
1297 csts);
2d55cd5f 1298 return;
1fa6aead 1299 }
2d55cd5f
CH
1300
1301 mod_timer(&dev->watchdog_timer, round_jiffies(jiffies + HZ));
1fa6aead
MW
1302}
1303
749941f2 1304static int nvme_create_io_queues(struct nvme_dev *dev)
42f61420 1305{
949928c1 1306 unsigned i, max;
749941f2 1307 int ret = 0;
42f61420 1308
749941f2
CH
1309 for (i = dev->queue_count; i <= dev->max_qid; i++) {
1310 if (!nvme_alloc_queue(dev, i, dev->q_depth)) {
1311 ret = -ENOMEM;
42f61420 1312 break;
749941f2
CH
1313 }
1314 }
42f61420 1315
949928c1
KB
1316 max = min(dev->max_qid, dev->queue_count - 1);
1317 for (i = dev->online_queues; i <= max; i++) {
749941f2
CH
1318 ret = nvme_create_queue(dev->queues[i], i);
1319 if (ret) {
2659e57b 1320 nvme_free_queues(dev, i);
42f61420 1321 break;
2659e57b 1322 }
27e8166c 1323 }
749941f2
CH
1324
1325 /*
1326 * Ignore failing Create SQ/CQ commands, we can continue with less
1327 * than the desired aount of queues, and even a controller without
1328 * I/O queues an still be used to issue admin commands. This might
1329 * be useful to upgrade a buggy firmware for example.
1330 */
1331 return ret >= 0 ? 0 : ret;
b60503ba
MW
1332}
1333
8ffaadf7
JD
1334static void __iomem *nvme_map_cmb(struct nvme_dev *dev)
1335{
1336 u64 szu, size, offset;
1337 u32 cmbloc;
1338 resource_size_t bar_size;
1339 struct pci_dev *pdev = to_pci_dev(dev->dev);
1340 void __iomem *cmb;
1341 dma_addr_t dma_addr;
1342
1343 if (!use_cmb_sqes)
1344 return NULL;
1345
7a67cbea 1346 dev->cmbsz = readl(dev->bar + NVME_REG_CMBSZ);
8ffaadf7
JD
1347 if (!(NVME_CMB_SZ(dev->cmbsz)))
1348 return NULL;
1349
7a67cbea 1350 cmbloc = readl(dev->bar + NVME_REG_CMBLOC);
8ffaadf7
JD
1351
1352 szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz));
1353 size = szu * NVME_CMB_SZ(dev->cmbsz);
1354 offset = szu * NVME_CMB_OFST(cmbloc);
1355 bar_size = pci_resource_len(pdev, NVME_CMB_BIR(cmbloc));
1356
1357 if (offset > bar_size)
1358 return NULL;
1359
1360 /*
1361 * Controllers may support a CMB size larger than their BAR,
1362 * for example, due to being behind a bridge. Reduce the CMB to
1363 * the reported size of the BAR
1364 */
1365 if (size > bar_size - offset)
1366 size = bar_size - offset;
1367
1368 dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(cmbloc)) + offset;
1369 cmb = ioremap_wc(dma_addr, size);
1370 if (!cmb)
1371 return NULL;
1372
1373 dev->cmb_dma_addr = dma_addr;
1374 dev->cmb_size = size;
1375 return cmb;
1376}
1377
1378static inline void nvme_release_cmb(struct nvme_dev *dev)
1379{
1380 if (dev->cmb) {
1381 iounmap(dev->cmb);
1382 dev->cmb = NULL;
1383 }
1384}
1385
9d713c2b
KB
1386static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
1387{
b80d5ccc 1388 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
9d713c2b
KB
1389}
1390
8d85fce7 1391static int nvme_setup_io_queues(struct nvme_dev *dev)
b60503ba 1392{
a4aea562 1393 struct nvme_queue *adminq = dev->queues[0];
e75ec752 1394 struct pci_dev *pdev = to_pci_dev(dev->dev);
dca51e78 1395 int result, nr_io_queues, size;
b60503ba 1396
2800b8e7 1397 nr_io_queues = num_online_cpus();
9a0be7ab
CH
1398 result = nvme_set_queue_count(&dev->ctrl, &nr_io_queues);
1399 if (result < 0)
1b23484b 1400 return result;
9a0be7ab 1401
f5fa90dc 1402 if (nr_io_queues == 0)
a5229050 1403 return 0;
b60503ba 1404
8ffaadf7
JD
1405 if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) {
1406 result = nvme_cmb_qdepth(dev, nr_io_queues,
1407 sizeof(struct nvme_command));
1408 if (result > 0)
1409 dev->q_depth = result;
1410 else
1411 nvme_release_cmb(dev);
1412 }
1413
9d713c2b
KB
1414 size = db_bar_size(dev, nr_io_queues);
1415 if (size > 8192) {
f1938f6e 1416 iounmap(dev->bar);
9d713c2b
KB
1417 do {
1418 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
1419 if (dev->bar)
1420 break;
1421 if (!--nr_io_queues)
1422 return -ENOMEM;
1423 size = db_bar_size(dev, nr_io_queues);
1424 } while (1);
7a67cbea 1425 dev->dbs = dev->bar + 4096;
5a92e700 1426 adminq->q_db = dev->dbs;
f1938f6e
MW
1427 }
1428
9d713c2b 1429 /* Deregister the admin queue's interrupt */
dca51e78 1430 free_irq(pci_irq_vector(pdev, 0), adminq);
9d713c2b 1431
e32efbfc
JA
1432 /*
1433 * If we enable msix early due to not intx, disable it again before
1434 * setting up the full range we need.
1435 */
dca51e78
CH
1436 pci_free_irq_vectors(pdev);
1437 nr_io_queues = pci_alloc_irq_vectors(pdev, 1, nr_io_queues,
1438 PCI_IRQ_ALL_TYPES | PCI_IRQ_AFFINITY);
1439 if (nr_io_queues <= 0)
1440 return -EIO;
1441 dev->max_qid = nr_io_queues;
fa08a396 1442
063a8096
MW
1443 /*
1444 * Should investigate if there's a performance win from allocating
1445 * more queues than interrupt vectors; it might allow the submission
1446 * path to scale better, even if the receive path is limited by the
1447 * number of interrupts.
1448 */
063a8096 1449
dca51e78 1450 result = queue_request_irq(adminq);
758dd7fd
JD
1451 if (result) {
1452 adminq->cq_vector = -1;
22404274 1453 goto free_queues;
758dd7fd 1454 }
749941f2 1455 return nvme_create_io_queues(dev);
b60503ba 1456
22404274 1457 free_queues:
a1a5ef99 1458 nvme_free_queues(dev, 1);
22404274 1459 return result;
b60503ba
MW
1460}
1461
db3cbfff 1462static void nvme_del_queue_end(struct request *req, int error)
a5768aa8 1463{
db3cbfff 1464 struct nvme_queue *nvmeq = req->end_io_data;
b5875222 1465
db3cbfff
KB
1466 blk_mq_free_request(req);
1467 complete(&nvmeq->dev->ioq_wait);
a5768aa8
KB
1468}
1469
db3cbfff 1470static void nvme_del_cq_end(struct request *req, int error)
a5768aa8 1471{
db3cbfff 1472 struct nvme_queue *nvmeq = req->end_io_data;
a5768aa8 1473
db3cbfff
KB
1474 if (!error) {
1475 unsigned long flags;
1476
2e39e0f6
ML
1477 /*
1478 * We might be called with the AQ q_lock held
1479 * and the I/O queue q_lock should always
1480 * nest inside the AQ one.
1481 */
1482 spin_lock_irqsave_nested(&nvmeq->q_lock, flags,
1483 SINGLE_DEPTH_NESTING);
db3cbfff
KB
1484 nvme_process_cq(nvmeq);
1485 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
a5768aa8 1486 }
db3cbfff
KB
1487
1488 nvme_del_queue_end(req, error);
a5768aa8
KB
1489}
1490
db3cbfff 1491static int nvme_delete_queue(struct nvme_queue *nvmeq, u8 opcode)
bda4e0fb 1492{
db3cbfff
KB
1493 struct request_queue *q = nvmeq->dev->ctrl.admin_q;
1494 struct request *req;
1495 struct nvme_command cmd;
bda4e0fb 1496
db3cbfff
KB
1497 memset(&cmd, 0, sizeof(cmd));
1498 cmd.delete_queue.opcode = opcode;
1499 cmd.delete_queue.qid = cpu_to_le16(nvmeq->qid);
bda4e0fb 1500
eb71f435 1501 req = nvme_alloc_request(q, &cmd, BLK_MQ_REQ_NOWAIT, NVME_QID_ANY);
db3cbfff
KB
1502 if (IS_ERR(req))
1503 return PTR_ERR(req);
bda4e0fb 1504
db3cbfff
KB
1505 req->timeout = ADMIN_TIMEOUT;
1506 req->end_io_data = nvmeq;
1507
1508 blk_execute_rq_nowait(q, NULL, req, false,
1509 opcode == nvme_admin_delete_cq ?
1510 nvme_del_cq_end : nvme_del_queue_end);
1511 return 0;
bda4e0fb
KB
1512}
1513
db3cbfff 1514static void nvme_disable_io_queues(struct nvme_dev *dev)
a5768aa8 1515{
014a0d60 1516 int pass, queues = dev->online_queues - 1;
db3cbfff
KB
1517 unsigned long timeout;
1518 u8 opcode = nvme_admin_delete_sq;
a5768aa8 1519
db3cbfff 1520 for (pass = 0; pass < 2; pass++) {
014a0d60 1521 int sent = 0, i = queues;
db3cbfff
KB
1522
1523 reinit_completion(&dev->ioq_wait);
1524 retry:
1525 timeout = ADMIN_TIMEOUT;
c21377f8
GKB
1526 for (; i > 0; i--, sent++)
1527 if (nvme_delete_queue(dev->queues[i], opcode))
db3cbfff 1528 break;
c21377f8 1529
db3cbfff
KB
1530 while (sent--) {
1531 timeout = wait_for_completion_io_timeout(&dev->ioq_wait, timeout);
1532 if (timeout == 0)
1533 return;
1534 if (i)
1535 goto retry;
1536 }
1537 opcode = nvme_admin_delete_cq;
1538 }
a5768aa8
KB
1539}
1540
422ef0c7
MW
1541/*
1542 * Return: error value if an error occurred setting up the queues or calling
1543 * Identify Device. 0 if these succeeded, even if adding some of the
1544 * namespaces failed. At the moment, these failures are silent. TBD which
1545 * failures should be reported.
1546 */
8d85fce7 1547static int nvme_dev_add(struct nvme_dev *dev)
b60503ba 1548{
5bae7f73 1549 if (!dev->ctrl.tagset) {
ffe7704d
KB
1550 dev->tagset.ops = &nvme_mq_ops;
1551 dev->tagset.nr_hw_queues = dev->online_queues - 1;
1552 dev->tagset.timeout = NVME_IO_TIMEOUT;
1553 dev->tagset.numa_node = dev_to_node(dev->dev);
1554 dev->tagset.queue_depth =
a4aea562 1555 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
ffe7704d
KB
1556 dev->tagset.cmd_size = nvme_cmd_size(dev);
1557 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
1558 dev->tagset.driver_data = dev;
b60503ba 1559
ffe7704d
KB
1560 if (blk_mq_alloc_tag_set(&dev->tagset))
1561 return 0;
5bae7f73 1562 dev->ctrl.tagset = &dev->tagset;
949928c1
KB
1563 } else {
1564 blk_mq_update_nr_hw_queues(&dev->tagset, dev->online_queues - 1);
1565
1566 /* Free previously allocated queues that are no longer usable */
1567 nvme_free_queues(dev, dev->online_queues);
ffe7704d 1568 }
949928c1 1569
e1e5e564 1570 return 0;
b60503ba
MW
1571}
1572
b00a726a 1573static int nvme_pci_enable(struct nvme_dev *dev)
0877cb0d 1574{
42f61420 1575 u64 cap;
b00a726a 1576 int result = -ENOMEM;
e75ec752 1577 struct pci_dev *pdev = to_pci_dev(dev->dev);
0877cb0d
KB
1578
1579 if (pci_enable_device_mem(pdev))
1580 return result;
1581
0877cb0d 1582 pci_set_master(pdev);
0877cb0d 1583
e75ec752
CH
1584 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
1585 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
052d0efa 1586 goto disable;
0877cb0d 1587
7a67cbea 1588 if (readl(dev->bar + NVME_REG_CSTS) == -1) {
0e53d180 1589 result = -ENODEV;
b00a726a 1590 goto disable;
0e53d180 1591 }
e32efbfc
JA
1592
1593 /*
a5229050
KB
1594 * Some devices and/or platforms don't advertise or work with INTx
1595 * interrupts. Pre-enable a single MSIX or MSI vec for setup. We'll
1596 * adjust this later.
e32efbfc 1597 */
dca51e78
CH
1598 result = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_ALL_TYPES);
1599 if (result < 0)
1600 return result;
e32efbfc 1601
7a67cbea
CH
1602 cap = lo_hi_readq(dev->bar + NVME_REG_CAP);
1603
42f61420
KB
1604 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
1605 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
7a67cbea 1606 dev->dbs = dev->bar + 4096;
1f390c1f
SG
1607
1608 /*
1609 * Temporary fix for the Apple controller found in the MacBook8,1 and
1610 * some MacBook7,1 to avoid controller resets and data loss.
1611 */
1612 if (pdev->vendor == PCI_VENDOR_ID_APPLE && pdev->device == 0x2001) {
1613 dev->q_depth = 2;
1614 dev_warn(dev->dev, "detected Apple NVMe controller, set "
1615 "queue depth=%u to work around controller resets\n",
1616 dev->q_depth);
1617 }
1618
7a67cbea 1619 if (readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 2))
8ffaadf7 1620 dev->cmb = nvme_map_cmb(dev);
0877cb0d 1621
a0a3408e
KB
1622 pci_enable_pcie_error_reporting(pdev);
1623 pci_save_state(pdev);
0877cb0d
KB
1624 return 0;
1625
1626 disable:
0877cb0d
KB
1627 pci_disable_device(pdev);
1628 return result;
1629}
1630
1631static void nvme_dev_unmap(struct nvme_dev *dev)
b00a726a
KB
1632{
1633 if (dev->bar)
1634 iounmap(dev->bar);
a1f447b3 1635 pci_release_mem_regions(to_pci_dev(dev->dev));
b00a726a
KB
1636}
1637
1638static void nvme_pci_disable(struct nvme_dev *dev)
0877cb0d 1639{
e75ec752
CH
1640 struct pci_dev *pdev = to_pci_dev(dev->dev);
1641
dca51e78 1642 pci_free_irq_vectors(pdev);
0877cb0d 1643
a0a3408e
KB
1644 if (pci_is_enabled(pdev)) {
1645 pci_disable_pcie_error_reporting(pdev);
e75ec752 1646 pci_disable_device(pdev);
4d115420 1647 }
4d115420
KB
1648}
1649
a5cdb68c 1650static void nvme_dev_disable(struct nvme_dev *dev, bool shutdown)
b60503ba 1651{
22404274 1652 int i;
7c1b2450 1653 u32 csts = -1;
22404274 1654
2d55cd5f 1655 del_timer_sync(&dev->watchdog_timer);
1fa6aead 1656
77bf25ea 1657 mutex_lock(&dev->shutdown_lock);
b00a726a 1658 if (pci_is_enabled(to_pci_dev(dev->dev))) {
25646264 1659 nvme_stop_queues(&dev->ctrl);
7a67cbea 1660 csts = readl(dev->bar + NVME_REG_CSTS);
c9d3bf88 1661 }
c21377f8
GKB
1662
1663 for (i = dev->queue_count - 1; i > 0; i--)
1664 nvme_suspend_queue(dev->queues[i]);
1665
7c1b2450 1666 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
82469c59
GKB
1667 /* A device might become IO incapable very soon during
1668 * probe, before the admin queue is configured. Thus,
1669 * queue_count can be 0 here.
1670 */
1671 if (dev->queue_count)
1672 nvme_suspend_queue(dev->queues[0]);
4d115420
KB
1673 } else {
1674 nvme_disable_io_queues(dev);
a5cdb68c 1675 nvme_disable_admin_queue(dev, shutdown);
4d115420 1676 }
b00a726a 1677 nvme_pci_disable(dev);
07836e65 1678
e1958e65
ML
1679 blk_mq_tagset_busy_iter(&dev->tagset, nvme_cancel_request, &dev->ctrl);
1680 blk_mq_tagset_busy_iter(&dev->admin_tagset, nvme_cancel_request, &dev->ctrl);
77bf25ea 1681 mutex_unlock(&dev->shutdown_lock);
b60503ba
MW
1682}
1683
091b6092
MW
1684static int nvme_setup_prp_pools(struct nvme_dev *dev)
1685{
e75ec752 1686 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
091b6092
MW
1687 PAGE_SIZE, PAGE_SIZE, 0);
1688 if (!dev->prp_page_pool)
1689 return -ENOMEM;
1690
99802a7a 1691 /* Optimisation for I/Os between 4k and 128k */
e75ec752 1692 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
99802a7a
MW
1693 256, 256, 0);
1694 if (!dev->prp_small_pool) {
1695 dma_pool_destroy(dev->prp_page_pool);
1696 return -ENOMEM;
1697 }
091b6092
MW
1698 return 0;
1699}
1700
1701static void nvme_release_prp_pools(struct nvme_dev *dev)
1702{
1703 dma_pool_destroy(dev->prp_page_pool);
99802a7a 1704 dma_pool_destroy(dev->prp_small_pool);
091b6092
MW
1705}
1706
1673f1f0 1707static void nvme_pci_free_ctrl(struct nvme_ctrl *ctrl)
5e82e952 1708{
1673f1f0 1709 struct nvme_dev *dev = to_nvme_dev(ctrl);
9ac27090 1710
e75ec752 1711 put_device(dev->dev);
4af0e21c
KB
1712 if (dev->tagset.tags)
1713 blk_mq_free_tag_set(&dev->tagset);
1c63dc66
CH
1714 if (dev->ctrl.admin_q)
1715 blk_put_queue(dev->ctrl.admin_q);
5e82e952 1716 kfree(dev->queues);
5e82e952
KB
1717 kfree(dev);
1718}
1719
f58944e2
KB
1720static void nvme_remove_dead_ctrl(struct nvme_dev *dev, int status)
1721{
237045fc 1722 dev_warn(dev->ctrl.device, "Removing after probe failure status: %d\n", status);
f58944e2
KB
1723
1724 kref_get(&dev->ctrl.kref);
69d9a99c 1725 nvme_dev_disable(dev, false);
f58944e2
KB
1726 if (!schedule_work(&dev->remove_work))
1727 nvme_put_ctrl(&dev->ctrl);
1728}
1729
fd634f41 1730static void nvme_reset_work(struct work_struct *work)
5e82e952 1731{
fd634f41 1732 struct nvme_dev *dev = container_of(work, struct nvme_dev, reset_work);
f58944e2 1733 int result = -ENODEV;
5e82e952 1734
bb8d261e 1735 if (WARN_ON(dev->ctrl.state == NVME_CTRL_RESETTING))
fd634f41 1736 goto out;
5e82e952 1737
fd634f41
CH
1738 /*
1739 * If we're called to reset a live controller first shut it down before
1740 * moving on.
1741 */
b00a726a 1742 if (dev->ctrl.ctrl_config & NVME_CC_ENABLE)
a5cdb68c 1743 nvme_dev_disable(dev, false);
5e82e952 1744
bb8d261e 1745 if (!nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_RESETTING))
9bf2b972
KB
1746 goto out;
1747
b00a726a 1748 result = nvme_pci_enable(dev);
f0b50732 1749 if (result)
3cf519b5 1750 goto out;
f0b50732
KB
1751
1752 result = nvme_configure_admin_queue(dev);
1753 if (result)
f58944e2 1754 goto out;
f0b50732 1755
a4aea562 1756 nvme_init_queue(dev->queues[0], 0);
0fb59cbc
KB
1757 result = nvme_alloc_admin_tags(dev);
1758 if (result)
f58944e2 1759 goto out;
b9afca3e 1760
ce4541f4
CH
1761 result = nvme_init_identify(&dev->ctrl);
1762 if (result)
f58944e2 1763 goto out;
ce4541f4 1764
f0b50732 1765 result = nvme_setup_io_queues(dev);
badc34d4 1766 if (result)
f58944e2 1767 goto out;
f0b50732 1768
21f033f7
KB
1769 /*
1770 * A controller that can not execute IO typically requires user
1771 * intervention to correct. For such degraded controllers, the driver
1772 * should not submit commands the user did not request, so skip
1773 * registering for asynchronous event notification on this condition.
1774 */
f866fc42
CH
1775 if (dev->online_queues > 1)
1776 nvme_queue_async_events(&dev->ctrl);
3cf519b5 1777
2d55cd5f 1778 mod_timer(&dev->watchdog_timer, round_jiffies(jiffies + HZ));
3cf519b5 1779
2659e57b
CH
1780 /*
1781 * Keep the controller around but remove all namespaces if we don't have
1782 * any working I/O queue.
1783 */
3cf519b5 1784 if (dev->online_queues < 2) {
1b3c47c1 1785 dev_warn(dev->ctrl.device, "IO queues not created\n");
3b24774e 1786 nvme_kill_queues(&dev->ctrl);
5bae7f73 1787 nvme_remove_namespaces(&dev->ctrl);
3cf519b5 1788 } else {
25646264 1789 nvme_start_queues(&dev->ctrl);
3cf519b5
CH
1790 nvme_dev_add(dev);
1791 }
1792
bb8d261e
CH
1793 if (!nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_LIVE)) {
1794 dev_warn(dev->ctrl.device, "failed to mark controller live\n");
1795 goto out;
1796 }
92911a55
CH
1797
1798 if (dev->online_queues > 1)
5955be21 1799 nvme_queue_scan(&dev->ctrl);
3cf519b5 1800 return;
f0b50732 1801
3cf519b5 1802 out:
f58944e2 1803 nvme_remove_dead_ctrl(dev, result);
f0b50732
KB
1804}
1805
5c8809e6 1806static void nvme_remove_dead_ctrl_work(struct work_struct *work)
9a6b9458 1807{
5c8809e6 1808 struct nvme_dev *dev = container_of(work, struct nvme_dev, remove_work);
e75ec752 1809 struct pci_dev *pdev = to_pci_dev(dev->dev);
9a6b9458 1810
69d9a99c 1811 nvme_kill_queues(&dev->ctrl);
9a6b9458 1812 if (pci_get_drvdata(pdev))
921920ab 1813 device_release_driver(&pdev->dev);
1673f1f0 1814 nvme_put_ctrl(&dev->ctrl);
9a6b9458
KB
1815}
1816
4cc06521 1817static int nvme_reset(struct nvme_dev *dev)
9a6b9458 1818{
1c63dc66 1819 if (!dev->ctrl.admin_q || blk_queue_dying(dev->ctrl.admin_q))
4cc06521 1820 return -ENODEV;
ffe7704d 1821
846cc05f
CH
1822 if (!queue_work(nvme_workq, &dev->reset_work))
1823 return -EBUSY;
ffe7704d 1824
846cc05f 1825 flush_work(&dev->reset_work);
846cc05f 1826 return 0;
9a6b9458
KB
1827}
1828
1c63dc66 1829static int nvme_pci_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val)
9ca97374 1830{
1c63dc66 1831 *val = readl(to_nvme_dev(ctrl)->bar + off);
90667892 1832 return 0;
9ca97374
TH
1833}
1834
5fd4ce1b 1835static int nvme_pci_reg_write32(struct nvme_ctrl *ctrl, u32 off, u32 val)
4cc06521 1836{
5fd4ce1b
CH
1837 writel(val, to_nvme_dev(ctrl)->bar + off);
1838 return 0;
1839}
4cc06521 1840
7fd8930f
CH
1841static int nvme_pci_reg_read64(struct nvme_ctrl *ctrl, u32 off, u64 *val)
1842{
1843 *val = readq(to_nvme_dev(ctrl)->bar + off);
1844 return 0;
4cc06521
KB
1845}
1846
f3ca80fc
CH
1847static int nvme_pci_reset_ctrl(struct nvme_ctrl *ctrl)
1848{
1849 return nvme_reset(to_nvme_dev(ctrl));
4cc06521 1850}
f3ca80fc 1851
1c63dc66 1852static const struct nvme_ctrl_ops nvme_pci_ctrl_ops = {
1a353d85 1853 .name = "pcie",
e439bb12 1854 .module = THIS_MODULE,
1c63dc66 1855 .reg_read32 = nvme_pci_reg_read32,
5fd4ce1b 1856 .reg_write32 = nvme_pci_reg_write32,
7fd8930f 1857 .reg_read64 = nvme_pci_reg_read64,
f3ca80fc 1858 .reset_ctrl = nvme_pci_reset_ctrl,
1673f1f0 1859 .free_ctrl = nvme_pci_free_ctrl,
f866fc42 1860 .submit_async_event = nvme_pci_submit_async_event,
1c63dc66 1861};
4cc06521 1862
b00a726a
KB
1863static int nvme_dev_map(struct nvme_dev *dev)
1864{
b00a726a
KB
1865 struct pci_dev *pdev = to_pci_dev(dev->dev);
1866
a1f447b3 1867 if (pci_request_mem_regions(pdev, "nvme"))
b00a726a
KB
1868 return -ENODEV;
1869
1870 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
1871 if (!dev->bar)
1872 goto release;
1873
1874 return 0;
1875 release:
a1f447b3 1876 pci_release_mem_regions(pdev);
b00a726a
KB
1877 return -ENODEV;
1878}
1879
8d85fce7 1880static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
b60503ba 1881{
a4aea562 1882 int node, result = -ENOMEM;
b60503ba
MW
1883 struct nvme_dev *dev;
1884
a4aea562
MB
1885 node = dev_to_node(&pdev->dev);
1886 if (node == NUMA_NO_NODE)
2fa84351 1887 set_dev_node(&pdev->dev, first_memory_node);
a4aea562
MB
1888
1889 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
b60503ba
MW
1890 if (!dev)
1891 return -ENOMEM;
a4aea562
MB
1892 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
1893 GFP_KERNEL, node);
b60503ba
MW
1894 if (!dev->queues)
1895 goto free;
1896
e75ec752 1897 dev->dev = get_device(&pdev->dev);
9a6b9458 1898 pci_set_drvdata(pdev, dev);
1c63dc66 1899
b00a726a
KB
1900 result = nvme_dev_map(dev);
1901 if (result)
1902 goto free;
1903
f3ca80fc 1904 INIT_WORK(&dev->reset_work, nvme_reset_work);
5c8809e6 1905 INIT_WORK(&dev->remove_work, nvme_remove_dead_ctrl_work);
2d55cd5f
CH
1906 setup_timer(&dev->watchdog_timer, nvme_watchdog_timer,
1907 (unsigned long)dev);
77bf25ea 1908 mutex_init(&dev->shutdown_lock);
db3cbfff 1909 init_completion(&dev->ioq_wait);
b60503ba 1910
091b6092
MW
1911 result = nvme_setup_prp_pools(dev);
1912 if (result)
a96d4f5c 1913 goto put_pci;
4cc06521 1914
f3ca80fc
CH
1915 result = nvme_init_ctrl(&dev->ctrl, &pdev->dev, &nvme_pci_ctrl_ops,
1916 id->driver_data);
4cc06521 1917 if (result)
2e1d8448 1918 goto release_pools;
740216fc 1919
1b3c47c1
SG
1920 dev_info(dev->ctrl.device, "pci function %s\n", dev_name(&pdev->dev));
1921
92f7a162 1922 queue_work(nvme_workq, &dev->reset_work);
b60503ba
MW
1923 return 0;
1924
0877cb0d 1925 release_pools:
091b6092 1926 nvme_release_prp_pools(dev);
a96d4f5c 1927 put_pci:
e75ec752 1928 put_device(dev->dev);
b00a726a 1929 nvme_dev_unmap(dev);
b60503ba
MW
1930 free:
1931 kfree(dev->queues);
b60503ba
MW
1932 kfree(dev);
1933 return result;
1934}
1935
f0d54a54
KB
1936static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
1937{
a6739479 1938 struct nvme_dev *dev = pci_get_drvdata(pdev);
f0d54a54 1939
a6739479 1940 if (prepare)
a5cdb68c 1941 nvme_dev_disable(dev, false);
a6739479 1942 else
92f7a162 1943 queue_work(nvme_workq, &dev->reset_work);
f0d54a54
KB
1944}
1945
09ece142
KB
1946static void nvme_shutdown(struct pci_dev *pdev)
1947{
1948 struct nvme_dev *dev = pci_get_drvdata(pdev);
a5cdb68c 1949 nvme_dev_disable(dev, true);
09ece142
KB
1950}
1951
f58944e2
KB
1952/*
1953 * The driver's remove may be called on a device in a partially initialized
1954 * state. This function must not have any dependencies on the device state in
1955 * order to proceed.
1956 */
8d85fce7 1957static void nvme_remove(struct pci_dev *pdev)
b60503ba
MW
1958{
1959 struct nvme_dev *dev = pci_get_drvdata(pdev);
9a6b9458 1960
bb8d261e
CH
1961 nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DELETING);
1962
9a6b9458 1963 pci_set_drvdata(pdev, NULL);
0ff9d4e1
KB
1964
1965 if (!pci_device_is_present(pdev))
1966 nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DEAD);
1967
9bf2b972 1968 flush_work(&dev->reset_work);
53029b04 1969 nvme_uninit_ctrl(&dev->ctrl);
a5cdb68c 1970 nvme_dev_disable(dev, true);
a4aea562 1971 nvme_dev_remove_admin(dev);
a1a5ef99 1972 nvme_free_queues(dev, 0);
8ffaadf7 1973 nvme_release_cmb(dev);
9a6b9458 1974 nvme_release_prp_pools(dev);
b00a726a 1975 nvme_dev_unmap(dev);
1673f1f0 1976 nvme_put_ctrl(&dev->ctrl);
b60503ba
MW
1977}
1978
13880f5b
KB
1979static int nvme_pci_sriov_configure(struct pci_dev *pdev, int numvfs)
1980{
1981 int ret = 0;
1982
1983 if (numvfs == 0) {
1984 if (pci_vfs_assigned(pdev)) {
1985 dev_warn(&pdev->dev,
1986 "Cannot disable SR-IOV VFs while assigned\n");
1987 return -EPERM;
1988 }
1989 pci_disable_sriov(pdev);
1990 return 0;
1991 }
1992
1993 ret = pci_enable_sriov(pdev, numvfs);
1994 return ret ? ret : numvfs;
1995}
1996
671a6018 1997#ifdef CONFIG_PM_SLEEP
cd638946
KB
1998static int nvme_suspend(struct device *dev)
1999{
2000 struct pci_dev *pdev = to_pci_dev(dev);
2001 struct nvme_dev *ndev = pci_get_drvdata(pdev);
2002
a5cdb68c 2003 nvme_dev_disable(ndev, true);
cd638946
KB
2004 return 0;
2005}
2006
2007static int nvme_resume(struct device *dev)
2008{
2009 struct pci_dev *pdev = to_pci_dev(dev);
2010 struct nvme_dev *ndev = pci_get_drvdata(pdev);
cd638946 2011
92f7a162 2012 queue_work(nvme_workq, &ndev->reset_work);
9a6b9458 2013 return 0;
cd638946 2014}
671a6018 2015#endif
cd638946
KB
2016
2017static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
b60503ba 2018
a0a3408e
KB
2019static pci_ers_result_t nvme_error_detected(struct pci_dev *pdev,
2020 pci_channel_state_t state)
2021{
2022 struct nvme_dev *dev = pci_get_drvdata(pdev);
2023
2024 /*
2025 * A frozen channel requires a reset. When detected, this method will
2026 * shutdown the controller to quiesce. The controller will be restarted
2027 * after the slot reset through driver's slot_reset callback.
2028 */
a0a3408e
KB
2029 switch (state) {
2030 case pci_channel_io_normal:
2031 return PCI_ERS_RESULT_CAN_RECOVER;
2032 case pci_channel_io_frozen:
d011fb31
KB
2033 dev_warn(dev->ctrl.device,
2034 "frozen state error detected, reset controller\n");
a5cdb68c 2035 nvme_dev_disable(dev, false);
a0a3408e
KB
2036 return PCI_ERS_RESULT_NEED_RESET;
2037 case pci_channel_io_perm_failure:
d011fb31
KB
2038 dev_warn(dev->ctrl.device,
2039 "failure state error detected, request disconnect\n");
a0a3408e
KB
2040 return PCI_ERS_RESULT_DISCONNECT;
2041 }
2042 return PCI_ERS_RESULT_NEED_RESET;
2043}
2044
2045static pci_ers_result_t nvme_slot_reset(struct pci_dev *pdev)
2046{
2047 struct nvme_dev *dev = pci_get_drvdata(pdev);
2048
1b3c47c1 2049 dev_info(dev->ctrl.device, "restart after slot reset\n");
a0a3408e
KB
2050 pci_restore_state(pdev);
2051 queue_work(nvme_workq, &dev->reset_work);
2052 return PCI_ERS_RESULT_RECOVERED;
2053}
2054
2055static void nvme_error_resume(struct pci_dev *pdev)
2056{
2057 pci_cleanup_aer_uncorrect_error_status(pdev);
2058}
2059
1d352035 2060static const struct pci_error_handlers nvme_err_handler = {
b60503ba 2061 .error_detected = nvme_error_detected,
b60503ba
MW
2062 .slot_reset = nvme_slot_reset,
2063 .resume = nvme_error_resume,
f0d54a54 2064 .reset_notify = nvme_reset_notify,
b60503ba
MW
2065};
2066
2067/* Move to pci_ids.h later */
2068#define PCI_CLASS_STORAGE_EXPRESS 0x010802
2069
6eb0d698 2070static const struct pci_device_id nvme_id_table[] = {
106198ed 2071 { PCI_VDEVICE(INTEL, 0x0953),
08095e70
KB
2072 .driver_data = NVME_QUIRK_STRIPE_SIZE |
2073 NVME_QUIRK_DISCARD_ZEROES, },
99466e70
KB
2074 { PCI_VDEVICE(INTEL, 0x0a53),
2075 .driver_data = NVME_QUIRK_STRIPE_SIZE |
2076 NVME_QUIRK_DISCARD_ZEROES, },
2077 { PCI_VDEVICE(INTEL, 0x0a54),
2078 .driver_data = NVME_QUIRK_STRIPE_SIZE |
2079 NVME_QUIRK_DISCARD_ZEROES, },
540c801c
KB
2080 { PCI_VDEVICE(INTEL, 0x5845), /* Qemu emulated controller */
2081 .driver_data = NVME_QUIRK_IDENTIFY_CNS, },
54adc010
GP
2082 { PCI_DEVICE(0x1c58, 0x0003), /* HGST adapter */
2083 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
015282c9
WW
2084 { PCI_DEVICE(0x1c5f, 0x0540), /* Memblaze Pblaze4 adapter */
2085 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
b60503ba 2086 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
c74dc780 2087 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
b60503ba
MW
2088 { 0, }
2089};
2090MODULE_DEVICE_TABLE(pci, nvme_id_table);
2091
2092static struct pci_driver nvme_driver = {
2093 .name = "nvme",
2094 .id_table = nvme_id_table,
2095 .probe = nvme_probe,
8d85fce7 2096 .remove = nvme_remove,
09ece142 2097 .shutdown = nvme_shutdown,
cd638946
KB
2098 .driver = {
2099 .pm = &nvme_dev_pm_ops,
2100 },
13880f5b 2101 .sriov_configure = nvme_pci_sriov_configure,
b60503ba
MW
2102 .err_handler = &nvme_err_handler,
2103};
2104
2105static int __init nvme_init(void)
2106{
0ac13140 2107 int result;
1fa6aead 2108
92f7a162 2109 nvme_workq = alloc_workqueue("nvme", WQ_UNBOUND | WQ_MEM_RECLAIM, 0);
9a6b9458 2110 if (!nvme_workq)
b9afca3e 2111 return -ENOMEM;
9a6b9458 2112
f3db22fe
KB
2113 result = pci_register_driver(&nvme_driver);
2114 if (result)
576d55d6 2115 destroy_workqueue(nvme_workq);
b60503ba
MW
2116 return result;
2117}
2118
2119static void __exit nvme_exit(void)
2120{
2121 pci_unregister_driver(&nvme_driver);
9a6b9458 2122 destroy_workqueue(nvme_workq);
21bd78bc 2123 _nvme_check_size();
b60503ba
MW
2124}
2125
2126MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
2127MODULE_LICENSE("GPL");
c78b4713 2128MODULE_VERSION("1.0");
b60503ba
MW
2129module_init(nvme_init);
2130module_exit(nvme_exit);