xref: /openbmc/linux/drivers/nvme/host/pci.c (revision 66341331)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * NVM Express device driver
4  * Copyright (c) 2011-2014, Intel Corporation.
5  */
6 
7 #include <linux/aer.h>
8 #include <linux/async.h>
9 #include <linux/blkdev.h>
10 #include <linux/blk-mq.h>
11 #include <linux/blk-mq-pci.h>
12 #include <linux/dmi.h>
13 #include <linux/init.h>
14 #include <linux/interrupt.h>
15 #include <linux/io.h>
16 #include <linux/mm.h>
17 #include <linux/module.h>
18 #include <linux/mutex.h>
19 #include <linux/once.h>
20 #include <linux/pci.h>
21 #include <linux/suspend.h>
22 #include <linux/t10-pi.h>
23 #include <linux/types.h>
24 #include <linux/io-64-nonatomic-lo-hi.h>
25 #include <linux/sed-opal.h>
26 #include <linux/pci-p2pdma.h>
27 
28 #include "trace.h"
29 #include "nvme.h"
30 
31 #define SQ_SIZE(q)	((q)->q_depth << (q)->sqes)
32 #define CQ_SIZE(q)	((q)->q_depth * sizeof(struct nvme_completion))
33 
34 #define SGES_PER_PAGE	(PAGE_SIZE / sizeof(struct nvme_sgl_desc))
35 
36 /*
37  * These can be higher, but we need to ensure that any command doesn't
38  * require an sg allocation that needs more than a page of data.
39  */
40 #define NVME_MAX_KB_SZ	4096
41 #define NVME_MAX_SEGS	127
42 
43 static int use_threaded_interrupts;
44 module_param(use_threaded_interrupts, int, 0);
45 
46 static bool use_cmb_sqes = true;
47 module_param(use_cmb_sqes, bool, 0444);
48 MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
49 
50 static unsigned int max_host_mem_size_mb = 128;
51 module_param(max_host_mem_size_mb, uint, 0444);
52 MODULE_PARM_DESC(max_host_mem_size_mb,
53 	"Maximum Host Memory Buffer (HMB) size per controller (in MiB)");
54 
55 static unsigned int sgl_threshold = SZ_32K;
56 module_param(sgl_threshold, uint, 0644);
57 MODULE_PARM_DESC(sgl_threshold,
58 		"Use SGLs when average request segment size is larger or equal to "
59 		"this size. Use 0 to disable SGLs.");
60 
61 static int io_queue_depth_set(const char *val, const struct kernel_param *kp);
62 static const struct kernel_param_ops io_queue_depth_ops = {
63 	.set = io_queue_depth_set,
64 	.get = param_get_int,
65 };
66 
67 static int io_queue_depth = 1024;
68 module_param_cb(io_queue_depth, &io_queue_depth_ops, &io_queue_depth, 0644);
69 MODULE_PARM_DESC(io_queue_depth, "set io queue depth, should >= 2");
70 
71 static int write_queues;
72 module_param(write_queues, int, 0644);
73 MODULE_PARM_DESC(write_queues,
74 	"Number of queues to use for writes. If not set, reads and writes "
75 	"will share a queue set.");
76 
77 static int poll_queues;
78 module_param(poll_queues, int, 0644);
79 MODULE_PARM_DESC(poll_queues, "Number of queues to use for polled IO.");
80 
81 struct nvme_dev;
82 struct nvme_queue;
83 
84 static void nvme_dev_disable(struct nvme_dev *dev, bool shutdown);
85 static bool __nvme_disable_io_queues(struct nvme_dev *dev, u8 opcode);
86 
87 /*
88  * Represents an NVM Express device.  Each nvme_dev is a PCI function.
89  */
90 struct nvme_dev {
91 	struct nvme_queue *queues;
92 	struct blk_mq_tag_set tagset;
93 	struct blk_mq_tag_set admin_tagset;
94 	u32 __iomem *dbs;
95 	struct device *dev;
96 	struct dma_pool *prp_page_pool;
97 	struct dma_pool *prp_small_pool;
98 	unsigned online_queues;
99 	unsigned max_qid;
100 	unsigned io_queues[HCTX_MAX_TYPES];
101 	unsigned int num_vecs;
102 	int q_depth;
103 	int io_sqes;
104 	u32 db_stride;
105 	void __iomem *bar;
106 	unsigned long bar_mapped_size;
107 	struct work_struct remove_work;
108 	struct mutex shutdown_lock;
109 	bool subsystem;
110 	u64 cmb_size;
111 	bool cmb_use_sqes;
112 	u32 cmbsz;
113 	u32 cmbloc;
114 	struct nvme_ctrl ctrl;
115 	u32 last_ps;
116 
117 	mempool_t *iod_mempool;
118 
119 	/* shadow doorbell buffer support: */
120 	u32 *dbbuf_dbs;
121 	dma_addr_t dbbuf_dbs_dma_addr;
122 	u32 *dbbuf_eis;
123 	dma_addr_t dbbuf_eis_dma_addr;
124 
125 	/* host memory buffer support: */
126 	u64 host_mem_size;
127 	u32 nr_host_mem_descs;
128 	dma_addr_t host_mem_descs_dma;
129 	struct nvme_host_mem_buf_desc *host_mem_descs;
130 	void **host_mem_desc_bufs;
131 };
132 
133 static int io_queue_depth_set(const char *val, const struct kernel_param *kp)
134 {
135 	int n = 0, ret;
136 
137 	ret = kstrtoint(val, 10, &n);
138 	if (ret != 0 || n < 2)
139 		return -EINVAL;
140 
141 	return param_set_int(val, kp);
142 }
143 
144 static inline unsigned int sq_idx(unsigned int qid, u32 stride)
145 {
146 	return qid * 2 * stride;
147 }
148 
149 static inline unsigned int cq_idx(unsigned int qid, u32 stride)
150 {
151 	return (qid * 2 + 1) * stride;
152 }
153 
154 static inline struct nvme_dev *to_nvme_dev(struct nvme_ctrl *ctrl)
155 {
156 	return container_of(ctrl, struct nvme_dev, ctrl);
157 }
158 
159 /*
160  * An NVM Express queue.  Each device has at least two (one for admin
161  * commands and one for I/O commands).
162  */
163 struct nvme_queue {
164 	struct nvme_dev *dev;
165 	spinlock_t sq_lock;
166 	void *sq_cmds;
167 	 /* only used for poll queues: */
168 	spinlock_t cq_poll_lock ____cacheline_aligned_in_smp;
169 	volatile struct nvme_completion *cqes;
170 	struct blk_mq_tags **tags;
171 	dma_addr_t sq_dma_addr;
172 	dma_addr_t cq_dma_addr;
173 	u32 __iomem *q_db;
174 	u16 q_depth;
175 	u16 cq_vector;
176 	u16 sq_tail;
177 	u16 last_sq_tail;
178 	u16 cq_head;
179 	u16 last_cq_head;
180 	u16 qid;
181 	u8 cq_phase;
182 	u8 sqes;
183 	unsigned long flags;
184 #define NVMEQ_ENABLED		0
185 #define NVMEQ_SQ_CMB		1
186 #define NVMEQ_DELETE_ERROR	2
187 #define NVMEQ_POLLED		3
188 	u32 *dbbuf_sq_db;
189 	u32 *dbbuf_cq_db;
190 	u32 *dbbuf_sq_ei;
191 	u32 *dbbuf_cq_ei;
192 	struct completion delete_done;
193 };
194 
195 /*
196  * The nvme_iod describes the data in an I/O.
197  *
198  * The sg pointer contains the list of PRP/SGL chunk allocations in addition
199  * to the actual struct scatterlist.
200  */
201 struct nvme_iod {
202 	struct nvme_request req;
203 	struct nvme_queue *nvmeq;
204 	bool use_sgl;
205 	int aborted;
206 	int npages;		/* In the PRP list. 0 means small pool in use */
207 	int nents;		/* Used in scatterlist */
208 	dma_addr_t first_dma;
209 	unsigned int dma_len;	/* length of single DMA segment mapping */
210 	dma_addr_t meta_dma;
211 	struct scatterlist *sg;
212 };
213 
214 static unsigned int max_io_queues(void)
215 {
216 	return num_possible_cpus() + write_queues + poll_queues;
217 }
218 
219 static unsigned int max_queue_count(void)
220 {
221 	/* IO queues + admin queue */
222 	return 1 + max_io_queues();
223 }
224 
225 static inline unsigned int nvme_dbbuf_size(u32 stride)
226 {
227 	return (max_queue_count() * 8 * stride);
228 }
229 
230 static int nvme_dbbuf_dma_alloc(struct nvme_dev *dev)
231 {
232 	unsigned int mem_size = nvme_dbbuf_size(dev->db_stride);
233 
234 	if (dev->dbbuf_dbs)
235 		return 0;
236 
237 	dev->dbbuf_dbs = dma_alloc_coherent(dev->dev, mem_size,
238 					    &dev->dbbuf_dbs_dma_addr,
239 					    GFP_KERNEL);
240 	if (!dev->dbbuf_dbs)
241 		return -ENOMEM;
242 	dev->dbbuf_eis = dma_alloc_coherent(dev->dev, mem_size,
243 					    &dev->dbbuf_eis_dma_addr,
244 					    GFP_KERNEL);
245 	if (!dev->dbbuf_eis) {
246 		dma_free_coherent(dev->dev, mem_size,
247 				  dev->dbbuf_dbs, dev->dbbuf_dbs_dma_addr);
248 		dev->dbbuf_dbs = NULL;
249 		return -ENOMEM;
250 	}
251 
252 	return 0;
253 }
254 
255 static void nvme_dbbuf_dma_free(struct nvme_dev *dev)
256 {
257 	unsigned int mem_size = nvme_dbbuf_size(dev->db_stride);
258 
259 	if (dev->dbbuf_dbs) {
260 		dma_free_coherent(dev->dev, mem_size,
261 				  dev->dbbuf_dbs, dev->dbbuf_dbs_dma_addr);
262 		dev->dbbuf_dbs = NULL;
263 	}
264 	if (dev->dbbuf_eis) {
265 		dma_free_coherent(dev->dev, mem_size,
266 				  dev->dbbuf_eis, dev->dbbuf_eis_dma_addr);
267 		dev->dbbuf_eis = NULL;
268 	}
269 }
270 
271 static void nvme_dbbuf_init(struct nvme_dev *dev,
272 			    struct nvme_queue *nvmeq, int qid)
273 {
274 	if (!dev->dbbuf_dbs || !qid)
275 		return;
276 
277 	nvmeq->dbbuf_sq_db = &dev->dbbuf_dbs[sq_idx(qid, dev->db_stride)];
278 	nvmeq->dbbuf_cq_db = &dev->dbbuf_dbs[cq_idx(qid, dev->db_stride)];
279 	nvmeq->dbbuf_sq_ei = &dev->dbbuf_eis[sq_idx(qid, dev->db_stride)];
280 	nvmeq->dbbuf_cq_ei = &dev->dbbuf_eis[cq_idx(qid, dev->db_stride)];
281 }
282 
283 static void nvme_dbbuf_set(struct nvme_dev *dev)
284 {
285 	struct nvme_command c;
286 
287 	if (!dev->dbbuf_dbs)
288 		return;
289 
290 	memset(&c, 0, sizeof(c));
291 	c.dbbuf.opcode = nvme_admin_dbbuf;
292 	c.dbbuf.prp1 = cpu_to_le64(dev->dbbuf_dbs_dma_addr);
293 	c.dbbuf.prp2 = cpu_to_le64(dev->dbbuf_eis_dma_addr);
294 
295 	if (nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0)) {
296 		dev_warn(dev->ctrl.device, "unable to set dbbuf\n");
297 		/* Free memory and continue on */
298 		nvme_dbbuf_dma_free(dev);
299 	}
300 }
301 
302 static inline int nvme_dbbuf_need_event(u16 event_idx, u16 new_idx, u16 old)
303 {
304 	return (u16)(new_idx - event_idx - 1) < (u16)(new_idx - old);
305 }
306 
307 /* Update dbbuf and return true if an MMIO is required */
308 static bool nvme_dbbuf_update_and_check_event(u16 value, u32 *dbbuf_db,
309 					      volatile u32 *dbbuf_ei)
310 {
311 	if (dbbuf_db) {
312 		u16 old_value;
313 
314 		/*
315 		 * Ensure that the queue is written before updating
316 		 * the doorbell in memory
317 		 */
318 		wmb();
319 
320 		old_value = *dbbuf_db;
321 		*dbbuf_db = value;
322 
323 		/*
324 		 * Ensure that the doorbell is updated before reading the event
325 		 * index from memory.  The controller needs to provide similar
326 		 * ordering to ensure the envent index is updated before reading
327 		 * the doorbell.
328 		 */
329 		mb();
330 
331 		if (!nvme_dbbuf_need_event(*dbbuf_ei, value, old_value))
332 			return false;
333 	}
334 
335 	return true;
336 }
337 
338 /*
339  * Will slightly overestimate the number of pages needed.  This is OK
340  * as it only leads to a small amount of wasted memory for the lifetime of
341  * the I/O.
342  */
343 static int nvme_npages(unsigned size, struct nvme_dev *dev)
344 {
345 	unsigned nprps = DIV_ROUND_UP(size + dev->ctrl.page_size,
346 				      dev->ctrl.page_size);
347 	return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
348 }
349 
350 /*
351  * Calculates the number of pages needed for the SGL segments. For example a 4k
352  * page can accommodate 256 SGL descriptors.
353  */
354 static int nvme_pci_npages_sgl(unsigned int num_seg)
355 {
356 	return DIV_ROUND_UP(num_seg * sizeof(struct nvme_sgl_desc), PAGE_SIZE);
357 }
358 
359 static unsigned int nvme_pci_iod_alloc_size(struct nvme_dev *dev,
360 		unsigned int size, unsigned int nseg, bool use_sgl)
361 {
362 	size_t alloc_size;
363 
364 	if (use_sgl)
365 		alloc_size = sizeof(__le64 *) * nvme_pci_npages_sgl(nseg);
366 	else
367 		alloc_size = sizeof(__le64 *) * nvme_npages(size, dev);
368 
369 	return alloc_size + sizeof(struct scatterlist) * nseg;
370 }
371 
372 static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
373 				unsigned int hctx_idx)
374 {
375 	struct nvme_dev *dev = data;
376 	struct nvme_queue *nvmeq = &dev->queues[0];
377 
378 	WARN_ON(hctx_idx != 0);
379 	WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
380 	WARN_ON(nvmeq->tags);
381 
382 	hctx->driver_data = nvmeq;
383 	nvmeq->tags = &dev->admin_tagset.tags[0];
384 	return 0;
385 }
386 
387 static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
388 {
389 	struct nvme_queue *nvmeq = hctx->driver_data;
390 
391 	nvmeq->tags = NULL;
392 }
393 
394 static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
395 			  unsigned int hctx_idx)
396 {
397 	struct nvme_dev *dev = data;
398 	struct nvme_queue *nvmeq = &dev->queues[hctx_idx + 1];
399 
400 	if (!nvmeq->tags)
401 		nvmeq->tags = &dev->tagset.tags[hctx_idx];
402 
403 	WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
404 	hctx->driver_data = nvmeq;
405 	return 0;
406 }
407 
408 static int nvme_init_request(struct blk_mq_tag_set *set, struct request *req,
409 		unsigned int hctx_idx, unsigned int numa_node)
410 {
411 	struct nvme_dev *dev = set->driver_data;
412 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
413 	int queue_idx = (set == &dev->tagset) ? hctx_idx + 1 : 0;
414 	struct nvme_queue *nvmeq = &dev->queues[queue_idx];
415 
416 	BUG_ON(!nvmeq);
417 	iod->nvmeq = nvmeq;
418 
419 	nvme_req(req)->ctrl = &dev->ctrl;
420 	return 0;
421 }
422 
423 static int queue_irq_offset(struct nvme_dev *dev)
424 {
425 	/* if we have more than 1 vec, admin queue offsets us by 1 */
426 	if (dev->num_vecs > 1)
427 		return 1;
428 
429 	return 0;
430 }
431 
432 static int nvme_pci_map_queues(struct blk_mq_tag_set *set)
433 {
434 	struct nvme_dev *dev = set->driver_data;
435 	int i, qoff, offset;
436 
437 	offset = queue_irq_offset(dev);
438 	for (i = 0, qoff = 0; i < set->nr_maps; i++) {
439 		struct blk_mq_queue_map *map = &set->map[i];
440 
441 		map->nr_queues = dev->io_queues[i];
442 		if (!map->nr_queues) {
443 			BUG_ON(i == HCTX_TYPE_DEFAULT);
444 			continue;
445 		}
446 
447 		/*
448 		 * The poll queue(s) doesn't have an IRQ (and hence IRQ
449 		 * affinity), so use the regular blk-mq cpu mapping
450 		 */
451 		map->queue_offset = qoff;
452 		if (i != HCTX_TYPE_POLL && offset)
453 			blk_mq_pci_map_queues(map, to_pci_dev(dev->dev), offset);
454 		else
455 			blk_mq_map_queues(map);
456 		qoff += map->nr_queues;
457 		offset += map->nr_queues;
458 	}
459 
460 	return 0;
461 }
462 
463 /*
464  * Write sq tail if we are asked to, or if the next command would wrap.
465  */
466 static inline void nvme_write_sq_db(struct nvme_queue *nvmeq, bool write_sq)
467 {
468 	if (!write_sq) {
469 		u16 next_tail = nvmeq->sq_tail + 1;
470 
471 		if (next_tail == nvmeq->q_depth)
472 			next_tail = 0;
473 		if (next_tail != nvmeq->last_sq_tail)
474 			return;
475 	}
476 
477 	if (nvme_dbbuf_update_and_check_event(nvmeq->sq_tail,
478 			nvmeq->dbbuf_sq_db, nvmeq->dbbuf_sq_ei))
479 		writel(nvmeq->sq_tail, nvmeq->q_db);
480 	nvmeq->last_sq_tail = nvmeq->sq_tail;
481 }
482 
483 /**
484  * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
485  * @nvmeq: The queue to use
486  * @cmd: The command to send
487  * @write_sq: whether to write to the SQ doorbell
488  */
489 static void nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd,
490 			    bool write_sq)
491 {
492 	spin_lock(&nvmeq->sq_lock);
493 	memcpy(nvmeq->sq_cmds + (nvmeq->sq_tail << nvmeq->sqes),
494 	       cmd, sizeof(*cmd));
495 	if (++nvmeq->sq_tail == nvmeq->q_depth)
496 		nvmeq->sq_tail = 0;
497 	nvme_write_sq_db(nvmeq, write_sq);
498 	spin_unlock(&nvmeq->sq_lock);
499 }
500 
501 static void nvme_commit_rqs(struct blk_mq_hw_ctx *hctx)
502 {
503 	struct nvme_queue *nvmeq = hctx->driver_data;
504 
505 	spin_lock(&nvmeq->sq_lock);
506 	if (nvmeq->sq_tail != nvmeq->last_sq_tail)
507 		nvme_write_sq_db(nvmeq, true);
508 	spin_unlock(&nvmeq->sq_lock);
509 }
510 
511 static void **nvme_pci_iod_list(struct request *req)
512 {
513 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
514 	return (void **)(iod->sg + blk_rq_nr_phys_segments(req));
515 }
516 
517 static inline bool nvme_pci_use_sgls(struct nvme_dev *dev, struct request *req)
518 {
519 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
520 	int nseg = blk_rq_nr_phys_segments(req);
521 	unsigned int avg_seg_size;
522 
523 	if (nseg == 0)
524 		return false;
525 
526 	avg_seg_size = DIV_ROUND_UP(blk_rq_payload_bytes(req), nseg);
527 
528 	if (!(dev->ctrl.sgls & ((1 << 0) | (1 << 1))))
529 		return false;
530 	if (!iod->nvmeq->qid)
531 		return false;
532 	if (!sgl_threshold || avg_seg_size < sgl_threshold)
533 		return false;
534 	return true;
535 }
536 
537 static void nvme_unmap_data(struct nvme_dev *dev, struct request *req)
538 {
539 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
540 	enum dma_data_direction dma_dir = rq_data_dir(req) ?
541 			DMA_TO_DEVICE : DMA_FROM_DEVICE;
542 	const int last_prp = dev->ctrl.page_size / sizeof(__le64) - 1;
543 	dma_addr_t dma_addr = iod->first_dma, next_dma_addr;
544 	int i;
545 
546 	if (iod->dma_len) {
547 		dma_unmap_page(dev->dev, dma_addr, iod->dma_len, dma_dir);
548 		return;
549 	}
550 
551 	WARN_ON_ONCE(!iod->nents);
552 
553 	/* P2PDMA requests do not need to be unmapped */
554 	if (!is_pci_p2pdma_page(sg_page(iod->sg)))
555 		dma_unmap_sg(dev->dev, iod->sg, iod->nents, rq_dma_dir(req));
556 
557 
558 	if (iod->npages == 0)
559 		dma_pool_free(dev->prp_small_pool, nvme_pci_iod_list(req)[0],
560 			dma_addr);
561 
562 	for (i = 0; i < iod->npages; i++) {
563 		void *addr = nvme_pci_iod_list(req)[i];
564 
565 		if (iod->use_sgl) {
566 			struct nvme_sgl_desc *sg_list = addr;
567 
568 			next_dma_addr =
569 			    le64_to_cpu((sg_list[SGES_PER_PAGE - 1]).addr);
570 		} else {
571 			__le64 *prp_list = addr;
572 
573 			next_dma_addr = le64_to_cpu(prp_list[last_prp]);
574 		}
575 
576 		dma_pool_free(dev->prp_page_pool, addr, dma_addr);
577 		dma_addr = next_dma_addr;
578 	}
579 
580 	mempool_free(iod->sg, dev->iod_mempool);
581 }
582 
583 static void nvme_print_sgl(struct scatterlist *sgl, int nents)
584 {
585 	int i;
586 	struct scatterlist *sg;
587 
588 	for_each_sg(sgl, sg, nents, i) {
589 		dma_addr_t phys = sg_phys(sg);
590 		pr_warn("sg[%d] phys_addr:%pad offset:%d length:%d "
591 			"dma_address:%pad dma_length:%d\n",
592 			i, &phys, sg->offset, sg->length, &sg_dma_address(sg),
593 			sg_dma_len(sg));
594 	}
595 }
596 
597 static blk_status_t nvme_pci_setup_prps(struct nvme_dev *dev,
598 		struct request *req, struct nvme_rw_command *cmnd)
599 {
600 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
601 	struct dma_pool *pool;
602 	int length = blk_rq_payload_bytes(req);
603 	struct scatterlist *sg = iod->sg;
604 	int dma_len = sg_dma_len(sg);
605 	u64 dma_addr = sg_dma_address(sg);
606 	u32 page_size = dev->ctrl.page_size;
607 	int offset = dma_addr & (page_size - 1);
608 	__le64 *prp_list;
609 	void **list = nvme_pci_iod_list(req);
610 	dma_addr_t prp_dma;
611 	int nprps, i;
612 
613 	length -= (page_size - offset);
614 	if (length <= 0) {
615 		iod->first_dma = 0;
616 		goto done;
617 	}
618 
619 	dma_len -= (page_size - offset);
620 	if (dma_len) {
621 		dma_addr += (page_size - offset);
622 	} else {
623 		sg = sg_next(sg);
624 		dma_addr = sg_dma_address(sg);
625 		dma_len = sg_dma_len(sg);
626 	}
627 
628 	if (length <= page_size) {
629 		iod->first_dma = dma_addr;
630 		goto done;
631 	}
632 
633 	nprps = DIV_ROUND_UP(length, page_size);
634 	if (nprps <= (256 / 8)) {
635 		pool = dev->prp_small_pool;
636 		iod->npages = 0;
637 	} else {
638 		pool = dev->prp_page_pool;
639 		iod->npages = 1;
640 	}
641 
642 	prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
643 	if (!prp_list) {
644 		iod->first_dma = dma_addr;
645 		iod->npages = -1;
646 		return BLK_STS_RESOURCE;
647 	}
648 	list[0] = prp_list;
649 	iod->first_dma = prp_dma;
650 	i = 0;
651 	for (;;) {
652 		if (i == page_size >> 3) {
653 			__le64 *old_prp_list = prp_list;
654 			prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
655 			if (!prp_list)
656 				return BLK_STS_RESOURCE;
657 			list[iod->npages++] = prp_list;
658 			prp_list[0] = old_prp_list[i - 1];
659 			old_prp_list[i - 1] = cpu_to_le64(prp_dma);
660 			i = 1;
661 		}
662 		prp_list[i++] = cpu_to_le64(dma_addr);
663 		dma_len -= page_size;
664 		dma_addr += page_size;
665 		length -= page_size;
666 		if (length <= 0)
667 			break;
668 		if (dma_len > 0)
669 			continue;
670 		if (unlikely(dma_len < 0))
671 			goto bad_sgl;
672 		sg = sg_next(sg);
673 		dma_addr = sg_dma_address(sg);
674 		dma_len = sg_dma_len(sg);
675 	}
676 
677 done:
678 	cmnd->dptr.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
679 	cmnd->dptr.prp2 = cpu_to_le64(iod->first_dma);
680 
681 	return BLK_STS_OK;
682 
683  bad_sgl:
684 	WARN(DO_ONCE(nvme_print_sgl, iod->sg, iod->nents),
685 			"Invalid SGL for payload:%d nents:%d\n",
686 			blk_rq_payload_bytes(req), iod->nents);
687 	return BLK_STS_IOERR;
688 }
689 
690 static void nvme_pci_sgl_set_data(struct nvme_sgl_desc *sge,
691 		struct scatterlist *sg)
692 {
693 	sge->addr = cpu_to_le64(sg_dma_address(sg));
694 	sge->length = cpu_to_le32(sg_dma_len(sg));
695 	sge->type = NVME_SGL_FMT_DATA_DESC << 4;
696 }
697 
698 static void nvme_pci_sgl_set_seg(struct nvme_sgl_desc *sge,
699 		dma_addr_t dma_addr, int entries)
700 {
701 	sge->addr = cpu_to_le64(dma_addr);
702 	if (entries < SGES_PER_PAGE) {
703 		sge->length = cpu_to_le32(entries * sizeof(*sge));
704 		sge->type = NVME_SGL_FMT_LAST_SEG_DESC << 4;
705 	} else {
706 		sge->length = cpu_to_le32(PAGE_SIZE);
707 		sge->type = NVME_SGL_FMT_SEG_DESC << 4;
708 	}
709 }
710 
711 static blk_status_t nvme_pci_setup_sgls(struct nvme_dev *dev,
712 		struct request *req, struct nvme_rw_command *cmd, int entries)
713 {
714 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
715 	struct dma_pool *pool;
716 	struct nvme_sgl_desc *sg_list;
717 	struct scatterlist *sg = iod->sg;
718 	dma_addr_t sgl_dma;
719 	int i = 0;
720 
721 	/* setting the transfer type as SGL */
722 	cmd->flags = NVME_CMD_SGL_METABUF;
723 
724 	if (entries == 1) {
725 		nvme_pci_sgl_set_data(&cmd->dptr.sgl, sg);
726 		return BLK_STS_OK;
727 	}
728 
729 	if (entries <= (256 / sizeof(struct nvme_sgl_desc))) {
730 		pool = dev->prp_small_pool;
731 		iod->npages = 0;
732 	} else {
733 		pool = dev->prp_page_pool;
734 		iod->npages = 1;
735 	}
736 
737 	sg_list = dma_pool_alloc(pool, GFP_ATOMIC, &sgl_dma);
738 	if (!sg_list) {
739 		iod->npages = -1;
740 		return BLK_STS_RESOURCE;
741 	}
742 
743 	nvme_pci_iod_list(req)[0] = sg_list;
744 	iod->first_dma = sgl_dma;
745 
746 	nvme_pci_sgl_set_seg(&cmd->dptr.sgl, sgl_dma, entries);
747 
748 	do {
749 		if (i == SGES_PER_PAGE) {
750 			struct nvme_sgl_desc *old_sg_desc = sg_list;
751 			struct nvme_sgl_desc *link = &old_sg_desc[i - 1];
752 
753 			sg_list = dma_pool_alloc(pool, GFP_ATOMIC, &sgl_dma);
754 			if (!sg_list)
755 				return BLK_STS_RESOURCE;
756 
757 			i = 0;
758 			nvme_pci_iod_list(req)[iod->npages++] = sg_list;
759 			sg_list[i++] = *link;
760 			nvme_pci_sgl_set_seg(link, sgl_dma, entries);
761 		}
762 
763 		nvme_pci_sgl_set_data(&sg_list[i++], sg);
764 		sg = sg_next(sg);
765 	} while (--entries > 0);
766 
767 	return BLK_STS_OK;
768 }
769 
770 static blk_status_t nvme_setup_prp_simple(struct nvme_dev *dev,
771 		struct request *req, struct nvme_rw_command *cmnd,
772 		struct bio_vec *bv)
773 {
774 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
775 	unsigned int first_prp_len = dev->ctrl.page_size - bv->bv_offset;
776 
777 	iod->first_dma = dma_map_bvec(dev->dev, bv, rq_dma_dir(req), 0);
778 	if (dma_mapping_error(dev->dev, iod->first_dma))
779 		return BLK_STS_RESOURCE;
780 	iod->dma_len = bv->bv_len;
781 
782 	cmnd->dptr.prp1 = cpu_to_le64(iod->first_dma);
783 	if (bv->bv_len > first_prp_len)
784 		cmnd->dptr.prp2 = cpu_to_le64(iod->first_dma + first_prp_len);
785 	return 0;
786 }
787 
788 static blk_status_t nvme_setup_sgl_simple(struct nvme_dev *dev,
789 		struct request *req, struct nvme_rw_command *cmnd,
790 		struct bio_vec *bv)
791 {
792 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
793 
794 	iod->first_dma = dma_map_bvec(dev->dev, bv, rq_dma_dir(req), 0);
795 	if (dma_mapping_error(dev->dev, iod->first_dma))
796 		return BLK_STS_RESOURCE;
797 	iod->dma_len = bv->bv_len;
798 
799 	cmnd->flags = NVME_CMD_SGL_METABUF;
800 	cmnd->dptr.sgl.addr = cpu_to_le64(iod->first_dma);
801 	cmnd->dptr.sgl.length = cpu_to_le32(iod->dma_len);
802 	cmnd->dptr.sgl.type = NVME_SGL_FMT_DATA_DESC << 4;
803 	return 0;
804 }
805 
806 static blk_status_t nvme_map_data(struct nvme_dev *dev, struct request *req,
807 		struct nvme_command *cmnd)
808 {
809 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
810 	blk_status_t ret = BLK_STS_RESOURCE;
811 	int nr_mapped;
812 
813 	if (blk_rq_nr_phys_segments(req) == 1) {
814 		struct bio_vec bv = req_bvec(req);
815 
816 		if (!is_pci_p2pdma_page(bv.bv_page)) {
817 			if (bv.bv_offset + bv.bv_len <= dev->ctrl.page_size * 2)
818 				return nvme_setup_prp_simple(dev, req,
819 							     &cmnd->rw, &bv);
820 
821 			if (iod->nvmeq->qid &&
822 			    dev->ctrl.sgls & ((1 << 0) | (1 << 1)))
823 				return nvme_setup_sgl_simple(dev, req,
824 							     &cmnd->rw, &bv);
825 		}
826 	}
827 
828 	iod->dma_len = 0;
829 	iod->sg = mempool_alloc(dev->iod_mempool, GFP_ATOMIC);
830 	if (!iod->sg)
831 		return BLK_STS_RESOURCE;
832 	sg_init_table(iod->sg, blk_rq_nr_phys_segments(req));
833 	iod->nents = blk_rq_map_sg(req->q, req, iod->sg);
834 	if (!iod->nents)
835 		goto out;
836 
837 	if (is_pci_p2pdma_page(sg_page(iod->sg)))
838 		nr_mapped = pci_p2pdma_map_sg(dev->dev, iod->sg, iod->nents,
839 					      rq_dma_dir(req));
840 	else
841 		nr_mapped = dma_map_sg_attrs(dev->dev, iod->sg, iod->nents,
842 					     rq_dma_dir(req), DMA_ATTR_NO_WARN);
843 	if (!nr_mapped)
844 		goto out;
845 
846 	iod->use_sgl = nvme_pci_use_sgls(dev, req);
847 	if (iod->use_sgl)
848 		ret = nvme_pci_setup_sgls(dev, req, &cmnd->rw, nr_mapped);
849 	else
850 		ret = nvme_pci_setup_prps(dev, req, &cmnd->rw);
851 out:
852 	if (ret != BLK_STS_OK)
853 		nvme_unmap_data(dev, req);
854 	return ret;
855 }
856 
857 static blk_status_t nvme_map_metadata(struct nvme_dev *dev, struct request *req,
858 		struct nvme_command *cmnd)
859 {
860 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
861 
862 	iod->meta_dma = dma_map_bvec(dev->dev, rq_integrity_vec(req),
863 			rq_dma_dir(req), 0);
864 	if (dma_mapping_error(dev->dev, iod->meta_dma))
865 		return BLK_STS_IOERR;
866 	cmnd->rw.metadata = cpu_to_le64(iod->meta_dma);
867 	return 0;
868 }
869 
870 /*
871  * NOTE: ns is NULL when called on the admin queue.
872  */
873 static blk_status_t nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
874 			 const struct blk_mq_queue_data *bd)
875 {
876 	struct nvme_ns *ns = hctx->queue->queuedata;
877 	struct nvme_queue *nvmeq = hctx->driver_data;
878 	struct nvme_dev *dev = nvmeq->dev;
879 	struct request *req = bd->rq;
880 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
881 	struct nvme_command cmnd;
882 	blk_status_t ret;
883 
884 	iod->aborted = 0;
885 	iod->npages = -1;
886 	iod->nents = 0;
887 
888 	/*
889 	 * We should not need to do this, but we're still using this to
890 	 * ensure we can drain requests on a dying queue.
891 	 */
892 	if (unlikely(!test_bit(NVMEQ_ENABLED, &nvmeq->flags)))
893 		return BLK_STS_IOERR;
894 
895 	ret = nvme_setup_cmd(ns, req, &cmnd);
896 	if (ret)
897 		return ret;
898 
899 	if (blk_rq_nr_phys_segments(req)) {
900 		ret = nvme_map_data(dev, req, &cmnd);
901 		if (ret)
902 			goto out_free_cmd;
903 	}
904 
905 	if (blk_integrity_rq(req)) {
906 		ret = nvme_map_metadata(dev, req, &cmnd);
907 		if (ret)
908 			goto out_unmap_data;
909 	}
910 
911 	blk_mq_start_request(req);
912 	nvme_submit_cmd(nvmeq, &cmnd, bd->last);
913 	return BLK_STS_OK;
914 out_unmap_data:
915 	nvme_unmap_data(dev, req);
916 out_free_cmd:
917 	nvme_cleanup_cmd(req);
918 	return ret;
919 }
920 
921 static void nvme_pci_complete_rq(struct request *req)
922 {
923 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
924 	struct nvme_dev *dev = iod->nvmeq->dev;
925 
926 	nvme_cleanup_cmd(req);
927 	if (blk_integrity_rq(req))
928 		dma_unmap_page(dev->dev, iod->meta_dma,
929 			       rq_integrity_vec(req)->bv_len, rq_data_dir(req));
930 	if (blk_rq_nr_phys_segments(req))
931 		nvme_unmap_data(dev, req);
932 	nvme_complete_rq(req);
933 }
934 
935 /* We read the CQE phase first to check if the rest of the entry is valid */
936 static inline bool nvme_cqe_pending(struct nvme_queue *nvmeq)
937 {
938 	return (le16_to_cpu(nvmeq->cqes[nvmeq->cq_head].status) & 1) ==
939 			nvmeq->cq_phase;
940 }
941 
942 static inline void nvme_ring_cq_doorbell(struct nvme_queue *nvmeq)
943 {
944 	u16 head = nvmeq->cq_head;
945 
946 	if (nvme_dbbuf_update_and_check_event(head, nvmeq->dbbuf_cq_db,
947 					      nvmeq->dbbuf_cq_ei))
948 		writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
949 }
950 
951 static inline void nvme_handle_cqe(struct nvme_queue *nvmeq, u16 idx)
952 {
953 	volatile struct nvme_completion *cqe = &nvmeq->cqes[idx];
954 	struct request *req;
955 
956 	if (unlikely(cqe->command_id >= nvmeq->q_depth)) {
957 		dev_warn(nvmeq->dev->ctrl.device,
958 			"invalid id %d completed on queue %d\n",
959 			cqe->command_id, le16_to_cpu(cqe->sq_id));
960 		return;
961 	}
962 
963 	/*
964 	 * AEN requests are special as they don't time out and can
965 	 * survive any kind of queue freeze and often don't respond to
966 	 * aborts.  We don't even bother to allocate a struct request
967 	 * for them but rather special case them here.
968 	 */
969 	if (unlikely(nvmeq->qid == 0 &&
970 			cqe->command_id >= NVME_AQ_BLK_MQ_DEPTH)) {
971 		nvme_complete_async_event(&nvmeq->dev->ctrl,
972 				cqe->status, &cqe->result);
973 		return;
974 	}
975 
976 	req = blk_mq_tag_to_rq(*nvmeq->tags, cqe->command_id);
977 	trace_nvme_sq(req, cqe->sq_head, nvmeq->sq_tail);
978 	nvme_end_request(req, cqe->status, cqe->result);
979 }
980 
981 static void nvme_complete_cqes(struct nvme_queue *nvmeq, u16 start, u16 end)
982 {
983 	while (start != end) {
984 		nvme_handle_cqe(nvmeq, start);
985 		if (++start == nvmeq->q_depth)
986 			start = 0;
987 	}
988 }
989 
990 static inline void nvme_update_cq_head(struct nvme_queue *nvmeq)
991 {
992 	if (nvmeq->cq_head == nvmeq->q_depth - 1) {
993 		nvmeq->cq_head = 0;
994 		nvmeq->cq_phase = !nvmeq->cq_phase;
995 	} else {
996 		nvmeq->cq_head++;
997 	}
998 }
999 
1000 static inline int nvme_process_cq(struct nvme_queue *nvmeq, u16 *start,
1001 				  u16 *end, unsigned int tag)
1002 {
1003 	int found = 0;
1004 
1005 	*start = nvmeq->cq_head;
1006 	while (nvme_cqe_pending(nvmeq)) {
1007 		if (tag == -1U || nvmeq->cqes[nvmeq->cq_head].command_id == tag)
1008 			found++;
1009 		nvme_update_cq_head(nvmeq);
1010 	}
1011 	*end = nvmeq->cq_head;
1012 
1013 	if (*start != *end)
1014 		nvme_ring_cq_doorbell(nvmeq);
1015 	return found;
1016 }
1017 
1018 static irqreturn_t nvme_irq(int irq, void *data)
1019 {
1020 	struct nvme_queue *nvmeq = data;
1021 	irqreturn_t ret = IRQ_NONE;
1022 	u16 start, end;
1023 
1024 	/*
1025 	 * The rmb/wmb pair ensures we see all updates from a previous run of
1026 	 * the irq handler, even if that was on another CPU.
1027 	 */
1028 	rmb();
1029 	if (nvmeq->cq_head != nvmeq->last_cq_head)
1030 		ret = IRQ_HANDLED;
1031 	nvme_process_cq(nvmeq, &start, &end, -1);
1032 	nvmeq->last_cq_head = nvmeq->cq_head;
1033 	wmb();
1034 
1035 	if (start != end) {
1036 		nvme_complete_cqes(nvmeq, start, end);
1037 		return IRQ_HANDLED;
1038 	}
1039 
1040 	return ret;
1041 }
1042 
1043 static irqreturn_t nvme_irq_check(int irq, void *data)
1044 {
1045 	struct nvme_queue *nvmeq = data;
1046 	if (nvme_cqe_pending(nvmeq))
1047 		return IRQ_WAKE_THREAD;
1048 	return IRQ_NONE;
1049 }
1050 
1051 /*
1052  * Poll for completions any queue, including those not dedicated to polling.
1053  * Can be called from any context.
1054  */
1055 static int nvme_poll_irqdisable(struct nvme_queue *nvmeq, unsigned int tag)
1056 {
1057 	struct pci_dev *pdev = to_pci_dev(nvmeq->dev->dev);
1058 	u16 start, end;
1059 	int found;
1060 
1061 	/*
1062 	 * For a poll queue we need to protect against the polling thread
1063 	 * using the CQ lock.  For normal interrupt driven threads we have
1064 	 * to disable the interrupt to avoid racing with it.
1065 	 */
1066 	if (test_bit(NVMEQ_POLLED, &nvmeq->flags)) {
1067 		spin_lock(&nvmeq->cq_poll_lock);
1068 		found = nvme_process_cq(nvmeq, &start, &end, tag);
1069 		spin_unlock(&nvmeq->cq_poll_lock);
1070 	} else {
1071 		disable_irq(pci_irq_vector(pdev, nvmeq->cq_vector));
1072 		found = nvme_process_cq(nvmeq, &start, &end, tag);
1073 		enable_irq(pci_irq_vector(pdev, nvmeq->cq_vector));
1074 	}
1075 
1076 	nvme_complete_cqes(nvmeq, start, end);
1077 	return found;
1078 }
1079 
1080 static int nvme_poll(struct blk_mq_hw_ctx *hctx)
1081 {
1082 	struct nvme_queue *nvmeq = hctx->driver_data;
1083 	u16 start, end;
1084 	bool found;
1085 
1086 	if (!nvme_cqe_pending(nvmeq))
1087 		return 0;
1088 
1089 	spin_lock(&nvmeq->cq_poll_lock);
1090 	found = nvme_process_cq(nvmeq, &start, &end, -1);
1091 	spin_unlock(&nvmeq->cq_poll_lock);
1092 
1093 	nvme_complete_cqes(nvmeq, start, end);
1094 	return found;
1095 }
1096 
1097 static void nvme_pci_submit_async_event(struct nvme_ctrl *ctrl)
1098 {
1099 	struct nvme_dev *dev = to_nvme_dev(ctrl);
1100 	struct nvme_queue *nvmeq = &dev->queues[0];
1101 	struct nvme_command c;
1102 
1103 	memset(&c, 0, sizeof(c));
1104 	c.common.opcode = nvme_admin_async_event;
1105 	c.common.command_id = NVME_AQ_BLK_MQ_DEPTH;
1106 	nvme_submit_cmd(nvmeq, &c, true);
1107 }
1108 
1109 static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
1110 {
1111 	struct nvme_command c;
1112 
1113 	memset(&c, 0, sizeof(c));
1114 	c.delete_queue.opcode = opcode;
1115 	c.delete_queue.qid = cpu_to_le16(id);
1116 
1117 	return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
1118 }
1119 
1120 static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
1121 		struct nvme_queue *nvmeq, s16 vector)
1122 {
1123 	struct nvme_command c;
1124 	int flags = NVME_QUEUE_PHYS_CONTIG;
1125 
1126 	if (!test_bit(NVMEQ_POLLED, &nvmeq->flags))
1127 		flags |= NVME_CQ_IRQ_ENABLED;
1128 
1129 	/*
1130 	 * Note: we (ab)use the fact that the prp fields survive if no data
1131 	 * is attached to the request.
1132 	 */
1133 	memset(&c, 0, sizeof(c));
1134 	c.create_cq.opcode = nvme_admin_create_cq;
1135 	c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1136 	c.create_cq.cqid = cpu_to_le16(qid);
1137 	c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1138 	c.create_cq.cq_flags = cpu_to_le16(flags);
1139 	c.create_cq.irq_vector = cpu_to_le16(vector);
1140 
1141 	return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
1142 }
1143 
1144 static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1145 						struct nvme_queue *nvmeq)
1146 {
1147 	struct nvme_ctrl *ctrl = &dev->ctrl;
1148 	struct nvme_command c;
1149 	int flags = NVME_QUEUE_PHYS_CONTIG;
1150 
1151 	/*
1152 	 * Some drives have a bug that auto-enables WRRU if MEDIUM isn't
1153 	 * set. Since URGENT priority is zeroes, it makes all queues
1154 	 * URGENT.
1155 	 */
1156 	if (ctrl->quirks & NVME_QUIRK_MEDIUM_PRIO_SQ)
1157 		flags |= NVME_SQ_PRIO_MEDIUM;
1158 
1159 	/*
1160 	 * Note: we (ab)use the fact that the prp fields survive if no data
1161 	 * is attached to the request.
1162 	 */
1163 	memset(&c, 0, sizeof(c));
1164 	c.create_sq.opcode = nvme_admin_create_sq;
1165 	c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1166 	c.create_sq.sqid = cpu_to_le16(qid);
1167 	c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1168 	c.create_sq.sq_flags = cpu_to_le16(flags);
1169 	c.create_sq.cqid = cpu_to_le16(qid);
1170 
1171 	return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
1172 }
1173 
1174 static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1175 {
1176 	return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1177 }
1178 
1179 static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1180 {
1181 	return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1182 }
1183 
1184 static void abort_endio(struct request *req, blk_status_t error)
1185 {
1186 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
1187 	struct nvme_queue *nvmeq = iod->nvmeq;
1188 
1189 	dev_warn(nvmeq->dev->ctrl.device,
1190 		 "Abort status: 0x%x", nvme_req(req)->status);
1191 	atomic_inc(&nvmeq->dev->ctrl.abort_limit);
1192 	blk_mq_free_request(req);
1193 }
1194 
1195 static bool nvme_should_reset(struct nvme_dev *dev, u32 csts)
1196 {
1197 
1198 	/* If true, indicates loss of adapter communication, possibly by a
1199 	 * NVMe Subsystem reset.
1200 	 */
1201 	bool nssro = dev->subsystem && (csts & NVME_CSTS_NSSRO);
1202 
1203 	/* If there is a reset/reinit ongoing, we shouldn't reset again. */
1204 	switch (dev->ctrl.state) {
1205 	case NVME_CTRL_RESETTING:
1206 	case NVME_CTRL_CONNECTING:
1207 		return false;
1208 	default:
1209 		break;
1210 	}
1211 
1212 	/* We shouldn't reset unless the controller is on fatal error state
1213 	 * _or_ if we lost the communication with it.
1214 	 */
1215 	if (!(csts & NVME_CSTS_CFS) && !nssro)
1216 		return false;
1217 
1218 	return true;
1219 }
1220 
1221 static void nvme_warn_reset(struct nvme_dev *dev, u32 csts)
1222 {
1223 	/* Read a config register to help see what died. */
1224 	u16 pci_status;
1225 	int result;
1226 
1227 	result = pci_read_config_word(to_pci_dev(dev->dev), PCI_STATUS,
1228 				      &pci_status);
1229 	if (result == PCIBIOS_SUCCESSFUL)
1230 		dev_warn(dev->ctrl.device,
1231 			 "controller is down; will reset: CSTS=0x%x, PCI_STATUS=0x%hx\n",
1232 			 csts, pci_status);
1233 	else
1234 		dev_warn(dev->ctrl.device,
1235 			 "controller is down; will reset: CSTS=0x%x, PCI_STATUS read failed (%d)\n",
1236 			 csts, result);
1237 }
1238 
1239 static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1240 {
1241 	struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
1242 	struct nvme_queue *nvmeq = iod->nvmeq;
1243 	struct nvme_dev *dev = nvmeq->dev;
1244 	struct request *abort_req;
1245 	struct nvme_command cmd;
1246 	u32 csts = readl(dev->bar + NVME_REG_CSTS);
1247 
1248 	/* If PCI error recovery process is happening, we cannot reset or
1249 	 * the recovery mechanism will surely fail.
1250 	 */
1251 	mb();
1252 	if (pci_channel_offline(to_pci_dev(dev->dev)))
1253 		return BLK_EH_RESET_TIMER;
1254 
1255 	/*
1256 	 * Reset immediately if the controller is failed
1257 	 */
1258 	if (nvme_should_reset(dev, csts)) {
1259 		nvme_warn_reset(dev, csts);
1260 		nvme_dev_disable(dev, false);
1261 		nvme_reset_ctrl(&dev->ctrl);
1262 		return BLK_EH_DONE;
1263 	}
1264 
1265 	/*
1266 	 * Did we miss an interrupt?
1267 	 */
1268 	if (nvme_poll_irqdisable(nvmeq, req->tag)) {
1269 		dev_warn(dev->ctrl.device,
1270 			 "I/O %d QID %d timeout, completion polled\n",
1271 			 req->tag, nvmeq->qid);
1272 		return BLK_EH_DONE;
1273 	}
1274 
1275 	/*
1276 	 * Shutdown immediately if controller times out while starting. The
1277 	 * reset work will see the pci device disabled when it gets the forced
1278 	 * cancellation error. All outstanding requests are completed on
1279 	 * shutdown, so we return BLK_EH_DONE.
1280 	 */
1281 	switch (dev->ctrl.state) {
1282 	case NVME_CTRL_CONNECTING:
1283 		nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DELETING);
1284 		/* fall through */
1285 	case NVME_CTRL_DELETING:
1286 		dev_warn_ratelimited(dev->ctrl.device,
1287 			 "I/O %d QID %d timeout, disable controller\n",
1288 			 req->tag, nvmeq->qid);
1289 		nvme_dev_disable(dev, true);
1290 		nvme_req(req)->flags |= NVME_REQ_CANCELLED;
1291 		return BLK_EH_DONE;
1292 	case NVME_CTRL_RESETTING:
1293 		return BLK_EH_RESET_TIMER;
1294 	default:
1295 		break;
1296 	}
1297 
1298 	/*
1299  	 * Shutdown the controller immediately and schedule a reset if the
1300  	 * command was already aborted once before and still hasn't been
1301  	 * returned to the driver, or if this is the admin queue.
1302 	 */
1303 	if (!nvmeq->qid || iod->aborted) {
1304 		dev_warn(dev->ctrl.device,
1305 			 "I/O %d QID %d timeout, reset controller\n",
1306 			 req->tag, nvmeq->qid);
1307 		nvme_dev_disable(dev, false);
1308 		nvme_reset_ctrl(&dev->ctrl);
1309 
1310 		nvme_req(req)->flags |= NVME_REQ_CANCELLED;
1311 		return BLK_EH_DONE;
1312 	}
1313 
1314 	if (atomic_dec_return(&dev->ctrl.abort_limit) < 0) {
1315 		atomic_inc(&dev->ctrl.abort_limit);
1316 		return BLK_EH_RESET_TIMER;
1317 	}
1318 	iod->aborted = 1;
1319 
1320 	memset(&cmd, 0, sizeof(cmd));
1321 	cmd.abort.opcode = nvme_admin_abort_cmd;
1322 	cmd.abort.cid = req->tag;
1323 	cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
1324 
1325 	dev_warn(nvmeq->dev->ctrl.device,
1326 		"I/O %d QID %d timeout, aborting\n",
1327 		 req->tag, nvmeq->qid);
1328 
1329 	abort_req = nvme_alloc_request(dev->ctrl.admin_q, &cmd,
1330 			BLK_MQ_REQ_NOWAIT, NVME_QID_ANY);
1331 	if (IS_ERR(abort_req)) {
1332 		atomic_inc(&dev->ctrl.abort_limit);
1333 		return BLK_EH_RESET_TIMER;
1334 	}
1335 
1336 	abort_req->timeout = ADMIN_TIMEOUT;
1337 	abort_req->end_io_data = NULL;
1338 	blk_execute_rq_nowait(abort_req->q, NULL, abort_req, 0, abort_endio);
1339 
1340 	/*
1341 	 * The aborted req will be completed on receiving the abort req.
1342 	 * We enable the timer again. If hit twice, it'll cause a device reset,
1343 	 * as the device then is in a faulty state.
1344 	 */
1345 	return BLK_EH_RESET_TIMER;
1346 }
1347 
1348 static void nvme_free_queue(struct nvme_queue *nvmeq)
1349 {
1350 	dma_free_coherent(nvmeq->dev->dev, CQ_SIZE(nvmeq),
1351 				(void *)nvmeq->cqes, nvmeq->cq_dma_addr);
1352 	if (!nvmeq->sq_cmds)
1353 		return;
1354 
1355 	if (test_and_clear_bit(NVMEQ_SQ_CMB, &nvmeq->flags)) {
1356 		pci_free_p2pmem(to_pci_dev(nvmeq->dev->dev),
1357 				nvmeq->sq_cmds, SQ_SIZE(nvmeq));
1358 	} else {
1359 		dma_free_coherent(nvmeq->dev->dev, SQ_SIZE(nvmeq),
1360 				nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1361 	}
1362 }
1363 
1364 static void nvme_free_queues(struct nvme_dev *dev, int lowest)
1365 {
1366 	int i;
1367 
1368 	for (i = dev->ctrl.queue_count - 1; i >= lowest; i--) {
1369 		dev->ctrl.queue_count--;
1370 		nvme_free_queue(&dev->queues[i]);
1371 	}
1372 }
1373 
1374 /**
1375  * nvme_suspend_queue - put queue into suspended state
1376  * @nvmeq: queue to suspend
1377  */
1378 static int nvme_suspend_queue(struct nvme_queue *nvmeq)
1379 {
1380 	if (!test_and_clear_bit(NVMEQ_ENABLED, &nvmeq->flags))
1381 		return 1;
1382 
1383 	/* ensure that nvme_queue_rq() sees NVMEQ_ENABLED cleared */
1384 	mb();
1385 
1386 	nvmeq->dev->online_queues--;
1387 	if (!nvmeq->qid && nvmeq->dev->ctrl.admin_q)
1388 		blk_mq_quiesce_queue(nvmeq->dev->ctrl.admin_q);
1389 	if (!test_and_clear_bit(NVMEQ_POLLED, &nvmeq->flags))
1390 		pci_free_irq(to_pci_dev(nvmeq->dev->dev), nvmeq->cq_vector, nvmeq);
1391 	return 0;
1392 }
1393 
1394 static void nvme_suspend_io_queues(struct nvme_dev *dev)
1395 {
1396 	int i;
1397 
1398 	for (i = dev->ctrl.queue_count - 1; i > 0; i--)
1399 		nvme_suspend_queue(&dev->queues[i]);
1400 }
1401 
1402 static void nvme_disable_admin_queue(struct nvme_dev *dev, bool shutdown)
1403 {
1404 	struct nvme_queue *nvmeq = &dev->queues[0];
1405 
1406 	if (shutdown)
1407 		nvme_shutdown_ctrl(&dev->ctrl);
1408 	else
1409 		nvme_disable_ctrl(&dev->ctrl);
1410 
1411 	nvme_poll_irqdisable(nvmeq, -1);
1412 }
1413 
1414 static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1415 				int entry_size)
1416 {
1417 	int q_depth = dev->q_depth;
1418 	unsigned q_size_aligned = roundup(q_depth * entry_size,
1419 					  dev->ctrl.page_size);
1420 
1421 	if (q_size_aligned * nr_io_queues > dev->cmb_size) {
1422 		u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
1423 		mem_per_q = round_down(mem_per_q, dev->ctrl.page_size);
1424 		q_depth = div_u64(mem_per_q, entry_size);
1425 
1426 		/*
1427 		 * Ensure the reduced q_depth is above some threshold where it
1428 		 * would be better to map queues in system memory with the
1429 		 * original depth
1430 		 */
1431 		if (q_depth < 64)
1432 			return -ENOMEM;
1433 	}
1434 
1435 	return q_depth;
1436 }
1437 
1438 static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1439 				int qid)
1440 {
1441 	struct pci_dev *pdev = to_pci_dev(dev->dev);
1442 
1443 	if (qid && dev->cmb_use_sqes && (dev->cmbsz & NVME_CMBSZ_SQS)) {
1444 		nvmeq->sq_cmds = pci_alloc_p2pmem(pdev, SQ_SIZE(nvmeq));
1445 		if (nvmeq->sq_cmds) {
1446 			nvmeq->sq_dma_addr = pci_p2pmem_virt_to_bus(pdev,
1447 							nvmeq->sq_cmds);
1448 			if (nvmeq->sq_dma_addr) {
1449 				set_bit(NVMEQ_SQ_CMB, &nvmeq->flags);
1450 				return 0;
1451 			}
1452 
1453 			pci_free_p2pmem(pdev, nvmeq->sq_cmds, SQ_SIZE(nvmeq));
1454 		}
1455 	}
1456 
1457 	nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(nvmeq),
1458 				&nvmeq->sq_dma_addr, GFP_KERNEL);
1459 	if (!nvmeq->sq_cmds)
1460 		return -ENOMEM;
1461 	return 0;
1462 }
1463 
1464 static int nvme_alloc_queue(struct nvme_dev *dev, int qid, int depth)
1465 {
1466 	struct nvme_queue *nvmeq = &dev->queues[qid];
1467 
1468 	if (dev->ctrl.queue_count > qid)
1469 		return 0;
1470 
1471 	nvmeq->sqes = qid ? dev->io_sqes : NVME_ADM_SQES;
1472 	nvmeq->q_depth = depth;
1473 	nvmeq->cqes = dma_alloc_coherent(dev->dev, CQ_SIZE(nvmeq),
1474 					 &nvmeq->cq_dma_addr, GFP_KERNEL);
1475 	if (!nvmeq->cqes)
1476 		goto free_nvmeq;
1477 
1478 	if (nvme_alloc_sq_cmds(dev, nvmeq, qid))
1479 		goto free_cqdma;
1480 
1481 	nvmeq->dev = dev;
1482 	spin_lock_init(&nvmeq->sq_lock);
1483 	spin_lock_init(&nvmeq->cq_poll_lock);
1484 	nvmeq->cq_head = 0;
1485 	nvmeq->cq_phase = 1;
1486 	nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
1487 	nvmeq->qid = qid;
1488 	dev->ctrl.queue_count++;
1489 
1490 	return 0;
1491 
1492  free_cqdma:
1493 	dma_free_coherent(dev->dev, CQ_SIZE(nvmeq), (void *)nvmeq->cqes,
1494 			  nvmeq->cq_dma_addr);
1495  free_nvmeq:
1496 	return -ENOMEM;
1497 }
1498 
1499 static int queue_request_irq(struct nvme_queue *nvmeq)
1500 {
1501 	struct pci_dev *pdev = to_pci_dev(nvmeq->dev->dev);
1502 	int nr = nvmeq->dev->ctrl.instance;
1503 
1504 	if (use_threaded_interrupts) {
1505 		return pci_request_irq(pdev, nvmeq->cq_vector, nvme_irq_check,
1506 				nvme_irq, nvmeq, "nvme%dq%d", nr, nvmeq->qid);
1507 	} else {
1508 		return pci_request_irq(pdev, nvmeq->cq_vector, nvme_irq,
1509 				NULL, nvmeq, "nvme%dq%d", nr, nvmeq->qid);
1510 	}
1511 }
1512 
1513 static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
1514 {
1515 	struct nvme_dev *dev = nvmeq->dev;
1516 
1517 	nvmeq->sq_tail = 0;
1518 	nvmeq->last_sq_tail = 0;
1519 	nvmeq->cq_head = 0;
1520 	nvmeq->cq_phase = 1;
1521 	nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
1522 	memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq));
1523 	nvme_dbbuf_init(dev, nvmeq, qid);
1524 	dev->online_queues++;
1525 	wmb(); /* ensure the first interrupt sees the initialization */
1526 }
1527 
1528 static int nvme_create_queue(struct nvme_queue *nvmeq, int qid, bool polled)
1529 {
1530 	struct nvme_dev *dev = nvmeq->dev;
1531 	int result;
1532 	u16 vector = 0;
1533 
1534 	clear_bit(NVMEQ_DELETE_ERROR, &nvmeq->flags);
1535 
1536 	/*
1537 	 * A queue's vector matches the queue identifier unless the controller
1538 	 * has only one vector available.
1539 	 */
1540 	if (!polled)
1541 		vector = dev->num_vecs == 1 ? 0 : qid;
1542 	else
1543 		set_bit(NVMEQ_POLLED, &nvmeq->flags);
1544 
1545 	result = adapter_alloc_cq(dev, qid, nvmeq, vector);
1546 	if (result)
1547 		return result;
1548 
1549 	result = adapter_alloc_sq(dev, qid, nvmeq);
1550 	if (result < 0)
1551 		return result;
1552 	else if (result)
1553 		goto release_cq;
1554 
1555 	nvmeq->cq_vector = vector;
1556 	nvme_init_queue(nvmeq, qid);
1557 
1558 	if (!polled) {
1559 		nvmeq->cq_vector = vector;
1560 		result = queue_request_irq(nvmeq);
1561 		if (result < 0)
1562 			goto release_sq;
1563 	}
1564 
1565 	set_bit(NVMEQ_ENABLED, &nvmeq->flags);
1566 	return result;
1567 
1568 release_sq:
1569 	dev->online_queues--;
1570 	adapter_delete_sq(dev, qid);
1571 release_cq:
1572 	adapter_delete_cq(dev, qid);
1573 	return result;
1574 }
1575 
1576 static const struct blk_mq_ops nvme_mq_admin_ops = {
1577 	.queue_rq	= nvme_queue_rq,
1578 	.complete	= nvme_pci_complete_rq,
1579 	.init_hctx	= nvme_admin_init_hctx,
1580 	.exit_hctx      = nvme_admin_exit_hctx,
1581 	.init_request	= nvme_init_request,
1582 	.timeout	= nvme_timeout,
1583 };
1584 
1585 static const struct blk_mq_ops nvme_mq_ops = {
1586 	.queue_rq	= nvme_queue_rq,
1587 	.complete	= nvme_pci_complete_rq,
1588 	.commit_rqs	= nvme_commit_rqs,
1589 	.init_hctx	= nvme_init_hctx,
1590 	.init_request	= nvme_init_request,
1591 	.map_queues	= nvme_pci_map_queues,
1592 	.timeout	= nvme_timeout,
1593 	.poll		= nvme_poll,
1594 };
1595 
1596 static void nvme_dev_remove_admin(struct nvme_dev *dev)
1597 {
1598 	if (dev->ctrl.admin_q && !blk_queue_dying(dev->ctrl.admin_q)) {
1599 		/*
1600 		 * If the controller was reset during removal, it's possible
1601 		 * user requests may be waiting on a stopped queue. Start the
1602 		 * queue to flush these to completion.
1603 		 */
1604 		blk_mq_unquiesce_queue(dev->ctrl.admin_q);
1605 		blk_cleanup_queue(dev->ctrl.admin_q);
1606 		blk_mq_free_tag_set(&dev->admin_tagset);
1607 	}
1608 }
1609 
1610 static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1611 {
1612 	if (!dev->ctrl.admin_q) {
1613 		dev->admin_tagset.ops = &nvme_mq_admin_ops;
1614 		dev->admin_tagset.nr_hw_queues = 1;
1615 
1616 		dev->admin_tagset.queue_depth = NVME_AQ_MQ_TAG_DEPTH;
1617 		dev->admin_tagset.timeout = ADMIN_TIMEOUT;
1618 		dev->admin_tagset.numa_node = dev_to_node(dev->dev);
1619 		dev->admin_tagset.cmd_size = sizeof(struct nvme_iod);
1620 		dev->admin_tagset.flags = BLK_MQ_F_NO_SCHED;
1621 		dev->admin_tagset.driver_data = dev;
1622 
1623 		if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1624 			return -ENOMEM;
1625 		dev->ctrl.admin_tagset = &dev->admin_tagset;
1626 
1627 		dev->ctrl.admin_q = blk_mq_init_queue(&dev->admin_tagset);
1628 		if (IS_ERR(dev->ctrl.admin_q)) {
1629 			blk_mq_free_tag_set(&dev->admin_tagset);
1630 			return -ENOMEM;
1631 		}
1632 		if (!blk_get_queue(dev->ctrl.admin_q)) {
1633 			nvme_dev_remove_admin(dev);
1634 			dev->ctrl.admin_q = NULL;
1635 			return -ENODEV;
1636 		}
1637 	} else
1638 		blk_mq_unquiesce_queue(dev->ctrl.admin_q);
1639 
1640 	return 0;
1641 }
1642 
1643 static unsigned long db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
1644 {
1645 	return NVME_REG_DBS + ((nr_io_queues + 1) * 8 * dev->db_stride);
1646 }
1647 
1648 static int nvme_remap_bar(struct nvme_dev *dev, unsigned long size)
1649 {
1650 	struct pci_dev *pdev = to_pci_dev(dev->dev);
1651 
1652 	if (size <= dev->bar_mapped_size)
1653 		return 0;
1654 	if (size > pci_resource_len(pdev, 0))
1655 		return -ENOMEM;
1656 	if (dev->bar)
1657 		iounmap(dev->bar);
1658 	dev->bar = ioremap(pci_resource_start(pdev, 0), size);
1659 	if (!dev->bar) {
1660 		dev->bar_mapped_size = 0;
1661 		return -ENOMEM;
1662 	}
1663 	dev->bar_mapped_size = size;
1664 	dev->dbs = dev->bar + NVME_REG_DBS;
1665 
1666 	return 0;
1667 }
1668 
1669 static int nvme_pci_configure_admin_queue(struct nvme_dev *dev)
1670 {
1671 	int result;
1672 	u32 aqa;
1673 	struct nvme_queue *nvmeq;
1674 
1675 	result = nvme_remap_bar(dev, db_bar_size(dev, 0));
1676 	if (result < 0)
1677 		return result;
1678 
1679 	dev->subsystem = readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 1, 0) ?
1680 				NVME_CAP_NSSRC(dev->ctrl.cap) : 0;
1681 
1682 	if (dev->subsystem &&
1683 	    (readl(dev->bar + NVME_REG_CSTS) & NVME_CSTS_NSSRO))
1684 		writel(NVME_CSTS_NSSRO, dev->bar + NVME_REG_CSTS);
1685 
1686 	result = nvme_disable_ctrl(&dev->ctrl);
1687 	if (result < 0)
1688 		return result;
1689 
1690 	result = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
1691 	if (result)
1692 		return result;
1693 
1694 	nvmeq = &dev->queues[0];
1695 	aqa = nvmeq->q_depth - 1;
1696 	aqa |= aqa << 16;
1697 
1698 	writel(aqa, dev->bar + NVME_REG_AQA);
1699 	lo_hi_writeq(nvmeq->sq_dma_addr, dev->bar + NVME_REG_ASQ);
1700 	lo_hi_writeq(nvmeq->cq_dma_addr, dev->bar + NVME_REG_ACQ);
1701 
1702 	result = nvme_enable_ctrl(&dev->ctrl);
1703 	if (result)
1704 		return result;
1705 
1706 	nvmeq->cq_vector = 0;
1707 	nvme_init_queue(nvmeq, 0);
1708 	result = queue_request_irq(nvmeq);
1709 	if (result) {
1710 		dev->online_queues--;
1711 		return result;
1712 	}
1713 
1714 	set_bit(NVMEQ_ENABLED, &nvmeq->flags);
1715 	return result;
1716 }
1717 
1718 static int nvme_create_io_queues(struct nvme_dev *dev)
1719 {
1720 	unsigned i, max, rw_queues;
1721 	int ret = 0;
1722 
1723 	for (i = dev->ctrl.queue_count; i <= dev->max_qid; i++) {
1724 		if (nvme_alloc_queue(dev, i, dev->q_depth)) {
1725 			ret = -ENOMEM;
1726 			break;
1727 		}
1728 	}
1729 
1730 	max = min(dev->max_qid, dev->ctrl.queue_count - 1);
1731 	if (max != 1 && dev->io_queues[HCTX_TYPE_POLL]) {
1732 		rw_queues = dev->io_queues[HCTX_TYPE_DEFAULT] +
1733 				dev->io_queues[HCTX_TYPE_READ];
1734 	} else {
1735 		rw_queues = max;
1736 	}
1737 
1738 	for (i = dev->online_queues; i <= max; i++) {
1739 		bool polled = i > rw_queues;
1740 
1741 		ret = nvme_create_queue(&dev->queues[i], i, polled);
1742 		if (ret)
1743 			break;
1744 	}
1745 
1746 	/*
1747 	 * Ignore failing Create SQ/CQ commands, we can continue with less
1748 	 * than the desired amount of queues, and even a controller without
1749 	 * I/O queues can still be used to issue admin commands.  This might
1750 	 * be useful to upgrade a buggy firmware for example.
1751 	 */
1752 	return ret >= 0 ? 0 : ret;
1753 }
1754 
1755 static ssize_t nvme_cmb_show(struct device *dev,
1756 			     struct device_attribute *attr,
1757 			     char *buf)
1758 {
1759 	struct nvme_dev *ndev = to_nvme_dev(dev_get_drvdata(dev));
1760 
1761 	return scnprintf(buf, PAGE_SIZE, "cmbloc : x%08x\ncmbsz  : x%08x\n",
1762 		       ndev->cmbloc, ndev->cmbsz);
1763 }
1764 static DEVICE_ATTR(cmb, S_IRUGO, nvme_cmb_show, NULL);
1765 
1766 static u64 nvme_cmb_size_unit(struct nvme_dev *dev)
1767 {
1768 	u8 szu = (dev->cmbsz >> NVME_CMBSZ_SZU_SHIFT) & NVME_CMBSZ_SZU_MASK;
1769 
1770 	return 1ULL << (12 + 4 * szu);
1771 }
1772 
1773 static u32 nvme_cmb_size(struct nvme_dev *dev)
1774 {
1775 	return (dev->cmbsz >> NVME_CMBSZ_SZ_SHIFT) & NVME_CMBSZ_SZ_MASK;
1776 }
1777 
1778 static void nvme_map_cmb(struct nvme_dev *dev)
1779 {
1780 	u64 size, offset;
1781 	resource_size_t bar_size;
1782 	struct pci_dev *pdev = to_pci_dev(dev->dev);
1783 	int bar;
1784 
1785 	if (dev->cmb_size)
1786 		return;
1787 
1788 	dev->cmbsz = readl(dev->bar + NVME_REG_CMBSZ);
1789 	if (!dev->cmbsz)
1790 		return;
1791 	dev->cmbloc = readl(dev->bar + NVME_REG_CMBLOC);
1792 
1793 	size = nvme_cmb_size_unit(dev) * nvme_cmb_size(dev);
1794 	offset = nvme_cmb_size_unit(dev) * NVME_CMB_OFST(dev->cmbloc);
1795 	bar = NVME_CMB_BIR(dev->cmbloc);
1796 	bar_size = pci_resource_len(pdev, bar);
1797 
1798 	if (offset > bar_size)
1799 		return;
1800 
1801 	/*
1802 	 * Controllers may support a CMB size larger than their BAR,
1803 	 * for example, due to being behind a bridge. Reduce the CMB to
1804 	 * the reported size of the BAR
1805 	 */
1806 	if (size > bar_size - offset)
1807 		size = bar_size - offset;
1808 
1809 	if (pci_p2pdma_add_resource(pdev, bar, size, offset)) {
1810 		dev_warn(dev->ctrl.device,
1811 			 "failed to register the CMB\n");
1812 		return;
1813 	}
1814 
1815 	dev->cmb_size = size;
1816 	dev->cmb_use_sqes = use_cmb_sqes && (dev->cmbsz & NVME_CMBSZ_SQS);
1817 
1818 	if ((dev->cmbsz & (NVME_CMBSZ_WDS | NVME_CMBSZ_RDS)) ==
1819 			(NVME_CMBSZ_WDS | NVME_CMBSZ_RDS))
1820 		pci_p2pmem_publish(pdev, true);
1821 
1822 	if (sysfs_add_file_to_group(&dev->ctrl.device->kobj,
1823 				    &dev_attr_cmb.attr, NULL))
1824 		dev_warn(dev->ctrl.device,
1825 			 "failed to add sysfs attribute for CMB\n");
1826 }
1827 
1828 static inline void nvme_release_cmb(struct nvme_dev *dev)
1829 {
1830 	if (dev->cmb_size) {
1831 		sysfs_remove_file_from_group(&dev->ctrl.device->kobj,
1832 					     &dev_attr_cmb.attr, NULL);
1833 		dev->cmb_size = 0;
1834 	}
1835 }
1836 
1837 static int nvme_set_host_mem(struct nvme_dev *dev, u32 bits)
1838 {
1839 	u64 dma_addr = dev->host_mem_descs_dma;
1840 	struct nvme_command c;
1841 	int ret;
1842 
1843 	memset(&c, 0, sizeof(c));
1844 	c.features.opcode	= nvme_admin_set_features;
1845 	c.features.fid		= cpu_to_le32(NVME_FEAT_HOST_MEM_BUF);
1846 	c.features.dword11	= cpu_to_le32(bits);
1847 	c.features.dword12	= cpu_to_le32(dev->host_mem_size >>
1848 					      ilog2(dev->ctrl.page_size));
1849 	c.features.dword13	= cpu_to_le32(lower_32_bits(dma_addr));
1850 	c.features.dword14	= cpu_to_le32(upper_32_bits(dma_addr));
1851 	c.features.dword15	= cpu_to_le32(dev->nr_host_mem_descs);
1852 
1853 	ret = nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
1854 	if (ret) {
1855 		dev_warn(dev->ctrl.device,
1856 			 "failed to set host mem (err %d, flags %#x).\n",
1857 			 ret, bits);
1858 	}
1859 	return ret;
1860 }
1861 
1862 static void nvme_free_host_mem(struct nvme_dev *dev)
1863 {
1864 	int i;
1865 
1866 	for (i = 0; i < dev->nr_host_mem_descs; i++) {
1867 		struct nvme_host_mem_buf_desc *desc = &dev->host_mem_descs[i];
1868 		size_t size = le32_to_cpu(desc->size) * dev->ctrl.page_size;
1869 
1870 		dma_free_attrs(dev->dev, size, dev->host_mem_desc_bufs[i],
1871 			       le64_to_cpu(desc->addr),
1872 			       DMA_ATTR_NO_KERNEL_MAPPING | DMA_ATTR_NO_WARN);
1873 	}
1874 
1875 	kfree(dev->host_mem_desc_bufs);
1876 	dev->host_mem_desc_bufs = NULL;
1877 	dma_free_coherent(dev->dev,
1878 			dev->nr_host_mem_descs * sizeof(*dev->host_mem_descs),
1879 			dev->host_mem_descs, dev->host_mem_descs_dma);
1880 	dev->host_mem_descs = NULL;
1881 	dev->nr_host_mem_descs = 0;
1882 }
1883 
1884 static int __nvme_alloc_host_mem(struct nvme_dev *dev, u64 preferred,
1885 		u32 chunk_size)
1886 {
1887 	struct nvme_host_mem_buf_desc *descs;
1888 	u32 max_entries, len;
1889 	dma_addr_t descs_dma;
1890 	int i = 0;
1891 	void **bufs;
1892 	u64 size, tmp;
1893 
1894 	tmp = (preferred + chunk_size - 1);
1895 	do_div(tmp, chunk_size);
1896 	max_entries = tmp;
1897 
1898 	if (dev->ctrl.hmmaxd && dev->ctrl.hmmaxd < max_entries)
1899 		max_entries = dev->ctrl.hmmaxd;
1900 
1901 	descs = dma_alloc_coherent(dev->dev, max_entries * sizeof(*descs),
1902 				   &descs_dma, GFP_KERNEL);
1903 	if (!descs)
1904 		goto out;
1905 
1906 	bufs = kcalloc(max_entries, sizeof(*bufs), GFP_KERNEL);
1907 	if (!bufs)
1908 		goto out_free_descs;
1909 
1910 	for (size = 0; size < preferred && i < max_entries; size += len) {
1911 		dma_addr_t dma_addr;
1912 
1913 		len = min_t(u64, chunk_size, preferred - size);
1914 		bufs[i] = dma_alloc_attrs(dev->dev, len, &dma_addr, GFP_KERNEL,
1915 				DMA_ATTR_NO_KERNEL_MAPPING | DMA_ATTR_NO_WARN);
1916 		if (!bufs[i])
1917 			break;
1918 
1919 		descs[i].addr = cpu_to_le64(dma_addr);
1920 		descs[i].size = cpu_to_le32(len / dev->ctrl.page_size);
1921 		i++;
1922 	}
1923 
1924 	if (!size)
1925 		goto out_free_bufs;
1926 
1927 	dev->nr_host_mem_descs = i;
1928 	dev->host_mem_size = size;
1929 	dev->host_mem_descs = descs;
1930 	dev->host_mem_descs_dma = descs_dma;
1931 	dev->host_mem_desc_bufs = bufs;
1932 	return 0;
1933 
1934 out_free_bufs:
1935 	while (--i >= 0) {
1936 		size_t size = le32_to_cpu(descs[i].size) * dev->ctrl.page_size;
1937 
1938 		dma_free_attrs(dev->dev, size, bufs[i],
1939 			       le64_to_cpu(descs[i].addr),
1940 			       DMA_ATTR_NO_KERNEL_MAPPING | DMA_ATTR_NO_WARN);
1941 	}
1942 
1943 	kfree(bufs);
1944 out_free_descs:
1945 	dma_free_coherent(dev->dev, max_entries * sizeof(*descs), descs,
1946 			descs_dma);
1947 out:
1948 	dev->host_mem_descs = NULL;
1949 	return -ENOMEM;
1950 }
1951 
1952 static int nvme_alloc_host_mem(struct nvme_dev *dev, u64 min, u64 preferred)
1953 {
1954 	u32 chunk_size;
1955 
1956 	/* start big and work our way down */
1957 	for (chunk_size = min_t(u64, preferred, PAGE_SIZE * MAX_ORDER_NR_PAGES);
1958 	     chunk_size >= max_t(u32, dev->ctrl.hmminds * 4096, PAGE_SIZE * 2);
1959 	     chunk_size /= 2) {
1960 		if (!__nvme_alloc_host_mem(dev, preferred, chunk_size)) {
1961 			if (!min || dev->host_mem_size >= min)
1962 				return 0;
1963 			nvme_free_host_mem(dev);
1964 		}
1965 	}
1966 
1967 	return -ENOMEM;
1968 }
1969 
1970 static int nvme_setup_host_mem(struct nvme_dev *dev)
1971 {
1972 	u64 max = (u64)max_host_mem_size_mb * SZ_1M;
1973 	u64 preferred = (u64)dev->ctrl.hmpre * 4096;
1974 	u64 min = (u64)dev->ctrl.hmmin * 4096;
1975 	u32 enable_bits = NVME_HOST_MEM_ENABLE;
1976 	int ret;
1977 
1978 	preferred = min(preferred, max);
1979 	if (min > max) {
1980 		dev_warn(dev->ctrl.device,
1981 			"min host memory (%lld MiB) above limit (%d MiB).\n",
1982 			min >> ilog2(SZ_1M), max_host_mem_size_mb);
1983 		nvme_free_host_mem(dev);
1984 		return 0;
1985 	}
1986 
1987 	/*
1988 	 * If we already have a buffer allocated check if we can reuse it.
1989 	 */
1990 	if (dev->host_mem_descs) {
1991 		if (dev->host_mem_size >= min)
1992 			enable_bits |= NVME_HOST_MEM_RETURN;
1993 		else
1994 			nvme_free_host_mem(dev);
1995 	}
1996 
1997 	if (!dev->host_mem_descs) {
1998 		if (nvme_alloc_host_mem(dev, min, preferred)) {
1999 			dev_warn(dev->ctrl.device,
2000 				"failed to allocate host memory buffer.\n");
2001 			return 0; /* controller must work without HMB */
2002 		}
2003 
2004 		dev_info(dev->ctrl.device,
2005 			"allocated %lld MiB host memory buffer.\n",
2006 			dev->host_mem_size >> ilog2(SZ_1M));
2007 	}
2008 
2009 	ret = nvme_set_host_mem(dev, enable_bits);
2010 	if (ret)
2011 		nvme_free_host_mem(dev);
2012 	return ret;
2013 }
2014 
2015 /*
2016  * nirqs is the number of interrupts available for write and read
2017  * queues. The core already reserved an interrupt for the admin queue.
2018  */
2019 static void nvme_calc_irq_sets(struct irq_affinity *affd, unsigned int nrirqs)
2020 {
2021 	struct nvme_dev *dev = affd->priv;
2022 	unsigned int nr_read_queues;
2023 
2024 	/*
2025 	 * If there is no interupt available for queues, ensure that
2026 	 * the default queue is set to 1. The affinity set size is
2027 	 * also set to one, but the irq core ignores it for this case.
2028 	 *
2029 	 * If only one interrupt is available or 'write_queue' == 0, combine
2030 	 * write and read queues.
2031 	 *
2032 	 * If 'write_queues' > 0, ensure it leaves room for at least one read
2033 	 * queue.
2034 	 */
2035 	if (!nrirqs) {
2036 		nrirqs = 1;
2037 		nr_read_queues = 0;
2038 	} else if (nrirqs == 1 || !write_queues) {
2039 		nr_read_queues = 0;
2040 	} else if (write_queues >= nrirqs) {
2041 		nr_read_queues = 1;
2042 	} else {
2043 		nr_read_queues = nrirqs - write_queues;
2044 	}
2045 
2046 	dev->io_queues[HCTX_TYPE_DEFAULT] = nrirqs - nr_read_queues;
2047 	affd->set_size[HCTX_TYPE_DEFAULT] = nrirqs - nr_read_queues;
2048 	dev->io_queues[HCTX_TYPE_READ] = nr_read_queues;
2049 	affd->set_size[HCTX_TYPE_READ] = nr_read_queues;
2050 	affd->nr_sets = nr_read_queues ? 2 : 1;
2051 }
2052 
2053 static int nvme_setup_irqs(struct nvme_dev *dev, unsigned int nr_io_queues)
2054 {
2055 	struct pci_dev *pdev = to_pci_dev(dev->dev);
2056 	struct irq_affinity affd = {
2057 		.pre_vectors	= 1,
2058 		.calc_sets	= nvme_calc_irq_sets,
2059 		.priv		= dev,
2060 	};
2061 	unsigned int irq_queues, this_p_queues;
2062 	unsigned int nr_cpus = num_possible_cpus();
2063 
2064 	/*
2065 	 * Poll queues don't need interrupts, but we need at least one IO
2066 	 * queue left over for non-polled IO.
2067 	 */
2068 	this_p_queues = poll_queues;
2069 	if (this_p_queues >= nr_io_queues) {
2070 		this_p_queues = nr_io_queues - 1;
2071 		irq_queues = 1;
2072 	} else {
2073 		if (nr_cpus < nr_io_queues - this_p_queues)
2074 			irq_queues = nr_cpus + 1;
2075 		else
2076 			irq_queues = nr_io_queues - this_p_queues + 1;
2077 	}
2078 	dev->io_queues[HCTX_TYPE_POLL] = this_p_queues;
2079 
2080 	/* Initialize for the single interrupt case */
2081 	dev->io_queues[HCTX_TYPE_DEFAULT] = 1;
2082 	dev->io_queues[HCTX_TYPE_READ] = 0;
2083 
2084 	/*
2085 	 * Some Apple controllers require all queues to use the
2086 	 * first vector.
2087 	 */
2088 	if (dev->ctrl.quirks & NVME_QUIRK_SINGLE_VECTOR)
2089 		irq_queues = 1;
2090 
2091 	return pci_alloc_irq_vectors_affinity(pdev, 1, irq_queues,
2092 			      PCI_IRQ_ALL_TYPES | PCI_IRQ_AFFINITY, &affd);
2093 }
2094 
2095 static void nvme_disable_io_queues(struct nvme_dev *dev)
2096 {
2097 	if (__nvme_disable_io_queues(dev, nvme_admin_delete_sq))
2098 		__nvme_disable_io_queues(dev, nvme_admin_delete_cq);
2099 }
2100 
2101 static int nvme_setup_io_queues(struct nvme_dev *dev)
2102 {
2103 	struct nvme_queue *adminq = &dev->queues[0];
2104 	struct pci_dev *pdev = to_pci_dev(dev->dev);
2105 	int result, nr_io_queues;
2106 	unsigned long size;
2107 
2108 	nr_io_queues = max_io_queues();
2109 	result = nvme_set_queue_count(&dev->ctrl, &nr_io_queues);
2110 	if (result < 0)
2111 		return result;
2112 
2113 	if (nr_io_queues == 0)
2114 		return 0;
2115 
2116 	clear_bit(NVMEQ_ENABLED, &adminq->flags);
2117 
2118 	if (dev->cmb_use_sqes) {
2119 		result = nvme_cmb_qdepth(dev, nr_io_queues,
2120 				sizeof(struct nvme_command));
2121 		if (result > 0)
2122 			dev->q_depth = result;
2123 		else
2124 			dev->cmb_use_sqes = false;
2125 	}
2126 
2127 	do {
2128 		size = db_bar_size(dev, nr_io_queues);
2129 		result = nvme_remap_bar(dev, size);
2130 		if (!result)
2131 			break;
2132 		if (!--nr_io_queues)
2133 			return -ENOMEM;
2134 	} while (1);
2135 	adminq->q_db = dev->dbs;
2136 
2137  retry:
2138 	/* Deregister the admin queue's interrupt */
2139 	pci_free_irq(pdev, 0, adminq);
2140 
2141 	/*
2142 	 * If we enable msix early due to not intx, disable it again before
2143 	 * setting up the full range we need.
2144 	 */
2145 	pci_free_irq_vectors(pdev);
2146 
2147 	result = nvme_setup_irqs(dev, nr_io_queues);
2148 	if (result <= 0)
2149 		return -EIO;
2150 
2151 	dev->num_vecs = result;
2152 	result = max(result - 1, 1);
2153 	dev->max_qid = result + dev->io_queues[HCTX_TYPE_POLL];
2154 
2155 	/*
2156 	 * Should investigate if there's a performance win from allocating
2157 	 * more queues than interrupt vectors; it might allow the submission
2158 	 * path to scale better, even if the receive path is limited by the
2159 	 * number of interrupts.
2160 	 */
2161 	result = queue_request_irq(adminq);
2162 	if (result)
2163 		return result;
2164 	set_bit(NVMEQ_ENABLED, &adminq->flags);
2165 
2166 	result = nvme_create_io_queues(dev);
2167 	if (result || dev->online_queues < 2)
2168 		return result;
2169 
2170 	if (dev->online_queues - 1 < dev->max_qid) {
2171 		nr_io_queues = dev->online_queues - 1;
2172 		nvme_disable_io_queues(dev);
2173 		nvme_suspend_io_queues(dev);
2174 		goto retry;
2175 	}
2176 	dev_info(dev->ctrl.device, "%d/%d/%d default/read/poll queues\n",
2177 					dev->io_queues[HCTX_TYPE_DEFAULT],
2178 					dev->io_queues[HCTX_TYPE_READ],
2179 					dev->io_queues[HCTX_TYPE_POLL]);
2180 	return 0;
2181 }
2182 
2183 static void nvme_del_queue_end(struct request *req, blk_status_t error)
2184 {
2185 	struct nvme_queue *nvmeq = req->end_io_data;
2186 
2187 	blk_mq_free_request(req);
2188 	complete(&nvmeq->delete_done);
2189 }
2190 
2191 static void nvme_del_cq_end(struct request *req, blk_status_t error)
2192 {
2193 	struct nvme_queue *nvmeq = req->end_io_data;
2194 
2195 	if (error)
2196 		set_bit(NVMEQ_DELETE_ERROR, &nvmeq->flags);
2197 
2198 	nvme_del_queue_end(req, error);
2199 }
2200 
2201 static int nvme_delete_queue(struct nvme_queue *nvmeq, u8 opcode)
2202 {
2203 	struct request_queue *q = nvmeq->dev->ctrl.admin_q;
2204 	struct request *req;
2205 	struct nvme_command cmd;
2206 
2207 	memset(&cmd, 0, sizeof(cmd));
2208 	cmd.delete_queue.opcode = opcode;
2209 	cmd.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2210 
2211 	req = nvme_alloc_request(q, &cmd, BLK_MQ_REQ_NOWAIT, NVME_QID_ANY);
2212 	if (IS_ERR(req))
2213 		return PTR_ERR(req);
2214 
2215 	req->timeout = ADMIN_TIMEOUT;
2216 	req->end_io_data = nvmeq;
2217 
2218 	init_completion(&nvmeq->delete_done);
2219 	blk_execute_rq_nowait(q, NULL, req, false,
2220 			opcode == nvme_admin_delete_cq ?
2221 				nvme_del_cq_end : nvme_del_queue_end);
2222 	return 0;
2223 }
2224 
2225 static bool __nvme_disable_io_queues(struct nvme_dev *dev, u8 opcode)
2226 {
2227 	int nr_queues = dev->online_queues - 1, sent = 0;
2228 	unsigned long timeout;
2229 
2230  retry:
2231 	timeout = ADMIN_TIMEOUT;
2232 	while (nr_queues > 0) {
2233 		if (nvme_delete_queue(&dev->queues[nr_queues], opcode))
2234 			break;
2235 		nr_queues--;
2236 		sent++;
2237 	}
2238 	while (sent) {
2239 		struct nvme_queue *nvmeq = &dev->queues[nr_queues + sent];
2240 
2241 		timeout = wait_for_completion_io_timeout(&nvmeq->delete_done,
2242 				timeout);
2243 		if (timeout == 0)
2244 			return false;
2245 
2246 		/* handle any remaining CQEs */
2247 		if (opcode == nvme_admin_delete_cq &&
2248 		    !test_bit(NVMEQ_DELETE_ERROR, &nvmeq->flags))
2249 			nvme_poll_irqdisable(nvmeq, -1);
2250 
2251 		sent--;
2252 		if (nr_queues)
2253 			goto retry;
2254 	}
2255 	return true;
2256 }
2257 
2258 /*
2259  * return error value only when tagset allocation failed
2260  */
2261 static int nvme_dev_add(struct nvme_dev *dev)
2262 {
2263 	int ret;
2264 
2265 	if (!dev->ctrl.tagset) {
2266 		dev->tagset.ops = &nvme_mq_ops;
2267 		dev->tagset.nr_hw_queues = dev->online_queues - 1;
2268 		dev->tagset.nr_maps = 2; /* default + read */
2269 		if (dev->io_queues[HCTX_TYPE_POLL])
2270 			dev->tagset.nr_maps++;
2271 		dev->tagset.timeout = NVME_IO_TIMEOUT;
2272 		dev->tagset.numa_node = dev_to_node(dev->dev);
2273 		dev->tagset.queue_depth =
2274 				min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
2275 		dev->tagset.cmd_size = sizeof(struct nvme_iod);
2276 		dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2277 		dev->tagset.driver_data = dev;
2278 
2279 		ret = blk_mq_alloc_tag_set(&dev->tagset);
2280 		if (ret) {
2281 			dev_warn(dev->ctrl.device,
2282 				"IO queues tagset allocation failed %d\n", ret);
2283 			return ret;
2284 		}
2285 		dev->ctrl.tagset = &dev->tagset;
2286 	} else {
2287 		blk_mq_update_nr_hw_queues(&dev->tagset, dev->online_queues - 1);
2288 
2289 		/* Free previously allocated queues that are no longer usable */
2290 		nvme_free_queues(dev, dev->online_queues);
2291 	}
2292 
2293 	nvme_dbbuf_set(dev);
2294 	return 0;
2295 }
2296 
2297 static int nvme_pci_enable(struct nvme_dev *dev)
2298 {
2299 	int result = -ENOMEM;
2300 	struct pci_dev *pdev = to_pci_dev(dev->dev);
2301 
2302 	if (pci_enable_device_mem(pdev))
2303 		return result;
2304 
2305 	pci_set_master(pdev);
2306 
2307 	if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)))
2308 		goto disable;
2309 
2310 	if (readl(dev->bar + NVME_REG_CSTS) == -1) {
2311 		result = -ENODEV;
2312 		goto disable;
2313 	}
2314 
2315 	/*
2316 	 * Some devices and/or platforms don't advertise or work with INTx
2317 	 * interrupts. Pre-enable a single MSIX or MSI vec for setup. We'll
2318 	 * adjust this later.
2319 	 */
2320 	result = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_ALL_TYPES);
2321 	if (result < 0)
2322 		return result;
2323 
2324 	dev->ctrl.cap = lo_hi_readq(dev->bar + NVME_REG_CAP);
2325 
2326 	dev->q_depth = min_t(int, NVME_CAP_MQES(dev->ctrl.cap) + 1,
2327 				io_queue_depth);
2328 	dev->ctrl.sqsize = dev->q_depth - 1; /* 0's based queue depth */
2329 	dev->db_stride = 1 << NVME_CAP_STRIDE(dev->ctrl.cap);
2330 	dev->dbs = dev->bar + 4096;
2331 
2332 	/*
2333 	 * Some Apple controllers require a non-standard SQE size.
2334 	 * Interestingly they also seem to ignore the CC:IOSQES register
2335 	 * so we don't bother updating it here.
2336 	 */
2337 	if (dev->ctrl.quirks & NVME_QUIRK_128_BYTES_SQES)
2338 		dev->io_sqes = 7;
2339 	else
2340 		dev->io_sqes = NVME_NVM_IOSQES;
2341 
2342 	/*
2343 	 * Temporary fix for the Apple controller found in the MacBook8,1 and
2344 	 * some MacBook7,1 to avoid controller resets and data loss.
2345 	 */
2346 	if (pdev->vendor == PCI_VENDOR_ID_APPLE && pdev->device == 0x2001) {
2347 		dev->q_depth = 2;
2348 		dev_warn(dev->ctrl.device, "detected Apple NVMe controller, "
2349 			"set queue depth=%u to work around controller resets\n",
2350 			dev->q_depth);
2351 	} else if (pdev->vendor == PCI_VENDOR_ID_SAMSUNG &&
2352 		   (pdev->device == 0xa821 || pdev->device == 0xa822) &&
2353 		   NVME_CAP_MQES(dev->ctrl.cap) == 0) {
2354 		dev->q_depth = 64;
2355 		dev_err(dev->ctrl.device, "detected PM1725 NVMe controller, "
2356                         "set queue depth=%u\n", dev->q_depth);
2357 	}
2358 
2359 	nvme_map_cmb(dev);
2360 
2361 	pci_enable_pcie_error_reporting(pdev);
2362 	pci_save_state(pdev);
2363 	return 0;
2364 
2365  disable:
2366 	pci_disable_device(pdev);
2367 	return result;
2368 }
2369 
2370 static void nvme_dev_unmap(struct nvme_dev *dev)
2371 {
2372 	if (dev->bar)
2373 		iounmap(dev->bar);
2374 	pci_release_mem_regions(to_pci_dev(dev->dev));
2375 }
2376 
2377 static void nvme_pci_disable(struct nvme_dev *dev)
2378 {
2379 	struct pci_dev *pdev = to_pci_dev(dev->dev);
2380 
2381 	pci_free_irq_vectors(pdev);
2382 
2383 	if (pci_is_enabled(pdev)) {
2384 		pci_disable_pcie_error_reporting(pdev);
2385 		pci_disable_device(pdev);
2386 	}
2387 }
2388 
2389 static void nvme_dev_disable(struct nvme_dev *dev, bool shutdown)
2390 {
2391 	bool dead = true, freeze = false;
2392 	struct pci_dev *pdev = to_pci_dev(dev->dev);
2393 
2394 	mutex_lock(&dev->shutdown_lock);
2395 	if (pci_is_enabled(pdev)) {
2396 		u32 csts = readl(dev->bar + NVME_REG_CSTS);
2397 
2398 		if (dev->ctrl.state == NVME_CTRL_LIVE ||
2399 		    dev->ctrl.state == NVME_CTRL_RESETTING) {
2400 			freeze = true;
2401 			nvme_start_freeze(&dev->ctrl);
2402 		}
2403 		dead = !!((csts & NVME_CSTS_CFS) || !(csts & NVME_CSTS_RDY) ||
2404 			pdev->error_state  != pci_channel_io_normal);
2405 	}
2406 
2407 	/*
2408 	 * Give the controller a chance to complete all entered requests if
2409 	 * doing a safe shutdown.
2410 	 */
2411 	if (!dead && shutdown && freeze)
2412 		nvme_wait_freeze_timeout(&dev->ctrl, NVME_IO_TIMEOUT);
2413 
2414 	nvme_stop_queues(&dev->ctrl);
2415 
2416 	if (!dead && dev->ctrl.queue_count > 0) {
2417 		nvme_disable_io_queues(dev);
2418 		nvme_disable_admin_queue(dev, shutdown);
2419 	}
2420 	nvme_suspend_io_queues(dev);
2421 	nvme_suspend_queue(&dev->queues[0]);
2422 	nvme_pci_disable(dev);
2423 
2424 	blk_mq_tagset_busy_iter(&dev->tagset, nvme_cancel_request, &dev->ctrl);
2425 	blk_mq_tagset_busy_iter(&dev->admin_tagset, nvme_cancel_request, &dev->ctrl);
2426 	blk_mq_tagset_wait_completed_request(&dev->tagset);
2427 	blk_mq_tagset_wait_completed_request(&dev->admin_tagset);
2428 
2429 	/*
2430 	 * The driver will not be starting up queues again if shutting down so
2431 	 * must flush all entered requests to their failed completion to avoid
2432 	 * deadlocking blk-mq hot-cpu notifier.
2433 	 */
2434 	if (shutdown) {
2435 		nvme_start_queues(&dev->ctrl);
2436 		if (dev->ctrl.admin_q && !blk_queue_dying(dev->ctrl.admin_q))
2437 			blk_mq_unquiesce_queue(dev->ctrl.admin_q);
2438 	}
2439 	mutex_unlock(&dev->shutdown_lock);
2440 }
2441 
2442 static int nvme_setup_prp_pools(struct nvme_dev *dev)
2443 {
2444 	dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
2445 						PAGE_SIZE, PAGE_SIZE, 0);
2446 	if (!dev->prp_page_pool)
2447 		return -ENOMEM;
2448 
2449 	/* Optimisation for I/Os between 4k and 128k */
2450 	dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
2451 						256, 256, 0);
2452 	if (!dev->prp_small_pool) {
2453 		dma_pool_destroy(dev->prp_page_pool);
2454 		return -ENOMEM;
2455 	}
2456 	return 0;
2457 }
2458 
2459 static void nvme_release_prp_pools(struct nvme_dev *dev)
2460 {
2461 	dma_pool_destroy(dev->prp_page_pool);
2462 	dma_pool_destroy(dev->prp_small_pool);
2463 }
2464 
2465 static void nvme_pci_free_ctrl(struct nvme_ctrl *ctrl)
2466 {
2467 	struct nvme_dev *dev = to_nvme_dev(ctrl);
2468 
2469 	nvme_dbbuf_dma_free(dev);
2470 	put_device(dev->dev);
2471 	if (dev->tagset.tags)
2472 		blk_mq_free_tag_set(&dev->tagset);
2473 	if (dev->ctrl.admin_q)
2474 		blk_put_queue(dev->ctrl.admin_q);
2475 	kfree(dev->queues);
2476 	free_opal_dev(dev->ctrl.opal_dev);
2477 	mempool_destroy(dev->iod_mempool);
2478 	kfree(dev);
2479 }
2480 
2481 static void nvme_remove_dead_ctrl(struct nvme_dev *dev)
2482 {
2483 	nvme_get_ctrl(&dev->ctrl);
2484 	nvme_dev_disable(dev, false);
2485 	nvme_kill_queues(&dev->ctrl);
2486 	if (!queue_work(nvme_wq, &dev->remove_work))
2487 		nvme_put_ctrl(&dev->ctrl);
2488 }
2489 
2490 static void nvme_reset_work(struct work_struct *work)
2491 {
2492 	struct nvme_dev *dev =
2493 		container_of(work, struct nvme_dev, ctrl.reset_work);
2494 	bool was_suspend = !!(dev->ctrl.ctrl_config & NVME_CC_SHN_NORMAL);
2495 	int result;
2496 	enum nvme_ctrl_state new_state = NVME_CTRL_LIVE;
2497 
2498 	if (WARN_ON(dev->ctrl.state != NVME_CTRL_RESETTING)) {
2499 		result = -ENODEV;
2500 		goto out;
2501 	}
2502 
2503 	/*
2504 	 * If we're called to reset a live controller first shut it down before
2505 	 * moving on.
2506 	 */
2507 	if (dev->ctrl.ctrl_config & NVME_CC_ENABLE)
2508 		nvme_dev_disable(dev, false);
2509 	nvme_sync_queues(&dev->ctrl);
2510 
2511 	mutex_lock(&dev->shutdown_lock);
2512 	result = nvme_pci_enable(dev);
2513 	if (result)
2514 		goto out_unlock;
2515 
2516 	result = nvme_pci_configure_admin_queue(dev);
2517 	if (result)
2518 		goto out_unlock;
2519 
2520 	result = nvme_alloc_admin_tags(dev);
2521 	if (result)
2522 		goto out_unlock;
2523 
2524 	/*
2525 	 * Limit the max command size to prevent iod->sg allocations going
2526 	 * over a single page.
2527 	 */
2528 	dev->ctrl.max_hw_sectors = min_t(u32,
2529 		NVME_MAX_KB_SZ << 1, dma_max_mapping_size(dev->dev) >> 9);
2530 	dev->ctrl.max_segments = NVME_MAX_SEGS;
2531 
2532 	/*
2533 	 * Don't limit the IOMMU merged segment size.
2534 	 */
2535 	dma_set_max_seg_size(dev->dev, 0xffffffff);
2536 
2537 	mutex_unlock(&dev->shutdown_lock);
2538 
2539 	/*
2540 	 * Introduce CONNECTING state from nvme-fc/rdma transports to mark the
2541 	 * initializing procedure here.
2542 	 */
2543 	if (!nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_CONNECTING)) {
2544 		dev_warn(dev->ctrl.device,
2545 			"failed to mark controller CONNECTING\n");
2546 		result = -EBUSY;
2547 		goto out;
2548 	}
2549 
2550 	result = nvme_init_identify(&dev->ctrl);
2551 	if (result)
2552 		goto out;
2553 
2554 	if (dev->ctrl.oacs & NVME_CTRL_OACS_SEC_SUPP) {
2555 		if (!dev->ctrl.opal_dev)
2556 			dev->ctrl.opal_dev =
2557 				init_opal_dev(&dev->ctrl, &nvme_sec_submit);
2558 		else if (was_suspend)
2559 			opal_unlock_from_suspend(dev->ctrl.opal_dev);
2560 	} else {
2561 		free_opal_dev(dev->ctrl.opal_dev);
2562 		dev->ctrl.opal_dev = NULL;
2563 	}
2564 
2565 	if (dev->ctrl.oacs & NVME_CTRL_OACS_DBBUF_SUPP) {
2566 		result = nvme_dbbuf_dma_alloc(dev);
2567 		if (result)
2568 			dev_warn(dev->dev,
2569 				 "unable to allocate dma for dbbuf\n");
2570 	}
2571 
2572 	if (dev->ctrl.hmpre) {
2573 		result = nvme_setup_host_mem(dev);
2574 		if (result < 0)
2575 			goto out;
2576 	}
2577 
2578 	result = nvme_setup_io_queues(dev);
2579 	if (result)
2580 		goto out;
2581 
2582 	/*
2583 	 * Keep the controller around but remove all namespaces if we don't have
2584 	 * any working I/O queue.
2585 	 */
2586 	if (dev->online_queues < 2) {
2587 		dev_warn(dev->ctrl.device, "IO queues not created\n");
2588 		nvme_kill_queues(&dev->ctrl);
2589 		nvme_remove_namespaces(&dev->ctrl);
2590 		new_state = NVME_CTRL_ADMIN_ONLY;
2591 	} else {
2592 		nvme_start_queues(&dev->ctrl);
2593 		nvme_wait_freeze(&dev->ctrl);
2594 		/* hit this only when allocate tagset fails */
2595 		if (nvme_dev_add(dev))
2596 			new_state = NVME_CTRL_ADMIN_ONLY;
2597 		nvme_unfreeze(&dev->ctrl);
2598 	}
2599 
2600 	/*
2601 	 * If only admin queue live, keep it to do further investigation or
2602 	 * recovery.
2603 	 */
2604 	if (!nvme_change_ctrl_state(&dev->ctrl, new_state)) {
2605 		dev_warn(dev->ctrl.device,
2606 			"failed to mark controller state %d\n", new_state);
2607 		result = -ENODEV;
2608 		goto out;
2609 	}
2610 
2611 	nvme_start_ctrl(&dev->ctrl);
2612 	return;
2613 
2614  out_unlock:
2615 	mutex_unlock(&dev->shutdown_lock);
2616  out:
2617 	if (result)
2618 		dev_warn(dev->ctrl.device,
2619 			 "Removing after probe failure status: %d\n", result);
2620 	nvme_remove_dead_ctrl(dev);
2621 }
2622 
2623 static void nvme_remove_dead_ctrl_work(struct work_struct *work)
2624 {
2625 	struct nvme_dev *dev = container_of(work, struct nvme_dev, remove_work);
2626 	struct pci_dev *pdev = to_pci_dev(dev->dev);
2627 
2628 	if (pci_get_drvdata(pdev))
2629 		device_release_driver(&pdev->dev);
2630 	nvme_put_ctrl(&dev->ctrl);
2631 }
2632 
2633 static int nvme_pci_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val)
2634 {
2635 	*val = readl(to_nvme_dev(ctrl)->bar + off);
2636 	return 0;
2637 }
2638 
2639 static int nvme_pci_reg_write32(struct nvme_ctrl *ctrl, u32 off, u32 val)
2640 {
2641 	writel(val, to_nvme_dev(ctrl)->bar + off);
2642 	return 0;
2643 }
2644 
2645 static int nvme_pci_reg_read64(struct nvme_ctrl *ctrl, u32 off, u64 *val)
2646 {
2647 	*val = readq(to_nvme_dev(ctrl)->bar + off);
2648 	return 0;
2649 }
2650 
2651 static int nvme_pci_get_address(struct nvme_ctrl *ctrl, char *buf, int size)
2652 {
2653 	struct pci_dev *pdev = to_pci_dev(to_nvme_dev(ctrl)->dev);
2654 
2655 	return snprintf(buf, size, "%s", dev_name(&pdev->dev));
2656 }
2657 
2658 static const struct nvme_ctrl_ops nvme_pci_ctrl_ops = {
2659 	.name			= "pcie",
2660 	.module			= THIS_MODULE,
2661 	.flags			= NVME_F_METADATA_SUPPORTED |
2662 				  NVME_F_PCI_P2PDMA,
2663 	.reg_read32		= nvme_pci_reg_read32,
2664 	.reg_write32		= nvme_pci_reg_write32,
2665 	.reg_read64		= nvme_pci_reg_read64,
2666 	.free_ctrl		= nvme_pci_free_ctrl,
2667 	.submit_async_event	= nvme_pci_submit_async_event,
2668 	.get_address		= nvme_pci_get_address,
2669 };
2670 
2671 static int nvme_dev_map(struct nvme_dev *dev)
2672 {
2673 	struct pci_dev *pdev = to_pci_dev(dev->dev);
2674 
2675 	if (pci_request_mem_regions(pdev, "nvme"))
2676 		return -ENODEV;
2677 
2678 	if (nvme_remap_bar(dev, NVME_REG_DBS + 4096))
2679 		goto release;
2680 
2681 	return 0;
2682   release:
2683 	pci_release_mem_regions(pdev);
2684 	return -ENODEV;
2685 }
2686 
2687 static unsigned long check_vendor_combination_bug(struct pci_dev *pdev)
2688 {
2689 	if (pdev->vendor == 0x144d && pdev->device == 0xa802) {
2690 		/*
2691 		 * Several Samsung devices seem to drop off the PCIe bus
2692 		 * randomly when APST is on and uses the deepest sleep state.
2693 		 * This has been observed on a Samsung "SM951 NVMe SAMSUNG
2694 		 * 256GB", a "PM951 NVMe SAMSUNG 512GB", and a "Samsung SSD
2695 		 * 950 PRO 256GB", but it seems to be restricted to two Dell
2696 		 * laptops.
2697 		 */
2698 		if (dmi_match(DMI_SYS_VENDOR, "Dell Inc.") &&
2699 		    (dmi_match(DMI_PRODUCT_NAME, "XPS 15 9550") ||
2700 		     dmi_match(DMI_PRODUCT_NAME, "Precision 5510")))
2701 			return NVME_QUIRK_NO_DEEPEST_PS;
2702 	} else if (pdev->vendor == 0x144d && pdev->device == 0xa804) {
2703 		/*
2704 		 * Samsung SSD 960 EVO drops off the PCIe bus after system
2705 		 * suspend on a Ryzen board, ASUS PRIME B350M-A, as well as
2706 		 * within few minutes after bootup on a Coffee Lake board -
2707 		 * ASUS PRIME Z370-A
2708 		 */
2709 		if (dmi_match(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC.") &&
2710 		    (dmi_match(DMI_BOARD_NAME, "PRIME B350M-A") ||
2711 		     dmi_match(DMI_BOARD_NAME, "PRIME Z370-A")))
2712 			return NVME_QUIRK_NO_APST;
2713 	}
2714 
2715 	return 0;
2716 }
2717 
2718 static void nvme_async_probe(void *data, async_cookie_t cookie)
2719 {
2720 	struct nvme_dev *dev = data;
2721 
2722 	nvme_reset_ctrl_sync(&dev->ctrl);
2723 	flush_work(&dev->ctrl.scan_work);
2724 	nvme_put_ctrl(&dev->ctrl);
2725 }
2726 
2727 static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2728 {
2729 	int node, result = -ENOMEM;
2730 	struct nvme_dev *dev;
2731 	unsigned long quirks = id->driver_data;
2732 	size_t alloc_size;
2733 
2734 	node = dev_to_node(&pdev->dev);
2735 	if (node == NUMA_NO_NODE)
2736 		set_dev_node(&pdev->dev, first_memory_node);
2737 
2738 	dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
2739 	if (!dev)
2740 		return -ENOMEM;
2741 
2742 	dev->queues = kcalloc_node(max_queue_count(), sizeof(struct nvme_queue),
2743 					GFP_KERNEL, node);
2744 	if (!dev->queues)
2745 		goto free;
2746 
2747 	dev->dev = get_device(&pdev->dev);
2748 	pci_set_drvdata(pdev, dev);
2749 
2750 	result = nvme_dev_map(dev);
2751 	if (result)
2752 		goto put_pci;
2753 
2754 	INIT_WORK(&dev->ctrl.reset_work, nvme_reset_work);
2755 	INIT_WORK(&dev->remove_work, nvme_remove_dead_ctrl_work);
2756 	mutex_init(&dev->shutdown_lock);
2757 
2758 	result = nvme_setup_prp_pools(dev);
2759 	if (result)
2760 		goto unmap;
2761 
2762 	quirks |= check_vendor_combination_bug(pdev);
2763 
2764 	/*
2765 	 * Double check that our mempool alloc size will cover the biggest
2766 	 * command we support.
2767 	 */
2768 	alloc_size = nvme_pci_iod_alloc_size(dev, NVME_MAX_KB_SZ,
2769 						NVME_MAX_SEGS, true);
2770 	WARN_ON_ONCE(alloc_size > PAGE_SIZE);
2771 
2772 	dev->iod_mempool = mempool_create_node(1, mempool_kmalloc,
2773 						mempool_kfree,
2774 						(void *) alloc_size,
2775 						GFP_KERNEL, node);
2776 	if (!dev->iod_mempool) {
2777 		result = -ENOMEM;
2778 		goto release_pools;
2779 	}
2780 
2781 	result = nvme_init_ctrl(&dev->ctrl, &pdev->dev, &nvme_pci_ctrl_ops,
2782 			quirks);
2783 	if (result)
2784 		goto release_mempool;
2785 
2786 	dev_info(dev->ctrl.device, "pci function %s\n", dev_name(&pdev->dev));
2787 
2788 	nvme_get_ctrl(&dev->ctrl);
2789 	async_schedule(nvme_async_probe, dev);
2790 
2791 	return 0;
2792 
2793  release_mempool:
2794 	mempool_destroy(dev->iod_mempool);
2795  release_pools:
2796 	nvme_release_prp_pools(dev);
2797  unmap:
2798 	nvme_dev_unmap(dev);
2799  put_pci:
2800 	put_device(dev->dev);
2801  free:
2802 	kfree(dev->queues);
2803 	kfree(dev);
2804 	return result;
2805 }
2806 
2807 static void nvme_reset_prepare(struct pci_dev *pdev)
2808 {
2809 	struct nvme_dev *dev = pci_get_drvdata(pdev);
2810 	nvme_dev_disable(dev, false);
2811 }
2812 
2813 static void nvme_reset_done(struct pci_dev *pdev)
2814 {
2815 	struct nvme_dev *dev = pci_get_drvdata(pdev);
2816 	nvme_reset_ctrl_sync(&dev->ctrl);
2817 }
2818 
2819 static void nvme_shutdown(struct pci_dev *pdev)
2820 {
2821 	struct nvme_dev *dev = pci_get_drvdata(pdev);
2822 	nvme_dev_disable(dev, true);
2823 }
2824 
2825 /*
2826  * The driver's remove may be called on a device in a partially initialized
2827  * state. This function must not have any dependencies on the device state in
2828  * order to proceed.
2829  */
2830 static void nvme_remove(struct pci_dev *pdev)
2831 {
2832 	struct nvme_dev *dev = pci_get_drvdata(pdev);
2833 
2834 	nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DELETING);
2835 	pci_set_drvdata(pdev, NULL);
2836 
2837 	if (!pci_device_is_present(pdev)) {
2838 		nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DEAD);
2839 		nvme_dev_disable(dev, true);
2840 		nvme_dev_remove_admin(dev);
2841 	}
2842 
2843 	flush_work(&dev->ctrl.reset_work);
2844 	nvme_stop_ctrl(&dev->ctrl);
2845 	nvme_remove_namespaces(&dev->ctrl);
2846 	nvme_dev_disable(dev, true);
2847 	nvme_release_cmb(dev);
2848 	nvme_free_host_mem(dev);
2849 	nvme_dev_remove_admin(dev);
2850 	nvme_free_queues(dev, 0);
2851 	nvme_uninit_ctrl(&dev->ctrl);
2852 	nvme_release_prp_pools(dev);
2853 	nvme_dev_unmap(dev);
2854 	nvme_put_ctrl(&dev->ctrl);
2855 }
2856 
2857 #ifdef CONFIG_PM_SLEEP
2858 static int nvme_get_power_state(struct nvme_ctrl *ctrl, u32 *ps)
2859 {
2860 	return nvme_get_features(ctrl, NVME_FEAT_POWER_MGMT, 0, NULL, 0, ps);
2861 }
2862 
2863 static int nvme_set_power_state(struct nvme_ctrl *ctrl, u32 ps)
2864 {
2865 	return nvme_set_features(ctrl, NVME_FEAT_POWER_MGMT, ps, NULL, 0, NULL);
2866 }
2867 
2868 static int nvme_resume(struct device *dev)
2869 {
2870 	struct nvme_dev *ndev = pci_get_drvdata(to_pci_dev(dev));
2871 	struct nvme_ctrl *ctrl = &ndev->ctrl;
2872 
2873 	if (pm_resume_via_firmware() || !ctrl->npss ||
2874 	    nvme_set_power_state(ctrl, ndev->last_ps) != 0)
2875 		nvme_reset_ctrl(ctrl);
2876 	return 0;
2877 }
2878 
2879 static int nvme_suspend(struct device *dev)
2880 {
2881 	struct pci_dev *pdev = to_pci_dev(dev);
2882 	struct nvme_dev *ndev = pci_get_drvdata(pdev);
2883 	struct nvme_ctrl *ctrl = &ndev->ctrl;
2884 	int ret = -EBUSY;
2885 
2886 	/*
2887 	 * The platform does not remove power for a kernel managed suspend so
2888 	 * use host managed nvme power settings for lowest idle power if
2889 	 * possible. This should have quicker resume latency than a full device
2890 	 * shutdown.  But if the firmware is involved after the suspend or the
2891 	 * device does not support any non-default power states, shut down the
2892 	 * device fully.
2893 	 */
2894 	if (pm_suspend_via_firmware() || !ctrl->npss) {
2895 		nvme_dev_disable(ndev, true);
2896 		return 0;
2897 	}
2898 
2899 	nvme_start_freeze(ctrl);
2900 	nvme_wait_freeze(ctrl);
2901 	nvme_sync_queues(ctrl);
2902 
2903 	if (ctrl->state != NVME_CTRL_LIVE &&
2904 	    ctrl->state != NVME_CTRL_ADMIN_ONLY)
2905 		goto unfreeze;
2906 
2907 	ndev->last_ps = 0;
2908 	ret = nvme_get_power_state(ctrl, &ndev->last_ps);
2909 	if (ret < 0)
2910 		goto unfreeze;
2911 
2912 	ret = nvme_set_power_state(ctrl, ctrl->npss);
2913 	if (ret < 0)
2914 		goto unfreeze;
2915 
2916 	if (ret) {
2917 		/*
2918 		 * Clearing npss forces a controller reset on resume. The
2919 		 * correct value will be resdicovered then.
2920 		 */
2921 		nvme_dev_disable(ndev, true);
2922 		ctrl->npss = 0;
2923 		ret = 0;
2924 		goto unfreeze;
2925 	}
2926 	/*
2927 	 * A saved state prevents pci pm from generically controlling the
2928 	 * device's power. If we're using protocol specific settings, we don't
2929 	 * want pci interfering.
2930 	 */
2931 	pci_save_state(pdev);
2932 unfreeze:
2933 	nvme_unfreeze(ctrl);
2934 	return ret;
2935 }
2936 
2937 static int nvme_simple_suspend(struct device *dev)
2938 {
2939 	struct nvme_dev *ndev = pci_get_drvdata(to_pci_dev(dev));
2940 
2941 	nvme_dev_disable(ndev, true);
2942 	return 0;
2943 }
2944 
2945 static int nvme_simple_resume(struct device *dev)
2946 {
2947 	struct pci_dev *pdev = to_pci_dev(dev);
2948 	struct nvme_dev *ndev = pci_get_drvdata(pdev);
2949 
2950 	nvme_reset_ctrl(&ndev->ctrl);
2951 	return 0;
2952 }
2953 
2954 static const struct dev_pm_ops nvme_dev_pm_ops = {
2955 	.suspend	= nvme_suspend,
2956 	.resume		= nvme_resume,
2957 	.freeze		= nvme_simple_suspend,
2958 	.thaw		= nvme_simple_resume,
2959 	.poweroff	= nvme_simple_suspend,
2960 	.restore	= nvme_simple_resume,
2961 };
2962 #endif /* CONFIG_PM_SLEEP */
2963 
2964 static pci_ers_result_t nvme_error_detected(struct pci_dev *pdev,
2965 						pci_channel_state_t state)
2966 {
2967 	struct nvme_dev *dev = pci_get_drvdata(pdev);
2968 
2969 	/*
2970 	 * A frozen channel requires a reset. When detected, this method will
2971 	 * shutdown the controller to quiesce. The controller will be restarted
2972 	 * after the slot reset through driver's slot_reset callback.
2973 	 */
2974 	switch (state) {
2975 	case pci_channel_io_normal:
2976 		return PCI_ERS_RESULT_CAN_RECOVER;
2977 	case pci_channel_io_frozen:
2978 		dev_warn(dev->ctrl.device,
2979 			"frozen state error detected, reset controller\n");
2980 		nvme_dev_disable(dev, false);
2981 		return PCI_ERS_RESULT_NEED_RESET;
2982 	case pci_channel_io_perm_failure:
2983 		dev_warn(dev->ctrl.device,
2984 			"failure state error detected, request disconnect\n");
2985 		return PCI_ERS_RESULT_DISCONNECT;
2986 	}
2987 	return PCI_ERS_RESULT_NEED_RESET;
2988 }
2989 
2990 static pci_ers_result_t nvme_slot_reset(struct pci_dev *pdev)
2991 {
2992 	struct nvme_dev *dev = pci_get_drvdata(pdev);
2993 
2994 	dev_info(dev->ctrl.device, "restart after slot reset\n");
2995 	pci_restore_state(pdev);
2996 	nvme_reset_ctrl(&dev->ctrl);
2997 	return PCI_ERS_RESULT_RECOVERED;
2998 }
2999 
3000 static void nvme_error_resume(struct pci_dev *pdev)
3001 {
3002 	struct nvme_dev *dev = pci_get_drvdata(pdev);
3003 
3004 	flush_work(&dev->ctrl.reset_work);
3005 }
3006 
3007 static const struct pci_error_handlers nvme_err_handler = {
3008 	.error_detected	= nvme_error_detected,
3009 	.slot_reset	= nvme_slot_reset,
3010 	.resume		= nvme_error_resume,
3011 	.reset_prepare	= nvme_reset_prepare,
3012 	.reset_done	= nvme_reset_done,
3013 };
3014 
3015 static const struct pci_device_id nvme_id_table[] = {
3016 	{ PCI_VDEVICE(INTEL, 0x0953),
3017 		.driver_data = NVME_QUIRK_STRIPE_SIZE |
3018 				NVME_QUIRK_DEALLOCATE_ZEROES, },
3019 	{ PCI_VDEVICE(INTEL, 0x0a53),
3020 		.driver_data = NVME_QUIRK_STRIPE_SIZE |
3021 				NVME_QUIRK_DEALLOCATE_ZEROES, },
3022 	{ PCI_VDEVICE(INTEL, 0x0a54),
3023 		.driver_data = NVME_QUIRK_STRIPE_SIZE |
3024 				NVME_QUIRK_DEALLOCATE_ZEROES, },
3025 	{ PCI_VDEVICE(INTEL, 0x0a55),
3026 		.driver_data = NVME_QUIRK_STRIPE_SIZE |
3027 				NVME_QUIRK_DEALLOCATE_ZEROES, },
3028 	{ PCI_VDEVICE(INTEL, 0xf1a5),	/* Intel 600P/P3100 */
3029 		.driver_data = NVME_QUIRK_NO_DEEPEST_PS |
3030 				NVME_QUIRK_MEDIUM_PRIO_SQ },
3031 	{ PCI_VDEVICE(INTEL, 0xf1a6),	/* Intel 760p/Pro 7600p */
3032 		.driver_data = NVME_QUIRK_IGNORE_DEV_SUBNQN, },
3033 	{ PCI_VDEVICE(INTEL, 0x5845),	/* Qemu emulated controller */
3034 		.driver_data = NVME_QUIRK_IDENTIFY_CNS |
3035 				NVME_QUIRK_DISABLE_WRITE_ZEROES, },
3036 	{ PCI_DEVICE(0x1bb1, 0x0100),   /* Seagate Nytro Flash Storage */
3037 		.driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
3038 	{ PCI_DEVICE(0x1c58, 0x0003),	/* HGST adapter */
3039 		.driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
3040 	{ PCI_DEVICE(0x1c58, 0x0023),	/* WDC SN200 adapter */
3041 		.driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
3042 	{ PCI_DEVICE(0x1c5f, 0x0540),	/* Memblaze Pblaze4 adapter */
3043 		.driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
3044 	{ PCI_DEVICE(0x144d, 0xa821),   /* Samsung PM1725 */
3045 		.driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
3046 	{ PCI_DEVICE(0x144d, 0xa822),   /* Samsung PM1725a */
3047 		.driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
3048 	{ PCI_DEVICE(0x1d1d, 0x1f1f),	/* LighNVM qemu device */
3049 		.driver_data = NVME_QUIRK_LIGHTNVM, },
3050 	{ PCI_DEVICE(0x1d1d, 0x2807),	/* CNEX WL */
3051 		.driver_data = NVME_QUIRK_LIGHTNVM, },
3052 	{ PCI_DEVICE(0x1d1d, 0x2601),	/* CNEX Granby */
3053 		.driver_data = NVME_QUIRK_LIGHTNVM, },
3054 	{ PCI_DEVICE(0x10ec, 0x5762),   /* ADATA SX6000LNP */
3055 		.driver_data = NVME_QUIRK_IGNORE_DEV_SUBNQN, },
3056 	{ PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
3057 	{ PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
3058 	{ PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2003) },
3059 	{ PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2005),
3060 		.driver_data = NVME_QUIRK_SINGLE_VECTOR |
3061 				NVME_QUIRK_128_BYTES_SQES },
3062 	{ 0, }
3063 };
3064 MODULE_DEVICE_TABLE(pci, nvme_id_table);
3065 
3066 static struct pci_driver nvme_driver = {
3067 	.name		= "nvme",
3068 	.id_table	= nvme_id_table,
3069 	.probe		= nvme_probe,
3070 	.remove		= nvme_remove,
3071 	.shutdown	= nvme_shutdown,
3072 #ifdef CONFIG_PM_SLEEP
3073 	.driver		= {
3074 		.pm	= &nvme_dev_pm_ops,
3075 	},
3076 #endif
3077 	.sriov_configure = pci_sriov_configure_simple,
3078 	.err_handler	= &nvme_err_handler,
3079 };
3080 
3081 static int __init nvme_init(void)
3082 {
3083 	BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
3084 	BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
3085 	BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
3086 	BUILD_BUG_ON(IRQ_AFFINITY_MAX_SETS < 2);
3087 	return pci_register_driver(&nvme_driver);
3088 }
3089 
3090 static void __exit nvme_exit(void)
3091 {
3092 	pci_unregister_driver(&nvme_driver);
3093 	flush_workqueue(nvme_wq);
3094 }
3095 
3096 MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
3097 MODULE_LICENSE("GPL");
3098 MODULE_VERSION("1.0");
3099 module_init(nvme_init);
3100 module_exit(nvme_exit);
3101