blob: f3b53af789efccbddfedc0b37319dcaa1c264bfd [file] [log] [blame]
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001/*
2 * NVM Express device driver
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003 * Copyright (c) 2011-2014, Intel Corporation.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050013 */
14
Matthew Wilcox8de05532011-05-12 13:50:28 -040015#include <linux/bitops.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050016#include <linux/blkdev.h>
Matias Bjørlinga4aea562014-11-04 08:20:14 -070017#include <linux/blk-mq.h>
Keith Busch42f61422014-03-24 10:46:25 -060018#include <linux/cpu.h>
Matthew Wilcoxfd63e9ce2011-05-06 08:37:54 -040019#include <linux/delay.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050020#include <linux/errno.h>
21#include <linux/fs.h>
22#include <linux/genhd.h>
Keith Busch4cc09e22014-04-02 15:45:37 -060023#include <linux/hdreg.h>
Matthew Wilcox5aff9382011-05-06 08:45:47 -040024#include <linux/idr.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050025#include <linux/init.h>
26#include <linux/interrupt.h>
27#include <linux/io.h>
28#include <linux/kdev_t.h>
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050029#include <linux/kthread.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050030#include <linux/kernel.h>
Keith Buscha5768aa2015-06-01 14:28:14 -060031#include <linux/list_sort.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050032#include <linux/mm.h>
33#include <linux/module.h>
34#include <linux/moduleparam.h>
35#include <linux/pci.h>
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -050036#include <linux/poison.h>
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -040037#include <linux/ptrace.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050038#include <linux/sched.h>
39#include <linux/slab.h>
Keith Busche1e5e562015-02-19 13:39:03 -070040#include <linux/t10-pi.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050041#include <linux/types.h>
Keith Busch1d277a62015-10-15 14:10:52 +020042#include <linux/pr.h>
Vishal Verma5d0f6132013-03-04 18:40:58 -070043#include <scsi/sg.h>
Linus Torvalds9cf5c092015-11-06 14:22:15 -080044#include <linux/io-64-nonatomic-lo-hi.h>
Keith Busch1d277a62015-10-15 14:10:52 +020045#include <asm/unaligned.h>
Hitoshi Mitake797a7962012-02-07 11:45:33 +090046
Christoph Hellwig9d99a8d2015-10-02 15:25:49 +020047#include <uapi/linux/nvme_ioctl.h>
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020048#include "nvme.h"
49
Keith Buschb3fffde2015-02-03 11:21:42 -070050#define NVME_MINORS (1U << MINORBITS)
Keith Busch9d43cf62014-05-13 11:42:02 -060051#define NVME_Q_DEPTH 1024
Jens Axboed31af0a2015-03-06 12:56:13 -070052#define NVME_AQ_DEPTH 256
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050053#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
54#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
Keith Busch9d43cf62014-05-13 11:42:02 -060055#define ADMIN_TIMEOUT (admin_timeout * HZ)
Dan McLeran2484f402014-07-01 09:33:32 -060056#define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050057
Keith Busch9d43cf62014-05-13 11:42:02 -060058static unsigned char admin_timeout = 60;
59module_param(admin_timeout, byte, 0644);
60MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050061
Matthew Wilcoxbd676082014-06-03 23:04:30 -040062unsigned char nvme_io_timeout = 30;
63module_param_named(io_timeout, nvme_io_timeout, byte, 0644);
Keith Buschb3550842014-04-04 11:43:36 -060064MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050065
Dan McLeran2484f402014-07-01 09:33:32 -060066static unsigned char shutdown_timeout = 5;
67module_param(shutdown_timeout, byte, 0644);
68MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
69
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050070static int nvme_major;
71module_param(nvme_major, int, 0);
72
Keith Buschb3fffde2015-02-03 11:21:42 -070073static int nvme_char_major;
74module_param(nvme_char_major, int, 0);
75
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050076static int use_threaded_interrupts;
77module_param(use_threaded_interrupts, int, 0);
78
Jon Derrick8ffaadf2015-07-20 10:14:09 -060079static bool use_cmb_sqes = true;
80module_param(use_cmb_sqes, bool, 0644);
81MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
82
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050083static DEFINE_SPINLOCK(dev_list_lock);
84static LIST_HEAD(dev_list);
85static struct task_struct *nvme_thread;
Keith Busch9a6b9452013-12-10 13:10:36 -070086static struct workqueue_struct *nvme_workq;
Dan McLeranb9afca32014-04-07 17:10:11 -060087static wait_queue_head_t nvme_kthread_wait;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050088
Keith Buschb3fffde2015-02-03 11:21:42 -070089static struct class *nvme_class;
90
Christoph Hellwig906678922015-10-02 18:49:23 +020091static int __nvme_reset(struct nvme_dev *dev);
Keith Busch4cc06522015-06-05 10:30:08 -060092static int nvme_reset(struct nvme_dev *dev);
Jens Axboea0fa9642015-11-03 20:37:26 -070093static void nvme_process_cq(struct nvme_queue *nvmeq);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +020094static void nvme_dead_ctrl(struct nvme_dev *dev);
Keith Buschd4b4ff82013-12-10 13:10:37 -070095
Keith Busch4d115422013-12-10 13:10:40 -070096struct async_cmd_info {
97 struct kthread_work work;
98 struct kthread_worker *worker;
Matias Bjørlinga4aea562014-11-04 08:20:14 -070099 struct request *req;
Keith Busch4d115422013-12-10 13:10:40 -0700100 u32 result;
101 int status;
102 void *ctx;
103};
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500104
105/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500106 * An NVM Express queue. Each device has at least two (one for admin
107 * commands and one for I/O commands).
108 */
109struct nvme_queue {
110 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500111 struct nvme_dev *dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -0500112 char irqname[24]; /* nvme4294967295-65535\0 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500113 spinlock_t q_lock;
114 struct nvme_command *sq_cmds;
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600115 struct nvme_command __iomem *sq_cmds_io;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500116 volatile struct nvme_completion *cqes;
Keith Busch42483222015-06-01 09:29:54 -0600117 struct blk_mq_tags **tags;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500118 dma_addr_t sq_dma_addr;
119 dma_addr_t cq_dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500120 u32 __iomem *q_db;
121 u16 q_depth;
Jens Axboe6222d172015-01-15 15:19:10 -0700122 s16 cq_vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500123 u16 sq_head;
124 u16 sq_tail;
125 u16 cq_head;
Keith Buschc30341d2013-12-10 13:10:38 -0700126 u16 qid;
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400127 u8 cq_phase;
128 u8 cqe_seen;
Keith Busch4d115422013-12-10 13:10:40 -0700129 struct async_cmd_info cmdinfo;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500130};
131
132/*
133 * Check we didin't inadvertently grow the command struct
134 */
135static inline void _nvme_check_size(void)
136{
137 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
138 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
139 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
140 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
141 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
Vishal Vermaf8ebf842013-03-27 07:13:41 -0400142 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
Keith Buschc30341d2013-12-10 13:10:38 -0700143 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500144 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
145 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
146 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
147 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
Keith Busch6ecec742012-09-26 12:49:27 -0600148 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500149}
150
Keith Buschedd10d32014-04-03 16:45:23 -0600151typedef void (*nvme_completion_fn)(struct nvme_queue *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400152 struct nvme_completion *);
153
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500154struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400155 nvme_completion_fn fn;
156 void *ctx;
Keith Buschc30341d2013-12-10 13:10:38 -0700157 int aborted;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700158 struct nvme_queue *nvmeq;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700159 struct nvme_iod iod[0];
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500160};
161
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700162/*
163 * Max size of iod being embedded in the request payload
164 */
165#define NVME_INT_PAGES 2
166#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->page_size)
Chong Yuanfda631f2015-03-27 09:21:32 +0800167#define NVME_INT_MASK 0x01
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700168
169/*
170 * Will slightly overestimate the number of pages needed. This is OK
171 * as it only leads to a small amount of wasted memory for the lifetime of
172 * the I/O.
173 */
174static int nvme_npages(unsigned size, struct nvme_dev *dev)
175{
176 unsigned nprps = DIV_ROUND_UP(size + dev->page_size, dev->page_size);
177 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
178}
179
180static unsigned int nvme_cmd_size(struct nvme_dev *dev)
181{
182 unsigned int ret = sizeof(struct nvme_cmd_info);
183
184 ret += sizeof(struct nvme_iod);
185 ret += sizeof(__le64 *) * nvme_npages(NVME_INT_BYTES(dev), dev);
186 ret += sizeof(struct scatterlist) * NVME_INT_PAGES;
187
188 return ret;
189}
190
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700191static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
192 unsigned int hctx_idx)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500193{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700194 struct nvme_dev *dev = data;
195 struct nvme_queue *nvmeq = dev->queues[0];
196
Keith Busch42483222015-06-01 09:29:54 -0600197 WARN_ON(hctx_idx != 0);
198 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
199 WARN_ON(nvmeq->tags);
200
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700201 hctx->driver_data = nvmeq;
Keith Busch42483222015-06-01 09:29:54 -0600202 nvmeq->tags = &dev->admin_tagset.tags[0];
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700203 return 0;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500204}
205
Keith Busch4af0e212015-06-08 10:08:13 -0600206static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
207{
208 struct nvme_queue *nvmeq = hctx->driver_data;
209
210 nvmeq->tags = NULL;
211}
212
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700213static int nvme_admin_init_request(void *data, struct request *req,
214 unsigned int hctx_idx, unsigned int rq_idx,
215 unsigned int numa_node)
Keith Busch22404272013-07-15 15:02:20 -0600216{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700217 struct nvme_dev *dev = data;
218 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
219 struct nvme_queue *nvmeq = dev->queues[0];
220
221 BUG_ON(!nvmeq);
222 cmd->nvmeq = nvmeq;
223 return 0;
Keith Busch22404272013-07-15 15:02:20 -0600224}
225
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700226static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
227 unsigned int hctx_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500228{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700229 struct nvme_dev *dev = data;
Keith Busch42483222015-06-01 09:29:54 -0600230 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500231
Keith Busch42483222015-06-01 09:29:54 -0600232 if (!nvmeq->tags)
233 nvmeq->tags = &dev->tagset.tags[hctx_idx];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500234
Keith Busch42483222015-06-01 09:29:54 -0600235 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700236 hctx->driver_data = nvmeq;
237 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500238}
239
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700240static int nvme_init_request(void *data, struct request *req,
241 unsigned int hctx_idx, unsigned int rq_idx,
242 unsigned int numa_node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500243{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700244 struct nvme_dev *dev = data;
245 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
246 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
247
248 BUG_ON(!nvmeq);
249 cmd->nvmeq = nvmeq;
250 return 0;
251}
252
253static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx,
254 nvme_completion_fn handler)
255{
256 cmd->fn = handler;
257 cmd->ctx = ctx;
258 cmd->aborted = 0;
Keith Buschc917dfe2015-01-07 18:55:48 -0700259 blk_mq_start_request(blk_mq_rq_from_pdu(cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500260}
261
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700262static void *iod_get_private(struct nvme_iod *iod)
263{
264 return (void *) (iod->private & ~0x1UL);
265}
266
267/*
268 * If bit 0 is set, the iod is embedded in the request payload.
269 */
270static bool iod_should_kfree(struct nvme_iod *iod)
271{
Chong Yuanfda631f2015-03-27 09:21:32 +0800272 return (iod->private & NVME_INT_MASK) == 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700273}
274
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400275/* Special values must be less than 0x1000 */
276#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500277#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
278#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
279#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500280
Keith Buschedd10d32014-04-03 16:45:23 -0600281static void special_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400282 struct nvme_completion *cqe)
283{
284 if (ctx == CMD_CTX_CANCELLED)
285 return;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400286 if (ctx == CMD_CTX_COMPLETED) {
Keith Buschedd10d32014-04-03 16:45:23 -0600287 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400288 "completed id %d twice on queue %d\n",
289 cqe->command_id, le16_to_cpup(&cqe->sq_id));
290 return;
291 }
292 if (ctx == CMD_CTX_INVALID) {
Keith Buschedd10d32014-04-03 16:45:23 -0600293 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400294 "invalid id %d completed on queue %d\n",
295 cqe->command_id, le16_to_cpup(&cqe->sq_id));
296 return;
297 }
Keith Buschedd10d32014-04-03 16:45:23 -0600298 dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400299}
300
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700301static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn)
302{
303 void *ctx;
304
305 if (fn)
306 *fn = cmd->fn;
307 ctx = cmd->ctx;
308 cmd->fn = special_completion;
309 cmd->ctx = CMD_CTX_CANCELLED;
310 return ctx;
311}
312
313static void async_req_completion(struct nvme_queue *nvmeq, void *ctx,
314 struct nvme_completion *cqe)
315{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700316 u32 result = le32_to_cpup(&cqe->result);
317 u16 status = le16_to_cpup(&cqe->status) >> 1;
318
319 if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ)
320 ++nvmeq->dev->event_limit;
Keith Buscha5768aa2015-06-01 14:28:14 -0600321 if (status != NVME_SC_SUCCESS)
322 return;
323
324 switch (result & 0xff07) {
325 case NVME_AER_NOTICE_NS_CHANGED:
326 dev_info(nvmeq->q_dmadev, "rescanning\n");
327 schedule_work(&nvmeq->dev->scan_work);
328 default:
329 dev_warn(nvmeq->q_dmadev, "async event result %08x\n", result);
330 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700331}
332
333static void abort_completion(struct nvme_queue *nvmeq, void *ctx,
334 struct nvme_completion *cqe)
335{
336 struct request *req = ctx;
337
338 u16 status = le16_to_cpup(&cqe->status) >> 1;
339 u32 result = le32_to_cpup(&cqe->result);
340
Keith Busch42483222015-06-01 09:29:54 -0600341 blk_mq_free_request(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700342
343 dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result);
344 ++nvmeq->dev->abort_limit;
345}
346
Keith Buschedd10d32014-04-03 16:45:23 -0600347static void async_completion(struct nvme_queue *nvmeq, void *ctx,
Keith Busch4d115422013-12-10 13:10:40 -0700348 struct nvme_completion *cqe)
349{
350 struct async_cmd_info *cmdinfo = ctx;
351 cmdinfo->result = le32_to_cpup(&cqe->result);
352 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
353 queue_kthread_work(cmdinfo->worker, &cmdinfo->work);
Keith Busch42483222015-06-01 09:29:54 -0600354 blk_mq_free_request(cmdinfo->req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700355}
356
357static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq,
358 unsigned int tag)
359{
Keith Busch42483222015-06-01 09:29:54 -0600360 struct request *req = blk_mq_tag_to_rq(*nvmeq->tags, tag);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700361
362 return blk_mq_rq_to_pdu(req);
Keith Busch4d115422013-12-10 13:10:40 -0700363}
364
Matthew Wilcox184d2942011-05-11 21:36:38 -0400365/*
366 * Called with local interrupts disabled and the q_lock held. May not sleep.
367 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700368static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400369 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500370{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700371 struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400372 void *ctx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700373 if (tag >= nvmeq->q_depth) {
374 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500375 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400376 }
Keith Busch859361a2012-08-02 14:05:59 -0600377 if (fn)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700378 *fn = cmd->fn;
379 ctx = cmd->ctx;
380 cmd->fn = special_completion;
381 cmd->ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400382 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500383}
384
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500385/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400386 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500387 * @nvmeq: The queue to use
388 * @cmd: The command to send
389 *
390 * Safe to use from interrupt context
391 */
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530392static void __nvme_submit_cmd(struct nvme_queue *nvmeq,
393 struct nvme_command *cmd)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500394{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700395 u16 tail = nvmeq->sq_tail;
396
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600397 if (nvmeq->sq_cmds_io)
398 memcpy_toio(&nvmeq->sq_cmds_io[tail], cmd, sizeof(*cmd));
399 else
400 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
401
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500402 if (++tail == nvmeq->q_depth)
403 tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500404 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500405 nvmeq->sq_tail = tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500406}
407
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530408static void nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700409{
410 unsigned long flags;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700411 spin_lock_irqsave(&nvmeq->q_lock, flags);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530412 __nvme_submit_cmd(nvmeq, cmd);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700413 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700414}
415
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500416static __le64 **iod_list(struct nvme_iod *iod)
417{
418 return ((void *)iod) + iod->offset;
419}
420
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700421static inline void iod_init(struct nvme_iod *iod, unsigned nbytes,
422 unsigned nseg, unsigned long private)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500423{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700424 iod->private = private;
425 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
426 iod->npages = -1;
427 iod->length = nbytes;
428 iod->nents = 0;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500429}
430
431static struct nvme_iod *
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700432__nvme_alloc_iod(unsigned nseg, unsigned bytes, struct nvme_dev *dev,
433 unsigned long priv, gfp_t gfp)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500434{
435 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700436 sizeof(__le64 *) * nvme_npages(bytes, dev) +
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500437 sizeof(struct scatterlist) * nseg, gfp);
438
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700439 if (iod)
440 iod_init(iod, bytes, nseg, priv);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500441
442 return iod;
443}
444
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700445static struct nvme_iod *nvme_alloc_iod(struct request *rq, struct nvme_dev *dev,
446 gfp_t gfp)
447{
448 unsigned size = !(rq->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(rq) :
449 sizeof(struct nvme_dsm_range);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700450 struct nvme_iod *iod;
451
452 if (rq->nr_phys_segments <= NVME_INT_PAGES &&
453 size <= NVME_INT_BYTES(dev)) {
454 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(rq);
455
456 iod = cmd->iod;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700457 iod_init(iod, size, rq->nr_phys_segments,
Chong Yuanfda631f2015-03-27 09:21:32 +0800458 (unsigned long) rq | NVME_INT_MASK);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700459 return iod;
460 }
461
462 return __nvme_alloc_iod(rq->nr_phys_segments, size, dev,
463 (unsigned long) rq, gfp);
464}
465
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200466static void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500467{
Keith Busch1d090622014-06-23 11:34:01 -0600468 const int last_prp = dev->page_size / 8 - 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500469 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500470 __le64 **list = iod_list(iod);
471 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500472
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500473 if (iod->npages == 0)
474 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
475 for (i = 0; i < iod->npages; i++) {
476 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500477 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500478 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500479 prp_dma = next_prp_dma;
480 }
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700481
482 if (iod_should_kfree(iod))
483 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500484}
485
Keith Buschb4ff9c82014-08-29 09:06:12 -0600486static int nvme_error_status(u16 status)
487{
488 switch (status & 0x7ff) {
489 case NVME_SC_SUCCESS:
490 return 0;
491 case NVME_SC_CAP_EXCEEDED:
492 return -ENOSPC;
493 default:
494 return -EIO;
495 }
496}
497
Keith Busch52b68d72015-02-23 09:16:21 -0700498#ifdef CONFIG_BLK_DEV_INTEGRITY
Keith Busche1e5e562015-02-19 13:39:03 -0700499static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
500{
501 if (be32_to_cpu(pi->ref_tag) == v)
502 pi->ref_tag = cpu_to_be32(p);
503}
504
505static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
506{
507 if (be32_to_cpu(pi->ref_tag) == p)
508 pi->ref_tag = cpu_to_be32(v);
509}
510
511/**
512 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
513 *
514 * The virtual start sector is the one that was originally submitted by the
515 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
516 * start sector may be different. Remap protection information to match the
517 * physical LBA on writes, and back to the original seed on reads.
518 *
519 * Type 0 and 3 do not have a ref tag, so no remapping required.
520 */
521static void nvme_dif_remap(struct request *req,
522 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
523{
524 struct nvme_ns *ns = req->rq_disk->private_data;
525 struct bio_integrity_payload *bip;
526 struct t10_pi_tuple *pi;
527 void *p, *pmap;
528 u32 i, nlb, ts, phys, virt;
529
530 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
531 return;
532
533 bip = bio_integrity(req->bio);
534 if (!bip)
535 return;
536
537 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
Keith Busche1e5e562015-02-19 13:39:03 -0700538
539 p = pmap;
540 virt = bip_get_seed(bip);
541 phys = nvme_block_nr(ns, blk_rq_pos(req));
542 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
Dan Williamsac6fc482015-10-21 13:20:18 -0400543 ts = ns->disk->queue->integrity.tuple_size;
Keith Busche1e5e562015-02-19 13:39:03 -0700544
545 for (i = 0; i < nlb; i++, virt++, phys++) {
546 pi = (struct t10_pi_tuple *)p;
547 dif_swap(phys, virt, pi);
548 p += ts;
549 }
550 kunmap_atomic(pmap);
551}
552
Keith Busch52b68d72015-02-23 09:16:21 -0700553static void nvme_init_integrity(struct nvme_ns *ns)
554{
555 struct blk_integrity integrity;
556
557 switch (ns->pi_type) {
558 case NVME_NS_DPS_PI_TYPE3:
Martin K. Petersen0f8087e2015-10-21 13:19:33 -0400559 integrity.profile = &t10_pi_type3_crc;
Keith Busch52b68d72015-02-23 09:16:21 -0700560 break;
561 case NVME_NS_DPS_PI_TYPE1:
562 case NVME_NS_DPS_PI_TYPE2:
Martin K. Petersen0f8087e2015-10-21 13:19:33 -0400563 integrity.profile = &t10_pi_type1_crc;
Keith Busch52b68d72015-02-23 09:16:21 -0700564 break;
565 default:
Dan Williams4125a092015-10-21 13:20:29 -0400566 integrity.profile = NULL;
Keith Busch52b68d72015-02-23 09:16:21 -0700567 break;
568 }
569 integrity.tuple_size = ns->ms;
570 blk_integrity_register(ns->disk, &integrity);
571 blk_queue_max_integrity_segments(ns->queue, 1);
572}
573#else /* CONFIG_BLK_DEV_INTEGRITY */
574static void nvme_dif_remap(struct request *req,
575 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
576{
577}
578static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
579{
580}
581static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
582{
583}
584static void nvme_init_integrity(struct nvme_ns *ns)
585{
586}
587#endif
588
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700589static void req_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500590 struct nvme_completion *cqe)
591{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500592 struct nvme_iod *iod = ctx;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700593 struct request *req = iod_get_private(iod);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700594 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500595 u16 status = le16_to_cpup(&cqe->status) >> 1;
Keith Busch0dfc70c2015-10-15 13:38:48 -0600596 bool requeue = false;
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200597 int error = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500598
Keith Buschedd10d32014-04-03 16:45:23 -0600599 if (unlikely(status)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700600 if (!(status & NVME_SC_DNR || blk_noretry_request(req))
601 && (jiffies - req->start_time) < req->timeout) {
Keith Buschc9d3bf82015-01-07 18:55:52 -0700602 unsigned long flags;
603
Keith Busch0dfc70c2015-10-15 13:38:48 -0600604 requeue = true;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700605 blk_mq_requeue_request(req);
Keith Buschc9d3bf82015-01-07 18:55:52 -0700606 spin_lock_irqsave(req->q->queue_lock, flags);
607 if (!blk_queue_stopped(req->q))
608 blk_mq_kick_requeue_list(req->q);
609 spin_unlock_irqrestore(req->q->queue_lock, flags);
Keith Busch0dfc70c2015-10-15 13:38:48 -0600610 goto release_iod;
Keith Buschedd10d32014-04-03 16:45:23 -0600611 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200612
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200613 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
Keith Busch17188bb2015-06-08 10:08:14 -0600614 if (cmd_rq->ctx == CMD_CTX_CANCELLED)
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200615 error = -EINTR;
616 else
617 error = status;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200618 } else {
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200619 error = nvme_error_status(status);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200620 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200621 }
622
Keith Buscha0a931d2015-05-22 12:28:31 -0600623 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
624 u32 result = le32_to_cpup(&cqe->result);
625 req->special = (void *)(uintptr_t)result;
626 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700627
628 if (cmd_rq->aborted)
Christoph Hellwige75ec752015-05-22 11:12:39 +0200629 dev_warn(nvmeq->dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700630 "completing aborted command with status:%04x\n",
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200631 error);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700632
Keith Busch0dfc70c2015-10-15 13:38:48 -0600633release_iod:
Keith Busche1e5e562015-02-19 13:39:03 -0700634 if (iod->nents) {
Christoph Hellwige75ec752015-05-22 11:12:39 +0200635 dma_unmap_sg(nvmeq->dev->dev, iod->sg, iod->nents,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700636 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Keith Busche1e5e562015-02-19 13:39:03 -0700637 if (blk_integrity_rq(req)) {
638 if (!rq_data_dir(req))
639 nvme_dif_remap(req, nvme_dif_complete);
Christoph Hellwige75ec752015-05-22 11:12:39 +0200640 dma_unmap_sg(nvmeq->dev->dev, iod->meta_sg, 1,
Keith Busche1e5e562015-02-19 13:39:03 -0700641 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
642 }
643 }
Keith Buschedd10d32014-04-03 16:45:23 -0600644 nvme_free_iod(nvmeq->dev, iod);
Keith Busch3291fa52014-04-28 12:30:52 -0600645
Keith Busch0dfc70c2015-10-15 13:38:48 -0600646 if (likely(!requeue))
647 blk_mq_complete_request(req, error);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500648}
649
Matthew Wilcox184d2942011-05-11 21:36:38 -0400650/* length is in bytes. gfp flags indicates whether we may sleep. */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200651static int nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod,
652 int total_len, gfp_t gfp)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500653{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500654 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500655 int length = total_len;
656 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500657 int dma_len = sg_dma_len(sg);
658 u64 dma_addr = sg_dma_address(sg);
Murali Iyerf137e0f2015-03-26 11:07:51 -0500659 u32 page_size = dev->page_size;
660 int offset = dma_addr & (page_size - 1);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500661 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500662 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500663 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500664 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500665
Keith Busch1d090622014-06-23 11:34:01 -0600666 length -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500667 if (length <= 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500668 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500669
Keith Busch1d090622014-06-23 11:34:01 -0600670 dma_len -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500671 if (dma_len) {
Keith Busch1d090622014-06-23 11:34:01 -0600672 dma_addr += (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500673 } else {
674 sg = sg_next(sg);
675 dma_addr = sg_dma_address(sg);
676 dma_len = sg_dma_len(sg);
677 }
678
Keith Busch1d090622014-06-23 11:34:01 -0600679 if (length <= page_size) {
Keith Buschedd10d32014-04-03 16:45:23 -0600680 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500681 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500682 }
683
Keith Busch1d090622014-06-23 11:34:01 -0600684 nprps = DIV_ROUND_UP(length, page_size);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500685 if (nprps <= (256 / 8)) {
686 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500687 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500688 } else {
689 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500690 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500691 }
692
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400693 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
694 if (!prp_list) {
Keith Buschedd10d32014-04-03 16:45:23 -0600695 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500696 iod->npages = -1;
Keith Busch1d090622014-06-23 11:34:01 -0600697 return (total_len - length) + page_size;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400698 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500699 list[0] = prp_list;
700 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500701 i = 0;
702 for (;;) {
Keith Busch1d090622014-06-23 11:34:01 -0600703 if (i == page_size >> 3) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500704 __le64 *old_prp_list = prp_list;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400705 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500706 if (!prp_list)
707 return total_len - length;
708 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400709 prp_list[0] = old_prp_list[i - 1];
710 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
711 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500712 }
713 prp_list[i++] = cpu_to_le64(dma_addr);
Keith Busch1d090622014-06-23 11:34:01 -0600714 dma_len -= page_size;
715 dma_addr += page_size;
716 length -= page_size;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500717 if (length <= 0)
718 break;
719 if (dma_len > 0)
720 continue;
721 BUG_ON(dma_len < 0);
722 sg = sg_next(sg);
723 dma_addr = sg_dma_address(sg);
724 dma_len = sg_dma_len(sg);
725 }
726
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500727 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500728}
729
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200730static void nvme_submit_priv(struct nvme_queue *nvmeq, struct request *req,
731 struct nvme_iod *iod)
732{
Jon Derrick498c4392015-07-20 10:14:08 -0600733 struct nvme_command cmnd;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200734
Jon Derrick498c4392015-07-20 10:14:08 -0600735 memcpy(&cmnd, req->cmd, sizeof(cmnd));
736 cmnd.rw.command_id = req->tag;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200737 if (req->nr_phys_segments) {
Jon Derrick498c4392015-07-20 10:14:08 -0600738 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
739 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200740 }
741
Jon Derrick498c4392015-07-20 10:14:08 -0600742 __nvme_submit_cmd(nvmeq, &cmnd);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200743}
744
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700745/*
746 * We reuse the small pool to allocate the 16-byte range here as it is not
747 * worth having a special pool for these or additional cases to handle freeing
748 * the iod.
749 */
750static void nvme_submit_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns,
751 struct request *req, struct nvme_iod *iod)
Keith Busch0e5e4f02012-11-09 16:33:05 -0700752{
Keith Buschedd10d32014-04-03 16:45:23 -0600753 struct nvme_dsm_range *range =
754 (struct nvme_dsm_range *)iod_list(iod)[0];
Jon Derrick498c4392015-07-20 10:14:08 -0600755 struct nvme_command cmnd;
Keith Busch0e5e4f02012-11-09 16:33:05 -0700756
Keith Busch0e5e4f02012-11-09 16:33:05 -0700757 range->cattr = cpu_to_le32(0);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700758 range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift);
759 range->slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
Keith Busch0e5e4f02012-11-09 16:33:05 -0700760
Jon Derrick498c4392015-07-20 10:14:08 -0600761 memset(&cmnd, 0, sizeof(cmnd));
762 cmnd.dsm.opcode = nvme_cmd_dsm;
763 cmnd.dsm.command_id = req->tag;
764 cmnd.dsm.nsid = cpu_to_le32(ns->ns_id);
765 cmnd.dsm.prp1 = cpu_to_le64(iod->first_dma);
766 cmnd.dsm.nr = 0;
767 cmnd.dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700768
Jon Derrick498c4392015-07-20 10:14:08 -0600769 __nvme_submit_cmd(nvmeq, &cmnd);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700770}
771
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700772static void nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500773 int cmdid)
774{
Jon Derrick498c4392015-07-20 10:14:08 -0600775 struct nvme_command cmnd;
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500776
Jon Derrick498c4392015-07-20 10:14:08 -0600777 memset(&cmnd, 0, sizeof(cmnd));
778 cmnd.common.opcode = nvme_cmd_flush;
779 cmnd.common.command_id = cmdid;
780 cmnd.common.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500781
Jon Derrick498c4392015-07-20 10:14:08 -0600782 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500783}
784
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700785static int nvme_submit_iod(struct nvme_queue *nvmeq, struct nvme_iod *iod,
786 struct nvme_ns *ns)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500787{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700788 struct request *req = iod_get_private(iod);
Jon Derrick498c4392015-07-20 10:14:08 -0600789 struct nvme_command cmnd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700790 u16 control = 0;
791 u32 dsmgmt = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500792
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700793 if (req->cmd_flags & REQ_FUA)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500794 control |= NVME_RW_FUA;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700795 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500796 control |= NVME_RW_LR;
797
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700798 if (req->cmd_flags & REQ_RAHEAD)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500799 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
800
Jon Derrick498c4392015-07-20 10:14:08 -0600801 memset(&cmnd, 0, sizeof(cmnd));
802 cmnd.rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
803 cmnd.rw.command_id = req->tag;
804 cmnd.rw.nsid = cpu_to_le32(ns->ns_id);
805 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
806 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
807 cmnd.rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
808 cmnd.rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500809
Alok Pandeye19b1272015-08-26 08:56:14 -0600810 if (ns->ms) {
Keith Busche1e5e562015-02-19 13:39:03 -0700811 switch (ns->pi_type) {
812 case NVME_NS_DPS_PI_TYPE3:
813 control |= NVME_RW_PRINFO_PRCHK_GUARD;
814 break;
815 case NVME_NS_DPS_PI_TYPE1:
816 case NVME_NS_DPS_PI_TYPE2:
817 control |= NVME_RW_PRINFO_PRCHK_GUARD |
818 NVME_RW_PRINFO_PRCHK_REF;
Jon Derrick498c4392015-07-20 10:14:08 -0600819 cmnd.rw.reftag = cpu_to_le32(
Keith Busche1e5e562015-02-19 13:39:03 -0700820 nvme_block_nr(ns, blk_rq_pos(req)));
821 break;
822 }
Alok Pandeye19b1272015-08-26 08:56:14 -0600823 if (blk_integrity_rq(req))
824 cmnd.rw.metadata =
825 cpu_to_le64(sg_dma_address(iod->meta_sg));
826 else
827 control |= NVME_RW_PRINFO_PRACT;
828 }
Keith Busche1e5e562015-02-19 13:39:03 -0700829
Jon Derrick498c4392015-07-20 10:14:08 -0600830 cmnd.rw.control = cpu_to_le16(control);
831 cmnd.rw.dsmgmt = cpu_to_le32(dsmgmt);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500832
Jon Derrick498c4392015-07-20 10:14:08 -0600833 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500834
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500835 return 0;
Keith Buschedd10d32014-04-03 16:45:23 -0600836}
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500837
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200838/*
839 * NOTE: ns is NULL when called on the admin queue.
840 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700841static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
842 const struct blk_mq_queue_data *bd)
Keith Busch53562be2014-04-29 11:41:29 -0600843{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700844 struct nvme_ns *ns = hctx->queue->queuedata;
845 struct nvme_queue *nvmeq = hctx->driver_data;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200846 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700847 struct request *req = bd->rq;
848 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
Keith Buschedd10d32014-04-03 16:45:23 -0600849 struct nvme_iod *iod;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700850 enum dma_data_direction dma_dir;
Keith Buschedd10d32014-04-03 16:45:23 -0600851
Keith Busche1e5e562015-02-19 13:39:03 -0700852 /*
853 * If formated with metadata, require the block layer provide a buffer
854 * unless this namespace is formated such that the metadata can be
855 * stripped/generated by the controller with PRACT=1.
856 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200857 if (ns && ns->ms && !blk_integrity_rq(req)) {
Keith Busch71feb362015-06-19 11:07:30 -0600858 if (!(ns->pi_type && ns->ms == 8) &&
859 req->cmd_type != REQ_TYPE_DRV_PRIV) {
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200860 blk_mq_complete_request(req, -EFAULT);
Keith Busche1e5e562015-02-19 13:39:03 -0700861 return BLK_MQ_RQ_QUEUE_OK;
862 }
863 }
864
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200865 iod = nvme_alloc_iod(req, dev, GFP_ATOMIC);
Keith Buschedd10d32014-04-03 16:45:23 -0600866 if (!iod)
Jens Axboefe543032014-12-11 13:58:39 -0700867 return BLK_MQ_RQ_QUEUE_BUSY;
Keith Buschedd10d32014-04-03 16:45:23 -0600868
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700869 if (req->cmd_flags & REQ_DISCARD) {
Keith Buschedd10d32014-04-03 16:45:23 -0600870 void *range;
871 /*
872 * We reuse the small pool to allocate the 16-byte range here
873 * as it is not worth having a special pool for these or
874 * additional cases to handle freeing the iod.
875 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200876 range = dma_pool_alloc(dev->prp_small_pool, GFP_ATOMIC,
Keith Buschedd10d32014-04-03 16:45:23 -0600877 &iod->first_dma);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700878 if (!range)
Jens Axboefe543032014-12-11 13:58:39 -0700879 goto retry_cmd;
Keith Buschedd10d32014-04-03 16:45:23 -0600880 iod_list(iod)[0] = (__le64 *)range;
881 iod->npages = 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700882 } else if (req->nr_phys_segments) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700883 dma_dir = rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Keith Buschedd10d32014-04-03 16:45:23 -0600884
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700885 sg_init_table(iod->sg, req->nr_phys_segments);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700886 iod->nents = blk_rq_map_sg(req->q, req, iod->sg);
Jens Axboefe543032014-12-11 13:58:39 -0700887 if (!iod->nents)
888 goto error_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700889
890 if (!dma_map_sg(nvmeq->q_dmadev, iod->sg, iod->nents, dma_dir))
Jens Axboefe543032014-12-11 13:58:39 -0700891 goto retry_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700892
Jens Axboefe543032014-12-11 13:58:39 -0700893 if (blk_rq_bytes(req) !=
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200894 nvme_setup_prps(dev, iod, blk_rq_bytes(req), GFP_ATOMIC)) {
895 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
Jens Axboefe543032014-12-11 13:58:39 -0700896 goto retry_cmd;
897 }
Keith Busche1e5e562015-02-19 13:39:03 -0700898 if (blk_integrity_rq(req)) {
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200899 if (blk_rq_count_integrity_sg(req->q, req->bio) != 1) {
900 dma_unmap_sg(dev->dev, iod->sg, iod->nents,
901 dma_dir);
Keith Busche1e5e562015-02-19 13:39:03 -0700902 goto error_cmd;
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200903 }
Keith Busche1e5e562015-02-19 13:39:03 -0700904
905 sg_init_table(iod->meta_sg, 1);
906 if (blk_rq_map_integrity_sg(
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200907 req->q, req->bio, iod->meta_sg) != 1) {
908 dma_unmap_sg(dev->dev, iod->sg, iod->nents,
909 dma_dir);
Keith Busche1e5e562015-02-19 13:39:03 -0700910 goto error_cmd;
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200911 }
Keith Busche1e5e562015-02-19 13:39:03 -0700912
913 if (rq_data_dir(req))
914 nvme_dif_remap(req, nvme_dif_prep);
915
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200916 if (!dma_map_sg(nvmeq->q_dmadev, iod->meta_sg, 1, dma_dir)) {
917 dma_unmap_sg(dev->dev, iod->sg, iod->nents,
918 dma_dir);
Keith Busche1e5e562015-02-19 13:39:03 -0700919 goto error_cmd;
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200920 }
Keith Busche1e5e562015-02-19 13:39:03 -0700921 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700922 }
923
Keith Busch9af87852014-12-03 17:07:13 -0700924 nvme_set_info(cmd, iod, req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700925 spin_lock_irq(&nvmeq->q_lock);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200926 if (req->cmd_type == REQ_TYPE_DRV_PRIV)
927 nvme_submit_priv(nvmeq, req, iod);
928 else if (req->cmd_flags & REQ_DISCARD)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700929 nvme_submit_discard(nvmeq, ns, req, iod);
930 else if (req->cmd_flags & REQ_FLUSH)
931 nvme_submit_flush(nvmeq, ns, req->tag);
932 else
933 nvme_submit_iod(nvmeq, iod, ns);
934
935 nvme_process_cq(nvmeq);
936 spin_unlock_irq(&nvmeq->q_lock);
937 return BLK_MQ_RQ_QUEUE_OK;
938
Jens Axboefe543032014-12-11 13:58:39 -0700939 error_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200940 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700941 return BLK_MQ_RQ_QUEUE_ERROR;
942 retry_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200943 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700944 return BLK_MQ_RQ_QUEUE_BUSY;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500945}
946
Jens Axboea0fa9642015-11-03 20:37:26 -0700947static void __nvme_process_cq(struct nvme_queue *nvmeq, unsigned int *tag)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500948{
Matthew Wilcox82123462011-01-20 13:24:06 -0500949 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500950
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500951 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500952 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500953
954 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400955 void *ctx;
956 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500957 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -0500958 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500959 break;
960 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
961 if (++head == nvmeq->q_depth) {
962 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500963 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500964 }
Jens Axboea0fa9642015-11-03 20:37:26 -0700965 if (tag && *tag == cqe.command_id)
966 *tag = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700967 ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn);
Keith Buschedd10d32014-04-03 16:45:23 -0600968 fn(nvmeq, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500969 }
970
971 /* If the controller ignores the cq head doorbell and continuously
972 * writes to the queue, it is theoretically possible to wrap around
973 * the queue twice and mistakenly return IRQ_NONE. Linux only
974 * requires that 0.1% of your interrupts are handled, so this isn't
975 * a big problem.
976 */
Matthew Wilcox82123462011-01-20 13:24:06 -0500977 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Jens Axboea0fa9642015-11-03 20:37:26 -0700978 return;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500979
Keith Busch604e8c82015-11-20 08:38:13 -0700980 if (likely(nvmeq->cq_vector >= 0))
981 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500982 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500983 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500984
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400985 nvmeq->cqe_seen = 1;
Jens Axboea0fa9642015-11-03 20:37:26 -0700986}
987
988static void nvme_process_cq(struct nvme_queue *nvmeq)
989{
990 __nvme_process_cq(nvmeq, NULL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500991}
992
993static irqreturn_t nvme_irq(int irq, void *data)
994{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500995 irqreturn_t result;
996 struct nvme_queue *nvmeq = data;
997 spin_lock(&nvmeq->q_lock);
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400998 nvme_process_cq(nvmeq);
999 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
1000 nvmeq->cqe_seen = 0;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001001 spin_unlock(&nvmeq->q_lock);
1002 return result;
1003}
1004
1005static irqreturn_t nvme_irq_check(int irq, void *data)
1006{
1007 struct nvme_queue *nvmeq = data;
1008 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
1009 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
1010 return IRQ_NONE;
1011 return IRQ_WAKE_THREAD;
1012}
1013
Jens Axboea0fa9642015-11-03 20:37:26 -07001014static int nvme_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag)
1015{
1016 struct nvme_queue *nvmeq = hctx->driver_data;
1017
1018 if ((le16_to_cpu(nvmeq->cqes[nvmeq->cq_head].status) & 1) ==
1019 nvmeq->cq_phase) {
1020 spin_lock_irq(&nvmeq->q_lock);
1021 __nvme_process_cq(nvmeq, &tag);
1022 spin_unlock_irq(&nvmeq->q_lock);
1023
1024 if (tag == -1)
1025 return 1;
1026 }
1027
1028 return 0;
1029}
1030
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001031/*
1032 * Returns 0 on success. If the result is negative, it's a Linux error code;
1033 * if the result is positive, it's an NVM Express status code
1034 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001035int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1036 void *buffer, void __user *ubuffer, unsigned bufflen,
1037 u32 *result, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001038{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001039 bool write = cmd->common.opcode & 1;
1040 struct bio *bio = NULL;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001041 struct request *req;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001042 int ret;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001043
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001044 req = blk_mq_alloc_request(q, write, GFP_KERNEL, false);
Christoph Hellwigf705f832015-05-22 11:12:38 +02001045 if (IS_ERR(req))
1046 return PTR_ERR(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001047
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001048 req->cmd_type = REQ_TYPE_DRV_PRIV;
Matias Bjørlinge112af02015-06-05 14:54:24 +02001049 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001050 req->__data_len = 0;
1051 req->__sector = (sector_t) -1;
1052 req->bio = req->biotail = NULL;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001053
Keith Buschf4ff4142015-05-28 09:48:54 -06001054 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001055
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001056 req->cmd = (unsigned char *)cmd;
1057 req->cmd_len = sizeof(struct nvme_command);
Keith Buscha0a931d2015-05-22 12:28:31 -06001058 req->special = (void *)0;
Matthew Wilcox3c0cf132011-02-04 16:03:56 -05001059
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001060 if (buffer && bufflen) {
Mel Gorman71baba42015-11-06 16:28:28 -08001061 ret = blk_rq_map_kern(q, req, buffer, bufflen,
1062 __GFP_DIRECT_RECLAIM);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001063 if (ret)
1064 goto out;
1065 } else if (ubuffer && bufflen) {
Mel Gorman71baba42015-11-06 16:28:28 -08001066 ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen,
1067 __GFP_DIRECT_RECLAIM);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001068 if (ret)
1069 goto out;
1070 bio = req->bio;
1071 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001072
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001073 blk_execute_rq(req->q, NULL, req, 0);
1074 if (bio)
1075 blk_rq_unmap_user(bio);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001076 if (result)
Keith Buscha0a931d2015-05-22 12:28:31 -06001077 *result = (u32)(uintptr_t)req->special;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001078 ret = req->errors;
1079 out:
Christoph Hellwigf705f832015-05-22 11:12:38 +02001080 blk_mq_free_request(req);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001081 return ret;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001082}
1083
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001084int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1085 void *buffer, unsigned bufflen)
Christoph Hellwigf705f832015-05-22 11:12:38 +02001086{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001087 return __nvme_submit_sync_cmd(q, cmd, buffer, NULL, bufflen, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001088}
1089
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001090static int nvme_submit_async_admin_req(struct nvme_dev *dev)
1091{
1092 struct nvme_queue *nvmeq = dev->queues[0];
1093 struct nvme_command c;
1094 struct nvme_cmd_info *cmd_info;
1095 struct request *req;
1096
Keith Busch1efccc92015-03-31 10:37:17 -06001097 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC, true);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001098 if (IS_ERR(req))
1099 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001100
Keith Buschc917dfe2015-01-07 18:55:48 -07001101 req->cmd_flags |= REQ_NO_TIMEOUT;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001102 cmd_info = blk_mq_rq_to_pdu(req);
Keith Busch1efccc92015-03-31 10:37:17 -06001103 nvme_set_info(cmd_info, NULL, async_req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001104
1105 memset(&c, 0, sizeof(c));
1106 c.common.opcode = nvme_admin_async_event;
1107 c.common.command_id = req->tag;
1108
Keith Busch42483222015-06-01 09:29:54 -06001109 blk_mq_free_request(req);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301110 __nvme_submit_cmd(nvmeq, &c);
1111 return 0;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001112}
1113
1114static int nvme_submit_admin_async_cmd(struct nvme_dev *dev,
Keith Busch4d115422013-12-10 13:10:40 -07001115 struct nvme_command *cmd,
1116 struct async_cmd_info *cmdinfo, unsigned timeout)
1117{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001118 struct nvme_queue *nvmeq = dev->queues[0];
1119 struct request *req;
1120 struct nvme_cmd_info *cmd_rq;
Keith Busch4d115422013-12-10 13:10:40 -07001121
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001122 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001123 if (IS_ERR(req))
1124 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001125
1126 req->timeout = timeout;
1127 cmd_rq = blk_mq_rq_to_pdu(req);
1128 cmdinfo->req = req;
1129 nvme_set_info(cmd_rq, cmdinfo, async_completion);
Keith Busch4d115422013-12-10 13:10:40 -07001130 cmdinfo->status = -EINTR;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001131
1132 cmd->common.command_id = req->tag;
1133
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301134 nvme_submit_cmd(nvmeq, cmd);
1135 return 0;
Keith Busch4d115422013-12-10 13:10:40 -07001136}
1137
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001138static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
1139{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001140 struct nvme_command c;
1141
1142 memset(&c, 0, sizeof(c));
1143 c.delete_queue.opcode = opcode;
1144 c.delete_queue.qid = cpu_to_le16(id);
1145
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001146 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001147}
1148
1149static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
1150 struct nvme_queue *nvmeq)
1151{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001152 struct nvme_command c;
1153 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
1154
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001155 /*
1156 * Note: we (ab)use the fact the the prp fields survive if no data
1157 * is attached to the request.
1158 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001159 memset(&c, 0, sizeof(c));
1160 c.create_cq.opcode = nvme_admin_create_cq;
1161 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1162 c.create_cq.cqid = cpu_to_le16(qid);
1163 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1164 c.create_cq.cq_flags = cpu_to_le16(flags);
1165 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
1166
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001167 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001168}
1169
1170static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1171 struct nvme_queue *nvmeq)
1172{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001173 struct nvme_command c;
1174 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
1175
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001176 /*
1177 * Note: we (ab)use the fact the the prp fields survive if no data
1178 * is attached to the request.
1179 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001180 memset(&c, 0, sizeof(c));
1181 c.create_sq.opcode = nvme_admin_create_sq;
1182 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1183 c.create_sq.sqid = cpu_to_le16(qid);
1184 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1185 c.create_sq.sq_flags = cpu_to_le16(flags);
1186 c.create_sq.cqid = cpu_to_le16(qid);
1187
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001188 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001189}
1190
1191static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1192{
1193 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1194}
1195
1196static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1197{
1198 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1199}
1200
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001201int nvme_identify_ctrl(struct nvme_dev *dev, struct nvme_id_ctrl **id)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001202{
Andrew Mortone44ac582015-06-27 12:20:34 -06001203 struct nvme_command c = { };
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001204 int error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001205
Andrew Mortone44ac582015-06-27 12:20:34 -06001206 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1207 c.identify.opcode = nvme_admin_identify;
1208 c.identify.cns = cpu_to_le32(1);
1209
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001210 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
1211 if (!*id)
1212 return -ENOMEM;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001213
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001214 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1215 sizeof(struct nvme_id_ctrl));
1216 if (error)
1217 kfree(*id);
1218 return error;
1219}
1220
1221int nvme_identify_ns(struct nvme_dev *dev, unsigned nsid,
1222 struct nvme_id_ns **id)
1223{
Andrew Mortone44ac582015-06-27 12:20:34 -06001224 struct nvme_command c = { };
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001225 int error;
1226
Andrew Mortone44ac582015-06-27 12:20:34 -06001227 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1228 c.identify.opcode = nvme_admin_identify,
1229 c.identify.nsid = cpu_to_le32(nsid),
1230
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001231 *id = kmalloc(sizeof(struct nvme_id_ns), GFP_KERNEL);
1232 if (!*id)
1233 return -ENOMEM;
1234
1235 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1236 sizeof(struct nvme_id_ns));
1237 if (error)
1238 kfree(*id);
1239 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001240}
1241
Vishal Verma5d0f6132013-03-04 18:40:58 -07001242int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid,
Keith Busch08df1e02012-09-21 10:52:13 -06001243 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001244{
1245 struct nvme_command c;
1246
1247 memset(&c, 0, sizeof(c));
1248 c.features.opcode = nvme_admin_get_features;
Keith Buscha42cecc2012-07-25 16:06:38 -06001249 c.features.nsid = cpu_to_le32(nsid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001250 c.features.prp1 = cpu_to_le64(dma_addr);
1251 c.features.fid = cpu_to_le32(fid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001252
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001253 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1254 result, 0);
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001255}
1256
Vishal Verma5d0f6132013-03-04 18:40:58 -07001257int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11,
1258 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001259{
1260 struct nvme_command c;
1261
1262 memset(&c, 0, sizeof(c));
1263 c.features.opcode = nvme_admin_set_features;
1264 c.features.prp1 = cpu_to_le64(dma_addr);
1265 c.features.fid = cpu_to_le32(fid);
1266 c.features.dword11 = cpu_to_le32(dword11);
1267
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001268 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1269 result, 0);
1270}
1271
1272int nvme_get_log_page(struct nvme_dev *dev, struct nvme_smart_log **log)
1273{
Andrew Mortone44ac582015-06-27 12:20:34 -06001274 struct nvme_command c = { };
1275 int error;
1276
1277 c.common.opcode = nvme_admin_get_log_page,
1278 c.common.nsid = cpu_to_le32(0xFFFFFFFF),
1279 c.common.cdw10[0] = cpu_to_le32(
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001280 (((sizeof(struct nvme_smart_log) / 4) - 1) << 16) |
1281 NVME_LOG_SMART),
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001282
1283 *log = kmalloc(sizeof(struct nvme_smart_log), GFP_KERNEL);
1284 if (!*log)
1285 return -ENOMEM;
1286
1287 error = nvme_submit_sync_cmd(dev->admin_q, &c, *log,
1288 sizeof(struct nvme_smart_log));
1289 if (error)
1290 kfree(*log);
1291 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001292}
1293
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001294/**
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001295 * nvme_abort_req - Attempt aborting a request
Keith Buschc30341d2013-12-10 13:10:38 -07001296 *
1297 * Schedule controller reset if the command was already aborted once before and
1298 * still hasn't been returned to the driver, or if this is the admin queue.
1299 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001300static void nvme_abort_req(struct request *req)
Keith Buschc30341d2013-12-10 13:10:38 -07001301{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001302 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
1303 struct nvme_queue *nvmeq = cmd_rq->nvmeq;
Keith Buschc30341d2013-12-10 13:10:38 -07001304 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001305 struct request *abort_req;
1306 struct nvme_cmd_info *abort_cmd;
1307 struct nvme_command cmd;
Keith Buschc30341d2013-12-10 13:10:38 -07001308
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001309 if (!nvmeq->qid || cmd_rq->aborted) {
Christoph Hellwig906678922015-10-02 18:49:23 +02001310 spin_lock(&dev_list_lock);
1311 if (!__nvme_reset(dev)) {
1312 dev_warn(dev->dev,
1313 "I/O %d QID %d timeout, reset controller\n",
1314 req->tag, nvmeq->qid);
1315 }
1316 spin_unlock(&dev_list_lock);
Keith Buschc30341d2013-12-10 13:10:38 -07001317 return;
1318 }
1319
1320 if (!dev->abort_limit)
1321 return;
1322
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001323 abort_req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC,
1324 false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001325 if (IS_ERR(abort_req))
Keith Buschc30341d2013-12-10 13:10:38 -07001326 return;
1327
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001328 abort_cmd = blk_mq_rq_to_pdu(abort_req);
1329 nvme_set_info(abort_cmd, abort_req, abort_completion);
1330
Keith Buschc30341d2013-12-10 13:10:38 -07001331 memset(&cmd, 0, sizeof(cmd));
1332 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001333 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001334 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001335 cmd.abort.command_id = abort_req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001336
1337 --dev->abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001338 cmd_rq->aborted = 1;
Keith Buschc30341d2013-12-10 13:10:38 -07001339
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001340 dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag,
Keith Buschc30341d2013-12-10 13:10:38 -07001341 nvmeq->qid);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301342 nvme_submit_cmd(dev->queues[0], &cmd);
Keith Buschc30341d2013-12-10 13:10:38 -07001343}
1344
Keith Busch42483222015-06-01 09:29:54 -06001345static void nvme_cancel_queue_ios(struct request *req, void *data, bool reserved)
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001346{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001347 struct nvme_queue *nvmeq = data;
1348 void *ctx;
1349 nvme_completion_fn fn;
1350 struct nvme_cmd_info *cmd;
Keith Buschcef6a942015-01-07 18:55:51 -07001351 struct nvme_completion cqe;
1352
1353 if (!blk_mq_request_started(req))
1354 return;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001355
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001356 cmd = blk_mq_rq_to_pdu(req);
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001357
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001358 if (cmd->ctx == CMD_CTX_CANCELLED)
1359 return;
1360
Keith Buschcef6a942015-01-07 18:55:51 -07001361 if (blk_queue_dying(req->q))
1362 cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1);
1363 else
1364 cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
1365
1366
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001367 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n",
1368 req->tag, nvmeq->qid);
1369 ctx = cancel_cmd_info(cmd, &fn);
1370 fn(nvmeq, ctx, &cqe);
1371}
1372
1373static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1374{
1375 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
1376 struct nvme_queue *nvmeq = cmd->nvmeq;
1377
Keith Busch07836e62015-02-19 10:34:48 -07001378 dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag,
1379 nvmeq->qid);
1380 spin_lock_irq(&nvmeq->q_lock);
1381 nvme_abort_req(req);
1382 spin_unlock_irq(&nvmeq->q_lock);
1383
Keith Busch7a509a62015-01-07 18:55:53 -07001384 /*
1385 * The aborted req will be completed on receiving the abort req.
1386 * We enable the timer again. If hit twice, it'll cause a device reset,
1387 * as the device then is in a faulty state.
1388 */
Keith Busch07836e62015-02-19 10:34:48 -07001389 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001390}
1391
Keith Buschf435c282014-07-07 09:14:42 -06001392static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001393{
1394 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1395 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001396 if (nvmeq->sq_cmds)
1397 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
Matthew Wilcox9e866772012-08-03 13:55:56 -04001398 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1399 kfree(nvmeq);
1400}
1401
Keith Buscha1a5ef92013-12-16 13:50:00 -05001402static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001403{
1404 int i;
1405
Keith Buscha1a5ef92013-12-16 13:50:00 -05001406 for (i = dev->queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001407 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch22404272013-07-15 15:02:20 -06001408 dev->queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001409 dev->queues[i] = NULL;
Keith Buschf435c282014-07-07 09:14:42 -06001410 nvme_free_queue(nvmeq);
kaoudis121c7ad2015-01-14 21:01:58 -07001411 }
Keith Busch22404272013-07-15 15:02:20 -06001412}
1413
Keith Busch4d115422013-12-10 13:10:40 -07001414/**
1415 * nvme_suspend_queue - put queue into suspended state
1416 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001417 */
1418static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001419{
Keith Busch2b25d982014-12-22 12:59:04 -07001420 int vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001421
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001422 spin_lock_irq(&nvmeq->q_lock);
Keith Busch2b25d982014-12-22 12:59:04 -07001423 if (nvmeq->cq_vector == -1) {
1424 spin_unlock_irq(&nvmeq->q_lock);
1425 return 1;
1426 }
1427 vector = nvmeq->dev->entry[nvmeq->cq_vector].vector;
Keith Busch42f61422014-03-24 10:46:25 -06001428 nvmeq->dev->online_queues--;
Keith Busch2b25d982014-12-22 12:59:04 -07001429 nvmeq->cq_vector = -1;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001430 spin_unlock_irq(&nvmeq->q_lock);
1431
Keith Busch6df3dbc2015-03-26 13:49:33 -06001432 if (!nvmeq->qid && nvmeq->dev->admin_q)
1433 blk_mq_freeze_queue_start(nvmeq->dev->admin_q);
1434
Matthew Wilcoxaba20802011-03-27 08:52:06 -04001435 irq_set_affinity_hint(vector, NULL);
1436 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001437
Keith Busch4d115422013-12-10 13:10:40 -07001438 return 0;
1439}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001440
Keith Busch4d115422013-12-10 13:10:40 -07001441static void nvme_clear_queue(struct nvme_queue *nvmeq)
1442{
Keith Busch22404272013-07-15 15:02:20 -06001443 spin_lock_irq(&nvmeq->q_lock);
Keith Busch42483222015-06-01 09:29:54 -06001444 if (nvmeq->tags && *nvmeq->tags)
1445 blk_mq_all_tag_busy_iter(*nvmeq->tags, nvme_cancel_queue_ios, nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001446 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001447}
1448
Keith Busch4d115422013-12-10 13:10:40 -07001449static void nvme_disable_queue(struct nvme_dev *dev, int qid)
1450{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001451 struct nvme_queue *nvmeq = dev->queues[qid];
Keith Busch4d115422013-12-10 13:10:40 -07001452
1453 if (!nvmeq)
1454 return;
1455 if (nvme_suspend_queue(nvmeq))
1456 return;
1457
Keith Busch0e53d182013-12-10 13:10:39 -07001458 /* Don't tell the adapter to delete the admin queue.
1459 * Don't tell a removed adapter to delete IO queues. */
1460 if (qid && readl(&dev->bar->csts) != -1) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001461 adapter_delete_sq(dev, qid);
1462 adapter_delete_cq(dev, qid);
1463 }
Keith Busch07836e62015-02-19 10:34:48 -07001464
1465 spin_lock_irq(&nvmeq->q_lock);
1466 nvme_process_cq(nvmeq);
1467 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001468}
1469
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001470static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1471 int entry_size)
1472{
1473 int q_depth = dev->q_depth;
1474 unsigned q_size_aligned = roundup(q_depth * entry_size, dev->page_size);
1475
1476 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
Jon Derrickc45f5c92015-07-21 15:08:13 -06001477 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
1478 mem_per_q = round_down(mem_per_q, dev->page_size);
1479 q_depth = div_u64(mem_per_q, entry_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001480
1481 /*
1482 * Ensure the reduced q_depth is above some threshold where it
1483 * would be better to map queues in system memory with the
1484 * original depth
1485 */
1486 if (q_depth < 64)
1487 return -ENOMEM;
1488 }
1489
1490 return q_depth;
1491}
1492
1493static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1494 int qid, int depth)
1495{
1496 if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) {
1497 unsigned offset = (qid - 1) *
1498 roundup(SQ_SIZE(depth), dev->page_size);
1499 nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset;
1500 nvmeq->sq_cmds_io = dev->cmb + offset;
1501 } else {
1502 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1503 &nvmeq->sq_dma_addr, GFP_KERNEL);
1504 if (!nvmeq->sq_cmds)
1505 return -ENOMEM;
1506 }
1507
1508 return 0;
1509}
1510
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001511static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
Keith Busch2b25d982014-12-22 12:59:04 -07001512 int depth)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001513{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001514 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001515 if (!nvmeq)
1516 return NULL;
1517
Christoph Hellwige75ec752015-05-22 11:12:39 +02001518 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
Joe Perches4d51abf2014-06-15 13:37:33 -07001519 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001520 if (!nvmeq->cqes)
1521 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001522
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001523 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001524 goto free_cqdma;
1525
Christoph Hellwige75ec752015-05-22 11:12:39 +02001526 nvmeq->q_dmadev = dev->dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001527 nvmeq->dev = dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001528 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
1529 dev->instance, qid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001530 spin_lock_init(&nvmeq->q_lock);
1531 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001532 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001533 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001534 nvmeq->q_depth = depth;
Keith Buschc30341d2013-12-10 13:10:38 -07001535 nvmeq->qid = qid;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001536 nvmeq->cq_vector = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001537 dev->queues[qid] = nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001538
Jon Derrick36a7e992015-05-27 12:26:23 -06001539 /* make sure queue descriptor is set before queue count, for kthread */
1540 mb();
1541 dev->queue_count++;
1542
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001543 return nvmeq;
1544
1545 free_cqdma:
Christoph Hellwige75ec752015-05-22 11:12:39 +02001546 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001547 nvmeq->cq_dma_addr);
1548 free_nvmeq:
1549 kfree(nvmeq);
1550 return NULL;
1551}
1552
Matthew Wilcox30010822011-01-20 09:10:15 -05001553static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1554 const char *name)
1555{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001556 if (use_threaded_interrupts)
1557 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001558 nvme_irq_check, nvme_irq, IRQF_SHARED,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001559 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001560 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001561 IRQF_SHARED, name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001562}
1563
Keith Busch22404272013-07-15 15:02:20 -06001564static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001565{
Keith Busch22404272013-07-15 15:02:20 -06001566 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001567
Keith Busch7be50e92014-09-10 15:48:47 -06001568 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001569 nvmeq->sq_tail = 0;
1570 nvmeq->cq_head = 0;
1571 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001572 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001573 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Keith Busch42f61422014-03-24 10:46:25 -06001574 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001575 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001576}
1577
1578static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1579{
1580 struct nvme_dev *dev = nvmeq->dev;
1581 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001582
Keith Busch2b25d982014-12-22 12:59:04 -07001583 nvmeq->cq_vector = qid - 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001584 result = adapter_alloc_cq(dev, qid, nvmeq);
1585 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001586 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001587
1588 result = adapter_alloc_sq(dev, qid, nvmeq);
1589 if (result < 0)
1590 goto release_cq;
1591
Matthew Wilcox3193f072014-01-27 15:57:22 -05001592 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001593 if (result < 0)
1594 goto release_sq;
1595
Keith Busch22404272013-07-15 15:02:20 -06001596 nvme_init_queue(nvmeq, qid);
Keith Busch22404272013-07-15 15:02:20 -06001597 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001598
1599 release_sq:
1600 adapter_delete_sq(dev, qid);
1601 release_cq:
1602 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001603 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001604}
1605
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001606static int nvme_wait_ready(struct nvme_dev *dev, u64 cap, bool enabled)
1607{
1608 unsigned long timeout;
1609 u32 bit = enabled ? NVME_CSTS_RDY : 0;
1610
1611 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1612
1613 while ((readl(&dev->bar->csts) & NVME_CSTS_RDY) != bit) {
1614 msleep(100);
1615 if (fatal_signal_pending(current))
1616 return -EINTR;
1617 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001618 dev_err(dev->dev,
Matthew Wilcox27e81662014-04-11 11:58:45 -04001619 "Device not ready; aborting %s\n", enabled ?
1620 "initialisation" : "reset");
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001621 return -ENODEV;
1622 }
1623 }
1624
1625 return 0;
1626}
1627
1628/*
1629 * If the device has been passed off to us in an enabled state, just clear
1630 * the enabled bit. The spec says we should set the 'shutdown notification
1631 * bits', but doing so may cause the device to complete commands to the
1632 * admin queue ... and we don't know what memory that might be pointing at!
1633 */
1634static int nvme_disable_ctrl(struct nvme_dev *dev, u64 cap)
1635{
Dan McLeran01079522014-06-23 08:24:36 -06001636 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1637 dev->ctrl_config &= ~NVME_CC_ENABLE;
1638 writel(dev->ctrl_config, &dev->bar->cc);
Matthew Wilcox44af1462013-05-04 06:43:17 -04001639
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001640 return nvme_wait_ready(dev, cap, false);
1641}
1642
1643static int nvme_enable_ctrl(struct nvme_dev *dev, u64 cap)
1644{
Dan McLeran01079522014-06-23 08:24:36 -06001645 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1646 dev->ctrl_config |= NVME_CC_ENABLE;
1647 writel(dev->ctrl_config, &dev->bar->cc);
1648
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001649 return nvme_wait_ready(dev, cap, true);
1650}
1651
Keith Busch1894d8f2013-07-15 15:02:22 -06001652static int nvme_shutdown_ctrl(struct nvme_dev *dev)
1653{
1654 unsigned long timeout;
Keith Busch1894d8f2013-07-15 15:02:22 -06001655
Dan McLeran01079522014-06-23 08:24:36 -06001656 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1657 dev->ctrl_config |= NVME_CC_SHN_NORMAL;
1658
1659 writel(dev->ctrl_config, &dev->bar->cc);
Keith Busch1894d8f2013-07-15 15:02:22 -06001660
Dan McLeran2484f402014-07-01 09:33:32 -06001661 timeout = SHUTDOWN_TIMEOUT + jiffies;
Keith Busch1894d8f2013-07-15 15:02:22 -06001662 while ((readl(&dev->bar->csts) & NVME_CSTS_SHST_MASK) !=
1663 NVME_CSTS_SHST_CMPLT) {
1664 msleep(100);
1665 if (fatal_signal_pending(current))
1666 return -EINTR;
1667 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001668 dev_err(dev->dev,
Keith Busch1894d8f2013-07-15 15:02:22 -06001669 "Device shutdown incomplete; abort shutdown\n");
1670 return -ENODEV;
1671 }
1672 }
1673
1674 return 0;
1675}
1676
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001677static struct blk_mq_ops nvme_mq_admin_ops = {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001678 .queue_rq = nvme_queue_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001679 .map_queue = blk_mq_map_queue,
1680 .init_hctx = nvme_admin_init_hctx,
Keith Busch4af0e212015-06-08 10:08:13 -06001681 .exit_hctx = nvme_admin_exit_hctx,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001682 .init_request = nvme_admin_init_request,
1683 .timeout = nvme_timeout,
1684};
1685
1686static struct blk_mq_ops nvme_mq_ops = {
1687 .queue_rq = nvme_queue_rq,
1688 .map_queue = blk_mq_map_queue,
1689 .init_hctx = nvme_init_hctx,
1690 .init_request = nvme_init_request,
1691 .timeout = nvme_timeout,
Jens Axboea0fa9642015-11-03 20:37:26 -07001692 .poll = nvme_poll,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001693};
1694
Keith Buschea191d22015-01-07 18:55:49 -07001695static void nvme_dev_remove_admin(struct nvme_dev *dev)
1696{
1697 if (dev->admin_q && !blk_queue_dying(dev->admin_q)) {
1698 blk_cleanup_queue(dev->admin_q);
1699 blk_mq_free_tag_set(&dev->admin_tagset);
1700 }
1701}
1702
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001703static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1704{
1705 if (!dev->admin_q) {
1706 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1707 dev->admin_tagset.nr_hw_queues = 1;
1708 dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1;
Keith Busch1efccc92015-03-31 10:37:17 -06001709 dev->admin_tagset.reserved_tags = 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001710 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001711 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
Jens Axboeac3dd5b2015-01-22 12:07:58 -07001712 dev->admin_tagset.cmd_size = nvme_cmd_size(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001713 dev->admin_tagset.driver_data = dev;
1714
1715 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1716 return -ENOMEM;
1717
1718 dev->admin_q = blk_mq_init_queue(&dev->admin_tagset);
Ming Lei35b489d2015-01-02 14:25:27 +00001719 if (IS_ERR(dev->admin_q)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001720 blk_mq_free_tag_set(&dev->admin_tagset);
1721 return -ENOMEM;
1722 }
Keith Buschea191d22015-01-07 18:55:49 -07001723 if (!blk_get_queue(dev->admin_q)) {
1724 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06001725 dev->admin_q = NULL;
Keith Buschea191d22015-01-07 18:55:49 -07001726 return -ENODEV;
1727 }
Keith Busch0fb59cb2015-01-07 18:55:50 -07001728 } else
1729 blk_mq_unfreeze_queue(dev->admin_q);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001730
1731 return 0;
1732}
1733
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001734static int nvme_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001735{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001736 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001737 u32 aqa;
Stephan Günthera310acd2015-11-07 18:07:02 -07001738 u64 cap = lo_hi_readq(&dev->bar->cap);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001739 struct nvme_queue *nvmeq;
Nishanth Aravamudanc5c9f252015-11-24 09:55:05 -07001740 /*
1741 * default to a 4K page size, with the intention to update this
1742 * path in the future to accomodate architectures with differing
1743 * kernel and IO page sizes.
1744 */
1745 unsigned page_shift = 12;
Keith Busch1d090622014-06-23 11:34:01 -06001746 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12;
Keith Busch1d090622014-06-23 11:34:01 -06001747
1748 if (page_shift < dev_page_min) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001749 dev_err(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001750 "Minimum device page size (%u) too large for "
1751 "host (%u)\n", 1 << dev_page_min,
1752 1 << page_shift);
1753 return -ENODEV;
1754 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001755
Keith Buschdfbac8c2015-08-10 15:20:40 -06001756 dev->subsystem = readl(&dev->bar->vs) >= NVME_VS(1, 1) ?
1757 NVME_CAP_NSSRC(cap) : 0;
1758
1759 if (dev->subsystem && (readl(&dev->bar->csts) & NVME_CSTS_NSSRO))
1760 writel(NVME_CSTS_NSSRO, &dev->bar->csts);
1761
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001762 result = nvme_disable_ctrl(dev, cap);
1763 if (result < 0)
1764 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001765
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001766 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001767 if (!nvmeq) {
Keith Busch2b25d982014-12-22 12:59:04 -07001768 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
Keith Buschcd638942013-07-15 15:02:23 -06001769 if (!nvmeq)
1770 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001771 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001772
1773 aqa = nvmeq->q_depth - 1;
1774 aqa |= aqa << 16;
1775
Keith Busch1d090622014-06-23 11:34:01 -06001776 dev->page_size = 1 << page_shift;
1777
Dan McLeran01079522014-06-23 08:24:36 -06001778 dev->ctrl_config = NVME_CC_CSS_NVM;
Keith Busch1d090622014-06-23 11:34:01 -06001779 dev->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001780 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -04001781 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001782
1783 writel(aqa, &dev->bar->aqa);
Stephan Günthera310acd2015-11-07 18:07:02 -07001784 lo_hi_writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1785 lo_hi_writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001786
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001787 result = nvme_enable_ctrl(dev, cap);
Keith Busch025c5572013-05-01 13:07:51 -06001788 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001789 goto free_nvmeq;
1790
Keith Busch2b25d982014-12-22 12:59:04 -07001791 nvmeq->cq_vector = 0;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001792 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001793 if (result) {
1794 nvmeq->cq_vector = -1;
Keith Busch0fb59cb2015-01-07 18:55:50 -07001795 goto free_nvmeq;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001796 }
Keith Busch025c5572013-05-01 13:07:51 -06001797
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001798 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001799
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001800 free_nvmeq:
1801 nvme_free_queues(dev, 0);
1802 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001803}
1804
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001805static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1806{
1807 struct nvme_dev *dev = ns->dev;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001808 struct nvme_user_io io;
1809 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001810 unsigned length, meta_len;
Keith Buscha67a9512015-04-07 16:57:19 -06001811 int status, write;
Keith Buscha67a9512015-04-07 16:57:19 -06001812 dma_addr_t meta_dma = 0;
1813 void *meta = NULL;
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001814 void __user *metadata;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001815
1816 if (copy_from_user(&io, uio, sizeof(io)))
1817 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001818
1819 switch (io.opcode) {
1820 case nvme_cmd_write:
1821 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001822 case nvme_cmd_compare:
Matthew Wilcox64132142011-08-09 12:56:37 -04001823 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001824 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001825 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001826 }
1827
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001828 length = (io.nblocks + 1) << ns->lba_shift;
1829 meta_len = (io.nblocks + 1) * ns->ms;
Arnd Bergmann835da3f2015-10-06 22:29:48 +02001830 metadata = (void __user *)(uintptr_t)io.metadata;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001831 write = io.opcode & 1;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001832
Keith Busch71feb362015-06-19 11:07:30 -06001833 if (ns->ext) {
1834 length += meta_len;
1835 meta_len = 0;
Keith Buscha67a9512015-04-07 16:57:19 -06001836 }
1837 if (meta_len) {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001838 if (((io.metadata & 3) || !io.metadata) && !ns->ext)
1839 return -EINVAL;
1840
Christoph Hellwige75ec752015-05-22 11:12:39 +02001841 meta = dma_alloc_coherent(dev->dev, meta_len,
Keith Buscha67a9512015-04-07 16:57:19 -06001842 &meta_dma, GFP_KERNEL);
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001843
Keith Buscha67a9512015-04-07 16:57:19 -06001844 if (!meta) {
1845 status = -ENOMEM;
1846 goto unmap;
1847 }
1848 if (write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001849 if (copy_from_user(meta, metadata, meta_len)) {
Keith Buscha67a9512015-04-07 16:57:19 -06001850 status = -EFAULT;
1851 goto unmap;
1852 }
1853 }
1854 }
1855
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001856 memset(&c, 0, sizeof(c));
1857 c.rw.opcode = io.opcode;
1858 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001859 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001860 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001861 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001862 c.rw.control = cpu_to_le16(io.control);
Matthew Wilcox1c9b5262013-04-16 15:21:06 -04001863 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1864 c.rw.reftag = cpu_to_le32(io.reftag);
1865 c.rw.apptag = cpu_to_le16(io.apptag);
1866 c.rw.appmask = cpu_to_le16(io.appmask);
Keith Buscha67a9512015-04-07 16:57:19 -06001867 c.rw.metadata = cpu_to_le64(meta_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001868
1869 status = __nvme_submit_sync_cmd(ns->queue, &c, NULL,
Arnd Bergmann835da3f2015-10-06 22:29:48 +02001870 (void __user *)(uintptr_t)io.addr, length, NULL, 0);
Keith Buschf410c682013-04-23 17:23:59 -06001871 unmap:
Keith Buscha67a9512015-04-07 16:57:19 -06001872 if (meta) {
1873 if (status == NVME_SC_SUCCESS && !write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001874 if (copy_to_user(metadata, meta, meta_len))
Keith Buscha67a9512015-04-07 16:57:19 -06001875 status = -EFAULT;
1876 }
Christoph Hellwige75ec752015-05-22 11:12:39 +02001877 dma_free_coherent(dev->dev, meta_len, meta, meta_dma);
Keith Buschf410c682013-04-23 17:23:59 -06001878 }
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001879 return status;
1880}
1881
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001882static int nvme_user_cmd(struct nvme_dev *dev, struct nvme_ns *ns,
1883 struct nvme_passthru_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001884{
Keith Busch7963e522014-09-12 16:07:20 -06001885 struct nvme_passthru_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001886 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001887 unsigned timeout = 0;
1888 int status;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001889
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001890 if (!capable(CAP_SYS_ADMIN))
1891 return -EACCES;
1892 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001893 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001894
1895 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001896 c.common.opcode = cmd.opcode;
1897 c.common.flags = cmd.flags;
1898 c.common.nsid = cpu_to_le32(cmd.nsid);
1899 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1900 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1901 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1902 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1903 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1904 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1905 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1906 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1907
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001908 if (cmd.timeout_ms)
1909 timeout = msecs_to_jiffies(cmd.timeout_ms);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001910
Christoph Hellwigf705f832015-05-22 11:12:38 +02001911 status = __nvme_submit_sync_cmd(ns ? ns->queue : dev->admin_q, &c,
Arnd Bergmann835da3f2015-10-06 22:29:48 +02001912 NULL, (void __user *)(uintptr_t)cmd.addr, cmd.data_len,
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001913 &cmd.result, timeout);
1914 if (status >= 0) {
1915 if (put_user(cmd.result, &ucmd->result))
1916 return -EFAULT;
Keith Buschedd10d32014-04-03 16:45:23 -06001917 }
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001918
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001919 return status;
1920}
1921
Jon Derrick81f03fe2015-08-10 15:20:41 -06001922static int nvme_subsys_reset(struct nvme_dev *dev)
1923{
1924 if (!dev->subsystem)
1925 return -ENOTTY;
1926
1927 writel(0x4E564D65, &dev->bar->nssr); /* "NVMe" */
1928 return 0;
1929}
1930
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001931static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1932 unsigned long arg)
1933{
1934 struct nvme_ns *ns = bdev->bd_disk->private_data;
1935
1936 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001937 case NVME_IOCTL_ID:
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04001938 force_successful_syscall_return();
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001939 return ns->ns_id;
1940 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001941 return nvme_user_cmd(ns->dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06001942 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001943 return nvme_user_cmd(ns->dev, ns, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001944 case NVME_IOCTL_SUBMIT_IO:
1945 return nvme_submit_io(ns, (void __user *)arg);
Vishal Verma5d0f6132013-03-04 18:40:58 -07001946 case SG_GET_VERSION_NUM:
1947 return nvme_sg_get_version_num((void __user *)arg);
1948 case SG_IO:
1949 return nvme_sg_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001950 default:
1951 return -ENOTTY;
1952 }
1953}
1954
Keith Busch320a3822013-10-23 13:07:34 -06001955#ifdef CONFIG_COMPAT
1956static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode,
1957 unsigned int cmd, unsigned long arg)
1958{
Keith Busch320a3822013-10-23 13:07:34 -06001959 switch (cmd) {
1960 case SG_IO:
Keith Busche1797292014-08-27 13:55:38 -06001961 return -ENOIOCTLCMD;
Keith Busch320a3822013-10-23 13:07:34 -06001962 }
1963 return nvme_ioctl(bdev, mode, cmd, arg);
1964}
1965#else
1966#define nvme_compat_ioctl NULL
1967#endif
1968
Keith Busch5105aa52015-10-02 10:37:28 -06001969static void nvme_free_dev(struct kref *kref);
Keith Busch188c3562015-10-01 17:14:10 -06001970static void nvme_free_ns(struct kref *kref)
1971{
1972 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
1973
Matias Bjørlingca064082015-10-29 17:57:29 +09001974 if (ns->type == NVME_NS_LIGHTNVM)
1975 nvme_nvm_unregister(ns->queue, ns->disk->disk_name);
1976
Keith Busch188c3562015-10-01 17:14:10 -06001977 spin_lock(&dev_list_lock);
1978 ns->disk->private_data = NULL;
1979 spin_unlock(&dev_list_lock);
1980
Keith Busch5105aa52015-10-02 10:37:28 -06001981 kref_put(&ns->dev->kref, nvme_free_dev);
Keith Busch188c3562015-10-01 17:14:10 -06001982 put_disk(ns->disk);
1983 kfree(ns);
1984}
1985
Keith Busch9ac27092014-01-31 16:53:39 -07001986static int nvme_open(struct block_device *bdev, fmode_t mode)
1987{
Keith Busch9e603522014-10-03 11:15:47 -06001988 int ret = 0;
1989 struct nvme_ns *ns;
Keith Busch9ac27092014-01-31 16:53:39 -07001990
Keith Busch9e603522014-10-03 11:15:47 -06001991 spin_lock(&dev_list_lock);
1992 ns = bdev->bd_disk->private_data;
1993 if (!ns)
1994 ret = -ENXIO;
Keith Busch188c3562015-10-01 17:14:10 -06001995 else if (!kref_get_unless_zero(&ns->kref))
Keith Busch9e603522014-10-03 11:15:47 -06001996 ret = -ENXIO;
1997 spin_unlock(&dev_list_lock);
1998
1999 return ret;
Keith Busch9ac27092014-01-31 16:53:39 -07002000}
2001
Keith Busch9ac27092014-01-31 16:53:39 -07002002static void nvme_release(struct gendisk *disk, fmode_t mode)
2003{
2004 struct nvme_ns *ns = disk->private_data;
Keith Busch188c3562015-10-01 17:14:10 -06002005 kref_put(&ns->kref, nvme_free_ns);
Keith Busch9ac27092014-01-31 16:53:39 -07002006}
2007
Keith Busch4cc09e22014-04-02 15:45:37 -06002008static int nvme_getgeo(struct block_device *bd, struct hd_geometry *geo)
2009{
2010 /* some standard values */
2011 geo->heads = 1 << 6;
2012 geo->sectors = 1 << 5;
2013 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
2014 return 0;
2015}
2016
Keith Busche1e5e562015-02-19 13:39:03 -07002017static void nvme_config_discard(struct nvme_ns *ns)
2018{
2019 u32 logical_block_size = queue_logical_block_size(ns->queue);
2020 ns->queue->limits.discard_zeroes_data = 0;
2021 ns->queue->limits.discard_alignment = logical_block_size;
2022 ns->queue->limits.discard_granularity = logical_block_size;
Jens Axboe2bb4cd52015-07-14 08:15:12 -06002023 blk_queue_max_discard_sectors(ns->queue, 0xffffffff);
Keith Busche1e5e562015-02-19 13:39:03 -07002024 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
2025}
2026
Keith Busch1b9dbf72014-09-10 17:21:14 -06002027static int nvme_revalidate_disk(struct gendisk *disk)
2028{
2029 struct nvme_ns *ns = disk->private_data;
2030 struct nvme_dev *dev = ns->dev;
2031 struct nvme_id_ns *id;
Keith Buscha67a9512015-04-07 16:57:19 -06002032 u8 lbaf, pi_type;
2033 u16 old_ms;
Keith Busche1e5e562015-02-19 13:39:03 -07002034 unsigned short bs;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002035
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002036 if (nvme_identify_ns(dev, ns->ns_id, &id)) {
Keith Buscha5768aa2015-06-01 14:28:14 -06002037 dev_warn(dev->dev, "%s: Identify failure nvme%dn%d\n", __func__,
2038 dev->instance, ns->ns_id);
2039 return -ENODEV;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002040 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002041 if (id->ncap == 0) {
2042 kfree(id);
2043 return -ENODEV;
Keith Busche1e5e562015-02-19 13:39:03 -07002044 }
Keith Busch1b9dbf72014-09-10 17:21:14 -06002045
Matias Bjørlingca064082015-10-29 17:57:29 +09002046 if (nvme_nvm_ns_supported(ns, id) && ns->type != NVME_NS_LIGHTNVM) {
2047 if (nvme_nvm_register(ns->queue, disk->disk_name)) {
2048 dev_warn(dev->dev,
2049 "%s: LightNVM init failure\n", __func__);
2050 kfree(id);
2051 return -ENODEV;
2052 }
2053 ns->type = NVME_NS_LIGHTNVM;
2054 }
2055
Keith Busche1e5e562015-02-19 13:39:03 -07002056 old_ms = ns->ms;
2057 lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002058 ns->lba_shift = id->lbaf[lbaf].ds;
Keith Busche1e5e562015-02-19 13:39:03 -07002059 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms);
Keith Buscha67a9512015-04-07 16:57:19 -06002060 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002061
Keith Busche1e5e562015-02-19 13:39:03 -07002062 /*
2063 * If identify namespace failed, use default 512 byte block size so
2064 * block layer can use before failing read/write for 0 capacity.
2065 */
2066 if (ns->lba_shift == 0)
2067 ns->lba_shift = 9;
2068 bs = 1 << ns->lba_shift;
2069
2070 /* XXX: PI implementation requires metadata equal t10 pi tuple size */
2071 pi_type = ns->ms == sizeof(struct t10_pi_tuple) ?
2072 id->dps & NVME_NS_DPS_PI_MASK : 0;
2073
Dan Williams4cfc7662015-10-21 13:20:07 -04002074 blk_mq_freeze_queue(disk->queue);
Keith Busch52b68d72015-02-23 09:16:21 -07002075 if (blk_get_integrity(disk) && (ns->pi_type != pi_type ||
2076 ns->ms != old_ms ||
Keith Busche1e5e562015-02-19 13:39:03 -07002077 bs != queue_logical_block_size(disk->queue) ||
Keith Buscha67a9512015-04-07 16:57:19 -06002078 (ns->ms && ns->ext)))
Keith Busche1e5e562015-02-19 13:39:03 -07002079 blk_integrity_unregister(disk);
2080
2081 ns->pi_type = pi_type;
2082 blk_queue_logical_block_size(ns->queue, bs);
2083
Martin K. Petersen25520d52015-10-21 13:19:49 -04002084 if (ns->ms && !ns->ext)
Keith Busche1e5e562015-02-19 13:39:03 -07002085 nvme_init_integrity(ns);
2086
Matias Bjørlingca064082015-10-29 17:57:29 +09002087 if ((ns->ms && !(ns->ms == 8 && ns->pi_type) &&
2088 !blk_get_integrity(disk)) ||
2089 ns->type == NVME_NS_LIGHTNVM)
Keith Busche1e5e562015-02-19 13:39:03 -07002090 set_capacity(disk, 0);
2091 else
2092 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
2093
2094 if (dev->oncs & NVME_CTRL_ONCS_DSM)
2095 nvme_config_discard(ns);
Dan Williams4cfc7662015-10-21 13:20:07 -04002096 blk_mq_unfreeze_queue(disk->queue);
Keith Busche1e5e562015-02-19 13:39:03 -07002097
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002098 kfree(id);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002099 return 0;
2100}
2101
Keith Busch1d277a62015-10-15 14:10:52 +02002102static char nvme_pr_type(enum pr_type type)
2103{
2104 switch (type) {
2105 case PR_WRITE_EXCLUSIVE:
2106 return 1;
2107 case PR_EXCLUSIVE_ACCESS:
2108 return 2;
2109 case PR_WRITE_EXCLUSIVE_REG_ONLY:
2110 return 3;
2111 case PR_EXCLUSIVE_ACCESS_REG_ONLY:
2112 return 4;
2113 case PR_WRITE_EXCLUSIVE_ALL_REGS:
2114 return 5;
2115 case PR_EXCLUSIVE_ACCESS_ALL_REGS:
2116 return 6;
2117 default:
2118 return 0;
2119 }
2120};
2121
2122static int nvme_pr_command(struct block_device *bdev, u32 cdw10,
2123 u64 key, u64 sa_key, u8 op)
2124{
2125 struct nvme_ns *ns = bdev->bd_disk->private_data;
2126 struct nvme_command c;
2127 u8 data[16] = { 0, };
2128
2129 put_unaligned_le64(key, &data[0]);
2130 put_unaligned_le64(sa_key, &data[8]);
2131
2132 memset(&c, 0, sizeof(c));
2133 c.common.opcode = op;
Christoph Hellwiga6dd1022015-10-22 12:01:05 +02002134 c.common.nsid = cpu_to_le32(ns->ns_id);
2135 c.common.cdw10[0] = cpu_to_le32(cdw10);
Keith Busch1d277a62015-10-15 14:10:52 +02002136
2137 return nvme_submit_sync_cmd(ns->queue, &c, data, 16);
2138}
2139
2140static int nvme_pr_register(struct block_device *bdev, u64 old,
2141 u64 new, unsigned flags)
2142{
2143 u32 cdw10;
2144
2145 if (flags & ~PR_FL_IGNORE_KEY)
2146 return -EOPNOTSUPP;
2147
2148 cdw10 = old ? 2 : 0;
2149 cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0;
2150 cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */
2151 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register);
2152}
2153
2154static int nvme_pr_reserve(struct block_device *bdev, u64 key,
2155 enum pr_type type, unsigned flags)
2156{
2157 u32 cdw10;
2158
2159 if (flags & ~PR_FL_IGNORE_KEY)
2160 return -EOPNOTSUPP;
2161
2162 cdw10 = nvme_pr_type(type) << 8;
2163 cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0);
2164 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire);
2165}
2166
2167static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new,
2168 enum pr_type type, bool abort)
2169{
2170 u32 cdw10 = nvme_pr_type(type) << 8 | abort ? 2 : 1;
2171 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire);
2172}
2173
2174static int nvme_pr_clear(struct block_device *bdev, u64 key)
2175{
Dan Carpenter73fcf4e2015-11-03 22:50:49 +03002176 u32 cdw10 = 1 | (key ? 1 << 3 : 0);
Keith Busch1d277a62015-10-15 14:10:52 +02002177 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register);
2178}
2179
2180static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
2181{
2182 u32 cdw10 = nvme_pr_type(type) << 8 | key ? 1 << 3 : 0;
2183 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release);
2184}
2185
2186static const struct pr_ops nvme_pr_ops = {
2187 .pr_register = nvme_pr_register,
2188 .pr_reserve = nvme_pr_reserve,
2189 .pr_release = nvme_pr_release,
2190 .pr_preempt = nvme_pr_preempt,
2191 .pr_clear = nvme_pr_clear,
2192};
2193
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002194static const struct block_device_operations nvme_fops = {
2195 .owner = THIS_MODULE,
2196 .ioctl = nvme_ioctl,
Keith Busch320a3822013-10-23 13:07:34 -06002197 .compat_ioctl = nvme_compat_ioctl,
Keith Busch9ac27092014-01-31 16:53:39 -07002198 .open = nvme_open,
2199 .release = nvme_release,
Keith Busch4cc09e22014-04-02 15:45:37 -06002200 .getgeo = nvme_getgeo,
Keith Busch1b9dbf72014-09-10 17:21:14 -06002201 .revalidate_disk= nvme_revalidate_disk,
Keith Busch1d277a62015-10-15 14:10:52 +02002202 .pr_ops = &nvme_pr_ops,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002203};
2204
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002205static int nvme_kthread(void *data)
2206{
Keith Buschd4b4ff82013-12-10 13:10:37 -07002207 struct nvme_dev *dev, *next;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002208
2209 while (!kthread_should_stop()) {
Arjan van de Ven564a2322013-05-01 16:38:23 -04002210 set_current_state(TASK_INTERRUPTIBLE);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002211 spin_lock(&dev_list_lock);
Keith Buschd4b4ff82013-12-10 13:10:37 -07002212 list_for_each_entry_safe(dev, next, &dev_list, node) {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002213 int i;
Keith Buschdfbac8c2015-08-10 15:20:40 -06002214 u32 csts = readl(&dev->bar->csts);
2215
2216 if ((dev->subsystem && (csts & NVME_CSTS_NSSRO)) ||
2217 csts & NVME_CSTS_CFS) {
Christoph Hellwig906678922015-10-02 18:49:23 +02002218 if (!__nvme_reset(dev)) {
2219 dev_warn(dev->dev,
2220 "Failed status: %x, reset controller\n",
2221 readl(&dev->bar->csts));
2222 }
Keith Buschd4b4ff82013-12-10 13:10:37 -07002223 continue;
2224 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002225 for (i = 0; i < dev->queue_count; i++) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002226 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05002227 if (!nvmeq)
2228 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002229 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxbc57a0f2013-06-24 11:56:42 -04002230 nvme_process_cq(nvmeq);
Keith Busch6fccf932014-06-18 13:58:57 -06002231
2232 while ((i == 0) && (dev->event_limit > 0)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002233 if (nvme_submit_async_admin_req(dev))
Keith Busch6fccf932014-06-18 13:58:57 -06002234 break;
2235 dev->event_limit--;
2236 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002237 spin_unlock_irq(&nvmeq->q_lock);
2238 }
2239 }
2240 spin_unlock(&dev_list_lock);
Arjan van de Venacb7aa02013-02-04 14:44:33 -08002241 schedule_timeout(round_jiffies_relative(HZ));
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002242 }
2243 return 0;
2244}
2245
Keith Busche1e5e562015-02-19 13:39:03 -07002246static void nvme_alloc_ns(struct nvme_dev *dev, unsigned nsid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002247{
2248 struct nvme_ns *ns;
2249 struct gendisk *disk;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002250 int node = dev_to_node(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002251
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002252 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002253 if (!ns)
Keith Busche1e5e562015-02-19 13:39:03 -07002254 return;
2255
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002256 ns->queue = blk_mq_init_queue(&dev->tagset);
Dan Carpenter9f173b32014-11-05 23:39:09 +03002257 if (IS_ERR(ns->queue))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002258 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07002259 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
2260 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002261 ns->dev = dev;
2262 ns->queue->queuedata = ns;
2263
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002264 disk = alloc_disk_node(0, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002265 if (!disk)
2266 goto out_free_queue;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002267
Keith Busch188c3562015-10-01 17:14:10 -06002268 kref_init(&ns->kref);
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002269 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002270 ns->disk = disk;
Keith Busche1e5e562015-02-19 13:39:03 -07002271 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
2272 list_add_tail(&ns->list, &dev->namespaces);
2273
Keith Busche9ef4632012-07-24 15:01:04 -06002274 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Keith Busche8244102015-08-12 16:17:54 -06002275 if (dev->max_hw_sectors) {
Keith Busch8fc23e02012-07-26 11:29:57 -06002276 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
Keith Busche8244102015-08-12 16:17:54 -06002277 blk_queue_max_segments(ns->queue,
Keith Busch6824c5e2015-11-18 16:33:08 -07002278 (dev->max_hw_sectors / (dev->page_size >> 9)) + 1);
Keith Busche8244102015-08-12 16:17:54 -06002279 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002280 if (dev->stripe_size)
2281 blk_queue_chunk_sectors(ns->queue, dev->stripe_size >> 9);
Keith Buscha7d2ce22014-04-29 11:41:28 -06002282 if (dev->vwc & NVME_CTRL_VWC_PRESENT)
2283 blk_queue_flush(ns->queue, REQ_FLUSH | REQ_FUA);
Keith Busch03100aa2015-08-19 14:24:05 -07002284 blk_queue_virt_boundary(ns->queue, dev->page_size - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002285
2286 disk->major = nvme_major;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002287 disk->first_minor = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002288 disk->fops = &nvme_fops;
2289 disk->private_data = ns;
2290 disk->queue = ns->queue;
Keith Buschb3fffde2015-02-03 11:21:42 -07002291 disk->driverfs_dev = dev->device;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002292 disk->flags = GENHD_FL_EXT_DEVT;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002293 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002294
Keith Busche1e5e562015-02-19 13:39:03 -07002295 /*
2296 * Initialize capacity to 0 until we establish the namespace format and
2297 * setup integrity extentions if necessary. The revalidate_disk after
2298 * add_disk allows the driver to register with integrity if the format
2299 * requires it.
2300 */
2301 set_capacity(disk, 0);
Keith Buscha5768aa2015-06-01 14:28:14 -06002302 if (nvme_revalidate_disk(ns->disk))
2303 goto out_free_disk;
2304
Keith Busch5105aa52015-10-02 10:37:28 -06002305 kref_get(&dev->kref);
Matias Bjørlingca064082015-10-29 17:57:29 +09002306 if (ns->type != NVME_NS_LIGHTNVM) {
2307 add_disk(ns->disk);
2308 if (ns->ms) {
2309 struct block_device *bd = bdget_disk(ns->disk, 0);
2310 if (!bd)
2311 return;
2312 if (blkdev_get(bd, FMODE_READ, NULL)) {
2313 bdput(bd);
2314 return;
2315 }
2316 blkdev_reread_part(bd);
2317 blkdev_put(bd, FMODE_READ);
Keith Busch7bee6072015-07-14 11:57:48 -06002318 }
Keith Busch7bee6072015-07-14 11:57:48 -06002319 }
Keith Busche1e5e562015-02-19 13:39:03 -07002320 return;
Keith Buscha5768aa2015-06-01 14:28:14 -06002321 out_free_disk:
2322 kfree(disk);
2323 list_del(&ns->list);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002324 out_free_queue:
2325 blk_cleanup_queue(ns->queue);
2326 out_free_ns:
2327 kfree(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002328}
2329
Christoph Hellwig2659e572015-10-02 18:51:31 +02002330/*
2331 * Create I/O queues. Failing to create an I/O queue is not an issue,
2332 * we can continue with less than the desired amount of queues, and
2333 * even a controller without I/O queues an still be used to issue
2334 * admin commands. This might be useful to upgrade a buggy firmware
2335 * for example.
2336 */
Keith Busch42f61422014-03-24 10:46:25 -06002337static void nvme_create_io_queues(struct nvme_dev *dev)
2338{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002339 unsigned i;
Keith Busch42f61422014-03-24 10:46:25 -06002340
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002341 for (i = dev->queue_count; i <= dev->max_qid; i++)
Keith Busch2b25d982014-12-22 12:59:04 -07002342 if (!nvme_alloc_queue(dev, i, dev->q_depth))
Keith Busch42f61422014-03-24 10:46:25 -06002343 break;
2344
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002345 for (i = dev->online_queues; i <= dev->queue_count - 1; i++)
Christoph Hellwig2659e572015-10-02 18:51:31 +02002346 if (nvme_create_queue(dev->queues[i], i)) {
2347 nvme_free_queues(dev, i);
Keith Busch42f61422014-03-24 10:46:25 -06002348 break;
Christoph Hellwig2659e572015-10-02 18:51:31 +02002349 }
Keith Busch42f61422014-03-24 10:46:25 -06002350}
2351
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002352static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002353{
2354 int status;
2355 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002356 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002357
Matthew Wilcoxdf348132012-01-11 07:29:56 -07002358 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002359 &result);
Matthew Wilcox27e81662014-04-11 11:58:45 -04002360 if (status < 0)
2361 return status;
2362 if (status > 0) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002363 dev_err(dev->dev, "Could not set queue count (%d)\n", status);
Keith Buschbadc34d2014-06-23 14:25:35 -06002364 return 0;
Matthew Wilcox27e81662014-04-11 11:58:45 -04002365 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002366 return min(result & 0xffff, result >> 16) + 1;
2367}
2368
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002369static void __iomem *nvme_map_cmb(struct nvme_dev *dev)
2370{
2371 u64 szu, size, offset;
2372 u32 cmbloc;
2373 resource_size_t bar_size;
2374 struct pci_dev *pdev = to_pci_dev(dev->dev);
2375 void __iomem *cmb;
2376 dma_addr_t dma_addr;
2377
2378 if (!use_cmb_sqes)
2379 return NULL;
2380
2381 dev->cmbsz = readl(&dev->bar->cmbsz);
2382 if (!(NVME_CMB_SZ(dev->cmbsz)))
2383 return NULL;
2384
2385 cmbloc = readl(&dev->bar->cmbloc);
2386
2387 szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz));
2388 size = szu * NVME_CMB_SZ(dev->cmbsz);
2389 offset = szu * NVME_CMB_OFST(cmbloc);
2390 bar_size = pci_resource_len(pdev, NVME_CMB_BIR(cmbloc));
2391
2392 if (offset > bar_size)
2393 return NULL;
2394
2395 /*
2396 * Controllers may support a CMB size larger than their BAR,
2397 * for example, due to being behind a bridge. Reduce the CMB to
2398 * the reported size of the BAR
2399 */
2400 if (size > bar_size - offset)
2401 size = bar_size - offset;
2402
2403 dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(cmbloc)) + offset;
2404 cmb = ioremap_wc(dma_addr, size);
2405 if (!cmb)
2406 return NULL;
2407
2408 dev->cmb_dma_addr = dma_addr;
2409 dev->cmb_size = size;
2410 return cmb;
2411}
2412
2413static inline void nvme_release_cmb(struct nvme_dev *dev)
2414{
2415 if (dev->cmb) {
2416 iounmap(dev->cmb);
2417 dev->cmb = NULL;
2418 }
2419}
2420
Keith Busch9d713c22013-07-15 15:02:24 -06002421static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
2422{
Haiyan Hub80d5cc2013-09-10 11:25:37 +08002423 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
Keith Busch9d713c22013-07-15 15:02:24 -06002424}
2425
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002426static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002427{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002428 struct nvme_queue *adminq = dev->queues[0];
Christoph Hellwige75ec752015-05-22 11:12:39 +02002429 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch42f61422014-03-24 10:46:25 -06002430 int result, i, vecs, nr_io_queues, size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002431
Keith Busch42f61422014-03-24 10:46:25 -06002432 nr_io_queues = num_possible_cpus();
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002433 result = set_queue_count(dev, nr_io_queues);
Keith Buschbadc34d2014-06-23 14:25:35 -06002434 if (result <= 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002435 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002436 if (result < nr_io_queues)
2437 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002438
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002439 if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) {
2440 result = nvme_cmb_qdepth(dev, nr_io_queues,
2441 sizeof(struct nvme_command));
2442 if (result > 0)
2443 dev->q_depth = result;
2444 else
2445 nvme_release_cmb(dev);
2446 }
2447
Keith Busch9d713c22013-07-15 15:02:24 -06002448 size = db_bar_size(dev, nr_io_queues);
2449 if (size > 8192) {
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002450 iounmap(dev->bar);
Keith Busch9d713c22013-07-15 15:02:24 -06002451 do {
2452 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
2453 if (dev->bar)
2454 break;
2455 if (!--nr_io_queues)
2456 return -ENOMEM;
2457 size = db_bar_size(dev, nr_io_queues);
2458 } while (1);
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002459 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Keith Busch5a92e702014-02-21 14:13:44 -07002460 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002461 }
2462
Keith Busch9d713c22013-07-15 15:02:24 -06002463 /* Deregister the admin queue's interrupt */
Matthew Wilcox3193f072014-01-27 15:57:22 -05002464 free_irq(dev->entry[0].vector, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06002465
Jens Axboee32efbf2014-11-14 09:49:26 -07002466 /*
2467 * If we enable msix early due to not intx, disable it again before
2468 * setting up the full range we need.
2469 */
2470 if (!pdev->irq)
2471 pci_disable_msix(pdev);
2472
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002473 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002474 dev->entry[i].entry = i;
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002475 vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues);
2476 if (vecs < 0) {
2477 vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32));
2478 if (vecs < 0) {
2479 vecs = 1;
2480 } else {
2481 for (i = 0; i < vecs; i++)
2482 dev->entry[i].vector = i + pdev->irq;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002483 }
2484 }
2485
Matthew Wilcox063a8092013-06-20 10:53:48 -04002486 /*
2487 * Should investigate if there's a performance win from allocating
2488 * more queues than interrupt vectors; it might allow the submission
2489 * path to scale better, even if the receive path is limited by the
2490 * number of interrupts.
2491 */
2492 nr_io_queues = vecs;
Keith Busch42f61422014-03-24 10:46:25 -06002493 dev->max_qid = nr_io_queues;
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07002494
Matthew Wilcox3193f072014-01-27 15:57:22 -05002495 result = queue_request_irq(dev, adminq, adminq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06002496 if (result) {
2497 adminq->cq_vector = -1;
Keith Busch22404272013-07-15 15:02:20 -06002498 goto free_queues;
Jon Derrick758dd7f2015-06-30 11:22:52 -06002499 }
Matthew Wilcox1b234842011-01-20 13:01:49 -05002500
Keith Buschcd638942013-07-15 15:02:23 -06002501 /* Free previously allocated queues that are no longer usable */
Keith Busch42f61422014-03-24 10:46:25 -06002502 nvme_free_queues(dev, nr_io_queues + 1);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002503 nvme_create_io_queues(dev);
Keith Buschcd638942013-07-15 15:02:23 -06002504
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002505 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002506
Keith Busch22404272013-07-15 15:02:20 -06002507 free_queues:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002508 nvme_free_queues(dev, 1);
Keith Busch22404272013-07-15 15:02:20 -06002509 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002510}
2511
Keith Buscha5768aa2015-06-01 14:28:14 -06002512static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2513{
2514 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2515 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2516
2517 return nsa->ns_id - nsb->ns_id;
2518}
2519
2520static struct nvme_ns *nvme_find_ns(struct nvme_dev *dev, unsigned nsid)
2521{
2522 struct nvme_ns *ns;
2523
2524 list_for_each_entry(ns, &dev->namespaces, list) {
2525 if (ns->ns_id == nsid)
2526 return ns;
2527 if (ns->ns_id > nsid)
2528 break;
2529 }
2530 return NULL;
2531}
2532
2533static inline bool nvme_io_incapable(struct nvme_dev *dev)
2534{
2535 return (!dev->bar || readl(&dev->bar->csts) & NVME_CSTS_CFS ||
2536 dev->online_queues < 2);
2537}
2538
2539static void nvme_ns_remove(struct nvme_ns *ns)
2540{
2541 bool kill = nvme_io_incapable(ns->dev) && !blk_queue_dying(ns->queue);
2542
2543 if (kill)
2544 blk_set_queue_dying(ns->queue);
Dan Williams9609b992015-10-21 13:19:55 -04002545 if (ns->disk->flags & GENHD_FL_UP)
Keith Buscha5768aa2015-06-01 14:28:14 -06002546 del_gendisk(ns->disk);
Keith Buscha5768aa2015-06-01 14:28:14 -06002547 if (kill || !blk_queue_dying(ns->queue)) {
2548 blk_mq_abort_requeue_list(ns->queue);
2549 blk_cleanup_queue(ns->queue);
Keith Busch5105aa52015-10-02 10:37:28 -06002550 }
2551 list_del_init(&ns->list);
2552 kref_put(&ns->kref, nvme_free_ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002553}
2554
2555static void nvme_scan_namespaces(struct nvme_dev *dev, unsigned nn)
2556{
2557 struct nvme_ns *ns, *next;
2558 unsigned i;
2559
2560 for (i = 1; i <= nn; i++) {
2561 ns = nvme_find_ns(dev, i);
2562 if (ns) {
Keith Busch5105aa52015-10-02 10:37:28 -06002563 if (revalidate_disk(ns->disk))
Keith Buscha5768aa2015-06-01 14:28:14 -06002564 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002565 } else
2566 nvme_alloc_ns(dev, i);
2567 }
2568 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
Keith Busch5105aa52015-10-02 10:37:28 -06002569 if (ns->ns_id > nn)
Keith Buscha5768aa2015-06-01 14:28:14 -06002570 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002571 }
2572 list_sort(NULL, &dev->namespaces, ns_cmp);
2573}
2574
Keith Buschbda4e0f2015-09-03 08:18:17 -06002575static void nvme_set_irq_hints(struct nvme_dev *dev)
2576{
2577 struct nvme_queue *nvmeq;
2578 int i;
2579
2580 for (i = 0; i < dev->online_queues; i++) {
2581 nvmeq = dev->queues[i];
2582
2583 if (!nvmeq->tags || !(*nvmeq->tags))
2584 continue;
2585
2586 irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector,
2587 blk_mq_tags_cpumask(*nvmeq->tags));
2588 }
2589}
2590
Keith Buscha5768aa2015-06-01 14:28:14 -06002591static void nvme_dev_scan(struct work_struct *work)
2592{
2593 struct nvme_dev *dev = container_of(work, struct nvme_dev, scan_work);
2594 struct nvme_id_ctrl *ctrl;
2595
2596 if (!dev->tagset.tags)
2597 return;
2598 if (nvme_identify_ctrl(dev, &ctrl))
2599 return;
2600 nvme_scan_namespaces(dev, le32_to_cpup(&ctrl->nn));
2601 kfree(ctrl);
Keith Buschbda4e0f2015-09-03 08:18:17 -06002602 nvme_set_irq_hints(dev);
Keith Buscha5768aa2015-06-01 14:28:14 -06002603}
2604
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002605/*
2606 * Return: error value if an error occurred setting up the queues or calling
2607 * Identify Device. 0 if these succeeded, even if adding some of the
2608 * namespaces failed. At the moment, these failures are silent. TBD which
2609 * failures should be reported.
2610 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002611static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002612{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002613 struct pci_dev *pdev = to_pci_dev(dev->dev);
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04002614 int res;
Matthew Wilcox51814232011-02-01 16:18:08 -05002615 struct nvme_id_ctrl *ctrl;
Stephan Günthera310acd2015-11-07 18:07:02 -07002616 int shift = NVME_CAP_MPSMIN(lo_hi_readq(&dev->bar->cap)) + 12;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002617
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002618 res = nvme_identify_ctrl(dev, &ctrl);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002619 if (res) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002620 dev_err(dev->dev, "Identify Controller failed (%d)\n", res);
Keith Busche1e5e562015-02-19 13:39:03 -07002621 return -EIO;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002622 }
2623
Keith Busch0e5e4f02012-11-09 16:33:05 -07002624 dev->oncs = le16_to_cpup(&ctrl->oncs);
Keith Buschc30341d2013-12-10 13:10:38 -07002625 dev->abort_limit = ctrl->acl + 1;
Keith Buscha7d2ce22014-04-29 11:41:28 -06002626 dev->vwc = ctrl->vwc;
Matthew Wilcox51814232011-02-01 16:18:08 -05002627 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
2628 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
2629 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Keith Busch159b67d2013-04-09 17:13:20 -06002630 if (ctrl->mdts)
Keith Busch8fc23e02012-07-26 11:29:57 -06002631 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
Sathyavathi Mb12363d2015-11-05 12:52:28 -07002632 else
2633 dev->max_hw_sectors = UINT_MAX;
Matthew Wilcox68608c262013-06-21 14:36:34 -04002634 if ((pdev->vendor == PCI_VENDOR_ID_INTEL) &&
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002635 (pdev->device == 0x0953) && ctrl->vs[3]) {
2636 unsigned int max_hw_sectors;
2637
Keith Busch159b67d2013-04-09 17:13:20 -06002638 dev->stripe_size = 1 << (ctrl->vs[3] + shift);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002639 max_hw_sectors = dev->stripe_size >> (shift - 9);
2640 if (dev->max_hw_sectors) {
2641 dev->max_hw_sectors = min(max_hw_sectors,
2642 dev->max_hw_sectors);
2643 } else
2644 dev->max_hw_sectors = max_hw_sectors;
2645 }
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002646 kfree(ctrl);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002647
Keith Buschffe77042015-06-08 10:08:15 -06002648 if (!dev->tagset.tags) {
2649 dev->tagset.ops = &nvme_mq_ops;
2650 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2651 dev->tagset.timeout = NVME_IO_TIMEOUT;
2652 dev->tagset.numa_node = dev_to_node(dev->dev);
2653 dev->tagset.queue_depth =
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002654 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
Keith Buschffe77042015-06-08 10:08:15 -06002655 dev->tagset.cmd_size = nvme_cmd_size(dev);
2656 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2657 dev->tagset.driver_data = dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002658
Keith Buschffe77042015-06-08 10:08:15 -06002659 if (blk_mq_alloc_tag_set(&dev->tagset))
2660 return 0;
2661 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002662 schedule_work(&dev->scan_work);
Keith Busche1e5e562015-02-19 13:39:03 -07002663 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002664}
2665
Keith Busch0877cb02013-07-15 15:02:19 -06002666static int nvme_dev_map(struct nvme_dev *dev)
2667{
Keith Busch42f61422014-03-24 10:46:25 -06002668 u64 cap;
Keith Busch0877cb02013-07-15 15:02:19 -06002669 int bars, result = -ENOMEM;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002670 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002671
2672 if (pci_enable_device_mem(pdev))
2673 return result;
2674
2675 dev->entry[0].vector = pdev->irq;
2676 pci_set_master(pdev);
2677 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Jens Axboebe7837e2014-11-14 09:50:19 -07002678 if (!bars)
2679 goto disable_pci;
2680
Keith Busch0877cb02013-07-15 15:02:19 -06002681 if (pci_request_selected_regions(pdev, bars, "nvme"))
2682 goto disable_pci;
2683
Christoph Hellwige75ec752015-05-22 11:12:39 +02002684 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
2685 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
Russell King052d0ef2013-06-26 23:49:11 +01002686 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06002687
Keith Busch0877cb02013-07-15 15:02:19 -06002688 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
2689 if (!dev->bar)
2690 goto disable;
Jens Axboee32efbf2014-11-14 09:49:26 -07002691
Keith Busch0e53d182013-12-10 13:10:39 -07002692 if (readl(&dev->bar->csts) == -1) {
2693 result = -ENODEV;
2694 goto unmap;
2695 }
Jens Axboee32efbf2014-11-14 09:49:26 -07002696
2697 /*
2698 * Some devices don't advertse INTx interrupts, pre-enable a single
2699 * MSIX vec for setup. We'll adjust this later.
2700 */
2701 if (!pdev->irq) {
2702 result = pci_enable_msix(pdev, dev->entry, 1);
2703 if (result < 0)
2704 goto unmap;
2705 }
2706
Stephan Günthera310acd2015-11-07 18:07:02 -07002707 cap = lo_hi_readq(&dev->bar->cap);
Keith Busch42f61422014-03-24 10:46:25 -06002708 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
2709 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
Keith Busch0877cb02013-07-15 15:02:19 -06002710 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002711 if (readl(&dev->bar->vs) >= NVME_VS(1, 2))
2712 dev->cmb = nvme_map_cmb(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002713
2714 return 0;
2715
Keith Busch0e53d182013-12-10 13:10:39 -07002716 unmap:
2717 iounmap(dev->bar);
2718 dev->bar = NULL;
Keith Busch0877cb02013-07-15 15:02:19 -06002719 disable:
2720 pci_release_regions(pdev);
2721 disable_pci:
2722 pci_disable_device(pdev);
2723 return result;
2724}
2725
2726static void nvme_dev_unmap(struct nvme_dev *dev)
2727{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002728 struct pci_dev *pdev = to_pci_dev(dev->dev);
2729
2730 if (pdev->msi_enabled)
2731 pci_disable_msi(pdev);
2732 else if (pdev->msix_enabled)
2733 pci_disable_msix(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002734
2735 if (dev->bar) {
2736 iounmap(dev->bar);
2737 dev->bar = NULL;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002738 pci_release_regions(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002739 }
2740
Christoph Hellwige75ec752015-05-22 11:12:39 +02002741 if (pci_is_enabled(pdev))
2742 pci_disable_device(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002743}
2744
Keith Busch4d115422013-12-10 13:10:40 -07002745struct nvme_delq_ctx {
2746 struct task_struct *waiter;
2747 struct kthread_worker *worker;
2748 atomic_t refcount;
2749};
2750
2751static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev)
2752{
2753 dq->waiter = current;
2754 mb();
2755
2756 for (;;) {
2757 set_current_state(TASK_KILLABLE);
2758 if (!atomic_read(&dq->refcount))
2759 break;
2760 if (!schedule_timeout(ADMIN_TIMEOUT) ||
2761 fatal_signal_pending(current)) {
Keith Busch0fb59cb2015-01-07 18:55:50 -07002762 /*
2763 * Disable the controller first since we can't trust it
2764 * at this point, but leave the admin queue enabled
2765 * until all queue deletion requests are flushed.
2766 * FIXME: This may take a while if there are more h/w
2767 * queues than admin tags.
2768 */
Keith Busch4d115422013-12-10 13:10:40 -07002769 set_current_state(TASK_RUNNING);
Stephan Günthera310acd2015-11-07 18:07:02 -07002770 nvme_disable_ctrl(dev, lo_hi_readq(&dev->bar->cap));
Keith Busch0fb59cb2015-01-07 18:55:50 -07002771 nvme_clear_queue(dev->queues[0]);
Keith Busch4d115422013-12-10 13:10:40 -07002772 flush_kthread_worker(dq->worker);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002773 nvme_disable_queue(dev, 0);
Keith Busch4d115422013-12-10 13:10:40 -07002774 return;
2775 }
2776 }
2777 set_current_state(TASK_RUNNING);
2778}
2779
2780static void nvme_put_dq(struct nvme_delq_ctx *dq)
2781{
2782 atomic_dec(&dq->refcount);
2783 if (dq->waiter)
2784 wake_up_process(dq->waiter);
2785}
2786
2787static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq)
2788{
2789 atomic_inc(&dq->refcount);
2790 return dq;
2791}
2792
2793static void nvme_del_queue_end(struct nvme_queue *nvmeq)
2794{
2795 struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx;
Keith Busch4d115422013-12-10 13:10:40 -07002796 nvme_put_dq(dq);
Keith Busch604e8c82015-11-20 08:38:13 -07002797
2798 spin_lock_irq(&nvmeq->q_lock);
2799 nvme_process_cq(nvmeq);
2800 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch4d115422013-12-10 13:10:40 -07002801}
2802
2803static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode,
2804 kthread_work_func_t fn)
2805{
2806 struct nvme_command c;
2807
2808 memset(&c, 0, sizeof(c));
2809 c.delete_queue.opcode = opcode;
2810 c.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2811
2812 init_kthread_work(&nvmeq->cmdinfo.work, fn);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002813 return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo,
2814 ADMIN_TIMEOUT);
Keith Busch4d115422013-12-10 13:10:40 -07002815}
2816
2817static void nvme_del_cq_work_handler(struct kthread_work *work)
2818{
2819 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2820 cmdinfo.work);
2821 nvme_del_queue_end(nvmeq);
2822}
2823
2824static int nvme_delete_cq(struct nvme_queue *nvmeq)
2825{
2826 return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq,
2827 nvme_del_cq_work_handler);
2828}
2829
2830static void nvme_del_sq_work_handler(struct kthread_work *work)
2831{
2832 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2833 cmdinfo.work);
2834 int status = nvmeq->cmdinfo.status;
2835
2836 if (!status)
2837 status = nvme_delete_cq(nvmeq);
2838 if (status)
2839 nvme_del_queue_end(nvmeq);
2840}
2841
2842static int nvme_delete_sq(struct nvme_queue *nvmeq)
2843{
2844 return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq,
2845 nvme_del_sq_work_handler);
2846}
2847
2848static void nvme_del_queue_start(struct kthread_work *work)
2849{
2850 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2851 cmdinfo.work);
Keith Busch4d115422013-12-10 13:10:40 -07002852 if (nvme_delete_sq(nvmeq))
2853 nvme_del_queue_end(nvmeq);
2854}
2855
2856static void nvme_disable_io_queues(struct nvme_dev *dev)
2857{
2858 int i;
2859 DEFINE_KTHREAD_WORKER_ONSTACK(worker);
2860 struct nvme_delq_ctx dq;
2861 struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
2862 &worker, "nvme%d", dev->instance);
2863
2864 if (IS_ERR(kworker_task)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002865 dev_err(dev->dev,
Keith Busch4d115422013-12-10 13:10:40 -07002866 "Failed to create queue del task\n");
2867 for (i = dev->queue_count - 1; i > 0; i--)
2868 nvme_disable_queue(dev, i);
2869 return;
2870 }
2871
2872 dq.waiter = NULL;
2873 atomic_set(&dq.refcount, 0);
2874 dq.worker = &worker;
2875 for (i = dev->queue_count - 1; i > 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002876 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002877
2878 if (nvme_suspend_queue(nvmeq))
2879 continue;
2880 nvmeq->cmdinfo.ctx = nvme_get_dq(&dq);
2881 nvmeq->cmdinfo.worker = dq.worker;
2882 init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start);
2883 queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work);
2884 }
2885 nvme_wait_dq(&dq, dev);
2886 kthread_stop(kworker_task);
2887}
2888
Dan McLeranb9afca32014-04-07 17:10:11 -06002889/*
2890* Remove the node from the device list and check
2891* for whether or not we need to stop the nvme_thread.
2892*/
2893static void nvme_dev_list_remove(struct nvme_dev *dev)
2894{
2895 struct task_struct *tmp = NULL;
2896
2897 spin_lock(&dev_list_lock);
2898 list_del_init(&dev->node);
2899 if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) {
2900 tmp = nvme_thread;
2901 nvme_thread = NULL;
2902 }
2903 spin_unlock(&dev_list_lock);
2904
2905 if (tmp)
2906 kthread_stop(tmp);
2907}
2908
Keith Buschc9d3bf82015-01-07 18:55:52 -07002909static void nvme_freeze_queues(struct nvme_dev *dev)
2910{
2911 struct nvme_ns *ns;
2912
2913 list_for_each_entry(ns, &dev->namespaces, list) {
2914 blk_mq_freeze_queue_start(ns->queue);
2915
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002916 spin_lock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002917 queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue);
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002918 spin_unlock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002919
2920 blk_mq_cancel_requeue_work(ns->queue);
2921 blk_mq_stop_hw_queues(ns->queue);
2922 }
2923}
2924
2925static void nvme_unfreeze_queues(struct nvme_dev *dev)
2926{
2927 struct nvme_ns *ns;
2928
2929 list_for_each_entry(ns, &dev->namespaces, list) {
2930 queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue);
2931 blk_mq_unfreeze_queue(ns->queue);
2932 blk_mq_start_stopped_hw_queues(ns->queue, true);
2933 blk_mq_kick_requeue_list(ns->queue);
2934 }
2935}
2936
Keith Buschf0b50732013-07-15 15:02:21 -06002937static void nvme_dev_shutdown(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002938{
Keith Busch22404272013-07-15 15:02:20 -06002939 int i;
Keith Busch7c1b2452014-06-25 11:18:12 -06002940 u32 csts = -1;
Keith Busch22404272013-07-15 15:02:20 -06002941
Dan McLeranb9afca32014-04-07 17:10:11 -06002942 nvme_dev_list_remove(dev);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002943
Keith Buschc9d3bf82015-01-07 18:55:52 -07002944 if (dev->bar) {
2945 nvme_freeze_queues(dev);
Keith Busch7c1b2452014-06-25 11:18:12 -06002946 csts = readl(&dev->bar->csts);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002947 }
Keith Busch7c1b2452014-06-25 11:18:12 -06002948 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
Keith Busch4d115422013-12-10 13:10:40 -07002949 for (i = dev->queue_count - 1; i >= 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002950 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002951 nvme_suspend_queue(nvmeq);
Keith Busch4d115422013-12-10 13:10:40 -07002952 }
2953 } else {
2954 nvme_disable_io_queues(dev);
Keith Busch1894d8f2013-07-15 15:02:22 -06002955 nvme_shutdown_ctrl(dev);
Keith Busch4d115422013-12-10 13:10:40 -07002956 nvme_disable_queue(dev, 0);
2957 }
Keith Buschf0b50732013-07-15 15:02:21 -06002958 nvme_dev_unmap(dev);
Keith Busch07836e62015-02-19 10:34:48 -07002959
2960 for (i = dev->queue_count - 1; i >= 0; i--)
2961 nvme_clear_queue(dev->queues[i]);
Keith Buschf0b50732013-07-15 15:02:21 -06002962}
2963
2964static void nvme_dev_remove(struct nvme_dev *dev)
2965{
Keith Busch5105aa52015-10-02 10:37:28 -06002966 struct nvme_ns *ns, *next;
Keith Buschf0b50732013-07-15 15:02:21 -06002967
Keith Busch5105aa52015-10-02 10:37:28 -06002968 list_for_each_entry_safe(ns, next, &dev->namespaces, list)
Keith Buscha5768aa2015-06-01 14:28:14 -06002969 nvme_ns_remove(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002970}
2971
Matthew Wilcox091b6092011-02-10 09:56:01 -05002972static int nvme_setup_prp_pools(struct nvme_dev *dev)
2973{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002974 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
Matthew Wilcox091b6092011-02-10 09:56:01 -05002975 PAGE_SIZE, PAGE_SIZE, 0);
2976 if (!dev->prp_page_pool)
2977 return -ENOMEM;
2978
Matthew Wilcox99802a72011-02-10 10:30:34 -05002979 /* Optimisation for I/Os between 4k and 128k */
Christoph Hellwige75ec752015-05-22 11:12:39 +02002980 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
Matthew Wilcox99802a72011-02-10 10:30:34 -05002981 256, 256, 0);
2982 if (!dev->prp_small_pool) {
2983 dma_pool_destroy(dev->prp_page_pool);
2984 return -ENOMEM;
2985 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002986 return 0;
2987}
2988
2989static void nvme_release_prp_pools(struct nvme_dev *dev)
2990{
2991 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002992 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002993}
2994
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002995static DEFINE_IDA(nvme_instance_ida);
2996
2997static int nvme_set_instance(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002998{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002999 int instance, error;
3000
3001 do {
3002 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
3003 return -ENODEV;
3004
3005 spin_lock(&dev_list_lock);
3006 error = ida_get_new(&nvme_instance_ida, &instance);
3007 spin_unlock(&dev_list_lock);
3008 } while (error == -EAGAIN);
3009
3010 if (error)
3011 return -ENODEV;
3012
3013 dev->instance = instance;
3014 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003015}
3016
3017static void nvme_release_instance(struct nvme_dev *dev)
3018{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07003019 spin_lock(&dev_list_lock);
3020 ida_remove(&nvme_instance_ida, dev->instance);
3021 spin_unlock(&dev_list_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003022}
3023
Keith Busch5e82e952013-02-19 10:17:58 -07003024static void nvme_free_dev(struct kref *kref)
3025{
3026 struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref);
Keith Busch9ac27092014-01-31 16:53:39 -07003027
Christoph Hellwige75ec752015-05-22 11:12:39 +02003028 put_device(dev->dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07003029 put_device(dev->device);
Indraneel M285dffc2014-12-11 08:24:18 -07003030 nvme_release_instance(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06003031 if (dev->tagset.tags)
3032 blk_mq_free_tag_set(&dev->tagset);
3033 if (dev->admin_q)
3034 blk_put_queue(dev->admin_q);
Keith Busch5e82e952013-02-19 10:17:58 -07003035 kfree(dev->queues);
3036 kfree(dev->entry);
3037 kfree(dev);
3038}
3039
3040static int nvme_dev_open(struct inode *inode, struct file *f)
3041{
Keith Buschb3fffde2015-02-03 11:21:42 -07003042 struct nvme_dev *dev;
3043 int instance = iminor(inode);
3044 int ret = -ENODEV;
3045
3046 spin_lock(&dev_list_lock);
3047 list_for_each_entry(dev, &dev_list, node) {
3048 if (dev->instance == instance) {
Keith Busch2e1d8442015-02-12 15:33:00 -07003049 if (!dev->admin_q) {
3050 ret = -EWOULDBLOCK;
3051 break;
3052 }
Keith Buschb3fffde2015-02-03 11:21:42 -07003053 if (!kref_get_unless_zero(&dev->kref))
3054 break;
3055 f->private_data = dev;
3056 ret = 0;
3057 break;
3058 }
3059 }
3060 spin_unlock(&dev_list_lock);
3061
3062 return ret;
Keith Busch5e82e952013-02-19 10:17:58 -07003063}
3064
3065static int nvme_dev_release(struct inode *inode, struct file *f)
3066{
3067 struct nvme_dev *dev = f->private_data;
3068 kref_put(&dev->kref, nvme_free_dev);
3069 return 0;
3070}
3071
3072static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
3073{
3074 struct nvme_dev *dev = f->private_data;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003075 struct nvme_ns *ns;
3076
Keith Busch5e82e952013-02-19 10:17:58 -07003077 switch (cmd) {
3078 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003079 return nvme_user_cmd(dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06003080 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003081 if (list_empty(&dev->namespaces))
3082 return -ENOTTY;
3083 ns = list_first_entry(&dev->namespaces, struct nvme_ns, list);
3084 return nvme_user_cmd(dev, ns, (void __user *)arg);
Keith Busch4cc06522015-06-05 10:30:08 -06003085 case NVME_IOCTL_RESET:
3086 dev_warn(dev->dev, "resetting controller\n");
3087 return nvme_reset(dev);
Jon Derrick81f03fe2015-08-10 15:20:41 -06003088 case NVME_IOCTL_SUBSYS_RESET:
3089 return nvme_subsys_reset(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003090 default:
3091 return -ENOTTY;
3092 }
3093}
3094
3095static const struct file_operations nvme_dev_fops = {
3096 .owner = THIS_MODULE,
3097 .open = nvme_dev_open,
3098 .release = nvme_dev_release,
3099 .unlocked_ioctl = nvme_dev_ioctl,
3100 .compat_ioctl = nvme_dev_ioctl,
3101};
3102
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003103static void nvme_probe_work(struct work_struct *work)
Keith Buschf0b50732013-07-15 15:02:21 -06003104{
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003105 struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work);
Dan McLeranb9afca32014-04-07 17:10:11 -06003106 bool start_thread = false;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003107 int result;
Keith Buschf0b50732013-07-15 15:02:21 -06003108
3109 result = nvme_dev_map(dev);
3110 if (result)
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003111 goto out;
Keith Buschf0b50732013-07-15 15:02:21 -06003112
3113 result = nvme_configure_admin_queue(dev);
3114 if (result)
3115 goto unmap;
3116
3117 spin_lock(&dev_list_lock);
Dan McLeranb9afca32014-04-07 17:10:11 -06003118 if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) {
3119 start_thread = true;
3120 nvme_thread = NULL;
3121 }
Keith Buschf0b50732013-07-15 15:02:21 -06003122 list_add(&dev->node, &dev_list);
3123 spin_unlock(&dev_list_lock);
3124
Dan McLeranb9afca32014-04-07 17:10:11 -06003125 if (start_thread) {
3126 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
Keith Busch387caa52014-09-22 13:46:19 -06003127 wake_up_all(&nvme_kthread_wait);
Dan McLeranb9afca32014-04-07 17:10:11 -06003128 } else
3129 wait_event_killable(nvme_kthread_wait, nvme_thread);
3130
3131 if (IS_ERR_OR_NULL(nvme_thread)) {
3132 result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR;
3133 goto disable;
3134 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003135
3136 nvme_init_queue(dev->queues[0], 0);
Keith Busch0fb59cb2015-01-07 18:55:50 -07003137 result = nvme_alloc_admin_tags(dev);
3138 if (result)
3139 goto disable;
Dan McLeranb9afca32014-04-07 17:10:11 -06003140
Keith Buschf0b50732013-07-15 15:02:21 -06003141 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06003142 if (result)
Keith Busch0fb59cb2015-01-07 18:55:50 -07003143 goto free_tags;
Keith Buschf0b50732013-07-15 15:02:21 -06003144
Keith Busch1efccc92015-03-31 10:37:17 -06003145 dev->event_limit = 1;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003146
Christoph Hellwig2659e572015-10-02 18:51:31 +02003147 /*
3148 * Keep the controller around but remove all namespaces if we don't have
3149 * any working I/O queue.
3150 */
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003151 if (dev->online_queues < 2) {
3152 dev_warn(dev->dev, "IO queues not created\n");
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003153 nvme_dev_remove(dev);
3154 } else {
3155 nvme_unfreeze_queues(dev);
3156 nvme_dev_add(dev);
3157 }
3158
3159 return;
Keith Buschf0b50732013-07-15 15:02:21 -06003160
Keith Busch0fb59cb2015-01-07 18:55:50 -07003161 free_tags:
3162 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06003163 blk_put_queue(dev->admin_q);
3164 dev->admin_q = NULL;
3165 dev->queues[0]->tags = NULL;
Keith Buschf0b50732013-07-15 15:02:21 -06003166 disable:
Keith Buscha1a5ef92013-12-16 13:50:00 -05003167 nvme_disable_queue(dev, 0);
Dan McLeranb9afca32014-04-07 17:10:11 -06003168 nvme_dev_list_remove(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003169 unmap:
3170 nvme_dev_unmap(dev);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003171 out:
3172 if (!work_busy(&dev->reset_work))
3173 nvme_dead_ctrl(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003174}
3175
Keith Busch9a6b9452013-12-10 13:10:36 -07003176static int nvme_remove_dead_ctrl(void *arg)
3177{
3178 struct nvme_dev *dev = (struct nvme_dev *)arg;
Christoph Hellwige75ec752015-05-22 11:12:39 +02003179 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003180
3181 if (pci_get_drvdata(pdev))
Keith Buschc81f4972014-06-23 15:24:53 -06003182 pci_stop_and_remove_bus_device_locked(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003183 kref_put(&dev->kref, nvme_free_dev);
3184 return 0;
3185}
3186
Keith Buschde3eff22015-06-18 13:36:39 -06003187static void nvme_dead_ctrl(struct nvme_dev *dev)
3188{
3189 dev_warn(dev->dev, "Device failed to resume\n");
3190 kref_get(&dev->kref);
3191 if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
3192 dev->instance))) {
3193 dev_err(dev->dev,
3194 "Failed to start controller remove task\n");
3195 kref_put(&dev->kref, nvme_free_dev);
3196 }
3197}
3198
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003199static void nvme_reset_work(struct work_struct *ws)
Keith Busch9a6b9452013-12-10 13:10:36 -07003200{
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003201 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003202 bool in_probe = work_busy(&dev->probe_work);
3203
Keith Busch9a6b9452013-12-10 13:10:36 -07003204 nvme_dev_shutdown(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003205
3206 /* Synchronize with device probe so that work will see failure status
3207 * and exit gracefully without trying to schedule another reset */
3208 flush_work(&dev->probe_work);
3209
3210 /* Fail this device if reset occured during probe to avoid
3211 * infinite initialization loops. */
3212 if (in_probe) {
Keith Buschde3eff22015-06-18 13:36:39 -06003213 nvme_dead_ctrl(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003214 return;
Keith Busch9a6b9452013-12-10 13:10:36 -07003215 }
Keith Buschffe77042015-06-08 10:08:15 -06003216 /* Schedule device resume asynchronously so the reset work is available
3217 * to cleanup errors that may occur during reinitialization */
3218 schedule_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003219}
3220
Christoph Hellwig906678922015-10-02 18:49:23 +02003221static int __nvme_reset(struct nvme_dev *dev)
Keith Busch9a6b9452013-12-10 13:10:36 -07003222{
Christoph Hellwig906678922015-10-02 18:49:23 +02003223 if (work_pending(&dev->reset_work))
3224 return -EBUSY;
3225 list_del_init(&dev->node);
3226 queue_work(nvme_workq, &dev->reset_work);
3227 return 0;
Tejun Heo9ca97372014-03-07 10:24:49 -05003228}
3229
Keith Busch4cc06522015-06-05 10:30:08 -06003230static int nvme_reset(struct nvme_dev *dev)
3231{
Christoph Hellwig906678922015-10-02 18:49:23 +02003232 int ret;
Keith Busch4cc06522015-06-05 10:30:08 -06003233
3234 if (!dev->admin_q || blk_queue_dying(dev->admin_q))
3235 return -ENODEV;
3236
3237 spin_lock(&dev_list_lock);
Christoph Hellwig906678922015-10-02 18:49:23 +02003238 ret = __nvme_reset(dev);
Keith Busch4cc06522015-06-05 10:30:08 -06003239 spin_unlock(&dev_list_lock);
3240
3241 if (!ret) {
3242 flush_work(&dev->reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003243 flush_work(&dev->probe_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003244 return 0;
3245 }
3246
3247 return ret;
3248}
3249
3250static ssize_t nvme_sysfs_reset(struct device *dev,
3251 struct device_attribute *attr, const char *buf,
3252 size_t count)
3253{
3254 struct nvme_dev *ndev = dev_get_drvdata(dev);
3255 int ret;
3256
3257 ret = nvme_reset(ndev);
3258 if (ret < 0)
3259 return ret;
3260
3261 return count;
3262}
3263static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
3264
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003265static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003266{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003267 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003268 struct nvme_dev *dev;
3269
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003270 node = dev_to_node(&pdev->dev);
3271 if (node == NUMA_NO_NODE)
3272 set_dev_node(&pdev->dev, 0);
3273
3274 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003275 if (!dev)
3276 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003277 dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry),
3278 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003279 if (!dev->entry)
3280 goto free;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003281 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
3282 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003283 if (!dev->queues)
3284 goto free;
3285
3286 INIT_LIST_HEAD(&dev->namespaces);
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003287 INIT_WORK(&dev->reset_work, nvme_reset_work);
Christoph Hellwige75ec752015-05-22 11:12:39 +02003288 dev->dev = get_device(&pdev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003289 pci_set_drvdata(pdev, dev);
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07003290 result = nvme_set_instance(dev);
3291 if (result)
Keith Buscha96d4f52014-08-19 19:15:59 -06003292 goto put_pci;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003293
Matthew Wilcox091b6092011-02-10 09:56:01 -05003294 result = nvme_setup_prp_pools(dev);
3295 if (result)
Keith Busch0877cb02013-07-15 15:02:19 -06003296 goto release;
Matthew Wilcox091b6092011-02-10 09:56:01 -05003297
Keith Buschfb35e912014-03-03 11:09:47 -07003298 kref_init(&dev->kref);
Keith Buschb3fffde2015-02-03 11:21:42 -07003299 dev->device = device_create(nvme_class, &pdev->dev,
3300 MKDEV(nvme_char_major, dev->instance),
3301 dev, "nvme%d", dev->instance);
3302 if (IS_ERR(dev->device)) {
3303 result = PTR_ERR(dev->device);
Keith Busch2e1d8442015-02-12 15:33:00 -07003304 goto release_pools;
Keith Buschb3fffde2015-02-03 11:21:42 -07003305 }
3306 get_device(dev->device);
Keith Busch4cc06522015-06-05 10:30:08 -06003307 dev_set_drvdata(dev->device, dev);
3308
3309 result = device_create_file(dev->device, &dev_attr_reset_controller);
3310 if (result)
3311 goto put_dev;
Keith Buschb3fffde2015-02-03 11:21:42 -07003312
Keith Busche6e96d72015-03-23 09:32:37 -06003313 INIT_LIST_HEAD(&dev->node);
Keith Buscha5768aa2015-06-01 14:28:14 -06003314 INIT_WORK(&dev->scan_work, nvme_dev_scan);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003315 INIT_WORK(&dev->probe_work, nvme_probe_work);
Keith Busch2e1d8442015-02-12 15:33:00 -07003316 schedule_work(&dev->probe_work);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003317 return 0;
3318
Keith Busch4cc06522015-06-05 10:30:08 -06003319 put_dev:
3320 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
3321 put_device(dev->device);
Keith Busch0877cb02013-07-15 15:02:19 -06003322 release_pools:
Matthew Wilcox091b6092011-02-10 09:56:01 -05003323 nvme_release_prp_pools(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06003324 release:
3325 nvme_release_instance(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06003326 put_pci:
Christoph Hellwige75ec752015-05-22 11:12:39 +02003327 put_device(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003328 free:
3329 kfree(dev->queues);
3330 kfree(dev->entry);
3331 kfree(dev);
3332 return result;
3333}
3334
Keith Buschf0d54a52014-05-02 10:40:43 -06003335static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
3336{
Keith Buscha6739472014-06-23 16:03:21 -06003337 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buschf0d54a52014-05-02 10:40:43 -06003338
Keith Buscha6739472014-06-23 16:03:21 -06003339 if (prepare)
3340 nvme_dev_shutdown(dev);
3341 else
Keith Busch0a7385a2015-10-02 10:37:29 -06003342 schedule_work(&dev->probe_work);
Keith Buschf0d54a52014-05-02 10:40:43 -06003343}
3344
Keith Busch09ece142014-01-27 11:29:40 -05003345static void nvme_shutdown(struct pci_dev *pdev)
3346{
3347 struct nvme_dev *dev = pci_get_drvdata(pdev);
3348 nvme_dev_shutdown(dev);
3349}
3350
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003351static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003352{
3353 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003354
3355 spin_lock(&dev_list_lock);
3356 list_del_init(&dev->node);
3357 spin_unlock(&dev_list_lock);
3358
3359 pci_set_drvdata(pdev, NULL);
Keith Busch2e1d8442015-02-12 15:33:00 -07003360 flush_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003361 flush_work(&dev->reset_work);
Keith Buscha5768aa2015-06-01 14:28:14 -06003362 flush_work(&dev->scan_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003363 device_remove_file(dev->device, &dev_attr_reset_controller);
Keith Buschc9d3bf82015-01-07 18:55:52 -07003364 nvme_dev_remove(dev);
Keith Busch3399a3f2015-06-18 13:36:40 -06003365 nvme_dev_shutdown(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003366 nvme_dev_remove_admin(dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07003367 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003368 nvme_free_queues(dev, 0);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06003369 nvme_release_cmb(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003370 nvme_release_prp_pools(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003371 kref_put(&dev->kref, nvme_free_dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003372}
3373
3374/* These functions are yet to be implemented */
3375#define nvme_error_detected NULL
3376#define nvme_dump_registers NULL
3377#define nvme_link_reset NULL
3378#define nvme_slot_reset NULL
3379#define nvme_error_resume NULL
Keith Buschcd638942013-07-15 15:02:23 -06003380
Jingoo Han671a6012014-02-13 11:19:14 +09003381#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06003382static int nvme_suspend(struct device *dev)
3383{
3384 struct pci_dev *pdev = to_pci_dev(dev);
3385 struct nvme_dev *ndev = pci_get_drvdata(pdev);
3386
3387 nvme_dev_shutdown(ndev);
3388 return 0;
3389}
3390
3391static int nvme_resume(struct device *dev)
3392{
3393 struct pci_dev *pdev = to_pci_dev(dev);
3394 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06003395
Keith Busch0a7385a2015-10-02 10:37:29 -06003396 schedule_work(&ndev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003397 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06003398}
Jingoo Han671a6012014-02-13 11:19:14 +09003399#endif
Keith Buschcd638942013-07-15 15:02:23 -06003400
3401static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003402
Stephen Hemminger1d352032012-09-07 09:33:17 -07003403static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003404 .error_detected = nvme_error_detected,
3405 .mmio_enabled = nvme_dump_registers,
3406 .link_reset = nvme_link_reset,
3407 .slot_reset = nvme_slot_reset,
3408 .resume = nvme_error_resume,
Keith Buschf0d54a52014-05-02 10:40:43 -06003409 .reset_notify = nvme_reset_notify,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003410};
3411
3412/* Move to pci_ids.h later */
3413#define PCI_CLASS_STORAGE_EXPRESS 0x010802
3414
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003415static const struct pci_device_id nvme_id_table[] = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003416 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
Stephan Güntherc74dc782015-11-04 00:49:45 +01003417 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003418 { 0, }
3419};
3420MODULE_DEVICE_TABLE(pci, nvme_id_table);
3421
3422static struct pci_driver nvme_driver = {
3423 .name = "nvme",
3424 .id_table = nvme_id_table,
3425 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003426 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05003427 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06003428 .driver = {
3429 .pm = &nvme_dev_pm_ops,
3430 },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003431 .err_handler = &nvme_err_handler,
3432};
3433
3434static int __init nvme_init(void)
3435{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003436 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003437
Dan McLeranb9afca32014-04-07 17:10:11 -06003438 init_waitqueue_head(&nvme_kthread_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003439
Keith Busch9a6b9452013-12-10 13:10:36 -07003440 nvme_workq = create_singlethread_workqueue("nvme");
3441 if (!nvme_workq)
Dan McLeranb9afca32014-04-07 17:10:11 -06003442 return -ENOMEM;
Keith Busch9a6b9452013-12-10 13:10:36 -07003443
Keith Busch5c42ea12012-07-25 16:05:18 -06003444 result = register_blkdev(nvme_major, "nvme");
3445 if (result < 0)
Keith Busch9a6b9452013-12-10 13:10:36 -07003446 goto kill_workq;
Keith Busch5c42ea12012-07-25 16:05:18 -06003447 else if (result > 0)
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003448 nvme_major = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003449
Keith Buschb3fffde2015-02-03 11:21:42 -07003450 result = __register_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme",
3451 &nvme_dev_fops);
3452 if (result < 0)
3453 goto unregister_blkdev;
3454 else if (result > 0)
3455 nvme_char_major = result;
3456
3457 nvme_class = class_create(THIS_MODULE, "nvme");
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003458 if (IS_ERR(nvme_class)) {
3459 result = PTR_ERR(nvme_class);
Keith Buschb3fffde2015-02-03 11:21:42 -07003460 goto unregister_chrdev;
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003461 }
Keith Buschb3fffde2015-02-03 11:21:42 -07003462
Keith Buschf3db22f2014-06-11 11:51:35 -06003463 result = pci_register_driver(&nvme_driver);
3464 if (result)
Keith Buschb3fffde2015-02-03 11:21:42 -07003465 goto destroy_class;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003466 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003467
Keith Buschb3fffde2015-02-03 11:21:42 -07003468 destroy_class:
3469 class_destroy(nvme_class);
3470 unregister_chrdev:
3471 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003472 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003473 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003474 kill_workq:
3475 destroy_workqueue(nvme_workq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003476 return result;
3477}
3478
3479static void __exit nvme_exit(void)
3480{
3481 pci_unregister_driver(&nvme_driver);
3482 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003483 destroy_workqueue(nvme_workq);
Keith Buschb3fffde2015-02-03 11:21:42 -07003484 class_destroy(nvme_class);
3485 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Dan McLeranb9afca32014-04-07 17:10:11 -06003486 BUG_ON(nvme_thread && !IS_ERR(nvme_thread));
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04003487 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003488}
3489
3490MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
3491MODULE_LICENSE("GPL");
Keith Buschc78b47132014-11-21 15:16:32 -07003492MODULE_VERSION("1.0");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003493module_init(nvme_init);
3494module_exit(nvme_exit);