blob: d4fef8190093e5b330d2f33e5873cc6526e97796 [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
Matthew Wilcox8de05532011-05-12 13:50:28 -040015#include <linux/bitops.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050016#include <linux/blkdev.h>
Matias Bjørlinga4aea562014-11-04 08:20:14 -070017#include <linux/blk-mq.h>
Keith Busch42f61422014-03-24 10:46:25 -060018#include <linux/cpu.h>
Matthew Wilcoxfd63e9ce2011-05-06 08:37:54 -040019#include <linux/delay.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050020#include <linux/errno.h>
21#include <linux/fs.h>
22#include <linux/genhd.h>
Keith Busch4cc09e22014-04-02 15:45:37 -060023#include <linux/hdreg.h>
Matthew Wilcox5aff9382011-05-06 08:45:47 -040024#include <linux/idr.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050025#include <linux/init.h>
26#include <linux/interrupt.h>
27#include <linux/io.h>
28#include <linux/kdev_t.h>
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050029#include <linux/kthread.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050030#include <linux/kernel.h>
31#include <linux/mm.h>
32#include <linux/module.h>
33#include <linux/moduleparam.h>
Keith Busch77bf25e2015-11-26 12:21:29 +010034#include <linux/mutex.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050035#include <linux/pci.h>
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -050036#include <linux/poison.h>
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -040037#include <linux/ptrace.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050038#include <linux/sched.h>
39#include <linux/slab.h>
Keith Busche1e5e562015-02-19 13:39:03 -070040#include <linux/t10-pi.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050041#include <linux/types.h>
Linus Torvalds9cf5c092015-11-06 14:22:15 -080042#include <linux/io-64-nonatomic-lo-hi.h>
Keith Busch1d277a62015-10-15 14:10:52 +020043#include <asm/unaligned.h>
Hitoshi Mitake797a7962012-02-07 11:45:33 +090044
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020045#include "nvme.h"
46
Keith Busch9d43cf62014-05-13 11:42:02 -060047#define NVME_Q_DEPTH 1024
Jens Axboed31af0a2015-03-06 12:56:13 -070048#define NVME_AQ_DEPTH 256
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050049#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
50#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050051
Christoph Hellwig21d34712015-11-26 09:08:36 +010052unsigned char admin_timeout = 60;
Keith Busch9d43cf62014-05-13 11:42:02 -060053module_param(admin_timeout, byte, 0644);
54MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050055
Matthew Wilcoxbd676082014-06-03 23:04:30 -040056unsigned char nvme_io_timeout = 30;
57module_param_named(io_timeout, nvme_io_timeout, byte, 0644);
Keith Buschb3550842014-04-04 11:43:36 -060058MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050059
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +010060unsigned char shutdown_timeout = 5;
Dan McLeran2484f402014-07-01 09:33:32 -060061module_param(shutdown_timeout, byte, 0644);
62MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
63
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050064static int use_threaded_interrupts;
65module_param(use_threaded_interrupts, int, 0);
66
Jon Derrick8ffaadf2015-07-20 10:14:09 -060067static bool use_cmb_sqes = true;
68module_param(use_cmb_sqes, bool, 0644);
69MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
70
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050071static LIST_HEAD(dev_list);
72static struct task_struct *nvme_thread;
Keith Busch9a6b9452013-12-10 13:10:36 -070073static struct workqueue_struct *nvme_workq;
Dan McLeranb9afca32014-04-07 17:10:11 -060074static wait_queue_head_t nvme_kthread_wait;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050075
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010076struct nvme_dev;
77struct nvme_queue;
Christoph Hellwigd4f6c3a2015-11-26 10:51:23 +010078struct nvme_iod;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010079
Christoph Hellwig906678922015-10-02 18:49:23 +020080static int __nvme_reset(struct nvme_dev *dev);
Keith Busch4cc06522015-06-05 10:30:08 -060081static int nvme_reset(struct nvme_dev *dev);
Jens Axboea0fa9642015-11-03 20:37:26 -070082static void nvme_process_cq(struct nvme_queue *nvmeq);
Christoph Hellwigd4f6c3a2015-11-26 10:51:23 +010083static void nvme_unmap_data(struct nvme_dev *dev, struct nvme_iod *iod);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +020084static void nvme_dead_ctrl(struct nvme_dev *dev);
Keith Buschd4b4ff82013-12-10 13:10:37 -070085
Keith Busch4d115422013-12-10 13:10:40 -070086struct async_cmd_info {
87 struct kthread_work work;
88 struct kthread_worker *worker;
Matias Bjørlinga4aea562014-11-04 08:20:14 -070089 struct request *req;
Keith Busch4d115422013-12-10 13:10:40 -070090 u32 result;
91 int status;
92 void *ctx;
93};
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050094
95/*
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010096 * Represents an NVM Express device. Each nvme_dev is a PCI function.
97 */
98struct nvme_dev {
99 struct list_head node;
100 struct nvme_queue **queues;
101 struct blk_mq_tag_set tagset;
102 struct blk_mq_tag_set admin_tagset;
103 u32 __iomem *dbs;
104 struct device *dev;
105 struct dma_pool *prp_page_pool;
106 struct dma_pool *prp_small_pool;
107 unsigned queue_count;
108 unsigned online_queues;
109 unsigned max_qid;
110 int q_depth;
111 u32 db_stride;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100112 struct msix_entry *entry;
113 void __iomem *bar;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100114 struct work_struct reset_work;
115 struct work_struct probe_work;
116 struct work_struct scan_work;
Keith Busch77bf25e2015-11-26 12:21:29 +0100117 struct mutex shutdown_lock;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100118 bool subsystem;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100119 void __iomem *cmb;
120 dma_addr_t cmb_dma_addr;
121 u64 cmb_size;
122 u32 cmbsz;
123
124 struct nvme_ctrl ctrl;
125};
126
127static inline struct nvme_dev *to_nvme_dev(struct nvme_ctrl *ctrl)
128{
129 return container_of(ctrl, struct nvme_dev, ctrl);
130}
131
132/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500133 * An NVM Express queue. Each device has at least two (one for admin
134 * commands and one for I/O commands).
135 */
136struct nvme_queue {
137 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500138 struct nvme_dev *dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -0500139 char irqname[24]; /* nvme4294967295-65535\0 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500140 spinlock_t q_lock;
141 struct nvme_command *sq_cmds;
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600142 struct nvme_command __iomem *sq_cmds_io;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500143 volatile struct nvme_completion *cqes;
Keith Busch42483222015-06-01 09:29:54 -0600144 struct blk_mq_tags **tags;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500145 dma_addr_t sq_dma_addr;
146 dma_addr_t cq_dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500147 u32 __iomem *q_db;
148 u16 q_depth;
Jens Axboe6222d172015-01-15 15:19:10 -0700149 s16 cq_vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500150 u16 sq_head;
151 u16 sq_tail;
152 u16 cq_head;
Keith Buschc30341d2013-12-10 13:10:38 -0700153 u16 qid;
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400154 u8 cq_phase;
155 u8 cqe_seen;
Keith Busch4d115422013-12-10 13:10:40 -0700156 struct async_cmd_info cmdinfo;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500157};
158
159/*
Christoph Hellwig71bd1502015-10-16 07:58:32 +0200160 * The nvme_iod describes the data in an I/O, including the list of PRP
161 * entries. You can't see it in this data structure because C doesn't let
162 * me express that. Use nvme_alloc_iod to ensure there's enough space
163 * allocated to store the PRP list.
164 */
165struct nvme_iod {
166 unsigned long private; /* For the use of the submitter of the I/O */
167 int npages; /* In the PRP list. 0 means small pool in use */
168 int offset; /* Of PRP list */
169 int nents; /* Used in scatterlist */
170 int length; /* Of data, in bytes */
171 dma_addr_t first_dma;
172 struct scatterlist meta_sg[1]; /* metadata requires single contiguous buffer */
173 struct scatterlist sg[0];
174};
175
176/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500177 * Check we didin't inadvertently grow the command struct
178 */
179static inline void _nvme_check_size(void)
180{
181 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
182 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
183 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
184 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
185 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
Vishal Vermaf8ebf842013-03-27 07:13:41 -0400186 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
Keith Buschc30341d2013-12-10 13:10:38 -0700187 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500188 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
189 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
190 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
191 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
Keith Busch6ecec742012-09-26 12:49:27 -0600192 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500193}
194
Keith Buschedd10d32014-04-03 16:45:23 -0600195typedef void (*nvme_completion_fn)(struct nvme_queue *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400196 struct nvme_completion *);
197
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500198struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400199 nvme_completion_fn fn;
200 void *ctx;
Keith Buschc30341d2013-12-10 13:10:38 -0700201 int aborted;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700202 struct nvme_queue *nvmeq;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700203 struct nvme_iod iod[0];
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500204};
205
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700206/*
207 * Max size of iod being embedded in the request payload
208 */
209#define NVME_INT_PAGES 2
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +0100210#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->ctrl.page_size)
Chong Yuanfda631f2015-03-27 09:21:32 +0800211#define NVME_INT_MASK 0x01
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700212
213/*
214 * Will slightly overestimate the number of pages needed. This is OK
215 * as it only leads to a small amount of wasted memory for the lifetime of
216 * the I/O.
217 */
218static int nvme_npages(unsigned size, struct nvme_dev *dev)
219{
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +0100220 unsigned nprps = DIV_ROUND_UP(size + dev->ctrl.page_size,
221 dev->ctrl.page_size);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700222 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
223}
224
225static unsigned int nvme_cmd_size(struct nvme_dev *dev)
226{
227 unsigned int ret = sizeof(struct nvme_cmd_info);
228
229 ret += sizeof(struct nvme_iod);
230 ret += sizeof(__le64 *) * nvme_npages(NVME_INT_BYTES(dev), dev);
231 ret += sizeof(struct scatterlist) * NVME_INT_PAGES;
232
233 return ret;
234}
235
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700236static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
237 unsigned int hctx_idx)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500238{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700239 struct nvme_dev *dev = data;
240 struct nvme_queue *nvmeq = dev->queues[0];
241
Keith Busch42483222015-06-01 09:29:54 -0600242 WARN_ON(hctx_idx != 0);
243 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
244 WARN_ON(nvmeq->tags);
245
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700246 hctx->driver_data = nvmeq;
Keith Busch42483222015-06-01 09:29:54 -0600247 nvmeq->tags = &dev->admin_tagset.tags[0];
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700248 return 0;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500249}
250
Keith Busch4af0e212015-06-08 10:08:13 -0600251static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
252{
253 struct nvme_queue *nvmeq = hctx->driver_data;
254
255 nvmeq->tags = NULL;
256}
257
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700258static int nvme_admin_init_request(void *data, struct request *req,
259 unsigned int hctx_idx, unsigned int rq_idx,
260 unsigned int numa_node)
Keith Busch22404272013-07-15 15:02:20 -0600261{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700262 struct nvme_dev *dev = data;
263 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
264 struct nvme_queue *nvmeq = dev->queues[0];
265
266 BUG_ON(!nvmeq);
267 cmd->nvmeq = nvmeq;
268 return 0;
Keith Busch22404272013-07-15 15:02:20 -0600269}
270
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700271static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
272 unsigned int hctx_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500273{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700274 struct nvme_dev *dev = data;
Keith Busch42483222015-06-01 09:29:54 -0600275 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500276
Keith Busch42483222015-06-01 09:29:54 -0600277 if (!nvmeq->tags)
278 nvmeq->tags = &dev->tagset.tags[hctx_idx];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500279
Keith Busch42483222015-06-01 09:29:54 -0600280 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700281 hctx->driver_data = nvmeq;
282 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500283}
284
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700285static int nvme_init_request(void *data, struct request *req,
286 unsigned int hctx_idx, unsigned int rq_idx,
287 unsigned int numa_node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500288{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700289 struct nvme_dev *dev = data;
290 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
291 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
292
293 BUG_ON(!nvmeq);
294 cmd->nvmeq = nvmeq;
295 return 0;
296}
297
298static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx,
299 nvme_completion_fn handler)
300{
301 cmd->fn = handler;
302 cmd->ctx = ctx;
303 cmd->aborted = 0;
Keith Buschc917dfe2015-01-07 18:55:48 -0700304 blk_mq_start_request(blk_mq_rq_from_pdu(cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500305}
306
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700307static void *iod_get_private(struct nvme_iod *iod)
308{
309 return (void *) (iod->private & ~0x1UL);
310}
311
312/*
313 * If bit 0 is set, the iod is embedded in the request payload.
314 */
315static bool iod_should_kfree(struct nvme_iod *iod)
316{
Chong Yuanfda631f2015-03-27 09:21:32 +0800317 return (iod->private & NVME_INT_MASK) == 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700318}
319
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400320/* Special values must be less than 0x1000 */
321#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500322#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
323#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
324#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500325
Keith Buschedd10d32014-04-03 16:45:23 -0600326static void special_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400327 struct nvme_completion *cqe)
328{
329 if (ctx == CMD_CTX_CANCELLED)
330 return;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400331 if (ctx == CMD_CTX_COMPLETED) {
Keith Buschedd10d32014-04-03 16:45:23 -0600332 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400333 "completed id %d twice on queue %d\n",
334 cqe->command_id, le16_to_cpup(&cqe->sq_id));
335 return;
336 }
337 if (ctx == CMD_CTX_INVALID) {
Keith Buschedd10d32014-04-03 16:45:23 -0600338 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400339 "invalid id %d completed on queue %d\n",
340 cqe->command_id, le16_to_cpup(&cqe->sq_id));
341 return;
342 }
Keith Buschedd10d32014-04-03 16:45:23 -0600343 dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400344}
345
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700346static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn)
347{
348 void *ctx;
349
350 if (fn)
351 *fn = cmd->fn;
352 ctx = cmd->ctx;
353 cmd->fn = special_completion;
354 cmd->ctx = CMD_CTX_CANCELLED;
355 return ctx;
356}
357
358static void async_req_completion(struct nvme_queue *nvmeq, void *ctx,
359 struct nvme_completion *cqe)
360{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700361 u32 result = le32_to_cpup(&cqe->result);
362 u16 status = le16_to_cpup(&cqe->status) >> 1;
363
364 if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ)
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100365 ++nvmeq->dev->ctrl.event_limit;
Keith Buscha5768aa2015-06-01 14:28:14 -0600366 if (status != NVME_SC_SUCCESS)
367 return;
368
369 switch (result & 0xff07) {
370 case NVME_AER_NOTICE_NS_CHANGED:
371 dev_info(nvmeq->q_dmadev, "rescanning\n");
372 schedule_work(&nvmeq->dev->scan_work);
373 default:
374 dev_warn(nvmeq->q_dmadev, "async event result %08x\n", result);
375 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700376}
377
378static void abort_completion(struct nvme_queue *nvmeq, void *ctx,
379 struct nvme_completion *cqe)
380{
381 struct request *req = ctx;
382
383 u16 status = le16_to_cpup(&cqe->status) >> 1;
384 u32 result = le32_to_cpup(&cqe->result);
385
Keith Busch42483222015-06-01 09:29:54 -0600386 blk_mq_free_request(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700387
388 dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100389 ++nvmeq->dev->ctrl.abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700390}
391
Keith Buschedd10d32014-04-03 16:45:23 -0600392static void async_completion(struct nvme_queue *nvmeq, void *ctx,
Keith Busch4d115422013-12-10 13:10:40 -0700393 struct nvme_completion *cqe)
394{
395 struct async_cmd_info *cmdinfo = ctx;
396 cmdinfo->result = le32_to_cpup(&cqe->result);
397 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
398 queue_kthread_work(cmdinfo->worker, &cmdinfo->work);
Keith Busch42483222015-06-01 09:29:54 -0600399 blk_mq_free_request(cmdinfo->req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700400}
401
402static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq,
403 unsigned int tag)
404{
Keith Busch42483222015-06-01 09:29:54 -0600405 struct request *req = blk_mq_tag_to_rq(*nvmeq->tags, tag);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700406
407 return blk_mq_rq_to_pdu(req);
Keith Busch4d115422013-12-10 13:10:40 -0700408}
409
Matthew Wilcox184d2942011-05-11 21:36:38 -0400410/*
411 * Called with local interrupts disabled and the q_lock held. May not sleep.
412 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700413static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400414 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500415{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700416 struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400417 void *ctx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700418 if (tag >= nvmeq->q_depth) {
419 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500420 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400421 }
Keith Busch859361a2012-08-02 14:05:59 -0600422 if (fn)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700423 *fn = cmd->fn;
424 ctx = cmd->ctx;
425 cmd->fn = special_completion;
426 cmd->ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400427 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500428}
429
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500430/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400431 * 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;
Matthew Wilcox75478812011-02-16 09:59:59 -0500449 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500450 nvmeq->sq_tail = tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500451}
452
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530453static void nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700454{
455 unsigned long flags;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700456 spin_lock_irqsave(&nvmeq->q_lock, flags);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530457 __nvme_submit_cmd(nvmeq, cmd);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700458 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700459}
460
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500461static __le64 **iod_list(struct nvme_iod *iod)
462{
463 return ((void *)iod) + iod->offset;
464}
465
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700466static inline void iod_init(struct nvme_iod *iod, unsigned nbytes,
467 unsigned nseg, unsigned long private)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500468{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700469 iod->private = private;
470 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
471 iod->npages = -1;
472 iod->length = nbytes;
473 iod->nents = 0;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500474}
475
476static struct nvme_iod *
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700477__nvme_alloc_iod(unsigned nseg, unsigned bytes, struct nvme_dev *dev,
478 unsigned long priv, gfp_t gfp)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500479{
480 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700481 sizeof(__le64 *) * nvme_npages(bytes, dev) +
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500482 sizeof(struct scatterlist) * nseg, gfp);
483
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700484 if (iod)
485 iod_init(iod, bytes, nseg, priv);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500486
487 return iod;
488}
489
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700490static struct nvme_iod *nvme_alloc_iod(struct request *rq, struct nvme_dev *dev,
491 gfp_t gfp)
492{
493 unsigned size = !(rq->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(rq) :
494 sizeof(struct nvme_dsm_range);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700495 struct nvme_iod *iod;
496
497 if (rq->nr_phys_segments <= NVME_INT_PAGES &&
498 size <= NVME_INT_BYTES(dev)) {
499 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(rq);
500
501 iod = cmd->iod;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700502 iod_init(iod, size, rq->nr_phys_segments,
Chong Yuanfda631f2015-03-27 09:21:32 +0800503 (unsigned long) rq | NVME_INT_MASK);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700504 return iod;
505 }
506
507 return __nvme_alloc_iod(rq->nr_phys_segments, size, dev,
508 (unsigned long) rq, gfp);
509}
510
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200511static void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500512{
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +0100513 const int last_prp = dev->ctrl.page_size / 8 - 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500514 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500515 __le64 **list = iod_list(iod);
516 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500517
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500518 if (iod->npages == 0)
519 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
520 for (i = 0; i < iod->npages; i++) {
521 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500522 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500523 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500524 prp_dma = next_prp_dma;
525 }
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700526
527 if (iod_should_kfree(iod))
528 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500529}
530
Keith Busch52b68d72015-02-23 09:16:21 -0700531#ifdef CONFIG_BLK_DEV_INTEGRITY
Keith Busche1e5e562015-02-19 13:39:03 -0700532static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
533{
534 if (be32_to_cpu(pi->ref_tag) == v)
535 pi->ref_tag = cpu_to_be32(p);
536}
537
538static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
539{
540 if (be32_to_cpu(pi->ref_tag) == p)
541 pi->ref_tag = cpu_to_be32(v);
542}
543
544/**
545 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
546 *
547 * The virtual start sector is the one that was originally submitted by the
548 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
549 * start sector may be different. Remap protection information to match the
550 * physical LBA on writes, and back to the original seed on reads.
551 *
552 * Type 0 and 3 do not have a ref tag, so no remapping required.
553 */
554static void nvme_dif_remap(struct request *req,
555 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
556{
557 struct nvme_ns *ns = req->rq_disk->private_data;
558 struct bio_integrity_payload *bip;
559 struct t10_pi_tuple *pi;
560 void *p, *pmap;
561 u32 i, nlb, ts, phys, virt;
562
563 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
564 return;
565
566 bip = bio_integrity(req->bio);
567 if (!bip)
568 return;
569
570 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
Keith Busche1e5e562015-02-19 13:39:03 -0700571
572 p = pmap;
573 virt = bip_get_seed(bip);
574 phys = nvme_block_nr(ns, blk_rq_pos(req));
575 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
Dan Williamsac6fc482015-10-21 13:20:18 -0400576 ts = ns->disk->queue->integrity.tuple_size;
Keith Busche1e5e562015-02-19 13:39:03 -0700577
578 for (i = 0; i < nlb; i++, virt++, phys++) {
579 pi = (struct t10_pi_tuple *)p;
580 dif_swap(phys, virt, pi);
581 p += ts;
582 }
583 kunmap_atomic(pmap);
584}
Keith Busch52b68d72015-02-23 09:16:21 -0700585#else /* CONFIG_BLK_DEV_INTEGRITY */
586static void nvme_dif_remap(struct request *req,
587 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
588{
589}
590static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
591{
592}
593static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
594{
595}
Keith Busch52b68d72015-02-23 09:16:21 -0700596#endif
597
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700598static void req_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500599 struct nvme_completion *cqe)
600{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500601 struct nvme_iod *iod = ctx;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700602 struct request *req = iod_get_private(iod);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700603 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500604 u16 status = le16_to_cpup(&cqe->status) >> 1;
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200605 int error = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500606
Keith Buschedd10d32014-04-03 16:45:23 -0600607 if (unlikely(status)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700608 if (!(status & NVME_SC_DNR || blk_noretry_request(req))
609 && (jiffies - req->start_time) < req->timeout) {
Keith Buschc9d3bf82015-01-07 18:55:52 -0700610 unsigned long flags;
611
Christoph Hellwigd4f6c3a2015-11-26 10:51:23 +0100612 nvme_unmap_data(nvmeq->dev, iod);
613
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700614 blk_mq_requeue_request(req);
Keith Buschc9d3bf82015-01-07 18:55:52 -0700615 spin_lock_irqsave(req->q->queue_lock, flags);
616 if (!blk_queue_stopped(req->q))
617 blk_mq_kick_requeue_list(req->q);
618 spin_unlock_irqrestore(req->q->queue_lock, flags);
Christoph Hellwigd4f6c3a2015-11-26 10:51:23 +0100619 return;
Keith Buschedd10d32014-04-03 16:45:23 -0600620 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200621
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200622 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
Keith Busch17188bb42015-06-08 10:08:14 -0600623 if (cmd_rq->ctx == CMD_CTX_CANCELLED)
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200624 error = -EINTR;
625 else
626 error = status;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200627 } else {
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200628 error = nvme_error_status(status);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200629 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200630 }
631
Keith Buscha0a931d2015-05-22 12:28:31 -0600632 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
633 u32 result = le32_to_cpup(&cqe->result);
634 req->special = (void *)(uintptr_t)result;
635 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700636
637 if (cmd_rq->aborted)
Christoph Hellwige75ec752015-05-22 11:12:39 +0200638 dev_warn(nvmeq->dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700639 "completing aborted command with status:%04x\n",
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200640 error);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700641
Christoph Hellwigd4f6c3a2015-11-26 10:51:23 +0100642 nvme_unmap_data(nvmeq->dev, iod);
643 blk_mq_complete_request(req, error);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500644}
645
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200646static bool nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod,
647 int total_len)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500648{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500649 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500650 int length = total_len;
651 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500652 int dma_len = sg_dma_len(sg);
653 u64 dma_addr = sg_dma_address(sg);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +0100654 u32 page_size = dev->ctrl.page_size;
Murali Iyerf137e0f2015-03-26 11:07:51 -0500655 int offset = dma_addr & (page_size - 1);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500656 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500657 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500658 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500659 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500660
Keith Busch1d090622014-06-23 11:34:01 -0600661 length -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500662 if (length <= 0)
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200663 return true;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500664
Keith Busch1d090622014-06-23 11:34:01 -0600665 dma_len -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500666 if (dma_len) {
Keith Busch1d090622014-06-23 11:34:01 -0600667 dma_addr += (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500668 } else {
669 sg = sg_next(sg);
670 dma_addr = sg_dma_address(sg);
671 dma_len = sg_dma_len(sg);
672 }
673
Keith Busch1d090622014-06-23 11:34:01 -0600674 if (length <= page_size) {
Keith Buschedd10d32014-04-03 16:45:23 -0600675 iod->first_dma = dma_addr;
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200676 return true;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500677 }
678
Keith Busch1d090622014-06-23 11:34:01 -0600679 nprps = DIV_ROUND_UP(length, page_size);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500680 if (nprps <= (256 / 8)) {
681 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500682 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500683 } else {
684 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500685 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500686 }
687
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200688 prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400689 if (!prp_list) {
Keith Buschedd10d32014-04-03 16:45:23 -0600690 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500691 iod->npages = -1;
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200692 return false;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400693 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500694 list[0] = prp_list;
695 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500696 i = 0;
697 for (;;) {
Keith Busch1d090622014-06-23 11:34:01 -0600698 if (i == page_size >> 3) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500699 __le64 *old_prp_list = prp_list;
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200700 prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500701 if (!prp_list)
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200702 return false;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500703 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400704 prp_list[0] = old_prp_list[i - 1];
705 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
706 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500707 }
708 prp_list[i++] = cpu_to_le64(dma_addr);
Keith Busch1d090622014-06-23 11:34:01 -0600709 dma_len -= page_size;
710 dma_addr += page_size;
711 length -= page_size;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500712 if (length <= 0)
713 break;
714 if (dma_len > 0)
715 continue;
716 BUG_ON(dma_len < 0);
717 sg = sg_next(sg);
718 dma_addr = sg_dma_address(sg);
719 dma_len = sg_dma_len(sg);
720 }
721
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200722 return true;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500723}
724
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200725static int nvme_map_data(struct nvme_dev *dev, struct nvme_iod *iod,
726 struct nvme_command *cmnd)
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200727{
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200728 struct request *req = iod_get_private(iod);
729 struct request_queue *q = req->q;
730 enum dma_data_direction dma_dir = rq_data_dir(req) ?
731 DMA_TO_DEVICE : DMA_FROM_DEVICE;
732 int ret = BLK_MQ_RQ_QUEUE_ERROR;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200733
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200734 sg_init_table(iod->sg, req->nr_phys_segments);
735 iod->nents = blk_rq_map_sg(q, req, iod->sg);
736 if (!iod->nents)
737 goto out;
738
739 ret = BLK_MQ_RQ_QUEUE_BUSY;
740 if (!dma_map_sg(dev->dev, iod->sg, iod->nents, dma_dir))
741 goto out;
742
743 if (!nvme_setup_prps(dev, iod, blk_rq_bytes(req)))
744 goto out_unmap;
745
746 ret = BLK_MQ_RQ_QUEUE_ERROR;
747 if (blk_integrity_rq(req)) {
748 if (blk_rq_count_integrity_sg(q, req->bio) != 1)
749 goto out_unmap;
750
751 sg_init_table(iod->meta_sg, 1);
752 if (blk_rq_map_integrity_sg(q, req->bio, iod->meta_sg) != 1)
753 goto out_unmap;
754
755 if (rq_data_dir(req))
756 nvme_dif_remap(req, nvme_dif_prep);
757
758 if (!dma_map_sg(dev->dev, iod->meta_sg, 1, dma_dir))
759 goto out_unmap;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200760 }
761
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200762 cmnd->rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
763 cmnd->rw.prp2 = cpu_to_le64(iod->first_dma);
764 if (blk_integrity_rq(req))
765 cmnd->rw.metadata = cpu_to_le64(sg_dma_address(iod->meta_sg));
766 return BLK_MQ_RQ_QUEUE_OK;
767
768out_unmap:
769 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
770out:
771 return ret;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200772}
773
Christoph Hellwigd4f6c3a2015-11-26 10:51:23 +0100774static void nvme_unmap_data(struct nvme_dev *dev, struct nvme_iod *iod)
775{
776 struct request *req = iod_get_private(iod);
777 enum dma_data_direction dma_dir = rq_data_dir(req) ?
778 DMA_TO_DEVICE : DMA_FROM_DEVICE;
779
780 if (iod->nents) {
781 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
782 if (blk_integrity_rq(req)) {
783 if (!rq_data_dir(req))
784 nvme_dif_remap(req, nvme_dif_complete);
785 dma_unmap_sg(dev->dev, iod->meta_sg, 1, dma_dir);
786 }
787 }
788
789 nvme_free_iod(dev, iod);
790}
791
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700792/*
793 * We reuse the small pool to allocate the 16-byte range here as it is not
794 * worth having a special pool for these or additional cases to handle freeing
795 * the iod.
796 */
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200797static int nvme_setup_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns,
798 struct nvme_iod *iod, struct nvme_command *cmnd)
Keith Busch0e5e4f02012-11-09 16:33:05 -0700799{
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200800 struct request *req = iod_get_private(iod);
801 struct nvme_dsm_range *range;
802
803 range = dma_pool_alloc(nvmeq->dev->prp_small_pool, GFP_ATOMIC,
804 &iod->first_dma);
805 if (!range)
806 return BLK_MQ_RQ_QUEUE_BUSY;
807 iod_list(iod)[0] = (__le64 *)range;
808 iod->npages = 0;
Keith Busch0e5e4f02012-11-09 16:33:05 -0700809
Keith Busch0e5e4f02012-11-09 16:33:05 -0700810 range->cattr = cpu_to_le32(0);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700811 range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift);
812 range->slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
Keith Busch0e5e4f02012-11-09 16:33:05 -0700813
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200814 memset(cmnd, 0, sizeof(*cmnd));
815 cmnd->dsm.opcode = nvme_cmd_dsm;
816 cmnd->dsm.nsid = cpu_to_le32(ns->ns_id);
817 cmnd->dsm.prp1 = cpu_to_le64(iod->first_dma);
818 cmnd->dsm.nr = 0;
819 cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
820 return BLK_MQ_RQ_QUEUE_OK;
Keith Busch0e5e4f02012-11-09 16:33:05 -0700821}
822
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200823/*
824 * NOTE: ns is NULL when called on the admin queue.
825 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700826static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
827 const struct blk_mq_queue_data *bd)
Keith Busch53562be2014-04-29 11:41:29 -0600828{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700829 struct nvme_ns *ns = hctx->queue->queuedata;
830 struct nvme_queue *nvmeq = hctx->driver_data;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200831 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700832 struct request *req = bd->rq;
833 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
Keith Buschedd10d32014-04-03 16:45:23 -0600834 struct nvme_iod *iod;
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200835 struct nvme_command cmnd;
836 int ret = BLK_MQ_RQ_QUEUE_OK;
Keith Buschedd10d32014-04-03 16:45:23 -0600837
Keith Busche1e5e562015-02-19 13:39:03 -0700838 /*
839 * If formated with metadata, require the block layer provide a buffer
840 * unless this namespace is formated such that the metadata can be
841 * stripped/generated by the controller with PRACT=1.
842 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200843 if (ns && ns->ms && !blk_integrity_rq(req)) {
Keith Busch71feb362015-06-19 11:07:30 -0600844 if (!(ns->pi_type && ns->ms == 8) &&
845 req->cmd_type != REQ_TYPE_DRV_PRIV) {
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200846 blk_mq_complete_request(req, -EFAULT);
Keith Busche1e5e562015-02-19 13:39:03 -0700847 return BLK_MQ_RQ_QUEUE_OK;
848 }
849 }
850
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200851 iod = nvme_alloc_iod(req, dev, GFP_ATOMIC);
Keith Buschedd10d32014-04-03 16:45:23 -0600852 if (!iod)
Jens Axboefe543032014-12-11 13:58:39 -0700853 return BLK_MQ_RQ_QUEUE_BUSY;
Keith Buschedd10d32014-04-03 16:45:23 -0600854
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700855 if (req->cmd_flags & REQ_DISCARD) {
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200856 ret = nvme_setup_discard(nvmeq, ns, iod, &cmnd);
857 } else {
858 if (req->cmd_type == REQ_TYPE_DRV_PRIV)
859 memcpy(&cmnd, req->cmd, sizeof(cmnd));
860 else if (req->cmd_flags & REQ_FLUSH)
861 nvme_setup_flush(ns, &cmnd);
862 else
863 nvme_setup_rw(ns, req, &cmnd);
Keith Buschedd10d32014-04-03 16:45:23 -0600864
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200865 if (req->nr_phys_segments)
866 ret = nvme_map_data(dev, iod, &cmnd);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700867 }
868
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200869 if (ret)
870 goto out;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700871
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200872 cmnd.common.command_id = req->tag;
873 nvme_set_info(cmd, iod, req_completion);
874
875 spin_lock_irq(&nvmeq->q_lock);
876 __nvme_submit_cmd(nvmeq, &cmnd);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700877 nvme_process_cq(nvmeq);
878 spin_unlock_irq(&nvmeq->q_lock);
879 return BLK_MQ_RQ_QUEUE_OK;
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200880out:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200881 nvme_free_iod(dev, iod);
Christoph Hellwigba1ca372015-10-16 07:58:38 +0200882 return ret;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500883}
884
Jens Axboea0fa9642015-11-03 20:37:26 -0700885static void __nvme_process_cq(struct nvme_queue *nvmeq, unsigned int *tag)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500886{
Matthew Wilcox82123462011-01-20 13:24:06 -0500887 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500888
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500889 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500890 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500891
892 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400893 void *ctx;
894 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500895 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -0500896 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500897 break;
898 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
899 if (++head == nvmeq->q_depth) {
900 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500901 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500902 }
Jens Axboea0fa9642015-11-03 20:37:26 -0700903 if (tag && *tag == cqe.command_id)
904 *tag = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700905 ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn);
Keith Buschedd10d32014-04-03 16:45:23 -0600906 fn(nvmeq, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500907 }
908
909 /* If the controller ignores the cq head doorbell and continuously
910 * writes to the queue, it is theoretically possible to wrap around
911 * the queue twice and mistakenly return IRQ_NONE. Linux only
912 * requires that 0.1% of your interrupts are handled, so this isn't
913 * a big problem.
914 */
Matthew Wilcox82123462011-01-20 13:24:06 -0500915 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Jens Axboea0fa9642015-11-03 20:37:26 -0700916 return;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500917
Keith Busch604e8c82015-11-20 08:38:13 -0700918 if (likely(nvmeq->cq_vector >= 0))
919 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500920 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500921 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500922
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400923 nvmeq->cqe_seen = 1;
Jens Axboea0fa9642015-11-03 20:37:26 -0700924}
925
926static void nvme_process_cq(struct nvme_queue *nvmeq)
927{
928 __nvme_process_cq(nvmeq, NULL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500929}
930
931static irqreturn_t nvme_irq(int irq, void *data)
932{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500933 irqreturn_t result;
934 struct nvme_queue *nvmeq = data;
935 spin_lock(&nvmeq->q_lock);
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400936 nvme_process_cq(nvmeq);
937 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
938 nvmeq->cqe_seen = 0;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500939 spin_unlock(&nvmeq->q_lock);
940 return result;
941}
942
943static irqreturn_t nvme_irq_check(int irq, void *data)
944{
945 struct nvme_queue *nvmeq = data;
946 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
947 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
948 return IRQ_NONE;
949 return IRQ_WAKE_THREAD;
950}
951
Jens Axboea0fa9642015-11-03 20:37:26 -0700952static int nvme_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag)
953{
954 struct nvme_queue *nvmeq = hctx->driver_data;
955
956 if ((le16_to_cpu(nvmeq->cqes[nvmeq->cq_head].status) & 1) ==
957 nvmeq->cq_phase) {
958 spin_lock_irq(&nvmeq->q_lock);
959 __nvme_process_cq(nvmeq, &tag);
960 spin_unlock_irq(&nvmeq->q_lock);
961
962 if (tag == -1)
963 return 1;
964 }
965
966 return 0;
967}
968
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700969static int nvme_submit_async_admin_req(struct nvme_dev *dev)
970{
971 struct nvme_queue *nvmeq = dev->queues[0];
972 struct nvme_command c;
973 struct nvme_cmd_info *cmd_info;
974 struct request *req;
975
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100976 req = blk_mq_alloc_request(dev->ctrl.admin_q, WRITE,
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100977 BLK_MQ_REQ_NOWAIT | BLK_MQ_REQ_RESERVED);
Dan Carpenter9f173b32014-11-05 23:39:09 +0300978 if (IS_ERR(req))
979 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700980
Keith Buschc917dfe2015-01-07 18:55:48 -0700981 req->cmd_flags |= REQ_NO_TIMEOUT;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700982 cmd_info = blk_mq_rq_to_pdu(req);
Keith Busch1efccc92015-03-31 10:37:17 -0600983 nvme_set_info(cmd_info, NULL, async_req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700984
985 memset(&c, 0, sizeof(c));
986 c.common.opcode = nvme_admin_async_event;
987 c.common.command_id = req->tag;
988
Keith Busch42483222015-06-01 09:29:54 -0600989 blk_mq_free_request(req);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530990 __nvme_submit_cmd(nvmeq, &c);
991 return 0;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700992}
993
994static int nvme_submit_admin_async_cmd(struct nvme_dev *dev,
Keith Busch4d115422013-12-10 13:10:40 -0700995 struct nvme_command *cmd,
996 struct async_cmd_info *cmdinfo, unsigned timeout)
997{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700998 struct nvme_queue *nvmeq = dev->queues[0];
999 struct request *req;
1000 struct nvme_cmd_info *cmd_rq;
Keith Busch4d115422013-12-10 13:10:40 -07001001
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001002 req = blk_mq_alloc_request(dev->ctrl.admin_q, WRITE, 0);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001003 if (IS_ERR(req))
1004 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001005
1006 req->timeout = timeout;
1007 cmd_rq = blk_mq_rq_to_pdu(req);
1008 cmdinfo->req = req;
1009 nvme_set_info(cmd_rq, cmdinfo, async_completion);
Keith Busch4d115422013-12-10 13:10:40 -07001010 cmdinfo->status = -EINTR;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001011
1012 cmd->common.command_id = req->tag;
1013
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301014 nvme_submit_cmd(nvmeq, cmd);
1015 return 0;
Keith Busch4d115422013-12-10 13:10:40 -07001016}
1017
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001018static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
1019{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001020 struct nvme_command c;
1021
1022 memset(&c, 0, sizeof(c));
1023 c.delete_queue.opcode = opcode;
1024 c.delete_queue.qid = cpu_to_le16(id);
1025
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001026 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001027}
1028
1029static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
1030 struct nvme_queue *nvmeq)
1031{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001032 struct nvme_command c;
1033 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
1034
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001035 /*
1036 * Note: we (ab)use the fact the the prp fields survive if no data
1037 * is attached to the request.
1038 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001039 memset(&c, 0, sizeof(c));
1040 c.create_cq.opcode = nvme_admin_create_cq;
1041 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1042 c.create_cq.cqid = cpu_to_le16(qid);
1043 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1044 c.create_cq.cq_flags = cpu_to_le16(flags);
1045 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
1046
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001047 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001048}
1049
1050static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1051 struct nvme_queue *nvmeq)
1052{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001053 struct nvme_command c;
1054 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
1055
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001056 /*
1057 * Note: we (ab)use the fact the the prp fields survive if no data
1058 * is attached to the request.
1059 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001060 memset(&c, 0, sizeof(c));
1061 c.create_sq.opcode = nvme_admin_create_sq;
1062 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1063 c.create_sq.sqid = cpu_to_le16(qid);
1064 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1065 c.create_sq.sq_flags = cpu_to_le16(flags);
1066 c.create_sq.cqid = cpu_to_le16(qid);
1067
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001068 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001069}
1070
1071static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1072{
1073 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1074}
1075
1076static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1077{
1078 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1079}
1080
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001081/**
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001082 * nvme_abort_req - Attempt aborting a request
Keith Buschc30341d2013-12-10 13:10:38 -07001083 *
1084 * Schedule controller reset if the command was already aborted once before and
1085 * still hasn't been returned to the driver, or if this is the admin queue.
1086 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001087static void nvme_abort_req(struct request *req)
Keith Buschc30341d2013-12-10 13:10:38 -07001088{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001089 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
1090 struct nvme_queue *nvmeq = cmd_rq->nvmeq;
Keith Buschc30341d2013-12-10 13:10:38 -07001091 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001092 struct request *abort_req;
1093 struct nvme_cmd_info *abort_cmd;
1094 struct nvme_command cmd;
Keith Buschc30341d2013-12-10 13:10:38 -07001095
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001096 if (!nvmeq->qid || cmd_rq->aborted) {
Christoph Hellwig4c9f7482015-10-22 14:03:34 +02001097 spin_lock_irq(&dev_list_lock);
Christoph Hellwig906678922015-10-02 18:49:23 +02001098 if (!__nvme_reset(dev)) {
1099 dev_warn(dev->dev,
1100 "I/O %d QID %d timeout, reset controller\n",
1101 req->tag, nvmeq->qid);
1102 }
Christoph Hellwig4c9f7482015-10-22 14:03:34 +02001103 spin_unlock_irq(&dev_list_lock);
Keith Buschc30341d2013-12-10 13:10:38 -07001104 return;
1105 }
1106
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001107 if (!dev->ctrl.abort_limit)
Keith Buschc30341d2013-12-10 13:10:38 -07001108 return;
1109
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001110 abort_req = blk_mq_alloc_request(dev->ctrl.admin_q, WRITE,
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001111 BLK_MQ_REQ_NOWAIT);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001112 if (IS_ERR(abort_req))
Keith Buschc30341d2013-12-10 13:10:38 -07001113 return;
1114
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001115 abort_cmd = blk_mq_rq_to_pdu(abort_req);
1116 nvme_set_info(abort_cmd, abort_req, abort_completion);
1117
Keith Buschc30341d2013-12-10 13:10:38 -07001118 memset(&cmd, 0, sizeof(cmd));
1119 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001120 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001121 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001122 cmd.abort.command_id = abort_req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001123
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001124 --dev->ctrl.abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001125 cmd_rq->aborted = 1;
Keith Buschc30341d2013-12-10 13:10:38 -07001126
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001127 dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag,
Keith Buschc30341d2013-12-10 13:10:38 -07001128 nvmeq->qid);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301129 nvme_submit_cmd(dev->queues[0], &cmd);
Keith Buschc30341d2013-12-10 13:10:38 -07001130}
1131
Keith Busch42483222015-06-01 09:29:54 -06001132static void nvme_cancel_queue_ios(struct request *req, void *data, bool reserved)
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001133{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001134 struct nvme_queue *nvmeq = data;
1135 void *ctx;
1136 nvme_completion_fn fn;
1137 struct nvme_cmd_info *cmd;
Keith Buschcef6a942015-01-07 18:55:51 -07001138 struct nvme_completion cqe;
1139
1140 if (!blk_mq_request_started(req))
1141 return;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001142
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001143 cmd = blk_mq_rq_to_pdu(req);
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001144
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001145 if (cmd->ctx == CMD_CTX_CANCELLED)
1146 return;
1147
Keith Buschcef6a942015-01-07 18:55:51 -07001148 if (blk_queue_dying(req->q))
1149 cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1);
1150 else
1151 cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
1152
1153
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001154 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n",
1155 req->tag, nvmeq->qid);
1156 ctx = cancel_cmd_info(cmd, &fn);
1157 fn(nvmeq, ctx, &cqe);
1158}
1159
1160static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1161{
1162 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
1163 struct nvme_queue *nvmeq = cmd->nvmeq;
1164
Keith Busch07836e62015-02-19 10:34:48 -07001165 dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag,
1166 nvmeq->qid);
Keith Busch07836e62015-02-19 10:34:48 -07001167 nvme_abort_req(req);
Keith Busch07836e62015-02-19 10:34:48 -07001168
Keith Busch7a509a62015-01-07 18:55:53 -07001169 /*
1170 * The aborted req will be completed on receiving the abort req.
1171 * We enable the timer again. If hit twice, it'll cause a device reset,
1172 * as the device then is in a faulty state.
1173 */
Keith Busch07836e62015-02-19 10:34:48 -07001174 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001175}
1176
Keith Buschf435c282014-07-07 09:14:42 -06001177static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001178{
1179 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1180 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001181 if (nvmeq->sq_cmds)
1182 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
Matthew Wilcox9e866772012-08-03 13:55:56 -04001183 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1184 kfree(nvmeq);
1185}
1186
Keith Buscha1a5ef92013-12-16 13:50:00 -05001187static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001188{
1189 int i;
1190
Keith Buscha1a5ef92013-12-16 13:50:00 -05001191 for (i = dev->queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001192 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch22404272013-07-15 15:02:20 -06001193 dev->queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001194 dev->queues[i] = NULL;
Keith Buschf435c282014-07-07 09:14:42 -06001195 nvme_free_queue(nvmeq);
kaoudis121c7ad2015-01-14 21:01:58 -07001196 }
Keith Busch22404272013-07-15 15:02:20 -06001197}
1198
Keith Busch4d115422013-12-10 13:10:40 -07001199/**
1200 * nvme_suspend_queue - put queue into suspended state
1201 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001202 */
1203static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001204{
Keith Busch2b25d982014-12-22 12:59:04 -07001205 int vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001206
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001207 spin_lock_irq(&nvmeq->q_lock);
Keith Busch2b25d982014-12-22 12:59:04 -07001208 if (nvmeq->cq_vector == -1) {
1209 spin_unlock_irq(&nvmeq->q_lock);
1210 return 1;
1211 }
1212 vector = nvmeq->dev->entry[nvmeq->cq_vector].vector;
Keith Busch42f61422014-03-24 10:46:25 -06001213 nvmeq->dev->online_queues--;
Keith Busch2b25d982014-12-22 12:59:04 -07001214 nvmeq->cq_vector = -1;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001215 spin_unlock_irq(&nvmeq->q_lock);
1216
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001217 if (!nvmeq->qid && nvmeq->dev->ctrl.admin_q)
1218 blk_mq_freeze_queue_start(nvmeq->dev->ctrl.admin_q);
Keith Busch6df3dbc2015-03-26 13:49:33 -06001219
Matthew Wilcoxaba20802011-03-27 08:52:06 -04001220 irq_set_affinity_hint(vector, NULL);
1221 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001222
Keith Busch4d115422013-12-10 13:10:40 -07001223 return 0;
1224}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001225
Keith Busch4d115422013-12-10 13:10:40 -07001226static void nvme_clear_queue(struct nvme_queue *nvmeq)
1227{
Keith Busch22404272013-07-15 15:02:20 -06001228 spin_lock_irq(&nvmeq->q_lock);
Keith Busch42483222015-06-01 09:29:54 -06001229 if (nvmeq->tags && *nvmeq->tags)
1230 blk_mq_all_tag_busy_iter(*nvmeq->tags, nvme_cancel_queue_ios, nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001231 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001232}
1233
Keith Busch4d115422013-12-10 13:10:40 -07001234static void nvme_disable_queue(struct nvme_dev *dev, int qid)
1235{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001236 struct nvme_queue *nvmeq = dev->queues[qid];
Keith Busch4d115422013-12-10 13:10:40 -07001237
1238 if (!nvmeq)
1239 return;
1240 if (nvme_suspend_queue(nvmeq))
1241 return;
1242
Keith Busch0e53d182013-12-10 13:10:39 -07001243 /* Don't tell the adapter to delete the admin queue.
1244 * Don't tell a removed adapter to delete IO queues. */
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001245 if (qid && readl(dev->bar + NVME_REG_CSTS) != -1) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001246 adapter_delete_sq(dev, qid);
1247 adapter_delete_cq(dev, qid);
1248 }
Keith Busch07836e62015-02-19 10:34:48 -07001249
1250 spin_lock_irq(&nvmeq->q_lock);
1251 nvme_process_cq(nvmeq);
1252 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001253}
1254
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001255static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1256 int entry_size)
1257{
1258 int q_depth = dev->q_depth;
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001259 unsigned q_size_aligned = roundup(q_depth * entry_size,
1260 dev->ctrl.page_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001261
1262 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
Jon Derrickc45f5c92015-07-21 15:08:13 -06001263 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001264 mem_per_q = round_down(mem_per_q, dev->ctrl.page_size);
Jon Derrickc45f5c92015-07-21 15:08:13 -06001265 q_depth = div_u64(mem_per_q, entry_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001266
1267 /*
1268 * Ensure the reduced q_depth is above some threshold where it
1269 * would be better to map queues in system memory with the
1270 * original depth
1271 */
1272 if (q_depth < 64)
1273 return -ENOMEM;
1274 }
1275
1276 return q_depth;
1277}
1278
1279static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1280 int qid, int depth)
1281{
1282 if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) {
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001283 unsigned offset = (qid - 1) * roundup(SQ_SIZE(depth),
1284 dev->ctrl.page_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001285 nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset;
1286 nvmeq->sq_cmds_io = dev->cmb + offset;
1287 } else {
1288 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1289 &nvmeq->sq_dma_addr, GFP_KERNEL);
1290 if (!nvmeq->sq_cmds)
1291 return -ENOMEM;
1292 }
1293
1294 return 0;
1295}
1296
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001297static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
Keith Busch2b25d982014-12-22 12:59:04 -07001298 int depth)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001299{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001300 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001301 if (!nvmeq)
1302 return NULL;
1303
Christoph Hellwige75ec752015-05-22 11:12:39 +02001304 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
Joe Perches4d51abf2014-06-15 13:37:33 -07001305 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001306 if (!nvmeq->cqes)
1307 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001308
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001309 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001310 goto free_cqdma;
1311
Christoph Hellwige75ec752015-05-22 11:12:39 +02001312 nvmeq->q_dmadev = dev->dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001313 nvmeq->dev = dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001314 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001315 dev->ctrl.instance, qid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001316 spin_lock_init(&nvmeq->q_lock);
1317 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001318 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001319 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001320 nvmeq->q_depth = depth;
Keith Buschc30341d2013-12-10 13:10:38 -07001321 nvmeq->qid = qid;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001322 nvmeq->cq_vector = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001323 dev->queues[qid] = nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001324
Jon Derrick36a7e992015-05-27 12:26:23 -06001325 /* make sure queue descriptor is set before queue count, for kthread */
1326 mb();
1327 dev->queue_count++;
1328
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001329 return nvmeq;
1330
1331 free_cqdma:
Christoph Hellwige75ec752015-05-22 11:12:39 +02001332 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001333 nvmeq->cq_dma_addr);
1334 free_nvmeq:
1335 kfree(nvmeq);
1336 return NULL;
1337}
1338
Matthew Wilcox30010822011-01-20 09:10:15 -05001339static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1340 const char *name)
1341{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001342 if (use_threaded_interrupts)
1343 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001344 nvme_irq_check, nvme_irq, IRQF_SHARED,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001345 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001346 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001347 IRQF_SHARED, name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001348}
1349
Keith Busch22404272013-07-15 15:02:20 -06001350static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001351{
Keith Busch22404272013-07-15 15:02:20 -06001352 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001353
Keith Busch7be50e92014-09-10 15:48:47 -06001354 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001355 nvmeq->sq_tail = 0;
1356 nvmeq->cq_head = 0;
1357 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001358 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001359 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Keith Busch42f61422014-03-24 10:46:25 -06001360 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001361 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001362}
1363
1364static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1365{
1366 struct nvme_dev *dev = nvmeq->dev;
1367 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001368
Keith Busch2b25d982014-12-22 12:59:04 -07001369 nvmeq->cq_vector = qid - 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001370 result = adapter_alloc_cq(dev, qid, nvmeq);
1371 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001372 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001373
1374 result = adapter_alloc_sq(dev, qid, nvmeq);
1375 if (result < 0)
1376 goto release_cq;
1377
Matthew Wilcox3193f072014-01-27 15:57:22 -05001378 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001379 if (result < 0)
1380 goto release_sq;
1381
Keith Busch22404272013-07-15 15:02:20 -06001382 nvme_init_queue(nvmeq, qid);
Keith Busch22404272013-07-15 15:02:20 -06001383 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001384
1385 release_sq:
1386 adapter_delete_sq(dev, qid);
1387 release_cq:
1388 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001389 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001390}
1391
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001392static struct blk_mq_ops nvme_mq_admin_ops = {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001393 .queue_rq = nvme_queue_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001394 .map_queue = blk_mq_map_queue,
1395 .init_hctx = nvme_admin_init_hctx,
Keith Busch4af0e212015-06-08 10:08:13 -06001396 .exit_hctx = nvme_admin_exit_hctx,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001397 .init_request = nvme_admin_init_request,
1398 .timeout = nvme_timeout,
1399};
1400
1401static struct blk_mq_ops nvme_mq_ops = {
1402 .queue_rq = nvme_queue_rq,
1403 .map_queue = blk_mq_map_queue,
1404 .init_hctx = nvme_init_hctx,
1405 .init_request = nvme_init_request,
1406 .timeout = nvme_timeout,
Jens Axboea0fa9642015-11-03 20:37:26 -07001407 .poll = nvme_poll,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001408};
1409
Keith Buschea191d22015-01-07 18:55:49 -07001410static void nvme_dev_remove_admin(struct nvme_dev *dev)
1411{
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001412 if (dev->ctrl.admin_q && !blk_queue_dying(dev->ctrl.admin_q)) {
1413 blk_cleanup_queue(dev->ctrl.admin_q);
Keith Buschea191d22015-01-07 18:55:49 -07001414 blk_mq_free_tag_set(&dev->admin_tagset);
1415 }
1416}
1417
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001418static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1419{
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001420 if (!dev->ctrl.admin_q) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001421 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1422 dev->admin_tagset.nr_hw_queues = 1;
1423 dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1;
Keith Busch1efccc92015-03-31 10:37:17 -06001424 dev->admin_tagset.reserved_tags = 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001425 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001426 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
Jens Axboeac3dd5b2015-01-22 12:07:58 -07001427 dev->admin_tagset.cmd_size = nvme_cmd_size(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001428 dev->admin_tagset.driver_data = dev;
1429
1430 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1431 return -ENOMEM;
1432
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001433 dev->ctrl.admin_q = blk_mq_init_queue(&dev->admin_tagset);
1434 if (IS_ERR(dev->ctrl.admin_q)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001435 blk_mq_free_tag_set(&dev->admin_tagset);
1436 return -ENOMEM;
1437 }
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001438 if (!blk_get_queue(dev->ctrl.admin_q)) {
Keith Buschea191d22015-01-07 18:55:49 -07001439 nvme_dev_remove_admin(dev);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001440 dev->ctrl.admin_q = NULL;
Keith Buschea191d22015-01-07 18:55:49 -07001441 return -ENODEV;
1442 }
Keith Busch0fb59cb2015-01-07 18:55:50 -07001443 } else
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001444 blk_mq_unfreeze_queue(dev->ctrl.admin_q);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001445
1446 return 0;
1447}
1448
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001449static int nvme_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001450{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001451 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001452 u32 aqa;
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001453 u64 cap = lo_hi_readq(dev->bar + NVME_REG_CAP);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001454 struct nvme_queue *nvmeq;
1455
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001456 dev->subsystem = readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 1) ?
Keith Buschdfbac8c2015-08-10 15:20:40 -06001457 NVME_CAP_NSSRC(cap) : 0;
1458
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001459 if (dev->subsystem &&
1460 (readl(dev->bar + NVME_REG_CSTS) & NVME_CSTS_NSSRO))
1461 writel(NVME_CSTS_NSSRO, dev->bar + NVME_REG_CSTS);
Keith Buschdfbac8c2015-08-10 15:20:40 -06001462
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001463 result = nvme_disable_ctrl(&dev->ctrl, cap);
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001464 if (result < 0)
1465 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001466
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001467 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001468 if (!nvmeq) {
Keith Busch2b25d982014-12-22 12:59:04 -07001469 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
Keith Buschcd638942013-07-15 15:02:23 -06001470 if (!nvmeq)
1471 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001472 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001473
1474 aqa = nvmeq->q_depth - 1;
1475 aqa |= aqa << 16;
1476
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001477 writel(aqa, dev->bar + NVME_REG_AQA);
1478 lo_hi_writeq(nvmeq->sq_dma_addr, dev->bar + NVME_REG_ASQ);
1479 lo_hi_writeq(nvmeq->cq_dma_addr, dev->bar + NVME_REG_ACQ);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001480
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001481 result = nvme_enable_ctrl(&dev->ctrl, cap);
Keith Busch025c5572013-05-01 13:07:51 -06001482 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001483 goto free_nvmeq;
1484
Keith Busch2b25d982014-12-22 12:59:04 -07001485 nvmeq->cq_vector = 0;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001486 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001487 if (result) {
1488 nvmeq->cq_vector = -1;
Keith Busch0fb59cb2015-01-07 18:55:50 -07001489 goto free_nvmeq;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001490 }
Keith Busch025c5572013-05-01 13:07:51 -06001491
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001492 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001493
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001494 free_nvmeq:
1495 nvme_free_queues(dev, 0);
1496 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001497}
1498
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001499static int nvme_kthread(void *data)
1500{
Keith Buschd4b4ff82013-12-10 13:10:37 -07001501 struct nvme_dev *dev, *next;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001502
1503 while (!kthread_should_stop()) {
Arjan van de Ven564a2322013-05-01 16:38:23 -04001504 set_current_state(TASK_INTERRUPTIBLE);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001505 spin_lock(&dev_list_lock);
Keith Buschd4b4ff82013-12-10 13:10:37 -07001506 list_for_each_entry_safe(dev, next, &dev_list, node) {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001507 int i;
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001508 u32 csts = readl(dev->bar + NVME_REG_CSTS);
Keith Buschdfbac8c2015-08-10 15:20:40 -06001509
1510 if ((dev->subsystem && (csts & NVME_CSTS_NSSRO)) ||
1511 csts & NVME_CSTS_CFS) {
Christoph Hellwig906678922015-10-02 18:49:23 +02001512 if (!__nvme_reset(dev)) {
1513 dev_warn(dev->dev,
1514 "Failed status: %x, reset controller\n",
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001515 readl(dev->bar + NVME_REG_CSTS));
Christoph Hellwig906678922015-10-02 18:49:23 +02001516 }
Keith Buschd4b4ff82013-12-10 13:10:37 -07001517 continue;
1518 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001519 for (i = 0; i < dev->queue_count; i++) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001520 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05001521 if (!nvmeq)
1522 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001523 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxbc57a0f2013-06-24 11:56:42 -04001524 nvme_process_cq(nvmeq);
Keith Busch6fccf932014-06-18 13:58:57 -06001525
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001526 while (i == 0 && dev->ctrl.event_limit > 0) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001527 if (nvme_submit_async_admin_req(dev))
Keith Busch6fccf932014-06-18 13:58:57 -06001528 break;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001529 dev->ctrl.event_limit--;
Keith Busch6fccf932014-06-18 13:58:57 -06001530 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001531 spin_unlock_irq(&nvmeq->q_lock);
1532 }
1533 }
1534 spin_unlock(&dev_list_lock);
Arjan van de Venacb7aa02013-02-04 14:44:33 -08001535 schedule_timeout(round_jiffies_relative(HZ));
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001536 }
1537 return 0;
1538}
1539
Christoph Hellwig749941f2015-11-26 11:46:39 +01001540static int nvme_create_io_queues(struct nvme_dev *dev)
Keith Busch42f61422014-03-24 10:46:25 -06001541{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001542 unsigned i;
Christoph Hellwig749941f2015-11-26 11:46:39 +01001543 int ret = 0;
Keith Busch42f61422014-03-24 10:46:25 -06001544
Christoph Hellwig749941f2015-11-26 11:46:39 +01001545 for (i = dev->queue_count; i <= dev->max_qid; i++) {
1546 if (!nvme_alloc_queue(dev, i, dev->q_depth)) {
1547 ret = -ENOMEM;
Keith Busch42f61422014-03-24 10:46:25 -06001548 break;
Christoph Hellwig749941f2015-11-26 11:46:39 +01001549 }
1550 }
Keith Busch42f61422014-03-24 10:46:25 -06001551
Christoph Hellwig749941f2015-11-26 11:46:39 +01001552 for (i = dev->online_queues; i <= dev->queue_count - 1; i++) {
1553 ret = nvme_create_queue(dev->queues[i], i);
1554 if (ret) {
Christoph Hellwig2659e572015-10-02 18:51:31 +02001555 nvme_free_queues(dev, i);
Keith Busch42f61422014-03-24 10:46:25 -06001556 break;
Christoph Hellwig2659e572015-10-02 18:51:31 +02001557 }
Christoph Hellwig749941f2015-11-26 11:46:39 +01001558 }
1559
1560 /*
1561 * Ignore failing Create SQ/CQ commands, we can continue with less
1562 * than the desired aount of queues, and even a controller without
1563 * I/O queues an still be used to issue admin commands. This might
1564 * be useful to upgrade a buggy firmware for example.
1565 */
1566 return ret >= 0 ? 0 : ret;
Keith Busch42f61422014-03-24 10:46:25 -06001567}
1568
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001569static void __iomem *nvme_map_cmb(struct nvme_dev *dev)
1570{
1571 u64 szu, size, offset;
1572 u32 cmbloc;
1573 resource_size_t bar_size;
1574 struct pci_dev *pdev = to_pci_dev(dev->dev);
1575 void __iomem *cmb;
1576 dma_addr_t dma_addr;
1577
1578 if (!use_cmb_sqes)
1579 return NULL;
1580
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001581 dev->cmbsz = readl(dev->bar + NVME_REG_CMBSZ);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001582 if (!(NVME_CMB_SZ(dev->cmbsz)))
1583 return NULL;
1584
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001585 cmbloc = readl(dev->bar + NVME_REG_CMBLOC);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001586
1587 szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz));
1588 size = szu * NVME_CMB_SZ(dev->cmbsz);
1589 offset = szu * NVME_CMB_OFST(cmbloc);
1590 bar_size = pci_resource_len(pdev, NVME_CMB_BIR(cmbloc));
1591
1592 if (offset > bar_size)
1593 return NULL;
1594
1595 /*
1596 * Controllers may support a CMB size larger than their BAR,
1597 * for example, due to being behind a bridge. Reduce the CMB to
1598 * the reported size of the BAR
1599 */
1600 if (size > bar_size - offset)
1601 size = bar_size - offset;
1602
1603 dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(cmbloc)) + offset;
1604 cmb = ioremap_wc(dma_addr, size);
1605 if (!cmb)
1606 return NULL;
1607
1608 dev->cmb_dma_addr = dma_addr;
1609 dev->cmb_size = size;
1610 return cmb;
1611}
1612
1613static inline void nvme_release_cmb(struct nvme_dev *dev)
1614{
1615 if (dev->cmb) {
1616 iounmap(dev->cmb);
1617 dev->cmb = NULL;
1618 }
1619}
1620
Keith Busch9d713c22013-07-15 15:02:24 -06001621static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
1622{
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001623 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
Keith Busch9d713c22013-07-15 15:02:24 -06001624}
1625
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001626static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001627{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001628 struct nvme_queue *adminq = dev->queues[0];
Christoph Hellwige75ec752015-05-22 11:12:39 +02001629 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch42f61422014-03-24 10:46:25 -06001630 int result, i, vecs, nr_io_queues, size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001631
Keith Busch42f61422014-03-24 10:46:25 -06001632 nr_io_queues = num_possible_cpus();
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +01001633 result = nvme_set_queue_count(&dev->ctrl, &nr_io_queues);
1634 if (result < 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05001635 return result;
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +01001636
1637 /*
1638 * Degraded controllers might return an error when setting the queue
1639 * count. We still want to be able to bring them online and offer
1640 * access to the admin queue, as that might be only way to fix them up.
1641 */
1642 if (result > 0) {
1643 dev_err(dev->dev, "Could not set queue count (%d)\n", result);
1644 nr_io_queues = 0;
1645 result = 0;
1646 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001647
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001648 if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) {
1649 result = nvme_cmb_qdepth(dev, nr_io_queues,
1650 sizeof(struct nvme_command));
1651 if (result > 0)
1652 dev->q_depth = result;
1653 else
1654 nvme_release_cmb(dev);
1655 }
1656
Keith Busch9d713c22013-07-15 15:02:24 -06001657 size = db_bar_size(dev, nr_io_queues);
1658 if (size > 8192) {
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001659 iounmap(dev->bar);
Keith Busch9d713c22013-07-15 15:02:24 -06001660 do {
1661 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
1662 if (dev->bar)
1663 break;
1664 if (!--nr_io_queues)
1665 return -ENOMEM;
1666 size = db_bar_size(dev, nr_io_queues);
1667 } while (1);
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001668 dev->dbs = dev->bar + 4096;
Keith Busch5a92e702014-02-21 14:13:44 -07001669 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001670 }
1671
Keith Busch9d713c22013-07-15 15:02:24 -06001672 /* Deregister the admin queue's interrupt */
Matthew Wilcox3193f072014-01-27 15:57:22 -05001673 free_irq(dev->entry[0].vector, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06001674
Jens Axboee32efbf2014-11-14 09:49:26 -07001675 /*
1676 * If we enable msix early due to not intx, disable it again before
1677 * setting up the full range we need.
1678 */
1679 if (!pdev->irq)
1680 pci_disable_msix(pdev);
1681
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01001682 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05001683 dev->entry[i].entry = i;
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01001684 vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues);
1685 if (vecs < 0) {
1686 vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32));
1687 if (vecs < 0) {
1688 vecs = 1;
1689 } else {
1690 for (i = 0; i < vecs; i++)
1691 dev->entry[i].vector = i + pdev->irq;
Matthew Wilcox1b234842011-01-20 13:01:49 -05001692 }
1693 }
1694
Matthew Wilcox063a8092013-06-20 10:53:48 -04001695 /*
1696 * Should investigate if there's a performance win from allocating
1697 * more queues than interrupt vectors; it might allow the submission
1698 * path to scale better, even if the receive path is limited by the
1699 * number of interrupts.
1700 */
1701 nr_io_queues = vecs;
Keith Busch42f61422014-03-24 10:46:25 -06001702 dev->max_qid = nr_io_queues;
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07001703
Matthew Wilcox3193f072014-01-27 15:57:22 -05001704 result = queue_request_irq(dev, adminq, adminq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001705 if (result) {
1706 adminq->cq_vector = -1;
Keith Busch22404272013-07-15 15:02:20 -06001707 goto free_queues;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001708 }
Matthew Wilcox1b234842011-01-20 13:01:49 -05001709
Keith Buschcd638942013-07-15 15:02:23 -06001710 /* Free previously allocated queues that are no longer usable */
Keith Busch42f61422014-03-24 10:46:25 -06001711 nvme_free_queues(dev, nr_io_queues + 1);
Christoph Hellwig749941f2015-11-26 11:46:39 +01001712 return nvme_create_io_queues(dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001713
Keith Busch22404272013-07-15 15:02:20 -06001714 free_queues:
Keith Buscha1a5ef92013-12-16 13:50:00 -05001715 nvme_free_queues(dev, 1);
Keith Busch22404272013-07-15 15:02:20 -06001716 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001717}
1718
Keith Buschbda4e0f2015-09-03 08:18:17 -06001719static void nvme_set_irq_hints(struct nvme_dev *dev)
1720{
1721 struct nvme_queue *nvmeq;
1722 int i;
1723
1724 for (i = 0; i < dev->online_queues; i++) {
1725 nvmeq = dev->queues[i];
1726
1727 if (!nvmeq->tags || !(*nvmeq->tags))
1728 continue;
1729
1730 irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector,
1731 blk_mq_tags_cpumask(*nvmeq->tags));
1732 }
1733}
1734
Keith Buscha5768aa2015-06-01 14:28:14 -06001735static void nvme_dev_scan(struct work_struct *work)
1736{
1737 struct nvme_dev *dev = container_of(work, struct nvme_dev, scan_work);
Keith Buscha5768aa2015-06-01 14:28:14 -06001738
1739 if (!dev->tagset.tags)
1740 return;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01001741 nvme_scan_namespaces(&dev->ctrl);
Keith Buschbda4e0f2015-09-03 08:18:17 -06001742 nvme_set_irq_hints(dev);
Keith Buscha5768aa2015-06-01 14:28:14 -06001743}
1744
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04001745/*
1746 * Return: error value if an error occurred setting up the queues or calling
1747 * Identify Device. 0 if these succeeded, even if adding some of the
1748 * namespaces failed. At the moment, these failures are silent. TBD which
1749 * failures should be reported.
1750 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001751static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001752{
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01001753 if (!dev->ctrl.tagset) {
Keith Buschffe77042015-06-08 10:08:15 -06001754 dev->tagset.ops = &nvme_mq_ops;
1755 dev->tagset.nr_hw_queues = dev->online_queues - 1;
1756 dev->tagset.timeout = NVME_IO_TIMEOUT;
1757 dev->tagset.numa_node = dev_to_node(dev->dev);
1758 dev->tagset.queue_depth =
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001759 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
Keith Buschffe77042015-06-08 10:08:15 -06001760 dev->tagset.cmd_size = nvme_cmd_size(dev);
1761 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
1762 dev->tagset.driver_data = dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001763
Keith Buschffe77042015-06-08 10:08:15 -06001764 if (blk_mq_alloc_tag_set(&dev->tagset))
1765 return 0;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01001766 dev->ctrl.tagset = &dev->tagset;
Keith Buschffe77042015-06-08 10:08:15 -06001767 }
Keith Buscha5768aa2015-06-01 14:28:14 -06001768 schedule_work(&dev->scan_work);
Keith Busche1e5e562015-02-19 13:39:03 -07001769 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001770}
1771
Keith Busch0877cb02013-07-15 15:02:19 -06001772static int nvme_dev_map(struct nvme_dev *dev)
1773{
Keith Busch42f61422014-03-24 10:46:25 -06001774 u64 cap;
Keith Busch0877cb02013-07-15 15:02:19 -06001775 int bars, result = -ENOMEM;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001776 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch0877cb02013-07-15 15:02:19 -06001777
1778 if (pci_enable_device_mem(pdev))
1779 return result;
1780
1781 dev->entry[0].vector = pdev->irq;
1782 pci_set_master(pdev);
1783 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Jens Axboebe7837e2014-11-14 09:50:19 -07001784 if (!bars)
1785 goto disable_pci;
1786
Keith Busch0877cb02013-07-15 15:02:19 -06001787 if (pci_request_selected_regions(pdev, bars, "nvme"))
1788 goto disable_pci;
1789
Christoph Hellwige75ec752015-05-22 11:12:39 +02001790 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
1791 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
Russell King052d0ef2013-06-26 23:49:11 +01001792 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06001793
Keith Busch0877cb02013-07-15 15:02:19 -06001794 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
1795 if (!dev->bar)
1796 goto disable;
Jens Axboee32efbf2014-11-14 09:49:26 -07001797
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001798 if (readl(dev->bar + NVME_REG_CSTS) == -1) {
Keith Busch0e53d182013-12-10 13:10:39 -07001799 result = -ENODEV;
1800 goto unmap;
1801 }
Jens Axboee32efbf2014-11-14 09:49:26 -07001802
1803 /*
1804 * Some devices don't advertse INTx interrupts, pre-enable a single
1805 * MSIX vec for setup. We'll adjust this later.
1806 */
1807 if (!pdev->irq) {
1808 result = pci_enable_msix(pdev, dev->entry, 1);
1809 if (result < 0)
1810 goto unmap;
1811 }
1812
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001813 cap = lo_hi_readq(dev->bar + NVME_REG_CAP);
1814
Keith Busch42f61422014-03-24 10:46:25 -06001815 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
1816 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001817 dev->dbs = dev->bar + 4096;
1818 if (readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 2))
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001819 dev->cmb = nvme_map_cmb(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06001820
1821 return 0;
1822
Keith Busch0e53d182013-12-10 13:10:39 -07001823 unmap:
1824 iounmap(dev->bar);
1825 dev->bar = NULL;
Keith Busch0877cb02013-07-15 15:02:19 -06001826 disable:
1827 pci_release_regions(pdev);
1828 disable_pci:
1829 pci_disable_device(pdev);
1830 return result;
1831}
1832
1833static void nvme_dev_unmap(struct nvme_dev *dev)
1834{
Christoph Hellwige75ec752015-05-22 11:12:39 +02001835 struct pci_dev *pdev = to_pci_dev(dev->dev);
1836
1837 if (pdev->msi_enabled)
1838 pci_disable_msi(pdev);
1839 else if (pdev->msix_enabled)
1840 pci_disable_msix(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06001841
1842 if (dev->bar) {
1843 iounmap(dev->bar);
1844 dev->bar = NULL;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001845 pci_release_regions(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06001846 }
1847
Christoph Hellwige75ec752015-05-22 11:12:39 +02001848 if (pci_is_enabled(pdev))
1849 pci_disable_device(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06001850}
1851
Keith Busch4d115422013-12-10 13:10:40 -07001852struct nvme_delq_ctx {
1853 struct task_struct *waiter;
1854 struct kthread_worker *worker;
1855 atomic_t refcount;
1856};
1857
1858static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev)
1859{
1860 dq->waiter = current;
1861 mb();
1862
1863 for (;;) {
1864 set_current_state(TASK_KILLABLE);
1865 if (!atomic_read(&dq->refcount))
1866 break;
1867 if (!schedule_timeout(ADMIN_TIMEOUT) ||
1868 fatal_signal_pending(current)) {
Keith Busch0fb59cb2015-01-07 18:55:50 -07001869 /*
1870 * Disable the controller first since we can't trust it
1871 * at this point, but leave the admin queue enabled
1872 * until all queue deletion requests are flushed.
1873 * FIXME: This may take a while if there are more h/w
1874 * queues than admin tags.
1875 */
Keith Busch4d115422013-12-10 13:10:40 -07001876 set_current_state(TASK_RUNNING);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001877 nvme_disable_ctrl(&dev->ctrl,
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001878 lo_hi_readq(dev->bar + NVME_REG_CAP));
Keith Busch0fb59cb2015-01-07 18:55:50 -07001879 nvme_clear_queue(dev->queues[0]);
Keith Busch4d115422013-12-10 13:10:40 -07001880 flush_kthread_worker(dq->worker);
Keith Busch0fb59cb2015-01-07 18:55:50 -07001881 nvme_disable_queue(dev, 0);
Keith Busch4d115422013-12-10 13:10:40 -07001882 return;
1883 }
1884 }
1885 set_current_state(TASK_RUNNING);
1886}
1887
1888static void nvme_put_dq(struct nvme_delq_ctx *dq)
1889{
1890 atomic_dec(&dq->refcount);
1891 if (dq->waiter)
1892 wake_up_process(dq->waiter);
1893}
1894
1895static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq)
1896{
1897 atomic_inc(&dq->refcount);
1898 return dq;
1899}
1900
1901static void nvme_del_queue_end(struct nvme_queue *nvmeq)
1902{
1903 struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx;
Keith Busch4d115422013-12-10 13:10:40 -07001904 nvme_put_dq(dq);
Keith Busch604e8c82015-11-20 08:38:13 -07001905
1906 spin_lock_irq(&nvmeq->q_lock);
1907 nvme_process_cq(nvmeq);
1908 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch4d115422013-12-10 13:10:40 -07001909}
1910
1911static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode,
1912 kthread_work_func_t fn)
1913{
1914 struct nvme_command c;
1915
1916 memset(&c, 0, sizeof(c));
1917 c.delete_queue.opcode = opcode;
1918 c.delete_queue.qid = cpu_to_le16(nvmeq->qid);
1919
1920 init_kthread_work(&nvmeq->cmdinfo.work, fn);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001921 return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo,
1922 ADMIN_TIMEOUT);
Keith Busch4d115422013-12-10 13:10:40 -07001923}
1924
1925static void nvme_del_cq_work_handler(struct kthread_work *work)
1926{
1927 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
1928 cmdinfo.work);
1929 nvme_del_queue_end(nvmeq);
1930}
1931
1932static int nvme_delete_cq(struct nvme_queue *nvmeq)
1933{
1934 return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq,
1935 nvme_del_cq_work_handler);
1936}
1937
1938static void nvme_del_sq_work_handler(struct kthread_work *work)
1939{
1940 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
1941 cmdinfo.work);
1942 int status = nvmeq->cmdinfo.status;
1943
1944 if (!status)
1945 status = nvme_delete_cq(nvmeq);
1946 if (status)
1947 nvme_del_queue_end(nvmeq);
1948}
1949
1950static int nvme_delete_sq(struct nvme_queue *nvmeq)
1951{
1952 return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq,
1953 nvme_del_sq_work_handler);
1954}
1955
1956static void nvme_del_queue_start(struct kthread_work *work)
1957{
1958 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
1959 cmdinfo.work);
Keith Busch4d115422013-12-10 13:10:40 -07001960 if (nvme_delete_sq(nvmeq))
1961 nvme_del_queue_end(nvmeq);
1962}
1963
1964static void nvme_disable_io_queues(struct nvme_dev *dev)
1965{
1966 int i;
1967 DEFINE_KTHREAD_WORKER_ONSTACK(worker);
1968 struct nvme_delq_ctx dq;
1969 struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001970 &worker, "nvme%d", dev->ctrl.instance);
Keith Busch4d115422013-12-10 13:10:40 -07001971
1972 if (IS_ERR(kworker_task)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001973 dev_err(dev->dev,
Keith Busch4d115422013-12-10 13:10:40 -07001974 "Failed to create queue del task\n");
1975 for (i = dev->queue_count - 1; i > 0; i--)
1976 nvme_disable_queue(dev, i);
1977 return;
1978 }
1979
1980 dq.waiter = NULL;
1981 atomic_set(&dq.refcount, 0);
1982 dq.worker = &worker;
1983 for (i = dev->queue_count - 1; i > 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001984 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07001985
1986 if (nvme_suspend_queue(nvmeq))
1987 continue;
1988 nvmeq->cmdinfo.ctx = nvme_get_dq(&dq);
1989 nvmeq->cmdinfo.worker = dq.worker;
1990 init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start);
1991 queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work);
1992 }
1993 nvme_wait_dq(&dq, dev);
1994 kthread_stop(kworker_task);
1995}
1996
Christoph Hellwig73850142015-10-22 14:03:33 +02001997static int nvme_dev_list_add(struct nvme_dev *dev)
1998{
1999 bool start_thread = false;
2000
2001 spin_lock(&dev_list_lock);
2002 if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) {
2003 start_thread = true;
2004 nvme_thread = NULL;
2005 }
2006 list_add(&dev->node, &dev_list);
2007 spin_unlock(&dev_list_lock);
2008
2009 if (start_thread) {
2010 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
2011 wake_up_all(&nvme_kthread_wait);
2012 } else
2013 wait_event_killable(nvme_kthread_wait, nvme_thread);
2014
2015 if (IS_ERR_OR_NULL(nvme_thread))
2016 return nvme_thread ? PTR_ERR(nvme_thread) : -EINTR;
2017
2018 return 0;
2019}
2020
Dan McLeranb9afca32014-04-07 17:10:11 -06002021/*
2022* Remove the node from the device list and check
2023* for whether or not we need to stop the nvme_thread.
2024*/
2025static void nvme_dev_list_remove(struct nvme_dev *dev)
2026{
2027 struct task_struct *tmp = NULL;
2028
2029 spin_lock(&dev_list_lock);
2030 list_del_init(&dev->node);
2031 if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) {
2032 tmp = nvme_thread;
2033 nvme_thread = NULL;
2034 }
2035 spin_unlock(&dev_list_lock);
2036
2037 if (tmp)
2038 kthread_stop(tmp);
2039}
2040
Keith Buschc9d3bf82015-01-07 18:55:52 -07002041static void nvme_freeze_queues(struct nvme_dev *dev)
2042{
2043 struct nvme_ns *ns;
2044
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002045 list_for_each_entry(ns, &dev->ctrl.namespaces, list) {
Keith Buschc9d3bf82015-01-07 18:55:52 -07002046 blk_mq_freeze_queue_start(ns->queue);
2047
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002048 spin_lock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002049 queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue);
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002050 spin_unlock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002051
2052 blk_mq_cancel_requeue_work(ns->queue);
2053 blk_mq_stop_hw_queues(ns->queue);
2054 }
2055}
2056
2057static void nvme_unfreeze_queues(struct nvme_dev *dev)
2058{
2059 struct nvme_ns *ns;
2060
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002061 list_for_each_entry(ns, &dev->ctrl.namespaces, list) {
Keith Buschc9d3bf82015-01-07 18:55:52 -07002062 queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue);
2063 blk_mq_unfreeze_queue(ns->queue);
2064 blk_mq_start_stopped_hw_queues(ns->queue, true);
2065 blk_mq_kick_requeue_list(ns->queue);
2066 }
2067}
2068
Keith Buschf0b50732013-07-15 15:02:21 -06002069static void nvme_dev_shutdown(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002070{
Keith Busch22404272013-07-15 15:02:20 -06002071 int i;
Keith Busch7c1b2452014-06-25 11:18:12 -06002072 u32 csts = -1;
Keith Busch22404272013-07-15 15:02:20 -06002073
Dan McLeranb9afca32014-04-07 17:10:11 -06002074 nvme_dev_list_remove(dev);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002075
Keith Busch77bf25e2015-11-26 12:21:29 +01002076 mutex_lock(&dev->shutdown_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002077 if (dev->bar) {
2078 nvme_freeze_queues(dev);
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002079 csts = readl(dev->bar + NVME_REG_CSTS);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002080 }
Keith Busch7c1b2452014-06-25 11:18:12 -06002081 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
Keith Busch4d115422013-12-10 13:10:40 -07002082 for (i = dev->queue_count - 1; i >= 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002083 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002084 nvme_suspend_queue(nvmeq);
Keith Busch4d115422013-12-10 13:10:40 -07002085 }
2086 } else {
2087 nvme_disable_io_queues(dev);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01002088 nvme_shutdown_ctrl(&dev->ctrl);
Keith Busch4d115422013-12-10 13:10:40 -07002089 nvme_disable_queue(dev, 0);
2090 }
Keith Buschf0b50732013-07-15 15:02:21 -06002091 nvme_dev_unmap(dev);
Keith Busch07836e62015-02-19 10:34:48 -07002092
2093 for (i = dev->queue_count - 1; i >= 0; i--)
2094 nvme_clear_queue(dev->queues[i]);
Keith Busch77bf25e2015-11-26 12:21:29 +01002095 mutex_unlock(&dev->shutdown_lock);
Keith Buschf0b50732013-07-15 15:02:21 -06002096}
2097
Matthew Wilcox091b6092011-02-10 09:56:01 -05002098static int nvme_setup_prp_pools(struct nvme_dev *dev)
2099{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002100 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
Matthew Wilcox091b6092011-02-10 09:56:01 -05002101 PAGE_SIZE, PAGE_SIZE, 0);
2102 if (!dev->prp_page_pool)
2103 return -ENOMEM;
2104
Matthew Wilcox99802a72011-02-10 10:30:34 -05002105 /* Optimisation for I/Os between 4k and 128k */
Christoph Hellwige75ec752015-05-22 11:12:39 +02002106 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
Matthew Wilcox99802a72011-02-10 10:30:34 -05002107 256, 256, 0);
2108 if (!dev->prp_small_pool) {
2109 dma_pool_destroy(dev->prp_page_pool);
2110 return -ENOMEM;
2111 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002112 return 0;
2113}
2114
2115static void nvme_release_prp_pools(struct nvme_dev *dev)
2116{
2117 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002118 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002119}
2120
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002121static void nvme_pci_free_ctrl(struct nvme_ctrl *ctrl)
Keith Busch5e82e952013-02-19 10:17:58 -07002122{
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002123 struct nvme_dev *dev = to_nvme_dev(ctrl);
Keith Busch9ac27092014-01-31 16:53:39 -07002124
Christoph Hellwige75ec752015-05-22 11:12:39 +02002125 put_device(dev->dev);
Keith Busch4af0e212015-06-08 10:08:13 -06002126 if (dev->tagset.tags)
2127 blk_mq_free_tag_set(&dev->tagset);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002128 if (dev->ctrl.admin_q)
2129 blk_put_queue(dev->ctrl.admin_q);
Keith Busch5e82e952013-02-19 10:17:58 -07002130 kfree(dev->queues);
2131 kfree(dev->entry);
2132 kfree(dev);
2133}
2134
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002135static void nvme_probe_work(struct work_struct *work)
Keith Buschf0b50732013-07-15 15:02:21 -06002136{
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002137 struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002138 int result;
Keith Buschf0b50732013-07-15 15:02:21 -06002139
2140 result = nvme_dev_map(dev);
2141 if (result)
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002142 goto out;
Keith Buschf0b50732013-07-15 15:02:21 -06002143
2144 result = nvme_configure_admin_queue(dev);
2145 if (result)
2146 goto unmap;
2147
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002148 nvme_init_queue(dev->queues[0], 0);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002149 result = nvme_alloc_admin_tags(dev);
2150 if (result)
2151 goto disable;
Dan McLeranb9afca32014-04-07 17:10:11 -06002152
Christoph Hellwigce4541f2015-10-16 07:58:46 +02002153 result = nvme_init_identify(&dev->ctrl);
2154 if (result)
2155 goto free_tags;
2156
Keith Buschf0b50732013-07-15 15:02:21 -06002157 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06002158 if (result)
Keith Busch0fb59cb2015-01-07 18:55:50 -07002159 goto free_tags;
Keith Buschf0b50732013-07-15 15:02:21 -06002160
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002161 dev->ctrl.event_limit = 1;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002162
Christoph Hellwig73850142015-10-22 14:03:33 +02002163 result = nvme_dev_list_add(dev);
2164 if (result)
2165 goto remove;
2166
Christoph Hellwig2659e572015-10-02 18:51:31 +02002167 /*
2168 * Keep the controller around but remove all namespaces if we don't have
2169 * any working I/O queue.
2170 */
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002171 if (dev->online_queues < 2) {
2172 dev_warn(dev->dev, "IO queues not created\n");
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002173 nvme_remove_namespaces(&dev->ctrl);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002174 } else {
2175 nvme_unfreeze_queues(dev);
2176 nvme_dev_add(dev);
2177 }
2178
2179 return;
Keith Buschf0b50732013-07-15 15:02:21 -06002180
Christoph Hellwig73850142015-10-22 14:03:33 +02002181 remove:
2182 nvme_dev_list_remove(dev);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002183 free_tags:
2184 nvme_dev_remove_admin(dev);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002185 blk_put_queue(dev->ctrl.admin_q);
2186 dev->ctrl.admin_q = NULL;
Keith Busch4af0e212015-06-08 10:08:13 -06002187 dev->queues[0]->tags = NULL;
Keith Buschf0b50732013-07-15 15:02:21 -06002188 disable:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002189 nvme_disable_queue(dev, 0);
Keith Buschf0b50732013-07-15 15:02:21 -06002190 unmap:
2191 nvme_dev_unmap(dev);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002192 out:
2193 if (!work_busy(&dev->reset_work))
2194 nvme_dead_ctrl(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06002195}
2196
Keith Busch9a6b9452013-12-10 13:10:36 -07002197static int nvme_remove_dead_ctrl(void *arg)
2198{
2199 struct nvme_dev *dev = (struct nvme_dev *)arg;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002200 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002201
2202 if (pci_get_drvdata(pdev))
Keith Buschc81f4972014-06-23 15:24:53 -06002203 pci_stop_and_remove_bus_device_locked(pdev);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002204 nvme_put_ctrl(&dev->ctrl);
Keith Busch9a6b9452013-12-10 13:10:36 -07002205 return 0;
2206}
2207
Keith Buschde3eff22015-06-18 13:36:39 -06002208static void nvme_dead_ctrl(struct nvme_dev *dev)
2209{
2210 dev_warn(dev->dev, "Device failed to resume\n");
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002211 kref_get(&dev->ctrl.kref);
Keith Buschde3eff22015-06-18 13:36:39 -06002212 if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002213 dev->ctrl.instance))) {
Keith Buschde3eff22015-06-18 13:36:39 -06002214 dev_err(dev->dev,
2215 "Failed to start controller remove task\n");
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002216 nvme_put_ctrl(&dev->ctrl);
Keith Buschde3eff22015-06-18 13:36:39 -06002217 }
2218}
2219
Christoph Hellwig77b50d92015-10-02 17:41:18 +02002220static void nvme_reset_work(struct work_struct *ws)
Keith Busch9a6b9452013-12-10 13:10:36 -07002221{
Christoph Hellwig77b50d92015-10-02 17:41:18 +02002222 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06002223 bool in_probe = work_busy(&dev->probe_work);
2224
Keith Busch9a6b9452013-12-10 13:10:36 -07002225 nvme_dev_shutdown(dev);
Keith Buschffe77042015-06-08 10:08:15 -06002226
2227 /* Synchronize with device probe so that work will see failure status
2228 * and exit gracefully without trying to schedule another reset */
2229 flush_work(&dev->probe_work);
2230
2231 /* Fail this device if reset occured during probe to avoid
2232 * infinite initialization loops. */
2233 if (in_probe) {
Keith Buschde3eff22015-06-18 13:36:39 -06002234 nvme_dead_ctrl(dev);
Keith Buschffe77042015-06-08 10:08:15 -06002235 return;
Keith Busch9a6b9452013-12-10 13:10:36 -07002236 }
Keith Buschffe77042015-06-08 10:08:15 -06002237 /* Schedule device resume asynchronously so the reset work is available
2238 * to cleanup errors that may occur during reinitialization */
2239 schedule_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07002240}
2241
Christoph Hellwig906678922015-10-02 18:49:23 +02002242static int __nvme_reset(struct nvme_dev *dev)
Keith Busch9a6b9452013-12-10 13:10:36 -07002243{
Christoph Hellwig906678922015-10-02 18:49:23 +02002244 if (work_pending(&dev->reset_work))
2245 return -EBUSY;
2246 list_del_init(&dev->node);
2247 queue_work(nvme_workq, &dev->reset_work);
2248 return 0;
Tejun Heo9ca97372014-03-07 10:24:49 -05002249}
2250
Keith Busch4cc06522015-06-05 10:30:08 -06002251static int nvme_reset(struct nvme_dev *dev)
2252{
Christoph Hellwig906678922015-10-02 18:49:23 +02002253 int ret;
Keith Busch4cc06522015-06-05 10:30:08 -06002254
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002255 if (!dev->ctrl.admin_q || blk_queue_dying(dev->ctrl.admin_q))
Keith Busch4cc06522015-06-05 10:30:08 -06002256 return -ENODEV;
2257
2258 spin_lock(&dev_list_lock);
Christoph Hellwig906678922015-10-02 18:49:23 +02002259 ret = __nvme_reset(dev);
Keith Busch4cc06522015-06-05 10:30:08 -06002260 spin_unlock(&dev_list_lock);
2261
2262 if (!ret) {
2263 flush_work(&dev->reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06002264 flush_work(&dev->probe_work);
Keith Busch4cc06522015-06-05 10:30:08 -06002265 return 0;
2266 }
2267
2268 return ret;
2269}
2270
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002271static int nvme_pci_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val)
2272{
2273 *val = readl(to_nvme_dev(ctrl)->bar + off);
2274 return 0;
2275}
2276
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01002277static int nvme_pci_reg_write32(struct nvme_ctrl *ctrl, u32 off, u32 val)
2278{
2279 writel(val, to_nvme_dev(ctrl)->bar + off);
2280 return 0;
2281}
2282
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002283static int nvme_pci_reg_read64(struct nvme_ctrl *ctrl, u32 off, u64 *val)
2284{
2285 *val = readq(to_nvme_dev(ctrl)->bar + off);
2286 return 0;
2287}
2288
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002289static bool nvme_pci_io_incapable(struct nvme_ctrl *ctrl)
2290{
2291 struct nvme_dev *dev = to_nvme_dev(ctrl);
2292
2293 return !dev->bar || dev->online_queues < 2;
2294}
2295
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002296static int nvme_pci_reset_ctrl(struct nvme_ctrl *ctrl)
2297{
2298 return nvme_reset(to_nvme_dev(ctrl));
2299}
2300
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002301static const struct nvme_ctrl_ops nvme_pci_ctrl_ops = {
2302 .reg_read32 = nvme_pci_reg_read32,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01002303 .reg_write32 = nvme_pci_reg_write32,
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002304 .reg_read64 = nvme_pci_reg_read64,
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002305 .io_incapable = nvme_pci_io_incapable,
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002306 .reset_ctrl = nvme_pci_reset_ctrl,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002307 .free_ctrl = nvme_pci_free_ctrl,
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002308};
2309
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002310static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002311{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002312 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002313 struct nvme_dev *dev;
2314
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002315 node = dev_to_node(&pdev->dev);
2316 if (node == NUMA_NO_NODE)
2317 set_dev_node(&pdev->dev, 0);
2318
2319 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002320 if (!dev)
2321 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002322 dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry),
2323 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002324 if (!dev->entry)
2325 goto free;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002326 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
2327 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002328 if (!dev->queues)
2329 goto free;
2330
Christoph Hellwige75ec752015-05-22 11:12:39 +02002331 dev->dev = get_device(&pdev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002332 pci_set_drvdata(pdev, dev);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002333
Keith Busche6e96d72015-03-23 09:32:37 -06002334 INIT_LIST_HEAD(&dev->node);
Keith Buscha5768aa2015-06-01 14:28:14 -06002335 INIT_WORK(&dev->scan_work, nvme_dev_scan);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002336 INIT_WORK(&dev->probe_work, nvme_probe_work);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002337 INIT_WORK(&dev->reset_work, nvme_reset_work);
Keith Busch77bf25e2015-11-26 12:21:29 +01002338 mutex_init(&dev->shutdown_lock);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002339
2340 result = nvme_setup_prp_pools(dev);
2341 if (result)
2342 goto put_pci;
2343
2344 result = nvme_init_ctrl(&dev->ctrl, &pdev->dev, &nvme_pci_ctrl_ops,
2345 id->driver_data);
2346 if (result)
2347 goto release_pools;
2348
Keith Busch2e1d8442015-02-12 15:33:00 -07002349 schedule_work(&dev->probe_work);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002350 return 0;
2351
Keith Busch0877cb02013-07-15 15:02:19 -06002352 release_pools:
Matthew Wilcox091b6092011-02-10 09:56:01 -05002353 nvme_release_prp_pools(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06002354 put_pci:
Christoph Hellwige75ec752015-05-22 11:12:39 +02002355 put_device(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002356 free:
2357 kfree(dev->queues);
2358 kfree(dev->entry);
2359 kfree(dev);
2360 return result;
2361}
2362
Keith Buschf0d54a52014-05-02 10:40:43 -06002363static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
2364{
Keith Buscha6739472014-06-23 16:03:21 -06002365 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buschf0d54a52014-05-02 10:40:43 -06002366
Keith Buscha6739472014-06-23 16:03:21 -06002367 if (prepare)
2368 nvme_dev_shutdown(dev);
2369 else
Keith Busch0a7385a2015-10-02 10:37:29 -06002370 schedule_work(&dev->probe_work);
Keith Buschf0d54a52014-05-02 10:40:43 -06002371}
2372
Keith Busch09ece142014-01-27 11:29:40 -05002373static void nvme_shutdown(struct pci_dev *pdev)
2374{
2375 struct nvme_dev *dev = pci_get_drvdata(pdev);
2376 nvme_dev_shutdown(dev);
2377}
2378
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002379static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002380{
2381 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002382
2383 spin_lock(&dev_list_lock);
2384 list_del_init(&dev->node);
2385 spin_unlock(&dev_list_lock);
2386
2387 pci_set_drvdata(pdev, NULL);
Keith Busch2e1d8442015-02-12 15:33:00 -07002388 flush_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07002389 flush_work(&dev->reset_work);
Keith Buscha5768aa2015-06-01 14:28:14 -06002390 flush_work(&dev->scan_work);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002391 nvme_remove_namespaces(&dev->ctrl);
Keith Busch3399a3f2015-06-18 13:36:40 -06002392 nvme_dev_shutdown(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002393 nvme_dev_remove_admin(dev);
2394 nvme_free_queues(dev, 0);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002395 nvme_release_cmb(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002396 nvme_release_prp_pools(dev);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002397 nvme_put_ctrl(&dev->ctrl);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002398}
2399
2400/* These functions are yet to be implemented */
2401#define nvme_error_detected NULL
2402#define nvme_dump_registers NULL
2403#define nvme_link_reset NULL
2404#define nvme_slot_reset NULL
2405#define nvme_error_resume NULL
Keith Buschcd638942013-07-15 15:02:23 -06002406
Jingoo Han671a6012014-02-13 11:19:14 +09002407#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06002408static int nvme_suspend(struct device *dev)
2409{
2410 struct pci_dev *pdev = to_pci_dev(dev);
2411 struct nvme_dev *ndev = pci_get_drvdata(pdev);
2412
2413 nvme_dev_shutdown(ndev);
2414 return 0;
2415}
2416
2417static int nvme_resume(struct device *dev)
2418{
2419 struct pci_dev *pdev = to_pci_dev(dev);
2420 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06002421
Keith Busch0a7385a2015-10-02 10:37:29 -06002422 schedule_work(&ndev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07002423 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06002424}
Jingoo Han671a6012014-02-13 11:19:14 +09002425#endif
Keith Buschcd638942013-07-15 15:02:23 -06002426
2427static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002428
Stephen Hemminger1d352032012-09-07 09:33:17 -07002429static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002430 .error_detected = nvme_error_detected,
2431 .mmio_enabled = nvme_dump_registers,
2432 .link_reset = nvme_link_reset,
2433 .slot_reset = nvme_slot_reset,
2434 .resume = nvme_error_resume,
Keith Buschf0d54a52014-05-02 10:40:43 -06002435 .reset_notify = nvme_reset_notify,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002436};
2437
2438/* Move to pci_ids.h later */
2439#define PCI_CLASS_STORAGE_EXPRESS 0x010802
2440
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04002441static const struct pci_device_id nvme_id_table[] = {
Christoph Hellwig106198e2015-11-26 10:07:41 +01002442 { PCI_VDEVICE(INTEL, 0x0953),
2443 .driver_data = NVME_QUIRK_STRIPE_SIZE, },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002444 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
Stephan Güntherc74dc782015-11-04 00:49:45 +01002445 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002446 { 0, }
2447};
2448MODULE_DEVICE_TABLE(pci, nvme_id_table);
2449
2450static struct pci_driver nvme_driver = {
2451 .name = "nvme",
2452 .id_table = nvme_id_table,
2453 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002454 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05002455 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06002456 .driver = {
2457 .pm = &nvme_dev_pm_ops,
2458 },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002459 .err_handler = &nvme_err_handler,
2460};
2461
2462static int __init nvme_init(void)
2463{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04002464 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002465
Dan McLeranb9afca32014-04-07 17:10:11 -06002466 init_waitqueue_head(&nvme_kthread_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002467
Keith Busch9a6b9452013-12-10 13:10:36 -07002468 nvme_workq = create_singlethread_workqueue("nvme");
2469 if (!nvme_workq)
Dan McLeranb9afca32014-04-07 17:10:11 -06002470 return -ENOMEM;
Keith Busch9a6b9452013-12-10 13:10:36 -07002471
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002472 result = nvme_core_init();
Keith Busch5c42ea12012-07-25 16:05:18 -06002473 if (result < 0)
Keith Busch9a6b9452013-12-10 13:10:36 -07002474 goto kill_workq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002475
Keith Buschf3db22f2014-06-11 11:51:35 -06002476 result = pci_register_driver(&nvme_driver);
2477 if (result)
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002478 goto core_exit;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002479 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002480
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002481 core_exit:
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002482 nvme_core_exit();
Keith Busch9a6b9452013-12-10 13:10:36 -07002483 kill_workq:
2484 destroy_workqueue(nvme_workq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002485 return result;
2486}
2487
2488static void __exit nvme_exit(void)
2489{
2490 pci_unregister_driver(&nvme_driver);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002491 nvme_core_exit();
Keith Busch9a6b9452013-12-10 13:10:36 -07002492 destroy_workqueue(nvme_workq);
Dan McLeranb9afca32014-04-07 17:10:11 -06002493 BUG_ON(nvme_thread && !IS_ERR(nvme_thread));
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04002494 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002495}
2496
2497MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
2498MODULE_LICENSE("GPL");
Keith Buschc78b47132014-11-21 15:16:32 -07002499MODULE_VERSION("1.0");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002500module_init(nvme_init);
2501module_exit(nvme_exit);