blob: a45700312cafdbb0de92622def6f7e91c580dd2f [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
15#include <linux/nvme.h>
Matthew Wilcox8de05532011-05-12 13:50:28 -040016#include <linux/bitops.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050017#include <linux/blkdev.h>
Matias Bjørlinga4aea562014-11-04 08:20:14 -070018#include <linux/blk-mq.h>
Keith Busch42f61422014-03-24 10:46:25 -060019#include <linux/cpu.h>
Matthew Wilcoxfd63e9ce2011-05-06 08:37:54 -040020#include <linux/delay.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050021#include <linux/errno.h>
22#include <linux/fs.h>
23#include <linux/genhd.h>
Keith Busch4cc09e22014-04-02 15:45:37 -060024#include <linux/hdreg.h>
Matthew Wilcox5aff9382011-05-06 08:45:47 -040025#include <linux/idr.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050026#include <linux/init.h>
27#include <linux/interrupt.h>
28#include <linux/io.h>
29#include <linux/kdev_t.h>
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050030#include <linux/kthread.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050031#include <linux/kernel.h>
Keith Buscha5768aa2015-06-01 14:28:14 -060032#include <linux/list_sort.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050033#include <linux/mm.h>
34#include <linux/module.h>
35#include <linux/moduleparam.h>
36#include <linux/pci.h>
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -050037#include <linux/poison.h>
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -040038#include <linux/ptrace.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050039#include <linux/sched.h>
40#include <linux/slab.h>
Keith Busche1e5e562015-02-19 13:39:03 -070041#include <linux/t10-pi.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050042#include <linux/types.h>
Vishal Verma5d0f6132013-03-04 18:40:58 -070043#include <scsi/sg.h>
Hitoshi Mitake797a7962012-02-07 11:45:33 +090044#include <asm-generic/io-64-nonatomic-lo-hi.h>
45
Keith Buschb3fffde2015-02-03 11:21:42 -070046#define NVME_MINORS (1U << MINORBITS)
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))
Keith Busch9d43cf62014-05-13 11:42:02 -060051#define ADMIN_TIMEOUT (admin_timeout * HZ)
Dan McLeran2484f402014-07-01 09:33:32 -060052#define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050053
Keith Busch9d43cf62014-05-13 11:42:02 -060054static unsigned char admin_timeout = 60;
55module_param(admin_timeout, byte, 0644);
56MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050057
Matthew Wilcoxbd676082014-06-03 23:04:30 -040058unsigned char nvme_io_timeout = 30;
59module_param_named(io_timeout, nvme_io_timeout, byte, 0644);
Keith Buschb3550842014-04-04 11:43:36 -060060MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050061
Dan McLeran2484f402014-07-01 09:33:32 -060062static unsigned char shutdown_timeout = 5;
63module_param(shutdown_timeout, byte, 0644);
64MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
65
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050066static int nvme_major;
67module_param(nvme_major, int, 0);
68
Keith Buschb3fffde2015-02-03 11:21:42 -070069static int nvme_char_major;
70module_param(nvme_char_major, int, 0);
71
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050072static int use_threaded_interrupts;
73module_param(use_threaded_interrupts, int, 0);
74
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050075static DEFINE_SPINLOCK(dev_list_lock);
76static LIST_HEAD(dev_list);
77static struct task_struct *nvme_thread;
Keith Busch9a6b9452013-12-10 13:10:36 -070078static struct workqueue_struct *nvme_workq;
Dan McLeranb9afca32014-04-07 17:10:11 -060079static wait_queue_head_t nvme_kthread_wait;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050080
Keith Buschb3fffde2015-02-03 11:21:42 -070081static struct class *nvme_class;
82
Keith Buschd4b4ff82013-12-10 13:10:37 -070083static void nvme_reset_failed_dev(struct work_struct *ws);
Keith Busch4cc06522015-06-05 10:30:08 -060084static int nvme_reset(struct nvme_dev *dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -070085static int nvme_process_cq(struct nvme_queue *nvmeq);
Keith Buschd4b4ff82013-12-10 13:10:37 -070086
Keith Busch4d115422013-12-10 13:10:40 -070087struct async_cmd_info {
88 struct kthread_work work;
89 struct kthread_worker *worker;
Matias Bjørlinga4aea562014-11-04 08:20:14 -070090 struct request *req;
Keith Busch4d115422013-12-10 13:10:40 -070091 u32 result;
92 int status;
93 void *ctx;
94};
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050095
96/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050097 * An NVM Express queue. Each device has at least two (one for admin
98 * commands and one for I/O commands).
99 */
100struct nvme_queue {
101 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500102 struct nvme_dev *dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -0500103 char irqname[24]; /* nvme4294967295-65535\0 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500104 spinlock_t q_lock;
105 struct nvme_command *sq_cmds;
106 volatile struct nvme_completion *cqes;
Keith Busch42483222015-06-01 09:29:54 -0600107 struct blk_mq_tags **tags;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500108 dma_addr_t sq_dma_addr;
109 dma_addr_t cq_dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500110 u32 __iomem *q_db;
111 u16 q_depth;
Jens Axboe6222d172015-01-15 15:19:10 -0700112 s16 cq_vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500113 u16 sq_head;
114 u16 sq_tail;
115 u16 cq_head;
Keith Buschc30341d2013-12-10 13:10:38 -0700116 u16 qid;
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400117 u8 cq_phase;
118 u8 cqe_seen;
Keith Busch4d115422013-12-10 13:10:40 -0700119 struct async_cmd_info cmdinfo;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500120};
121
122/*
123 * Check we didin't inadvertently grow the command struct
124 */
125static inline void _nvme_check_size(void)
126{
127 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
128 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
129 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
130 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
131 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
Vishal Vermaf8ebf842013-03-27 07:13:41 -0400132 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
Keith Buschc30341d2013-12-10 13:10:38 -0700133 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500134 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
135 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
136 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
137 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
Keith Busch6ecec742012-09-26 12:49:27 -0600138 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500139}
140
Keith Buschedd10d32014-04-03 16:45:23 -0600141typedef void (*nvme_completion_fn)(struct nvme_queue *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400142 struct nvme_completion *);
143
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500144struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400145 nvme_completion_fn fn;
146 void *ctx;
Keith Buschc30341d2013-12-10 13:10:38 -0700147 int aborted;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700148 struct nvme_queue *nvmeq;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700149 struct nvme_iod iod[0];
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500150};
151
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700152/*
153 * Max size of iod being embedded in the request payload
154 */
155#define NVME_INT_PAGES 2
156#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->page_size)
Chong Yuanfda631f2015-03-27 09:21:32 +0800157#define NVME_INT_MASK 0x01
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700158
159/*
160 * Will slightly overestimate the number of pages needed. This is OK
161 * as it only leads to a small amount of wasted memory for the lifetime of
162 * the I/O.
163 */
164static int nvme_npages(unsigned size, struct nvme_dev *dev)
165{
166 unsigned nprps = DIV_ROUND_UP(size + dev->page_size, dev->page_size);
167 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
168}
169
170static unsigned int nvme_cmd_size(struct nvme_dev *dev)
171{
172 unsigned int ret = sizeof(struct nvme_cmd_info);
173
174 ret += sizeof(struct nvme_iod);
175 ret += sizeof(__le64 *) * nvme_npages(NVME_INT_BYTES(dev), dev);
176 ret += sizeof(struct scatterlist) * NVME_INT_PAGES;
177
178 return ret;
179}
180
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700181static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
182 unsigned int hctx_idx)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500183{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700184 struct nvme_dev *dev = data;
185 struct nvme_queue *nvmeq = dev->queues[0];
186
Keith Busch42483222015-06-01 09:29:54 -0600187 WARN_ON(hctx_idx != 0);
188 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
189 WARN_ON(nvmeq->tags);
190
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700191 hctx->driver_data = nvmeq;
Keith Busch42483222015-06-01 09:29:54 -0600192 nvmeq->tags = &dev->admin_tagset.tags[0];
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700193 return 0;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500194}
195
Keith Busch4af0e212015-06-08 10:08:13 -0600196static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
197{
198 struct nvme_queue *nvmeq = hctx->driver_data;
199
200 nvmeq->tags = NULL;
201}
202
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700203static int nvme_admin_init_request(void *data, struct request *req,
204 unsigned int hctx_idx, unsigned int rq_idx,
205 unsigned int numa_node)
Keith Busch22404272013-07-15 15:02:20 -0600206{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700207 struct nvme_dev *dev = data;
208 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
209 struct nvme_queue *nvmeq = dev->queues[0];
210
211 BUG_ON(!nvmeq);
212 cmd->nvmeq = nvmeq;
213 return 0;
Keith Busch22404272013-07-15 15:02:20 -0600214}
215
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700216static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
217 unsigned int hctx_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500218{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700219 struct nvme_dev *dev = data;
Keith Busch42483222015-06-01 09:29:54 -0600220 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500221
Keith Busch42483222015-06-01 09:29:54 -0600222 if (!nvmeq->tags)
223 nvmeq->tags = &dev->tagset.tags[hctx_idx];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500224
Keith Busch42483222015-06-01 09:29:54 -0600225 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700226 hctx->driver_data = nvmeq;
227 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500228}
229
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700230static int nvme_init_request(void *data, struct request *req,
231 unsigned int hctx_idx, unsigned int rq_idx,
232 unsigned int numa_node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500233{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700234 struct nvme_dev *dev = data;
235 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
236 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
237
238 BUG_ON(!nvmeq);
239 cmd->nvmeq = nvmeq;
240 return 0;
241}
242
243static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx,
244 nvme_completion_fn handler)
245{
246 cmd->fn = handler;
247 cmd->ctx = ctx;
248 cmd->aborted = 0;
Keith Buschc917dfe2015-01-07 18:55:48 -0700249 blk_mq_start_request(blk_mq_rq_from_pdu(cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500250}
251
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700252static void *iod_get_private(struct nvme_iod *iod)
253{
254 return (void *) (iod->private & ~0x1UL);
255}
256
257/*
258 * If bit 0 is set, the iod is embedded in the request payload.
259 */
260static bool iod_should_kfree(struct nvme_iod *iod)
261{
Chong Yuanfda631f2015-03-27 09:21:32 +0800262 return (iod->private & NVME_INT_MASK) == 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700263}
264
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400265/* Special values must be less than 0x1000 */
266#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500267#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
268#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
269#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500270
Keith Buschedd10d32014-04-03 16:45:23 -0600271static void special_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400272 struct nvme_completion *cqe)
273{
274 if (ctx == CMD_CTX_CANCELLED)
275 return;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400276 if (ctx == CMD_CTX_COMPLETED) {
Keith Buschedd10d32014-04-03 16:45:23 -0600277 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400278 "completed id %d twice on queue %d\n",
279 cqe->command_id, le16_to_cpup(&cqe->sq_id));
280 return;
281 }
282 if (ctx == CMD_CTX_INVALID) {
Keith Buschedd10d32014-04-03 16:45:23 -0600283 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400284 "invalid id %d completed on queue %d\n",
285 cqe->command_id, le16_to_cpup(&cqe->sq_id));
286 return;
287 }
Keith Buschedd10d32014-04-03 16:45:23 -0600288 dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400289}
290
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700291static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn)
292{
293 void *ctx;
294
295 if (fn)
296 *fn = cmd->fn;
297 ctx = cmd->ctx;
298 cmd->fn = special_completion;
299 cmd->ctx = CMD_CTX_CANCELLED;
300 return ctx;
301}
302
303static void async_req_completion(struct nvme_queue *nvmeq, void *ctx,
304 struct nvme_completion *cqe)
305{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700306 u32 result = le32_to_cpup(&cqe->result);
307 u16 status = le16_to_cpup(&cqe->status) >> 1;
308
309 if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ)
310 ++nvmeq->dev->event_limit;
Keith Buscha5768aa2015-06-01 14:28:14 -0600311 if (status != NVME_SC_SUCCESS)
312 return;
313
314 switch (result & 0xff07) {
315 case NVME_AER_NOTICE_NS_CHANGED:
316 dev_info(nvmeq->q_dmadev, "rescanning\n");
317 schedule_work(&nvmeq->dev->scan_work);
318 default:
319 dev_warn(nvmeq->q_dmadev, "async event result %08x\n", result);
320 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700321}
322
323static void abort_completion(struct nvme_queue *nvmeq, void *ctx,
324 struct nvme_completion *cqe)
325{
326 struct request *req = ctx;
327
328 u16 status = le16_to_cpup(&cqe->status) >> 1;
329 u32 result = le32_to_cpup(&cqe->result);
330
Keith Busch42483222015-06-01 09:29:54 -0600331 blk_mq_free_request(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700332
333 dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result);
334 ++nvmeq->dev->abort_limit;
335}
336
Keith Buschedd10d32014-04-03 16:45:23 -0600337static void async_completion(struct nvme_queue *nvmeq, void *ctx,
Keith Busch4d115422013-12-10 13:10:40 -0700338 struct nvme_completion *cqe)
339{
340 struct async_cmd_info *cmdinfo = ctx;
341 cmdinfo->result = le32_to_cpup(&cqe->result);
342 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
343 queue_kthread_work(cmdinfo->worker, &cmdinfo->work);
Keith Busch42483222015-06-01 09:29:54 -0600344 blk_mq_free_request(cmdinfo->req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700345}
346
347static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq,
348 unsigned int tag)
349{
Keith Busch42483222015-06-01 09:29:54 -0600350 struct request *req = blk_mq_tag_to_rq(*nvmeq->tags, tag);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700351
352 return blk_mq_rq_to_pdu(req);
Keith Busch4d115422013-12-10 13:10:40 -0700353}
354
Matthew Wilcox184d2942011-05-11 21:36:38 -0400355/*
356 * Called with local interrupts disabled and the q_lock held. May not sleep.
357 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700358static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400359 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500360{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700361 struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400362 void *ctx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700363 if (tag >= nvmeq->q_depth) {
364 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500365 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400366 }
Keith Busch859361a2012-08-02 14:05:59 -0600367 if (fn)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700368 *fn = cmd->fn;
369 ctx = cmd->ctx;
370 cmd->fn = special_completion;
371 cmd->ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400372 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500373}
374
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500375/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400376 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500377 * @nvmeq: The queue to use
378 * @cmd: The command to send
379 *
380 * Safe to use from interrupt context
381 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700382static int __nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500383{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700384 u16 tail = nvmeq->sq_tail;
385
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500386 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500387 if (++tail == nvmeq->q_depth)
388 tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500389 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500390 nvmeq->sq_tail = tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500391
392 return 0;
393}
394
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700395static int nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
396{
397 unsigned long flags;
398 int ret;
399 spin_lock_irqsave(&nvmeq->q_lock, flags);
400 ret = __nvme_submit_cmd(nvmeq, cmd);
401 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
402 return ret;
403}
404
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500405static __le64 **iod_list(struct nvme_iod *iod)
406{
407 return ((void *)iod) + iod->offset;
408}
409
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700410static inline void iod_init(struct nvme_iod *iod, unsigned nbytes,
411 unsigned nseg, unsigned long private)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500412{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700413 iod->private = private;
414 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
415 iod->npages = -1;
416 iod->length = nbytes;
417 iod->nents = 0;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500418}
419
420static struct nvme_iod *
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700421__nvme_alloc_iod(unsigned nseg, unsigned bytes, struct nvme_dev *dev,
422 unsigned long priv, gfp_t gfp)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500423{
424 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700425 sizeof(__le64 *) * nvme_npages(bytes, dev) +
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500426 sizeof(struct scatterlist) * nseg, gfp);
427
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700428 if (iod)
429 iod_init(iod, bytes, nseg, priv);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500430
431 return iod;
432}
433
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700434static struct nvme_iod *nvme_alloc_iod(struct request *rq, struct nvme_dev *dev,
435 gfp_t gfp)
436{
437 unsigned size = !(rq->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(rq) :
438 sizeof(struct nvme_dsm_range);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700439 struct nvme_iod *iod;
440
441 if (rq->nr_phys_segments <= NVME_INT_PAGES &&
442 size <= NVME_INT_BYTES(dev)) {
443 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(rq);
444
445 iod = cmd->iod;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700446 iod_init(iod, size, rq->nr_phys_segments,
Chong Yuanfda631f2015-03-27 09:21:32 +0800447 (unsigned long) rq | NVME_INT_MASK);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700448 return iod;
449 }
450
451 return __nvme_alloc_iod(rq->nr_phys_segments, size, dev,
452 (unsigned long) rq, gfp);
453}
454
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200455static void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500456{
Keith Busch1d090622014-06-23 11:34:01 -0600457 const int last_prp = dev->page_size / 8 - 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500458 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500459 __le64 **list = iod_list(iod);
460 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500461
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500462 if (iod->npages == 0)
463 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
464 for (i = 0; i < iod->npages; i++) {
465 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500466 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500467 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500468 prp_dma = next_prp_dma;
469 }
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700470
471 if (iod_should_kfree(iod))
472 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500473}
474
Keith Buschb4ff9c82014-08-29 09:06:12 -0600475static int nvme_error_status(u16 status)
476{
477 switch (status & 0x7ff) {
478 case NVME_SC_SUCCESS:
479 return 0;
480 case NVME_SC_CAP_EXCEEDED:
481 return -ENOSPC;
482 default:
483 return -EIO;
484 }
485}
486
Keith Busch52b68d72015-02-23 09:16:21 -0700487#ifdef CONFIG_BLK_DEV_INTEGRITY
Keith Busche1e5e562015-02-19 13:39:03 -0700488static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
489{
490 if (be32_to_cpu(pi->ref_tag) == v)
491 pi->ref_tag = cpu_to_be32(p);
492}
493
494static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
495{
496 if (be32_to_cpu(pi->ref_tag) == p)
497 pi->ref_tag = cpu_to_be32(v);
498}
499
500/**
501 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
502 *
503 * The virtual start sector is the one that was originally submitted by the
504 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
505 * start sector may be different. Remap protection information to match the
506 * physical LBA on writes, and back to the original seed on reads.
507 *
508 * Type 0 and 3 do not have a ref tag, so no remapping required.
509 */
510static void nvme_dif_remap(struct request *req,
511 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
512{
513 struct nvme_ns *ns = req->rq_disk->private_data;
514 struct bio_integrity_payload *bip;
515 struct t10_pi_tuple *pi;
516 void *p, *pmap;
517 u32 i, nlb, ts, phys, virt;
518
519 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
520 return;
521
522 bip = bio_integrity(req->bio);
523 if (!bip)
524 return;
525
526 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
Keith Busche1e5e562015-02-19 13:39:03 -0700527
528 p = pmap;
529 virt = bip_get_seed(bip);
530 phys = nvme_block_nr(ns, blk_rq_pos(req));
531 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
532 ts = ns->disk->integrity->tuple_size;
533
534 for (i = 0; i < nlb; i++, virt++, phys++) {
535 pi = (struct t10_pi_tuple *)p;
536 dif_swap(phys, virt, pi);
537 p += ts;
538 }
539 kunmap_atomic(pmap);
540}
541
Keith Busch52b68d72015-02-23 09:16:21 -0700542static int nvme_noop_verify(struct blk_integrity_iter *iter)
543{
544 return 0;
545}
546
547static int nvme_noop_generate(struct blk_integrity_iter *iter)
548{
549 return 0;
550}
551
552struct blk_integrity nvme_meta_noop = {
553 .name = "NVME_META_NOOP",
554 .generate_fn = nvme_noop_generate,
555 .verify_fn = nvme_noop_verify,
556};
557
558static void nvme_init_integrity(struct nvme_ns *ns)
559{
560 struct blk_integrity integrity;
561
562 switch (ns->pi_type) {
563 case NVME_NS_DPS_PI_TYPE3:
564 integrity = t10_pi_type3_crc;
565 break;
566 case NVME_NS_DPS_PI_TYPE1:
567 case NVME_NS_DPS_PI_TYPE2:
568 integrity = t10_pi_type1_crc;
569 break;
570 default:
571 integrity = nvme_meta_noop;
572 break;
573 }
574 integrity.tuple_size = ns->ms;
575 blk_integrity_register(ns->disk, &integrity);
576 blk_queue_max_integrity_segments(ns->queue, 1);
577}
578#else /* CONFIG_BLK_DEV_INTEGRITY */
579static void nvme_dif_remap(struct request *req,
580 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
581{
582}
583static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
584{
585}
586static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
587{
588}
589static void nvme_init_integrity(struct nvme_ns *ns)
590{
591}
592#endif
593
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700594static void req_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500595 struct nvme_completion *cqe)
596{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500597 struct nvme_iod *iod = ctx;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700598 struct request *req = iod_get_private(iod);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700599 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
600
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500601 u16 status = le16_to_cpup(&cqe->status) >> 1;
602
Keith Buschedd10d32014-04-03 16:45:23 -0600603 if (unlikely(status)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700604 if (!(status & NVME_SC_DNR || blk_noretry_request(req))
605 && (jiffies - req->start_time) < req->timeout) {
Keith Buschc9d3bf82015-01-07 18:55:52 -0700606 unsigned long flags;
607
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700608 blk_mq_requeue_request(req);
Keith Buschc9d3bf82015-01-07 18:55:52 -0700609 spin_lock_irqsave(req->q->queue_lock, flags);
610 if (!blk_queue_stopped(req->q))
611 blk_mq_kick_requeue_list(req->q);
612 spin_unlock_irqrestore(req->q->queue_lock, flags);
Keith Buschedd10d32014-04-03 16:45:23 -0600613 return;
614 }
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200615 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200616 req->errors = status;
617 } else {
618 req->errors = nvme_error_status(status);
619 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700620 } else
621 req->errors = 0;
Keith Buscha0a931d2015-05-22 12:28:31 -0600622 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
623 u32 result = le32_to_cpup(&cqe->result);
624 req->special = (void *)(uintptr_t)result;
625 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700626
627 if (cmd_rq->aborted)
Christoph Hellwige75ec752015-05-22 11:12:39 +0200628 dev_warn(nvmeq->dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700629 "completing aborted command with status:%04x\n",
630 status);
631
Keith Busche1e5e562015-02-19 13:39:03 -0700632 if (iod->nents) {
Christoph Hellwige75ec752015-05-22 11:12:39 +0200633 dma_unmap_sg(nvmeq->dev->dev, iod->sg, iod->nents,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700634 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Keith Busche1e5e562015-02-19 13:39:03 -0700635 if (blk_integrity_rq(req)) {
636 if (!rq_data_dir(req))
637 nvme_dif_remap(req, nvme_dif_complete);
Christoph Hellwige75ec752015-05-22 11:12:39 +0200638 dma_unmap_sg(nvmeq->dev->dev, iod->meta_sg, 1,
Keith Busche1e5e562015-02-19 13:39:03 -0700639 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
640 }
641 }
Keith Buschedd10d32014-04-03 16:45:23 -0600642 nvme_free_iod(nvmeq->dev, iod);
Keith Busch3291fa52014-04-28 12:30:52 -0600643
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700644 blk_mq_complete_request(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500645}
646
Matthew Wilcox184d2942011-05-11 21:36:38 -0400647/* length is in bytes. gfp flags indicates whether we may sleep. */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200648static int nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod,
649 int total_len, gfp_t gfp)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500650{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500651 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500652 int length = total_len;
653 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500654 int dma_len = sg_dma_len(sg);
655 u64 dma_addr = sg_dma_address(sg);
Murali Iyerf137e0f2015-03-26 11:07:51 -0500656 u32 page_size = dev->page_size;
657 int offset = dma_addr & (page_size - 1);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500658 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500659 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500660 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500661 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500662
Keith Busch1d090622014-06-23 11:34:01 -0600663 length -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500664 if (length <= 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500665 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500666
Keith Busch1d090622014-06-23 11:34:01 -0600667 dma_len -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500668 if (dma_len) {
Keith Busch1d090622014-06-23 11:34:01 -0600669 dma_addr += (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500670 } else {
671 sg = sg_next(sg);
672 dma_addr = sg_dma_address(sg);
673 dma_len = sg_dma_len(sg);
674 }
675
Keith Busch1d090622014-06-23 11:34:01 -0600676 if (length <= page_size) {
Keith Buschedd10d32014-04-03 16:45:23 -0600677 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500678 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500679 }
680
Keith Busch1d090622014-06-23 11:34:01 -0600681 nprps = DIV_ROUND_UP(length, page_size);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500682 if (nprps <= (256 / 8)) {
683 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500684 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500685 } else {
686 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500687 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500688 }
689
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400690 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
691 if (!prp_list) {
Keith Buschedd10d32014-04-03 16:45:23 -0600692 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500693 iod->npages = -1;
Keith Busch1d090622014-06-23 11:34:01 -0600694 return (total_len - length) + page_size;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400695 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500696 list[0] = prp_list;
697 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500698 i = 0;
699 for (;;) {
Keith Busch1d090622014-06-23 11:34:01 -0600700 if (i == page_size >> 3) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500701 __le64 *old_prp_list = prp_list;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400702 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500703 if (!prp_list)
704 return total_len - length;
705 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400706 prp_list[0] = old_prp_list[i - 1];
707 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
708 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500709 }
710 prp_list[i++] = cpu_to_le64(dma_addr);
Keith Busch1d090622014-06-23 11:34:01 -0600711 dma_len -= page_size;
712 dma_addr += page_size;
713 length -= page_size;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500714 if (length <= 0)
715 break;
716 if (dma_len > 0)
717 continue;
718 BUG_ON(dma_len < 0);
719 sg = sg_next(sg);
720 dma_addr = sg_dma_address(sg);
721 dma_len = sg_dma_len(sg);
722 }
723
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500724 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500725}
726
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200727static void nvme_submit_priv(struct nvme_queue *nvmeq, struct request *req,
728 struct nvme_iod *iod)
729{
730 struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
731
732 memcpy(cmnd, req->cmd, sizeof(struct nvme_command));
733 cmnd->rw.command_id = req->tag;
734 if (req->nr_phys_segments) {
735 cmnd->rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
736 cmnd->rw.prp2 = cpu_to_le64(iod->first_dma);
737 }
738
739 if (++nvmeq->sq_tail == nvmeq->q_depth)
740 nvmeq->sq_tail = 0;
741 writel(nvmeq->sq_tail, nvmeq->q_db);
742}
743
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700744/*
745 * We reuse the small pool to allocate the 16-byte range here as it is not
746 * worth having a special pool for these or additional cases to handle freeing
747 * the iod.
748 */
749static void nvme_submit_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns,
750 struct request *req, struct nvme_iod *iod)
Keith Busch0e5e4f02012-11-09 16:33:05 -0700751{
Keith Buschedd10d32014-04-03 16:45:23 -0600752 struct nvme_dsm_range *range =
753 (struct nvme_dsm_range *)iod_list(iod)[0];
Keith Busch0e5e4f02012-11-09 16:33:05 -0700754 struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
755
Keith Busch0e5e4f02012-11-09 16:33:05 -0700756 range->cattr = cpu_to_le32(0);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700757 range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift);
758 range->slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
Keith Busch0e5e4f02012-11-09 16:33:05 -0700759
760 memset(cmnd, 0, sizeof(*cmnd));
761 cmnd->dsm.opcode = nvme_cmd_dsm;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700762 cmnd->dsm.command_id = req->tag;
Keith Busch0e5e4f02012-11-09 16:33:05 -0700763 cmnd->dsm.nsid = cpu_to_le32(ns->ns_id);
764 cmnd->dsm.prp1 = cpu_to_le64(iod->first_dma);
765 cmnd->dsm.nr = 0;
766 cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
767
768 if (++nvmeq->sq_tail == nvmeq->q_depth)
769 nvmeq->sq_tail = 0;
770 writel(nvmeq->sq_tail, nvmeq->q_db);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700771}
772
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700773static void nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500774 int cmdid)
775{
776 struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
777
778 memset(cmnd, 0, sizeof(*cmnd));
779 cmnd->common.opcode = nvme_cmd_flush;
780 cmnd->common.command_id = cmdid;
781 cmnd->common.nsid = cpu_to_le32(ns->ns_id);
782
783 if (++nvmeq->sq_tail == nvmeq->q_depth)
784 nvmeq->sq_tail = 0;
785 writel(nvmeq->sq_tail, nvmeq->q_db);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500786}
787
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700788static int nvme_submit_iod(struct nvme_queue *nvmeq, struct nvme_iod *iod,
789 struct nvme_ns *ns)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500790{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700791 struct request *req = iod_get_private(iod);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500792 struct nvme_command *cmnd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700793 u16 control = 0;
794 u32 dsmgmt = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500795
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700796 if (req->cmd_flags & REQ_FUA)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500797 control |= NVME_RW_FUA;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700798 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500799 control |= NVME_RW_LR;
800
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700801 if (req->cmd_flags & REQ_RAHEAD)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500802 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
803
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500804 cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
Matthew Wilcoxb8deb622011-01-26 10:08:25 -0500805 memset(cmnd, 0, sizeof(*cmnd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500806
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700807 cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
808 cmnd->rw.command_id = req->tag;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500809 cmnd->rw.nsid = cpu_to_le32(ns->ns_id);
Keith Buschedd10d32014-04-03 16:45:23 -0600810 cmnd->rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
811 cmnd->rw.prp2 = cpu_to_le64(iod->first_dma);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700812 cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
813 cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
Keith Busche1e5e562015-02-19 13:39:03 -0700814
815 if (blk_integrity_rq(req)) {
816 cmnd->rw.metadata = cpu_to_le64(sg_dma_address(iod->meta_sg));
817 switch (ns->pi_type) {
818 case NVME_NS_DPS_PI_TYPE3:
819 control |= NVME_RW_PRINFO_PRCHK_GUARD;
820 break;
821 case NVME_NS_DPS_PI_TYPE1:
822 case NVME_NS_DPS_PI_TYPE2:
823 control |= NVME_RW_PRINFO_PRCHK_GUARD |
824 NVME_RW_PRINFO_PRCHK_REF;
825 cmnd->rw.reftag = cpu_to_le32(
826 nvme_block_nr(ns, blk_rq_pos(req)));
827 break;
828 }
829 } else if (ns->ms)
830 control |= NVME_RW_PRINFO_PRACT;
831
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500832 cmnd->rw.control = cpu_to_le16(control);
833 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500834
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500835 if (++nvmeq->sq_tail == nvmeq->q_depth)
836 nvmeq->sq_tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500837 writel(nvmeq->sq_tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500838
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500839 return 0;
Keith Buschedd10d32014-04-03 16:45:23 -0600840}
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500841
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200842/*
843 * NOTE: ns is NULL when called on the admin queue.
844 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700845static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
846 const struct blk_mq_queue_data *bd)
Keith Busch53562be2014-04-29 11:41:29 -0600847{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700848 struct nvme_ns *ns = hctx->queue->queuedata;
849 struct nvme_queue *nvmeq = hctx->driver_data;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200850 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700851 struct request *req = bd->rq;
852 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
Keith Buschedd10d32014-04-03 16:45:23 -0600853 struct nvme_iod *iod;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700854 enum dma_data_direction dma_dir;
Keith Buschedd10d32014-04-03 16:45:23 -0600855
Keith Busche1e5e562015-02-19 13:39:03 -0700856 /*
857 * If formated with metadata, require the block layer provide a buffer
858 * unless this namespace is formated such that the metadata can be
859 * stripped/generated by the controller with PRACT=1.
860 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200861 if (ns && ns->ms && !blk_integrity_rq(req)) {
Keith Busch71feb362015-06-19 11:07:30 -0600862 if (!(ns->pi_type && ns->ms == 8) &&
863 req->cmd_type != REQ_TYPE_DRV_PRIV) {
Keith Busche1e5e562015-02-19 13:39:03 -0700864 req->errors = -EFAULT;
865 blk_mq_complete_request(req);
866 return BLK_MQ_RQ_QUEUE_OK;
867 }
868 }
869
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200870 iod = nvme_alloc_iod(req, dev, GFP_ATOMIC);
Keith Buschedd10d32014-04-03 16:45:23 -0600871 if (!iod)
Jens Axboefe543032014-12-11 13:58:39 -0700872 return BLK_MQ_RQ_QUEUE_BUSY;
Keith Buschedd10d32014-04-03 16:45:23 -0600873
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700874 if (req->cmd_flags & REQ_DISCARD) {
Keith Buschedd10d32014-04-03 16:45:23 -0600875 void *range;
876 /*
877 * We reuse the small pool to allocate the 16-byte range here
878 * as it is not worth having a special pool for these or
879 * additional cases to handle freeing the iod.
880 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200881 range = dma_pool_alloc(dev->prp_small_pool, GFP_ATOMIC,
Keith Buschedd10d32014-04-03 16:45:23 -0600882 &iod->first_dma);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700883 if (!range)
Jens Axboefe543032014-12-11 13:58:39 -0700884 goto retry_cmd;
Keith Buschedd10d32014-04-03 16:45:23 -0600885 iod_list(iod)[0] = (__le64 *)range;
886 iod->npages = 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700887 } else if (req->nr_phys_segments) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700888 dma_dir = rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Keith Buschedd10d32014-04-03 16:45:23 -0600889
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700890 sg_init_table(iod->sg, req->nr_phys_segments);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700891 iod->nents = blk_rq_map_sg(req->q, req, iod->sg);
Jens Axboefe543032014-12-11 13:58:39 -0700892 if (!iod->nents)
893 goto error_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700894
895 if (!dma_map_sg(nvmeq->q_dmadev, iod->sg, iod->nents, dma_dir))
Jens Axboefe543032014-12-11 13:58:39 -0700896 goto retry_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700897
Jens Axboefe543032014-12-11 13:58:39 -0700898 if (blk_rq_bytes(req) !=
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200899 nvme_setup_prps(dev, iod, blk_rq_bytes(req), GFP_ATOMIC)) {
900 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
Jens Axboefe543032014-12-11 13:58:39 -0700901 goto retry_cmd;
902 }
Keith Busche1e5e562015-02-19 13:39:03 -0700903 if (blk_integrity_rq(req)) {
904 if (blk_rq_count_integrity_sg(req->q, req->bio) != 1)
905 goto error_cmd;
906
907 sg_init_table(iod->meta_sg, 1);
908 if (blk_rq_map_integrity_sg(
909 req->q, req->bio, iod->meta_sg) != 1)
910 goto error_cmd;
911
912 if (rq_data_dir(req))
913 nvme_dif_remap(req, nvme_dif_prep);
914
915 if (!dma_map_sg(nvmeq->q_dmadev, iod->meta_sg, 1, dma_dir))
916 goto error_cmd;
917 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700918 }
919
Keith Busch9af87852014-12-03 17:07:13 -0700920 nvme_set_info(cmd, iod, req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700921 spin_lock_irq(&nvmeq->q_lock);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200922 if (req->cmd_type == REQ_TYPE_DRV_PRIV)
923 nvme_submit_priv(nvmeq, req, iod);
924 else if (req->cmd_flags & REQ_DISCARD)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700925 nvme_submit_discard(nvmeq, ns, req, iod);
926 else if (req->cmd_flags & REQ_FLUSH)
927 nvme_submit_flush(nvmeq, ns, req->tag);
928 else
929 nvme_submit_iod(nvmeq, iod, ns);
930
931 nvme_process_cq(nvmeq);
932 spin_unlock_irq(&nvmeq->q_lock);
933 return BLK_MQ_RQ_QUEUE_OK;
934
Jens Axboefe543032014-12-11 13:58:39 -0700935 error_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200936 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700937 return BLK_MQ_RQ_QUEUE_ERROR;
938 retry_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200939 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700940 return BLK_MQ_RQ_QUEUE_BUSY;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500941}
942
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400943static int nvme_process_cq(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500944{
Matthew Wilcox82123462011-01-20 13:24:06 -0500945 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500946
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500947 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500948 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500949
950 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400951 void *ctx;
952 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500953 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -0500954 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500955 break;
956 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
957 if (++head == nvmeq->q_depth) {
958 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500959 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500960 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700961 ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn);
Keith Buschedd10d32014-04-03 16:45:23 -0600962 fn(nvmeq, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500963 }
964
965 /* If the controller ignores the cq head doorbell and continuously
966 * writes to the queue, it is theoretically possible to wrap around
967 * the queue twice and mistakenly return IRQ_NONE. Linux only
968 * requires that 0.1% of your interrupts are handled, so this isn't
969 * a big problem.
970 */
Matthew Wilcox82123462011-01-20 13:24:06 -0500971 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400972 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500973
Haiyan Hub80d5cc2013-09-10 11:25:37 +0800974 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500975 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500976 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500977
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400978 nvmeq->cqe_seen = 1;
979 return 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500980}
981
982static irqreturn_t nvme_irq(int irq, void *data)
983{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500984 irqreturn_t result;
985 struct nvme_queue *nvmeq = data;
986 spin_lock(&nvmeq->q_lock);
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400987 nvme_process_cq(nvmeq);
988 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
989 nvmeq->cqe_seen = 0;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500990 spin_unlock(&nvmeq->q_lock);
991 return result;
992}
993
994static irqreturn_t nvme_irq_check(int irq, void *data)
995{
996 struct nvme_queue *nvmeq = data;
997 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
998 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
999 return IRQ_NONE;
1000 return IRQ_WAKE_THREAD;
1001}
1002
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001003/*
1004 * Returns 0 on success. If the result is negative, it's a Linux error code;
1005 * if the result is positive, it's an NVM Express status code
1006 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001007int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1008 void *buffer, void __user *ubuffer, unsigned bufflen,
1009 u32 *result, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001010{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001011 bool write = cmd->common.opcode & 1;
1012 struct bio *bio = NULL;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001013 struct request *req;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001014 int ret;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001015
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001016 req = blk_mq_alloc_request(q, write, GFP_KERNEL, false);
Christoph Hellwigf705f832015-05-22 11:12:38 +02001017 if (IS_ERR(req))
1018 return PTR_ERR(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001019
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001020 req->cmd_type = REQ_TYPE_DRV_PRIV;
Matias Bjørlinge112af02015-06-05 14:54:24 +02001021 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001022 req->__data_len = 0;
1023 req->__sector = (sector_t) -1;
1024 req->bio = req->biotail = NULL;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001025
Keith Buschf4ff4142015-05-28 09:48:54 -06001026 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001027
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001028 req->cmd = (unsigned char *)cmd;
1029 req->cmd_len = sizeof(struct nvme_command);
Keith Buscha0a931d2015-05-22 12:28:31 -06001030 req->special = (void *)0;
Matthew Wilcox3c0cf132011-02-04 16:03:56 -05001031
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001032 if (buffer && bufflen) {
1033 ret = blk_rq_map_kern(q, req, buffer, bufflen, __GFP_WAIT);
1034 if (ret)
1035 goto out;
1036 } else if (ubuffer && bufflen) {
1037 ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen, __GFP_WAIT);
1038 if (ret)
1039 goto out;
1040 bio = req->bio;
1041 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001042
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001043 blk_execute_rq(req->q, NULL, req, 0);
1044 if (bio)
1045 blk_rq_unmap_user(bio);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001046 if (result)
Keith Buscha0a931d2015-05-22 12:28:31 -06001047 *result = (u32)(uintptr_t)req->special;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001048 ret = req->errors;
1049 out:
Christoph Hellwigf705f832015-05-22 11:12:38 +02001050 blk_mq_free_request(req);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001051 return ret;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001052}
1053
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001054int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1055 void *buffer, unsigned bufflen)
Christoph Hellwigf705f832015-05-22 11:12:38 +02001056{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001057 return __nvme_submit_sync_cmd(q, cmd, buffer, NULL, bufflen, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001058}
1059
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001060static int nvme_submit_async_admin_req(struct nvme_dev *dev)
1061{
1062 struct nvme_queue *nvmeq = dev->queues[0];
1063 struct nvme_command c;
1064 struct nvme_cmd_info *cmd_info;
1065 struct request *req;
1066
Keith Busch1efccc92015-03-31 10:37:17 -06001067 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC, true);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001068 if (IS_ERR(req))
1069 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001070
Keith Buschc917dfe2015-01-07 18:55:48 -07001071 req->cmd_flags |= REQ_NO_TIMEOUT;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001072 cmd_info = blk_mq_rq_to_pdu(req);
Keith Busch1efccc92015-03-31 10:37:17 -06001073 nvme_set_info(cmd_info, NULL, async_req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001074
1075 memset(&c, 0, sizeof(c));
1076 c.common.opcode = nvme_admin_async_event;
1077 c.common.command_id = req->tag;
1078
Keith Busch42483222015-06-01 09:29:54 -06001079 blk_mq_free_request(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001080 return __nvme_submit_cmd(nvmeq, &c);
1081}
1082
1083static int nvme_submit_admin_async_cmd(struct nvme_dev *dev,
Keith Busch4d115422013-12-10 13:10:40 -07001084 struct nvme_command *cmd,
1085 struct async_cmd_info *cmdinfo, unsigned timeout)
1086{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001087 struct nvme_queue *nvmeq = dev->queues[0];
1088 struct request *req;
1089 struct nvme_cmd_info *cmd_rq;
Keith Busch4d115422013-12-10 13:10:40 -07001090
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001091 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001092 if (IS_ERR(req))
1093 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001094
1095 req->timeout = timeout;
1096 cmd_rq = blk_mq_rq_to_pdu(req);
1097 cmdinfo->req = req;
1098 nvme_set_info(cmd_rq, cmdinfo, async_completion);
Keith Busch4d115422013-12-10 13:10:40 -07001099 cmdinfo->status = -EINTR;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001100
1101 cmd->common.command_id = req->tag;
1102
Keith Busch4f5099a2014-03-03 16:39:13 -07001103 return nvme_submit_cmd(nvmeq, cmd);
Keith Busch4d115422013-12-10 13:10:40 -07001104}
1105
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001106static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
1107{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001108 struct nvme_command c;
1109
1110 memset(&c, 0, sizeof(c));
1111 c.delete_queue.opcode = opcode;
1112 c.delete_queue.qid = cpu_to_le16(id);
1113
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001114 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001115}
1116
1117static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
1118 struct nvme_queue *nvmeq)
1119{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001120 struct nvme_command c;
1121 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
1122
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001123 /*
1124 * Note: we (ab)use the fact the the prp fields survive if no data
1125 * is attached to the request.
1126 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001127 memset(&c, 0, sizeof(c));
1128 c.create_cq.opcode = nvme_admin_create_cq;
1129 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1130 c.create_cq.cqid = cpu_to_le16(qid);
1131 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1132 c.create_cq.cq_flags = cpu_to_le16(flags);
1133 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
1134
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001135 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001136}
1137
1138static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1139 struct nvme_queue *nvmeq)
1140{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001141 struct nvme_command c;
1142 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
1143
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001144 /*
1145 * Note: we (ab)use the fact the the prp fields survive if no data
1146 * is attached to the request.
1147 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001148 memset(&c, 0, sizeof(c));
1149 c.create_sq.opcode = nvme_admin_create_sq;
1150 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1151 c.create_sq.sqid = cpu_to_le16(qid);
1152 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1153 c.create_sq.sq_flags = cpu_to_le16(flags);
1154 c.create_sq.cqid = cpu_to_le16(qid);
1155
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001156 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001157}
1158
1159static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1160{
1161 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1162}
1163
1164static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1165{
1166 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1167}
1168
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001169int nvme_identify_ctrl(struct nvme_dev *dev, struct nvme_id_ctrl **id)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001170{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001171 struct nvme_command c = {
1172 .identify.opcode = nvme_admin_identify,
1173 .identify.cns = cpu_to_le32(1),
1174 };
1175 int error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001176
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001177 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
1178 if (!*id)
1179 return -ENOMEM;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001180
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001181 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1182 sizeof(struct nvme_id_ctrl));
1183 if (error)
1184 kfree(*id);
1185 return error;
1186}
1187
1188int nvme_identify_ns(struct nvme_dev *dev, unsigned nsid,
1189 struct nvme_id_ns **id)
1190{
1191 struct nvme_command c = {
1192 .identify.opcode = nvme_admin_identify,
1193 .identify.nsid = cpu_to_le32(nsid),
1194 };
1195 int error;
1196
1197 *id = kmalloc(sizeof(struct nvme_id_ns), GFP_KERNEL);
1198 if (!*id)
1199 return -ENOMEM;
1200
1201 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1202 sizeof(struct nvme_id_ns));
1203 if (error)
1204 kfree(*id);
1205 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001206}
1207
Vishal Verma5d0f6132013-03-04 18:40:58 -07001208int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid,
Keith Busch08df1e02012-09-21 10:52:13 -06001209 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001210{
1211 struct nvme_command c;
1212
1213 memset(&c, 0, sizeof(c));
1214 c.features.opcode = nvme_admin_get_features;
Keith Buscha42cecc2012-07-25 16:06:38 -06001215 c.features.nsid = cpu_to_le32(nsid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001216 c.features.prp1 = cpu_to_le64(dma_addr);
1217 c.features.fid = cpu_to_le32(fid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001218
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001219 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1220 result, 0);
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001221}
1222
Vishal Verma5d0f6132013-03-04 18:40:58 -07001223int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11,
1224 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001225{
1226 struct nvme_command c;
1227
1228 memset(&c, 0, sizeof(c));
1229 c.features.opcode = nvme_admin_set_features;
1230 c.features.prp1 = cpu_to_le64(dma_addr);
1231 c.features.fid = cpu_to_le32(fid);
1232 c.features.dword11 = cpu_to_le32(dword11);
1233
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001234 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1235 result, 0);
1236}
1237
1238int nvme_get_log_page(struct nvme_dev *dev, struct nvme_smart_log **log)
1239{
1240 struct nvme_command c = {
1241 .common.opcode = nvme_admin_get_log_page,
1242 .common.nsid = cpu_to_le32(0xFFFFFFFF),
1243 .common.cdw10[0] = cpu_to_le32(
1244 (((sizeof(struct nvme_smart_log) / 4) - 1) << 16) |
1245 NVME_LOG_SMART),
1246 };
1247 int error;
1248
1249 *log = kmalloc(sizeof(struct nvme_smart_log), GFP_KERNEL);
1250 if (!*log)
1251 return -ENOMEM;
1252
1253 error = nvme_submit_sync_cmd(dev->admin_q, &c, *log,
1254 sizeof(struct nvme_smart_log));
1255 if (error)
1256 kfree(*log);
1257 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001258}
1259
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001260/**
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001261 * nvme_abort_req - Attempt aborting a request
Keith Buschc30341d2013-12-10 13:10:38 -07001262 *
1263 * Schedule controller reset if the command was already aborted once before and
1264 * still hasn't been returned to the driver, or if this is the admin queue.
1265 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001266static void nvme_abort_req(struct request *req)
Keith Buschc30341d2013-12-10 13:10:38 -07001267{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001268 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
1269 struct nvme_queue *nvmeq = cmd_rq->nvmeq;
Keith Buschc30341d2013-12-10 13:10:38 -07001270 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001271 struct request *abort_req;
1272 struct nvme_cmd_info *abort_cmd;
1273 struct nvme_command cmd;
Keith Buschc30341d2013-12-10 13:10:38 -07001274
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001275 if (!nvmeq->qid || cmd_rq->aborted) {
Keith Busch7a509a62015-01-07 18:55:53 -07001276 unsigned long flags;
1277
1278 spin_lock_irqsave(&dev_list_lock, flags);
Keith Buschc30341d2013-12-10 13:10:38 -07001279 if (work_busy(&dev->reset_work))
Keith Busch7a509a62015-01-07 18:55:53 -07001280 goto out;
Keith Buschc30341d2013-12-10 13:10:38 -07001281 list_del_init(&dev->node);
Christoph Hellwige75ec752015-05-22 11:12:39 +02001282 dev_warn(dev->dev, "I/O %d QID %d timeout, reset controller\n",
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001283 req->tag, nvmeq->qid);
Tejun Heo9ca97372014-03-07 10:24:49 -05001284 dev->reset_workfn = nvme_reset_failed_dev;
Keith Buschc30341d2013-12-10 13:10:38 -07001285 queue_work(nvme_workq, &dev->reset_work);
Keith Busch7a509a62015-01-07 18:55:53 -07001286 out:
1287 spin_unlock_irqrestore(&dev_list_lock, flags);
Keith Buschc30341d2013-12-10 13:10:38 -07001288 return;
1289 }
1290
1291 if (!dev->abort_limit)
1292 return;
1293
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001294 abort_req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC,
1295 false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001296 if (IS_ERR(abort_req))
Keith Buschc30341d2013-12-10 13:10:38 -07001297 return;
1298
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001299 abort_cmd = blk_mq_rq_to_pdu(abort_req);
1300 nvme_set_info(abort_cmd, abort_req, abort_completion);
1301
Keith Buschc30341d2013-12-10 13:10:38 -07001302 memset(&cmd, 0, sizeof(cmd));
1303 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001304 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001305 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001306 cmd.abort.command_id = abort_req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001307
1308 --dev->abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001309 cmd_rq->aborted = 1;
Keith Buschc30341d2013-12-10 13:10:38 -07001310
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001311 dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag,
Keith Buschc30341d2013-12-10 13:10:38 -07001312 nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001313 if (nvme_submit_cmd(dev->queues[0], &cmd) < 0) {
1314 dev_warn(nvmeq->q_dmadev,
1315 "Could not abort I/O %d QID %d",
1316 req->tag, nvmeq->qid);
Sam Bradshawc87fd542014-12-10 13:00:31 -07001317 blk_mq_free_request(abort_req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001318 }
Keith Buschc30341d2013-12-10 13:10:38 -07001319}
1320
Keith Busch42483222015-06-01 09:29:54 -06001321static void nvme_cancel_queue_ios(struct request *req, void *data, bool reserved)
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001322{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001323 struct nvme_queue *nvmeq = data;
1324 void *ctx;
1325 nvme_completion_fn fn;
1326 struct nvme_cmd_info *cmd;
Keith Buschcef6a942015-01-07 18:55:51 -07001327 struct nvme_completion cqe;
1328
1329 if (!blk_mq_request_started(req))
1330 return;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001331
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001332 cmd = blk_mq_rq_to_pdu(req);
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001333
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001334 if (cmd->ctx == CMD_CTX_CANCELLED)
1335 return;
1336
Keith Buschcef6a942015-01-07 18:55:51 -07001337 if (blk_queue_dying(req->q))
1338 cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1);
1339 else
1340 cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
1341
1342
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001343 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n",
1344 req->tag, nvmeq->qid);
1345 ctx = cancel_cmd_info(cmd, &fn);
1346 fn(nvmeq, ctx, &cqe);
1347}
1348
1349static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1350{
1351 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
1352 struct nvme_queue *nvmeq = cmd->nvmeq;
1353
Keith Busch07836e62015-02-19 10:34:48 -07001354 dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag,
1355 nvmeq->qid);
1356 spin_lock_irq(&nvmeq->q_lock);
1357 nvme_abort_req(req);
1358 spin_unlock_irq(&nvmeq->q_lock);
1359
Keith Busch7a509a62015-01-07 18:55:53 -07001360 /*
1361 * The aborted req will be completed on receiving the abort req.
1362 * We enable the timer again. If hit twice, it'll cause a device reset,
1363 * as the device then is in a faulty state.
1364 */
Keith Busch07836e62015-02-19 10:34:48 -07001365 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001366}
1367
Keith Buschf435c282014-07-07 09:14:42 -06001368static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001369{
1370 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1371 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
1372 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
1373 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1374 kfree(nvmeq);
1375}
1376
Keith Buscha1a5ef92013-12-16 13:50:00 -05001377static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001378{
1379 int i;
1380
Keith Buscha1a5ef92013-12-16 13:50:00 -05001381 for (i = dev->queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001382 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch22404272013-07-15 15:02:20 -06001383 dev->queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001384 dev->queues[i] = NULL;
Keith Buschf435c282014-07-07 09:14:42 -06001385 nvme_free_queue(nvmeq);
kaoudis121c7ad2015-01-14 21:01:58 -07001386 }
Keith Busch22404272013-07-15 15:02:20 -06001387}
1388
Keith Busch4d115422013-12-10 13:10:40 -07001389/**
1390 * nvme_suspend_queue - put queue into suspended state
1391 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001392 */
1393static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001394{
Keith Busch2b25d982014-12-22 12:59:04 -07001395 int vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001396
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001397 spin_lock_irq(&nvmeq->q_lock);
Keith Busch2b25d982014-12-22 12:59:04 -07001398 if (nvmeq->cq_vector == -1) {
1399 spin_unlock_irq(&nvmeq->q_lock);
1400 return 1;
1401 }
1402 vector = nvmeq->dev->entry[nvmeq->cq_vector].vector;
Keith Busch42f61422014-03-24 10:46:25 -06001403 nvmeq->dev->online_queues--;
Keith Busch2b25d982014-12-22 12:59:04 -07001404 nvmeq->cq_vector = -1;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001405 spin_unlock_irq(&nvmeq->q_lock);
1406
Keith Busch6df3dbc2015-03-26 13:49:33 -06001407 if (!nvmeq->qid && nvmeq->dev->admin_q)
1408 blk_mq_freeze_queue_start(nvmeq->dev->admin_q);
1409
Matthew Wilcoxaba20802011-03-27 08:52:06 -04001410 irq_set_affinity_hint(vector, NULL);
1411 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001412
Keith Busch4d115422013-12-10 13:10:40 -07001413 return 0;
1414}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001415
Keith Busch4d115422013-12-10 13:10:40 -07001416static void nvme_clear_queue(struct nvme_queue *nvmeq)
1417{
Keith Busch22404272013-07-15 15:02:20 -06001418 spin_lock_irq(&nvmeq->q_lock);
Keith Busch42483222015-06-01 09:29:54 -06001419 if (nvmeq->tags && *nvmeq->tags)
1420 blk_mq_all_tag_busy_iter(*nvmeq->tags, nvme_cancel_queue_ios, nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001421 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001422}
1423
Keith Busch4d115422013-12-10 13:10:40 -07001424static void nvme_disable_queue(struct nvme_dev *dev, int qid)
1425{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001426 struct nvme_queue *nvmeq = dev->queues[qid];
Keith Busch4d115422013-12-10 13:10:40 -07001427
1428 if (!nvmeq)
1429 return;
1430 if (nvme_suspend_queue(nvmeq))
1431 return;
1432
Keith Busch0e53d182013-12-10 13:10:39 -07001433 /* Don't tell the adapter to delete the admin queue.
1434 * Don't tell a removed adapter to delete IO queues. */
1435 if (qid && readl(&dev->bar->csts) != -1) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001436 adapter_delete_sq(dev, qid);
1437 adapter_delete_cq(dev, qid);
1438 }
Keith Busch07836e62015-02-19 10:34:48 -07001439
1440 spin_lock_irq(&nvmeq->q_lock);
1441 nvme_process_cq(nvmeq);
1442 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001443}
1444
1445static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
Keith Busch2b25d982014-12-22 12:59:04 -07001446 int depth)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001447{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001448 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001449 if (!nvmeq)
1450 return NULL;
1451
Christoph Hellwige75ec752015-05-22 11:12:39 +02001452 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
Joe Perches4d51abf2014-06-15 13:37:33 -07001453 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001454 if (!nvmeq->cqes)
1455 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001456
Christoph Hellwige75ec752015-05-22 11:12:39 +02001457 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001458 &nvmeq->sq_dma_addr, GFP_KERNEL);
1459 if (!nvmeq->sq_cmds)
1460 goto free_cqdma;
1461
Christoph Hellwige75ec752015-05-22 11:12:39 +02001462 nvmeq->q_dmadev = dev->dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001463 nvmeq->dev = dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001464 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
1465 dev->instance, qid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001466 spin_lock_init(&nvmeq->q_lock);
1467 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001468 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001469 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001470 nvmeq->q_depth = depth;
Keith Buschc30341d2013-12-10 13:10:38 -07001471 nvmeq->qid = qid;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001472 dev->queues[qid] = nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001473
Jon Derrick36a7e992015-05-27 12:26:23 -06001474 /* make sure queue descriptor is set before queue count, for kthread */
1475 mb();
1476 dev->queue_count++;
1477
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001478 return nvmeq;
1479
1480 free_cqdma:
Christoph Hellwige75ec752015-05-22 11:12:39 +02001481 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001482 nvmeq->cq_dma_addr);
1483 free_nvmeq:
1484 kfree(nvmeq);
1485 return NULL;
1486}
1487
Matthew Wilcox30010822011-01-20 09:10:15 -05001488static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1489 const char *name)
1490{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001491 if (use_threaded_interrupts)
1492 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001493 nvme_irq_check, nvme_irq, IRQF_SHARED,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001494 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001495 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001496 IRQF_SHARED, name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001497}
1498
Keith Busch22404272013-07-15 15:02:20 -06001499static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001500{
Keith Busch22404272013-07-15 15:02:20 -06001501 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001502
Keith Busch7be50e92014-09-10 15:48:47 -06001503 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001504 nvmeq->sq_tail = 0;
1505 nvmeq->cq_head = 0;
1506 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001507 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001508 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Keith Busch42f61422014-03-24 10:46:25 -06001509 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001510 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001511}
1512
1513static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1514{
1515 struct nvme_dev *dev = nvmeq->dev;
1516 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001517
Keith Busch2b25d982014-12-22 12:59:04 -07001518 nvmeq->cq_vector = qid - 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001519 result = adapter_alloc_cq(dev, qid, nvmeq);
1520 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001521 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001522
1523 result = adapter_alloc_sq(dev, qid, nvmeq);
1524 if (result < 0)
1525 goto release_cq;
1526
Matthew Wilcox3193f072014-01-27 15:57:22 -05001527 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001528 if (result < 0)
1529 goto release_sq;
1530
Keith Busch22404272013-07-15 15:02:20 -06001531 nvme_init_queue(nvmeq, qid);
Keith Busch22404272013-07-15 15:02:20 -06001532 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001533
1534 release_sq:
1535 adapter_delete_sq(dev, qid);
1536 release_cq:
1537 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001538 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001539}
1540
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001541static int nvme_wait_ready(struct nvme_dev *dev, u64 cap, bool enabled)
1542{
1543 unsigned long timeout;
1544 u32 bit = enabled ? NVME_CSTS_RDY : 0;
1545
1546 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1547
1548 while ((readl(&dev->bar->csts) & NVME_CSTS_RDY) != bit) {
1549 msleep(100);
1550 if (fatal_signal_pending(current))
1551 return -EINTR;
1552 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001553 dev_err(dev->dev,
Matthew Wilcox27e81662014-04-11 11:58:45 -04001554 "Device not ready; aborting %s\n", enabled ?
1555 "initialisation" : "reset");
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001556 return -ENODEV;
1557 }
1558 }
1559
1560 return 0;
1561}
1562
1563/*
1564 * If the device has been passed off to us in an enabled state, just clear
1565 * the enabled bit. The spec says we should set the 'shutdown notification
1566 * bits', but doing so may cause the device to complete commands to the
1567 * admin queue ... and we don't know what memory that might be pointing at!
1568 */
1569static int nvme_disable_ctrl(struct nvme_dev *dev, u64 cap)
1570{
Dan McLeran01079522014-06-23 08:24:36 -06001571 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1572 dev->ctrl_config &= ~NVME_CC_ENABLE;
1573 writel(dev->ctrl_config, &dev->bar->cc);
Matthew Wilcox44af1462013-05-04 06:43:17 -04001574
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001575 return nvme_wait_ready(dev, cap, false);
1576}
1577
1578static int nvme_enable_ctrl(struct nvme_dev *dev, u64 cap)
1579{
Dan McLeran01079522014-06-23 08:24:36 -06001580 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1581 dev->ctrl_config |= NVME_CC_ENABLE;
1582 writel(dev->ctrl_config, &dev->bar->cc);
1583
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001584 return nvme_wait_ready(dev, cap, true);
1585}
1586
Keith Busch1894d8f2013-07-15 15:02:22 -06001587static int nvme_shutdown_ctrl(struct nvme_dev *dev)
1588{
1589 unsigned long timeout;
Keith Busch1894d8f2013-07-15 15:02:22 -06001590
Dan McLeran01079522014-06-23 08:24:36 -06001591 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1592 dev->ctrl_config |= NVME_CC_SHN_NORMAL;
1593
1594 writel(dev->ctrl_config, &dev->bar->cc);
Keith Busch1894d8f2013-07-15 15:02:22 -06001595
Dan McLeran2484f402014-07-01 09:33:32 -06001596 timeout = SHUTDOWN_TIMEOUT + jiffies;
Keith Busch1894d8f2013-07-15 15:02:22 -06001597 while ((readl(&dev->bar->csts) & NVME_CSTS_SHST_MASK) !=
1598 NVME_CSTS_SHST_CMPLT) {
1599 msleep(100);
1600 if (fatal_signal_pending(current))
1601 return -EINTR;
1602 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001603 dev_err(dev->dev,
Keith Busch1894d8f2013-07-15 15:02:22 -06001604 "Device shutdown incomplete; abort shutdown\n");
1605 return -ENODEV;
1606 }
1607 }
1608
1609 return 0;
1610}
1611
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001612static struct blk_mq_ops nvme_mq_admin_ops = {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001613 .queue_rq = nvme_queue_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001614 .map_queue = blk_mq_map_queue,
1615 .init_hctx = nvme_admin_init_hctx,
Keith Busch4af0e212015-06-08 10:08:13 -06001616 .exit_hctx = nvme_admin_exit_hctx,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001617 .init_request = nvme_admin_init_request,
1618 .timeout = nvme_timeout,
1619};
1620
1621static struct blk_mq_ops nvme_mq_ops = {
1622 .queue_rq = nvme_queue_rq,
1623 .map_queue = blk_mq_map_queue,
1624 .init_hctx = nvme_init_hctx,
1625 .init_request = nvme_init_request,
1626 .timeout = nvme_timeout,
1627};
1628
Keith Buschea191d22015-01-07 18:55:49 -07001629static void nvme_dev_remove_admin(struct nvme_dev *dev)
1630{
1631 if (dev->admin_q && !blk_queue_dying(dev->admin_q)) {
1632 blk_cleanup_queue(dev->admin_q);
1633 blk_mq_free_tag_set(&dev->admin_tagset);
1634 }
1635}
1636
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001637static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1638{
1639 if (!dev->admin_q) {
1640 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1641 dev->admin_tagset.nr_hw_queues = 1;
1642 dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1;
Keith Busch1efccc92015-03-31 10:37:17 -06001643 dev->admin_tagset.reserved_tags = 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001644 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001645 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
Jens Axboeac3dd5b2015-01-22 12:07:58 -07001646 dev->admin_tagset.cmd_size = nvme_cmd_size(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001647 dev->admin_tagset.driver_data = dev;
1648
1649 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1650 return -ENOMEM;
1651
1652 dev->admin_q = blk_mq_init_queue(&dev->admin_tagset);
Ming Lei35b489d2015-01-02 14:25:27 +00001653 if (IS_ERR(dev->admin_q)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001654 blk_mq_free_tag_set(&dev->admin_tagset);
1655 return -ENOMEM;
1656 }
Keith Buschea191d22015-01-07 18:55:49 -07001657 if (!blk_get_queue(dev->admin_q)) {
1658 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06001659 dev->admin_q = NULL;
Keith Buschea191d22015-01-07 18:55:49 -07001660 return -ENODEV;
1661 }
Keith Busch0fb59cb2015-01-07 18:55:50 -07001662 } else
1663 blk_mq_unfreeze_queue(dev->admin_q);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001664
1665 return 0;
1666}
1667
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001668static int nvme_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001669{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001670 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001671 u32 aqa;
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001672 u64 cap = readq(&dev->bar->cap);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001673 struct nvme_queue *nvmeq;
Keith Busch1d090622014-06-23 11:34:01 -06001674 unsigned page_shift = PAGE_SHIFT;
1675 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12;
1676 unsigned dev_page_max = NVME_CAP_MPSMAX(cap) + 12;
1677
1678 if (page_shift < dev_page_min) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001679 dev_err(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001680 "Minimum device page size (%u) too large for "
1681 "host (%u)\n", 1 << dev_page_min,
1682 1 << page_shift);
1683 return -ENODEV;
1684 }
1685 if (page_shift > dev_page_max) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001686 dev_info(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001687 "Device maximum page size (%u) smaller than "
1688 "host (%u); enabling work-around\n",
1689 1 << dev_page_max, 1 << page_shift);
1690 page_shift = dev_page_max;
1691 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001692
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001693 result = nvme_disable_ctrl(dev, cap);
1694 if (result < 0)
1695 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001696
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001697 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001698 if (!nvmeq) {
Keith Busch2b25d982014-12-22 12:59:04 -07001699 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
Keith Buschcd638942013-07-15 15:02:23 -06001700 if (!nvmeq)
1701 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001702 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001703
1704 aqa = nvmeq->q_depth - 1;
1705 aqa |= aqa << 16;
1706
Keith Busch1d090622014-06-23 11:34:01 -06001707 dev->page_size = 1 << page_shift;
1708
Dan McLeran01079522014-06-23 08:24:36 -06001709 dev->ctrl_config = NVME_CC_CSS_NVM;
Keith Busch1d090622014-06-23 11:34:01 -06001710 dev->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001711 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -04001712 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001713
1714 writel(aqa, &dev->bar->aqa);
1715 writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1716 writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001717
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001718 result = nvme_enable_ctrl(dev, cap);
Keith Busch025c5572013-05-01 13:07:51 -06001719 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001720 goto free_nvmeq;
1721
Keith Busch2b25d982014-12-22 12:59:04 -07001722 nvmeq->cq_vector = 0;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001723 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Keith Busch025c5572013-05-01 13:07:51 -06001724 if (result)
Keith Busch0fb59cb2015-01-07 18:55:50 -07001725 goto free_nvmeq;
Keith Busch025c5572013-05-01 13:07:51 -06001726
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001727 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001728
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001729 free_nvmeq:
1730 nvme_free_queues(dev, 0);
1731 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001732}
1733
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001734static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1735{
1736 struct nvme_dev *dev = ns->dev;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001737 struct nvme_user_io io;
1738 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001739 unsigned length, meta_len;
Keith Buscha67a9512015-04-07 16:57:19 -06001740 int status, write;
Keith Buscha67a9512015-04-07 16:57:19 -06001741 dma_addr_t meta_dma = 0;
1742 void *meta = NULL;
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001743 void __user *metadata;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001744
1745 if (copy_from_user(&io, uio, sizeof(io)))
1746 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001747
1748 switch (io.opcode) {
1749 case nvme_cmd_write:
1750 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001751 case nvme_cmd_compare:
Matthew Wilcox64132142011-08-09 12:56:37 -04001752 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001753 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001754 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001755 }
1756
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001757 length = (io.nblocks + 1) << ns->lba_shift;
1758 meta_len = (io.nblocks + 1) * ns->ms;
Linus Torvalds6a398a32015-06-25 15:12:50 -07001759 metadata = (void __user *)(unsigned long)io.metadata;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001760 write = io.opcode & 1;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001761
Keith Busch71feb362015-06-19 11:07:30 -06001762 if (ns->ext) {
1763 length += meta_len;
1764 meta_len = 0;
Keith Buscha67a9512015-04-07 16:57:19 -06001765 }
1766 if (meta_len) {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001767 if (((io.metadata & 3) || !io.metadata) && !ns->ext)
1768 return -EINVAL;
1769
Christoph Hellwige75ec752015-05-22 11:12:39 +02001770 meta = dma_alloc_coherent(dev->dev, meta_len,
Keith Buscha67a9512015-04-07 16:57:19 -06001771 &meta_dma, GFP_KERNEL);
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001772
Keith Buscha67a9512015-04-07 16:57:19 -06001773 if (!meta) {
1774 status = -ENOMEM;
1775 goto unmap;
1776 }
1777 if (write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001778 if (copy_from_user(meta, metadata, meta_len)) {
Keith Buscha67a9512015-04-07 16:57:19 -06001779 status = -EFAULT;
1780 goto unmap;
1781 }
1782 }
1783 }
1784
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001785 memset(&c, 0, sizeof(c));
1786 c.rw.opcode = io.opcode;
1787 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001788 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001789 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001790 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001791 c.rw.control = cpu_to_le16(io.control);
Matthew Wilcox1c9b5262013-04-16 15:21:06 -04001792 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1793 c.rw.reftag = cpu_to_le32(io.reftag);
1794 c.rw.apptag = cpu_to_le16(io.apptag);
1795 c.rw.appmask = cpu_to_le16(io.appmask);
Keith Buscha67a9512015-04-07 16:57:19 -06001796 c.rw.metadata = cpu_to_le64(meta_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001797
1798 status = __nvme_submit_sync_cmd(ns->queue, &c, NULL,
1799 (void __user *)io.addr, length, NULL, 0);
Keith Buschf410c682013-04-23 17:23:59 -06001800 unmap:
Keith Buscha67a9512015-04-07 16:57:19 -06001801 if (meta) {
1802 if (status == NVME_SC_SUCCESS && !write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001803 if (copy_to_user(metadata, meta, meta_len))
Keith Buscha67a9512015-04-07 16:57:19 -06001804 status = -EFAULT;
1805 }
Christoph Hellwige75ec752015-05-22 11:12:39 +02001806 dma_free_coherent(dev->dev, meta_len, meta, meta_dma);
Keith Buschf410c682013-04-23 17:23:59 -06001807 }
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001808 return status;
1809}
1810
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001811static int nvme_user_cmd(struct nvme_dev *dev, struct nvme_ns *ns,
1812 struct nvme_passthru_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001813{
Keith Busch7963e522014-09-12 16:07:20 -06001814 struct nvme_passthru_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001815 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001816 unsigned timeout = 0;
1817 int status;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001818
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001819 if (!capable(CAP_SYS_ADMIN))
1820 return -EACCES;
1821 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001822 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001823
1824 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001825 c.common.opcode = cmd.opcode;
1826 c.common.flags = cmd.flags;
1827 c.common.nsid = cpu_to_le32(cmd.nsid);
1828 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1829 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1830 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1831 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1832 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1833 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1834 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1835 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1836
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001837 if (cmd.timeout_ms)
1838 timeout = msecs_to_jiffies(cmd.timeout_ms);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001839
Christoph Hellwigf705f832015-05-22 11:12:38 +02001840 status = __nvme_submit_sync_cmd(ns ? ns->queue : dev->admin_q, &c,
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001841 NULL, (void __user *)cmd.addr, cmd.data_len,
1842 &cmd.result, timeout);
1843 if (status >= 0) {
1844 if (put_user(cmd.result, &ucmd->result))
1845 return -EFAULT;
Keith Buschedd10d32014-04-03 16:45:23 -06001846 }
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001847
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001848 return status;
1849}
1850
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001851static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1852 unsigned long arg)
1853{
1854 struct nvme_ns *ns = bdev->bd_disk->private_data;
1855
1856 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001857 case NVME_IOCTL_ID:
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04001858 force_successful_syscall_return();
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001859 return ns->ns_id;
1860 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001861 return nvme_user_cmd(ns->dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06001862 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001863 return nvme_user_cmd(ns->dev, ns, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001864 case NVME_IOCTL_SUBMIT_IO:
1865 return nvme_submit_io(ns, (void __user *)arg);
Vishal Verma5d0f6132013-03-04 18:40:58 -07001866 case SG_GET_VERSION_NUM:
1867 return nvme_sg_get_version_num((void __user *)arg);
1868 case SG_IO:
1869 return nvme_sg_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001870 default:
1871 return -ENOTTY;
1872 }
1873}
1874
Keith Busch320a3822013-10-23 13:07:34 -06001875#ifdef CONFIG_COMPAT
1876static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode,
1877 unsigned int cmd, unsigned long arg)
1878{
Keith Busch320a3822013-10-23 13:07:34 -06001879 switch (cmd) {
1880 case SG_IO:
Keith Busche1797292014-08-27 13:55:38 -06001881 return -ENOIOCTLCMD;
Keith Busch320a3822013-10-23 13:07:34 -06001882 }
1883 return nvme_ioctl(bdev, mode, cmd, arg);
1884}
1885#else
1886#define nvme_compat_ioctl NULL
1887#endif
1888
Keith Busch9ac27092014-01-31 16:53:39 -07001889static int nvme_open(struct block_device *bdev, fmode_t mode)
1890{
Keith Busch9e603522014-10-03 11:15:47 -06001891 int ret = 0;
1892 struct nvme_ns *ns;
Keith Busch9ac27092014-01-31 16:53:39 -07001893
Keith Busch9e603522014-10-03 11:15:47 -06001894 spin_lock(&dev_list_lock);
1895 ns = bdev->bd_disk->private_data;
1896 if (!ns)
1897 ret = -ENXIO;
1898 else if (!kref_get_unless_zero(&ns->dev->kref))
1899 ret = -ENXIO;
1900 spin_unlock(&dev_list_lock);
1901
1902 return ret;
Keith Busch9ac27092014-01-31 16:53:39 -07001903}
1904
1905static void nvme_free_dev(struct kref *kref);
1906
1907static void nvme_release(struct gendisk *disk, fmode_t mode)
1908{
1909 struct nvme_ns *ns = disk->private_data;
1910 struct nvme_dev *dev = ns->dev;
1911
1912 kref_put(&dev->kref, nvme_free_dev);
1913}
1914
Keith Busch4cc09e22014-04-02 15:45:37 -06001915static int nvme_getgeo(struct block_device *bd, struct hd_geometry *geo)
1916{
1917 /* some standard values */
1918 geo->heads = 1 << 6;
1919 geo->sectors = 1 << 5;
1920 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
1921 return 0;
1922}
1923
Keith Busche1e5e562015-02-19 13:39:03 -07001924static void nvme_config_discard(struct nvme_ns *ns)
1925{
1926 u32 logical_block_size = queue_logical_block_size(ns->queue);
1927 ns->queue->limits.discard_zeroes_data = 0;
1928 ns->queue->limits.discard_alignment = logical_block_size;
1929 ns->queue->limits.discard_granularity = logical_block_size;
1930 ns->queue->limits.max_discard_sectors = 0xffffffff;
1931 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
1932}
1933
Keith Busch1b9dbf72014-09-10 17:21:14 -06001934static int nvme_revalidate_disk(struct gendisk *disk)
1935{
1936 struct nvme_ns *ns = disk->private_data;
1937 struct nvme_dev *dev = ns->dev;
1938 struct nvme_id_ns *id;
Keith Buscha67a9512015-04-07 16:57:19 -06001939 u8 lbaf, pi_type;
1940 u16 old_ms;
Keith Busche1e5e562015-02-19 13:39:03 -07001941 unsigned short bs;
Keith Busch1b9dbf72014-09-10 17:21:14 -06001942
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001943 if (nvme_identify_ns(dev, ns->ns_id, &id)) {
Keith Buscha5768aa2015-06-01 14:28:14 -06001944 dev_warn(dev->dev, "%s: Identify failure nvme%dn%d\n", __func__,
1945 dev->instance, ns->ns_id);
1946 return -ENODEV;
Keith Busch1b9dbf72014-09-10 17:21:14 -06001947 }
Keith Buscha5768aa2015-06-01 14:28:14 -06001948 if (id->ncap == 0) {
1949 kfree(id);
1950 return -ENODEV;
Keith Busche1e5e562015-02-19 13:39:03 -07001951 }
Keith Busch1b9dbf72014-09-10 17:21:14 -06001952
Keith Busche1e5e562015-02-19 13:39:03 -07001953 old_ms = ns->ms;
1954 lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK;
Keith Busch1b9dbf72014-09-10 17:21:14 -06001955 ns->lba_shift = id->lbaf[lbaf].ds;
Keith Busche1e5e562015-02-19 13:39:03 -07001956 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms);
Keith Buscha67a9512015-04-07 16:57:19 -06001957 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
Keith Busch1b9dbf72014-09-10 17:21:14 -06001958
Keith Busche1e5e562015-02-19 13:39:03 -07001959 /*
1960 * If identify namespace failed, use default 512 byte block size so
1961 * block layer can use before failing read/write for 0 capacity.
1962 */
1963 if (ns->lba_shift == 0)
1964 ns->lba_shift = 9;
1965 bs = 1 << ns->lba_shift;
1966
1967 /* XXX: PI implementation requires metadata equal t10 pi tuple size */
1968 pi_type = ns->ms == sizeof(struct t10_pi_tuple) ?
1969 id->dps & NVME_NS_DPS_PI_MASK : 0;
1970
Keith Busch52b68d72015-02-23 09:16:21 -07001971 if (blk_get_integrity(disk) && (ns->pi_type != pi_type ||
1972 ns->ms != old_ms ||
Keith Busche1e5e562015-02-19 13:39:03 -07001973 bs != queue_logical_block_size(disk->queue) ||
Keith Buscha67a9512015-04-07 16:57:19 -06001974 (ns->ms && ns->ext)))
Keith Busche1e5e562015-02-19 13:39:03 -07001975 blk_integrity_unregister(disk);
1976
1977 ns->pi_type = pi_type;
1978 blk_queue_logical_block_size(ns->queue, bs);
1979
Keith Busch52b68d72015-02-23 09:16:21 -07001980 if (ns->ms && !blk_get_integrity(disk) && (disk->flags & GENHD_FL_UP) &&
Keith Buscha67a9512015-04-07 16:57:19 -06001981 !ns->ext)
Keith Busche1e5e562015-02-19 13:39:03 -07001982 nvme_init_integrity(ns);
1983
Keith Buscha5768aa2015-06-01 14:28:14 -06001984 if (ns->ms && !blk_get_integrity(disk))
Keith Busche1e5e562015-02-19 13:39:03 -07001985 set_capacity(disk, 0);
1986 else
1987 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
1988
1989 if (dev->oncs & NVME_CTRL_ONCS_DSM)
1990 nvme_config_discard(ns);
1991
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001992 kfree(id);
Keith Busch1b9dbf72014-09-10 17:21:14 -06001993 return 0;
1994}
1995
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001996static const struct block_device_operations nvme_fops = {
1997 .owner = THIS_MODULE,
1998 .ioctl = nvme_ioctl,
Keith Busch320a3822013-10-23 13:07:34 -06001999 .compat_ioctl = nvme_compat_ioctl,
Keith Busch9ac27092014-01-31 16:53:39 -07002000 .open = nvme_open,
2001 .release = nvme_release,
Keith Busch4cc09e22014-04-02 15:45:37 -06002002 .getgeo = nvme_getgeo,
Keith Busch1b9dbf72014-09-10 17:21:14 -06002003 .revalidate_disk= nvme_revalidate_disk,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002004};
2005
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002006static int nvme_kthread(void *data)
2007{
Keith Buschd4b4ff82013-12-10 13:10:37 -07002008 struct nvme_dev *dev, *next;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002009
2010 while (!kthread_should_stop()) {
Arjan van de Ven564a2322013-05-01 16:38:23 -04002011 set_current_state(TASK_INTERRUPTIBLE);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002012 spin_lock(&dev_list_lock);
Keith Buschd4b4ff82013-12-10 13:10:37 -07002013 list_for_each_entry_safe(dev, next, &dev_list, node) {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002014 int i;
Keith Busch07836e62015-02-19 10:34:48 -07002015 if (readl(&dev->bar->csts) & NVME_CSTS_CFS) {
Keith Buschd4b4ff82013-12-10 13:10:37 -07002016 if (work_busy(&dev->reset_work))
2017 continue;
2018 list_del_init(&dev->node);
Christoph Hellwige75ec752015-05-22 11:12:39 +02002019 dev_warn(dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002020 "Failed status: %x, reset controller\n",
2021 readl(&dev->bar->csts));
Tejun Heo9ca97372014-03-07 10:24:49 -05002022 dev->reset_workfn = nvme_reset_failed_dev;
Keith Buschd4b4ff82013-12-10 13:10:37 -07002023 queue_work(nvme_workq, &dev->reset_work);
2024 continue;
2025 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002026 for (i = 0; i < dev->queue_count; i++) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002027 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05002028 if (!nvmeq)
2029 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002030 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxbc57a0f2013-06-24 11:56:42 -04002031 nvme_process_cq(nvmeq);
Keith Busch6fccf932014-06-18 13:58:57 -06002032
2033 while ((i == 0) && (dev->event_limit > 0)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002034 if (nvme_submit_async_admin_req(dev))
Keith Busch6fccf932014-06-18 13:58:57 -06002035 break;
2036 dev->event_limit--;
2037 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002038 spin_unlock_irq(&nvmeq->q_lock);
2039 }
2040 }
2041 spin_unlock(&dev_list_lock);
Arjan van de Venacb7aa02013-02-04 14:44:33 -08002042 schedule_timeout(round_jiffies_relative(HZ));
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002043 }
2044 return 0;
2045}
2046
Keith Busche1e5e562015-02-19 13:39:03 -07002047static void nvme_alloc_ns(struct nvme_dev *dev, unsigned nsid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002048{
2049 struct nvme_ns *ns;
2050 struct gendisk *disk;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002051 int node = dev_to_node(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002052
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002053 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002054 if (!ns)
Keith Busche1e5e562015-02-19 13:39:03 -07002055 return;
2056
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002057 ns->queue = blk_mq_init_queue(&dev->tagset);
Dan Carpenter9f173b32014-11-05 23:39:09 +03002058 if (IS_ERR(ns->queue))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002059 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07002060 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
2061 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002062 queue_flag_set_unlocked(QUEUE_FLAG_SG_GAPS, ns->queue);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002063 ns->dev = dev;
2064 ns->queue->queuedata = ns;
2065
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002066 disk = alloc_disk_node(0, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002067 if (!disk)
2068 goto out_free_queue;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002069
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002070 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002071 ns->disk = disk;
Keith Busche1e5e562015-02-19 13:39:03 -07002072 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
2073 list_add_tail(&ns->list, &dev->namespaces);
2074
Keith Busche9ef4632012-07-24 15:01:04 -06002075 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Keith Busch8fc23e02012-07-26 11:29:57 -06002076 if (dev->max_hw_sectors)
2077 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002078 if (dev->stripe_size)
2079 blk_queue_chunk_sectors(ns->queue, dev->stripe_size >> 9);
Keith Buscha7d2ce22014-04-29 11:41:28 -06002080 if (dev->vwc & NVME_CTRL_VWC_PRESENT)
2081 blk_queue_flush(ns->queue, REQ_FLUSH | REQ_FUA);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002082
2083 disk->major = nvme_major;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002084 disk->first_minor = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002085 disk->fops = &nvme_fops;
2086 disk->private_data = ns;
2087 disk->queue = ns->queue;
Keith Buschb3fffde2015-02-03 11:21:42 -07002088 disk->driverfs_dev = dev->device;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002089 disk->flags = GENHD_FL_EXT_DEVT;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002090 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002091
Keith Busche1e5e562015-02-19 13:39:03 -07002092 /*
2093 * Initialize capacity to 0 until we establish the namespace format and
2094 * setup integrity extentions if necessary. The revalidate_disk after
2095 * add_disk allows the driver to register with integrity if the format
2096 * requires it.
2097 */
2098 set_capacity(disk, 0);
Keith Buscha5768aa2015-06-01 14:28:14 -06002099 if (nvme_revalidate_disk(ns->disk))
2100 goto out_free_disk;
2101
Keith Busche1e5e562015-02-19 13:39:03 -07002102 add_disk(ns->disk);
2103 if (ns->ms)
2104 revalidate_disk(ns->disk);
2105 return;
Keith Buscha5768aa2015-06-01 14:28:14 -06002106 out_free_disk:
2107 kfree(disk);
2108 list_del(&ns->list);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002109 out_free_queue:
2110 blk_cleanup_queue(ns->queue);
2111 out_free_ns:
2112 kfree(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002113}
2114
Keith Busch42f61422014-03-24 10:46:25 -06002115static void nvme_create_io_queues(struct nvme_dev *dev)
2116{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002117 unsigned i;
Keith Busch42f61422014-03-24 10:46:25 -06002118
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002119 for (i = dev->queue_count; i <= dev->max_qid; i++)
Keith Busch2b25d982014-12-22 12:59:04 -07002120 if (!nvme_alloc_queue(dev, i, dev->q_depth))
Keith Busch42f61422014-03-24 10:46:25 -06002121 break;
2122
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002123 for (i = dev->online_queues; i <= dev->queue_count - 1; i++)
2124 if (nvme_create_queue(dev->queues[i], i))
Keith Busch42f61422014-03-24 10:46:25 -06002125 break;
2126}
2127
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002128static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002129{
2130 int status;
2131 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002132 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002133
Matthew Wilcoxdf348132012-01-11 07:29:56 -07002134 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002135 &result);
Matthew Wilcox27e81662014-04-11 11:58:45 -04002136 if (status < 0)
2137 return status;
2138 if (status > 0) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002139 dev_err(dev->dev, "Could not set queue count (%d)\n", status);
Keith Buschbadc34d2014-06-23 14:25:35 -06002140 return 0;
Matthew Wilcox27e81662014-04-11 11:58:45 -04002141 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002142 return min(result & 0xffff, result >> 16) + 1;
2143}
2144
Keith Busch9d713c22013-07-15 15:02:24 -06002145static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
2146{
Haiyan Hub80d5cc2013-09-10 11:25:37 +08002147 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
Keith Busch9d713c22013-07-15 15:02:24 -06002148}
2149
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002150static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002151{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002152 struct nvme_queue *adminq = dev->queues[0];
Christoph Hellwige75ec752015-05-22 11:12:39 +02002153 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch42f61422014-03-24 10:46:25 -06002154 int result, i, vecs, nr_io_queues, size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002155
Keith Busch42f61422014-03-24 10:46:25 -06002156 nr_io_queues = num_possible_cpus();
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002157 result = set_queue_count(dev, nr_io_queues);
Keith Buschbadc34d2014-06-23 14:25:35 -06002158 if (result <= 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002159 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002160 if (result < nr_io_queues)
2161 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002162
Keith Busch9d713c22013-07-15 15:02:24 -06002163 size = db_bar_size(dev, nr_io_queues);
2164 if (size > 8192) {
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002165 iounmap(dev->bar);
Keith Busch9d713c22013-07-15 15:02:24 -06002166 do {
2167 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
2168 if (dev->bar)
2169 break;
2170 if (!--nr_io_queues)
2171 return -ENOMEM;
2172 size = db_bar_size(dev, nr_io_queues);
2173 } while (1);
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002174 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Keith Busch5a92e702014-02-21 14:13:44 -07002175 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002176 }
2177
Keith Busch9d713c22013-07-15 15:02:24 -06002178 /* Deregister the admin queue's interrupt */
Matthew Wilcox3193f072014-01-27 15:57:22 -05002179 free_irq(dev->entry[0].vector, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06002180
Jens Axboee32efbf2014-11-14 09:49:26 -07002181 /*
2182 * If we enable msix early due to not intx, disable it again before
2183 * setting up the full range we need.
2184 */
2185 if (!pdev->irq)
2186 pci_disable_msix(pdev);
2187
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002188 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002189 dev->entry[i].entry = i;
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002190 vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues);
2191 if (vecs < 0) {
2192 vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32));
2193 if (vecs < 0) {
2194 vecs = 1;
2195 } else {
2196 for (i = 0; i < vecs; i++)
2197 dev->entry[i].vector = i + pdev->irq;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002198 }
2199 }
2200
Matthew Wilcox063a8092013-06-20 10:53:48 -04002201 /*
2202 * Should investigate if there's a performance win from allocating
2203 * more queues than interrupt vectors; it might allow the submission
2204 * path to scale better, even if the receive path is limited by the
2205 * number of interrupts.
2206 */
2207 nr_io_queues = vecs;
Keith Busch42f61422014-03-24 10:46:25 -06002208 dev->max_qid = nr_io_queues;
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07002209
Matthew Wilcox3193f072014-01-27 15:57:22 -05002210 result = queue_request_irq(dev, adminq, adminq->irqname);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002211 if (result)
Keith Busch22404272013-07-15 15:02:20 -06002212 goto free_queues;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002213
Keith Buschcd638942013-07-15 15:02:23 -06002214 /* Free previously allocated queues that are no longer usable */
Keith Busch42f61422014-03-24 10:46:25 -06002215 nvme_free_queues(dev, nr_io_queues + 1);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002216 nvme_create_io_queues(dev);
Keith Buschcd638942013-07-15 15:02:23 -06002217
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002218 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002219
Keith Busch22404272013-07-15 15:02:20 -06002220 free_queues:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002221 nvme_free_queues(dev, 1);
Keith Busch22404272013-07-15 15:02:20 -06002222 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002223}
2224
Keith Buscha5768aa2015-06-01 14:28:14 -06002225static void nvme_free_namespace(struct nvme_ns *ns)
2226{
2227 list_del(&ns->list);
2228
2229 spin_lock(&dev_list_lock);
2230 ns->disk->private_data = NULL;
2231 spin_unlock(&dev_list_lock);
2232
2233 put_disk(ns->disk);
2234 kfree(ns);
2235}
2236
2237static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2238{
2239 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2240 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2241
2242 return nsa->ns_id - nsb->ns_id;
2243}
2244
2245static struct nvme_ns *nvme_find_ns(struct nvme_dev *dev, unsigned nsid)
2246{
2247 struct nvme_ns *ns;
2248
2249 list_for_each_entry(ns, &dev->namespaces, list) {
2250 if (ns->ns_id == nsid)
2251 return ns;
2252 if (ns->ns_id > nsid)
2253 break;
2254 }
2255 return NULL;
2256}
2257
2258static inline bool nvme_io_incapable(struct nvme_dev *dev)
2259{
2260 return (!dev->bar || readl(&dev->bar->csts) & NVME_CSTS_CFS ||
2261 dev->online_queues < 2);
2262}
2263
2264static void nvme_ns_remove(struct nvme_ns *ns)
2265{
2266 bool kill = nvme_io_incapable(ns->dev) && !blk_queue_dying(ns->queue);
2267
2268 if (kill)
2269 blk_set_queue_dying(ns->queue);
2270 if (ns->disk->flags & GENHD_FL_UP) {
2271 if (blk_get_integrity(ns->disk))
2272 blk_integrity_unregister(ns->disk);
2273 del_gendisk(ns->disk);
2274 }
2275 if (kill || !blk_queue_dying(ns->queue)) {
2276 blk_mq_abort_requeue_list(ns->queue);
2277 blk_cleanup_queue(ns->queue);
2278 }
2279}
2280
2281static void nvme_scan_namespaces(struct nvme_dev *dev, unsigned nn)
2282{
2283 struct nvme_ns *ns, *next;
2284 unsigned i;
2285
2286 for (i = 1; i <= nn; i++) {
2287 ns = nvme_find_ns(dev, i);
2288 if (ns) {
2289 if (revalidate_disk(ns->disk)) {
2290 nvme_ns_remove(ns);
2291 nvme_free_namespace(ns);
2292 }
2293 } else
2294 nvme_alloc_ns(dev, i);
2295 }
2296 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
2297 if (ns->ns_id > nn) {
2298 nvme_ns_remove(ns);
2299 nvme_free_namespace(ns);
2300 }
2301 }
2302 list_sort(NULL, &dev->namespaces, ns_cmp);
2303}
2304
2305static void nvme_dev_scan(struct work_struct *work)
2306{
2307 struct nvme_dev *dev = container_of(work, struct nvme_dev, scan_work);
2308 struct nvme_id_ctrl *ctrl;
2309
2310 if (!dev->tagset.tags)
2311 return;
2312 if (nvme_identify_ctrl(dev, &ctrl))
2313 return;
2314 nvme_scan_namespaces(dev, le32_to_cpup(&ctrl->nn));
2315 kfree(ctrl);
2316}
2317
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002318/*
2319 * Return: error value if an error occurred setting up the queues or calling
2320 * Identify Device. 0 if these succeeded, even if adding some of the
2321 * namespaces failed. At the moment, these failures are silent. TBD which
2322 * failures should be reported.
2323 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002324static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002325{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002326 struct pci_dev *pdev = to_pci_dev(dev->dev);
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04002327 int res;
Keith Buscha5768aa2015-06-01 14:28:14 -06002328 unsigned nn;
Matthew Wilcox51814232011-02-01 16:18:08 -05002329 struct nvme_id_ctrl *ctrl;
Keith Busch159b67d2013-04-09 17:13:20 -06002330 int shift = NVME_CAP_MPSMIN(readq(&dev->bar->cap)) + 12;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002331
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002332 res = nvme_identify_ctrl(dev, &ctrl);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002333 if (res) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002334 dev_err(dev->dev, "Identify Controller failed (%d)\n", res);
Keith Busche1e5e562015-02-19 13:39:03 -07002335 return -EIO;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002336 }
2337
Matthew Wilcox51814232011-02-01 16:18:08 -05002338 nn = le32_to_cpup(&ctrl->nn);
Keith Busch0e5e4f02012-11-09 16:33:05 -07002339 dev->oncs = le16_to_cpup(&ctrl->oncs);
Keith Buschc30341d2013-12-10 13:10:38 -07002340 dev->abort_limit = ctrl->acl + 1;
Keith Buscha7d2ce22014-04-29 11:41:28 -06002341 dev->vwc = ctrl->vwc;
Matthew Wilcox51814232011-02-01 16:18:08 -05002342 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
2343 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
2344 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Keith Busch159b67d2013-04-09 17:13:20 -06002345 if (ctrl->mdts)
Keith Busch8fc23e02012-07-26 11:29:57 -06002346 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
Matthew Wilcox68608c262013-06-21 14:36:34 -04002347 if ((pdev->vendor == PCI_VENDOR_ID_INTEL) &&
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002348 (pdev->device == 0x0953) && ctrl->vs[3]) {
2349 unsigned int max_hw_sectors;
2350
Keith Busch159b67d2013-04-09 17:13:20 -06002351 dev->stripe_size = 1 << (ctrl->vs[3] + shift);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002352 max_hw_sectors = dev->stripe_size >> (shift - 9);
2353 if (dev->max_hw_sectors) {
2354 dev->max_hw_sectors = min(max_hw_sectors,
2355 dev->max_hw_sectors);
2356 } else
2357 dev->max_hw_sectors = max_hw_sectors;
2358 }
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002359 kfree(ctrl);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002360
2361 dev->tagset.ops = &nvme_mq_ops;
2362 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2363 dev->tagset.timeout = NVME_IO_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002364 dev->tagset.numa_node = dev_to_node(dev->dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002365 dev->tagset.queue_depth =
2366 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
Jens Axboeac3dd5b2015-01-22 12:07:58 -07002367 dev->tagset.cmd_size = nvme_cmd_size(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002368 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2369 dev->tagset.driver_data = dev;
2370
2371 if (blk_mq_alloc_tag_set(&dev->tagset))
Keith Busche1e5e562015-02-19 13:39:03 -07002372 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002373
Keith Buscha5768aa2015-06-01 14:28:14 -06002374 schedule_work(&dev->scan_work);
Keith Busche1e5e562015-02-19 13:39:03 -07002375 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002376}
2377
Keith Busch0877cb02013-07-15 15:02:19 -06002378static int nvme_dev_map(struct nvme_dev *dev)
2379{
Keith Busch42f61422014-03-24 10:46:25 -06002380 u64 cap;
Keith Busch0877cb02013-07-15 15:02:19 -06002381 int bars, result = -ENOMEM;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002382 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002383
2384 if (pci_enable_device_mem(pdev))
2385 return result;
2386
2387 dev->entry[0].vector = pdev->irq;
2388 pci_set_master(pdev);
2389 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Jens Axboebe7837e2014-11-14 09:50:19 -07002390 if (!bars)
2391 goto disable_pci;
2392
Keith Busch0877cb02013-07-15 15:02:19 -06002393 if (pci_request_selected_regions(pdev, bars, "nvme"))
2394 goto disable_pci;
2395
Christoph Hellwige75ec752015-05-22 11:12:39 +02002396 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
2397 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
Russell King052d0ef2013-06-26 23:49:11 +01002398 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06002399
Keith Busch0877cb02013-07-15 15:02:19 -06002400 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
2401 if (!dev->bar)
2402 goto disable;
Jens Axboee32efbf2014-11-14 09:49:26 -07002403
Keith Busch0e53d182013-12-10 13:10:39 -07002404 if (readl(&dev->bar->csts) == -1) {
2405 result = -ENODEV;
2406 goto unmap;
2407 }
Jens Axboee32efbf2014-11-14 09:49:26 -07002408
2409 /*
2410 * Some devices don't advertse INTx interrupts, pre-enable a single
2411 * MSIX vec for setup. We'll adjust this later.
2412 */
2413 if (!pdev->irq) {
2414 result = pci_enable_msix(pdev, dev->entry, 1);
2415 if (result < 0)
2416 goto unmap;
2417 }
2418
Keith Busch42f61422014-03-24 10:46:25 -06002419 cap = readq(&dev->bar->cap);
2420 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
2421 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
Keith Busch0877cb02013-07-15 15:02:19 -06002422 dev->dbs = ((void __iomem *)dev->bar) + 4096;
2423
2424 return 0;
2425
Keith Busch0e53d182013-12-10 13:10:39 -07002426 unmap:
2427 iounmap(dev->bar);
2428 dev->bar = NULL;
Keith Busch0877cb02013-07-15 15:02:19 -06002429 disable:
2430 pci_release_regions(pdev);
2431 disable_pci:
2432 pci_disable_device(pdev);
2433 return result;
2434}
2435
2436static void nvme_dev_unmap(struct nvme_dev *dev)
2437{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002438 struct pci_dev *pdev = to_pci_dev(dev->dev);
2439
2440 if (pdev->msi_enabled)
2441 pci_disable_msi(pdev);
2442 else if (pdev->msix_enabled)
2443 pci_disable_msix(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002444
2445 if (dev->bar) {
2446 iounmap(dev->bar);
2447 dev->bar = NULL;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002448 pci_release_regions(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002449 }
2450
Christoph Hellwige75ec752015-05-22 11:12:39 +02002451 if (pci_is_enabled(pdev))
2452 pci_disable_device(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002453}
2454
Keith Busch4d115422013-12-10 13:10:40 -07002455struct nvme_delq_ctx {
2456 struct task_struct *waiter;
2457 struct kthread_worker *worker;
2458 atomic_t refcount;
2459};
2460
2461static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev)
2462{
2463 dq->waiter = current;
2464 mb();
2465
2466 for (;;) {
2467 set_current_state(TASK_KILLABLE);
2468 if (!atomic_read(&dq->refcount))
2469 break;
2470 if (!schedule_timeout(ADMIN_TIMEOUT) ||
2471 fatal_signal_pending(current)) {
Keith Busch0fb59cb2015-01-07 18:55:50 -07002472 /*
2473 * Disable the controller first since we can't trust it
2474 * at this point, but leave the admin queue enabled
2475 * until all queue deletion requests are flushed.
2476 * FIXME: This may take a while if there are more h/w
2477 * queues than admin tags.
2478 */
Keith Busch4d115422013-12-10 13:10:40 -07002479 set_current_state(TASK_RUNNING);
Keith Busch4d115422013-12-10 13:10:40 -07002480 nvme_disable_ctrl(dev, readq(&dev->bar->cap));
Keith Busch0fb59cb2015-01-07 18:55:50 -07002481 nvme_clear_queue(dev->queues[0]);
Keith Busch4d115422013-12-10 13:10:40 -07002482 flush_kthread_worker(dq->worker);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002483 nvme_disable_queue(dev, 0);
Keith Busch4d115422013-12-10 13:10:40 -07002484 return;
2485 }
2486 }
2487 set_current_state(TASK_RUNNING);
2488}
2489
2490static void nvme_put_dq(struct nvme_delq_ctx *dq)
2491{
2492 atomic_dec(&dq->refcount);
2493 if (dq->waiter)
2494 wake_up_process(dq->waiter);
2495}
2496
2497static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq)
2498{
2499 atomic_inc(&dq->refcount);
2500 return dq;
2501}
2502
2503static void nvme_del_queue_end(struct nvme_queue *nvmeq)
2504{
2505 struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx;
Keith Busch4d115422013-12-10 13:10:40 -07002506 nvme_put_dq(dq);
2507}
2508
2509static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode,
2510 kthread_work_func_t fn)
2511{
2512 struct nvme_command c;
2513
2514 memset(&c, 0, sizeof(c));
2515 c.delete_queue.opcode = opcode;
2516 c.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2517
2518 init_kthread_work(&nvmeq->cmdinfo.work, fn);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002519 return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo,
2520 ADMIN_TIMEOUT);
Keith Busch4d115422013-12-10 13:10:40 -07002521}
2522
2523static void nvme_del_cq_work_handler(struct kthread_work *work)
2524{
2525 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2526 cmdinfo.work);
2527 nvme_del_queue_end(nvmeq);
2528}
2529
2530static int nvme_delete_cq(struct nvme_queue *nvmeq)
2531{
2532 return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq,
2533 nvme_del_cq_work_handler);
2534}
2535
2536static void nvme_del_sq_work_handler(struct kthread_work *work)
2537{
2538 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2539 cmdinfo.work);
2540 int status = nvmeq->cmdinfo.status;
2541
2542 if (!status)
2543 status = nvme_delete_cq(nvmeq);
2544 if (status)
2545 nvme_del_queue_end(nvmeq);
2546}
2547
2548static int nvme_delete_sq(struct nvme_queue *nvmeq)
2549{
2550 return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq,
2551 nvme_del_sq_work_handler);
2552}
2553
2554static void nvme_del_queue_start(struct kthread_work *work)
2555{
2556 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2557 cmdinfo.work);
Keith Busch4d115422013-12-10 13:10:40 -07002558 if (nvme_delete_sq(nvmeq))
2559 nvme_del_queue_end(nvmeq);
2560}
2561
2562static void nvme_disable_io_queues(struct nvme_dev *dev)
2563{
2564 int i;
2565 DEFINE_KTHREAD_WORKER_ONSTACK(worker);
2566 struct nvme_delq_ctx dq;
2567 struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
2568 &worker, "nvme%d", dev->instance);
2569
2570 if (IS_ERR(kworker_task)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002571 dev_err(dev->dev,
Keith Busch4d115422013-12-10 13:10:40 -07002572 "Failed to create queue del task\n");
2573 for (i = dev->queue_count - 1; i > 0; i--)
2574 nvme_disable_queue(dev, i);
2575 return;
2576 }
2577
2578 dq.waiter = NULL;
2579 atomic_set(&dq.refcount, 0);
2580 dq.worker = &worker;
2581 for (i = dev->queue_count - 1; i > 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002582 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002583
2584 if (nvme_suspend_queue(nvmeq))
2585 continue;
2586 nvmeq->cmdinfo.ctx = nvme_get_dq(&dq);
2587 nvmeq->cmdinfo.worker = dq.worker;
2588 init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start);
2589 queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work);
2590 }
2591 nvme_wait_dq(&dq, dev);
2592 kthread_stop(kworker_task);
2593}
2594
Dan McLeranb9afca32014-04-07 17:10:11 -06002595/*
2596* Remove the node from the device list and check
2597* for whether or not we need to stop the nvme_thread.
2598*/
2599static void nvme_dev_list_remove(struct nvme_dev *dev)
2600{
2601 struct task_struct *tmp = NULL;
2602
2603 spin_lock(&dev_list_lock);
2604 list_del_init(&dev->node);
2605 if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) {
2606 tmp = nvme_thread;
2607 nvme_thread = NULL;
2608 }
2609 spin_unlock(&dev_list_lock);
2610
2611 if (tmp)
2612 kthread_stop(tmp);
2613}
2614
Keith Buschc9d3bf82015-01-07 18:55:52 -07002615static void nvme_freeze_queues(struct nvme_dev *dev)
2616{
2617 struct nvme_ns *ns;
2618
2619 list_for_each_entry(ns, &dev->namespaces, list) {
2620 blk_mq_freeze_queue_start(ns->queue);
2621
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002622 spin_lock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002623 queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue);
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002624 spin_unlock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002625
2626 blk_mq_cancel_requeue_work(ns->queue);
2627 blk_mq_stop_hw_queues(ns->queue);
2628 }
2629}
2630
2631static void nvme_unfreeze_queues(struct nvme_dev *dev)
2632{
2633 struct nvme_ns *ns;
2634
2635 list_for_each_entry(ns, &dev->namespaces, list) {
2636 queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue);
2637 blk_mq_unfreeze_queue(ns->queue);
2638 blk_mq_start_stopped_hw_queues(ns->queue, true);
2639 blk_mq_kick_requeue_list(ns->queue);
2640 }
2641}
2642
Keith Buschf0b50732013-07-15 15:02:21 -06002643static void nvme_dev_shutdown(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002644{
Keith Busch22404272013-07-15 15:02:20 -06002645 int i;
Keith Busch7c1b2452014-06-25 11:18:12 -06002646 u32 csts = -1;
Keith Busch22404272013-07-15 15:02:20 -06002647
Dan McLeranb9afca32014-04-07 17:10:11 -06002648 nvme_dev_list_remove(dev);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002649
Keith Buschc9d3bf82015-01-07 18:55:52 -07002650 if (dev->bar) {
2651 nvme_freeze_queues(dev);
Keith Busch7c1b2452014-06-25 11:18:12 -06002652 csts = readl(&dev->bar->csts);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002653 }
Keith Busch7c1b2452014-06-25 11:18:12 -06002654 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
Keith Busch4d115422013-12-10 13:10:40 -07002655 for (i = dev->queue_count - 1; i >= 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002656 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002657 nvme_suspend_queue(nvmeq);
Keith Busch4d115422013-12-10 13:10:40 -07002658 }
2659 } else {
2660 nvme_disable_io_queues(dev);
Keith Busch1894d8f2013-07-15 15:02:22 -06002661 nvme_shutdown_ctrl(dev);
Keith Busch4d115422013-12-10 13:10:40 -07002662 nvme_disable_queue(dev, 0);
2663 }
Keith Buschf0b50732013-07-15 15:02:21 -06002664 nvme_dev_unmap(dev);
Keith Busch07836e62015-02-19 10:34:48 -07002665
2666 for (i = dev->queue_count - 1; i >= 0; i--)
2667 nvme_clear_queue(dev->queues[i]);
Keith Buschf0b50732013-07-15 15:02:21 -06002668}
2669
2670static void nvme_dev_remove(struct nvme_dev *dev)
2671{
Keith Busch9ac27092014-01-31 16:53:39 -07002672 struct nvme_ns *ns;
Keith Buschf0b50732013-07-15 15:02:21 -06002673
Keith Buscha5768aa2015-06-01 14:28:14 -06002674 list_for_each_entry(ns, &dev->namespaces, list)
2675 nvme_ns_remove(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002676}
2677
Matthew Wilcox091b6092011-02-10 09:56:01 -05002678static int nvme_setup_prp_pools(struct nvme_dev *dev)
2679{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002680 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
Matthew Wilcox091b6092011-02-10 09:56:01 -05002681 PAGE_SIZE, PAGE_SIZE, 0);
2682 if (!dev->prp_page_pool)
2683 return -ENOMEM;
2684
Matthew Wilcox99802a72011-02-10 10:30:34 -05002685 /* Optimisation for I/Os between 4k and 128k */
Christoph Hellwige75ec752015-05-22 11:12:39 +02002686 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
Matthew Wilcox99802a72011-02-10 10:30:34 -05002687 256, 256, 0);
2688 if (!dev->prp_small_pool) {
2689 dma_pool_destroy(dev->prp_page_pool);
2690 return -ENOMEM;
2691 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002692 return 0;
2693}
2694
2695static void nvme_release_prp_pools(struct nvme_dev *dev)
2696{
2697 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002698 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002699}
2700
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002701static DEFINE_IDA(nvme_instance_ida);
2702
2703static int nvme_set_instance(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002704{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002705 int instance, error;
2706
2707 do {
2708 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
2709 return -ENODEV;
2710
2711 spin_lock(&dev_list_lock);
2712 error = ida_get_new(&nvme_instance_ida, &instance);
2713 spin_unlock(&dev_list_lock);
2714 } while (error == -EAGAIN);
2715
2716 if (error)
2717 return -ENODEV;
2718
2719 dev->instance = instance;
2720 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002721}
2722
2723static void nvme_release_instance(struct nvme_dev *dev)
2724{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002725 spin_lock(&dev_list_lock);
2726 ida_remove(&nvme_instance_ida, dev->instance);
2727 spin_unlock(&dev_list_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002728}
2729
Keith Busch9ac27092014-01-31 16:53:39 -07002730static void nvme_free_namespaces(struct nvme_dev *dev)
2731{
2732 struct nvme_ns *ns, *next;
2733
Keith Buscha5768aa2015-06-01 14:28:14 -06002734 list_for_each_entry_safe(ns, next, &dev->namespaces, list)
2735 nvme_free_namespace(ns);
Keith Busch9ac27092014-01-31 16:53:39 -07002736}
2737
Keith Busch5e82e952013-02-19 10:17:58 -07002738static void nvme_free_dev(struct kref *kref)
2739{
2740 struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref);
Keith Busch9ac27092014-01-31 16:53:39 -07002741
Christoph Hellwige75ec752015-05-22 11:12:39 +02002742 put_device(dev->dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07002743 put_device(dev->device);
Keith Busch9ac27092014-01-31 16:53:39 -07002744 nvme_free_namespaces(dev);
Indraneel M285dffc2014-12-11 08:24:18 -07002745 nvme_release_instance(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06002746 if (dev->tagset.tags)
2747 blk_mq_free_tag_set(&dev->tagset);
2748 if (dev->admin_q)
2749 blk_put_queue(dev->admin_q);
Keith Busch5e82e952013-02-19 10:17:58 -07002750 kfree(dev->queues);
2751 kfree(dev->entry);
2752 kfree(dev);
2753}
2754
2755static int nvme_dev_open(struct inode *inode, struct file *f)
2756{
Keith Buschb3fffde2015-02-03 11:21:42 -07002757 struct nvme_dev *dev;
2758 int instance = iminor(inode);
2759 int ret = -ENODEV;
2760
2761 spin_lock(&dev_list_lock);
2762 list_for_each_entry(dev, &dev_list, node) {
2763 if (dev->instance == instance) {
Keith Busch2e1d8442015-02-12 15:33:00 -07002764 if (!dev->admin_q) {
2765 ret = -EWOULDBLOCK;
2766 break;
2767 }
Keith Buschb3fffde2015-02-03 11:21:42 -07002768 if (!kref_get_unless_zero(&dev->kref))
2769 break;
2770 f->private_data = dev;
2771 ret = 0;
2772 break;
2773 }
2774 }
2775 spin_unlock(&dev_list_lock);
2776
2777 return ret;
Keith Busch5e82e952013-02-19 10:17:58 -07002778}
2779
2780static int nvme_dev_release(struct inode *inode, struct file *f)
2781{
2782 struct nvme_dev *dev = f->private_data;
2783 kref_put(&dev->kref, nvme_free_dev);
2784 return 0;
2785}
2786
2787static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
2788{
2789 struct nvme_dev *dev = f->private_data;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002790 struct nvme_ns *ns;
2791
Keith Busch5e82e952013-02-19 10:17:58 -07002792 switch (cmd) {
2793 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002794 return nvme_user_cmd(dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06002795 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002796 if (list_empty(&dev->namespaces))
2797 return -ENOTTY;
2798 ns = list_first_entry(&dev->namespaces, struct nvme_ns, list);
2799 return nvme_user_cmd(dev, ns, (void __user *)arg);
Keith Busch4cc06522015-06-05 10:30:08 -06002800 case NVME_IOCTL_RESET:
2801 dev_warn(dev->dev, "resetting controller\n");
2802 return nvme_reset(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07002803 default:
2804 return -ENOTTY;
2805 }
2806}
2807
2808static const struct file_operations nvme_dev_fops = {
2809 .owner = THIS_MODULE,
2810 .open = nvme_dev_open,
2811 .release = nvme_dev_release,
2812 .unlocked_ioctl = nvme_dev_ioctl,
2813 .compat_ioctl = nvme_dev_ioctl,
2814};
2815
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002816static void nvme_set_irq_hints(struct nvme_dev *dev)
2817{
2818 struct nvme_queue *nvmeq;
2819 int i;
2820
2821 for (i = 0; i < dev->online_queues; i++) {
2822 nvmeq = dev->queues[i];
2823
Keith Busch42483222015-06-01 09:29:54 -06002824 if (!nvmeq->tags || !(*nvmeq->tags))
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002825 continue;
2826
2827 irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector,
Keith Busch42483222015-06-01 09:29:54 -06002828 blk_mq_tags_cpumask(*nvmeq->tags));
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002829 }
2830}
2831
Keith Buschf0b50732013-07-15 15:02:21 -06002832static int nvme_dev_start(struct nvme_dev *dev)
2833{
2834 int result;
Dan McLeranb9afca32014-04-07 17:10:11 -06002835 bool start_thread = false;
Keith Buschf0b50732013-07-15 15:02:21 -06002836
2837 result = nvme_dev_map(dev);
2838 if (result)
2839 return result;
2840
2841 result = nvme_configure_admin_queue(dev);
2842 if (result)
2843 goto unmap;
2844
2845 spin_lock(&dev_list_lock);
Dan McLeranb9afca32014-04-07 17:10:11 -06002846 if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) {
2847 start_thread = true;
2848 nvme_thread = NULL;
2849 }
Keith Buschf0b50732013-07-15 15:02:21 -06002850 list_add(&dev->node, &dev_list);
2851 spin_unlock(&dev_list_lock);
2852
Dan McLeranb9afca32014-04-07 17:10:11 -06002853 if (start_thread) {
2854 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
Keith Busch387caa52014-09-22 13:46:19 -06002855 wake_up_all(&nvme_kthread_wait);
Dan McLeranb9afca32014-04-07 17:10:11 -06002856 } else
2857 wait_event_killable(nvme_kthread_wait, nvme_thread);
2858
2859 if (IS_ERR_OR_NULL(nvme_thread)) {
2860 result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR;
2861 goto disable;
2862 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002863
2864 nvme_init_queue(dev->queues[0], 0);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002865 result = nvme_alloc_admin_tags(dev);
2866 if (result)
2867 goto disable;
Dan McLeranb9afca32014-04-07 17:10:11 -06002868
Keith Buschf0b50732013-07-15 15:02:21 -06002869 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06002870 if (result)
Keith Busch0fb59cb2015-01-07 18:55:50 -07002871 goto free_tags;
Keith Buschf0b50732013-07-15 15:02:21 -06002872
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002873 nvme_set_irq_hints(dev);
2874
Keith Busch1efccc92015-03-31 10:37:17 -06002875 dev->event_limit = 1;
Keith Buschd82e8bf2013-09-05 14:45:07 -06002876 return result;
Keith Buschf0b50732013-07-15 15:02:21 -06002877
Keith Busch0fb59cb2015-01-07 18:55:50 -07002878 free_tags:
2879 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06002880 blk_put_queue(dev->admin_q);
2881 dev->admin_q = NULL;
2882 dev->queues[0]->tags = NULL;
Keith Buschf0b50732013-07-15 15:02:21 -06002883 disable:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002884 nvme_disable_queue(dev, 0);
Dan McLeranb9afca32014-04-07 17:10:11 -06002885 nvme_dev_list_remove(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06002886 unmap:
2887 nvme_dev_unmap(dev);
2888 return result;
2889}
2890
Keith Busch9a6b9452013-12-10 13:10:36 -07002891static int nvme_remove_dead_ctrl(void *arg)
2892{
2893 struct nvme_dev *dev = (struct nvme_dev *)arg;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002894 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002895
2896 if (pci_get_drvdata(pdev))
Keith Buschc81f4972014-06-23 15:24:53 -06002897 pci_stop_and_remove_bus_device_locked(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002898 kref_put(&dev->kref, nvme_free_dev);
2899 return 0;
2900}
2901
2902static void nvme_remove_disks(struct work_struct *ws)
2903{
Keith Busch9a6b9452013-12-10 13:10:36 -07002904 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
2905
Keith Busch5a92e702014-02-21 14:13:44 -07002906 nvme_free_queues(dev, 1);
Keith Busch302c6722014-07-18 11:40:20 -06002907 nvme_dev_remove(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002908}
2909
2910static int nvme_dev_resume(struct nvme_dev *dev)
2911{
2912 int ret;
2913
2914 ret = nvme_dev_start(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06002915 if (ret)
Keith Busch9a6b9452013-12-10 13:10:36 -07002916 return ret;
Keith Buschbadc34d2014-06-23 14:25:35 -06002917 if (dev->online_queues < 2) {
Keith Busch9a6b9452013-12-10 13:10:36 -07002918 spin_lock(&dev_list_lock);
Tejun Heo9ca97372014-03-07 10:24:49 -05002919 dev->reset_workfn = nvme_remove_disks;
Keith Busch9a6b9452013-12-10 13:10:36 -07002920 queue_work(nvme_workq, &dev->reset_work);
2921 spin_unlock(&dev_list_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002922 } else {
2923 nvme_unfreeze_queues(dev);
Keith Buscha5768aa2015-06-01 14:28:14 -06002924 schedule_work(&dev->scan_work);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002925 nvme_set_irq_hints(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002926 }
2927 return 0;
2928}
2929
2930static void nvme_dev_reset(struct nvme_dev *dev)
2931{
2932 nvme_dev_shutdown(dev);
2933 if (nvme_dev_resume(dev)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002934 dev_warn(dev->dev, "Device failed to resume\n");
Keith Busch9a6b9452013-12-10 13:10:36 -07002935 kref_get(&dev->kref);
2936 if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
2937 dev->instance))) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002938 dev_err(dev->dev,
Keith Busch9a6b9452013-12-10 13:10:36 -07002939 "Failed to start controller remove task\n");
2940 kref_put(&dev->kref, nvme_free_dev);
2941 }
2942 }
2943}
2944
2945static void nvme_reset_failed_dev(struct work_struct *ws)
2946{
2947 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
2948 nvme_dev_reset(dev);
2949}
2950
Tejun Heo9ca97372014-03-07 10:24:49 -05002951static void nvme_reset_workfn(struct work_struct *work)
2952{
2953 struct nvme_dev *dev = container_of(work, struct nvme_dev, reset_work);
2954 dev->reset_workfn(work);
2955}
2956
Keith Busch4cc06522015-06-05 10:30:08 -06002957static int nvme_reset(struct nvme_dev *dev)
2958{
2959 int ret = -EBUSY;
2960
2961 if (!dev->admin_q || blk_queue_dying(dev->admin_q))
2962 return -ENODEV;
2963
2964 spin_lock(&dev_list_lock);
2965 if (!work_pending(&dev->reset_work)) {
2966 dev->reset_workfn = nvme_reset_failed_dev;
2967 queue_work(nvme_workq, &dev->reset_work);
2968 ret = 0;
2969 }
2970 spin_unlock(&dev_list_lock);
2971
2972 if (!ret) {
2973 flush_work(&dev->reset_work);
2974 return 0;
2975 }
2976
2977 return ret;
2978}
2979
2980static ssize_t nvme_sysfs_reset(struct device *dev,
2981 struct device_attribute *attr, const char *buf,
2982 size_t count)
2983{
2984 struct nvme_dev *ndev = dev_get_drvdata(dev);
2985 int ret;
2986
2987 ret = nvme_reset(ndev);
2988 if (ret < 0)
2989 return ret;
2990
2991 return count;
2992}
2993static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
2994
Keith Busch2e1d8442015-02-12 15:33:00 -07002995static void nvme_async_probe(struct work_struct *work);
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002996static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002997{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002998 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002999 struct nvme_dev *dev;
3000
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003001 node = dev_to_node(&pdev->dev);
3002 if (node == NUMA_NO_NODE)
3003 set_dev_node(&pdev->dev, 0);
3004
3005 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003006 if (!dev)
3007 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003008 dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry),
3009 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003010 if (!dev->entry)
3011 goto free;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003012 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
3013 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003014 if (!dev->queues)
3015 goto free;
3016
3017 INIT_LIST_HEAD(&dev->namespaces);
Tejun Heo9ca97372014-03-07 10:24:49 -05003018 dev->reset_workfn = nvme_reset_failed_dev;
3019 INIT_WORK(&dev->reset_work, nvme_reset_workfn);
Christoph Hellwige75ec752015-05-22 11:12:39 +02003020 dev->dev = get_device(&pdev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003021 pci_set_drvdata(pdev, dev);
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07003022 result = nvme_set_instance(dev);
3023 if (result)
Keith Buscha96d4f52014-08-19 19:15:59 -06003024 goto put_pci;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003025
Matthew Wilcox091b6092011-02-10 09:56:01 -05003026 result = nvme_setup_prp_pools(dev);
3027 if (result)
Keith Busch0877cb02013-07-15 15:02:19 -06003028 goto release;
Matthew Wilcox091b6092011-02-10 09:56:01 -05003029
Keith Buschfb35e912014-03-03 11:09:47 -07003030 kref_init(&dev->kref);
Keith Buschb3fffde2015-02-03 11:21:42 -07003031 dev->device = device_create(nvme_class, &pdev->dev,
3032 MKDEV(nvme_char_major, dev->instance),
3033 dev, "nvme%d", dev->instance);
3034 if (IS_ERR(dev->device)) {
3035 result = PTR_ERR(dev->device);
Keith Busch2e1d8442015-02-12 15:33:00 -07003036 goto release_pools;
Keith Buschb3fffde2015-02-03 11:21:42 -07003037 }
3038 get_device(dev->device);
Keith Busch4cc06522015-06-05 10:30:08 -06003039 dev_set_drvdata(dev->device, dev);
3040
3041 result = device_create_file(dev->device, &dev_attr_reset_controller);
3042 if (result)
3043 goto put_dev;
Keith Buschb3fffde2015-02-03 11:21:42 -07003044
Keith Busche6e96d72015-03-23 09:32:37 -06003045 INIT_LIST_HEAD(&dev->node);
Keith Buscha5768aa2015-06-01 14:28:14 -06003046 INIT_WORK(&dev->scan_work, nvme_dev_scan);
Keith Busch2e1d8442015-02-12 15:33:00 -07003047 INIT_WORK(&dev->probe_work, nvme_async_probe);
3048 schedule_work(&dev->probe_work);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003049 return 0;
3050
Keith Busch4cc06522015-06-05 10:30:08 -06003051 put_dev:
3052 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
3053 put_device(dev->device);
Keith Busch0877cb02013-07-15 15:02:19 -06003054 release_pools:
Matthew Wilcox091b6092011-02-10 09:56:01 -05003055 nvme_release_prp_pools(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06003056 release:
3057 nvme_release_instance(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06003058 put_pci:
Christoph Hellwige75ec752015-05-22 11:12:39 +02003059 put_device(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003060 free:
3061 kfree(dev->queues);
3062 kfree(dev->entry);
3063 kfree(dev);
3064 return result;
3065}
3066
Keith Busch2e1d8442015-02-12 15:33:00 -07003067static void nvme_async_probe(struct work_struct *work)
3068{
3069 struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work);
3070 int result;
3071
3072 result = nvme_dev_start(dev);
3073 if (result)
3074 goto reset;
3075
3076 if (dev->online_queues > 1)
3077 result = nvme_dev_add(dev);
3078 if (result)
3079 goto reset;
3080
3081 nvme_set_irq_hints(dev);
Keith Busch2e1d8442015-02-12 15:33:00 -07003082 return;
3083 reset:
Keith Busch4cc06522015-06-05 10:30:08 -06003084 spin_lock(&dev_list_lock);
Keith Busch07836e62015-02-19 10:34:48 -07003085 if (!work_busy(&dev->reset_work)) {
3086 dev->reset_workfn = nvme_reset_failed_dev;
3087 queue_work(nvme_workq, &dev->reset_work);
3088 }
Keith Busch4cc06522015-06-05 10:30:08 -06003089 spin_unlock(&dev_list_lock);
Keith Busch2e1d8442015-02-12 15:33:00 -07003090}
3091
Keith Buschf0d54a52014-05-02 10:40:43 -06003092static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
3093{
Keith Buscha6739472014-06-23 16:03:21 -06003094 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buschf0d54a52014-05-02 10:40:43 -06003095
Keith Buscha6739472014-06-23 16:03:21 -06003096 if (prepare)
3097 nvme_dev_shutdown(dev);
3098 else
3099 nvme_dev_resume(dev);
Keith Buschf0d54a52014-05-02 10:40:43 -06003100}
3101
Keith Busch09ece142014-01-27 11:29:40 -05003102static void nvme_shutdown(struct pci_dev *pdev)
3103{
3104 struct nvme_dev *dev = pci_get_drvdata(pdev);
3105 nvme_dev_shutdown(dev);
3106}
3107
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003108static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003109{
3110 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003111
3112 spin_lock(&dev_list_lock);
3113 list_del_init(&dev->node);
3114 spin_unlock(&dev_list_lock);
3115
3116 pci_set_drvdata(pdev, NULL);
Keith Busch2e1d8442015-02-12 15:33:00 -07003117 flush_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003118 flush_work(&dev->reset_work);
Keith Buscha5768aa2015-06-01 14:28:14 -06003119 flush_work(&dev->scan_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003120 device_remove_file(dev->device, &dev_attr_reset_controller);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003121 nvme_dev_shutdown(dev);
Keith Buschc9d3bf82015-01-07 18:55:52 -07003122 nvme_dev_remove(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003123 nvme_dev_remove_admin(dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07003124 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003125 nvme_free_queues(dev, 0);
Keith Busch9a6b9452013-12-10 13:10:36 -07003126 nvme_release_prp_pools(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003127 kref_put(&dev->kref, nvme_free_dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003128}
3129
3130/* These functions are yet to be implemented */
3131#define nvme_error_detected NULL
3132#define nvme_dump_registers NULL
3133#define nvme_link_reset NULL
3134#define nvme_slot_reset NULL
3135#define nvme_error_resume NULL
Keith Buschcd638942013-07-15 15:02:23 -06003136
Jingoo Han671a6012014-02-13 11:19:14 +09003137#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06003138static int nvme_suspend(struct device *dev)
3139{
3140 struct pci_dev *pdev = to_pci_dev(dev);
3141 struct nvme_dev *ndev = pci_get_drvdata(pdev);
3142
3143 nvme_dev_shutdown(ndev);
3144 return 0;
3145}
3146
3147static int nvme_resume(struct device *dev)
3148{
3149 struct pci_dev *pdev = to_pci_dev(dev);
3150 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06003151
Keith Busch9a6b9452013-12-10 13:10:36 -07003152 if (nvme_dev_resume(ndev) && !work_busy(&ndev->reset_work)) {
Tejun Heo9ca97372014-03-07 10:24:49 -05003153 ndev->reset_workfn = nvme_reset_failed_dev;
Keith Busch9a6b9452013-12-10 13:10:36 -07003154 queue_work(nvme_workq, &ndev->reset_work);
3155 }
3156 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06003157}
Jingoo Han671a6012014-02-13 11:19:14 +09003158#endif
Keith Buschcd638942013-07-15 15:02:23 -06003159
3160static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003161
Stephen Hemminger1d352032012-09-07 09:33:17 -07003162static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003163 .error_detected = nvme_error_detected,
3164 .mmio_enabled = nvme_dump_registers,
3165 .link_reset = nvme_link_reset,
3166 .slot_reset = nvme_slot_reset,
3167 .resume = nvme_error_resume,
Keith Buschf0d54a52014-05-02 10:40:43 -06003168 .reset_notify = nvme_reset_notify,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003169};
3170
3171/* Move to pci_ids.h later */
3172#define PCI_CLASS_STORAGE_EXPRESS 0x010802
3173
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003174static const struct pci_device_id nvme_id_table[] = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003175 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
3176 { 0, }
3177};
3178MODULE_DEVICE_TABLE(pci, nvme_id_table);
3179
3180static struct pci_driver nvme_driver = {
3181 .name = "nvme",
3182 .id_table = nvme_id_table,
3183 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003184 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05003185 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06003186 .driver = {
3187 .pm = &nvme_dev_pm_ops,
3188 },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003189 .err_handler = &nvme_err_handler,
3190};
3191
3192static int __init nvme_init(void)
3193{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003194 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003195
Dan McLeranb9afca32014-04-07 17:10:11 -06003196 init_waitqueue_head(&nvme_kthread_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003197
Keith Busch9a6b9452013-12-10 13:10:36 -07003198 nvme_workq = create_singlethread_workqueue("nvme");
3199 if (!nvme_workq)
Dan McLeranb9afca32014-04-07 17:10:11 -06003200 return -ENOMEM;
Keith Busch9a6b9452013-12-10 13:10:36 -07003201
Keith Busch5c42ea12012-07-25 16:05:18 -06003202 result = register_blkdev(nvme_major, "nvme");
3203 if (result < 0)
Keith Busch9a6b9452013-12-10 13:10:36 -07003204 goto kill_workq;
Keith Busch5c42ea12012-07-25 16:05:18 -06003205 else if (result > 0)
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003206 nvme_major = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003207
Keith Buschb3fffde2015-02-03 11:21:42 -07003208 result = __register_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme",
3209 &nvme_dev_fops);
3210 if (result < 0)
3211 goto unregister_blkdev;
3212 else if (result > 0)
3213 nvme_char_major = result;
3214
3215 nvme_class = class_create(THIS_MODULE, "nvme");
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003216 if (IS_ERR(nvme_class)) {
3217 result = PTR_ERR(nvme_class);
Keith Buschb3fffde2015-02-03 11:21:42 -07003218 goto unregister_chrdev;
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003219 }
Keith Buschb3fffde2015-02-03 11:21:42 -07003220
Keith Buschf3db22f2014-06-11 11:51:35 -06003221 result = pci_register_driver(&nvme_driver);
3222 if (result)
Keith Buschb3fffde2015-02-03 11:21:42 -07003223 goto destroy_class;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003224 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003225
Keith Buschb3fffde2015-02-03 11:21:42 -07003226 destroy_class:
3227 class_destroy(nvme_class);
3228 unregister_chrdev:
3229 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003230 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003231 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003232 kill_workq:
3233 destroy_workqueue(nvme_workq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003234 return result;
3235}
3236
3237static void __exit nvme_exit(void)
3238{
3239 pci_unregister_driver(&nvme_driver);
3240 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003241 destroy_workqueue(nvme_workq);
Keith Buschb3fffde2015-02-03 11:21:42 -07003242 class_destroy(nvme_class);
3243 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Dan McLeranb9afca32014-04-07 17:10:11 -06003244 BUG_ON(nvme_thread && !IS_ERR(nvme_thread));
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04003245 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003246}
3247
3248MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
3249MODULE_LICENSE("GPL");
Keith Buschc78b47132014-11-21 15:16:32 -07003250MODULE_VERSION("1.0");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003251module_init(nvme_init);
3252module_exit(nvme_exit);