blob: 11e6fd9d0ba497d3752899f3c3d6596ee3d64da9 [file] [log] [blame]
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001/*
2 * NVM Express device driver
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003 * Copyright (c) 2011-2014, Intel Corporation.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050013 */
14
Keith Buscha0a34082015-12-07 15:30:31 -070015#include <linux/aer.h>
Matthew Wilcox8de05532011-05-12 13:50:28 -040016#include <linux/bitops.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050017#include <linux/blkdev.h>
Matias Bjørlinga4aea562014-11-04 08:20:14 -070018#include <linux/blk-mq.h>
Christoph Hellwigdca51e72016-09-14 16:18:57 +020019#include <linux/blk-mq-pci.h>
Andy Lutomirskiff5350a2017-04-20 13:37:55 -070020#include <linux/dmi.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050021#include <linux/init.h>
22#include <linux/interrupt.h>
23#include <linux/io.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050024#include <linux/mm.h>
25#include <linux/module.h>
Keith Busch77bf25e2015-11-26 12:21:29 +010026#include <linux/mutex.h>
Keith Buschd0877472017-09-15 13:05:38 -040027#include <linux/once.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050028#include <linux/pci.h>
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -050029#include <linux/poison.h>
Keith Busche1e5e562015-02-19 13:39:03 -070030#include <linux/t10-pi.h>
Christoph Hellwig2d55cd52016-02-29 15:59:46 +010031#include <linux/timer.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050032#include <linux/types.h>
Linus Torvalds9cf5c092015-11-06 14:22:15 -080033#include <linux/io-64-nonatomic-lo-hi.h>
Keith Busch1d277a62015-10-15 14:10:52 +020034#include <asm/unaligned.h>
Scott Bauera98e58e52017-02-03 12:50:32 -070035#include <linux/sed-opal.h>
Hitoshi Mitake797a7962012-02-07 11:45:33 +090036
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020037#include "nvme.h"
38
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050039#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
40#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
Stephen Batesc9658092016-12-16 11:54:50 -070041
Christoph Hellwigadf68f22015-11-28 15:42:28 +010042/*
43 * We handle AEN commands ourselves and don't even let the
44 * block layer know about them.
45 */
Christoph Hellwigf866fc422016-04-26 13:52:00 +020046#define NVME_AQ_BLKMQ_DEPTH (NVME_AQ_DEPTH - NVME_NR_AERS)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050047
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -070048#define SGES_PER_PAGE (PAGE_SIZE / sizeof(struct nvme_sgl_desc))
49
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050050static int use_threaded_interrupts;
51module_param(use_threaded_interrupts, int, 0);
52
Jon Derrick8ffaadf2015-07-20 10:14:09 -060053static bool use_cmb_sqes = true;
54module_param(use_cmb_sqes, bool, 0644);
55MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
56
Christoph Hellwig87ad72a2017-05-12 17:02:58 +020057static unsigned int max_host_mem_size_mb = 128;
58module_param(max_host_mem_size_mb, uint, 0444);
59MODULE_PARM_DESC(max_host_mem_size_mb,
60 "Maximum Host Memory Buffer (HMB) size per controller (in MiB)");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050061
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -070062static unsigned int sgl_threshold = SZ_32K;
63module_param(sgl_threshold, uint, 0644);
64MODULE_PARM_DESC(sgl_threshold,
65 "Use SGLs when average request segment size is larger or equal to "
66 "this size. Use 0 to disable SGLs.");
67
weiping zhangb27c1e62017-07-10 16:46:59 +080068static int io_queue_depth_set(const char *val, const struct kernel_param *kp);
69static const struct kernel_param_ops io_queue_depth_ops = {
70 .set = io_queue_depth_set,
71 .get = param_get_int,
72};
73
74static int io_queue_depth = 1024;
75module_param_cb(io_queue_depth, &io_queue_depth_ops, &io_queue_depth, 0644);
76MODULE_PARM_DESC(io_queue_depth, "set io queue depth, should >= 2");
77
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010078struct nvme_dev;
79struct nvme_queue;
Keith Buschb3fffde2015-02-03 11:21:42 -070080
Jens Axboea0fa9642015-11-03 20:37:26 -070081static void nvme_process_cq(struct nvme_queue *nvmeq);
Keith Buscha5cdb682016-01-12 14:41:18 -070082static void nvme_dev_disable(struct nvme_dev *dev, bool shutdown);
Keith Buschd4b4ff82013-12-10 13:10:37 -070083
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050084/*
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010085 * Represents an NVM Express device. Each nvme_dev is a PCI function.
86 */
87struct nvme_dev {
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010088 struct nvme_queue **queues;
89 struct blk_mq_tag_set tagset;
90 struct blk_mq_tag_set admin_tagset;
91 u32 __iomem *dbs;
92 struct device *dev;
93 struct dma_pool *prp_page_pool;
94 struct dma_pool *prp_small_pool;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010095 unsigned online_queues;
96 unsigned max_qid;
97 int q_depth;
98 u32 db_stride;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010099 void __iomem *bar;
Xu Yu97f6ef62017-05-24 16:39:55 +0800100 unsigned long bar_mapped_size;
Christoph Hellwig5c8809e2015-11-26 12:35:49 +0100101 struct work_struct remove_work;
Keith Busch77bf25e2015-11-26 12:21:29 +0100102 struct mutex shutdown_lock;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100103 bool subsystem;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100104 void __iomem *cmb;
105 dma_addr_t cmb_dma_addr;
106 u64 cmb_size;
107 u32 cmbsz;
Stephen Bates202021c2016-10-05 20:01:12 -0600108 u32 cmbloc;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100109 struct nvme_ctrl ctrl;
Keith Buschdb3cbff2016-01-12 14:41:17 -0700110 struct completion ioq_wait;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +0200111
112 /* shadow doorbell buffer support: */
Helen Koikef9f38e32017-04-10 12:51:07 -0300113 u32 *dbbuf_dbs;
114 dma_addr_t dbbuf_dbs_dma_addr;
115 u32 *dbbuf_eis;
116 dma_addr_t dbbuf_eis_dma_addr;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +0200117
118 /* host memory buffer support: */
119 u64 host_mem_size;
120 u32 nr_host_mem_descs;
Christoph Hellwig4033f352017-08-28 10:47:18 +0200121 dma_addr_t host_mem_descs_dma;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +0200122 struct nvme_host_mem_buf_desc *host_mem_descs;
123 void **host_mem_desc_bufs;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500124};
125
weiping zhangb27c1e62017-07-10 16:46:59 +0800126static int io_queue_depth_set(const char *val, const struct kernel_param *kp)
127{
128 int n = 0, ret;
129
130 ret = kstrtoint(val, 10, &n);
131 if (ret != 0 || n < 2)
132 return -EINVAL;
133
134 return param_set_int(val, kp);
135}
136
Helen Koikef9f38e32017-04-10 12:51:07 -0300137static inline unsigned int sq_idx(unsigned int qid, u32 stride)
138{
139 return qid * 2 * stride;
140}
141
142static inline unsigned int cq_idx(unsigned int qid, u32 stride)
143{
144 return (qid * 2 + 1) * stride;
145}
146
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100147static inline struct nvme_dev *to_nvme_dev(struct nvme_ctrl *ctrl)
148{
149 return container_of(ctrl, struct nvme_dev, ctrl);
150}
151
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500152/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500153 * An NVM Express queue. Each device has at least two (one for admin
154 * commands and one for I/O commands).
155 */
156struct nvme_queue {
157 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500158 struct nvme_dev *dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500159 spinlock_t q_lock;
160 struct nvme_command *sq_cmds;
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600161 struct nvme_command __iomem *sq_cmds_io;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500162 volatile struct nvme_completion *cqes;
Keith Busch42483222015-06-01 09:29:54 -0600163 struct blk_mq_tags **tags;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500164 dma_addr_t sq_dma_addr;
165 dma_addr_t cq_dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500166 u32 __iomem *q_db;
167 u16 q_depth;
Jens Axboe6222d172015-01-15 15:19:10 -0700168 s16 cq_vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500169 u16 sq_tail;
170 u16 cq_head;
Keith Buschc30341d2013-12-10 13:10:38 -0700171 u16 qid;
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400172 u8 cq_phase;
173 u8 cqe_seen;
Helen Koikef9f38e32017-04-10 12:51:07 -0300174 u32 *dbbuf_sq_db;
175 u32 *dbbuf_cq_db;
176 u32 *dbbuf_sq_ei;
177 u32 *dbbuf_cq_ei;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500178};
179
180/*
Christoph Hellwig71bd1502015-10-16 07:58:32 +0200181 * The nvme_iod describes the data in an I/O, including the list of PRP
182 * entries. You can't see it in this data structure because C doesn't let
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100183 * me express that. Use nvme_init_iod to ensure there's enough space
Christoph Hellwig71bd1502015-10-16 07:58:32 +0200184 * allocated to store the PRP list.
185 */
186struct nvme_iod {
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800187 struct nvme_request req;
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100188 struct nvme_queue *nvmeq;
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700189 bool use_sgl;
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100190 int aborted;
Christoph Hellwig71bd1502015-10-16 07:58:32 +0200191 int npages; /* In the PRP list. 0 means small pool in use */
Christoph Hellwig71bd1502015-10-16 07:58:32 +0200192 int nents; /* Used in scatterlist */
193 int length; /* Of data, in bytes */
194 dma_addr_t first_dma;
Christoph Hellwigbf684052015-10-26 17:12:51 +0900195 struct scatterlist meta_sg; /* metadata requires single contiguous buffer */
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100196 struct scatterlist *sg;
197 struct scatterlist inline_sg[0];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500198};
199
200/*
201 * Check we didin't inadvertently grow the command struct
202 */
203static inline void _nvme_check_size(void)
204{
205 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
206 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
207 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
208 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
209 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
Vishal Vermaf8ebf842013-03-27 07:13:41 -0400210 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
Keith Buschc30341d2013-12-10 13:10:38 -0700211 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500212 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
Johannes Thumshirn0add5e82017-06-07 11:45:29 +0200213 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != NVME_IDENTIFY_DATA_SIZE);
214 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != NVME_IDENTIFY_DATA_SIZE);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500215 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
Keith Busch6ecec742012-09-26 12:49:27 -0600216 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
Helen Koikef9f38e32017-04-10 12:51:07 -0300217 BUILD_BUG_ON(sizeof(struct nvme_dbbuf) != 64);
218}
219
220static inline unsigned int nvme_dbbuf_size(u32 stride)
221{
222 return ((num_possible_cpus() + 1) * 8 * stride);
223}
224
225static int nvme_dbbuf_dma_alloc(struct nvme_dev *dev)
226{
227 unsigned int mem_size = nvme_dbbuf_size(dev->db_stride);
228
229 if (dev->dbbuf_dbs)
230 return 0;
231
232 dev->dbbuf_dbs = dma_alloc_coherent(dev->dev, mem_size,
233 &dev->dbbuf_dbs_dma_addr,
234 GFP_KERNEL);
235 if (!dev->dbbuf_dbs)
236 return -ENOMEM;
237 dev->dbbuf_eis = dma_alloc_coherent(dev->dev, mem_size,
238 &dev->dbbuf_eis_dma_addr,
239 GFP_KERNEL);
240 if (!dev->dbbuf_eis) {
241 dma_free_coherent(dev->dev, mem_size,
242 dev->dbbuf_dbs, dev->dbbuf_dbs_dma_addr);
243 dev->dbbuf_dbs = NULL;
244 return -ENOMEM;
245 }
246
247 return 0;
248}
249
250static void nvme_dbbuf_dma_free(struct nvme_dev *dev)
251{
252 unsigned int mem_size = nvme_dbbuf_size(dev->db_stride);
253
254 if (dev->dbbuf_dbs) {
255 dma_free_coherent(dev->dev, mem_size,
256 dev->dbbuf_dbs, dev->dbbuf_dbs_dma_addr);
257 dev->dbbuf_dbs = NULL;
258 }
259 if (dev->dbbuf_eis) {
260 dma_free_coherent(dev->dev, mem_size,
261 dev->dbbuf_eis, dev->dbbuf_eis_dma_addr);
262 dev->dbbuf_eis = NULL;
263 }
264}
265
266static void nvme_dbbuf_init(struct nvme_dev *dev,
267 struct nvme_queue *nvmeq, int qid)
268{
269 if (!dev->dbbuf_dbs || !qid)
270 return;
271
272 nvmeq->dbbuf_sq_db = &dev->dbbuf_dbs[sq_idx(qid, dev->db_stride)];
273 nvmeq->dbbuf_cq_db = &dev->dbbuf_dbs[cq_idx(qid, dev->db_stride)];
274 nvmeq->dbbuf_sq_ei = &dev->dbbuf_eis[sq_idx(qid, dev->db_stride)];
275 nvmeq->dbbuf_cq_ei = &dev->dbbuf_eis[cq_idx(qid, dev->db_stride)];
276}
277
278static void nvme_dbbuf_set(struct nvme_dev *dev)
279{
280 struct nvme_command c;
281
282 if (!dev->dbbuf_dbs)
283 return;
284
285 memset(&c, 0, sizeof(c));
286 c.dbbuf.opcode = nvme_admin_dbbuf;
287 c.dbbuf.prp1 = cpu_to_le64(dev->dbbuf_dbs_dma_addr);
288 c.dbbuf.prp2 = cpu_to_le64(dev->dbbuf_eis_dma_addr);
289
290 if (nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0)) {
Christoph Hellwig9bdcfb12017-05-20 15:14:43 +0200291 dev_warn(dev->ctrl.device, "unable to set dbbuf\n");
Helen Koikef9f38e32017-04-10 12:51:07 -0300292 /* Free memory and continue on */
293 nvme_dbbuf_dma_free(dev);
294 }
295}
296
297static inline int nvme_dbbuf_need_event(u16 event_idx, u16 new_idx, u16 old)
298{
299 return (u16)(new_idx - event_idx - 1) < (u16)(new_idx - old);
300}
301
302/* Update dbbuf and return true if an MMIO is required */
303static bool nvme_dbbuf_update_and_check_event(u16 value, u32 *dbbuf_db,
304 volatile u32 *dbbuf_ei)
305{
306 if (dbbuf_db) {
307 u16 old_value;
308
309 /*
310 * Ensure that the queue is written before updating
311 * the doorbell in memory
312 */
313 wmb();
314
315 old_value = *dbbuf_db;
316 *dbbuf_db = value;
317
318 if (!nvme_dbbuf_need_event(*dbbuf_ei, value, old_value))
319 return false;
320 }
321
322 return true;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500323}
324
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700325/*
326 * Max size of iod being embedded in the request payload
327 */
328#define NVME_INT_PAGES 2
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +0100329#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->ctrl.page_size)
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700330
331/*
332 * Will slightly overestimate the number of pages needed. This is OK
333 * as it only leads to a small amount of wasted memory for the lifetime of
334 * the I/O.
335 */
336static int nvme_npages(unsigned size, struct nvme_dev *dev)
337{
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +0100338 unsigned nprps = DIV_ROUND_UP(size + dev->ctrl.page_size,
339 dev->ctrl.page_size);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700340 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
341}
342
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700343/*
344 * Calculates the number of pages needed for the SGL segments. For example a 4k
345 * page can accommodate 256 SGL descriptors.
346 */
347static int nvme_pci_npages_sgl(unsigned int num_seg)
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100348{
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700349 return DIV_ROUND_UP(num_seg * sizeof(struct nvme_sgl_desc), PAGE_SIZE);
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100350}
351
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700352static unsigned int nvme_pci_iod_alloc_size(struct nvme_dev *dev,
353 unsigned int size, unsigned int nseg, bool use_sgl)
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700354{
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700355 size_t alloc_size;
356
357 if (use_sgl)
358 alloc_size = sizeof(__le64 *) * nvme_pci_npages_sgl(nseg);
359 else
360 alloc_size = sizeof(__le64 *) * nvme_npages(size, dev);
361
362 return alloc_size + sizeof(struct scatterlist) * nseg;
363}
364
365static unsigned int nvme_pci_cmd_size(struct nvme_dev *dev, bool use_sgl)
366{
367 unsigned int alloc_size = nvme_pci_iod_alloc_size(dev,
368 NVME_INT_BYTES(dev), NVME_INT_PAGES,
369 use_sgl);
370
371 return sizeof(struct nvme_iod) + alloc_size;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700372}
373
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700374static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
375 unsigned int hctx_idx)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500376{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700377 struct nvme_dev *dev = data;
378 struct nvme_queue *nvmeq = dev->queues[0];
379
Keith Busch42483222015-06-01 09:29:54 -0600380 WARN_ON(hctx_idx != 0);
381 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
382 WARN_ON(nvmeq->tags);
383
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700384 hctx->driver_data = nvmeq;
Keith Busch42483222015-06-01 09:29:54 -0600385 nvmeq->tags = &dev->admin_tagset.tags[0];
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700386 return 0;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500387}
388
Keith Busch4af0e212015-06-08 10:08:13 -0600389static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
390{
391 struct nvme_queue *nvmeq = hctx->driver_data;
392
393 nvmeq->tags = NULL;
394}
395
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700396static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
397 unsigned int hctx_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500398{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700399 struct nvme_dev *dev = data;
Keith Busch42483222015-06-01 09:29:54 -0600400 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500401
Keith Busch42483222015-06-01 09:29:54 -0600402 if (!nvmeq->tags)
403 nvmeq->tags = &dev->tagset.tags[hctx_idx];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500404
Keith Busch42483222015-06-01 09:29:54 -0600405 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700406 hctx->driver_data = nvmeq;
407 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500408}
409
Christoph Hellwigd6296d392017-05-01 10:19:08 -0600410static int nvme_init_request(struct blk_mq_tag_set *set, struct request *req,
411 unsigned int hctx_idx, unsigned int numa_node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500412{
Christoph Hellwigd6296d392017-05-01 10:19:08 -0600413 struct nvme_dev *dev = set->driver_data;
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100414 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
Christoph Hellwig03508152017-06-13 09:15:18 +0200415 int queue_idx = (set == &dev->tagset) ? hctx_idx + 1 : 0;
416 struct nvme_queue *nvmeq = dev->queues[queue_idx];
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700417
418 BUG_ON(!nvmeq);
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100419 iod->nvmeq = nvmeq;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700420 return 0;
421}
422
Christoph Hellwigdca51e72016-09-14 16:18:57 +0200423static int nvme_pci_map_queues(struct blk_mq_tag_set *set)
424{
425 struct nvme_dev *dev = set->driver_data;
426
427 return blk_mq_pci_map_queues(set, to_pci_dev(dev->dev));
428}
429
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500430/**
Christoph Hellwigadf68f22015-11-28 15:42:28 +0100431 * __nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500432 * @nvmeq: The queue to use
433 * @cmd: The command to send
434 *
435 * Safe to use from interrupt context
436 */
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530437static void __nvme_submit_cmd(struct nvme_queue *nvmeq,
438 struct nvme_command *cmd)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500439{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700440 u16 tail = nvmeq->sq_tail;
441
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600442 if (nvmeq->sq_cmds_io)
443 memcpy_toio(&nvmeq->sq_cmds_io[tail], cmd, sizeof(*cmd));
444 else
445 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
446
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500447 if (++tail == nvmeq->q_depth)
448 tail = 0;
Helen Koikef9f38e32017-04-10 12:51:07 -0300449 if (nvme_dbbuf_update_and_check_event(tail, nvmeq->dbbuf_sq_db,
450 nvmeq->dbbuf_sq_ei))
451 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500452 nvmeq->sq_tail = tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500453}
454
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700455static void **nvme_pci_iod_list(struct request *req)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700456{
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100457 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700458 return (void **)(iod->sg + blk_rq_nr_phys_segments(req));
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700459}
460
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200461static blk_status_t nvme_init_iod(struct request *rq, struct nvme_dev *dev)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500462{
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100463 struct nvme_iod *iod = blk_mq_rq_to_pdu(rq);
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700464 int nseg = blk_rq_nr_phys_segments(rq);
Christoph Hellwigb131c612017-01-13 12:29:12 +0100465 unsigned int size = blk_rq_payload_bytes(rq);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500466
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100467 if (nseg > NVME_INT_PAGES || size > NVME_INT_BYTES(dev)) {
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700468 size_t alloc_size = nvme_pci_iod_alloc_size(dev, size, nseg,
469 iod->use_sgl);
470
471 iod->sg = kmalloc(alloc_size, GFP_ATOMIC);
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100472 if (!iod->sg)
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200473 return BLK_STS_RESOURCE;
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100474 } else {
475 iod->sg = iod->inline_sg;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700476 }
477
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100478 iod->aborted = 0;
479 iod->npages = -1;
480 iod->nents = 0;
481 iod->length = size;
Keith Buschf80ec962016-07-12 16:20:31 -0700482
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200483 return BLK_STS_OK;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700484}
485
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100486static void nvme_free_iod(struct nvme_dev *dev, struct request *req)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500487{
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100488 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700489 const int last_prp = dev->ctrl.page_size / sizeof(__le64) - 1;
490 dma_addr_t dma_addr = iod->first_dma, next_dma_addr;
491
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500492 int i;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500493
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500494 if (iod->npages == 0)
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700495 dma_pool_free(dev->prp_small_pool, nvme_pci_iod_list(req)[0],
496 dma_addr);
497
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500498 for (i = 0; i < iod->npages; i++) {
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700499 void *addr = nvme_pci_iod_list(req)[i];
500
501 if (iod->use_sgl) {
502 struct nvme_sgl_desc *sg_list = addr;
503
504 next_dma_addr =
505 le64_to_cpu((sg_list[SGES_PER_PAGE - 1]).addr);
506 } else {
507 __le64 *prp_list = addr;
508
509 next_dma_addr = le64_to_cpu(prp_list[last_prp]);
510 }
511
512 dma_pool_free(dev->prp_page_pool, addr, dma_addr);
513 dma_addr = next_dma_addr;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500514 }
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700515
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100516 if (iod->sg != iod->inline_sg)
517 kfree(iod->sg);
Keith Buschb4ff9c82014-08-29 09:06:12 -0600518}
519
Keith Busch52b68d72015-02-23 09:16:21 -0700520#ifdef CONFIG_BLK_DEV_INTEGRITY
Keith Busche1e5e562015-02-19 13:39:03 -0700521static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
522{
523 if (be32_to_cpu(pi->ref_tag) == v)
524 pi->ref_tag = cpu_to_be32(p);
525}
526
527static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
528{
529 if (be32_to_cpu(pi->ref_tag) == p)
530 pi->ref_tag = cpu_to_be32(v);
531}
532
533/**
534 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
535 *
536 * The virtual start sector is the one that was originally submitted by the
537 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
538 * start sector may be different. Remap protection information to match the
539 * physical LBA on writes, and back to the original seed on reads.
540 *
541 * Type 0 and 3 do not have a ref tag, so no remapping required.
542 */
543static void nvme_dif_remap(struct request *req,
544 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
545{
546 struct nvme_ns *ns = req->rq_disk->private_data;
547 struct bio_integrity_payload *bip;
548 struct t10_pi_tuple *pi;
549 void *p, *pmap;
550 u32 i, nlb, ts, phys, virt;
551
552 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
553 return;
554
555 bip = bio_integrity(req->bio);
556 if (!bip)
557 return;
558
559 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
Keith Busche1e5e562015-02-19 13:39:03 -0700560
561 p = pmap;
562 virt = bip_get_seed(bip);
563 phys = nvme_block_nr(ns, blk_rq_pos(req));
564 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
Dan Williamsac6fc482015-10-21 13:20:18 -0400565 ts = ns->disk->queue->integrity.tuple_size;
Keith Busche1e5e562015-02-19 13:39:03 -0700566
567 for (i = 0; i < nlb; i++, virt++, phys++) {
568 pi = (struct t10_pi_tuple *)p;
569 dif_swap(phys, virt, pi);
570 p += ts;
571 }
572 kunmap_atomic(pmap);
573}
Keith Busch52b68d72015-02-23 09:16:21 -0700574#else /* CONFIG_BLK_DEV_INTEGRITY */
575static void nvme_dif_remap(struct request *req,
576 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
577{
578}
579static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
580{
581}
582static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
583{
584}
Keith Busch52b68d72015-02-23 09:16:21 -0700585#endif
586
Keith Buschd0877472017-09-15 13:05:38 -0400587static void nvme_print_sgl(struct scatterlist *sgl, int nents)
588{
589 int i;
590 struct scatterlist *sg;
591
592 for_each_sg(sgl, sg, nents, i) {
593 dma_addr_t phys = sg_phys(sg);
594 pr_warn("sg[%d] phys_addr:%pad offset:%d length:%d "
595 "dma_address:%pad dma_length:%d\n",
596 i, &phys, sg->offset, sg->length, &sg_dma_address(sg),
597 sg_dma_len(sg));
598 }
599}
600
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700601static blk_status_t nvme_pci_setup_prps(struct nvme_dev *dev,
602 struct request *req, struct nvme_rw_command *cmnd)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500603{
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100604 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500605 struct dma_pool *pool;
Christoph Hellwigb131c612017-01-13 12:29:12 +0100606 int length = blk_rq_payload_bytes(req);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500607 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500608 int dma_len = sg_dma_len(sg);
609 u64 dma_addr = sg_dma_address(sg);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +0100610 u32 page_size = dev->ctrl.page_size;
Murali Iyerf137e0f2015-03-26 11:07:51 -0500611 int offset = dma_addr & (page_size - 1);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500612 __le64 *prp_list;
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700613 void **list = nvme_pci_iod_list(req);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500614 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500615 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500616
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700617 iod->use_sgl = false;
618
Keith Busch1d090622014-06-23 11:34:01 -0600619 length -= (page_size - offset);
Jan H. Schönherr5228b322017-08-27 15:56:37 +0200620 if (length <= 0) {
621 iod->first_dma = 0;
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700622 goto done;
Jan H. Schönherr5228b322017-08-27 15:56:37 +0200623 }
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500624
Keith Busch1d090622014-06-23 11:34:01 -0600625 dma_len -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500626 if (dma_len) {
Keith Busch1d090622014-06-23 11:34:01 -0600627 dma_addr += (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500628 } else {
629 sg = sg_next(sg);
630 dma_addr = sg_dma_address(sg);
631 dma_len = sg_dma_len(sg);
632 }
633
Keith Busch1d090622014-06-23 11:34:01 -0600634 if (length <= page_size) {
Keith Buschedd10d32014-04-03 16:45:23 -0600635 iod->first_dma = dma_addr;
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700636 goto done;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500637 }
638
Keith Busch1d090622014-06-23 11:34:01 -0600639 nprps = DIV_ROUND_UP(length, page_size);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500640 if (nprps <= (256 / 8)) {
641 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500642 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500643 } else {
644 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500645 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500646 }
647
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200648 prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400649 if (!prp_list) {
Keith Buschedd10d32014-04-03 16:45:23 -0600650 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500651 iod->npages = -1;
Keith Busch86eea282017-07-12 15:59:07 -0400652 return BLK_STS_RESOURCE;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400653 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500654 list[0] = prp_list;
655 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500656 i = 0;
657 for (;;) {
Keith Busch1d090622014-06-23 11:34:01 -0600658 if (i == page_size >> 3) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500659 __le64 *old_prp_list = prp_list;
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200660 prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500661 if (!prp_list)
Keith Busch86eea282017-07-12 15:59:07 -0400662 return BLK_STS_RESOURCE;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500663 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400664 prp_list[0] = old_prp_list[i - 1];
665 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
666 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500667 }
668 prp_list[i++] = cpu_to_le64(dma_addr);
Keith Busch1d090622014-06-23 11:34:01 -0600669 dma_len -= page_size;
670 dma_addr += page_size;
671 length -= page_size;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500672 if (length <= 0)
673 break;
674 if (dma_len > 0)
675 continue;
Keith Busch86eea282017-07-12 15:59:07 -0400676 if (unlikely(dma_len < 0))
677 goto bad_sgl;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500678 sg = sg_next(sg);
679 dma_addr = sg_dma_address(sg);
680 dma_len = sg_dma_len(sg);
681 }
682
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700683done:
684 cmnd->dptr.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
685 cmnd->dptr.prp2 = cpu_to_le64(iod->first_dma);
686
Keith Busch86eea282017-07-12 15:59:07 -0400687 return BLK_STS_OK;
688
689 bad_sgl:
Keith Buschd0877472017-09-15 13:05:38 -0400690 WARN(DO_ONCE(nvme_print_sgl, iod->sg, iod->nents),
691 "Invalid SGL for payload:%d nents:%d\n",
692 blk_rq_payload_bytes(req), iod->nents);
Keith Busch86eea282017-07-12 15:59:07 -0400693 return BLK_STS_IOERR;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500694}
695
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700696static void nvme_pci_sgl_set_data(struct nvme_sgl_desc *sge,
697 struct scatterlist *sg)
698{
699 sge->addr = cpu_to_le64(sg_dma_address(sg));
700 sge->length = cpu_to_le32(sg_dma_len(sg));
701 sge->type = NVME_SGL_FMT_DATA_DESC << 4;
702}
703
704static void nvme_pci_sgl_set_seg(struct nvme_sgl_desc *sge,
705 dma_addr_t dma_addr, int entries)
706{
707 sge->addr = cpu_to_le64(dma_addr);
708 if (entries < SGES_PER_PAGE) {
709 sge->length = cpu_to_le32(entries * sizeof(*sge));
710 sge->type = NVME_SGL_FMT_LAST_SEG_DESC << 4;
711 } else {
712 sge->length = cpu_to_le32(PAGE_SIZE);
713 sge->type = NVME_SGL_FMT_SEG_DESC << 4;
714 }
715}
716
717static blk_status_t nvme_pci_setup_sgls(struct nvme_dev *dev,
718 struct request *req, struct nvme_rw_command *cmd)
719{
720 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
721 int length = blk_rq_payload_bytes(req);
722 struct dma_pool *pool;
723 struct nvme_sgl_desc *sg_list;
724 struct scatterlist *sg = iod->sg;
725 int entries = iod->nents, i = 0;
726 dma_addr_t sgl_dma;
727
728 iod->use_sgl = true;
729
730 /* setting the transfer type as SGL */
731 cmd->flags = NVME_CMD_SGL_METABUF;
732
733 if (length == sg_dma_len(sg)) {
734 nvme_pci_sgl_set_data(&cmd->dptr.sgl, sg);
735 return BLK_STS_OK;
736 }
737
738 if (entries <= (256 / sizeof(struct nvme_sgl_desc))) {
739 pool = dev->prp_small_pool;
740 iod->npages = 0;
741 } else {
742 pool = dev->prp_page_pool;
743 iod->npages = 1;
744 }
745
746 sg_list = dma_pool_alloc(pool, GFP_ATOMIC, &sgl_dma);
747 if (!sg_list) {
748 iod->npages = -1;
749 return BLK_STS_RESOURCE;
750 }
751
752 nvme_pci_iod_list(req)[0] = sg_list;
753 iod->first_dma = sgl_dma;
754
755 nvme_pci_sgl_set_seg(&cmd->dptr.sgl, sgl_dma, entries);
756
757 do {
758 if (i == SGES_PER_PAGE) {
759 struct nvme_sgl_desc *old_sg_desc = sg_list;
760 struct nvme_sgl_desc *link = &old_sg_desc[i - 1];
761
762 sg_list = dma_pool_alloc(pool, GFP_ATOMIC, &sgl_dma);
763 if (!sg_list)
764 return BLK_STS_RESOURCE;
765
766 i = 0;
767 nvme_pci_iod_list(req)[iod->npages++] = sg_list;
768 sg_list[i++] = *link;
769 nvme_pci_sgl_set_seg(link, sgl_dma, entries);
770 }
771
772 nvme_pci_sgl_set_data(&sg_list[i++], sg);
773
774 length -= sg_dma_len(sg);
775 sg = sg_next(sg);
776 entries--;
777 } while (length > 0);
778
779 WARN_ON(entries > 0);
780 return BLK_STS_OK;
781}
782
783static inline bool nvme_pci_use_sgls(struct nvme_dev *dev, struct request *req)
784{
785 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
786 unsigned int avg_seg_size;
787
788 avg_seg_size = DIV_ROUND_UP(blk_rq_payload_bytes(req),
789 blk_rq_nr_phys_segments(req));
790
791 if (!(dev->ctrl.sgls & ((1 << 0) | (1 << 1))))
792 return false;
793 if (!iod->nvmeq->qid)
794 return false;
795 if (!sgl_threshold || avg_seg_size < sgl_threshold)
796 return false;
797 return true;
798}
799
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200800static blk_status_t nvme_map_data(struct nvme_dev *dev, struct request *req,
Christoph Hellwigb131c612017-01-13 12:29:12 +0100801 struct nvme_command *cmnd)
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200802{
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100803 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200804 struct request_queue *q = req->q;
805 enum dma_data_direction dma_dir = rq_data_dir(req) ?
806 DMA_TO_DEVICE : DMA_FROM_DEVICE;
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200807 blk_status_t ret = BLK_STS_IOERR;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200808
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700809 sg_init_table(iod->sg, blk_rq_nr_phys_segments(req));
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200810 iod->nents = blk_rq_map_sg(q, req, iod->sg);
811 if (!iod->nents)
812 goto out;
813
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200814 ret = BLK_STS_RESOURCE;
Mauricio Faria de Oliveira2b6b5352016-10-11 13:54:20 -0700815 if (!dma_map_sg_attrs(dev->dev, iod->sg, iod->nents, dma_dir,
816 DMA_ATTR_NO_WARN))
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200817 goto out;
818
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -0700819 if (nvme_pci_use_sgls(dev, req))
820 ret = nvme_pci_setup_sgls(dev, req, &cmnd->rw);
821 else
822 ret = nvme_pci_setup_prps(dev, req, &cmnd->rw);
823
Keith Busch86eea282017-07-12 15:59:07 -0400824 if (ret != BLK_STS_OK)
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200825 goto out_unmap;
826
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200827 ret = BLK_STS_IOERR;
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200828 if (blk_integrity_rq(req)) {
829 if (blk_rq_count_integrity_sg(q, req->bio) != 1)
830 goto out_unmap;
831
Christoph Hellwigbf684052015-10-26 17:12:51 +0900832 sg_init_table(&iod->meta_sg, 1);
833 if (blk_rq_map_integrity_sg(q, req->bio, &iod->meta_sg) != 1)
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200834 goto out_unmap;
835
Keith Buschb5d8af52017-08-29 17:46:02 -0400836 if (req_op(req) == REQ_OP_WRITE)
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200837 nvme_dif_remap(req, nvme_dif_prep);
838
Christoph Hellwigbf684052015-10-26 17:12:51 +0900839 if (!dma_map_sg(dev->dev, &iod->meta_sg, 1, dma_dir))
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200840 goto out_unmap;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200841 }
842
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200843 if (blk_integrity_rq(req))
Christoph Hellwigbf684052015-10-26 17:12:51 +0900844 cmnd->rw.metadata = cpu_to_le64(sg_dma_address(&iod->meta_sg));
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200845 return BLK_STS_OK;
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200846
847out_unmap:
848 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
849out:
850 return ret;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200851}
852
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100853static void nvme_unmap_data(struct nvme_dev *dev, struct request *req)
Christoph Hellwigd4f6c3a2015-11-26 10:51:23 +0100854{
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100855 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
Christoph Hellwigd4f6c3a2015-11-26 10:51:23 +0100856 enum dma_data_direction dma_dir = rq_data_dir(req) ?
857 DMA_TO_DEVICE : DMA_FROM_DEVICE;
858
859 if (iod->nents) {
860 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
861 if (blk_integrity_rq(req)) {
Keith Buschb5d8af52017-08-29 17:46:02 -0400862 if (req_op(req) == REQ_OP_READ)
Christoph Hellwigd4f6c3a2015-11-26 10:51:23 +0100863 nvme_dif_remap(req, nvme_dif_complete);
Christoph Hellwigbf684052015-10-26 17:12:51 +0900864 dma_unmap_sg(dev->dev, &iod->meta_sg, 1, dma_dir);
Christoph Hellwigd4f6c3a2015-11-26 10:51:23 +0100865 }
866 }
867
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700868 nvme_cleanup_cmd(req);
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100869 nvme_free_iod(dev, req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500870}
871
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700872/*
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200873 * NOTE: ns is NULL when called on the admin queue.
874 */
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200875static blk_status_t nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700876 const struct blk_mq_queue_data *bd)
Keith Busch53562be2014-04-29 11:41:29 -0600877{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700878 struct nvme_ns *ns = hctx->queue->queuedata;
879 struct nvme_queue *nvmeq = hctx->driver_data;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200880 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700881 struct request *req = bd->rq;
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200882 struct nvme_command cmnd;
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200883 blk_status_t ret;
Keith Busche1e5e562015-02-19 13:39:03 -0700884
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700885 ret = nvme_setup_cmd(ns, req, &cmnd);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200886 if (ret)
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100887 return ret;
Keith Buschedd10d32014-04-03 16:45:23 -0600888
Christoph Hellwigb131c612017-01-13 12:29:12 +0100889 ret = nvme_init_iod(req, dev);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200890 if (ret)
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700891 goto out_free_cmd;
Keith Buschedd10d32014-04-03 16:45:23 -0600892
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200893 if (blk_rq_nr_phys_segments(req)) {
Christoph Hellwigb131c612017-01-13 12:29:12 +0100894 ret = nvme_map_data(dev, req, &cmnd);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200895 if (ret)
896 goto out_cleanup_iod;
897 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700898
Christoph Hellwigaae239e2015-11-26 12:59:50 +0100899 blk_mq_start_request(req);
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200900
901 spin_lock_irq(&nvmeq->q_lock);
Keith Buschae1fba22016-02-11 13:05:42 -0700902 if (unlikely(nvmeq->cq_vector < 0)) {
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200903 ret = BLK_STS_IOERR;
Keith Buschae1fba22016-02-11 13:05:42 -0700904 spin_unlock_irq(&nvmeq->q_lock);
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700905 goto out_cleanup_iod;
Keith Buschae1fba22016-02-11 13:05:42 -0700906 }
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200907 __nvme_submit_cmd(nvmeq, &cmnd);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700908 nvme_process_cq(nvmeq);
909 spin_unlock_irq(&nvmeq->q_lock);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200910 return BLK_STS_OK;
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700911out_cleanup_iod:
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100912 nvme_free_iod(dev, req);
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700913out_free_cmd:
914 nvme_cleanup_cmd(req);
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200915 return ret;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500916}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500917
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200918static void nvme_pci_complete_rq(struct request *req)
Christoph Hellwigeee417b2015-11-26 13:03:13 +0100919{
Christoph Hellwigf4800d62015-11-28 15:43:10 +0100920 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
Christoph Hellwigeee417b2015-11-26 13:03:13 +0100921
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200922 nvme_unmap_data(iod->nvmeq->dev, req);
923 nvme_complete_rq(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500924}
925
Marta Rybczynskad783e0b2016-03-22 16:02:06 +0100926/* We read the CQE phase first to check if the rest of the entry is valid */
927static inline bool nvme_cqe_valid(struct nvme_queue *nvmeq, u16 head,
928 u16 phase)
929{
930 return (le16_to_cpu(nvmeq->cqes[head].status) & 1) == phase;
931}
932
Sagi Grimbergeb281c82017-06-18 17:28:07 +0300933static inline void nvme_ring_cq_doorbell(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500934{
Sagi Grimbergeb281c82017-06-18 17:28:07 +0300935 u16 head = nvmeq->cq_head;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500936
Sagi Grimbergeb281c82017-06-18 17:28:07 +0300937 if (likely(nvmeq->cq_vector >= 0)) {
Helen Koikef9f38e32017-04-10 12:51:07 -0300938 if (nvme_dbbuf_update_and_check_event(head, nvmeq->dbbuf_cq_db,
939 nvmeq->dbbuf_cq_ei))
940 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
Sagi Grimbergeb281c82017-06-18 17:28:07 +0300941 }
942}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500943
Sagi Grimberg83a12fb2017-06-18 17:28:08 +0300944static inline void nvme_handle_cqe(struct nvme_queue *nvmeq,
945 struct nvme_completion *cqe)
946{
947 struct request *req;
948
949 if (unlikely(cqe->command_id >= nvmeq->q_depth)) {
950 dev_warn(nvmeq->dev->ctrl.device,
951 "invalid id %d completed on queue %d\n",
952 cqe->command_id, le16_to_cpu(cqe->sq_id));
953 return;
954 }
955
956 /*
957 * AEN requests are special as they don't time out and can
958 * survive any kind of queue freeze and often don't respond to
959 * aborts. We don't even bother to allocate a struct request
960 * for them but rather special case them here.
961 */
962 if (unlikely(nvmeq->qid == 0 &&
963 cqe->command_id >= NVME_AQ_BLKMQ_DEPTH)) {
964 nvme_complete_async_event(&nvmeq->dev->ctrl,
965 cqe->status, &cqe->result);
966 return;
967 }
968
Keith Busche9d8a0f2017-08-17 16:45:06 -0400969 nvmeq->cqe_seen = 1;
Sagi Grimberg83a12fb2017-06-18 17:28:08 +0300970 req = blk_mq_tag_to_rq(*nvmeq->tags, cqe->command_id);
971 nvme_end_request(req, cqe->status, cqe->result);
972}
973
Sagi Grimberg920d13a2017-06-18 17:28:09 +0300974static inline bool nvme_read_cqe(struct nvme_queue *nvmeq,
975 struct nvme_completion *cqe)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500976{
Sagi Grimberg920d13a2017-06-18 17:28:09 +0300977 if (nvme_cqe_valid(nvmeq, nvmeq->cq_head, nvmeq->cq_phase)) {
978 *cqe = nvmeq->cqes[nvmeq->cq_head];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500979
Sagi Grimberg920d13a2017-06-18 17:28:09 +0300980 if (++nvmeq->cq_head == nvmeq->q_depth) {
981 nvmeq->cq_head = 0;
982 nvmeq->cq_phase = !nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500983 }
Sagi Grimberg920d13a2017-06-18 17:28:09 +0300984 return true;
985 }
986 return false;
Jens Axboea0fa9642015-11-03 20:37:26 -0700987}
988
989static void nvme_process_cq(struct nvme_queue *nvmeq)
990{
Sagi Grimberg920d13a2017-06-18 17:28:09 +0300991 struct nvme_completion cqe;
992 int consumed = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500993
Sagi Grimberg920d13a2017-06-18 17:28:09 +0300994 while (nvme_read_cqe(nvmeq, &cqe)) {
Sagi Grimberg83a12fb2017-06-18 17:28:08 +0300995 nvme_handle_cqe(nvmeq, &cqe);
Sagi Grimberg920d13a2017-06-18 17:28:09 +0300996 consumed++;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500997 }
998
Keith Busche9d8a0f2017-08-17 16:45:06 -0400999 if (consumed)
Sagi Grimberg920d13a2017-06-18 17:28:09 +03001000 nvme_ring_cq_doorbell(nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001001}
1002
1003static irqreturn_t nvme_irq(int irq, void *data)
1004{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001005 irqreturn_t result;
1006 struct nvme_queue *nvmeq = data;
1007 spin_lock(&nvmeq->q_lock);
Matthew Wilcoxe9539f42013-06-24 11:47:34 -04001008 nvme_process_cq(nvmeq);
1009 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
1010 nvmeq->cqe_seen = 0;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001011 spin_unlock(&nvmeq->q_lock);
1012 return result;
1013}
1014
1015static irqreturn_t nvme_irq_check(int irq, void *data)
1016{
1017 struct nvme_queue *nvmeq = data;
Marta Rybczynskad783e0b2016-03-22 16:02:06 +01001018 if (nvme_cqe_valid(nvmeq, nvmeq->cq_head, nvmeq->cq_phase))
1019 return IRQ_WAKE_THREAD;
1020 return IRQ_NONE;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001021}
1022
Keith Busch7776db12017-02-24 17:59:28 -05001023static int __nvme_poll(struct nvme_queue *nvmeq, unsigned int tag)
Jens Axboea0fa9642015-11-03 20:37:26 -07001024{
Sagi Grimberg442e19b2017-06-18 17:28:10 +03001025 struct nvme_completion cqe;
1026 int found = 0, consumed = 0;
Jens Axboea0fa9642015-11-03 20:37:26 -07001027
Sagi Grimberg442e19b2017-06-18 17:28:10 +03001028 if (!nvme_cqe_valid(nvmeq, nvmeq->cq_head, nvmeq->cq_phase))
1029 return 0;
Jens Axboea0fa9642015-11-03 20:37:26 -07001030
Sagi Grimberg442e19b2017-06-18 17:28:10 +03001031 spin_lock_irq(&nvmeq->q_lock);
1032 while (nvme_read_cqe(nvmeq, &cqe)) {
1033 nvme_handle_cqe(nvmeq, &cqe);
1034 consumed++;
1035
1036 if (tag == cqe.command_id) {
1037 found = 1;
1038 break;
1039 }
1040 }
1041
1042 if (consumed)
1043 nvme_ring_cq_doorbell(nvmeq);
1044 spin_unlock_irq(&nvmeq->q_lock);
1045
1046 return found;
Jens Axboea0fa9642015-11-03 20:37:26 -07001047}
1048
Keith Busch7776db12017-02-24 17:59:28 -05001049static int nvme_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag)
1050{
1051 struct nvme_queue *nvmeq = hctx->driver_data;
1052
1053 return __nvme_poll(nvmeq, tag);
1054}
1055
Christoph Hellwigf866fc422016-04-26 13:52:00 +02001056static void nvme_pci_submit_async_event(struct nvme_ctrl *ctrl, int aer_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001057{
Christoph Hellwigf866fc422016-04-26 13:52:00 +02001058 struct nvme_dev *dev = to_nvme_dev(ctrl);
Christoph Hellwig9396dec2016-02-29 15:59:44 +01001059 struct nvme_queue *nvmeq = dev->queues[0];
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001060 struct nvme_command c;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001061
1062 memset(&c, 0, sizeof(c));
1063 c.common.opcode = nvme_admin_async_event;
Christoph Hellwigf866fc422016-04-26 13:52:00 +02001064 c.common.command_id = NVME_AQ_BLKMQ_DEPTH + aer_idx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001065
Christoph Hellwig9396dec2016-02-29 15:59:44 +01001066 spin_lock_irq(&nvmeq->q_lock);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02001067 __nvme_submit_cmd(nvmeq, &c);
Christoph Hellwig9396dec2016-02-29 15:59:44 +01001068 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch4d115422013-12-10 13:10:40 -07001069}
1070
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001071static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
1072{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001073 struct nvme_command c;
1074
1075 memset(&c, 0, sizeof(c));
1076 c.delete_queue.opcode = opcode;
1077 c.delete_queue.qid = cpu_to_le16(id);
1078
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001079 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001080}
1081
1082static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
1083 struct nvme_queue *nvmeq)
1084{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001085 struct nvme_command c;
1086 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
1087
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001088 /*
Minwoo Im16772ae2017-10-18 22:56:09 +09001089 * Note: we (ab)use the fact that the prp fields survive if no data
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001090 * is attached to the request.
1091 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001092 memset(&c, 0, sizeof(c));
1093 c.create_cq.opcode = nvme_admin_create_cq;
1094 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1095 c.create_cq.cqid = cpu_to_le16(qid);
1096 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1097 c.create_cq.cq_flags = cpu_to_le16(flags);
1098 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
1099
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001100 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001101}
1102
1103static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1104 struct nvme_queue *nvmeq)
1105{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001106 struct nvme_command c;
Keith Busch81c1cd92017-04-04 18:18:12 -04001107 int flags = NVME_QUEUE_PHYS_CONTIG;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001108
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001109 /*
Minwoo Im16772ae2017-10-18 22:56:09 +09001110 * Note: we (ab)use the fact that the prp fields survive if no data
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001111 * is attached to the request.
1112 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001113 memset(&c, 0, sizeof(c));
1114 c.create_sq.opcode = nvme_admin_create_sq;
1115 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1116 c.create_sq.sqid = cpu_to_le16(qid);
1117 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1118 c.create_sq.sq_flags = cpu_to_le16(flags);
1119 c.create_sq.cqid = cpu_to_le16(qid);
1120
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001121 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001122}
1123
1124static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1125{
1126 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1127}
1128
1129static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1130{
1131 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1132}
1133
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001134static void abort_endio(struct request *req, blk_status_t error)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001135{
Christoph Hellwigf4800d62015-11-28 15:43:10 +01001136 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
1137 struct nvme_queue *nvmeq = iod->nvmeq;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001138
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001139 dev_warn(nvmeq->dev->ctrl.device,
1140 "Abort status: 0x%x", nvme_req(req)->status);
Christoph Hellwige7a2a872015-11-16 10:39:48 +01001141 atomic_inc(&nvmeq->dev->ctrl.abort_limit);
Christoph Hellwige7a2a872015-11-16 10:39:48 +01001142 blk_mq_free_request(req);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001143}
1144
Keith Buschb2a0eb12017-06-07 20:32:50 +02001145static bool nvme_should_reset(struct nvme_dev *dev, u32 csts)
1146{
1147
1148 /* If true, indicates loss of adapter communication, possibly by a
1149 * NVMe Subsystem reset.
1150 */
1151 bool nssro = dev->subsystem && (csts & NVME_CSTS_NSSRO);
1152
1153 /* If there is a reset ongoing, we shouldn't reset again. */
1154 if (dev->ctrl.state == NVME_CTRL_RESETTING)
1155 return false;
1156
1157 /* We shouldn't reset unless the controller is on fatal error state
1158 * _or_ if we lost the communication with it.
1159 */
1160 if (!(csts & NVME_CSTS_CFS) && !nssro)
1161 return false;
1162
1163 /* If PCI error recovery process is happening, we cannot reset or
1164 * the recovery mechanism will surely fail.
1165 */
1166 if (pci_channel_offline(to_pci_dev(dev->dev)))
1167 return false;
1168
1169 return true;
1170}
1171
1172static void nvme_warn_reset(struct nvme_dev *dev, u32 csts)
1173{
1174 /* Read a config register to help see what died. */
1175 u16 pci_status;
1176 int result;
1177
1178 result = pci_read_config_word(to_pci_dev(dev->dev), PCI_STATUS,
1179 &pci_status);
1180 if (result == PCIBIOS_SUCCESSFUL)
1181 dev_warn(dev->ctrl.device,
1182 "controller is down; will reset: CSTS=0x%x, PCI_STATUS=0x%hx\n",
1183 csts, pci_status);
1184 else
1185 dev_warn(dev->ctrl.device,
1186 "controller is down; will reset: CSTS=0x%x, PCI_STATUS read failed (%d)\n",
1187 csts, result);
1188}
1189
Christoph Hellwig31c7c7d2015-10-22 14:03:35 +02001190static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001191{
Christoph Hellwigf4800d62015-11-28 15:43:10 +01001192 struct nvme_iod *iod = blk_mq_rq_to_pdu(req);
1193 struct nvme_queue *nvmeq = iod->nvmeq;
Keith Buschc30341d2013-12-10 13:10:38 -07001194 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001195 struct request *abort_req;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001196 struct nvme_command cmd;
Keith Buschb2a0eb12017-06-07 20:32:50 +02001197 u32 csts = readl(dev->bar + NVME_REG_CSTS);
1198
1199 /*
1200 * Reset immediately if the controller is failed
1201 */
1202 if (nvme_should_reset(dev, csts)) {
1203 nvme_warn_reset(dev, csts);
1204 nvme_dev_disable(dev, false);
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02001205 nvme_reset_ctrl(&dev->ctrl);
Keith Buschb2a0eb12017-06-07 20:32:50 +02001206 return BLK_EH_HANDLED;
1207 }
Keith Buschc30341d2013-12-10 13:10:38 -07001208
Christoph Hellwig31c7c7d2015-10-22 14:03:35 +02001209 /*
Keith Busch7776db12017-02-24 17:59:28 -05001210 * Did we miss an interrupt?
1211 */
1212 if (__nvme_poll(nvmeq, req->tag)) {
1213 dev_warn(dev->ctrl.device,
1214 "I/O %d QID %d timeout, completion polled\n",
1215 req->tag, nvmeq->qid);
1216 return BLK_EH_HANDLED;
1217 }
1218
1219 /*
Christoph Hellwigfd634f412015-11-26 12:42:26 +01001220 * Shutdown immediately if controller times out while starting. The
1221 * reset work will see the pci device disabled when it gets the forced
1222 * cancellation error. All outstanding requests are completed on
1223 * shutdown, so we return BLK_EH_HANDLED.
1224 */
Christoph Hellwigbb8d2612016-04-26 13:51:57 +02001225 if (dev->ctrl.state == NVME_CTRL_RESETTING) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001226 dev_warn(dev->ctrl.device,
Christoph Hellwigfd634f412015-11-26 12:42:26 +01001227 "I/O %d QID %d timeout, disable controller\n",
1228 req->tag, nvmeq->qid);
Keith Buscha5cdb682016-01-12 14:41:18 -07001229 nvme_dev_disable(dev, false);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001230 nvme_req(req)->flags |= NVME_REQ_CANCELLED;
Christoph Hellwigfd634f412015-11-26 12:42:26 +01001231 return BLK_EH_HANDLED;
Keith Buschc30341d2013-12-10 13:10:38 -07001232 }
1233
Christoph Hellwigfd634f412015-11-26 12:42:26 +01001234 /*
1235 * Shutdown the controller immediately and schedule a reset if the
1236 * command was already aborted once before and still hasn't been
1237 * returned to the driver, or if this is the admin queue.
Christoph Hellwig31c7c7d2015-10-22 14:03:35 +02001238 */
Christoph Hellwigf4800d62015-11-28 15:43:10 +01001239 if (!nvmeq->qid || iod->aborted) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001240 dev_warn(dev->ctrl.device,
Keith Busche1569a12015-11-26 12:11:07 +01001241 "I/O %d QID %d timeout, reset controller\n",
1242 req->tag, nvmeq->qid);
Keith Buscha5cdb682016-01-12 14:41:18 -07001243 nvme_dev_disable(dev, false);
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02001244 nvme_reset_ctrl(&dev->ctrl);
Keith Buschc30341d2013-12-10 13:10:38 -07001245
Keith Busche1569a12015-11-26 12:11:07 +01001246 /*
1247 * Mark the request as handled, since the inline shutdown
1248 * forces all outstanding requests to complete.
1249 */
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001250 nvme_req(req)->flags |= NVME_REQ_CANCELLED;
Keith Busche1569a12015-11-26 12:11:07 +01001251 return BLK_EH_HANDLED;
Keith Buschc30341d2013-12-10 13:10:38 -07001252 }
Keith Buschc30341d2013-12-10 13:10:38 -07001253
Christoph Hellwige7a2a872015-11-16 10:39:48 +01001254 if (atomic_dec_return(&dev->ctrl.abort_limit) < 0) {
1255 atomic_inc(&dev->ctrl.abort_limit);
1256 return BLK_EH_RESET_TIMER;
1257 }
Keith Busch7bf7d772017-01-24 18:07:00 -05001258 iod->aborted = 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001259
Keith Buschc30341d2013-12-10 13:10:38 -07001260 memset(&cmd, 0, sizeof(cmd));
1261 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001262 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001263 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Keith Buschc30341d2013-12-10 13:10:38 -07001264
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001265 dev_warn(nvmeq->dev->ctrl.device,
1266 "I/O %d QID %d timeout, aborting\n",
1267 req->tag, nvmeq->qid);
Keith Buschc30341d2013-12-10 13:10:38 -07001268
Christoph Hellwige7a2a872015-11-16 10:39:48 +01001269 abort_req = nvme_alloc_request(dev->ctrl.admin_q, &cmd,
Christoph Hellwigeb71f432016-06-13 16:45:23 +02001270 BLK_MQ_REQ_NOWAIT, NVME_QID_ANY);
Christoph Hellwig6bf25d12015-11-20 09:36:44 +01001271 if (IS_ERR(abort_req)) {
1272 atomic_inc(&dev->ctrl.abort_limit);
Christoph Hellwig31c7c7d2015-10-22 14:03:35 +02001273 return BLK_EH_RESET_TIMER;
Christoph Hellwig6bf25d12015-11-20 09:36:44 +01001274 }
Keith Buschc30341d2013-12-10 13:10:38 -07001275
Christoph Hellwige7a2a872015-11-16 10:39:48 +01001276 abort_req->timeout = ADMIN_TIMEOUT;
1277 abort_req->end_io_data = NULL;
1278 blk_execute_rq_nowait(abort_req->q, NULL, abort_req, 0, abort_endio);
Keith Busch07836e62015-02-19 10:34:48 -07001279
Keith Busch7a509a62015-01-07 18:55:53 -07001280 /*
1281 * The aborted req will be completed on receiving the abort req.
1282 * We enable the timer again. If hit twice, it'll cause a device reset,
1283 * as the device then is in a faulty state.
1284 */
Keith Busch07836e62015-02-19 10:34:48 -07001285 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001286}
1287
Keith Buschf435c282014-07-07 09:14:42 -06001288static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001289{
1290 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1291 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001292 if (nvmeq->sq_cmds)
1293 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
Matthew Wilcox9e866772012-08-03 13:55:56 -04001294 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1295 kfree(nvmeq);
1296}
1297
Keith Buscha1a5ef92013-12-16 13:50:00 -05001298static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001299{
1300 int i;
1301
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001302 for (i = dev->ctrl.queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001303 struct nvme_queue *nvmeq = dev->queues[i];
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001304 dev->ctrl.queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001305 dev->queues[i] = NULL;
Keith Buschf435c282014-07-07 09:14:42 -06001306 nvme_free_queue(nvmeq);
kaoudis121c7ad2015-01-14 21:01:58 -07001307 }
Keith Busch22404272013-07-15 15:02:20 -06001308}
1309
Keith Busch4d115422013-12-10 13:10:40 -07001310/**
1311 * nvme_suspend_queue - put queue into suspended state
1312 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001313 */
1314static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001315{
Keith Busch2b25d982014-12-22 12:59:04 -07001316 int vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001317
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001318 spin_lock_irq(&nvmeq->q_lock);
Keith Busch2b25d982014-12-22 12:59:04 -07001319 if (nvmeq->cq_vector == -1) {
1320 spin_unlock_irq(&nvmeq->q_lock);
1321 return 1;
1322 }
Christoph Hellwig0ff199c2017-04-13 09:06:43 +02001323 vector = nvmeq->cq_vector;
Keith Busch42f61422014-03-24 10:46:25 -06001324 nvmeq->dev->online_queues--;
Keith Busch2b25d982014-12-22 12:59:04 -07001325 nvmeq->cq_vector = -1;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001326 spin_unlock_irq(&nvmeq->q_lock);
1327
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001328 if (!nvmeq->qid && nvmeq->dev->ctrl.admin_q)
Sagi Grimbergc81545f2017-07-02 15:53:27 +03001329 blk_mq_quiesce_queue(nvmeq->dev->ctrl.admin_q);
Keith Busch6df3dbc2015-03-26 13:49:33 -06001330
Christoph Hellwig0ff199c2017-04-13 09:06:43 +02001331 pci_free_irq(to_pci_dev(nvmeq->dev->dev), vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001332
Keith Busch4d115422013-12-10 13:10:40 -07001333 return 0;
1334}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001335
Keith Buscha5cdb682016-01-12 14:41:18 -07001336static void nvme_disable_admin_queue(struct nvme_dev *dev, bool shutdown)
Keith Busch4d115422013-12-10 13:10:40 -07001337{
Keith Buscha5cdb682016-01-12 14:41:18 -07001338 struct nvme_queue *nvmeq = dev->queues[0];
Keith Busch4d115422013-12-10 13:10:40 -07001339
1340 if (!nvmeq)
1341 return;
1342 if (nvme_suspend_queue(nvmeq))
1343 return;
1344
Keith Buscha5cdb682016-01-12 14:41:18 -07001345 if (shutdown)
1346 nvme_shutdown_ctrl(&dev->ctrl);
1347 else
Sagi Grimberg20d0dfe2017-06-27 22:16:38 +03001348 nvme_disable_ctrl(&dev->ctrl, dev->ctrl.cap);
Keith Busch07836e62015-02-19 10:34:48 -07001349
1350 spin_lock_irq(&nvmeq->q_lock);
1351 nvme_process_cq(nvmeq);
1352 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001353}
1354
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001355static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1356 int entry_size)
1357{
1358 int q_depth = dev->q_depth;
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001359 unsigned q_size_aligned = roundup(q_depth * entry_size,
1360 dev->ctrl.page_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001361
1362 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
Jon Derrickc45f5c92015-07-21 15:08:13 -06001363 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001364 mem_per_q = round_down(mem_per_q, dev->ctrl.page_size);
Jon Derrickc45f5c92015-07-21 15:08:13 -06001365 q_depth = div_u64(mem_per_q, entry_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001366
1367 /*
1368 * Ensure the reduced q_depth is above some threshold where it
1369 * would be better to map queues in system memory with the
1370 * original depth
1371 */
1372 if (q_depth < 64)
1373 return -ENOMEM;
1374 }
1375
1376 return q_depth;
1377}
1378
1379static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1380 int qid, int depth)
1381{
1382 if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) {
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001383 unsigned offset = (qid - 1) * roundup(SQ_SIZE(depth),
1384 dev->ctrl.page_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001385 nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset;
1386 nvmeq->sq_cmds_io = dev->cmb + offset;
1387 } else {
1388 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1389 &nvmeq->sq_dma_addr, GFP_KERNEL);
1390 if (!nvmeq->sq_cmds)
1391 return -ENOMEM;
1392 }
1393
1394 return 0;
1395}
1396
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001397static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
Shaohua Lid3af3ec2017-02-01 09:53:16 -08001398 int depth, int node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001399{
Shaohua Lid3af3ec2017-02-01 09:53:16 -08001400 struct nvme_queue *nvmeq = kzalloc_node(sizeof(*nvmeq), GFP_KERNEL,
1401 node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001402 if (!nvmeq)
1403 return NULL;
1404
Christoph Hellwige75ec752015-05-22 11:12:39 +02001405 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
Joe Perches4d51abf2014-06-15 13:37:33 -07001406 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001407 if (!nvmeq->cqes)
1408 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001409
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001410 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001411 goto free_cqdma;
1412
Christoph Hellwige75ec752015-05-22 11:12:39 +02001413 nvmeq->q_dmadev = dev->dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001414 nvmeq->dev = dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001415 spin_lock_init(&nvmeq->q_lock);
1416 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001417 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001418 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001419 nvmeq->q_depth = depth;
Keith Buschc30341d2013-12-10 13:10:38 -07001420 nvmeq->qid = qid;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001421 nvmeq->cq_vector = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001422 dev->queues[qid] = nvmeq;
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001423 dev->ctrl.queue_count++;
Jon Derrick36a7e992015-05-27 12:26:23 -06001424
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001425 return nvmeq;
1426
1427 free_cqdma:
Christoph Hellwige75ec752015-05-22 11:12:39 +02001428 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001429 nvmeq->cq_dma_addr);
1430 free_nvmeq:
1431 kfree(nvmeq);
1432 return NULL;
1433}
1434
Christoph Hellwigdca51e72016-09-14 16:18:57 +02001435static int queue_request_irq(struct nvme_queue *nvmeq)
Matthew Wilcox30010822011-01-20 09:10:15 -05001436{
Christoph Hellwig0ff199c2017-04-13 09:06:43 +02001437 struct pci_dev *pdev = to_pci_dev(nvmeq->dev->dev);
1438 int nr = nvmeq->dev->ctrl.instance;
1439
1440 if (use_threaded_interrupts) {
1441 return pci_request_irq(pdev, nvmeq->cq_vector, nvme_irq_check,
1442 nvme_irq, nvmeq, "nvme%dq%d", nr, nvmeq->qid);
1443 } else {
1444 return pci_request_irq(pdev, nvmeq->cq_vector, nvme_irq,
1445 NULL, nvmeq, "nvme%dq%d", nr, nvmeq->qid);
1446 }
Matthew Wilcox30010822011-01-20 09:10:15 -05001447}
1448
Keith Busch22404272013-07-15 15:02:20 -06001449static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001450{
Keith Busch22404272013-07-15 15:02:20 -06001451 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001452
Keith Busch7be50e92014-09-10 15:48:47 -06001453 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001454 nvmeq->sq_tail = 0;
1455 nvmeq->cq_head = 0;
1456 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001457 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001458 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Helen Koikef9f38e32017-04-10 12:51:07 -03001459 nvme_dbbuf_init(dev, nvmeq, qid);
Keith Busch42f61422014-03-24 10:46:25 -06001460 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001461 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001462}
1463
1464static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1465{
1466 struct nvme_dev *dev = nvmeq->dev;
1467 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001468
Keith Busch2b25d982014-12-22 12:59:04 -07001469 nvmeq->cq_vector = qid - 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001470 result = adapter_alloc_cq(dev, qid, nvmeq);
1471 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001472 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001473
1474 result = adapter_alloc_sq(dev, qid, nvmeq);
1475 if (result < 0)
1476 goto release_cq;
1477
Keith Busch161b8be2017-09-14 13:54:39 -04001478 nvme_init_queue(nvmeq, qid);
Christoph Hellwigdca51e72016-09-14 16:18:57 +02001479 result = queue_request_irq(nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001480 if (result < 0)
1481 goto release_sq;
1482
Keith Busch22404272013-07-15 15:02:20 -06001483 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001484
1485 release_sq:
1486 adapter_delete_sq(dev, qid);
1487 release_cq:
1488 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001489 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001490}
1491
Eric Biggersf363b082017-03-30 13:39:16 -07001492static const struct blk_mq_ops nvme_mq_admin_ops = {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001493 .queue_rq = nvme_queue_rq,
Christoph Hellwig77f02a72017-03-30 13:41:32 +02001494 .complete = nvme_pci_complete_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001495 .init_hctx = nvme_admin_init_hctx,
Keith Busch4af0e212015-06-08 10:08:13 -06001496 .exit_hctx = nvme_admin_exit_hctx,
Christoph Hellwig03508152017-06-13 09:15:18 +02001497 .init_request = nvme_init_request,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001498 .timeout = nvme_timeout,
1499};
1500
Eric Biggersf363b082017-03-30 13:39:16 -07001501static const struct blk_mq_ops nvme_mq_ops = {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001502 .queue_rq = nvme_queue_rq,
Christoph Hellwig77f02a72017-03-30 13:41:32 +02001503 .complete = nvme_pci_complete_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001504 .init_hctx = nvme_init_hctx,
1505 .init_request = nvme_init_request,
Christoph Hellwigdca51e72016-09-14 16:18:57 +02001506 .map_queues = nvme_pci_map_queues,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001507 .timeout = nvme_timeout,
Jens Axboea0fa9642015-11-03 20:37:26 -07001508 .poll = nvme_poll,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001509};
1510
Keith Buschea191d22015-01-07 18:55:49 -07001511static void nvme_dev_remove_admin(struct nvme_dev *dev)
1512{
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001513 if (dev->ctrl.admin_q && !blk_queue_dying(dev->ctrl.admin_q)) {
Keith Busch69d9a992016-02-24 09:15:56 -07001514 /*
1515 * If the controller was reset during removal, it's possible
1516 * user requests may be waiting on a stopped queue. Start the
1517 * queue to flush these to completion.
1518 */
Sagi Grimbergc81545f2017-07-02 15:53:27 +03001519 blk_mq_unquiesce_queue(dev->ctrl.admin_q);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001520 blk_cleanup_queue(dev->ctrl.admin_q);
Keith Buschea191d22015-01-07 18:55:49 -07001521 blk_mq_free_tag_set(&dev->admin_tagset);
1522 }
1523}
1524
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001525static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1526{
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001527 if (!dev->ctrl.admin_q) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001528 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1529 dev->admin_tagset.nr_hw_queues = 1;
Keith Busche3e9d502016-01-04 09:10:55 -07001530
1531 /*
1532 * Subtract one to leave an empty queue entry for 'Full Queue'
1533 * condition. See NVM-Express 1.2 specification, section 4.1.2.
1534 */
1535 dev->admin_tagset.queue_depth = NVME_AQ_BLKMQ_DEPTH - 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001536 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001537 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -07001538 dev->admin_tagset.cmd_size = nvme_pci_cmd_size(dev, false);
Jens Axboed3484992017-01-13 14:43:58 -07001539 dev->admin_tagset.flags = BLK_MQ_F_NO_SCHED;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001540 dev->admin_tagset.driver_data = dev;
1541
1542 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1543 return -ENOMEM;
Sagi Grimberg34b6c232017-07-10 09:22:29 +03001544 dev->ctrl.admin_tagset = &dev->admin_tagset;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001545
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001546 dev->ctrl.admin_q = blk_mq_init_queue(&dev->admin_tagset);
1547 if (IS_ERR(dev->ctrl.admin_q)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001548 blk_mq_free_tag_set(&dev->admin_tagset);
1549 return -ENOMEM;
1550 }
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001551 if (!blk_get_queue(dev->ctrl.admin_q)) {
Keith Buschea191d22015-01-07 18:55:49 -07001552 nvme_dev_remove_admin(dev);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001553 dev->ctrl.admin_q = NULL;
Keith Buschea191d22015-01-07 18:55:49 -07001554 return -ENODEV;
1555 }
Keith Busch0fb59cb2015-01-07 18:55:50 -07001556 } else
Sagi Grimbergc81545f2017-07-02 15:53:27 +03001557 blk_mq_unquiesce_queue(dev->ctrl.admin_q);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001558
1559 return 0;
1560}
1561
Xu Yu97f6ef62017-05-24 16:39:55 +08001562static unsigned long db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
1563{
1564 return NVME_REG_DBS + ((nr_io_queues + 1) * 8 * dev->db_stride);
1565}
1566
1567static int nvme_remap_bar(struct nvme_dev *dev, unsigned long size)
1568{
1569 struct pci_dev *pdev = to_pci_dev(dev->dev);
1570
1571 if (size <= dev->bar_mapped_size)
1572 return 0;
1573 if (size > pci_resource_len(pdev, 0))
1574 return -ENOMEM;
1575 if (dev->bar)
1576 iounmap(dev->bar);
1577 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
1578 if (!dev->bar) {
1579 dev->bar_mapped_size = 0;
1580 return -ENOMEM;
1581 }
1582 dev->bar_mapped_size = size;
1583 dev->dbs = dev->bar + NVME_REG_DBS;
1584
1585 return 0;
1586}
1587
Sagi Grimberg01ad0992017-05-01 00:27:17 +03001588static int nvme_pci_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001589{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001590 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001591 u32 aqa;
1592 struct nvme_queue *nvmeq;
Keith Busch1d090622014-06-23 11:34:01 -06001593
Xu Yu97f6ef62017-05-24 16:39:55 +08001594 result = nvme_remap_bar(dev, db_bar_size(dev, 0));
1595 if (result < 0)
1596 return result;
1597
Gabriel Krisman Bertazi8ef20742016-10-19 09:51:05 -06001598 dev->subsystem = readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 1, 0) ?
Sagi Grimberg20d0dfe2017-06-27 22:16:38 +03001599 NVME_CAP_NSSRC(dev->ctrl.cap) : 0;
Keith Buschdfbac8c2015-08-10 15:20:40 -06001600
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001601 if (dev->subsystem &&
1602 (readl(dev->bar + NVME_REG_CSTS) & NVME_CSTS_NSSRO))
1603 writel(NVME_CSTS_NSSRO, dev->bar + NVME_REG_CSTS);
Keith Buschdfbac8c2015-08-10 15:20:40 -06001604
Sagi Grimberg20d0dfe2017-06-27 22:16:38 +03001605 result = nvme_disable_ctrl(&dev->ctrl, dev->ctrl.cap);
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001606 if (result < 0)
1607 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001608
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001609 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001610 if (!nvmeq) {
Shaohua Lid3af3ec2017-02-01 09:53:16 -08001611 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH,
1612 dev_to_node(dev->dev));
Keith Buschcd638942013-07-15 15:02:23 -06001613 if (!nvmeq)
1614 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001615 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001616
1617 aqa = nvmeq->q_depth - 1;
1618 aqa |= aqa << 16;
1619
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001620 writel(aqa, dev->bar + NVME_REG_AQA);
1621 lo_hi_writeq(nvmeq->sq_dma_addr, dev->bar + NVME_REG_ASQ);
1622 lo_hi_writeq(nvmeq->cq_dma_addr, dev->bar + NVME_REG_ACQ);
Keith Busch1d090622014-06-23 11:34:01 -06001623
Sagi Grimberg20d0dfe2017-06-27 22:16:38 +03001624 result = nvme_enable_ctrl(&dev->ctrl, dev->ctrl.cap);
Keith Busch025c5572013-05-01 13:07:51 -06001625 if (result)
Keith Buschd4875622016-11-15 15:56:26 -05001626 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001627
Keith Busch2b25d982014-12-22 12:59:04 -07001628 nvmeq->cq_vector = 0;
Keith Busch161b8be2017-09-14 13:54:39 -04001629 nvme_init_queue(nvmeq, 0);
Christoph Hellwigdca51e72016-09-14 16:18:57 +02001630 result = queue_request_irq(nvmeq);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001631 if (result) {
1632 nvmeq->cq_vector = -1;
Keith Buschd4875622016-11-15 15:56:26 -05001633 return result;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001634 }
Keith Busch025c5572013-05-01 13:07:51 -06001635
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001636 return result;
1637}
1638
Christoph Hellwig749941f2015-11-26 11:46:39 +01001639static int nvme_create_io_queues(struct nvme_dev *dev)
Keith Busch42f61422014-03-24 10:46:25 -06001640{
Keith Busch949928c2015-12-17 17:08:15 -07001641 unsigned i, max;
Christoph Hellwig749941f2015-11-26 11:46:39 +01001642 int ret = 0;
Keith Busch42f61422014-03-24 10:46:25 -06001643
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001644 for (i = dev->ctrl.queue_count; i <= dev->max_qid; i++) {
Shaohua Lid3af3ec2017-02-01 09:53:16 -08001645 /* vector == qid - 1, match nvme_create_queue */
1646 if (!nvme_alloc_queue(dev, i, dev->q_depth,
1647 pci_irq_get_node(to_pci_dev(dev->dev), i - 1))) {
Christoph Hellwig749941f2015-11-26 11:46:39 +01001648 ret = -ENOMEM;
Keith Busch42f61422014-03-24 10:46:25 -06001649 break;
Christoph Hellwig749941f2015-11-26 11:46:39 +01001650 }
1651 }
Keith Busch42f61422014-03-24 10:46:25 -06001652
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001653 max = min(dev->max_qid, dev->ctrl.queue_count - 1);
Keith Busch949928c2015-12-17 17:08:15 -07001654 for (i = dev->online_queues; i <= max; i++) {
Christoph Hellwig749941f2015-11-26 11:46:39 +01001655 ret = nvme_create_queue(dev->queues[i], i);
Keith Buschd4875622016-11-15 15:56:26 -05001656 if (ret)
Keith Busch42f61422014-03-24 10:46:25 -06001657 break;
Matthew Wilcox27e81662014-04-11 11:58:45 -04001658 }
Christoph Hellwig749941f2015-11-26 11:46:39 +01001659
1660 /*
1661 * Ignore failing Create SQ/CQ commands, we can continue with less
1662 * than the desired aount of queues, and even a controller without
1663 * I/O queues an still be used to issue admin commands. This might
1664 * be useful to upgrade a buggy firmware for example.
1665 */
1666 return ret >= 0 ? 0 : ret;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001667}
1668
Stephen Bates202021c2016-10-05 20:01:12 -06001669static ssize_t nvme_cmb_show(struct device *dev,
1670 struct device_attribute *attr,
1671 char *buf)
1672{
1673 struct nvme_dev *ndev = to_nvme_dev(dev_get_drvdata(dev));
1674
Stephen Batesc9658092016-12-16 11:54:50 -07001675 return scnprintf(buf, PAGE_SIZE, "cmbloc : x%08x\ncmbsz : x%08x\n",
Stephen Bates202021c2016-10-05 20:01:12 -06001676 ndev->cmbloc, ndev->cmbsz);
1677}
1678static DEVICE_ATTR(cmb, S_IRUGO, nvme_cmb_show, NULL);
1679
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001680static void __iomem *nvme_map_cmb(struct nvme_dev *dev)
1681{
1682 u64 szu, size, offset;
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001683 resource_size_t bar_size;
1684 struct pci_dev *pdev = to_pci_dev(dev->dev);
1685 void __iomem *cmb;
1686 dma_addr_t dma_addr;
1687
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001688 dev->cmbsz = readl(dev->bar + NVME_REG_CMBSZ);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001689 if (!(NVME_CMB_SZ(dev->cmbsz)))
1690 return NULL;
Stephen Bates202021c2016-10-05 20:01:12 -06001691 dev->cmbloc = readl(dev->bar + NVME_REG_CMBLOC);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001692
Stephen Bates202021c2016-10-05 20:01:12 -06001693 if (!use_cmb_sqes)
1694 return NULL;
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001695
1696 szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz));
1697 size = szu * NVME_CMB_SZ(dev->cmbsz);
Stephen Bates202021c2016-10-05 20:01:12 -06001698 offset = szu * NVME_CMB_OFST(dev->cmbloc);
1699 bar_size = pci_resource_len(pdev, NVME_CMB_BIR(dev->cmbloc));
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001700
1701 if (offset > bar_size)
1702 return NULL;
1703
1704 /*
1705 * Controllers may support a CMB size larger than their BAR,
1706 * for example, due to being behind a bridge. Reduce the CMB to
1707 * the reported size of the BAR
1708 */
1709 if (size > bar_size - offset)
1710 size = bar_size - offset;
1711
Stephen Bates202021c2016-10-05 20:01:12 -06001712 dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(dev->cmbloc)) + offset;
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001713 cmb = ioremap_wc(dma_addr, size);
1714 if (!cmb)
1715 return NULL;
1716
1717 dev->cmb_dma_addr = dma_addr;
1718 dev->cmb_size = size;
1719 return cmb;
1720}
1721
1722static inline void nvme_release_cmb(struct nvme_dev *dev)
1723{
1724 if (dev->cmb) {
1725 iounmap(dev->cmb);
1726 dev->cmb = NULL;
Max Gurtovoy1c78f772017-07-30 01:45:08 +03001727 sysfs_remove_file_from_group(&dev->ctrl.device->kobj,
1728 &dev_attr_cmb.attr, NULL);
1729 dev->cmbsz = 0;
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001730 }
1731}
1732
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001733static int nvme_set_host_mem(struct nvme_dev *dev, u32 bits)
Keith Busch9d713c22013-07-15 15:02:24 -06001734{
Christoph Hellwig4033f352017-08-28 10:47:18 +02001735 u64 dma_addr = dev->host_mem_descs_dma;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001736 struct nvme_command c;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001737 int ret;
1738
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001739 memset(&c, 0, sizeof(c));
1740 c.features.opcode = nvme_admin_set_features;
1741 c.features.fid = cpu_to_le32(NVME_FEAT_HOST_MEM_BUF);
1742 c.features.dword11 = cpu_to_le32(bits);
1743 c.features.dword12 = cpu_to_le32(dev->host_mem_size >>
1744 ilog2(dev->ctrl.page_size));
1745 c.features.dword13 = cpu_to_le32(lower_32_bits(dma_addr));
1746 c.features.dword14 = cpu_to_le32(upper_32_bits(dma_addr));
1747 c.features.dword15 = cpu_to_le32(dev->nr_host_mem_descs);
1748
1749 ret = nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
1750 if (ret) {
1751 dev_warn(dev->ctrl.device,
1752 "failed to set host mem (err %d, flags %#x).\n",
1753 ret, bits);
1754 }
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001755 return ret;
1756}
1757
1758static void nvme_free_host_mem(struct nvme_dev *dev)
1759{
1760 int i;
1761
1762 for (i = 0; i < dev->nr_host_mem_descs; i++) {
1763 struct nvme_host_mem_buf_desc *desc = &dev->host_mem_descs[i];
1764 size_t size = le32_to_cpu(desc->size) * dev->ctrl.page_size;
1765
1766 dma_free_coherent(dev->dev, size, dev->host_mem_desc_bufs[i],
1767 le64_to_cpu(desc->addr));
1768 }
1769
1770 kfree(dev->host_mem_desc_bufs);
1771 dev->host_mem_desc_bufs = NULL;
Christoph Hellwig4033f352017-08-28 10:47:18 +02001772 dma_free_coherent(dev->dev,
1773 dev->nr_host_mem_descs * sizeof(*dev->host_mem_descs),
1774 dev->host_mem_descs, dev->host_mem_descs_dma);
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001775 dev->host_mem_descs = NULL;
1776}
1777
Christoph Hellwig92dc6892017-09-11 12:08:43 -04001778static int __nvme_alloc_host_mem(struct nvme_dev *dev, u64 preferred,
1779 u32 chunk_size)
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001780{
1781 struct nvme_host_mem_buf_desc *descs;
Christoph Hellwig92dc6892017-09-11 12:08:43 -04001782 u32 max_entries, len;
Christoph Hellwig4033f352017-08-28 10:47:18 +02001783 dma_addr_t descs_dma;
Dan Carpenter2ee0e4e2017-07-06 12:26:52 +03001784 int i = 0;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001785 void **bufs;
Dan Carpenter2ee0e4e2017-07-06 12:26:52 +03001786 u64 size = 0, tmp;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001787
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001788 tmp = (preferred + chunk_size - 1);
1789 do_div(tmp, chunk_size);
1790 max_entries = tmp;
Christoph Hellwig044a9df2017-09-11 12:09:28 -04001791
1792 if (dev->ctrl.hmmaxd && dev->ctrl.hmmaxd < max_entries)
1793 max_entries = dev->ctrl.hmmaxd;
1794
Christoph Hellwig4033f352017-08-28 10:47:18 +02001795 descs = dma_zalloc_coherent(dev->dev, max_entries * sizeof(*descs),
1796 &descs_dma, GFP_KERNEL);
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001797 if (!descs)
1798 goto out;
1799
1800 bufs = kcalloc(max_entries, sizeof(*bufs), GFP_KERNEL);
1801 if (!bufs)
1802 goto out_free_descs;
1803
Christoph Hellwig50cdb7c2017-07-25 17:39:07 +02001804 for (size = 0; size < preferred; size += len) {
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001805 dma_addr_t dma_addr;
1806
Christoph Hellwig50cdb7c2017-07-25 17:39:07 +02001807 len = min_t(u64, chunk_size, preferred - size);
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001808 bufs[i] = dma_alloc_attrs(dev->dev, len, &dma_addr, GFP_KERNEL,
1809 DMA_ATTR_NO_KERNEL_MAPPING | DMA_ATTR_NO_WARN);
1810 if (!bufs[i])
1811 break;
1812
1813 descs[i].addr = cpu_to_le64(dma_addr);
1814 descs[i].size = cpu_to_le32(len / dev->ctrl.page_size);
1815 i++;
1816 }
1817
Christoph Hellwig92dc6892017-09-11 12:08:43 -04001818 if (!size)
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001819 goto out_free_bufs;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001820
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001821 dev->nr_host_mem_descs = i;
1822 dev->host_mem_size = size;
1823 dev->host_mem_descs = descs;
Christoph Hellwig4033f352017-08-28 10:47:18 +02001824 dev->host_mem_descs_dma = descs_dma;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001825 dev->host_mem_desc_bufs = bufs;
1826 return 0;
1827
1828out_free_bufs:
1829 while (--i >= 0) {
1830 size_t size = le32_to_cpu(descs[i].size) * dev->ctrl.page_size;
1831
1832 dma_free_coherent(dev->dev, size, bufs[i],
1833 le64_to_cpu(descs[i].addr));
1834 }
1835
1836 kfree(bufs);
1837out_free_descs:
Christoph Hellwig4033f352017-08-28 10:47:18 +02001838 dma_free_coherent(dev->dev, max_entries * sizeof(*descs), descs,
1839 descs_dma);
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001840out:
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001841 dev->host_mem_descs = NULL;
1842 return -ENOMEM;
1843}
1844
Christoph Hellwig92dc6892017-09-11 12:08:43 -04001845static int nvme_alloc_host_mem(struct nvme_dev *dev, u64 min, u64 preferred)
1846{
1847 u32 chunk_size;
1848
1849 /* start big and work our way down */
Akinobu Mita30f92d62017-09-06 12:15:31 +02001850 for (chunk_size = min_t(u64, preferred, PAGE_SIZE * MAX_ORDER_NR_PAGES);
Christoph Hellwig044a9df2017-09-11 12:09:28 -04001851 chunk_size >= max_t(u32, dev->ctrl.hmminds * 4096, PAGE_SIZE * 2);
Christoph Hellwig92dc6892017-09-11 12:08:43 -04001852 chunk_size /= 2) {
1853 if (!__nvme_alloc_host_mem(dev, preferred, chunk_size)) {
1854 if (!min || dev->host_mem_size >= min)
1855 return 0;
1856 nvme_free_host_mem(dev);
1857 }
1858 }
1859
1860 return -ENOMEM;
1861}
1862
Christoph Hellwig9620cfb2017-09-06 12:19:57 +02001863static int nvme_setup_host_mem(struct nvme_dev *dev)
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001864{
1865 u64 max = (u64)max_host_mem_size_mb * SZ_1M;
1866 u64 preferred = (u64)dev->ctrl.hmpre * 4096;
1867 u64 min = (u64)dev->ctrl.hmmin * 4096;
1868 u32 enable_bits = NVME_HOST_MEM_ENABLE;
Christoph Hellwig9620cfb2017-09-06 12:19:57 +02001869 int ret = 0;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001870
1871 preferred = min(preferred, max);
1872 if (min > max) {
1873 dev_warn(dev->ctrl.device,
1874 "min host memory (%lld MiB) above limit (%d MiB).\n",
1875 min >> ilog2(SZ_1M), max_host_mem_size_mb);
1876 nvme_free_host_mem(dev);
Christoph Hellwig9620cfb2017-09-06 12:19:57 +02001877 return 0;
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001878 }
1879
1880 /*
1881 * If we already have a buffer allocated check if we can reuse it.
1882 */
1883 if (dev->host_mem_descs) {
1884 if (dev->host_mem_size >= min)
1885 enable_bits |= NVME_HOST_MEM_RETURN;
1886 else
1887 nvme_free_host_mem(dev);
1888 }
1889
1890 if (!dev->host_mem_descs) {
Christoph Hellwig92dc6892017-09-11 12:08:43 -04001891 if (nvme_alloc_host_mem(dev, min, preferred)) {
1892 dev_warn(dev->ctrl.device,
1893 "failed to allocate host memory buffer.\n");
Christoph Hellwig9620cfb2017-09-06 12:19:57 +02001894 return 0; /* controller must work without HMB */
Christoph Hellwig92dc6892017-09-11 12:08:43 -04001895 }
1896
1897 dev_info(dev->ctrl.device,
1898 "allocated %lld MiB host memory buffer.\n",
1899 dev->host_mem_size >> ilog2(SZ_1M));
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001900 }
1901
Christoph Hellwig9620cfb2017-09-06 12:19:57 +02001902 ret = nvme_set_host_mem(dev, enable_bits);
1903 if (ret)
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02001904 nvme_free_host_mem(dev);
Christoph Hellwig9620cfb2017-09-06 12:19:57 +02001905 return ret;
Keith Busch9d713c22013-07-15 15:02:24 -06001906}
1907
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001908static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001909{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001910 struct nvme_queue *adminq = dev->queues[0];
Christoph Hellwige75ec752015-05-22 11:12:39 +02001911 struct pci_dev *pdev = to_pci_dev(dev->dev);
Xu Yu97f6ef62017-05-24 16:39:55 +08001912 int result, nr_io_queues;
1913 unsigned long size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001914
Christoph Hellwig425a17c2017-06-26 12:20:58 +02001915 nr_io_queues = num_present_cpus();
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +01001916 result = nvme_set_queue_count(&dev->ctrl, &nr_io_queues);
1917 if (result < 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05001918 return result;
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +01001919
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +02001920 if (nr_io_queues == 0)
Keith Buscha5229052016-04-08 16:09:10 -06001921 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001922
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001923 if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) {
1924 result = nvme_cmb_qdepth(dev, nr_io_queues,
1925 sizeof(struct nvme_command));
1926 if (result > 0)
1927 dev->q_depth = result;
1928 else
1929 nvme_release_cmb(dev);
1930 }
1931
Xu Yu97f6ef62017-05-24 16:39:55 +08001932 do {
1933 size = db_bar_size(dev, nr_io_queues);
1934 result = nvme_remap_bar(dev, size);
1935 if (!result)
1936 break;
1937 if (!--nr_io_queues)
1938 return -ENOMEM;
1939 } while (1);
1940 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001941
Keith Busch9d713c22013-07-15 15:02:24 -06001942 /* Deregister the admin queue's interrupt */
Christoph Hellwig0ff199c2017-04-13 09:06:43 +02001943 pci_free_irq(pdev, 0, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06001944
Jens Axboee32efbf2014-11-14 09:49:26 -07001945 /*
1946 * If we enable msix early due to not intx, disable it again before
1947 * setting up the full range we need.
1948 */
Christoph Hellwigdca51e72016-09-14 16:18:57 +02001949 pci_free_irq_vectors(pdev);
1950 nr_io_queues = pci_alloc_irq_vectors(pdev, 1, nr_io_queues,
1951 PCI_IRQ_ALL_TYPES | PCI_IRQ_AFFINITY);
1952 if (nr_io_queues <= 0)
1953 return -EIO;
1954 dev->max_qid = nr_io_queues;
Matthew Wilcox1b234842011-01-20 13:01:49 -05001955
Matthew Wilcox063a8092013-06-20 10:53:48 -04001956 /*
1957 * Should investigate if there's a performance win from allocating
1958 * more queues than interrupt vectors; it might allow the submission
1959 * path to scale better, even if the receive path is limited by the
1960 * number of interrupts.
1961 */
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07001962
Christoph Hellwigdca51e72016-09-14 16:18:57 +02001963 result = queue_request_irq(adminq);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001964 if (result) {
1965 adminq->cq_vector = -1;
Keith Buschd4875622016-11-15 15:56:26 -05001966 return result;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001967 }
Christoph Hellwig749941f2015-11-26 11:46:39 +01001968 return nvme_create_io_queues(dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001969}
1970
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001971static void nvme_del_queue_end(struct request *req, blk_status_t error)
Keith Buschdb3cbff2016-01-12 14:41:17 -07001972{
1973 struct nvme_queue *nvmeq = req->end_io_data;
1974
1975 blk_mq_free_request(req);
1976 complete(&nvmeq->dev->ioq_wait);
1977}
1978
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001979static void nvme_del_cq_end(struct request *req, blk_status_t error)
Keith Buschdb3cbff2016-01-12 14:41:17 -07001980{
1981 struct nvme_queue *nvmeq = req->end_io_data;
1982
1983 if (!error) {
1984 unsigned long flags;
1985
Ming Lin2e39e0f2016-04-05 10:32:04 -07001986 /*
1987 * We might be called with the AQ q_lock held
1988 * and the I/O queue q_lock should always
1989 * nest inside the AQ one.
1990 */
1991 spin_lock_irqsave_nested(&nvmeq->q_lock, flags,
1992 SINGLE_DEPTH_NESTING);
Keith Buschdb3cbff2016-01-12 14:41:17 -07001993 nvme_process_cq(nvmeq);
1994 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
1995 }
1996
1997 nvme_del_queue_end(req, error);
1998}
1999
2000static int nvme_delete_queue(struct nvme_queue *nvmeq, u8 opcode)
2001{
2002 struct request_queue *q = nvmeq->dev->ctrl.admin_q;
2003 struct request *req;
2004 struct nvme_command cmd;
2005
2006 memset(&cmd, 0, sizeof(cmd));
2007 cmd.delete_queue.opcode = opcode;
2008 cmd.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2009
Christoph Hellwigeb71f432016-06-13 16:45:23 +02002010 req = nvme_alloc_request(q, &cmd, BLK_MQ_REQ_NOWAIT, NVME_QID_ANY);
Keith Buschdb3cbff2016-01-12 14:41:17 -07002011 if (IS_ERR(req))
2012 return PTR_ERR(req);
2013
2014 req->timeout = ADMIN_TIMEOUT;
2015 req->end_io_data = nvmeq;
2016
2017 blk_execute_rq_nowait(q, NULL, req, false,
2018 opcode == nvme_admin_delete_cq ?
2019 nvme_del_cq_end : nvme_del_queue_end);
2020 return 0;
2021}
2022
Keith Busch70659062016-10-12 09:22:16 -06002023static void nvme_disable_io_queues(struct nvme_dev *dev, int queues)
Keith Buschdb3cbff2016-01-12 14:41:17 -07002024{
Keith Busch70659062016-10-12 09:22:16 -06002025 int pass;
Keith Buschdb3cbff2016-01-12 14:41:17 -07002026 unsigned long timeout;
2027 u8 opcode = nvme_admin_delete_sq;
2028
2029 for (pass = 0; pass < 2; pass++) {
Keith Busch014a0d62016-05-06 11:50:52 -06002030 int sent = 0, i = queues;
Keith Buschdb3cbff2016-01-12 14:41:17 -07002031
2032 reinit_completion(&dev->ioq_wait);
2033 retry:
2034 timeout = ADMIN_TIMEOUT;
Gabriel Krisman Bertazic21377f2016-08-11 09:35:57 -06002035 for (; i > 0; i--, sent++)
2036 if (nvme_delete_queue(dev->queues[i], opcode))
Keith Buschdb3cbff2016-01-12 14:41:17 -07002037 break;
Gabriel Krisman Bertazic21377f2016-08-11 09:35:57 -06002038
Keith Buschdb3cbff2016-01-12 14:41:17 -07002039 while (sent--) {
2040 timeout = wait_for_completion_io_timeout(&dev->ioq_wait, timeout);
2041 if (timeout == 0)
2042 return;
2043 if (i)
2044 goto retry;
2045 }
2046 opcode = nvme_admin_delete_cq;
2047 }
2048}
2049
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002050/*
2051 * Return: error value if an error occurred setting up the queues or calling
2052 * Identify Device. 0 if these succeeded, even if adding some of the
2053 * namespaces failed. At the moment, these failures are silent. TBD which
2054 * failures should be reported.
2055 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002056static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002057{
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002058 if (!dev->ctrl.tagset) {
Keith Buschffe77042015-06-08 10:08:15 -06002059 dev->tagset.ops = &nvme_mq_ops;
2060 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2061 dev->tagset.timeout = NVME_IO_TIMEOUT;
2062 dev->tagset.numa_node = dev_to_node(dev->dev);
2063 dev->tagset.queue_depth =
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002064 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
Chaitanya Kulkarnia7a7cbe2017-10-16 18:24:20 -07002065 dev->tagset.cmd_size = nvme_pci_cmd_size(dev, false);
2066 if ((dev->ctrl.sgls & ((1 << 0) | (1 << 1))) && sgl_threshold) {
2067 dev->tagset.cmd_size = max(dev->tagset.cmd_size,
2068 nvme_pci_cmd_size(dev, true));
2069 }
Keith Buschffe77042015-06-08 10:08:15 -06002070 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2071 dev->tagset.driver_data = dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002072
Keith Buschffe77042015-06-08 10:08:15 -06002073 if (blk_mq_alloc_tag_set(&dev->tagset))
2074 return 0;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002075 dev->ctrl.tagset = &dev->tagset;
Helen Koikef9f38e32017-04-10 12:51:07 -03002076
2077 nvme_dbbuf_set(dev);
Keith Busch949928c2015-12-17 17:08:15 -07002078 } else {
2079 blk_mq_update_nr_hw_queues(&dev->tagset, dev->online_queues - 1);
2080
2081 /* Free previously allocated queues that are no longer usable */
2082 nvme_free_queues(dev, dev->online_queues);
Keith Buschffe77042015-06-08 10:08:15 -06002083 }
Keith Busch949928c2015-12-17 17:08:15 -07002084
Keith Busche1e5e562015-02-19 13:39:03 -07002085 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002086}
2087
Keith Buschb00a7262016-02-24 09:15:52 -07002088static int nvme_pci_enable(struct nvme_dev *dev)
Keith Busch0877cb02013-07-15 15:02:19 -06002089{
Keith Buschb00a7262016-02-24 09:15:52 -07002090 int result = -ENOMEM;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002091 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002092
2093 if (pci_enable_device_mem(pdev))
2094 return result;
2095
Keith Busch0877cb02013-07-15 15:02:19 -06002096 pci_set_master(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002097
Christoph Hellwige75ec752015-05-22 11:12:39 +02002098 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
2099 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
Russell King052d0ef2013-06-26 23:49:11 +01002100 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06002101
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002102 if (readl(dev->bar + NVME_REG_CSTS) == -1) {
Keith Busch0e53d182013-12-10 13:10:39 -07002103 result = -ENODEV;
Keith Buschb00a7262016-02-24 09:15:52 -07002104 goto disable;
Keith Busch0e53d182013-12-10 13:10:39 -07002105 }
Jens Axboee32efbf2014-11-14 09:49:26 -07002106
2107 /*
Keith Buscha5229052016-04-08 16:09:10 -06002108 * Some devices and/or platforms don't advertise or work with INTx
2109 * interrupts. Pre-enable a single MSIX or MSI vec for setup. We'll
2110 * adjust this later.
Jens Axboee32efbf2014-11-14 09:49:26 -07002111 */
Christoph Hellwigdca51e72016-09-14 16:18:57 +02002112 result = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_ALL_TYPES);
2113 if (result < 0)
2114 return result;
Jens Axboee32efbf2014-11-14 09:49:26 -07002115
Sagi Grimberg20d0dfe2017-06-27 22:16:38 +03002116 dev->ctrl.cap = lo_hi_readq(dev->bar + NVME_REG_CAP);
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002117
Sagi Grimberg20d0dfe2017-06-27 22:16:38 +03002118 dev->q_depth = min_t(int, NVME_CAP_MQES(dev->ctrl.cap) + 1,
weiping zhangb27c1e62017-07-10 16:46:59 +08002119 io_queue_depth);
Sagi Grimberg20d0dfe2017-06-27 22:16:38 +03002120 dev->db_stride = 1 << NVME_CAP_STRIDE(dev->ctrl.cap);
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002121 dev->dbs = dev->bar + 4096;
Stephan Günther1f390c12015-12-01 13:23:22 -07002122
2123 /*
2124 * Temporary fix for the Apple controller found in the MacBook8,1 and
2125 * some MacBook7,1 to avoid controller resets and data loss.
2126 */
2127 if (pdev->vendor == PCI_VENDOR_ID_APPLE && pdev->device == 0x2001) {
2128 dev->q_depth = 2;
Christoph Hellwig9bdcfb12017-05-20 15:14:43 +02002129 dev_warn(dev->ctrl.device, "detected Apple NVMe controller, "
2130 "set queue depth=%u to work around controller resets\n",
Stephan Günther1f390c12015-12-01 13:23:22 -07002131 dev->q_depth);
Martin K. Petersend554b5e2017-06-27 22:27:57 -04002132 } else if (pdev->vendor == PCI_VENDOR_ID_SAMSUNG &&
2133 (pdev->device == 0xa821 || pdev->device == 0xa822) &&
Sagi Grimberg20d0dfe2017-06-27 22:16:38 +03002134 NVME_CAP_MQES(dev->ctrl.cap) == 0) {
Martin K. Petersend554b5e2017-06-27 22:27:57 -04002135 dev->q_depth = 64;
2136 dev_err(dev->ctrl.device, "detected PM1725 NVMe controller, "
2137 "set queue depth=%u\n", dev->q_depth);
Stephan Günther1f390c12015-12-01 13:23:22 -07002138 }
2139
Stephen Bates202021c2016-10-05 20:01:12 -06002140 /*
2141 * CMBs can currently only exist on >=1.2 PCIe devices. We only
Max Gurtovoy1c78f772017-07-30 01:45:08 +03002142 * populate sysfs if a CMB is implemented. Since nvme_dev_attrs_group
2143 * has no name we can pass NULL as final argument to
2144 * sysfs_add_file_to_group.
Stephen Bates202021c2016-10-05 20:01:12 -06002145 */
2146
Gabriel Krisman Bertazi8ef20742016-10-19 09:51:05 -06002147 if (readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 2, 0)) {
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002148 dev->cmb = nvme_map_cmb(dev);
Max Gurtovoy1c78f772017-07-30 01:45:08 +03002149 if (dev->cmb) {
Stephen Bates202021c2016-10-05 20:01:12 -06002150 if (sysfs_add_file_to_group(&dev->ctrl.device->kobj,
2151 &dev_attr_cmb.attr, NULL))
Christoph Hellwig9bdcfb12017-05-20 15:14:43 +02002152 dev_warn(dev->ctrl.device,
Stephen Bates202021c2016-10-05 20:01:12 -06002153 "failed to add sysfs attribute for CMB\n");
2154 }
2155 }
2156
Keith Buscha0a34082015-12-07 15:30:31 -07002157 pci_enable_pcie_error_reporting(pdev);
2158 pci_save_state(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002159 return 0;
2160
2161 disable:
Keith Busch0877cb02013-07-15 15:02:19 -06002162 pci_disable_device(pdev);
2163 return result;
2164}
2165
2166static void nvme_dev_unmap(struct nvme_dev *dev)
2167{
Keith Buschb00a7262016-02-24 09:15:52 -07002168 if (dev->bar)
2169 iounmap(dev->bar);
Johannes Thumshirna1f447b2016-06-07 09:44:02 +02002170 pci_release_mem_regions(to_pci_dev(dev->dev));
Keith Buschb00a7262016-02-24 09:15:52 -07002171}
2172
2173static void nvme_pci_disable(struct nvme_dev *dev)
2174{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002175 struct pci_dev *pdev = to_pci_dev(dev->dev);
2176
Jon Derrickf63572d2017-05-05 14:52:06 -06002177 nvme_release_cmb(dev);
Christoph Hellwigdca51e72016-09-14 16:18:57 +02002178 pci_free_irq_vectors(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002179
Keith Buscha0a34082015-12-07 15:30:31 -07002180 if (pci_is_enabled(pdev)) {
2181 pci_disable_pcie_error_reporting(pdev);
Christoph Hellwige75ec752015-05-22 11:12:39 +02002182 pci_disable_device(pdev);
Keith Busch4d115422013-12-10 13:10:40 -07002183 }
Keith Busch4d115422013-12-10 13:10:40 -07002184}
2185
Keith Buscha5cdb682016-01-12 14:41:18 -07002186static void nvme_dev_disable(struct nvme_dev *dev, bool shutdown)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002187{
Keith Busch70659062016-10-12 09:22:16 -06002188 int i, queues;
Keith Busch302ad8c2017-03-01 14:22:12 -05002189 bool dead = true;
2190 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch22404272013-07-15 15:02:20 -06002191
Keith Busch77bf25e2015-11-26 12:21:29 +01002192 mutex_lock(&dev->shutdown_lock);
Keith Busch302ad8c2017-03-01 14:22:12 -05002193 if (pci_is_enabled(pdev)) {
2194 u32 csts = readl(dev->bar + NVME_REG_CSTS);
2195
Keith Buschebef7362017-06-27 17:44:05 -06002196 if (dev->ctrl.state == NVME_CTRL_LIVE ||
2197 dev->ctrl.state == NVME_CTRL_RESETTING)
Keith Busch302ad8c2017-03-01 14:22:12 -05002198 nvme_start_freeze(&dev->ctrl);
2199 dead = !!((csts & NVME_CSTS_CFS) || !(csts & NVME_CSTS_RDY) ||
2200 pdev->error_state != pci_channel_io_normal);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002201 }
Gabriel Krisman Bertazic21377f2016-08-11 09:35:57 -06002202
Keith Busch302ad8c2017-03-01 14:22:12 -05002203 /*
2204 * Give the controller a chance to complete all entered requests if
2205 * doing a safe shutdown.
2206 */
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02002207 if (!dead) {
2208 if (shutdown)
2209 nvme_wait_freeze_timeout(&dev->ctrl, NVME_IO_TIMEOUT);
2210
2211 /*
2212 * If the controller is still alive tell it to stop using the
2213 * host memory buffer. In theory the shutdown / reset should
2214 * make sure that it doesn't access the host memoery anymore,
2215 * but I'd rather be safe than sorry..
2216 */
2217 if (dev->host_mem_descs)
2218 nvme_set_host_mem(dev, 0);
2219
2220 }
Keith Busch302ad8c2017-03-01 14:22:12 -05002221 nvme_stop_queues(&dev->ctrl);
2222
Keith Busch70659062016-10-12 09:22:16 -06002223 queues = dev->online_queues - 1;
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03002224 for (i = dev->ctrl.queue_count - 1; i > 0; i--)
Gabriel Krisman Bertazic21377f2016-08-11 09:35:57 -06002225 nvme_suspend_queue(dev->queues[i]);
2226
Keith Busch302ad8c2017-03-01 14:22:12 -05002227 if (dead) {
Gabriel Krisman Bertazi82469c52016-09-06 17:39:13 -03002228 /* A device might become IO incapable very soon during
2229 * probe, before the admin queue is configured. Thus,
2230 * queue_count can be 0 here.
2231 */
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03002232 if (dev->ctrl.queue_count)
Gabriel Krisman Bertazi82469c52016-09-06 17:39:13 -03002233 nvme_suspend_queue(dev->queues[0]);
Keith Busch4d115422013-12-10 13:10:40 -07002234 } else {
Keith Busch70659062016-10-12 09:22:16 -06002235 nvme_disable_io_queues(dev, queues);
Keith Buscha5cdb682016-01-12 14:41:18 -07002236 nvme_disable_admin_queue(dev, shutdown);
Keith Busch4d115422013-12-10 13:10:40 -07002237 }
Keith Buschb00a7262016-02-24 09:15:52 -07002238 nvme_pci_disable(dev);
Keith Busch07836e62015-02-19 10:34:48 -07002239
Ming Line1958e62016-05-18 14:05:01 -07002240 blk_mq_tagset_busy_iter(&dev->tagset, nvme_cancel_request, &dev->ctrl);
2241 blk_mq_tagset_busy_iter(&dev->admin_tagset, nvme_cancel_request, &dev->ctrl);
Keith Busch302ad8c2017-03-01 14:22:12 -05002242
2243 /*
2244 * The driver will not be starting up queues again if shutting down so
2245 * must flush all entered requests to their failed completion to avoid
2246 * deadlocking blk-mq hot-cpu notifier.
2247 */
2248 if (shutdown)
2249 nvme_start_queues(&dev->ctrl);
Keith Busch77bf25e2015-11-26 12:21:29 +01002250 mutex_unlock(&dev->shutdown_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002251}
2252
Matthew Wilcox091b6092011-02-10 09:56:01 -05002253static int nvme_setup_prp_pools(struct nvme_dev *dev)
2254{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002255 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
Matthew Wilcox091b6092011-02-10 09:56:01 -05002256 PAGE_SIZE, PAGE_SIZE, 0);
2257 if (!dev->prp_page_pool)
2258 return -ENOMEM;
2259
Matthew Wilcox99802a72011-02-10 10:30:34 -05002260 /* Optimisation for I/Os between 4k and 128k */
Christoph Hellwige75ec752015-05-22 11:12:39 +02002261 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
Matthew Wilcox99802a72011-02-10 10:30:34 -05002262 256, 256, 0);
2263 if (!dev->prp_small_pool) {
2264 dma_pool_destroy(dev->prp_page_pool);
2265 return -ENOMEM;
2266 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002267 return 0;
2268}
2269
2270static void nvme_release_prp_pools(struct nvme_dev *dev)
2271{
2272 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002273 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002274}
2275
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002276static void nvme_pci_free_ctrl(struct nvme_ctrl *ctrl)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002277{
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002278 struct nvme_dev *dev = to_nvme_dev(ctrl);
Keith Busch9ac27092014-01-31 16:53:39 -07002279
Helen Koikef9f38e32017-04-10 12:51:07 -03002280 nvme_dbbuf_dma_free(dev);
Christoph Hellwige75ec752015-05-22 11:12:39 +02002281 put_device(dev->dev);
Keith Busch4af0e212015-06-08 10:08:13 -06002282 if (dev->tagset.tags)
2283 blk_mq_free_tag_set(&dev->tagset);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002284 if (dev->ctrl.admin_q)
2285 blk_put_queue(dev->ctrl.admin_q);
Keith Busch5e82e952013-02-19 10:17:58 -07002286 kfree(dev->queues);
Scott Bauere286bcf2017-02-22 10:15:07 -07002287 free_opal_dev(dev->ctrl.opal_dev);
Keith Busch5e82e952013-02-19 10:17:58 -07002288 kfree(dev);
2289}
2290
Keith Buschf58944e2016-02-24 09:15:55 -07002291static void nvme_remove_dead_ctrl(struct nvme_dev *dev, int status)
2292{
Linus Torvalds237045f2016-03-18 17:13:31 -07002293 dev_warn(dev->ctrl.device, "Removing after probe failure status: %d\n", status);
Keith Buschf58944e2016-02-24 09:15:55 -07002294
2295 kref_get(&dev->ctrl.kref);
Keith Busch69d9a992016-02-24 09:15:56 -07002296 nvme_dev_disable(dev, false);
Keith Buschf58944e2016-02-24 09:15:55 -07002297 if (!schedule_work(&dev->remove_work))
2298 nvme_put_ctrl(&dev->ctrl);
2299}
2300
Christoph Hellwigfd634f412015-11-26 12:42:26 +01002301static void nvme_reset_work(struct work_struct *work)
Keith Busch5e82e952013-02-19 10:17:58 -07002302{
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002303 struct nvme_dev *dev =
2304 container_of(work, struct nvme_dev, ctrl.reset_work);
Scott Bauera98e58e52017-02-03 12:50:32 -07002305 bool was_suspend = !!(dev->ctrl.ctrl_config & NVME_CC_SHN_NORMAL);
Keith Buschf58944e2016-02-24 09:15:55 -07002306 int result = -ENODEV;
Keith Buschf0b50732013-07-15 15:02:21 -06002307
Rakesh Pandit82b057c2017-06-05 14:43:11 +03002308 if (WARN_ON(dev->ctrl.state != NVME_CTRL_RESETTING))
Christoph Hellwigfd634f412015-11-26 12:42:26 +01002309 goto out;
2310
2311 /*
2312 * If we're called to reset a live controller first shut it down before
2313 * moving on.
2314 */
Keith Buschb00a7262016-02-24 09:15:52 -07002315 if (dev->ctrl.ctrl_config & NVME_CC_ENABLE)
Keith Buscha5cdb682016-01-12 14:41:18 -07002316 nvme_dev_disable(dev, false);
Christoph Hellwigfd634f412015-11-26 12:42:26 +01002317
Keith Buschb00a7262016-02-24 09:15:52 -07002318 result = nvme_pci_enable(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06002319 if (result)
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002320 goto out;
Keith Buschf0b50732013-07-15 15:02:21 -06002321
Sagi Grimberg01ad0992017-05-01 00:27:17 +03002322 result = nvme_pci_configure_admin_queue(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06002323 if (result)
Keith Buschf58944e2016-02-24 09:15:55 -07002324 goto out;
Keith Buschf0b50732013-07-15 15:02:21 -06002325
Keith Busch0fb59cb2015-01-07 18:55:50 -07002326 result = nvme_alloc_admin_tags(dev);
2327 if (result)
Keith Buschf58944e2016-02-24 09:15:55 -07002328 goto out;
Dan McLeranb9afca32014-04-07 17:10:11 -06002329
Christoph Hellwigce4541f2015-10-16 07:58:46 +02002330 result = nvme_init_identify(&dev->ctrl);
2331 if (result)
Keith Buschf58944e2016-02-24 09:15:55 -07002332 goto out;
Christoph Hellwigce4541f2015-10-16 07:58:46 +02002333
Scott Bauere286bcf2017-02-22 10:15:07 -07002334 if (dev->ctrl.oacs & NVME_CTRL_OACS_SEC_SUPP) {
2335 if (!dev->ctrl.opal_dev)
2336 dev->ctrl.opal_dev =
2337 init_opal_dev(&dev->ctrl, &nvme_sec_submit);
2338 else if (was_suspend)
2339 opal_unlock_from_suspend(dev->ctrl.opal_dev);
2340 } else {
2341 free_opal_dev(dev->ctrl.opal_dev);
2342 dev->ctrl.opal_dev = NULL;
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01002343 }
Scott Bauera98e58e52017-02-03 12:50:32 -07002344
Helen Koikef9f38e32017-04-10 12:51:07 -03002345 if (dev->ctrl.oacs & NVME_CTRL_OACS_DBBUF_SUPP) {
2346 result = nvme_dbbuf_dma_alloc(dev);
2347 if (result)
2348 dev_warn(dev->dev,
2349 "unable to allocate dma for dbbuf\n");
2350 }
2351
Christoph Hellwig9620cfb2017-09-06 12:19:57 +02002352 if (dev->ctrl.hmpre) {
2353 result = nvme_setup_host_mem(dev);
2354 if (result < 0)
2355 goto out;
2356 }
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02002357
Keith Buschf0b50732013-07-15 15:02:21 -06002358 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06002359 if (result)
Keith Buschf58944e2016-02-24 09:15:55 -07002360 goto out;
Keith Buschf0b50732013-07-15 15:02:21 -06002361
Keith Busch21f033f2016-04-12 11:13:11 -06002362 /*
Christoph Hellwig2659e572015-10-02 18:51:31 +02002363 * Keep the controller around but remove all namespaces if we don't have
2364 * any working I/O queue.
2365 */
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002366 if (dev->online_queues < 2) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002367 dev_warn(dev->ctrl.device, "IO queues not created\n");
Keith Busch3b247742016-04-27 15:51:18 -06002368 nvme_kill_queues(&dev->ctrl);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002369 nvme_remove_namespaces(&dev->ctrl);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002370 } else {
Keith Busch25646262016-01-04 09:10:57 -07002371 nvme_start_queues(&dev->ctrl);
Keith Busch302ad8c2017-03-01 14:22:12 -05002372 nvme_wait_freeze(&dev->ctrl);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002373 nvme_dev_add(dev);
Keith Busch302ad8c2017-03-01 14:22:12 -05002374 nvme_unfreeze(&dev->ctrl);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002375 }
2376
Christoph Hellwigbb8d2612016-04-26 13:51:57 +02002377 if (!nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_LIVE)) {
2378 dev_warn(dev->ctrl.device, "failed to mark controller live\n");
2379 goto out;
2380 }
Christoph Hellwig92911a52016-04-26 13:51:58 +02002381
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03002382 nvme_start_ctrl(&dev->ctrl);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002383 return;
Keith Buschf0b50732013-07-15 15:02:21 -06002384
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002385 out:
Keith Buschf58944e2016-02-24 09:15:55 -07002386 nvme_remove_dead_ctrl(dev, result);
Keith Buschf0b50732013-07-15 15:02:21 -06002387}
2388
Christoph Hellwig5c8809e2015-11-26 12:35:49 +01002389static void nvme_remove_dead_ctrl_work(struct work_struct *work)
Keith Busch9a6b9452013-12-10 13:10:36 -07002390{
Christoph Hellwig5c8809e2015-11-26 12:35:49 +01002391 struct nvme_dev *dev = container_of(work, struct nvme_dev, remove_work);
Christoph Hellwige75ec752015-05-22 11:12:39 +02002392 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002393
Keith Busch69d9a992016-02-24 09:15:56 -07002394 nvme_kill_queues(&dev->ctrl);
Keith Busch9a6b9452013-12-10 13:10:36 -07002395 if (pci_get_drvdata(pdev))
Keith Busch921920a2016-03-28 16:03:21 -06002396 device_release_driver(&pdev->dev);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002397 nvme_put_ctrl(&dev->ctrl);
Keith Busch9a6b9452013-12-10 13:10:36 -07002398}
2399
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002400static int nvme_pci_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val)
Keith Busch4cc06522015-06-05 10:30:08 -06002401{
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002402 *val = readl(to_nvme_dev(ctrl)->bar + off);
2403 return 0;
Keith Busch4cc06522015-06-05 10:30:08 -06002404}
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002405
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01002406static int nvme_pci_reg_write32(struct nvme_ctrl *ctrl, u32 off, u32 val)
2407{
2408 writel(val, to_nvme_dev(ctrl)->bar + off);
2409 return 0;
2410}
2411
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002412static int nvme_pci_reg_read64(struct nvme_ctrl *ctrl, u32 off, u64 *val)
2413{
2414 *val = readq(to_nvme_dev(ctrl)->bar + off);
2415 return 0;
2416}
2417
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002418static const struct nvme_ctrl_ops nvme_pci_ctrl_ops = {
Ming Lin1a353d82016-06-13 16:45:24 +02002419 .name = "pcie",
Sagi Grimberge439bb12016-02-10 10:03:29 -08002420 .module = THIS_MODULE,
Christoph Hellwigc81bfba2017-05-20 15:14:45 +02002421 .flags = NVME_F_METADATA_SUPPORTED,
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002422 .reg_read32 = nvme_pci_reg_read32,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01002423 .reg_write32 = nvme_pci_reg_write32,
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002424 .reg_read64 = nvme_pci_reg_read64,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002425 .free_ctrl = nvme_pci_free_ctrl,
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002426 .submit_async_event = nvme_pci_submit_async_event,
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002427};
Keith Busch4cc06522015-06-05 10:30:08 -06002428
Keith Buschb00a7262016-02-24 09:15:52 -07002429static int nvme_dev_map(struct nvme_dev *dev)
2430{
Keith Buschb00a7262016-02-24 09:15:52 -07002431 struct pci_dev *pdev = to_pci_dev(dev->dev);
2432
Johannes Thumshirna1f447b2016-06-07 09:44:02 +02002433 if (pci_request_mem_regions(pdev, "nvme"))
Keith Buschb00a7262016-02-24 09:15:52 -07002434 return -ENODEV;
2435
Xu Yu97f6ef62017-05-24 16:39:55 +08002436 if (nvme_remap_bar(dev, NVME_REG_DBS + 4096))
Keith Buschb00a7262016-02-24 09:15:52 -07002437 goto release;
2438
Max Gurtovoy9fa196e2016-12-19 16:18:24 +02002439 return 0;
Keith Buschb00a7262016-02-24 09:15:52 -07002440 release:
Max Gurtovoy9fa196e2016-12-19 16:18:24 +02002441 pci_release_mem_regions(pdev);
2442 return -ENODEV;
Keith Buschb00a7262016-02-24 09:15:52 -07002443}
2444
Andy Lutomirskiff5350a2017-04-20 13:37:55 -07002445static unsigned long check_dell_samsung_bug(struct pci_dev *pdev)
2446{
2447 if (pdev->vendor == 0x144d && pdev->device == 0xa802) {
2448 /*
2449 * Several Samsung devices seem to drop off the PCIe bus
2450 * randomly when APST is on and uses the deepest sleep state.
2451 * This has been observed on a Samsung "SM951 NVMe SAMSUNG
2452 * 256GB", a "PM951 NVMe SAMSUNG 512GB", and a "Samsung SSD
2453 * 950 PRO 256GB", but it seems to be restricted to two Dell
2454 * laptops.
2455 */
2456 if (dmi_match(DMI_SYS_VENDOR, "Dell Inc.") &&
2457 (dmi_match(DMI_PRODUCT_NAME, "XPS 15 9550") ||
2458 dmi_match(DMI_PRODUCT_NAME, "Precision 5510")))
2459 return NVME_QUIRK_NO_DEEPEST_PS;
2460 }
2461
2462 return 0;
2463}
2464
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002465static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002466{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002467 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002468 struct nvme_dev *dev;
Andy Lutomirskiff5350a2017-04-20 13:37:55 -07002469 unsigned long quirks = id->driver_data;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002470
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002471 node = dev_to_node(&pdev->dev);
2472 if (node == NUMA_NO_NODE)
Masayoshi Mizuma2fa84352016-06-20 09:33:17 +09002473 set_dev_node(&pdev->dev, first_memory_node);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002474
2475 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002476 if (!dev)
2477 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002478 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
2479 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002480 if (!dev->queues)
2481 goto free;
2482
Christoph Hellwige75ec752015-05-22 11:12:39 +02002483 dev->dev = get_device(&pdev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002484 pci_set_drvdata(pdev, dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07002485
Keith Buschb00a7262016-02-24 09:15:52 -07002486 result = nvme_dev_map(dev);
2487 if (result)
Christophe JAILLETb00c9b72017-07-16 10:39:03 +02002488 goto put_pci;
Keith Buschb00a7262016-02-24 09:15:52 -07002489
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002490 INIT_WORK(&dev->ctrl.reset_work, nvme_reset_work);
Christoph Hellwig5c8809e2015-11-26 12:35:49 +01002491 INIT_WORK(&dev->remove_work, nvme_remove_dead_ctrl_work);
Keith Busch77bf25e2015-11-26 12:21:29 +01002492 mutex_init(&dev->shutdown_lock);
Keith Buschdb3cbff2016-01-12 14:41:17 -07002493 init_completion(&dev->ioq_wait);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002494
2495 result = nvme_setup_prp_pools(dev);
2496 if (result)
Christophe JAILLETb00c9b72017-07-16 10:39:03 +02002497 goto unmap;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002498
Andy Lutomirskiff5350a2017-04-20 13:37:55 -07002499 quirks |= check_dell_samsung_bug(pdev);
2500
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002501 result = nvme_init_ctrl(&dev->ctrl, &pdev->dev, &nvme_pci_ctrl_ops,
Andy Lutomirskiff5350a2017-04-20 13:37:55 -07002502 quirks);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002503 if (result)
2504 goto release_pools;
2505
Rakesh Pandit82b057c2017-06-05 14:43:11 +03002506 nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_RESETTING);
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002507 dev_info(dev->ctrl.device, "pci function %s\n", dev_name(&pdev->dev));
2508
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002509 queue_work(nvme_wq, &dev->ctrl.reset_work);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002510 return 0;
2511
Keith Busch0877cb02013-07-15 15:02:19 -06002512 release_pools:
Matthew Wilcox091b6092011-02-10 09:56:01 -05002513 nvme_release_prp_pools(dev);
Christophe JAILLETb00c9b72017-07-16 10:39:03 +02002514 unmap:
2515 nvme_dev_unmap(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06002516 put_pci:
Christoph Hellwige75ec752015-05-22 11:12:39 +02002517 put_device(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002518 free:
2519 kfree(dev->queues);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002520 kfree(dev);
2521 return result;
2522}
2523
Christoph Hellwig775755e2017-06-01 13:10:38 +02002524static void nvme_reset_prepare(struct pci_dev *pdev)
Keith Buschf0d54a52014-05-02 10:40:43 -06002525{
Keith Buscha6739472014-06-23 16:03:21 -06002526 struct nvme_dev *dev = pci_get_drvdata(pdev);
Linus Torvaldsf263fbb2017-07-08 15:51:57 -07002527 nvme_dev_disable(dev, false);
Christoph Hellwig775755e2017-06-01 13:10:38 +02002528}
Keith Buschf0d54a52014-05-02 10:40:43 -06002529
Christoph Hellwig775755e2017-06-01 13:10:38 +02002530static void nvme_reset_done(struct pci_dev *pdev)
2531{
Linus Torvaldsf263fbb2017-07-08 15:51:57 -07002532 struct nvme_dev *dev = pci_get_drvdata(pdev);
2533 nvme_reset_ctrl(&dev->ctrl);
Keith Buschf0d54a52014-05-02 10:40:43 -06002534}
2535
Keith Busch09ece142014-01-27 11:29:40 -05002536static void nvme_shutdown(struct pci_dev *pdev)
2537{
2538 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buscha5cdb682016-01-12 14:41:18 -07002539 nvme_dev_disable(dev, true);
Keith Busch09ece142014-01-27 11:29:40 -05002540}
2541
Keith Buschf58944e2016-02-24 09:15:55 -07002542/*
2543 * The driver's remove may be called on a device in a partially initialized
2544 * state. This function must not have any dependencies on the device state in
2545 * order to proceed.
2546 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002547static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002548{
2549 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002550
Christoph Hellwigbb8d2612016-04-26 13:51:57 +02002551 nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DELETING);
2552
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002553 cancel_work_sync(&dev->ctrl.reset_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07002554 pci_set_drvdata(pdev, NULL);
Keith Busch0ff9d4e2016-05-12 08:37:14 -06002555
Keith Busch6db28ed2017-02-10 18:15:49 -05002556 if (!pci_device_is_present(pdev)) {
Keith Busch0ff9d4e2016-05-12 08:37:14 -06002557 nvme_change_ctrl_state(&dev->ctrl, NVME_CTRL_DEAD);
Keith Busch6db28ed2017-02-10 18:15:49 -05002558 nvme_dev_disable(dev, false);
2559 }
Keith Busch0ff9d4e2016-05-12 08:37:14 -06002560
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002561 flush_work(&dev->ctrl.reset_work);
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03002562 nvme_stop_ctrl(&dev->ctrl);
2563 nvme_remove_namespaces(&dev->ctrl);
Keith Buscha5cdb682016-01-12 14:41:18 -07002564 nvme_dev_disable(dev, true);
Christoph Hellwig87ad72a2017-05-12 17:02:58 +02002565 nvme_free_host_mem(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002566 nvme_dev_remove_admin(dev);
2567 nvme_free_queues(dev, 0);
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03002568 nvme_uninit_ctrl(&dev->ctrl);
Keith Busch9a6b9452013-12-10 13:10:36 -07002569 nvme_release_prp_pools(dev);
Keith Buschb00a7262016-02-24 09:15:52 -07002570 nvme_dev_unmap(dev);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002571 nvme_put_ctrl(&dev->ctrl);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002572}
2573
Keith Busch13880f52016-06-20 09:41:06 -06002574static int nvme_pci_sriov_configure(struct pci_dev *pdev, int numvfs)
2575{
2576 int ret = 0;
2577
2578 if (numvfs == 0) {
2579 if (pci_vfs_assigned(pdev)) {
2580 dev_warn(&pdev->dev,
2581 "Cannot disable SR-IOV VFs while assigned\n");
2582 return -EPERM;
2583 }
2584 pci_disable_sriov(pdev);
2585 return 0;
2586 }
2587
2588 ret = pci_enable_sriov(pdev, numvfs);
2589 return ret ? ret : numvfs;
2590}
2591
Jingoo Han671a6012014-02-13 11:19:14 +09002592#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06002593static int nvme_suspend(struct device *dev)
2594{
2595 struct pci_dev *pdev = to_pci_dev(dev);
2596 struct nvme_dev *ndev = pci_get_drvdata(pdev);
2597
Keith Buscha5cdb682016-01-12 14:41:18 -07002598 nvme_dev_disable(ndev, true);
Keith Buschcd638942013-07-15 15:02:23 -06002599 return 0;
2600}
2601
2602static int nvme_resume(struct device *dev)
2603{
2604 struct pci_dev *pdev = to_pci_dev(dev);
2605 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06002606
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002607 nvme_reset_ctrl(&ndev->ctrl);
Keith Busch9a6b9452013-12-10 13:10:36 -07002608 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06002609}
Jingoo Han671a6012014-02-13 11:19:14 +09002610#endif
Keith Buschcd638942013-07-15 15:02:23 -06002611
2612static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002613
Keith Buscha0a34082015-12-07 15:30:31 -07002614static pci_ers_result_t nvme_error_detected(struct pci_dev *pdev,
2615 pci_channel_state_t state)
2616{
2617 struct nvme_dev *dev = pci_get_drvdata(pdev);
2618
2619 /*
2620 * A frozen channel requires a reset. When detected, this method will
2621 * shutdown the controller to quiesce. The controller will be restarted
2622 * after the slot reset through driver's slot_reset callback.
2623 */
Keith Buscha0a34082015-12-07 15:30:31 -07002624 switch (state) {
2625 case pci_channel_io_normal:
2626 return PCI_ERS_RESULT_CAN_RECOVER;
2627 case pci_channel_io_frozen:
Keith Buschd011fb32016-04-04 15:07:41 -06002628 dev_warn(dev->ctrl.device,
2629 "frozen state error detected, reset controller\n");
Keith Buscha5cdb682016-01-12 14:41:18 -07002630 nvme_dev_disable(dev, false);
Keith Buscha0a34082015-12-07 15:30:31 -07002631 return PCI_ERS_RESULT_NEED_RESET;
2632 case pci_channel_io_perm_failure:
Keith Buschd011fb32016-04-04 15:07:41 -06002633 dev_warn(dev->ctrl.device,
2634 "failure state error detected, request disconnect\n");
Keith Buscha0a34082015-12-07 15:30:31 -07002635 return PCI_ERS_RESULT_DISCONNECT;
2636 }
2637 return PCI_ERS_RESULT_NEED_RESET;
2638}
2639
2640static pci_ers_result_t nvme_slot_reset(struct pci_dev *pdev)
2641{
2642 struct nvme_dev *dev = pci_get_drvdata(pdev);
2643
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002644 dev_info(dev->ctrl.device, "restart after slot reset\n");
Keith Buscha0a34082015-12-07 15:30:31 -07002645 pci_restore_state(pdev);
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002646 nvme_reset_ctrl(&dev->ctrl);
Keith Buscha0a34082015-12-07 15:30:31 -07002647 return PCI_ERS_RESULT_RECOVERED;
2648}
2649
2650static void nvme_error_resume(struct pci_dev *pdev)
2651{
2652 pci_cleanup_aer_uncorrect_error_status(pdev);
2653}
2654
Stephen Hemminger1d352032012-09-07 09:33:17 -07002655static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002656 .error_detected = nvme_error_detected,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002657 .slot_reset = nvme_slot_reset,
2658 .resume = nvme_error_resume,
Christoph Hellwig775755e2017-06-01 13:10:38 +02002659 .reset_prepare = nvme_reset_prepare,
2660 .reset_done = nvme_reset_done,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002661};
2662
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04002663static const struct pci_device_id nvme_id_table[] = {
Christoph Hellwig106198e2015-11-26 10:07:41 +01002664 { PCI_VDEVICE(INTEL, 0x0953),
Keith Busch08095e72016-03-04 13:15:17 -07002665 .driver_data = NVME_QUIRK_STRIPE_SIZE |
Christoph Hellwige850fd12017-04-05 19:21:13 +02002666 NVME_QUIRK_DEALLOCATE_ZEROES, },
Keith Busch99466e72016-05-02 15:14:24 -06002667 { PCI_VDEVICE(INTEL, 0x0a53),
2668 .driver_data = NVME_QUIRK_STRIPE_SIZE |
Christoph Hellwige850fd12017-04-05 19:21:13 +02002669 NVME_QUIRK_DEALLOCATE_ZEROES, },
Keith Busch99466e72016-05-02 15:14:24 -06002670 { PCI_VDEVICE(INTEL, 0x0a54),
2671 .driver_data = NVME_QUIRK_STRIPE_SIZE |
Christoph Hellwige850fd12017-04-05 19:21:13 +02002672 NVME_QUIRK_DEALLOCATE_ZEROES, },
David Wayne Fugatef99cb7af2017-07-10 12:39:59 -06002673 { PCI_VDEVICE(INTEL, 0x0a55),
2674 .driver_data = NVME_QUIRK_STRIPE_SIZE |
2675 NVME_QUIRK_DEALLOCATE_ZEROES, },
Andy Lutomirski50af47d2017-05-24 15:06:31 -07002676 { PCI_VDEVICE(INTEL, 0xf1a5), /* Intel 600P/P3100 */
2677 .driver_data = NVME_QUIRK_NO_DEEPEST_PS },
Keith Busch540c8012015-10-22 15:45:06 -06002678 { PCI_VDEVICE(INTEL, 0x5845), /* Qemu emulated controller */
2679 .driver_data = NVME_QUIRK_IDENTIFY_CNS, },
Guilherme G. Piccoli54adc012016-06-14 18:22:41 -03002680 { PCI_DEVICE(0x1c58, 0x0003), /* HGST adapter */
2681 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
Wenbo Wang015282c2016-09-08 12:12:11 -04002682 { PCI_DEVICE(0x1c5f, 0x0540), /* Memblaze Pblaze4 adapter */
2683 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
Martin K. Petersend554b5e2017-06-27 22:27:57 -04002684 { PCI_DEVICE(0x144d, 0xa821), /* Samsung PM1725 */
2685 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
2686 { PCI_DEVICE(0x144d, 0xa822), /* Samsung PM1725a */
2687 .driver_data = NVME_QUIRK_DELAY_BEFORE_CHK_RDY, },
Christoph Hellwig608cc4b2017-09-06 11:45:24 +02002688 { PCI_DEVICE(0x1d1d, 0x1f1f), /* LighNVM qemu device */
2689 .driver_data = NVME_QUIRK_LIGHTNVM, },
2690 { PCI_DEVICE(0x1d1d, 0x2807), /* CNEX WL */
2691 .driver_data = NVME_QUIRK_LIGHTNVM, },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002692 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
Stephan Güntherc74dc782015-11-04 00:49:45 +01002693 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
Daniel Roschka124298b2017-02-22 15:17:29 -07002694 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2003) },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002695 { 0, }
2696};
2697MODULE_DEVICE_TABLE(pci, nvme_id_table);
2698
2699static struct pci_driver nvme_driver = {
2700 .name = "nvme",
2701 .id_table = nvme_id_table,
2702 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002703 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05002704 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06002705 .driver = {
2706 .pm = &nvme_dev_pm_ops,
2707 },
Keith Busch13880f52016-06-20 09:41:06 -06002708 .sriov_configure = nvme_pci_sriov_configure,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002709 .err_handler = &nvme_err_handler,
2710};
2711
2712static int __init nvme_init(void)
2713{
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002714 return pci_register_driver(&nvme_driver);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002715}
2716
2717static void __exit nvme_exit(void)
2718{
2719 pci_unregister_driver(&nvme_driver);
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04002720 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002721}
2722
2723MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
2724MODULE_LICENSE("GPL");
Keith Buschc78b47132014-11-21 15:16:32 -07002725MODULE_VERSION("1.0");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002726module_init(nvme_init);
2727module_exit(nvme_exit);