blob: 904b54fcbbcd7ae1517253ed7a6556f4d7f96ec0 [file] [log] [blame]
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001/*
2 * NVM Express device driver
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003 * Copyright (c) 2011-2014, Intel Corporation.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050013 */
14
15#include <linux/nvme.h>
Matthew Wilcox8de05532011-05-12 13:50:28 -040016#include <linux/bitops.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050017#include <linux/blkdev.h>
Matias Bjørlinga4aea562014-11-04 08:20:14 -070018#include <linux/blk-mq.h>
Keith Busch42f61422014-03-24 10:46:25 -060019#include <linux/cpu.h>
Matthew Wilcoxfd63e9ce2011-05-06 08:37:54 -040020#include <linux/delay.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050021#include <linux/errno.h>
22#include <linux/fs.h>
23#include <linux/genhd.h>
Keith Busch4cc09e22014-04-02 15:45:37 -060024#include <linux/hdreg.h>
Matthew Wilcox5aff9382011-05-06 08:45:47 -040025#include <linux/idr.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050026#include <linux/init.h>
27#include <linux/interrupt.h>
28#include <linux/io.h>
29#include <linux/kdev_t.h>
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050030#include <linux/kthread.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050031#include <linux/kernel.h>
Keith Buscha5768aa2015-06-01 14:28:14 -060032#include <linux/list_sort.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050033#include <linux/mm.h>
34#include <linux/module.h>
35#include <linux/moduleparam.h>
36#include <linux/pci.h>
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -050037#include <linux/poison.h>
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -040038#include <linux/ptrace.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050039#include <linux/sched.h>
40#include <linux/slab.h>
Keith Busche1e5e562015-02-19 13:39:03 -070041#include <linux/t10-pi.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050042#include <linux/types.h>
Vishal Verma5d0f6132013-03-04 18:40:58 -070043#include <scsi/sg.h>
Hitoshi Mitake797a7962012-02-07 11:45:33 +090044#include <asm-generic/io-64-nonatomic-lo-hi.h>
45
Keith Buschb3fffde2015-02-03 11:21:42 -070046#define NVME_MINORS (1U << MINORBITS)
Keith Busch9d43cf62014-05-13 11:42:02 -060047#define NVME_Q_DEPTH 1024
Jens Axboed31af0a2015-03-06 12:56:13 -070048#define NVME_AQ_DEPTH 256
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050049#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
50#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
Keith Busch9d43cf62014-05-13 11:42:02 -060051#define ADMIN_TIMEOUT (admin_timeout * HZ)
Dan McLeran2484f402014-07-01 09:33:32 -060052#define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050053
Keith Busch9d43cf62014-05-13 11:42:02 -060054static unsigned char admin_timeout = 60;
55module_param(admin_timeout, byte, 0644);
56MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050057
Matthew Wilcoxbd676082014-06-03 23:04:30 -040058unsigned char nvme_io_timeout = 30;
59module_param_named(io_timeout, nvme_io_timeout, byte, 0644);
Keith Buschb3550842014-04-04 11:43:36 -060060MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050061
Dan McLeran2484f402014-07-01 09:33:32 -060062static unsigned char shutdown_timeout = 5;
63module_param(shutdown_timeout, byte, 0644);
64MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
65
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050066static int nvme_major;
67module_param(nvme_major, int, 0);
68
Keith Buschb3fffde2015-02-03 11:21:42 -070069static int nvme_char_major;
70module_param(nvme_char_major, int, 0);
71
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050072static int use_threaded_interrupts;
73module_param(use_threaded_interrupts, int, 0);
74
Jon Derrick8ffaadf2015-07-20 10:14:09 -060075static bool use_cmb_sqes = true;
76module_param(use_cmb_sqes, bool, 0644);
77MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
78
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050079static DEFINE_SPINLOCK(dev_list_lock);
80static LIST_HEAD(dev_list);
81static struct task_struct *nvme_thread;
Keith Busch9a6b9452013-12-10 13:10:36 -070082static struct workqueue_struct *nvme_workq;
Dan McLeranb9afca32014-04-07 17:10:11 -060083static wait_queue_head_t nvme_kthread_wait;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050084
Keith Buschb3fffde2015-02-03 11:21:42 -070085static struct class *nvme_class;
86
Keith Buschd4b4ff82013-12-10 13:10:37 -070087static void nvme_reset_failed_dev(struct work_struct *ws);
Keith Busch4cc06522015-06-05 10:30:08 -060088static int nvme_reset(struct nvme_dev *dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -070089static int nvme_process_cq(struct nvme_queue *nvmeq);
Keith Buschd4b4ff82013-12-10 13:10:37 -070090
Keith Busch4d115422013-12-10 13:10:40 -070091struct async_cmd_info {
92 struct kthread_work work;
93 struct kthread_worker *worker;
Matias Bjørlinga4aea562014-11-04 08:20:14 -070094 struct request *req;
Keith Busch4d115422013-12-10 13:10:40 -070095 u32 result;
96 int status;
97 void *ctx;
98};
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050099
100/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500101 * An NVM Express queue. Each device has at least two (one for admin
102 * commands and one for I/O commands).
103 */
104struct nvme_queue {
105 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500106 struct nvme_dev *dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -0500107 char irqname[24]; /* nvme4294967295-65535\0 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500108 spinlock_t q_lock;
109 struct nvme_command *sq_cmds;
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600110 struct nvme_command __iomem *sq_cmds_io;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500111 volatile struct nvme_completion *cqes;
Keith Busch42483222015-06-01 09:29:54 -0600112 struct blk_mq_tags **tags;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500113 dma_addr_t sq_dma_addr;
114 dma_addr_t cq_dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500115 u32 __iomem *q_db;
116 u16 q_depth;
Jens Axboe6222d172015-01-15 15:19:10 -0700117 s16 cq_vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500118 u16 sq_head;
119 u16 sq_tail;
120 u16 cq_head;
Keith Buschc30341d2013-12-10 13:10:38 -0700121 u16 qid;
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400122 u8 cq_phase;
123 u8 cqe_seen;
Keith Busch4d115422013-12-10 13:10:40 -0700124 struct async_cmd_info cmdinfo;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500125};
126
127/*
128 * Check we didin't inadvertently grow the command struct
129 */
130static inline void _nvme_check_size(void)
131{
132 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
133 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
134 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
135 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
136 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
Vishal Vermaf8ebf842013-03-27 07:13:41 -0400137 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
Keith Buschc30341d2013-12-10 13:10:38 -0700138 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500139 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
140 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
141 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
142 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
Keith Busch6ecec742012-09-26 12:49:27 -0600143 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500144}
145
Keith Buschedd10d32014-04-03 16:45:23 -0600146typedef void (*nvme_completion_fn)(struct nvme_queue *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400147 struct nvme_completion *);
148
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500149struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400150 nvme_completion_fn fn;
151 void *ctx;
Keith Buschc30341d2013-12-10 13:10:38 -0700152 int aborted;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700153 struct nvme_queue *nvmeq;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700154 struct nvme_iod iod[0];
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500155};
156
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700157/*
158 * Max size of iod being embedded in the request payload
159 */
160#define NVME_INT_PAGES 2
161#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->page_size)
Chong Yuanfda631f2015-03-27 09:21:32 +0800162#define NVME_INT_MASK 0x01
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700163
164/*
165 * Will slightly overestimate the number of pages needed. This is OK
166 * as it only leads to a small amount of wasted memory for the lifetime of
167 * the I/O.
168 */
169static int nvme_npages(unsigned size, struct nvme_dev *dev)
170{
171 unsigned nprps = DIV_ROUND_UP(size + dev->page_size, dev->page_size);
172 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
173}
174
175static unsigned int nvme_cmd_size(struct nvme_dev *dev)
176{
177 unsigned int ret = sizeof(struct nvme_cmd_info);
178
179 ret += sizeof(struct nvme_iod);
180 ret += sizeof(__le64 *) * nvme_npages(NVME_INT_BYTES(dev), dev);
181 ret += sizeof(struct scatterlist) * NVME_INT_PAGES;
182
183 return ret;
184}
185
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700186static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
187 unsigned int hctx_idx)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500188{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700189 struct nvme_dev *dev = data;
190 struct nvme_queue *nvmeq = dev->queues[0];
191
Keith Busch42483222015-06-01 09:29:54 -0600192 WARN_ON(hctx_idx != 0);
193 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
194 WARN_ON(nvmeq->tags);
195
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700196 hctx->driver_data = nvmeq;
Keith Busch42483222015-06-01 09:29:54 -0600197 nvmeq->tags = &dev->admin_tagset.tags[0];
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700198 return 0;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500199}
200
Keith Busch4af0e212015-06-08 10:08:13 -0600201static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
202{
203 struct nvme_queue *nvmeq = hctx->driver_data;
204
205 nvmeq->tags = NULL;
206}
207
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700208static int nvme_admin_init_request(void *data, struct request *req,
209 unsigned int hctx_idx, unsigned int rq_idx,
210 unsigned int numa_node)
Keith Busch22404272013-07-15 15:02:20 -0600211{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700212 struct nvme_dev *dev = data;
213 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
214 struct nvme_queue *nvmeq = dev->queues[0];
215
216 BUG_ON(!nvmeq);
217 cmd->nvmeq = nvmeq;
218 return 0;
Keith Busch22404272013-07-15 15:02:20 -0600219}
220
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700221static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
222 unsigned int hctx_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500223{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700224 struct nvme_dev *dev = data;
Keith Busch42483222015-06-01 09:29:54 -0600225 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500226
Keith Busch42483222015-06-01 09:29:54 -0600227 if (!nvmeq->tags)
228 nvmeq->tags = &dev->tagset.tags[hctx_idx];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500229
Keith Busch42483222015-06-01 09:29:54 -0600230 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700231 hctx->driver_data = nvmeq;
232 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500233}
234
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700235static int nvme_init_request(void *data, struct request *req,
236 unsigned int hctx_idx, unsigned int rq_idx,
237 unsigned int numa_node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500238{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700239 struct nvme_dev *dev = data;
240 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
241 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
242
243 BUG_ON(!nvmeq);
244 cmd->nvmeq = nvmeq;
245 return 0;
246}
247
248static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx,
249 nvme_completion_fn handler)
250{
251 cmd->fn = handler;
252 cmd->ctx = ctx;
253 cmd->aborted = 0;
Keith Buschc917dfe2015-01-07 18:55:48 -0700254 blk_mq_start_request(blk_mq_rq_from_pdu(cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500255}
256
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700257static void *iod_get_private(struct nvme_iod *iod)
258{
259 return (void *) (iod->private & ~0x1UL);
260}
261
262/*
263 * If bit 0 is set, the iod is embedded in the request payload.
264 */
265static bool iod_should_kfree(struct nvme_iod *iod)
266{
Chong Yuanfda631f2015-03-27 09:21:32 +0800267 return (iod->private & NVME_INT_MASK) == 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700268}
269
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400270/* Special values must be less than 0x1000 */
271#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500272#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
273#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
274#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500275
Keith Buschedd10d32014-04-03 16:45:23 -0600276static void special_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400277 struct nvme_completion *cqe)
278{
279 if (ctx == CMD_CTX_CANCELLED)
280 return;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400281 if (ctx == CMD_CTX_COMPLETED) {
Keith Buschedd10d32014-04-03 16:45:23 -0600282 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400283 "completed id %d twice on queue %d\n",
284 cqe->command_id, le16_to_cpup(&cqe->sq_id));
285 return;
286 }
287 if (ctx == CMD_CTX_INVALID) {
Keith Buschedd10d32014-04-03 16:45:23 -0600288 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400289 "invalid id %d completed on queue %d\n",
290 cqe->command_id, le16_to_cpup(&cqe->sq_id));
291 return;
292 }
Keith Buschedd10d32014-04-03 16:45:23 -0600293 dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400294}
295
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700296static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn)
297{
298 void *ctx;
299
300 if (fn)
301 *fn = cmd->fn;
302 ctx = cmd->ctx;
303 cmd->fn = special_completion;
304 cmd->ctx = CMD_CTX_CANCELLED;
305 return ctx;
306}
307
308static void async_req_completion(struct nvme_queue *nvmeq, void *ctx,
309 struct nvme_completion *cqe)
310{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700311 u32 result = le32_to_cpup(&cqe->result);
312 u16 status = le16_to_cpup(&cqe->status) >> 1;
313
314 if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ)
315 ++nvmeq->dev->event_limit;
Keith Buscha5768aa2015-06-01 14:28:14 -0600316 if (status != NVME_SC_SUCCESS)
317 return;
318
319 switch (result & 0xff07) {
320 case NVME_AER_NOTICE_NS_CHANGED:
321 dev_info(nvmeq->q_dmadev, "rescanning\n");
322 schedule_work(&nvmeq->dev->scan_work);
323 default:
324 dev_warn(nvmeq->q_dmadev, "async event result %08x\n", result);
325 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700326}
327
328static void abort_completion(struct nvme_queue *nvmeq, void *ctx,
329 struct nvme_completion *cqe)
330{
331 struct request *req = ctx;
332
333 u16 status = le16_to_cpup(&cqe->status) >> 1;
334 u32 result = le32_to_cpup(&cqe->result);
335
Keith Busch42483222015-06-01 09:29:54 -0600336 blk_mq_free_request(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700337
338 dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result);
339 ++nvmeq->dev->abort_limit;
340}
341
Keith Buschedd10d32014-04-03 16:45:23 -0600342static void async_completion(struct nvme_queue *nvmeq, void *ctx,
Keith Busch4d115422013-12-10 13:10:40 -0700343 struct nvme_completion *cqe)
344{
345 struct async_cmd_info *cmdinfo = ctx;
346 cmdinfo->result = le32_to_cpup(&cqe->result);
347 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
348 queue_kthread_work(cmdinfo->worker, &cmdinfo->work);
Keith Busch42483222015-06-01 09:29:54 -0600349 blk_mq_free_request(cmdinfo->req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700350}
351
352static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq,
353 unsigned int tag)
354{
Keith Busch42483222015-06-01 09:29:54 -0600355 struct request *req = blk_mq_tag_to_rq(*nvmeq->tags, tag);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700356
357 return blk_mq_rq_to_pdu(req);
Keith Busch4d115422013-12-10 13:10:40 -0700358}
359
Matthew Wilcox184d2942011-05-11 21:36:38 -0400360/*
361 * Called with local interrupts disabled and the q_lock held. May not sleep.
362 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700363static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400364 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500365{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700366 struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400367 void *ctx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700368 if (tag >= nvmeq->q_depth) {
369 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500370 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400371 }
Keith Busch859361a2012-08-02 14:05:59 -0600372 if (fn)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700373 *fn = cmd->fn;
374 ctx = cmd->ctx;
375 cmd->fn = special_completion;
376 cmd->ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400377 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500378}
379
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500380/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400381 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500382 * @nvmeq: The queue to use
383 * @cmd: The command to send
384 *
385 * Safe to use from interrupt context
386 */
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530387static void __nvme_submit_cmd(struct nvme_queue *nvmeq,
388 struct nvme_command *cmd)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500389{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700390 u16 tail = nvmeq->sq_tail;
391
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600392 if (nvmeq->sq_cmds_io)
393 memcpy_toio(&nvmeq->sq_cmds_io[tail], cmd, sizeof(*cmd));
394 else
395 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
396
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500397 if (++tail == nvmeq->q_depth)
398 tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500399 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500400 nvmeq->sq_tail = tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500401}
402
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530403static void nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700404{
405 unsigned long flags;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700406 spin_lock_irqsave(&nvmeq->q_lock, flags);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530407 __nvme_submit_cmd(nvmeq, cmd);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700408 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700409}
410
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500411static __le64 **iod_list(struct nvme_iod *iod)
412{
413 return ((void *)iod) + iod->offset;
414}
415
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700416static inline void iod_init(struct nvme_iod *iod, unsigned nbytes,
417 unsigned nseg, unsigned long private)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500418{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700419 iod->private = private;
420 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
421 iod->npages = -1;
422 iod->length = nbytes;
423 iod->nents = 0;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500424}
425
426static struct nvme_iod *
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700427__nvme_alloc_iod(unsigned nseg, unsigned bytes, struct nvme_dev *dev,
428 unsigned long priv, gfp_t gfp)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500429{
430 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700431 sizeof(__le64 *) * nvme_npages(bytes, dev) +
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500432 sizeof(struct scatterlist) * nseg, gfp);
433
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700434 if (iod)
435 iod_init(iod, bytes, nseg, priv);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500436
437 return iod;
438}
439
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700440static struct nvme_iod *nvme_alloc_iod(struct request *rq, struct nvme_dev *dev,
441 gfp_t gfp)
442{
443 unsigned size = !(rq->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(rq) :
444 sizeof(struct nvme_dsm_range);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700445 struct nvme_iod *iod;
446
447 if (rq->nr_phys_segments <= NVME_INT_PAGES &&
448 size <= NVME_INT_BYTES(dev)) {
449 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(rq);
450
451 iod = cmd->iod;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700452 iod_init(iod, size, rq->nr_phys_segments,
Chong Yuanfda631f2015-03-27 09:21:32 +0800453 (unsigned long) rq | NVME_INT_MASK);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700454 return iod;
455 }
456
457 return __nvme_alloc_iod(rq->nr_phys_segments, size, dev,
458 (unsigned long) rq, gfp);
459}
460
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200461static void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500462{
Keith Busch1d090622014-06-23 11:34:01 -0600463 const int last_prp = dev->page_size / 8 - 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500464 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500465 __le64 **list = iod_list(iod);
466 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500467
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500468 if (iod->npages == 0)
469 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
470 for (i = 0; i < iod->npages; i++) {
471 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500472 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500473 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500474 prp_dma = next_prp_dma;
475 }
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700476
477 if (iod_should_kfree(iod))
478 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500479}
480
Keith Buschb4ff9c82014-08-29 09:06:12 -0600481static int nvme_error_status(u16 status)
482{
483 switch (status & 0x7ff) {
484 case NVME_SC_SUCCESS:
485 return 0;
486 case NVME_SC_CAP_EXCEEDED:
487 return -ENOSPC;
488 default:
489 return -EIO;
490 }
491}
492
Keith Busch52b68d72015-02-23 09:16:21 -0700493#ifdef CONFIG_BLK_DEV_INTEGRITY
Keith Busche1e5e562015-02-19 13:39:03 -0700494static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
495{
496 if (be32_to_cpu(pi->ref_tag) == v)
497 pi->ref_tag = cpu_to_be32(p);
498}
499
500static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
501{
502 if (be32_to_cpu(pi->ref_tag) == p)
503 pi->ref_tag = cpu_to_be32(v);
504}
505
506/**
507 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
508 *
509 * The virtual start sector is the one that was originally submitted by the
510 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
511 * start sector may be different. Remap protection information to match the
512 * physical LBA on writes, and back to the original seed on reads.
513 *
514 * Type 0 and 3 do not have a ref tag, so no remapping required.
515 */
516static void nvme_dif_remap(struct request *req,
517 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
518{
519 struct nvme_ns *ns = req->rq_disk->private_data;
520 struct bio_integrity_payload *bip;
521 struct t10_pi_tuple *pi;
522 void *p, *pmap;
523 u32 i, nlb, ts, phys, virt;
524
525 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
526 return;
527
528 bip = bio_integrity(req->bio);
529 if (!bip)
530 return;
531
532 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
Keith Busche1e5e562015-02-19 13:39:03 -0700533
534 p = pmap;
535 virt = bip_get_seed(bip);
536 phys = nvme_block_nr(ns, blk_rq_pos(req));
537 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
538 ts = ns->disk->integrity->tuple_size;
539
540 for (i = 0; i < nlb; i++, virt++, phys++) {
541 pi = (struct t10_pi_tuple *)p;
542 dif_swap(phys, virt, pi);
543 p += ts;
544 }
545 kunmap_atomic(pmap);
546}
547
Keith Busch52b68d72015-02-23 09:16:21 -0700548static int nvme_noop_verify(struct blk_integrity_iter *iter)
549{
550 return 0;
551}
552
553static int nvme_noop_generate(struct blk_integrity_iter *iter)
554{
555 return 0;
556}
557
558struct blk_integrity nvme_meta_noop = {
559 .name = "NVME_META_NOOP",
560 .generate_fn = nvme_noop_generate,
561 .verify_fn = nvme_noop_verify,
562};
563
564static void nvme_init_integrity(struct nvme_ns *ns)
565{
566 struct blk_integrity integrity;
567
568 switch (ns->pi_type) {
569 case NVME_NS_DPS_PI_TYPE3:
570 integrity = t10_pi_type3_crc;
571 break;
572 case NVME_NS_DPS_PI_TYPE1:
573 case NVME_NS_DPS_PI_TYPE2:
574 integrity = t10_pi_type1_crc;
575 break;
576 default:
577 integrity = nvme_meta_noop;
578 break;
579 }
580 integrity.tuple_size = ns->ms;
581 blk_integrity_register(ns->disk, &integrity);
582 blk_queue_max_integrity_segments(ns->queue, 1);
583}
584#else /* CONFIG_BLK_DEV_INTEGRITY */
585static void nvme_dif_remap(struct request *req,
586 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
587{
588}
589static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
590{
591}
592static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
593{
594}
595static void nvme_init_integrity(struct nvme_ns *ns)
596{
597}
598#endif
599
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700600static void req_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500601 struct nvme_completion *cqe)
602{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500603 struct nvme_iod *iod = ctx;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700604 struct request *req = iod_get_private(iod);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700605 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
606
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500607 u16 status = le16_to_cpup(&cqe->status) >> 1;
608
Keith Buschedd10d32014-04-03 16:45:23 -0600609 if (unlikely(status)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700610 if (!(status & NVME_SC_DNR || blk_noretry_request(req))
611 && (jiffies - req->start_time) < req->timeout) {
Keith Buschc9d3bf82015-01-07 18:55:52 -0700612 unsigned long flags;
613
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700614 blk_mq_requeue_request(req);
Keith Buschc9d3bf82015-01-07 18:55:52 -0700615 spin_lock_irqsave(req->q->queue_lock, flags);
616 if (!blk_queue_stopped(req->q))
617 blk_mq_kick_requeue_list(req->q);
618 spin_unlock_irqrestore(req->q->queue_lock, flags);
Keith Buschedd10d32014-04-03 16:45:23 -0600619 return;
620 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200621
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200622 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
Keith Busch17188bb2015-06-08 10:08:14 -0600623 if (cmd_rq->ctx == CMD_CTX_CANCELLED)
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200624 status = -EINTR;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200625 } else {
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200626 status = nvme_error_status(status);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200627 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200628 }
629
Keith Buscha0a931d2015-05-22 12:28:31 -0600630 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
631 u32 result = le32_to_cpup(&cqe->result);
632 req->special = (void *)(uintptr_t)result;
633 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700634
635 if (cmd_rq->aborted)
Christoph Hellwige75ec752015-05-22 11:12:39 +0200636 dev_warn(nvmeq->dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700637 "completing aborted command with status:%04x\n",
638 status);
639
Keith Busche1e5e562015-02-19 13:39:03 -0700640 if (iod->nents) {
Christoph Hellwige75ec752015-05-22 11:12:39 +0200641 dma_unmap_sg(nvmeq->dev->dev, iod->sg, iod->nents,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700642 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Keith Busche1e5e562015-02-19 13:39:03 -0700643 if (blk_integrity_rq(req)) {
644 if (!rq_data_dir(req))
645 nvme_dif_remap(req, nvme_dif_complete);
Christoph Hellwige75ec752015-05-22 11:12:39 +0200646 dma_unmap_sg(nvmeq->dev->dev, iod->meta_sg, 1,
Keith Busche1e5e562015-02-19 13:39:03 -0700647 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
648 }
649 }
Keith Buschedd10d32014-04-03 16:45:23 -0600650 nvme_free_iod(nvmeq->dev, iod);
Keith Busch3291fa52014-04-28 12:30:52 -0600651
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200652 blk_mq_complete_request(req, status);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500653}
654
Matthew Wilcox184d2942011-05-11 21:36:38 -0400655/* length is in bytes. gfp flags indicates whether we may sleep. */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200656static int nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod,
657 int total_len, gfp_t gfp)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500658{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500659 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500660 int length = total_len;
661 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500662 int dma_len = sg_dma_len(sg);
663 u64 dma_addr = sg_dma_address(sg);
Murali Iyerf137e0f2015-03-26 11:07:51 -0500664 u32 page_size = dev->page_size;
665 int offset = dma_addr & (page_size - 1);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500666 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500667 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500668 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500669 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500670
Keith Busch1d090622014-06-23 11:34:01 -0600671 length -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500672 if (length <= 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500673 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500674
Keith Busch1d090622014-06-23 11:34:01 -0600675 dma_len -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500676 if (dma_len) {
Keith Busch1d090622014-06-23 11:34:01 -0600677 dma_addr += (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500678 } else {
679 sg = sg_next(sg);
680 dma_addr = sg_dma_address(sg);
681 dma_len = sg_dma_len(sg);
682 }
683
Keith Busch1d090622014-06-23 11:34:01 -0600684 if (length <= page_size) {
Keith Buschedd10d32014-04-03 16:45:23 -0600685 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500686 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500687 }
688
Keith Busch1d090622014-06-23 11:34:01 -0600689 nprps = DIV_ROUND_UP(length, page_size);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500690 if (nprps <= (256 / 8)) {
691 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500692 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500693 } else {
694 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500695 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500696 }
697
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400698 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
699 if (!prp_list) {
Keith Buschedd10d32014-04-03 16:45:23 -0600700 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500701 iod->npages = -1;
Keith Busch1d090622014-06-23 11:34:01 -0600702 return (total_len - length) + page_size;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400703 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500704 list[0] = prp_list;
705 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500706 i = 0;
707 for (;;) {
Keith Busch1d090622014-06-23 11:34:01 -0600708 if (i == page_size >> 3) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500709 __le64 *old_prp_list = prp_list;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400710 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500711 if (!prp_list)
712 return total_len - length;
713 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400714 prp_list[0] = old_prp_list[i - 1];
715 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
716 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500717 }
718 prp_list[i++] = cpu_to_le64(dma_addr);
Keith Busch1d090622014-06-23 11:34:01 -0600719 dma_len -= page_size;
720 dma_addr += page_size;
721 length -= page_size;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500722 if (length <= 0)
723 break;
724 if (dma_len > 0)
725 continue;
726 BUG_ON(dma_len < 0);
727 sg = sg_next(sg);
728 dma_addr = sg_dma_address(sg);
729 dma_len = sg_dma_len(sg);
730 }
731
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500732 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500733}
734
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200735static void nvme_submit_priv(struct nvme_queue *nvmeq, struct request *req,
736 struct nvme_iod *iod)
737{
Jon Derrick498c4392015-07-20 10:14:08 -0600738 struct nvme_command cmnd;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200739
Jon Derrick498c4392015-07-20 10:14:08 -0600740 memcpy(&cmnd, req->cmd, sizeof(cmnd));
741 cmnd.rw.command_id = req->tag;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200742 if (req->nr_phys_segments) {
Jon Derrick498c4392015-07-20 10:14:08 -0600743 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
744 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200745 }
746
Jon Derrick498c4392015-07-20 10:14:08 -0600747 __nvme_submit_cmd(nvmeq, &cmnd);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200748}
749
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700750/*
751 * We reuse the small pool to allocate the 16-byte range here as it is not
752 * worth having a special pool for these or additional cases to handle freeing
753 * the iod.
754 */
755static void nvme_submit_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns,
756 struct request *req, struct nvme_iod *iod)
Keith Busch0e5e4f02012-11-09 16:33:05 -0700757{
Keith Buschedd10d32014-04-03 16:45:23 -0600758 struct nvme_dsm_range *range =
759 (struct nvme_dsm_range *)iod_list(iod)[0];
Jon Derrick498c4392015-07-20 10:14:08 -0600760 struct nvme_command cmnd;
Keith Busch0e5e4f02012-11-09 16:33:05 -0700761
Keith Busch0e5e4f02012-11-09 16:33:05 -0700762 range->cattr = cpu_to_le32(0);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700763 range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift);
764 range->slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
Keith Busch0e5e4f02012-11-09 16:33:05 -0700765
Jon Derrick498c4392015-07-20 10:14:08 -0600766 memset(&cmnd, 0, sizeof(cmnd));
767 cmnd.dsm.opcode = nvme_cmd_dsm;
768 cmnd.dsm.command_id = req->tag;
769 cmnd.dsm.nsid = cpu_to_le32(ns->ns_id);
770 cmnd.dsm.prp1 = cpu_to_le64(iod->first_dma);
771 cmnd.dsm.nr = 0;
772 cmnd.dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700773
Jon Derrick498c4392015-07-20 10:14:08 -0600774 __nvme_submit_cmd(nvmeq, &cmnd);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700775}
776
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700777static void nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500778 int cmdid)
779{
Jon Derrick498c4392015-07-20 10:14:08 -0600780 struct nvme_command cmnd;
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500781
Jon Derrick498c4392015-07-20 10:14:08 -0600782 memset(&cmnd, 0, sizeof(cmnd));
783 cmnd.common.opcode = nvme_cmd_flush;
784 cmnd.common.command_id = cmdid;
785 cmnd.common.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500786
Jon Derrick498c4392015-07-20 10:14:08 -0600787 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500788}
789
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700790static int nvme_submit_iod(struct nvme_queue *nvmeq, struct nvme_iod *iod,
791 struct nvme_ns *ns)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500792{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700793 struct request *req = iod_get_private(iod);
Jon Derrick498c4392015-07-20 10:14:08 -0600794 struct nvme_command cmnd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700795 u16 control = 0;
796 u32 dsmgmt = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500797
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700798 if (req->cmd_flags & REQ_FUA)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500799 control |= NVME_RW_FUA;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700800 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500801 control |= NVME_RW_LR;
802
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700803 if (req->cmd_flags & REQ_RAHEAD)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500804 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
805
Jon Derrick498c4392015-07-20 10:14:08 -0600806 memset(&cmnd, 0, sizeof(cmnd));
807 cmnd.rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
808 cmnd.rw.command_id = req->tag;
809 cmnd.rw.nsid = cpu_to_le32(ns->ns_id);
810 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
811 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
812 cmnd.rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
813 cmnd.rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500814
Alok Pandeye19b1272015-08-26 08:56:14 -0600815 if (ns->ms) {
Keith Busche1e5e562015-02-19 13:39:03 -0700816 switch (ns->pi_type) {
817 case NVME_NS_DPS_PI_TYPE3:
818 control |= NVME_RW_PRINFO_PRCHK_GUARD;
819 break;
820 case NVME_NS_DPS_PI_TYPE1:
821 case NVME_NS_DPS_PI_TYPE2:
822 control |= NVME_RW_PRINFO_PRCHK_GUARD |
823 NVME_RW_PRINFO_PRCHK_REF;
Jon Derrick498c4392015-07-20 10:14:08 -0600824 cmnd.rw.reftag = cpu_to_le32(
Keith Busche1e5e562015-02-19 13:39:03 -0700825 nvme_block_nr(ns, blk_rq_pos(req)));
826 break;
827 }
Alok Pandeye19b1272015-08-26 08:56:14 -0600828 if (blk_integrity_rq(req))
829 cmnd.rw.metadata =
830 cpu_to_le64(sg_dma_address(iod->meta_sg));
831 else
832 control |= NVME_RW_PRINFO_PRACT;
833 }
Keith Busche1e5e562015-02-19 13:39:03 -0700834
Jon Derrick498c4392015-07-20 10:14:08 -0600835 cmnd.rw.control = cpu_to_le16(control);
836 cmnd.rw.dsmgmt = cpu_to_le32(dsmgmt);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500837
Jon Derrick498c4392015-07-20 10:14:08 -0600838 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500839
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500840 return 0;
Keith Buschedd10d32014-04-03 16:45:23 -0600841}
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500842
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200843/*
844 * NOTE: ns is NULL when called on the admin queue.
845 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700846static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
847 const struct blk_mq_queue_data *bd)
Keith Busch53562be2014-04-29 11:41:29 -0600848{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700849 struct nvme_ns *ns = hctx->queue->queuedata;
850 struct nvme_queue *nvmeq = hctx->driver_data;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200851 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700852 struct request *req = bd->rq;
853 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
Keith Buschedd10d32014-04-03 16:45:23 -0600854 struct nvme_iod *iod;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700855 enum dma_data_direction dma_dir;
Keith Buschedd10d32014-04-03 16:45:23 -0600856
Keith Busche1e5e562015-02-19 13:39:03 -0700857 /*
858 * If formated with metadata, require the block layer provide a buffer
859 * unless this namespace is formated such that the metadata can be
860 * stripped/generated by the controller with PRACT=1.
861 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200862 if (ns && ns->ms && !blk_integrity_rq(req)) {
Keith Busch71feb362015-06-19 11:07:30 -0600863 if (!(ns->pi_type && ns->ms == 8) &&
864 req->cmd_type != REQ_TYPE_DRV_PRIV) {
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200865 blk_mq_complete_request(req, -EFAULT);
Keith Busche1e5e562015-02-19 13:39:03 -0700866 return BLK_MQ_RQ_QUEUE_OK;
867 }
868 }
869
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200870 iod = nvme_alloc_iod(req, dev, GFP_ATOMIC);
Keith Buschedd10d32014-04-03 16:45:23 -0600871 if (!iod)
Jens Axboefe543032014-12-11 13:58:39 -0700872 return BLK_MQ_RQ_QUEUE_BUSY;
Keith Buschedd10d32014-04-03 16:45:23 -0600873
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700874 if (req->cmd_flags & REQ_DISCARD) {
Keith Buschedd10d32014-04-03 16:45:23 -0600875 void *range;
876 /*
877 * We reuse the small pool to allocate the 16-byte range here
878 * as it is not worth having a special pool for these or
879 * additional cases to handle freeing the iod.
880 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200881 range = dma_pool_alloc(dev->prp_small_pool, GFP_ATOMIC,
Keith Buschedd10d32014-04-03 16:45:23 -0600882 &iod->first_dma);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700883 if (!range)
Jens Axboefe543032014-12-11 13:58:39 -0700884 goto retry_cmd;
Keith Buschedd10d32014-04-03 16:45:23 -0600885 iod_list(iod)[0] = (__le64 *)range;
886 iod->npages = 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700887 } else if (req->nr_phys_segments) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700888 dma_dir = rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Keith Buschedd10d32014-04-03 16:45:23 -0600889
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700890 sg_init_table(iod->sg, req->nr_phys_segments);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700891 iod->nents = blk_rq_map_sg(req->q, req, iod->sg);
Jens Axboefe543032014-12-11 13:58:39 -0700892 if (!iod->nents)
893 goto error_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700894
895 if (!dma_map_sg(nvmeq->q_dmadev, iod->sg, iod->nents, dma_dir))
Jens Axboefe543032014-12-11 13:58:39 -0700896 goto retry_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700897
Jens Axboefe543032014-12-11 13:58:39 -0700898 if (blk_rq_bytes(req) !=
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200899 nvme_setup_prps(dev, iod, blk_rq_bytes(req), GFP_ATOMIC)) {
900 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
Jens Axboefe543032014-12-11 13:58:39 -0700901 goto retry_cmd;
902 }
Keith Busche1e5e562015-02-19 13:39:03 -0700903 if (blk_integrity_rq(req)) {
904 if (blk_rq_count_integrity_sg(req->q, req->bio) != 1)
905 goto error_cmd;
906
907 sg_init_table(iod->meta_sg, 1);
908 if (blk_rq_map_integrity_sg(
909 req->q, req->bio, iod->meta_sg) != 1)
910 goto error_cmd;
911
912 if (rq_data_dir(req))
913 nvme_dif_remap(req, nvme_dif_prep);
914
915 if (!dma_map_sg(nvmeq->q_dmadev, iod->meta_sg, 1, dma_dir))
916 goto error_cmd;
917 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700918 }
919
Keith Busch9af87852014-12-03 17:07:13 -0700920 nvme_set_info(cmd, iod, req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700921 spin_lock_irq(&nvmeq->q_lock);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200922 if (req->cmd_type == REQ_TYPE_DRV_PRIV)
923 nvme_submit_priv(nvmeq, req, iod);
924 else if (req->cmd_flags & REQ_DISCARD)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700925 nvme_submit_discard(nvmeq, ns, req, iod);
926 else if (req->cmd_flags & REQ_FLUSH)
927 nvme_submit_flush(nvmeq, ns, req->tag);
928 else
929 nvme_submit_iod(nvmeq, iod, ns);
930
931 nvme_process_cq(nvmeq);
932 spin_unlock_irq(&nvmeq->q_lock);
933 return BLK_MQ_RQ_QUEUE_OK;
934
Jens Axboefe543032014-12-11 13:58:39 -0700935 error_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200936 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700937 return BLK_MQ_RQ_QUEUE_ERROR;
938 retry_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200939 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700940 return BLK_MQ_RQ_QUEUE_BUSY;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500941}
942
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400943static int nvme_process_cq(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500944{
Matthew Wilcox82123462011-01-20 13:24:06 -0500945 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500946
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500947 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500948 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500949
950 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400951 void *ctx;
952 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500953 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -0500954 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500955 break;
956 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
957 if (++head == nvmeq->q_depth) {
958 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500959 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500960 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700961 ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn);
Keith Buschedd10d32014-04-03 16:45:23 -0600962 fn(nvmeq, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500963 }
964
965 /* If the controller ignores the cq head doorbell and continuously
966 * writes to the queue, it is theoretically possible to wrap around
967 * the queue twice and mistakenly return IRQ_NONE. Linux only
968 * requires that 0.1% of your interrupts are handled, so this isn't
969 * a big problem.
970 */
Matthew Wilcox82123462011-01-20 13:24:06 -0500971 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400972 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500973
Haiyan Hub80d5cc2013-09-10 11:25:37 +0800974 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500975 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500976 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500977
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400978 nvmeq->cqe_seen = 1;
979 return 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500980}
981
982static irqreturn_t nvme_irq(int irq, void *data)
983{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500984 irqreturn_t result;
985 struct nvme_queue *nvmeq = data;
986 spin_lock(&nvmeq->q_lock);
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400987 nvme_process_cq(nvmeq);
988 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
989 nvmeq->cqe_seen = 0;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500990 spin_unlock(&nvmeq->q_lock);
991 return result;
992}
993
994static irqreturn_t nvme_irq_check(int irq, void *data)
995{
996 struct nvme_queue *nvmeq = data;
997 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
998 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
999 return IRQ_NONE;
1000 return IRQ_WAKE_THREAD;
1001}
1002
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001003/*
1004 * Returns 0 on success. If the result is negative, it's a Linux error code;
1005 * if the result is positive, it's an NVM Express status code
1006 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001007int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1008 void *buffer, void __user *ubuffer, unsigned bufflen,
1009 u32 *result, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001010{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001011 bool write = cmd->common.opcode & 1;
1012 struct bio *bio = NULL;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001013 struct request *req;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001014 int ret;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001015
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001016 req = blk_mq_alloc_request(q, write, GFP_KERNEL, false);
Christoph Hellwigf705f832015-05-22 11:12:38 +02001017 if (IS_ERR(req))
1018 return PTR_ERR(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001019
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001020 req->cmd_type = REQ_TYPE_DRV_PRIV;
Matias Bjørlinge112af02015-06-05 14:54:24 +02001021 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001022 req->__data_len = 0;
1023 req->__sector = (sector_t) -1;
1024 req->bio = req->biotail = NULL;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001025
Keith Buschf4ff4142015-05-28 09:48:54 -06001026 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001027
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001028 req->cmd = (unsigned char *)cmd;
1029 req->cmd_len = sizeof(struct nvme_command);
Keith Buscha0a931d2015-05-22 12:28:31 -06001030 req->special = (void *)0;
Matthew Wilcox3c0cf132011-02-04 16:03:56 -05001031
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001032 if (buffer && bufflen) {
1033 ret = blk_rq_map_kern(q, req, buffer, bufflen, __GFP_WAIT);
1034 if (ret)
1035 goto out;
1036 } else if (ubuffer && bufflen) {
1037 ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen, __GFP_WAIT);
1038 if (ret)
1039 goto out;
1040 bio = req->bio;
1041 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001042
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001043 blk_execute_rq(req->q, NULL, req, 0);
1044 if (bio)
1045 blk_rq_unmap_user(bio);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001046 if (result)
Keith Buscha0a931d2015-05-22 12:28:31 -06001047 *result = (u32)(uintptr_t)req->special;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001048 ret = req->errors;
1049 out:
Christoph Hellwigf705f832015-05-22 11:12:38 +02001050 blk_mq_free_request(req);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001051 return ret;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001052}
1053
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001054int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1055 void *buffer, unsigned bufflen)
Christoph Hellwigf705f832015-05-22 11:12:38 +02001056{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001057 return __nvme_submit_sync_cmd(q, cmd, buffer, NULL, bufflen, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001058}
1059
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001060static int nvme_submit_async_admin_req(struct nvme_dev *dev)
1061{
1062 struct nvme_queue *nvmeq = dev->queues[0];
1063 struct nvme_command c;
1064 struct nvme_cmd_info *cmd_info;
1065 struct request *req;
1066
Keith Busch1efccc92015-03-31 10:37:17 -06001067 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC, true);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001068 if (IS_ERR(req))
1069 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001070
Keith Buschc917dfe2015-01-07 18:55:48 -07001071 req->cmd_flags |= REQ_NO_TIMEOUT;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001072 cmd_info = blk_mq_rq_to_pdu(req);
Keith Busch1efccc92015-03-31 10:37:17 -06001073 nvme_set_info(cmd_info, NULL, async_req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001074
1075 memset(&c, 0, sizeof(c));
1076 c.common.opcode = nvme_admin_async_event;
1077 c.common.command_id = req->tag;
1078
Keith Busch42483222015-06-01 09:29:54 -06001079 blk_mq_free_request(req);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301080 __nvme_submit_cmd(nvmeq, &c);
1081 return 0;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001082}
1083
1084static int nvme_submit_admin_async_cmd(struct nvme_dev *dev,
Keith Busch4d115422013-12-10 13:10:40 -07001085 struct nvme_command *cmd,
1086 struct async_cmd_info *cmdinfo, unsigned timeout)
1087{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001088 struct nvme_queue *nvmeq = dev->queues[0];
1089 struct request *req;
1090 struct nvme_cmd_info *cmd_rq;
Keith Busch4d115422013-12-10 13:10:40 -07001091
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001092 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001093 if (IS_ERR(req))
1094 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001095
1096 req->timeout = timeout;
1097 cmd_rq = blk_mq_rq_to_pdu(req);
1098 cmdinfo->req = req;
1099 nvme_set_info(cmd_rq, cmdinfo, async_completion);
Keith Busch4d115422013-12-10 13:10:40 -07001100 cmdinfo->status = -EINTR;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001101
1102 cmd->common.command_id = req->tag;
1103
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301104 nvme_submit_cmd(nvmeq, cmd);
1105 return 0;
Keith Busch4d115422013-12-10 13:10:40 -07001106}
1107
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001108static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
1109{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001110 struct nvme_command c;
1111
1112 memset(&c, 0, sizeof(c));
1113 c.delete_queue.opcode = opcode;
1114 c.delete_queue.qid = cpu_to_le16(id);
1115
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001116 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001117}
1118
1119static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
1120 struct nvme_queue *nvmeq)
1121{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001122 struct nvme_command c;
1123 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
1124
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001125 /*
1126 * Note: we (ab)use the fact the the prp fields survive if no data
1127 * is attached to the request.
1128 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001129 memset(&c, 0, sizeof(c));
1130 c.create_cq.opcode = nvme_admin_create_cq;
1131 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1132 c.create_cq.cqid = cpu_to_le16(qid);
1133 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1134 c.create_cq.cq_flags = cpu_to_le16(flags);
1135 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
1136
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001137 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001138}
1139
1140static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1141 struct nvme_queue *nvmeq)
1142{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001143 struct nvme_command c;
1144 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
1145
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001146 /*
1147 * Note: we (ab)use the fact the the prp fields survive if no data
1148 * is attached to the request.
1149 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001150 memset(&c, 0, sizeof(c));
1151 c.create_sq.opcode = nvme_admin_create_sq;
1152 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1153 c.create_sq.sqid = cpu_to_le16(qid);
1154 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1155 c.create_sq.sq_flags = cpu_to_le16(flags);
1156 c.create_sq.cqid = cpu_to_le16(qid);
1157
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001158 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001159}
1160
1161static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1162{
1163 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1164}
1165
1166static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1167{
1168 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1169}
1170
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001171int nvme_identify_ctrl(struct nvme_dev *dev, struct nvme_id_ctrl **id)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001172{
Andrew Mortone44ac582015-06-27 12:20:34 -06001173 struct nvme_command c = { };
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001174 int error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001175
Andrew Mortone44ac582015-06-27 12:20:34 -06001176 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1177 c.identify.opcode = nvme_admin_identify;
1178 c.identify.cns = cpu_to_le32(1);
1179
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001180 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
1181 if (!*id)
1182 return -ENOMEM;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001183
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001184 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1185 sizeof(struct nvme_id_ctrl));
1186 if (error)
1187 kfree(*id);
1188 return error;
1189}
1190
1191int nvme_identify_ns(struct nvme_dev *dev, unsigned nsid,
1192 struct nvme_id_ns **id)
1193{
Andrew Mortone44ac582015-06-27 12:20:34 -06001194 struct nvme_command c = { };
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001195 int error;
1196
Andrew Mortone44ac582015-06-27 12:20:34 -06001197 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1198 c.identify.opcode = nvme_admin_identify,
1199 c.identify.nsid = cpu_to_le32(nsid),
1200
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001201 *id = kmalloc(sizeof(struct nvme_id_ns), GFP_KERNEL);
1202 if (!*id)
1203 return -ENOMEM;
1204
1205 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1206 sizeof(struct nvme_id_ns));
1207 if (error)
1208 kfree(*id);
1209 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001210}
1211
Vishal Verma5d0f6132013-03-04 18:40:58 -07001212int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid,
Keith Busch08df1e02012-09-21 10:52:13 -06001213 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001214{
1215 struct nvme_command c;
1216
1217 memset(&c, 0, sizeof(c));
1218 c.features.opcode = nvme_admin_get_features;
Keith Buscha42cecc2012-07-25 16:06:38 -06001219 c.features.nsid = cpu_to_le32(nsid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001220 c.features.prp1 = cpu_to_le64(dma_addr);
1221 c.features.fid = cpu_to_le32(fid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001222
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001223 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1224 result, 0);
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001225}
1226
Vishal Verma5d0f6132013-03-04 18:40:58 -07001227int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11,
1228 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001229{
1230 struct nvme_command c;
1231
1232 memset(&c, 0, sizeof(c));
1233 c.features.opcode = nvme_admin_set_features;
1234 c.features.prp1 = cpu_to_le64(dma_addr);
1235 c.features.fid = cpu_to_le32(fid);
1236 c.features.dword11 = cpu_to_le32(dword11);
1237
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001238 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1239 result, 0);
1240}
1241
1242int nvme_get_log_page(struct nvme_dev *dev, struct nvme_smart_log **log)
1243{
Andrew Mortone44ac582015-06-27 12:20:34 -06001244 struct nvme_command c = { };
1245 int error;
1246
1247 c.common.opcode = nvme_admin_get_log_page,
1248 c.common.nsid = cpu_to_le32(0xFFFFFFFF),
1249 c.common.cdw10[0] = cpu_to_le32(
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001250 (((sizeof(struct nvme_smart_log) / 4) - 1) << 16) |
1251 NVME_LOG_SMART),
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001252
1253 *log = kmalloc(sizeof(struct nvme_smart_log), GFP_KERNEL);
1254 if (!*log)
1255 return -ENOMEM;
1256
1257 error = nvme_submit_sync_cmd(dev->admin_q, &c, *log,
1258 sizeof(struct nvme_smart_log));
1259 if (error)
1260 kfree(*log);
1261 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001262}
1263
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001264/**
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001265 * nvme_abort_req - Attempt aborting a request
Keith Buschc30341d2013-12-10 13:10:38 -07001266 *
1267 * Schedule controller reset if the command was already aborted once before and
1268 * still hasn't been returned to the driver, or if this is the admin queue.
1269 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001270static void nvme_abort_req(struct request *req)
Keith Buschc30341d2013-12-10 13:10:38 -07001271{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001272 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
1273 struct nvme_queue *nvmeq = cmd_rq->nvmeq;
Keith Buschc30341d2013-12-10 13:10:38 -07001274 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001275 struct request *abort_req;
1276 struct nvme_cmd_info *abort_cmd;
1277 struct nvme_command cmd;
Keith Buschc30341d2013-12-10 13:10:38 -07001278
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001279 if (!nvmeq->qid || cmd_rq->aborted) {
Keith Busch7a509a62015-01-07 18:55:53 -07001280 unsigned long flags;
1281
1282 spin_lock_irqsave(&dev_list_lock, flags);
Keith Buschc30341d2013-12-10 13:10:38 -07001283 if (work_busy(&dev->reset_work))
Keith Busch7a509a62015-01-07 18:55:53 -07001284 goto out;
Keith Buschc30341d2013-12-10 13:10:38 -07001285 list_del_init(&dev->node);
Christoph Hellwige75ec752015-05-22 11:12:39 +02001286 dev_warn(dev->dev, "I/O %d QID %d timeout, reset controller\n",
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001287 req->tag, nvmeq->qid);
Tejun Heo9ca97372014-03-07 10:24:49 -05001288 dev->reset_workfn = nvme_reset_failed_dev;
Keith Buschc30341d2013-12-10 13:10:38 -07001289 queue_work(nvme_workq, &dev->reset_work);
Keith Busch7a509a62015-01-07 18:55:53 -07001290 out:
1291 spin_unlock_irqrestore(&dev_list_lock, flags);
Keith Buschc30341d2013-12-10 13:10:38 -07001292 return;
1293 }
1294
1295 if (!dev->abort_limit)
1296 return;
1297
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001298 abort_req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC,
1299 false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001300 if (IS_ERR(abort_req))
Keith Buschc30341d2013-12-10 13:10:38 -07001301 return;
1302
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001303 abort_cmd = blk_mq_rq_to_pdu(abort_req);
1304 nvme_set_info(abort_cmd, abort_req, abort_completion);
1305
Keith Buschc30341d2013-12-10 13:10:38 -07001306 memset(&cmd, 0, sizeof(cmd));
1307 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001308 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001309 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001310 cmd.abort.command_id = abort_req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001311
1312 --dev->abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001313 cmd_rq->aborted = 1;
Keith Buschc30341d2013-12-10 13:10:38 -07001314
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001315 dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag,
Keith Buschc30341d2013-12-10 13:10:38 -07001316 nvmeq->qid);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301317 nvme_submit_cmd(dev->queues[0], &cmd);
Keith Buschc30341d2013-12-10 13:10:38 -07001318}
1319
Keith Busch42483222015-06-01 09:29:54 -06001320static void nvme_cancel_queue_ios(struct request *req, void *data, bool reserved)
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001321{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001322 struct nvme_queue *nvmeq = data;
1323 void *ctx;
1324 nvme_completion_fn fn;
1325 struct nvme_cmd_info *cmd;
Keith Buschcef6a942015-01-07 18:55:51 -07001326 struct nvme_completion cqe;
1327
1328 if (!blk_mq_request_started(req))
1329 return;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001330
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001331 cmd = blk_mq_rq_to_pdu(req);
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001332
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001333 if (cmd->ctx == CMD_CTX_CANCELLED)
1334 return;
1335
Keith Buschcef6a942015-01-07 18:55:51 -07001336 if (blk_queue_dying(req->q))
1337 cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1);
1338 else
1339 cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
1340
1341
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001342 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n",
1343 req->tag, nvmeq->qid);
1344 ctx = cancel_cmd_info(cmd, &fn);
1345 fn(nvmeq, ctx, &cqe);
1346}
1347
1348static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1349{
1350 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
1351 struct nvme_queue *nvmeq = cmd->nvmeq;
1352
Keith Busch07836e62015-02-19 10:34:48 -07001353 dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag,
1354 nvmeq->qid);
1355 spin_lock_irq(&nvmeq->q_lock);
1356 nvme_abort_req(req);
1357 spin_unlock_irq(&nvmeq->q_lock);
1358
Keith Busch7a509a62015-01-07 18:55:53 -07001359 /*
1360 * The aborted req will be completed on receiving the abort req.
1361 * We enable the timer again. If hit twice, it'll cause a device reset,
1362 * as the device then is in a faulty state.
1363 */
Keith Busch07836e62015-02-19 10:34:48 -07001364 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001365}
1366
Keith Buschf435c282014-07-07 09:14:42 -06001367static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001368{
1369 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1370 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001371 if (nvmeq->sq_cmds)
1372 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
Matthew Wilcox9e866772012-08-03 13:55:56 -04001373 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1374 kfree(nvmeq);
1375}
1376
Keith Buscha1a5ef92013-12-16 13:50:00 -05001377static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001378{
1379 int i;
1380
Keith Buscha1a5ef92013-12-16 13:50:00 -05001381 for (i = dev->queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001382 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch22404272013-07-15 15:02:20 -06001383 dev->queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001384 dev->queues[i] = NULL;
Keith Buschf435c282014-07-07 09:14:42 -06001385 nvme_free_queue(nvmeq);
kaoudis121c7ad2015-01-14 21:01:58 -07001386 }
Keith Busch22404272013-07-15 15:02:20 -06001387}
1388
Keith Busch4d115422013-12-10 13:10:40 -07001389/**
1390 * nvme_suspend_queue - put queue into suspended state
1391 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001392 */
1393static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001394{
Keith Busch2b25d982014-12-22 12:59:04 -07001395 int vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001396
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001397 spin_lock_irq(&nvmeq->q_lock);
Keith Busch2b25d982014-12-22 12:59:04 -07001398 if (nvmeq->cq_vector == -1) {
1399 spin_unlock_irq(&nvmeq->q_lock);
1400 return 1;
1401 }
1402 vector = nvmeq->dev->entry[nvmeq->cq_vector].vector;
Keith Busch42f61422014-03-24 10:46:25 -06001403 nvmeq->dev->online_queues--;
Keith Busch2b25d982014-12-22 12:59:04 -07001404 nvmeq->cq_vector = -1;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001405 spin_unlock_irq(&nvmeq->q_lock);
1406
Keith Busch6df3dbc2015-03-26 13:49:33 -06001407 if (!nvmeq->qid && nvmeq->dev->admin_q)
1408 blk_mq_freeze_queue_start(nvmeq->dev->admin_q);
1409
Matthew Wilcoxaba20802011-03-27 08:52:06 -04001410 irq_set_affinity_hint(vector, NULL);
1411 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001412
Keith Busch4d115422013-12-10 13:10:40 -07001413 return 0;
1414}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001415
Keith Busch4d115422013-12-10 13:10:40 -07001416static void nvme_clear_queue(struct nvme_queue *nvmeq)
1417{
Keith Busch22404272013-07-15 15:02:20 -06001418 spin_lock_irq(&nvmeq->q_lock);
Keith Busch42483222015-06-01 09:29:54 -06001419 if (nvmeq->tags && *nvmeq->tags)
1420 blk_mq_all_tag_busy_iter(*nvmeq->tags, nvme_cancel_queue_ios, nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001421 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001422}
1423
Keith Busch4d115422013-12-10 13:10:40 -07001424static void nvme_disable_queue(struct nvme_dev *dev, int qid)
1425{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001426 struct nvme_queue *nvmeq = dev->queues[qid];
Keith Busch4d115422013-12-10 13:10:40 -07001427
1428 if (!nvmeq)
1429 return;
1430 if (nvme_suspend_queue(nvmeq))
1431 return;
1432
Keith Busch0e53d182013-12-10 13:10:39 -07001433 /* Don't tell the adapter to delete the admin queue.
1434 * Don't tell a removed adapter to delete IO queues. */
1435 if (qid && readl(&dev->bar->csts) != -1) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001436 adapter_delete_sq(dev, qid);
1437 adapter_delete_cq(dev, qid);
1438 }
Keith Busch07836e62015-02-19 10:34:48 -07001439
1440 spin_lock_irq(&nvmeq->q_lock);
1441 nvme_process_cq(nvmeq);
1442 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001443}
1444
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001445static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1446 int entry_size)
1447{
1448 int q_depth = dev->q_depth;
1449 unsigned q_size_aligned = roundup(q_depth * entry_size, dev->page_size);
1450
1451 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
Jon Derrickc45f5c92015-07-21 15:08:13 -06001452 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
1453 mem_per_q = round_down(mem_per_q, dev->page_size);
1454 q_depth = div_u64(mem_per_q, entry_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001455
1456 /*
1457 * Ensure the reduced q_depth is above some threshold where it
1458 * would be better to map queues in system memory with the
1459 * original depth
1460 */
1461 if (q_depth < 64)
1462 return -ENOMEM;
1463 }
1464
1465 return q_depth;
1466}
1467
1468static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1469 int qid, int depth)
1470{
1471 if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) {
1472 unsigned offset = (qid - 1) *
1473 roundup(SQ_SIZE(depth), dev->page_size);
1474 nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset;
1475 nvmeq->sq_cmds_io = dev->cmb + offset;
1476 } else {
1477 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1478 &nvmeq->sq_dma_addr, GFP_KERNEL);
1479 if (!nvmeq->sq_cmds)
1480 return -ENOMEM;
1481 }
1482
1483 return 0;
1484}
1485
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001486static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
Keith Busch2b25d982014-12-22 12:59:04 -07001487 int depth)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001488{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001489 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001490 if (!nvmeq)
1491 return NULL;
1492
Christoph Hellwige75ec752015-05-22 11:12:39 +02001493 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
Joe Perches4d51abf2014-06-15 13:37:33 -07001494 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001495 if (!nvmeq->cqes)
1496 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001497
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001498 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001499 goto free_cqdma;
1500
Christoph Hellwige75ec752015-05-22 11:12:39 +02001501 nvmeq->q_dmadev = dev->dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001502 nvmeq->dev = dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001503 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
1504 dev->instance, qid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001505 spin_lock_init(&nvmeq->q_lock);
1506 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001507 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001508 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001509 nvmeq->q_depth = depth;
Keith Buschc30341d2013-12-10 13:10:38 -07001510 nvmeq->qid = qid;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001511 nvmeq->cq_vector = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001512 dev->queues[qid] = nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001513
Jon Derrick36a7e992015-05-27 12:26:23 -06001514 /* make sure queue descriptor is set before queue count, for kthread */
1515 mb();
1516 dev->queue_count++;
1517
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001518 return nvmeq;
1519
1520 free_cqdma:
Christoph Hellwige75ec752015-05-22 11:12:39 +02001521 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001522 nvmeq->cq_dma_addr);
1523 free_nvmeq:
1524 kfree(nvmeq);
1525 return NULL;
1526}
1527
Matthew Wilcox30010822011-01-20 09:10:15 -05001528static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1529 const char *name)
1530{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001531 if (use_threaded_interrupts)
1532 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001533 nvme_irq_check, nvme_irq, IRQF_SHARED,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001534 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001535 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001536 IRQF_SHARED, name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001537}
1538
Keith Busch22404272013-07-15 15:02:20 -06001539static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001540{
Keith Busch22404272013-07-15 15:02:20 -06001541 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001542
Keith Busch7be50e92014-09-10 15:48:47 -06001543 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001544 nvmeq->sq_tail = 0;
1545 nvmeq->cq_head = 0;
1546 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001547 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001548 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Keith Busch42f61422014-03-24 10:46:25 -06001549 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001550 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001551}
1552
1553static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1554{
1555 struct nvme_dev *dev = nvmeq->dev;
1556 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001557
Keith Busch2b25d982014-12-22 12:59:04 -07001558 nvmeq->cq_vector = qid - 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001559 result = adapter_alloc_cq(dev, qid, nvmeq);
1560 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001561 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001562
1563 result = adapter_alloc_sq(dev, qid, nvmeq);
1564 if (result < 0)
1565 goto release_cq;
1566
Matthew Wilcox3193f072014-01-27 15:57:22 -05001567 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001568 if (result < 0)
1569 goto release_sq;
1570
Keith Busch22404272013-07-15 15:02:20 -06001571 nvme_init_queue(nvmeq, qid);
Keith Busch22404272013-07-15 15:02:20 -06001572 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001573
1574 release_sq:
1575 adapter_delete_sq(dev, qid);
1576 release_cq:
1577 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001578 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001579}
1580
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001581static int nvme_wait_ready(struct nvme_dev *dev, u64 cap, bool enabled)
1582{
1583 unsigned long timeout;
1584 u32 bit = enabled ? NVME_CSTS_RDY : 0;
1585
1586 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1587
1588 while ((readl(&dev->bar->csts) & NVME_CSTS_RDY) != bit) {
1589 msleep(100);
1590 if (fatal_signal_pending(current))
1591 return -EINTR;
1592 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001593 dev_err(dev->dev,
Matthew Wilcox27e81662014-04-11 11:58:45 -04001594 "Device not ready; aborting %s\n", enabled ?
1595 "initialisation" : "reset");
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001596 return -ENODEV;
1597 }
1598 }
1599
1600 return 0;
1601}
1602
1603/*
1604 * If the device has been passed off to us in an enabled state, just clear
1605 * the enabled bit. The spec says we should set the 'shutdown notification
1606 * bits', but doing so may cause the device to complete commands to the
1607 * admin queue ... and we don't know what memory that might be pointing at!
1608 */
1609static int nvme_disable_ctrl(struct nvme_dev *dev, u64 cap)
1610{
Dan McLeran01079522014-06-23 08:24:36 -06001611 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1612 dev->ctrl_config &= ~NVME_CC_ENABLE;
1613 writel(dev->ctrl_config, &dev->bar->cc);
Matthew Wilcox44af1462013-05-04 06:43:17 -04001614
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001615 return nvme_wait_ready(dev, cap, false);
1616}
1617
1618static int nvme_enable_ctrl(struct nvme_dev *dev, u64 cap)
1619{
Dan McLeran01079522014-06-23 08:24:36 -06001620 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1621 dev->ctrl_config |= NVME_CC_ENABLE;
1622 writel(dev->ctrl_config, &dev->bar->cc);
1623
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001624 return nvme_wait_ready(dev, cap, true);
1625}
1626
Keith Busch1894d8f2013-07-15 15:02:22 -06001627static int nvme_shutdown_ctrl(struct nvme_dev *dev)
1628{
1629 unsigned long timeout;
Keith Busch1894d8f2013-07-15 15:02:22 -06001630
Dan McLeran01079522014-06-23 08:24:36 -06001631 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1632 dev->ctrl_config |= NVME_CC_SHN_NORMAL;
1633
1634 writel(dev->ctrl_config, &dev->bar->cc);
Keith Busch1894d8f2013-07-15 15:02:22 -06001635
Dan McLeran2484f402014-07-01 09:33:32 -06001636 timeout = SHUTDOWN_TIMEOUT + jiffies;
Keith Busch1894d8f2013-07-15 15:02:22 -06001637 while ((readl(&dev->bar->csts) & NVME_CSTS_SHST_MASK) !=
1638 NVME_CSTS_SHST_CMPLT) {
1639 msleep(100);
1640 if (fatal_signal_pending(current))
1641 return -EINTR;
1642 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001643 dev_err(dev->dev,
Keith Busch1894d8f2013-07-15 15:02:22 -06001644 "Device shutdown incomplete; abort shutdown\n");
1645 return -ENODEV;
1646 }
1647 }
1648
1649 return 0;
1650}
1651
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001652static struct blk_mq_ops nvme_mq_admin_ops = {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001653 .queue_rq = nvme_queue_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001654 .map_queue = blk_mq_map_queue,
1655 .init_hctx = nvme_admin_init_hctx,
Keith Busch4af0e212015-06-08 10:08:13 -06001656 .exit_hctx = nvme_admin_exit_hctx,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001657 .init_request = nvme_admin_init_request,
1658 .timeout = nvme_timeout,
1659};
1660
1661static struct blk_mq_ops nvme_mq_ops = {
1662 .queue_rq = nvme_queue_rq,
1663 .map_queue = blk_mq_map_queue,
1664 .init_hctx = nvme_init_hctx,
1665 .init_request = nvme_init_request,
1666 .timeout = nvme_timeout,
1667};
1668
Keith Buschea191d22015-01-07 18:55:49 -07001669static void nvme_dev_remove_admin(struct nvme_dev *dev)
1670{
1671 if (dev->admin_q && !blk_queue_dying(dev->admin_q)) {
1672 blk_cleanup_queue(dev->admin_q);
1673 blk_mq_free_tag_set(&dev->admin_tagset);
1674 }
1675}
1676
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001677static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1678{
1679 if (!dev->admin_q) {
1680 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1681 dev->admin_tagset.nr_hw_queues = 1;
1682 dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1;
Keith Busch1efccc92015-03-31 10:37:17 -06001683 dev->admin_tagset.reserved_tags = 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001684 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001685 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
Jens Axboeac3dd5b2015-01-22 12:07:58 -07001686 dev->admin_tagset.cmd_size = nvme_cmd_size(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001687 dev->admin_tagset.driver_data = dev;
1688
1689 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1690 return -ENOMEM;
1691
1692 dev->admin_q = blk_mq_init_queue(&dev->admin_tagset);
Ming Lei35b489d2015-01-02 14:25:27 +00001693 if (IS_ERR(dev->admin_q)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001694 blk_mq_free_tag_set(&dev->admin_tagset);
1695 return -ENOMEM;
1696 }
Keith Buschea191d22015-01-07 18:55:49 -07001697 if (!blk_get_queue(dev->admin_q)) {
1698 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06001699 dev->admin_q = NULL;
Keith Buschea191d22015-01-07 18:55:49 -07001700 return -ENODEV;
1701 }
Keith Busch0fb59cb2015-01-07 18:55:50 -07001702 } else
1703 blk_mq_unfreeze_queue(dev->admin_q);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001704
1705 return 0;
1706}
1707
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001708static int nvme_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001709{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001710 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001711 u32 aqa;
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001712 u64 cap = readq(&dev->bar->cap);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001713 struct nvme_queue *nvmeq;
Keith Busch1d090622014-06-23 11:34:01 -06001714 unsigned page_shift = PAGE_SHIFT;
1715 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12;
1716 unsigned dev_page_max = NVME_CAP_MPSMAX(cap) + 12;
1717
1718 if (page_shift < dev_page_min) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001719 dev_err(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001720 "Minimum device page size (%u) too large for "
1721 "host (%u)\n", 1 << dev_page_min,
1722 1 << page_shift);
1723 return -ENODEV;
1724 }
1725 if (page_shift > dev_page_max) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001726 dev_info(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001727 "Device maximum page size (%u) smaller than "
1728 "host (%u); enabling work-around\n",
1729 1 << dev_page_max, 1 << page_shift);
1730 page_shift = dev_page_max;
1731 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001732
Keith Buschdfbac8c2015-08-10 15:20:40 -06001733 dev->subsystem = readl(&dev->bar->vs) >= NVME_VS(1, 1) ?
1734 NVME_CAP_NSSRC(cap) : 0;
1735
1736 if (dev->subsystem && (readl(&dev->bar->csts) & NVME_CSTS_NSSRO))
1737 writel(NVME_CSTS_NSSRO, &dev->bar->csts);
1738
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001739 result = nvme_disable_ctrl(dev, cap);
1740 if (result < 0)
1741 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001742
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001743 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001744 if (!nvmeq) {
Keith Busch2b25d982014-12-22 12:59:04 -07001745 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
Keith Buschcd638942013-07-15 15:02:23 -06001746 if (!nvmeq)
1747 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001748 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001749
1750 aqa = nvmeq->q_depth - 1;
1751 aqa |= aqa << 16;
1752
Keith Busch1d090622014-06-23 11:34:01 -06001753 dev->page_size = 1 << page_shift;
1754
Dan McLeran01079522014-06-23 08:24:36 -06001755 dev->ctrl_config = NVME_CC_CSS_NVM;
Keith Busch1d090622014-06-23 11:34:01 -06001756 dev->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001757 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -04001758 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001759
1760 writel(aqa, &dev->bar->aqa);
1761 writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1762 writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001763
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001764 result = nvme_enable_ctrl(dev, cap);
Keith Busch025c5572013-05-01 13:07:51 -06001765 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001766 goto free_nvmeq;
1767
Keith Busch2b25d982014-12-22 12:59:04 -07001768 nvmeq->cq_vector = 0;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001769 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001770 if (result) {
1771 nvmeq->cq_vector = -1;
Keith Busch0fb59cb2015-01-07 18:55:50 -07001772 goto free_nvmeq;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001773 }
Keith Busch025c5572013-05-01 13:07:51 -06001774
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001775 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001776
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001777 free_nvmeq:
1778 nvme_free_queues(dev, 0);
1779 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001780}
1781
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001782static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1783{
1784 struct nvme_dev *dev = ns->dev;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001785 struct nvme_user_io io;
1786 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001787 unsigned length, meta_len;
Keith Buscha67a9512015-04-07 16:57:19 -06001788 int status, write;
Keith Buscha67a9512015-04-07 16:57:19 -06001789 dma_addr_t meta_dma = 0;
1790 void *meta = NULL;
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001791 void __user *metadata;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001792
1793 if (copy_from_user(&io, uio, sizeof(io)))
1794 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001795
1796 switch (io.opcode) {
1797 case nvme_cmd_write:
1798 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001799 case nvme_cmd_compare:
Matthew Wilcox64132142011-08-09 12:56:37 -04001800 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001801 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001802 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001803 }
1804
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001805 length = (io.nblocks + 1) << ns->lba_shift;
1806 meta_len = (io.nblocks + 1) * ns->ms;
Linus Torvalds6a398a32015-06-25 15:12:50 -07001807 metadata = (void __user *)(unsigned long)io.metadata;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001808 write = io.opcode & 1;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001809
Keith Busch71feb362015-06-19 11:07:30 -06001810 if (ns->ext) {
1811 length += meta_len;
1812 meta_len = 0;
Keith Buscha67a9512015-04-07 16:57:19 -06001813 }
1814 if (meta_len) {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001815 if (((io.metadata & 3) || !io.metadata) && !ns->ext)
1816 return -EINVAL;
1817
Christoph Hellwige75ec752015-05-22 11:12:39 +02001818 meta = dma_alloc_coherent(dev->dev, meta_len,
Keith Buscha67a9512015-04-07 16:57:19 -06001819 &meta_dma, GFP_KERNEL);
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001820
Keith Buscha67a9512015-04-07 16:57:19 -06001821 if (!meta) {
1822 status = -ENOMEM;
1823 goto unmap;
1824 }
1825 if (write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001826 if (copy_from_user(meta, metadata, meta_len)) {
Keith Buscha67a9512015-04-07 16:57:19 -06001827 status = -EFAULT;
1828 goto unmap;
1829 }
1830 }
1831 }
1832
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001833 memset(&c, 0, sizeof(c));
1834 c.rw.opcode = io.opcode;
1835 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001836 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001837 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001838 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001839 c.rw.control = cpu_to_le16(io.control);
Matthew Wilcox1c9b5262013-04-16 15:21:06 -04001840 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1841 c.rw.reftag = cpu_to_le32(io.reftag);
1842 c.rw.apptag = cpu_to_le16(io.apptag);
1843 c.rw.appmask = cpu_to_le16(io.appmask);
Keith Buscha67a9512015-04-07 16:57:19 -06001844 c.rw.metadata = cpu_to_le64(meta_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001845
1846 status = __nvme_submit_sync_cmd(ns->queue, &c, NULL,
1847 (void __user *)io.addr, length, NULL, 0);
Keith Buschf410c682013-04-23 17:23:59 -06001848 unmap:
Keith Buscha67a9512015-04-07 16:57:19 -06001849 if (meta) {
1850 if (status == NVME_SC_SUCCESS && !write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001851 if (copy_to_user(metadata, meta, meta_len))
Keith Buscha67a9512015-04-07 16:57:19 -06001852 status = -EFAULT;
1853 }
Christoph Hellwige75ec752015-05-22 11:12:39 +02001854 dma_free_coherent(dev->dev, meta_len, meta, meta_dma);
Keith Buschf410c682013-04-23 17:23:59 -06001855 }
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001856 return status;
1857}
1858
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001859static int nvme_user_cmd(struct nvme_dev *dev, struct nvme_ns *ns,
1860 struct nvme_passthru_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001861{
Keith Busch7963e522014-09-12 16:07:20 -06001862 struct nvme_passthru_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001863 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001864 unsigned timeout = 0;
1865 int status;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001866
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001867 if (!capable(CAP_SYS_ADMIN))
1868 return -EACCES;
1869 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001870 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001871
1872 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001873 c.common.opcode = cmd.opcode;
1874 c.common.flags = cmd.flags;
1875 c.common.nsid = cpu_to_le32(cmd.nsid);
1876 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1877 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1878 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1879 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1880 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1881 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1882 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1883 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1884
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001885 if (cmd.timeout_ms)
1886 timeout = msecs_to_jiffies(cmd.timeout_ms);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001887
Christoph Hellwigf705f832015-05-22 11:12:38 +02001888 status = __nvme_submit_sync_cmd(ns ? ns->queue : dev->admin_q, &c,
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001889 NULL, (void __user *)cmd.addr, cmd.data_len,
1890 &cmd.result, timeout);
1891 if (status >= 0) {
1892 if (put_user(cmd.result, &ucmd->result))
1893 return -EFAULT;
Keith Buschedd10d32014-04-03 16:45:23 -06001894 }
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001895
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001896 return status;
1897}
1898
Jon Derrick81f03fe2015-08-10 15:20:41 -06001899static int nvme_subsys_reset(struct nvme_dev *dev)
1900{
1901 if (!dev->subsystem)
1902 return -ENOTTY;
1903
1904 writel(0x4E564D65, &dev->bar->nssr); /* "NVMe" */
1905 return 0;
1906}
1907
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001908static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1909 unsigned long arg)
1910{
1911 struct nvme_ns *ns = bdev->bd_disk->private_data;
1912
1913 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001914 case NVME_IOCTL_ID:
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04001915 force_successful_syscall_return();
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001916 return ns->ns_id;
1917 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001918 return nvme_user_cmd(ns->dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06001919 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001920 return nvme_user_cmd(ns->dev, ns, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001921 case NVME_IOCTL_SUBMIT_IO:
1922 return nvme_submit_io(ns, (void __user *)arg);
Vishal Verma5d0f6132013-03-04 18:40:58 -07001923 case SG_GET_VERSION_NUM:
1924 return nvme_sg_get_version_num((void __user *)arg);
1925 case SG_IO:
1926 return nvme_sg_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001927 default:
1928 return -ENOTTY;
1929 }
1930}
1931
Keith Busch320a3822013-10-23 13:07:34 -06001932#ifdef CONFIG_COMPAT
1933static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode,
1934 unsigned int cmd, unsigned long arg)
1935{
Keith Busch320a3822013-10-23 13:07:34 -06001936 switch (cmd) {
1937 case SG_IO:
Keith Busche1797292014-08-27 13:55:38 -06001938 return -ENOIOCTLCMD;
Keith Busch320a3822013-10-23 13:07:34 -06001939 }
1940 return nvme_ioctl(bdev, mode, cmd, arg);
1941}
1942#else
1943#define nvme_compat_ioctl NULL
1944#endif
1945
Keith Busch5105aa52015-10-02 10:37:28 -06001946static void nvme_free_dev(struct kref *kref);
Keith Busch188c3562015-10-01 17:14:10 -06001947static void nvme_free_ns(struct kref *kref)
1948{
1949 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
1950
1951 spin_lock(&dev_list_lock);
1952 ns->disk->private_data = NULL;
1953 spin_unlock(&dev_list_lock);
1954
Keith Busch5105aa52015-10-02 10:37:28 -06001955 kref_put(&ns->dev->kref, nvme_free_dev);
Keith Busch188c3562015-10-01 17:14:10 -06001956 put_disk(ns->disk);
1957 kfree(ns);
1958}
1959
Keith Busch9ac27092014-01-31 16:53:39 -07001960static int nvme_open(struct block_device *bdev, fmode_t mode)
1961{
Keith Busch9e603522014-10-03 11:15:47 -06001962 int ret = 0;
1963 struct nvme_ns *ns;
Keith Busch9ac27092014-01-31 16:53:39 -07001964
Keith Busch9e603522014-10-03 11:15:47 -06001965 spin_lock(&dev_list_lock);
1966 ns = bdev->bd_disk->private_data;
1967 if (!ns)
1968 ret = -ENXIO;
Keith Busch188c3562015-10-01 17:14:10 -06001969 else if (!kref_get_unless_zero(&ns->kref))
Keith Busch9e603522014-10-03 11:15:47 -06001970 ret = -ENXIO;
1971 spin_unlock(&dev_list_lock);
1972
1973 return ret;
Keith Busch9ac27092014-01-31 16:53:39 -07001974}
1975
Keith Busch9ac27092014-01-31 16:53:39 -07001976static void nvme_release(struct gendisk *disk, fmode_t mode)
1977{
1978 struct nvme_ns *ns = disk->private_data;
Keith Busch188c3562015-10-01 17:14:10 -06001979 kref_put(&ns->kref, nvme_free_ns);
Keith Busch9ac27092014-01-31 16:53:39 -07001980}
1981
Keith Busch4cc09e22014-04-02 15:45:37 -06001982static int nvme_getgeo(struct block_device *bd, struct hd_geometry *geo)
1983{
1984 /* some standard values */
1985 geo->heads = 1 << 6;
1986 geo->sectors = 1 << 5;
1987 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
1988 return 0;
1989}
1990
Keith Busche1e5e562015-02-19 13:39:03 -07001991static void nvme_config_discard(struct nvme_ns *ns)
1992{
1993 u32 logical_block_size = queue_logical_block_size(ns->queue);
1994 ns->queue->limits.discard_zeroes_data = 0;
1995 ns->queue->limits.discard_alignment = logical_block_size;
1996 ns->queue->limits.discard_granularity = logical_block_size;
Jens Axboe2bb4cd52015-07-14 08:15:12 -06001997 blk_queue_max_discard_sectors(ns->queue, 0xffffffff);
Keith Busche1e5e562015-02-19 13:39:03 -07001998 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
1999}
2000
Keith Busch1b9dbf72014-09-10 17:21:14 -06002001static int nvme_revalidate_disk(struct gendisk *disk)
2002{
2003 struct nvme_ns *ns = disk->private_data;
2004 struct nvme_dev *dev = ns->dev;
2005 struct nvme_id_ns *id;
Keith Buscha67a9512015-04-07 16:57:19 -06002006 u8 lbaf, pi_type;
2007 u16 old_ms;
Keith Busche1e5e562015-02-19 13:39:03 -07002008 unsigned short bs;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002009
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002010 if (nvme_identify_ns(dev, ns->ns_id, &id)) {
Keith Buscha5768aa2015-06-01 14:28:14 -06002011 dev_warn(dev->dev, "%s: Identify failure nvme%dn%d\n", __func__,
2012 dev->instance, ns->ns_id);
2013 return -ENODEV;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002014 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002015 if (id->ncap == 0) {
2016 kfree(id);
2017 return -ENODEV;
Keith Busche1e5e562015-02-19 13:39:03 -07002018 }
Keith Busch1b9dbf72014-09-10 17:21:14 -06002019
Keith Busche1e5e562015-02-19 13:39:03 -07002020 old_ms = ns->ms;
2021 lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002022 ns->lba_shift = id->lbaf[lbaf].ds;
Keith Busche1e5e562015-02-19 13:39:03 -07002023 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms);
Keith Buscha67a9512015-04-07 16:57:19 -06002024 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002025
Keith Busche1e5e562015-02-19 13:39:03 -07002026 /*
2027 * If identify namespace failed, use default 512 byte block size so
2028 * block layer can use before failing read/write for 0 capacity.
2029 */
2030 if (ns->lba_shift == 0)
2031 ns->lba_shift = 9;
2032 bs = 1 << ns->lba_shift;
2033
2034 /* XXX: PI implementation requires metadata equal t10 pi tuple size */
2035 pi_type = ns->ms == sizeof(struct t10_pi_tuple) ?
2036 id->dps & NVME_NS_DPS_PI_MASK : 0;
2037
Keith Busch52b68d72015-02-23 09:16:21 -07002038 if (blk_get_integrity(disk) && (ns->pi_type != pi_type ||
2039 ns->ms != old_ms ||
Keith Busche1e5e562015-02-19 13:39:03 -07002040 bs != queue_logical_block_size(disk->queue) ||
Keith Buscha67a9512015-04-07 16:57:19 -06002041 (ns->ms && ns->ext)))
Keith Busche1e5e562015-02-19 13:39:03 -07002042 blk_integrity_unregister(disk);
2043
2044 ns->pi_type = pi_type;
2045 blk_queue_logical_block_size(ns->queue, bs);
2046
Keith Busch52b68d72015-02-23 09:16:21 -07002047 if (ns->ms && !blk_get_integrity(disk) && (disk->flags & GENHD_FL_UP) &&
Keith Buscha67a9512015-04-07 16:57:19 -06002048 !ns->ext)
Keith Busche1e5e562015-02-19 13:39:03 -07002049 nvme_init_integrity(ns);
2050
Alok Pandeye19b1272015-08-26 08:56:14 -06002051 if (ns->ms && !(ns->ms == 8 && ns->pi_type) && !blk_get_integrity(disk))
Keith Busche1e5e562015-02-19 13:39:03 -07002052 set_capacity(disk, 0);
2053 else
2054 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
2055
2056 if (dev->oncs & NVME_CTRL_ONCS_DSM)
2057 nvme_config_discard(ns);
2058
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002059 kfree(id);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002060 return 0;
2061}
2062
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002063static const struct block_device_operations nvme_fops = {
2064 .owner = THIS_MODULE,
2065 .ioctl = nvme_ioctl,
Keith Busch320a3822013-10-23 13:07:34 -06002066 .compat_ioctl = nvme_compat_ioctl,
Keith Busch9ac27092014-01-31 16:53:39 -07002067 .open = nvme_open,
2068 .release = nvme_release,
Keith Busch4cc09e22014-04-02 15:45:37 -06002069 .getgeo = nvme_getgeo,
Keith Busch1b9dbf72014-09-10 17:21:14 -06002070 .revalidate_disk= nvme_revalidate_disk,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002071};
2072
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002073static int nvme_kthread(void *data)
2074{
Keith Buschd4b4ff82013-12-10 13:10:37 -07002075 struct nvme_dev *dev, *next;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002076
2077 while (!kthread_should_stop()) {
Arjan van de Ven564a2322013-05-01 16:38:23 -04002078 set_current_state(TASK_INTERRUPTIBLE);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002079 spin_lock(&dev_list_lock);
Keith Buschd4b4ff82013-12-10 13:10:37 -07002080 list_for_each_entry_safe(dev, next, &dev_list, node) {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002081 int i;
Keith Buschdfbac8c2015-08-10 15:20:40 -06002082 u32 csts = readl(&dev->bar->csts);
2083
2084 if ((dev->subsystem && (csts & NVME_CSTS_NSSRO)) ||
2085 csts & NVME_CSTS_CFS) {
Keith Buschd4b4ff82013-12-10 13:10:37 -07002086 if (work_busy(&dev->reset_work))
2087 continue;
2088 list_del_init(&dev->node);
Christoph Hellwige75ec752015-05-22 11:12:39 +02002089 dev_warn(dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002090 "Failed status: %x, reset controller\n",
2091 readl(&dev->bar->csts));
Tejun Heo9ca97372014-03-07 10:24:49 -05002092 dev->reset_workfn = nvme_reset_failed_dev;
Keith Buschd4b4ff82013-12-10 13:10:37 -07002093 queue_work(nvme_workq, &dev->reset_work);
2094 continue;
2095 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002096 for (i = 0; i < dev->queue_count; i++) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002097 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05002098 if (!nvmeq)
2099 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002100 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxbc57a0f2013-06-24 11:56:42 -04002101 nvme_process_cq(nvmeq);
Keith Busch6fccf932014-06-18 13:58:57 -06002102
2103 while ((i == 0) && (dev->event_limit > 0)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002104 if (nvme_submit_async_admin_req(dev))
Keith Busch6fccf932014-06-18 13:58:57 -06002105 break;
2106 dev->event_limit--;
2107 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002108 spin_unlock_irq(&nvmeq->q_lock);
2109 }
2110 }
2111 spin_unlock(&dev_list_lock);
Arjan van de Venacb7aa02013-02-04 14:44:33 -08002112 schedule_timeout(round_jiffies_relative(HZ));
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002113 }
2114 return 0;
2115}
2116
Keith Busche1e5e562015-02-19 13:39:03 -07002117static void nvme_alloc_ns(struct nvme_dev *dev, unsigned nsid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002118{
2119 struct nvme_ns *ns;
2120 struct gendisk *disk;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002121 int node = dev_to_node(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002122
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002123 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002124 if (!ns)
Keith Busche1e5e562015-02-19 13:39:03 -07002125 return;
2126
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002127 ns->queue = blk_mq_init_queue(&dev->tagset);
Dan Carpenter9f173b32014-11-05 23:39:09 +03002128 if (IS_ERR(ns->queue))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002129 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07002130 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
2131 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002132 ns->dev = dev;
2133 ns->queue->queuedata = ns;
2134
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002135 disk = alloc_disk_node(0, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002136 if (!disk)
2137 goto out_free_queue;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002138
Keith Busch188c3562015-10-01 17:14:10 -06002139 kref_init(&ns->kref);
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002140 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002141 ns->disk = disk;
Keith Busche1e5e562015-02-19 13:39:03 -07002142 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
2143 list_add_tail(&ns->list, &dev->namespaces);
2144
Keith Busche9ef4632012-07-24 15:01:04 -06002145 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Keith Busche8244102015-08-12 16:17:54 -06002146 if (dev->max_hw_sectors) {
Keith Busch8fc23e02012-07-26 11:29:57 -06002147 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
Keith Busche8244102015-08-12 16:17:54 -06002148 blk_queue_max_segments(ns->queue,
2149 ((dev->max_hw_sectors << 9) / dev->page_size) + 1);
2150 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002151 if (dev->stripe_size)
2152 blk_queue_chunk_sectors(ns->queue, dev->stripe_size >> 9);
Keith Buscha7d2ce22014-04-29 11:41:28 -06002153 if (dev->vwc & NVME_CTRL_VWC_PRESENT)
2154 blk_queue_flush(ns->queue, REQ_FLUSH | REQ_FUA);
Keith Busch03100aa2015-08-19 14:24:05 -07002155 blk_queue_virt_boundary(ns->queue, dev->page_size - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002156
2157 disk->major = nvme_major;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002158 disk->first_minor = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002159 disk->fops = &nvme_fops;
2160 disk->private_data = ns;
2161 disk->queue = ns->queue;
Keith Buschb3fffde2015-02-03 11:21:42 -07002162 disk->driverfs_dev = dev->device;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002163 disk->flags = GENHD_FL_EXT_DEVT;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002164 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002165
Keith Busche1e5e562015-02-19 13:39:03 -07002166 /*
2167 * Initialize capacity to 0 until we establish the namespace format and
2168 * setup integrity extentions if necessary. The revalidate_disk after
2169 * add_disk allows the driver to register with integrity if the format
2170 * requires it.
2171 */
2172 set_capacity(disk, 0);
Keith Buscha5768aa2015-06-01 14:28:14 -06002173 if (nvme_revalidate_disk(ns->disk))
2174 goto out_free_disk;
2175
Keith Busch5105aa52015-10-02 10:37:28 -06002176 kref_get(&dev->kref);
Keith Busche1e5e562015-02-19 13:39:03 -07002177 add_disk(ns->disk);
Keith Busch7bee6072015-07-14 11:57:48 -06002178 if (ns->ms) {
2179 struct block_device *bd = bdget_disk(ns->disk, 0);
2180 if (!bd)
2181 return;
2182 if (blkdev_get(bd, FMODE_READ, NULL)) {
2183 bdput(bd);
2184 return;
2185 }
2186 blkdev_reread_part(bd);
2187 blkdev_put(bd, FMODE_READ);
2188 }
Keith Busche1e5e562015-02-19 13:39:03 -07002189 return;
Keith Buscha5768aa2015-06-01 14:28:14 -06002190 out_free_disk:
2191 kfree(disk);
2192 list_del(&ns->list);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002193 out_free_queue:
2194 blk_cleanup_queue(ns->queue);
2195 out_free_ns:
2196 kfree(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002197}
2198
Keith Busch42f61422014-03-24 10:46:25 -06002199static void nvme_create_io_queues(struct nvme_dev *dev)
2200{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002201 unsigned i;
Keith Busch42f61422014-03-24 10:46:25 -06002202
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002203 for (i = dev->queue_count; i <= dev->max_qid; i++)
Keith Busch2b25d982014-12-22 12:59:04 -07002204 if (!nvme_alloc_queue(dev, i, dev->q_depth))
Keith Busch42f61422014-03-24 10:46:25 -06002205 break;
2206
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002207 for (i = dev->online_queues; i <= dev->queue_count - 1; i++)
2208 if (nvme_create_queue(dev->queues[i], i))
Keith Busch42f61422014-03-24 10:46:25 -06002209 break;
2210}
2211
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002212static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002213{
2214 int status;
2215 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002216 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002217
Matthew Wilcoxdf348132012-01-11 07:29:56 -07002218 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002219 &result);
Matthew Wilcox27e81662014-04-11 11:58:45 -04002220 if (status < 0)
2221 return status;
2222 if (status > 0) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002223 dev_err(dev->dev, "Could not set queue count (%d)\n", status);
Keith Buschbadc34d2014-06-23 14:25:35 -06002224 return 0;
Matthew Wilcox27e81662014-04-11 11:58:45 -04002225 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002226 return min(result & 0xffff, result >> 16) + 1;
2227}
2228
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002229static void __iomem *nvme_map_cmb(struct nvme_dev *dev)
2230{
2231 u64 szu, size, offset;
2232 u32 cmbloc;
2233 resource_size_t bar_size;
2234 struct pci_dev *pdev = to_pci_dev(dev->dev);
2235 void __iomem *cmb;
2236 dma_addr_t dma_addr;
2237
2238 if (!use_cmb_sqes)
2239 return NULL;
2240
2241 dev->cmbsz = readl(&dev->bar->cmbsz);
2242 if (!(NVME_CMB_SZ(dev->cmbsz)))
2243 return NULL;
2244
2245 cmbloc = readl(&dev->bar->cmbloc);
2246
2247 szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz));
2248 size = szu * NVME_CMB_SZ(dev->cmbsz);
2249 offset = szu * NVME_CMB_OFST(cmbloc);
2250 bar_size = pci_resource_len(pdev, NVME_CMB_BIR(cmbloc));
2251
2252 if (offset > bar_size)
2253 return NULL;
2254
2255 /*
2256 * Controllers may support a CMB size larger than their BAR,
2257 * for example, due to being behind a bridge. Reduce the CMB to
2258 * the reported size of the BAR
2259 */
2260 if (size > bar_size - offset)
2261 size = bar_size - offset;
2262
2263 dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(cmbloc)) + offset;
2264 cmb = ioremap_wc(dma_addr, size);
2265 if (!cmb)
2266 return NULL;
2267
2268 dev->cmb_dma_addr = dma_addr;
2269 dev->cmb_size = size;
2270 return cmb;
2271}
2272
2273static inline void nvme_release_cmb(struct nvme_dev *dev)
2274{
2275 if (dev->cmb) {
2276 iounmap(dev->cmb);
2277 dev->cmb = NULL;
2278 }
2279}
2280
Keith Busch9d713c22013-07-15 15:02:24 -06002281static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
2282{
Haiyan Hub80d5cc2013-09-10 11:25:37 +08002283 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
Keith Busch9d713c22013-07-15 15:02:24 -06002284}
2285
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002286static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002287{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002288 struct nvme_queue *adminq = dev->queues[0];
Christoph Hellwige75ec752015-05-22 11:12:39 +02002289 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch42f61422014-03-24 10:46:25 -06002290 int result, i, vecs, nr_io_queues, size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002291
Keith Busch42f61422014-03-24 10:46:25 -06002292 nr_io_queues = num_possible_cpus();
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002293 result = set_queue_count(dev, nr_io_queues);
Keith Buschbadc34d2014-06-23 14:25:35 -06002294 if (result <= 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002295 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002296 if (result < nr_io_queues)
2297 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002298
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002299 if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) {
2300 result = nvme_cmb_qdepth(dev, nr_io_queues,
2301 sizeof(struct nvme_command));
2302 if (result > 0)
2303 dev->q_depth = result;
2304 else
2305 nvme_release_cmb(dev);
2306 }
2307
Keith Busch9d713c22013-07-15 15:02:24 -06002308 size = db_bar_size(dev, nr_io_queues);
2309 if (size > 8192) {
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002310 iounmap(dev->bar);
Keith Busch9d713c22013-07-15 15:02:24 -06002311 do {
2312 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
2313 if (dev->bar)
2314 break;
2315 if (!--nr_io_queues)
2316 return -ENOMEM;
2317 size = db_bar_size(dev, nr_io_queues);
2318 } while (1);
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002319 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Keith Busch5a92e702014-02-21 14:13:44 -07002320 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002321 }
2322
Keith Busch9d713c22013-07-15 15:02:24 -06002323 /* Deregister the admin queue's interrupt */
Matthew Wilcox3193f072014-01-27 15:57:22 -05002324 free_irq(dev->entry[0].vector, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06002325
Jens Axboee32efbf2014-11-14 09:49:26 -07002326 /*
2327 * If we enable msix early due to not intx, disable it again before
2328 * setting up the full range we need.
2329 */
2330 if (!pdev->irq)
2331 pci_disable_msix(pdev);
2332
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002333 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002334 dev->entry[i].entry = i;
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002335 vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues);
2336 if (vecs < 0) {
2337 vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32));
2338 if (vecs < 0) {
2339 vecs = 1;
2340 } else {
2341 for (i = 0; i < vecs; i++)
2342 dev->entry[i].vector = i + pdev->irq;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002343 }
2344 }
2345
Matthew Wilcox063a8092013-06-20 10:53:48 -04002346 /*
2347 * Should investigate if there's a performance win from allocating
2348 * more queues than interrupt vectors; it might allow the submission
2349 * path to scale better, even if the receive path is limited by the
2350 * number of interrupts.
2351 */
2352 nr_io_queues = vecs;
Keith Busch42f61422014-03-24 10:46:25 -06002353 dev->max_qid = nr_io_queues;
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07002354
Matthew Wilcox3193f072014-01-27 15:57:22 -05002355 result = queue_request_irq(dev, adminq, adminq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06002356 if (result) {
2357 adminq->cq_vector = -1;
Keith Busch22404272013-07-15 15:02:20 -06002358 goto free_queues;
Jon Derrick758dd7f2015-06-30 11:22:52 -06002359 }
Matthew Wilcox1b234842011-01-20 13:01:49 -05002360
Keith Buschcd638942013-07-15 15:02:23 -06002361 /* Free previously allocated queues that are no longer usable */
Keith Busch42f61422014-03-24 10:46:25 -06002362 nvme_free_queues(dev, nr_io_queues + 1);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002363 nvme_create_io_queues(dev);
Keith Buschcd638942013-07-15 15:02:23 -06002364
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002365 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002366
Keith Busch22404272013-07-15 15:02:20 -06002367 free_queues:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002368 nvme_free_queues(dev, 1);
Keith Busch22404272013-07-15 15:02:20 -06002369 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002370}
2371
Keith Buscha5768aa2015-06-01 14:28:14 -06002372static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2373{
2374 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2375 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2376
2377 return nsa->ns_id - nsb->ns_id;
2378}
2379
2380static struct nvme_ns *nvme_find_ns(struct nvme_dev *dev, unsigned nsid)
2381{
2382 struct nvme_ns *ns;
2383
2384 list_for_each_entry(ns, &dev->namespaces, list) {
2385 if (ns->ns_id == nsid)
2386 return ns;
2387 if (ns->ns_id > nsid)
2388 break;
2389 }
2390 return NULL;
2391}
2392
2393static inline bool nvme_io_incapable(struct nvme_dev *dev)
2394{
2395 return (!dev->bar || readl(&dev->bar->csts) & NVME_CSTS_CFS ||
2396 dev->online_queues < 2);
2397}
2398
2399static void nvme_ns_remove(struct nvme_ns *ns)
2400{
2401 bool kill = nvme_io_incapable(ns->dev) && !blk_queue_dying(ns->queue);
2402
2403 if (kill)
2404 blk_set_queue_dying(ns->queue);
2405 if (ns->disk->flags & GENHD_FL_UP) {
2406 if (blk_get_integrity(ns->disk))
2407 blk_integrity_unregister(ns->disk);
2408 del_gendisk(ns->disk);
2409 }
2410 if (kill || !blk_queue_dying(ns->queue)) {
2411 blk_mq_abort_requeue_list(ns->queue);
2412 blk_cleanup_queue(ns->queue);
Keith Busch5105aa52015-10-02 10:37:28 -06002413 }
2414 list_del_init(&ns->list);
2415 kref_put(&ns->kref, nvme_free_ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002416}
2417
2418static void nvme_scan_namespaces(struct nvme_dev *dev, unsigned nn)
2419{
2420 struct nvme_ns *ns, *next;
2421 unsigned i;
2422
2423 for (i = 1; i <= nn; i++) {
2424 ns = nvme_find_ns(dev, i);
2425 if (ns) {
Keith Busch5105aa52015-10-02 10:37:28 -06002426 if (revalidate_disk(ns->disk))
Keith Buscha5768aa2015-06-01 14:28:14 -06002427 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002428 } else
2429 nvme_alloc_ns(dev, i);
2430 }
2431 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
Keith Busch5105aa52015-10-02 10:37:28 -06002432 if (ns->ns_id > nn)
Keith Buscha5768aa2015-06-01 14:28:14 -06002433 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002434 }
2435 list_sort(NULL, &dev->namespaces, ns_cmp);
2436}
2437
Keith Buschbda4e0f2015-09-03 08:18:17 -06002438static void nvme_set_irq_hints(struct nvme_dev *dev)
2439{
2440 struct nvme_queue *nvmeq;
2441 int i;
2442
2443 for (i = 0; i < dev->online_queues; i++) {
2444 nvmeq = dev->queues[i];
2445
2446 if (!nvmeq->tags || !(*nvmeq->tags))
2447 continue;
2448
2449 irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector,
2450 blk_mq_tags_cpumask(*nvmeq->tags));
2451 }
2452}
2453
Keith Buscha5768aa2015-06-01 14:28:14 -06002454static void nvme_dev_scan(struct work_struct *work)
2455{
2456 struct nvme_dev *dev = container_of(work, struct nvme_dev, scan_work);
2457 struct nvme_id_ctrl *ctrl;
2458
2459 if (!dev->tagset.tags)
2460 return;
2461 if (nvme_identify_ctrl(dev, &ctrl))
2462 return;
2463 nvme_scan_namespaces(dev, le32_to_cpup(&ctrl->nn));
2464 kfree(ctrl);
Keith Buschbda4e0f2015-09-03 08:18:17 -06002465 nvme_set_irq_hints(dev);
Keith Buscha5768aa2015-06-01 14:28:14 -06002466}
2467
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002468/*
2469 * Return: error value if an error occurred setting up the queues or calling
2470 * Identify Device. 0 if these succeeded, even if adding some of the
2471 * namespaces failed. At the moment, these failures are silent. TBD which
2472 * failures should be reported.
2473 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002474static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002475{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002476 struct pci_dev *pdev = to_pci_dev(dev->dev);
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04002477 int res;
Matthew Wilcox51814232011-02-01 16:18:08 -05002478 struct nvme_id_ctrl *ctrl;
Keith Busch159b67d2013-04-09 17:13:20 -06002479 int shift = NVME_CAP_MPSMIN(readq(&dev->bar->cap)) + 12;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002480
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002481 res = nvme_identify_ctrl(dev, &ctrl);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002482 if (res) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002483 dev_err(dev->dev, "Identify Controller failed (%d)\n", res);
Keith Busche1e5e562015-02-19 13:39:03 -07002484 return -EIO;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002485 }
2486
Keith Busch0e5e4f02012-11-09 16:33:05 -07002487 dev->oncs = le16_to_cpup(&ctrl->oncs);
Keith Buschc30341d2013-12-10 13:10:38 -07002488 dev->abort_limit = ctrl->acl + 1;
Keith Buscha7d2ce22014-04-29 11:41:28 -06002489 dev->vwc = ctrl->vwc;
Matthew Wilcox51814232011-02-01 16:18:08 -05002490 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
2491 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
2492 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Keith Busch159b67d2013-04-09 17:13:20 -06002493 if (ctrl->mdts)
Keith Busch8fc23e02012-07-26 11:29:57 -06002494 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
Matthew Wilcox68608c262013-06-21 14:36:34 -04002495 if ((pdev->vendor == PCI_VENDOR_ID_INTEL) &&
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002496 (pdev->device == 0x0953) && ctrl->vs[3]) {
2497 unsigned int max_hw_sectors;
2498
Keith Busch159b67d2013-04-09 17:13:20 -06002499 dev->stripe_size = 1 << (ctrl->vs[3] + shift);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002500 max_hw_sectors = dev->stripe_size >> (shift - 9);
2501 if (dev->max_hw_sectors) {
2502 dev->max_hw_sectors = min(max_hw_sectors,
2503 dev->max_hw_sectors);
2504 } else
2505 dev->max_hw_sectors = max_hw_sectors;
2506 }
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002507 kfree(ctrl);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002508
Keith Buschffe77042015-06-08 10:08:15 -06002509 if (!dev->tagset.tags) {
2510 dev->tagset.ops = &nvme_mq_ops;
2511 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2512 dev->tagset.timeout = NVME_IO_TIMEOUT;
2513 dev->tagset.numa_node = dev_to_node(dev->dev);
2514 dev->tagset.queue_depth =
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002515 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
Keith Buschffe77042015-06-08 10:08:15 -06002516 dev->tagset.cmd_size = nvme_cmd_size(dev);
2517 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2518 dev->tagset.driver_data = dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002519
Keith Buschffe77042015-06-08 10:08:15 -06002520 if (blk_mq_alloc_tag_set(&dev->tagset))
2521 return 0;
2522 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002523 schedule_work(&dev->scan_work);
Keith Busche1e5e562015-02-19 13:39:03 -07002524 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002525}
2526
Keith Busch0877cb02013-07-15 15:02:19 -06002527static int nvme_dev_map(struct nvme_dev *dev)
2528{
Keith Busch42f61422014-03-24 10:46:25 -06002529 u64 cap;
Keith Busch0877cb02013-07-15 15:02:19 -06002530 int bars, result = -ENOMEM;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002531 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002532
2533 if (pci_enable_device_mem(pdev))
2534 return result;
2535
2536 dev->entry[0].vector = pdev->irq;
2537 pci_set_master(pdev);
2538 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Jens Axboebe7837e2014-11-14 09:50:19 -07002539 if (!bars)
2540 goto disable_pci;
2541
Keith Busch0877cb02013-07-15 15:02:19 -06002542 if (pci_request_selected_regions(pdev, bars, "nvme"))
2543 goto disable_pci;
2544
Christoph Hellwige75ec752015-05-22 11:12:39 +02002545 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
2546 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
Russell King052d0ef2013-06-26 23:49:11 +01002547 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06002548
Keith Busch0877cb02013-07-15 15:02:19 -06002549 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
2550 if (!dev->bar)
2551 goto disable;
Jens Axboee32efbf2014-11-14 09:49:26 -07002552
Keith Busch0e53d182013-12-10 13:10:39 -07002553 if (readl(&dev->bar->csts) == -1) {
2554 result = -ENODEV;
2555 goto unmap;
2556 }
Jens Axboee32efbf2014-11-14 09:49:26 -07002557
2558 /*
2559 * Some devices don't advertse INTx interrupts, pre-enable a single
2560 * MSIX vec for setup. We'll adjust this later.
2561 */
2562 if (!pdev->irq) {
2563 result = pci_enable_msix(pdev, dev->entry, 1);
2564 if (result < 0)
2565 goto unmap;
2566 }
2567
Keith Busch42f61422014-03-24 10:46:25 -06002568 cap = readq(&dev->bar->cap);
2569 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
2570 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
Keith Busch0877cb02013-07-15 15:02:19 -06002571 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002572 if (readl(&dev->bar->vs) >= NVME_VS(1, 2))
2573 dev->cmb = nvme_map_cmb(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002574
2575 return 0;
2576
Keith Busch0e53d182013-12-10 13:10:39 -07002577 unmap:
2578 iounmap(dev->bar);
2579 dev->bar = NULL;
Keith Busch0877cb02013-07-15 15:02:19 -06002580 disable:
2581 pci_release_regions(pdev);
2582 disable_pci:
2583 pci_disable_device(pdev);
2584 return result;
2585}
2586
2587static void nvme_dev_unmap(struct nvme_dev *dev)
2588{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002589 struct pci_dev *pdev = to_pci_dev(dev->dev);
2590
2591 if (pdev->msi_enabled)
2592 pci_disable_msi(pdev);
2593 else if (pdev->msix_enabled)
2594 pci_disable_msix(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002595
2596 if (dev->bar) {
2597 iounmap(dev->bar);
2598 dev->bar = NULL;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002599 pci_release_regions(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002600 }
2601
Christoph Hellwige75ec752015-05-22 11:12:39 +02002602 if (pci_is_enabled(pdev))
2603 pci_disable_device(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002604}
2605
Keith Busch4d115422013-12-10 13:10:40 -07002606struct nvme_delq_ctx {
2607 struct task_struct *waiter;
2608 struct kthread_worker *worker;
2609 atomic_t refcount;
2610};
2611
2612static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev)
2613{
2614 dq->waiter = current;
2615 mb();
2616
2617 for (;;) {
2618 set_current_state(TASK_KILLABLE);
2619 if (!atomic_read(&dq->refcount))
2620 break;
2621 if (!schedule_timeout(ADMIN_TIMEOUT) ||
2622 fatal_signal_pending(current)) {
Keith Busch0fb59cb2015-01-07 18:55:50 -07002623 /*
2624 * Disable the controller first since we can't trust it
2625 * at this point, but leave the admin queue enabled
2626 * until all queue deletion requests are flushed.
2627 * FIXME: This may take a while if there are more h/w
2628 * queues than admin tags.
2629 */
Keith Busch4d115422013-12-10 13:10:40 -07002630 set_current_state(TASK_RUNNING);
Keith Busch4d115422013-12-10 13:10:40 -07002631 nvme_disable_ctrl(dev, readq(&dev->bar->cap));
Keith Busch0fb59cb2015-01-07 18:55:50 -07002632 nvme_clear_queue(dev->queues[0]);
Keith Busch4d115422013-12-10 13:10:40 -07002633 flush_kthread_worker(dq->worker);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002634 nvme_disable_queue(dev, 0);
Keith Busch4d115422013-12-10 13:10:40 -07002635 return;
2636 }
2637 }
2638 set_current_state(TASK_RUNNING);
2639}
2640
2641static void nvme_put_dq(struct nvme_delq_ctx *dq)
2642{
2643 atomic_dec(&dq->refcount);
2644 if (dq->waiter)
2645 wake_up_process(dq->waiter);
2646}
2647
2648static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq)
2649{
2650 atomic_inc(&dq->refcount);
2651 return dq;
2652}
2653
2654static void nvme_del_queue_end(struct nvme_queue *nvmeq)
2655{
2656 struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx;
Keith Busch4d115422013-12-10 13:10:40 -07002657 nvme_put_dq(dq);
2658}
2659
2660static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode,
2661 kthread_work_func_t fn)
2662{
2663 struct nvme_command c;
2664
2665 memset(&c, 0, sizeof(c));
2666 c.delete_queue.opcode = opcode;
2667 c.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2668
2669 init_kthread_work(&nvmeq->cmdinfo.work, fn);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002670 return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo,
2671 ADMIN_TIMEOUT);
Keith Busch4d115422013-12-10 13:10:40 -07002672}
2673
2674static void nvme_del_cq_work_handler(struct kthread_work *work)
2675{
2676 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2677 cmdinfo.work);
2678 nvme_del_queue_end(nvmeq);
2679}
2680
2681static int nvme_delete_cq(struct nvme_queue *nvmeq)
2682{
2683 return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq,
2684 nvme_del_cq_work_handler);
2685}
2686
2687static void nvme_del_sq_work_handler(struct kthread_work *work)
2688{
2689 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2690 cmdinfo.work);
2691 int status = nvmeq->cmdinfo.status;
2692
2693 if (!status)
2694 status = nvme_delete_cq(nvmeq);
2695 if (status)
2696 nvme_del_queue_end(nvmeq);
2697}
2698
2699static int nvme_delete_sq(struct nvme_queue *nvmeq)
2700{
2701 return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq,
2702 nvme_del_sq_work_handler);
2703}
2704
2705static void nvme_del_queue_start(struct kthread_work *work)
2706{
2707 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2708 cmdinfo.work);
Keith Busch4d115422013-12-10 13:10:40 -07002709 if (nvme_delete_sq(nvmeq))
2710 nvme_del_queue_end(nvmeq);
2711}
2712
2713static void nvme_disable_io_queues(struct nvme_dev *dev)
2714{
2715 int i;
2716 DEFINE_KTHREAD_WORKER_ONSTACK(worker);
2717 struct nvme_delq_ctx dq;
2718 struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
2719 &worker, "nvme%d", dev->instance);
2720
2721 if (IS_ERR(kworker_task)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002722 dev_err(dev->dev,
Keith Busch4d115422013-12-10 13:10:40 -07002723 "Failed to create queue del task\n");
2724 for (i = dev->queue_count - 1; i > 0; i--)
2725 nvme_disable_queue(dev, i);
2726 return;
2727 }
2728
2729 dq.waiter = NULL;
2730 atomic_set(&dq.refcount, 0);
2731 dq.worker = &worker;
2732 for (i = dev->queue_count - 1; i > 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002733 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002734
2735 if (nvme_suspend_queue(nvmeq))
2736 continue;
2737 nvmeq->cmdinfo.ctx = nvme_get_dq(&dq);
2738 nvmeq->cmdinfo.worker = dq.worker;
2739 init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start);
2740 queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work);
2741 }
2742 nvme_wait_dq(&dq, dev);
2743 kthread_stop(kworker_task);
2744}
2745
Dan McLeranb9afca32014-04-07 17:10:11 -06002746/*
2747* Remove the node from the device list and check
2748* for whether or not we need to stop the nvme_thread.
2749*/
2750static void nvme_dev_list_remove(struct nvme_dev *dev)
2751{
2752 struct task_struct *tmp = NULL;
2753
2754 spin_lock(&dev_list_lock);
2755 list_del_init(&dev->node);
2756 if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) {
2757 tmp = nvme_thread;
2758 nvme_thread = NULL;
2759 }
2760 spin_unlock(&dev_list_lock);
2761
2762 if (tmp)
2763 kthread_stop(tmp);
2764}
2765
Keith Buschc9d3bf82015-01-07 18:55:52 -07002766static void nvme_freeze_queues(struct nvme_dev *dev)
2767{
2768 struct nvme_ns *ns;
2769
2770 list_for_each_entry(ns, &dev->namespaces, list) {
2771 blk_mq_freeze_queue_start(ns->queue);
2772
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002773 spin_lock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002774 queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue);
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002775 spin_unlock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002776
2777 blk_mq_cancel_requeue_work(ns->queue);
2778 blk_mq_stop_hw_queues(ns->queue);
2779 }
2780}
2781
2782static void nvme_unfreeze_queues(struct nvme_dev *dev)
2783{
2784 struct nvme_ns *ns;
2785
2786 list_for_each_entry(ns, &dev->namespaces, list) {
2787 queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue);
2788 blk_mq_unfreeze_queue(ns->queue);
2789 blk_mq_start_stopped_hw_queues(ns->queue, true);
2790 blk_mq_kick_requeue_list(ns->queue);
2791 }
2792}
2793
Keith Buschf0b50732013-07-15 15:02:21 -06002794static void nvme_dev_shutdown(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002795{
Keith Busch22404272013-07-15 15:02:20 -06002796 int i;
Keith Busch7c1b2452014-06-25 11:18:12 -06002797 u32 csts = -1;
Keith Busch22404272013-07-15 15:02:20 -06002798
Dan McLeranb9afca32014-04-07 17:10:11 -06002799 nvme_dev_list_remove(dev);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002800
Keith Buschc9d3bf82015-01-07 18:55:52 -07002801 if (dev->bar) {
2802 nvme_freeze_queues(dev);
Keith Busch7c1b2452014-06-25 11:18:12 -06002803 csts = readl(&dev->bar->csts);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002804 }
Keith Busch7c1b2452014-06-25 11:18:12 -06002805 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
Keith Busch4d115422013-12-10 13:10:40 -07002806 for (i = dev->queue_count - 1; i >= 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002807 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002808 nvme_suspend_queue(nvmeq);
Keith Busch4d115422013-12-10 13:10:40 -07002809 }
2810 } else {
2811 nvme_disable_io_queues(dev);
Keith Busch1894d8f2013-07-15 15:02:22 -06002812 nvme_shutdown_ctrl(dev);
Keith Busch4d115422013-12-10 13:10:40 -07002813 nvme_disable_queue(dev, 0);
2814 }
Keith Buschf0b50732013-07-15 15:02:21 -06002815 nvme_dev_unmap(dev);
Keith Busch07836e62015-02-19 10:34:48 -07002816
2817 for (i = dev->queue_count - 1; i >= 0; i--)
2818 nvme_clear_queue(dev->queues[i]);
Keith Buschf0b50732013-07-15 15:02:21 -06002819}
2820
2821static void nvme_dev_remove(struct nvme_dev *dev)
2822{
Keith Busch5105aa52015-10-02 10:37:28 -06002823 struct nvme_ns *ns, *next;
Keith Buschf0b50732013-07-15 15:02:21 -06002824
Keith Busch5105aa52015-10-02 10:37:28 -06002825 list_for_each_entry_safe(ns, next, &dev->namespaces, list)
Keith Buscha5768aa2015-06-01 14:28:14 -06002826 nvme_ns_remove(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002827}
2828
Matthew Wilcox091b6092011-02-10 09:56:01 -05002829static int nvme_setup_prp_pools(struct nvme_dev *dev)
2830{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002831 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
Matthew Wilcox091b6092011-02-10 09:56:01 -05002832 PAGE_SIZE, PAGE_SIZE, 0);
2833 if (!dev->prp_page_pool)
2834 return -ENOMEM;
2835
Matthew Wilcox99802a72011-02-10 10:30:34 -05002836 /* Optimisation for I/Os between 4k and 128k */
Christoph Hellwige75ec752015-05-22 11:12:39 +02002837 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
Matthew Wilcox99802a72011-02-10 10:30:34 -05002838 256, 256, 0);
2839 if (!dev->prp_small_pool) {
2840 dma_pool_destroy(dev->prp_page_pool);
2841 return -ENOMEM;
2842 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002843 return 0;
2844}
2845
2846static void nvme_release_prp_pools(struct nvme_dev *dev)
2847{
2848 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002849 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002850}
2851
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002852static DEFINE_IDA(nvme_instance_ida);
2853
2854static int nvme_set_instance(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002855{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002856 int instance, error;
2857
2858 do {
2859 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
2860 return -ENODEV;
2861
2862 spin_lock(&dev_list_lock);
2863 error = ida_get_new(&nvme_instance_ida, &instance);
2864 spin_unlock(&dev_list_lock);
2865 } while (error == -EAGAIN);
2866
2867 if (error)
2868 return -ENODEV;
2869
2870 dev->instance = instance;
2871 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002872}
2873
2874static void nvme_release_instance(struct nvme_dev *dev)
2875{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002876 spin_lock(&dev_list_lock);
2877 ida_remove(&nvme_instance_ida, dev->instance);
2878 spin_unlock(&dev_list_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002879}
2880
Keith Busch5e82e952013-02-19 10:17:58 -07002881static void nvme_free_dev(struct kref *kref)
2882{
2883 struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref);
Keith Busch9ac27092014-01-31 16:53:39 -07002884
Christoph Hellwige75ec752015-05-22 11:12:39 +02002885 put_device(dev->dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07002886 put_device(dev->device);
Indraneel M285dffc2014-12-11 08:24:18 -07002887 nvme_release_instance(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06002888 if (dev->tagset.tags)
2889 blk_mq_free_tag_set(&dev->tagset);
2890 if (dev->admin_q)
2891 blk_put_queue(dev->admin_q);
Keith Busch5e82e952013-02-19 10:17:58 -07002892 kfree(dev->queues);
2893 kfree(dev->entry);
2894 kfree(dev);
2895}
2896
2897static int nvme_dev_open(struct inode *inode, struct file *f)
2898{
Keith Buschb3fffde2015-02-03 11:21:42 -07002899 struct nvme_dev *dev;
2900 int instance = iminor(inode);
2901 int ret = -ENODEV;
2902
2903 spin_lock(&dev_list_lock);
2904 list_for_each_entry(dev, &dev_list, node) {
2905 if (dev->instance == instance) {
Keith Busch2e1d8442015-02-12 15:33:00 -07002906 if (!dev->admin_q) {
2907 ret = -EWOULDBLOCK;
2908 break;
2909 }
Keith Buschb3fffde2015-02-03 11:21:42 -07002910 if (!kref_get_unless_zero(&dev->kref))
2911 break;
2912 f->private_data = dev;
2913 ret = 0;
2914 break;
2915 }
2916 }
2917 spin_unlock(&dev_list_lock);
2918
2919 return ret;
Keith Busch5e82e952013-02-19 10:17:58 -07002920}
2921
2922static int nvme_dev_release(struct inode *inode, struct file *f)
2923{
2924 struct nvme_dev *dev = f->private_data;
2925 kref_put(&dev->kref, nvme_free_dev);
2926 return 0;
2927}
2928
2929static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
2930{
2931 struct nvme_dev *dev = f->private_data;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002932 struct nvme_ns *ns;
2933
Keith Busch5e82e952013-02-19 10:17:58 -07002934 switch (cmd) {
2935 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002936 return nvme_user_cmd(dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06002937 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002938 if (list_empty(&dev->namespaces))
2939 return -ENOTTY;
2940 ns = list_first_entry(&dev->namespaces, struct nvme_ns, list);
2941 return nvme_user_cmd(dev, ns, (void __user *)arg);
Keith Busch4cc06522015-06-05 10:30:08 -06002942 case NVME_IOCTL_RESET:
2943 dev_warn(dev->dev, "resetting controller\n");
2944 return nvme_reset(dev);
Jon Derrick81f03fe2015-08-10 15:20:41 -06002945 case NVME_IOCTL_SUBSYS_RESET:
2946 return nvme_subsys_reset(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07002947 default:
2948 return -ENOTTY;
2949 }
2950}
2951
2952static const struct file_operations nvme_dev_fops = {
2953 .owner = THIS_MODULE,
2954 .open = nvme_dev_open,
2955 .release = nvme_dev_release,
2956 .unlocked_ioctl = nvme_dev_ioctl,
2957 .compat_ioctl = nvme_dev_ioctl,
2958};
2959
Keith Buschf0b50732013-07-15 15:02:21 -06002960static int nvme_dev_start(struct nvme_dev *dev)
2961{
2962 int result;
Dan McLeranb9afca32014-04-07 17:10:11 -06002963 bool start_thread = false;
Keith Buschf0b50732013-07-15 15:02:21 -06002964
2965 result = nvme_dev_map(dev);
2966 if (result)
2967 return result;
2968
2969 result = nvme_configure_admin_queue(dev);
2970 if (result)
2971 goto unmap;
2972
2973 spin_lock(&dev_list_lock);
Dan McLeranb9afca32014-04-07 17:10:11 -06002974 if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) {
2975 start_thread = true;
2976 nvme_thread = NULL;
2977 }
Keith Buschf0b50732013-07-15 15:02:21 -06002978 list_add(&dev->node, &dev_list);
2979 spin_unlock(&dev_list_lock);
2980
Dan McLeranb9afca32014-04-07 17:10:11 -06002981 if (start_thread) {
2982 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
Keith Busch387caa52014-09-22 13:46:19 -06002983 wake_up_all(&nvme_kthread_wait);
Dan McLeranb9afca32014-04-07 17:10:11 -06002984 } else
2985 wait_event_killable(nvme_kthread_wait, nvme_thread);
2986
2987 if (IS_ERR_OR_NULL(nvme_thread)) {
2988 result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR;
2989 goto disable;
2990 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002991
2992 nvme_init_queue(dev->queues[0], 0);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002993 result = nvme_alloc_admin_tags(dev);
2994 if (result)
2995 goto disable;
Dan McLeranb9afca32014-04-07 17:10:11 -06002996
Keith Buschf0b50732013-07-15 15:02:21 -06002997 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06002998 if (result)
Keith Busch0fb59cb2015-01-07 18:55:50 -07002999 goto free_tags;
Keith Buschf0b50732013-07-15 15:02:21 -06003000
Keith Busch1efccc92015-03-31 10:37:17 -06003001 dev->event_limit = 1;
Keith Buschd82e8bf2013-09-05 14:45:07 -06003002 return result;
Keith Buschf0b50732013-07-15 15:02:21 -06003003
Keith Busch0fb59cb2015-01-07 18:55:50 -07003004 free_tags:
3005 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06003006 blk_put_queue(dev->admin_q);
3007 dev->admin_q = NULL;
3008 dev->queues[0]->tags = NULL;
Keith Buschf0b50732013-07-15 15:02:21 -06003009 disable:
Keith Buscha1a5ef92013-12-16 13:50:00 -05003010 nvme_disable_queue(dev, 0);
Dan McLeranb9afca32014-04-07 17:10:11 -06003011 nvme_dev_list_remove(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003012 unmap:
3013 nvme_dev_unmap(dev);
3014 return result;
3015}
3016
Keith Busch9a6b9452013-12-10 13:10:36 -07003017static int nvme_remove_dead_ctrl(void *arg)
3018{
3019 struct nvme_dev *dev = (struct nvme_dev *)arg;
Christoph Hellwige75ec752015-05-22 11:12:39 +02003020 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003021
3022 if (pci_get_drvdata(pdev))
Keith Buschc81f4972014-06-23 15:24:53 -06003023 pci_stop_and_remove_bus_device_locked(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003024 kref_put(&dev->kref, nvme_free_dev);
3025 return 0;
3026}
3027
3028static void nvme_remove_disks(struct work_struct *ws)
3029{
Keith Busch9a6b9452013-12-10 13:10:36 -07003030 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
3031
Keith Busch5a92e702014-02-21 14:13:44 -07003032 nvme_free_queues(dev, 1);
Keith Busch302c6722014-07-18 11:40:20 -06003033 nvme_dev_remove(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003034}
3035
3036static int nvme_dev_resume(struct nvme_dev *dev)
3037{
3038 int ret;
3039
3040 ret = nvme_dev_start(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06003041 if (ret)
Keith Busch9a6b9452013-12-10 13:10:36 -07003042 return ret;
Keith Buschbadc34d2014-06-23 14:25:35 -06003043 if (dev->online_queues < 2) {
Keith Busch9a6b9452013-12-10 13:10:36 -07003044 spin_lock(&dev_list_lock);
Tejun Heo9ca97372014-03-07 10:24:49 -05003045 dev->reset_workfn = nvme_remove_disks;
Keith Busch9a6b9452013-12-10 13:10:36 -07003046 queue_work(nvme_workq, &dev->reset_work);
3047 spin_unlock(&dev_list_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07003048 } else {
3049 nvme_unfreeze_queues(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003050 nvme_dev_add(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003051 }
3052 return 0;
3053}
3054
Keith Buschde3eff22015-06-18 13:36:39 -06003055static void nvme_dead_ctrl(struct nvme_dev *dev)
3056{
3057 dev_warn(dev->dev, "Device failed to resume\n");
3058 kref_get(&dev->kref);
3059 if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
3060 dev->instance))) {
3061 dev_err(dev->dev,
3062 "Failed to start controller remove task\n");
3063 kref_put(&dev->kref, nvme_free_dev);
3064 }
3065}
3066
Keith Busch9a6b9452013-12-10 13:10:36 -07003067static void nvme_dev_reset(struct nvme_dev *dev)
3068{
Keith Buschffe77042015-06-08 10:08:15 -06003069 bool in_probe = work_busy(&dev->probe_work);
3070
Keith Busch9a6b9452013-12-10 13:10:36 -07003071 nvme_dev_shutdown(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003072
3073 /* Synchronize with device probe so that work will see failure status
3074 * and exit gracefully without trying to schedule another reset */
3075 flush_work(&dev->probe_work);
3076
3077 /* Fail this device if reset occured during probe to avoid
3078 * infinite initialization loops. */
3079 if (in_probe) {
Keith Buschde3eff22015-06-18 13:36:39 -06003080 nvme_dead_ctrl(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003081 return;
Keith Busch9a6b9452013-12-10 13:10:36 -07003082 }
Keith Buschffe77042015-06-08 10:08:15 -06003083 /* Schedule device resume asynchronously so the reset work is available
3084 * to cleanup errors that may occur during reinitialization */
3085 schedule_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003086}
3087
3088static void nvme_reset_failed_dev(struct work_struct *ws)
3089{
3090 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
3091 nvme_dev_reset(dev);
3092}
3093
Tejun Heo9ca97372014-03-07 10:24:49 -05003094static void nvme_reset_workfn(struct work_struct *work)
3095{
3096 struct nvme_dev *dev = container_of(work, struct nvme_dev, reset_work);
3097 dev->reset_workfn(work);
3098}
3099
Keith Busch4cc06522015-06-05 10:30:08 -06003100static int nvme_reset(struct nvme_dev *dev)
3101{
3102 int ret = -EBUSY;
3103
3104 if (!dev->admin_q || blk_queue_dying(dev->admin_q))
3105 return -ENODEV;
3106
3107 spin_lock(&dev_list_lock);
3108 if (!work_pending(&dev->reset_work)) {
3109 dev->reset_workfn = nvme_reset_failed_dev;
3110 queue_work(nvme_workq, &dev->reset_work);
3111 ret = 0;
3112 }
3113 spin_unlock(&dev_list_lock);
3114
3115 if (!ret) {
3116 flush_work(&dev->reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003117 flush_work(&dev->probe_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003118 return 0;
3119 }
3120
3121 return ret;
3122}
3123
3124static ssize_t nvme_sysfs_reset(struct device *dev,
3125 struct device_attribute *attr, const char *buf,
3126 size_t count)
3127{
3128 struct nvme_dev *ndev = dev_get_drvdata(dev);
3129 int ret;
3130
3131 ret = nvme_reset(ndev);
3132 if (ret < 0)
3133 return ret;
3134
3135 return count;
3136}
3137static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
3138
Keith Busch2e1d8442015-02-12 15:33:00 -07003139static void nvme_async_probe(struct work_struct *work);
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003140static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003141{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003142 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003143 struct nvme_dev *dev;
3144
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003145 node = dev_to_node(&pdev->dev);
3146 if (node == NUMA_NO_NODE)
3147 set_dev_node(&pdev->dev, 0);
3148
3149 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003150 if (!dev)
3151 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003152 dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry),
3153 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003154 if (!dev->entry)
3155 goto free;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003156 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
3157 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003158 if (!dev->queues)
3159 goto free;
3160
3161 INIT_LIST_HEAD(&dev->namespaces);
Tejun Heo9ca97372014-03-07 10:24:49 -05003162 dev->reset_workfn = nvme_reset_failed_dev;
3163 INIT_WORK(&dev->reset_work, nvme_reset_workfn);
Christoph Hellwige75ec752015-05-22 11:12:39 +02003164 dev->dev = get_device(&pdev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003165 pci_set_drvdata(pdev, dev);
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07003166 result = nvme_set_instance(dev);
3167 if (result)
Keith Buscha96d4f52014-08-19 19:15:59 -06003168 goto put_pci;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003169
Matthew Wilcox091b6092011-02-10 09:56:01 -05003170 result = nvme_setup_prp_pools(dev);
3171 if (result)
Keith Busch0877cb02013-07-15 15:02:19 -06003172 goto release;
Matthew Wilcox091b6092011-02-10 09:56:01 -05003173
Keith Buschfb35e912014-03-03 11:09:47 -07003174 kref_init(&dev->kref);
Keith Buschb3fffde2015-02-03 11:21:42 -07003175 dev->device = device_create(nvme_class, &pdev->dev,
3176 MKDEV(nvme_char_major, dev->instance),
3177 dev, "nvme%d", dev->instance);
3178 if (IS_ERR(dev->device)) {
3179 result = PTR_ERR(dev->device);
Keith Busch2e1d8442015-02-12 15:33:00 -07003180 goto release_pools;
Keith Buschb3fffde2015-02-03 11:21:42 -07003181 }
3182 get_device(dev->device);
Keith Busch4cc06522015-06-05 10:30:08 -06003183 dev_set_drvdata(dev->device, dev);
3184
3185 result = device_create_file(dev->device, &dev_attr_reset_controller);
3186 if (result)
3187 goto put_dev;
Keith Buschb3fffde2015-02-03 11:21:42 -07003188
Keith Busche6e96d72015-03-23 09:32:37 -06003189 INIT_LIST_HEAD(&dev->node);
Keith Buscha5768aa2015-06-01 14:28:14 -06003190 INIT_WORK(&dev->scan_work, nvme_dev_scan);
Keith Busch2e1d8442015-02-12 15:33:00 -07003191 INIT_WORK(&dev->probe_work, nvme_async_probe);
3192 schedule_work(&dev->probe_work);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003193 return 0;
3194
Keith Busch4cc06522015-06-05 10:30:08 -06003195 put_dev:
3196 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
3197 put_device(dev->device);
Keith Busch0877cb02013-07-15 15:02:19 -06003198 release_pools:
Matthew Wilcox091b6092011-02-10 09:56:01 -05003199 nvme_release_prp_pools(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06003200 release:
3201 nvme_release_instance(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06003202 put_pci:
Christoph Hellwige75ec752015-05-22 11:12:39 +02003203 put_device(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003204 free:
3205 kfree(dev->queues);
3206 kfree(dev->entry);
3207 kfree(dev);
3208 return result;
3209}
3210
Keith Busch2e1d8442015-02-12 15:33:00 -07003211static void nvme_async_probe(struct work_struct *work)
3212{
3213 struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work);
Keith Busch2e1d8442015-02-12 15:33:00 -07003214
Keith Buschde3eff22015-06-18 13:36:39 -06003215 if (nvme_dev_resume(dev) && !work_busy(&dev->reset_work))
3216 nvme_dead_ctrl(dev);
Keith Busch2e1d8442015-02-12 15:33:00 -07003217}
3218
Keith Buschf0d54a52014-05-02 10:40:43 -06003219static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
3220{
Keith Buscha6739472014-06-23 16:03:21 -06003221 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buschf0d54a52014-05-02 10:40:43 -06003222
Keith Buscha6739472014-06-23 16:03:21 -06003223 if (prepare)
3224 nvme_dev_shutdown(dev);
3225 else
3226 nvme_dev_resume(dev);
Keith Buschf0d54a52014-05-02 10:40:43 -06003227}
3228
Keith Busch09ece142014-01-27 11:29:40 -05003229static void nvme_shutdown(struct pci_dev *pdev)
3230{
3231 struct nvme_dev *dev = pci_get_drvdata(pdev);
3232 nvme_dev_shutdown(dev);
3233}
3234
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003235static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003236{
3237 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003238
3239 spin_lock(&dev_list_lock);
3240 list_del_init(&dev->node);
3241 spin_unlock(&dev_list_lock);
3242
3243 pci_set_drvdata(pdev, NULL);
Keith Busch2e1d8442015-02-12 15:33:00 -07003244 flush_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003245 flush_work(&dev->reset_work);
Keith Buscha5768aa2015-06-01 14:28:14 -06003246 flush_work(&dev->scan_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003247 device_remove_file(dev->device, &dev_attr_reset_controller);
Keith Buschc9d3bf82015-01-07 18:55:52 -07003248 nvme_dev_remove(dev);
Keith Busch3399a3f2015-06-18 13:36:40 -06003249 nvme_dev_shutdown(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003250 nvme_dev_remove_admin(dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07003251 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003252 nvme_free_queues(dev, 0);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06003253 nvme_release_cmb(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003254 nvme_release_prp_pools(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003255 kref_put(&dev->kref, nvme_free_dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003256}
3257
3258/* These functions are yet to be implemented */
3259#define nvme_error_detected NULL
3260#define nvme_dump_registers NULL
3261#define nvme_link_reset NULL
3262#define nvme_slot_reset NULL
3263#define nvme_error_resume NULL
Keith Buschcd638942013-07-15 15:02:23 -06003264
Jingoo Han671a6012014-02-13 11:19:14 +09003265#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06003266static int nvme_suspend(struct device *dev)
3267{
3268 struct pci_dev *pdev = to_pci_dev(dev);
3269 struct nvme_dev *ndev = pci_get_drvdata(pdev);
3270
3271 nvme_dev_shutdown(ndev);
3272 return 0;
3273}
3274
3275static int nvme_resume(struct device *dev)
3276{
3277 struct pci_dev *pdev = to_pci_dev(dev);
3278 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06003279
Keith Busch9a6b9452013-12-10 13:10:36 -07003280 if (nvme_dev_resume(ndev) && !work_busy(&ndev->reset_work)) {
Tejun Heo9ca97372014-03-07 10:24:49 -05003281 ndev->reset_workfn = nvme_reset_failed_dev;
Keith Busch9a6b9452013-12-10 13:10:36 -07003282 queue_work(nvme_workq, &ndev->reset_work);
3283 }
3284 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06003285}
Jingoo Han671a6012014-02-13 11:19:14 +09003286#endif
Keith Buschcd638942013-07-15 15:02:23 -06003287
3288static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003289
Stephen Hemminger1d352032012-09-07 09:33:17 -07003290static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003291 .error_detected = nvme_error_detected,
3292 .mmio_enabled = nvme_dump_registers,
3293 .link_reset = nvme_link_reset,
3294 .slot_reset = nvme_slot_reset,
3295 .resume = nvme_error_resume,
Keith Buschf0d54a52014-05-02 10:40:43 -06003296 .reset_notify = nvme_reset_notify,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003297};
3298
3299/* Move to pci_ids.h later */
3300#define PCI_CLASS_STORAGE_EXPRESS 0x010802
3301
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003302static const struct pci_device_id nvme_id_table[] = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003303 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
3304 { 0, }
3305};
3306MODULE_DEVICE_TABLE(pci, nvme_id_table);
3307
3308static struct pci_driver nvme_driver = {
3309 .name = "nvme",
3310 .id_table = nvme_id_table,
3311 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003312 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05003313 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06003314 .driver = {
3315 .pm = &nvme_dev_pm_ops,
3316 },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003317 .err_handler = &nvme_err_handler,
3318};
3319
3320static int __init nvme_init(void)
3321{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003322 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003323
Dan McLeranb9afca32014-04-07 17:10:11 -06003324 init_waitqueue_head(&nvme_kthread_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003325
Keith Busch9a6b9452013-12-10 13:10:36 -07003326 nvme_workq = create_singlethread_workqueue("nvme");
3327 if (!nvme_workq)
Dan McLeranb9afca32014-04-07 17:10:11 -06003328 return -ENOMEM;
Keith Busch9a6b9452013-12-10 13:10:36 -07003329
Keith Busch5c42ea12012-07-25 16:05:18 -06003330 result = register_blkdev(nvme_major, "nvme");
3331 if (result < 0)
Keith Busch9a6b9452013-12-10 13:10:36 -07003332 goto kill_workq;
Keith Busch5c42ea12012-07-25 16:05:18 -06003333 else if (result > 0)
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003334 nvme_major = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003335
Keith Buschb3fffde2015-02-03 11:21:42 -07003336 result = __register_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme",
3337 &nvme_dev_fops);
3338 if (result < 0)
3339 goto unregister_blkdev;
3340 else if (result > 0)
3341 nvme_char_major = result;
3342
3343 nvme_class = class_create(THIS_MODULE, "nvme");
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003344 if (IS_ERR(nvme_class)) {
3345 result = PTR_ERR(nvme_class);
Keith Buschb3fffde2015-02-03 11:21:42 -07003346 goto unregister_chrdev;
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003347 }
Keith Buschb3fffde2015-02-03 11:21:42 -07003348
Keith Buschf3db22f2014-06-11 11:51:35 -06003349 result = pci_register_driver(&nvme_driver);
3350 if (result)
Keith Buschb3fffde2015-02-03 11:21:42 -07003351 goto destroy_class;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003352 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003353
Keith Buschb3fffde2015-02-03 11:21:42 -07003354 destroy_class:
3355 class_destroy(nvme_class);
3356 unregister_chrdev:
3357 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003358 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003359 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003360 kill_workq:
3361 destroy_workqueue(nvme_workq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003362 return result;
3363}
3364
3365static void __exit nvme_exit(void)
3366{
3367 pci_unregister_driver(&nvme_driver);
3368 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003369 destroy_workqueue(nvme_workq);
Keith Buschb3fffde2015-02-03 11:21:42 -07003370 class_destroy(nvme_class);
3371 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Dan McLeranb9afca32014-04-07 17:10:11 -06003372 BUG_ON(nvme_thread && !IS_ERR(nvme_thread));
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04003373 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003374}
3375
3376MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
3377MODULE_LICENSE("GPL");
Keith Buschc78b47132014-11-21 15:16:32 -07003378MODULE_VERSION("1.0");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003379module_init(nvme_init);
3380module_exit(nvme_exit);