blob: bf35846558c8e349e8c7bc72089c08a0ed74cf23 [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);
Keith Buschc30341d2013-12-10 13:10:38 -07001288 queue_work(nvme_workq, &dev->reset_work);
Keith Busch7a509a62015-01-07 18:55:53 -07001289 out:
1290 spin_unlock_irqrestore(&dev_list_lock, flags);
Keith Buschc30341d2013-12-10 13:10:38 -07001291 return;
1292 }
1293
1294 if (!dev->abort_limit)
1295 return;
1296
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001297 abort_req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC,
1298 false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001299 if (IS_ERR(abort_req))
Keith Buschc30341d2013-12-10 13:10:38 -07001300 return;
1301
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001302 abort_cmd = blk_mq_rq_to_pdu(abort_req);
1303 nvme_set_info(abort_cmd, abort_req, abort_completion);
1304
Keith Buschc30341d2013-12-10 13:10:38 -07001305 memset(&cmd, 0, sizeof(cmd));
1306 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001307 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001308 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001309 cmd.abort.command_id = abort_req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001310
1311 --dev->abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001312 cmd_rq->aborted = 1;
Keith Buschc30341d2013-12-10 13:10:38 -07001313
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001314 dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag,
Keith Buschc30341d2013-12-10 13:10:38 -07001315 nvmeq->qid);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301316 nvme_submit_cmd(dev->queues[0], &cmd);
Keith Buschc30341d2013-12-10 13:10:38 -07001317}
1318
Keith Busch42483222015-06-01 09:29:54 -06001319static void nvme_cancel_queue_ios(struct request *req, void *data, bool reserved)
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001320{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001321 struct nvme_queue *nvmeq = data;
1322 void *ctx;
1323 nvme_completion_fn fn;
1324 struct nvme_cmd_info *cmd;
Keith Buschcef6a942015-01-07 18:55:51 -07001325 struct nvme_completion cqe;
1326
1327 if (!blk_mq_request_started(req))
1328 return;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001329
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001330 cmd = blk_mq_rq_to_pdu(req);
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001331
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001332 if (cmd->ctx == CMD_CTX_CANCELLED)
1333 return;
1334
Keith Buschcef6a942015-01-07 18:55:51 -07001335 if (blk_queue_dying(req->q))
1336 cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1);
1337 else
1338 cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
1339
1340
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001341 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n",
1342 req->tag, nvmeq->qid);
1343 ctx = cancel_cmd_info(cmd, &fn);
1344 fn(nvmeq, ctx, &cqe);
1345}
1346
1347static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1348{
1349 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
1350 struct nvme_queue *nvmeq = cmd->nvmeq;
1351
Keith Busch07836e62015-02-19 10:34:48 -07001352 dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag,
1353 nvmeq->qid);
1354 spin_lock_irq(&nvmeq->q_lock);
1355 nvme_abort_req(req);
1356 spin_unlock_irq(&nvmeq->q_lock);
1357
Keith Busch7a509a62015-01-07 18:55:53 -07001358 /*
1359 * The aborted req will be completed on receiving the abort req.
1360 * We enable the timer again. If hit twice, it'll cause a device reset,
1361 * as the device then is in a faulty state.
1362 */
Keith Busch07836e62015-02-19 10:34:48 -07001363 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001364}
1365
Keith Buschf435c282014-07-07 09:14:42 -06001366static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001367{
1368 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1369 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001370 if (nvmeq->sq_cmds)
1371 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
Matthew Wilcox9e866772012-08-03 13:55:56 -04001372 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1373 kfree(nvmeq);
1374}
1375
Keith Buscha1a5ef92013-12-16 13:50:00 -05001376static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001377{
1378 int i;
1379
Keith Buscha1a5ef92013-12-16 13:50:00 -05001380 for (i = dev->queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001381 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch22404272013-07-15 15:02:20 -06001382 dev->queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001383 dev->queues[i] = NULL;
Keith Buschf435c282014-07-07 09:14:42 -06001384 nvme_free_queue(nvmeq);
kaoudis121c7ad2015-01-14 21:01:58 -07001385 }
Keith Busch22404272013-07-15 15:02:20 -06001386}
1387
Keith Busch4d115422013-12-10 13:10:40 -07001388/**
1389 * nvme_suspend_queue - put queue into suspended state
1390 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001391 */
1392static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001393{
Keith Busch2b25d982014-12-22 12:59:04 -07001394 int vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001395
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001396 spin_lock_irq(&nvmeq->q_lock);
Keith Busch2b25d982014-12-22 12:59:04 -07001397 if (nvmeq->cq_vector == -1) {
1398 spin_unlock_irq(&nvmeq->q_lock);
1399 return 1;
1400 }
1401 vector = nvmeq->dev->entry[nvmeq->cq_vector].vector;
Keith Busch42f61422014-03-24 10:46:25 -06001402 nvmeq->dev->online_queues--;
Keith Busch2b25d982014-12-22 12:59:04 -07001403 nvmeq->cq_vector = -1;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001404 spin_unlock_irq(&nvmeq->q_lock);
1405
Keith Busch6df3dbc2015-03-26 13:49:33 -06001406 if (!nvmeq->qid && nvmeq->dev->admin_q)
1407 blk_mq_freeze_queue_start(nvmeq->dev->admin_q);
1408
Matthew Wilcoxaba20802011-03-27 08:52:06 -04001409 irq_set_affinity_hint(vector, NULL);
1410 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001411
Keith Busch4d115422013-12-10 13:10:40 -07001412 return 0;
1413}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001414
Keith Busch4d115422013-12-10 13:10:40 -07001415static void nvme_clear_queue(struct nvme_queue *nvmeq)
1416{
Keith Busch22404272013-07-15 15:02:20 -06001417 spin_lock_irq(&nvmeq->q_lock);
Keith Busch42483222015-06-01 09:29:54 -06001418 if (nvmeq->tags && *nvmeq->tags)
1419 blk_mq_all_tag_busy_iter(*nvmeq->tags, nvme_cancel_queue_ios, nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001420 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001421}
1422
Keith Busch4d115422013-12-10 13:10:40 -07001423static void nvme_disable_queue(struct nvme_dev *dev, int qid)
1424{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001425 struct nvme_queue *nvmeq = dev->queues[qid];
Keith Busch4d115422013-12-10 13:10:40 -07001426
1427 if (!nvmeq)
1428 return;
1429 if (nvme_suspend_queue(nvmeq))
1430 return;
1431
Keith Busch0e53d182013-12-10 13:10:39 -07001432 /* Don't tell the adapter to delete the admin queue.
1433 * Don't tell a removed adapter to delete IO queues. */
1434 if (qid && readl(&dev->bar->csts) != -1) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001435 adapter_delete_sq(dev, qid);
1436 adapter_delete_cq(dev, qid);
1437 }
Keith Busch07836e62015-02-19 10:34:48 -07001438
1439 spin_lock_irq(&nvmeq->q_lock);
1440 nvme_process_cq(nvmeq);
1441 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001442}
1443
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001444static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1445 int entry_size)
1446{
1447 int q_depth = dev->q_depth;
1448 unsigned q_size_aligned = roundup(q_depth * entry_size, dev->page_size);
1449
1450 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
Jon Derrickc45f5c92015-07-21 15:08:13 -06001451 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
1452 mem_per_q = round_down(mem_per_q, dev->page_size);
1453 q_depth = div_u64(mem_per_q, entry_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001454
1455 /*
1456 * Ensure the reduced q_depth is above some threshold where it
1457 * would be better to map queues in system memory with the
1458 * original depth
1459 */
1460 if (q_depth < 64)
1461 return -ENOMEM;
1462 }
1463
1464 return q_depth;
1465}
1466
1467static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1468 int qid, int depth)
1469{
1470 if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) {
1471 unsigned offset = (qid - 1) *
1472 roundup(SQ_SIZE(depth), dev->page_size);
1473 nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset;
1474 nvmeq->sq_cmds_io = dev->cmb + offset;
1475 } else {
1476 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1477 &nvmeq->sq_dma_addr, GFP_KERNEL);
1478 if (!nvmeq->sq_cmds)
1479 return -ENOMEM;
1480 }
1481
1482 return 0;
1483}
1484
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001485static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
Keith Busch2b25d982014-12-22 12:59:04 -07001486 int depth)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001487{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001488 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001489 if (!nvmeq)
1490 return NULL;
1491
Christoph Hellwige75ec752015-05-22 11:12:39 +02001492 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
Joe Perches4d51abf2014-06-15 13:37:33 -07001493 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001494 if (!nvmeq->cqes)
1495 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001496
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001497 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001498 goto free_cqdma;
1499
Christoph Hellwige75ec752015-05-22 11:12:39 +02001500 nvmeq->q_dmadev = dev->dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001501 nvmeq->dev = dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001502 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
1503 dev->instance, qid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001504 spin_lock_init(&nvmeq->q_lock);
1505 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001506 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001507 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001508 nvmeq->q_depth = depth;
Keith Buschc30341d2013-12-10 13:10:38 -07001509 nvmeq->qid = qid;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001510 nvmeq->cq_vector = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001511 dev->queues[qid] = nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001512
Jon Derrick36a7e992015-05-27 12:26:23 -06001513 /* make sure queue descriptor is set before queue count, for kthread */
1514 mb();
1515 dev->queue_count++;
1516
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001517 return nvmeq;
1518
1519 free_cqdma:
Christoph Hellwige75ec752015-05-22 11:12:39 +02001520 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001521 nvmeq->cq_dma_addr);
1522 free_nvmeq:
1523 kfree(nvmeq);
1524 return NULL;
1525}
1526
Matthew Wilcox30010822011-01-20 09:10:15 -05001527static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1528 const char *name)
1529{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001530 if (use_threaded_interrupts)
1531 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001532 nvme_irq_check, nvme_irq, IRQF_SHARED,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001533 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001534 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001535 IRQF_SHARED, name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001536}
1537
Keith Busch22404272013-07-15 15:02:20 -06001538static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001539{
Keith Busch22404272013-07-15 15:02:20 -06001540 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001541
Keith Busch7be50e92014-09-10 15:48:47 -06001542 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001543 nvmeq->sq_tail = 0;
1544 nvmeq->cq_head = 0;
1545 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001546 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001547 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Keith Busch42f61422014-03-24 10:46:25 -06001548 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001549 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001550}
1551
1552static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1553{
1554 struct nvme_dev *dev = nvmeq->dev;
1555 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001556
Keith Busch2b25d982014-12-22 12:59:04 -07001557 nvmeq->cq_vector = qid - 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001558 result = adapter_alloc_cq(dev, qid, nvmeq);
1559 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001560 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001561
1562 result = adapter_alloc_sq(dev, qid, nvmeq);
1563 if (result < 0)
1564 goto release_cq;
1565
Matthew Wilcox3193f072014-01-27 15:57:22 -05001566 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001567 if (result < 0)
1568 goto release_sq;
1569
Keith Busch22404272013-07-15 15:02:20 -06001570 nvme_init_queue(nvmeq, qid);
Keith Busch22404272013-07-15 15:02:20 -06001571 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001572
1573 release_sq:
1574 adapter_delete_sq(dev, qid);
1575 release_cq:
1576 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001577 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001578}
1579
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001580static int nvme_wait_ready(struct nvme_dev *dev, u64 cap, bool enabled)
1581{
1582 unsigned long timeout;
1583 u32 bit = enabled ? NVME_CSTS_RDY : 0;
1584
1585 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1586
1587 while ((readl(&dev->bar->csts) & NVME_CSTS_RDY) != bit) {
1588 msleep(100);
1589 if (fatal_signal_pending(current))
1590 return -EINTR;
1591 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001592 dev_err(dev->dev,
Matthew Wilcox27e81662014-04-11 11:58:45 -04001593 "Device not ready; aborting %s\n", enabled ?
1594 "initialisation" : "reset");
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001595 return -ENODEV;
1596 }
1597 }
1598
1599 return 0;
1600}
1601
1602/*
1603 * If the device has been passed off to us in an enabled state, just clear
1604 * the enabled bit. The spec says we should set the 'shutdown notification
1605 * bits', but doing so may cause the device to complete commands to the
1606 * admin queue ... and we don't know what memory that might be pointing at!
1607 */
1608static int nvme_disable_ctrl(struct nvme_dev *dev, u64 cap)
1609{
Dan McLeran01079522014-06-23 08:24:36 -06001610 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1611 dev->ctrl_config &= ~NVME_CC_ENABLE;
1612 writel(dev->ctrl_config, &dev->bar->cc);
Matthew Wilcox44af1462013-05-04 06:43:17 -04001613
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001614 return nvme_wait_ready(dev, cap, false);
1615}
1616
1617static int nvme_enable_ctrl(struct nvme_dev *dev, u64 cap)
1618{
Dan McLeran01079522014-06-23 08:24:36 -06001619 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1620 dev->ctrl_config |= NVME_CC_ENABLE;
1621 writel(dev->ctrl_config, &dev->bar->cc);
1622
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001623 return nvme_wait_ready(dev, cap, true);
1624}
1625
Keith Busch1894d8f2013-07-15 15:02:22 -06001626static int nvme_shutdown_ctrl(struct nvme_dev *dev)
1627{
1628 unsigned long timeout;
Keith Busch1894d8f2013-07-15 15:02:22 -06001629
Dan McLeran01079522014-06-23 08:24:36 -06001630 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1631 dev->ctrl_config |= NVME_CC_SHN_NORMAL;
1632
1633 writel(dev->ctrl_config, &dev->bar->cc);
Keith Busch1894d8f2013-07-15 15:02:22 -06001634
Dan McLeran2484f402014-07-01 09:33:32 -06001635 timeout = SHUTDOWN_TIMEOUT + jiffies;
Keith Busch1894d8f2013-07-15 15:02:22 -06001636 while ((readl(&dev->bar->csts) & NVME_CSTS_SHST_MASK) !=
1637 NVME_CSTS_SHST_CMPLT) {
1638 msleep(100);
1639 if (fatal_signal_pending(current))
1640 return -EINTR;
1641 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001642 dev_err(dev->dev,
Keith Busch1894d8f2013-07-15 15:02:22 -06001643 "Device shutdown incomplete; abort shutdown\n");
1644 return -ENODEV;
1645 }
1646 }
1647
1648 return 0;
1649}
1650
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001651static struct blk_mq_ops nvme_mq_admin_ops = {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001652 .queue_rq = nvme_queue_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001653 .map_queue = blk_mq_map_queue,
1654 .init_hctx = nvme_admin_init_hctx,
Keith Busch4af0e212015-06-08 10:08:13 -06001655 .exit_hctx = nvme_admin_exit_hctx,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001656 .init_request = nvme_admin_init_request,
1657 .timeout = nvme_timeout,
1658};
1659
1660static struct blk_mq_ops nvme_mq_ops = {
1661 .queue_rq = nvme_queue_rq,
1662 .map_queue = blk_mq_map_queue,
1663 .init_hctx = nvme_init_hctx,
1664 .init_request = nvme_init_request,
1665 .timeout = nvme_timeout,
1666};
1667
Keith Buschea191d22015-01-07 18:55:49 -07001668static void nvme_dev_remove_admin(struct nvme_dev *dev)
1669{
1670 if (dev->admin_q && !blk_queue_dying(dev->admin_q)) {
1671 blk_cleanup_queue(dev->admin_q);
1672 blk_mq_free_tag_set(&dev->admin_tagset);
1673 }
1674}
1675
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001676static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1677{
1678 if (!dev->admin_q) {
1679 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1680 dev->admin_tagset.nr_hw_queues = 1;
1681 dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1;
Keith Busch1efccc92015-03-31 10:37:17 -06001682 dev->admin_tagset.reserved_tags = 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001683 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001684 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
Jens Axboeac3dd5b2015-01-22 12:07:58 -07001685 dev->admin_tagset.cmd_size = nvme_cmd_size(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001686 dev->admin_tagset.driver_data = dev;
1687
1688 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1689 return -ENOMEM;
1690
1691 dev->admin_q = blk_mq_init_queue(&dev->admin_tagset);
Ming Lei35b489d2015-01-02 14:25:27 +00001692 if (IS_ERR(dev->admin_q)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001693 blk_mq_free_tag_set(&dev->admin_tagset);
1694 return -ENOMEM;
1695 }
Keith Buschea191d22015-01-07 18:55:49 -07001696 if (!blk_get_queue(dev->admin_q)) {
1697 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06001698 dev->admin_q = NULL;
Keith Buschea191d22015-01-07 18:55:49 -07001699 return -ENODEV;
1700 }
Keith Busch0fb59cb2015-01-07 18:55:50 -07001701 } else
1702 blk_mq_unfreeze_queue(dev->admin_q);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001703
1704 return 0;
1705}
1706
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001707static int nvme_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001708{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001709 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001710 u32 aqa;
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001711 u64 cap = readq(&dev->bar->cap);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001712 struct nvme_queue *nvmeq;
Keith Busch1d090622014-06-23 11:34:01 -06001713 unsigned page_shift = PAGE_SHIFT;
1714 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12;
1715 unsigned dev_page_max = NVME_CAP_MPSMAX(cap) + 12;
1716
1717 if (page_shift < dev_page_min) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001718 dev_err(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001719 "Minimum device page size (%u) too large for "
1720 "host (%u)\n", 1 << dev_page_min,
1721 1 << page_shift);
1722 return -ENODEV;
1723 }
1724 if (page_shift > dev_page_max) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001725 dev_info(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001726 "Device maximum page size (%u) smaller than "
1727 "host (%u); enabling work-around\n",
1728 1 << dev_page_max, 1 << page_shift);
1729 page_shift = dev_page_max;
1730 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001731
Keith Buschdfbac8c2015-08-10 15:20:40 -06001732 dev->subsystem = readl(&dev->bar->vs) >= NVME_VS(1, 1) ?
1733 NVME_CAP_NSSRC(cap) : 0;
1734
1735 if (dev->subsystem && (readl(&dev->bar->csts) & NVME_CSTS_NSSRO))
1736 writel(NVME_CSTS_NSSRO, &dev->bar->csts);
1737
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001738 result = nvme_disable_ctrl(dev, cap);
1739 if (result < 0)
1740 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001741
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001742 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001743 if (!nvmeq) {
Keith Busch2b25d982014-12-22 12:59:04 -07001744 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
Keith Buschcd638942013-07-15 15:02:23 -06001745 if (!nvmeq)
1746 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001747 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001748
1749 aqa = nvmeq->q_depth - 1;
1750 aqa |= aqa << 16;
1751
Keith Busch1d090622014-06-23 11:34:01 -06001752 dev->page_size = 1 << page_shift;
1753
Dan McLeran01079522014-06-23 08:24:36 -06001754 dev->ctrl_config = NVME_CC_CSS_NVM;
Keith Busch1d090622014-06-23 11:34:01 -06001755 dev->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001756 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -04001757 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001758
1759 writel(aqa, &dev->bar->aqa);
1760 writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1761 writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001762
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001763 result = nvme_enable_ctrl(dev, cap);
Keith Busch025c5572013-05-01 13:07:51 -06001764 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001765 goto free_nvmeq;
1766
Keith Busch2b25d982014-12-22 12:59:04 -07001767 nvmeq->cq_vector = 0;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001768 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001769 if (result) {
1770 nvmeq->cq_vector = -1;
Keith Busch0fb59cb2015-01-07 18:55:50 -07001771 goto free_nvmeq;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001772 }
Keith Busch025c5572013-05-01 13:07:51 -06001773
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001774 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001775
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001776 free_nvmeq:
1777 nvme_free_queues(dev, 0);
1778 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001779}
1780
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001781static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1782{
1783 struct nvme_dev *dev = ns->dev;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001784 struct nvme_user_io io;
1785 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001786 unsigned length, meta_len;
Keith Buscha67a9512015-04-07 16:57:19 -06001787 int status, write;
Keith Buscha67a9512015-04-07 16:57:19 -06001788 dma_addr_t meta_dma = 0;
1789 void *meta = NULL;
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001790 void __user *metadata;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001791
1792 if (copy_from_user(&io, uio, sizeof(io)))
1793 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001794
1795 switch (io.opcode) {
1796 case nvme_cmd_write:
1797 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001798 case nvme_cmd_compare:
Matthew Wilcox64132142011-08-09 12:56:37 -04001799 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001800 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001801 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001802 }
1803
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001804 length = (io.nblocks + 1) << ns->lba_shift;
1805 meta_len = (io.nblocks + 1) * ns->ms;
Linus Torvalds6a398a32015-06-25 15:12:50 -07001806 metadata = (void __user *)(unsigned long)io.metadata;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001807 write = io.opcode & 1;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001808
Keith Busch71feb362015-06-19 11:07:30 -06001809 if (ns->ext) {
1810 length += meta_len;
1811 meta_len = 0;
Keith Buscha67a9512015-04-07 16:57:19 -06001812 }
1813 if (meta_len) {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001814 if (((io.metadata & 3) || !io.metadata) && !ns->ext)
1815 return -EINVAL;
1816
Christoph Hellwige75ec752015-05-22 11:12:39 +02001817 meta = dma_alloc_coherent(dev->dev, meta_len,
Keith Buscha67a9512015-04-07 16:57:19 -06001818 &meta_dma, GFP_KERNEL);
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001819
Keith Buscha67a9512015-04-07 16:57:19 -06001820 if (!meta) {
1821 status = -ENOMEM;
1822 goto unmap;
1823 }
1824 if (write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001825 if (copy_from_user(meta, metadata, meta_len)) {
Keith Buscha67a9512015-04-07 16:57:19 -06001826 status = -EFAULT;
1827 goto unmap;
1828 }
1829 }
1830 }
1831
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001832 memset(&c, 0, sizeof(c));
1833 c.rw.opcode = io.opcode;
1834 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001835 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001836 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001837 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001838 c.rw.control = cpu_to_le16(io.control);
Matthew Wilcox1c9b5262013-04-16 15:21:06 -04001839 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1840 c.rw.reftag = cpu_to_le32(io.reftag);
1841 c.rw.apptag = cpu_to_le16(io.apptag);
1842 c.rw.appmask = cpu_to_le16(io.appmask);
Keith Buscha67a9512015-04-07 16:57:19 -06001843 c.rw.metadata = cpu_to_le64(meta_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001844
1845 status = __nvme_submit_sync_cmd(ns->queue, &c, NULL,
1846 (void __user *)io.addr, length, NULL, 0);
Keith Buschf410c682013-04-23 17:23:59 -06001847 unmap:
Keith Buscha67a9512015-04-07 16:57:19 -06001848 if (meta) {
1849 if (status == NVME_SC_SUCCESS && !write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001850 if (copy_to_user(metadata, meta, meta_len))
Keith Buscha67a9512015-04-07 16:57:19 -06001851 status = -EFAULT;
1852 }
Christoph Hellwige75ec752015-05-22 11:12:39 +02001853 dma_free_coherent(dev->dev, meta_len, meta, meta_dma);
Keith Buschf410c682013-04-23 17:23:59 -06001854 }
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001855 return status;
1856}
1857
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001858static int nvme_user_cmd(struct nvme_dev *dev, struct nvme_ns *ns,
1859 struct nvme_passthru_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001860{
Keith Busch7963e522014-09-12 16:07:20 -06001861 struct nvme_passthru_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001862 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001863 unsigned timeout = 0;
1864 int status;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001865
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001866 if (!capable(CAP_SYS_ADMIN))
1867 return -EACCES;
1868 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001869 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001870
1871 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001872 c.common.opcode = cmd.opcode;
1873 c.common.flags = cmd.flags;
1874 c.common.nsid = cpu_to_le32(cmd.nsid);
1875 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1876 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1877 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1878 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1879 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1880 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1881 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1882 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1883
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001884 if (cmd.timeout_ms)
1885 timeout = msecs_to_jiffies(cmd.timeout_ms);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001886
Christoph Hellwigf705f832015-05-22 11:12:38 +02001887 status = __nvme_submit_sync_cmd(ns ? ns->queue : dev->admin_q, &c,
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001888 NULL, (void __user *)cmd.addr, cmd.data_len,
1889 &cmd.result, timeout);
1890 if (status >= 0) {
1891 if (put_user(cmd.result, &ucmd->result))
1892 return -EFAULT;
Keith Buschedd10d32014-04-03 16:45:23 -06001893 }
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001894
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001895 return status;
1896}
1897
Jon Derrick81f03fe2015-08-10 15:20:41 -06001898static int nvme_subsys_reset(struct nvme_dev *dev)
1899{
1900 if (!dev->subsystem)
1901 return -ENOTTY;
1902
1903 writel(0x4E564D65, &dev->bar->nssr); /* "NVMe" */
1904 return 0;
1905}
1906
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001907static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1908 unsigned long arg)
1909{
1910 struct nvme_ns *ns = bdev->bd_disk->private_data;
1911
1912 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001913 case NVME_IOCTL_ID:
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04001914 force_successful_syscall_return();
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001915 return ns->ns_id;
1916 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001917 return nvme_user_cmd(ns->dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06001918 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001919 return nvme_user_cmd(ns->dev, ns, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001920 case NVME_IOCTL_SUBMIT_IO:
1921 return nvme_submit_io(ns, (void __user *)arg);
Vishal Verma5d0f6132013-03-04 18:40:58 -07001922 case SG_GET_VERSION_NUM:
1923 return nvme_sg_get_version_num((void __user *)arg);
1924 case SG_IO:
1925 return nvme_sg_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001926 default:
1927 return -ENOTTY;
1928 }
1929}
1930
Keith Busch320a3822013-10-23 13:07:34 -06001931#ifdef CONFIG_COMPAT
1932static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode,
1933 unsigned int cmd, unsigned long arg)
1934{
Keith Busch320a3822013-10-23 13:07:34 -06001935 switch (cmd) {
1936 case SG_IO:
Keith Busche1797292014-08-27 13:55:38 -06001937 return -ENOIOCTLCMD;
Keith Busch320a3822013-10-23 13:07:34 -06001938 }
1939 return nvme_ioctl(bdev, mode, cmd, arg);
1940}
1941#else
1942#define nvme_compat_ioctl NULL
1943#endif
1944
Keith Busch5105aa52015-10-02 10:37:28 -06001945static void nvme_free_dev(struct kref *kref);
Keith Busch188c3562015-10-01 17:14:10 -06001946static void nvme_free_ns(struct kref *kref)
1947{
1948 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
1949
1950 spin_lock(&dev_list_lock);
1951 ns->disk->private_data = NULL;
1952 spin_unlock(&dev_list_lock);
1953
Keith Busch5105aa52015-10-02 10:37:28 -06001954 kref_put(&ns->dev->kref, nvme_free_dev);
Keith Busch188c3562015-10-01 17:14:10 -06001955 put_disk(ns->disk);
1956 kfree(ns);
1957}
1958
Keith Busch9ac27092014-01-31 16:53:39 -07001959static int nvme_open(struct block_device *bdev, fmode_t mode)
1960{
Keith Busch9e603522014-10-03 11:15:47 -06001961 int ret = 0;
1962 struct nvme_ns *ns;
Keith Busch9ac27092014-01-31 16:53:39 -07001963
Keith Busch9e603522014-10-03 11:15:47 -06001964 spin_lock(&dev_list_lock);
1965 ns = bdev->bd_disk->private_data;
1966 if (!ns)
1967 ret = -ENXIO;
Keith Busch188c3562015-10-01 17:14:10 -06001968 else if (!kref_get_unless_zero(&ns->kref))
Keith Busch9e603522014-10-03 11:15:47 -06001969 ret = -ENXIO;
1970 spin_unlock(&dev_list_lock);
1971
1972 return ret;
Keith Busch9ac27092014-01-31 16:53:39 -07001973}
1974
Keith Busch9ac27092014-01-31 16:53:39 -07001975static void nvme_release(struct gendisk *disk, fmode_t mode)
1976{
1977 struct nvme_ns *ns = disk->private_data;
Keith Busch188c3562015-10-01 17:14:10 -06001978 kref_put(&ns->kref, nvme_free_ns);
Keith Busch9ac27092014-01-31 16:53:39 -07001979}
1980
Keith Busch4cc09e22014-04-02 15:45:37 -06001981static int nvme_getgeo(struct block_device *bd, struct hd_geometry *geo)
1982{
1983 /* some standard values */
1984 geo->heads = 1 << 6;
1985 geo->sectors = 1 << 5;
1986 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
1987 return 0;
1988}
1989
Keith Busche1e5e562015-02-19 13:39:03 -07001990static void nvme_config_discard(struct nvme_ns *ns)
1991{
1992 u32 logical_block_size = queue_logical_block_size(ns->queue);
1993 ns->queue->limits.discard_zeroes_data = 0;
1994 ns->queue->limits.discard_alignment = logical_block_size;
1995 ns->queue->limits.discard_granularity = logical_block_size;
Jens Axboe2bb4cd52015-07-14 08:15:12 -06001996 blk_queue_max_discard_sectors(ns->queue, 0xffffffff);
Keith Busche1e5e562015-02-19 13:39:03 -07001997 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
1998}
1999
Keith Busch1b9dbf72014-09-10 17:21:14 -06002000static int nvme_revalidate_disk(struct gendisk *disk)
2001{
2002 struct nvme_ns *ns = disk->private_data;
2003 struct nvme_dev *dev = ns->dev;
2004 struct nvme_id_ns *id;
Keith Buscha67a9512015-04-07 16:57:19 -06002005 u8 lbaf, pi_type;
2006 u16 old_ms;
Keith Busche1e5e562015-02-19 13:39:03 -07002007 unsigned short bs;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002008
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002009 if (nvme_identify_ns(dev, ns->ns_id, &id)) {
Keith Buscha5768aa2015-06-01 14:28:14 -06002010 dev_warn(dev->dev, "%s: Identify failure nvme%dn%d\n", __func__,
2011 dev->instance, ns->ns_id);
2012 return -ENODEV;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002013 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002014 if (id->ncap == 0) {
2015 kfree(id);
2016 return -ENODEV;
Keith Busche1e5e562015-02-19 13:39:03 -07002017 }
Keith Busch1b9dbf72014-09-10 17:21:14 -06002018
Keith Busche1e5e562015-02-19 13:39:03 -07002019 old_ms = ns->ms;
2020 lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002021 ns->lba_shift = id->lbaf[lbaf].ds;
Keith Busche1e5e562015-02-19 13:39:03 -07002022 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms);
Keith Buscha67a9512015-04-07 16:57:19 -06002023 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002024
Keith Busche1e5e562015-02-19 13:39:03 -07002025 /*
2026 * If identify namespace failed, use default 512 byte block size so
2027 * block layer can use before failing read/write for 0 capacity.
2028 */
2029 if (ns->lba_shift == 0)
2030 ns->lba_shift = 9;
2031 bs = 1 << ns->lba_shift;
2032
2033 /* XXX: PI implementation requires metadata equal t10 pi tuple size */
2034 pi_type = ns->ms == sizeof(struct t10_pi_tuple) ?
2035 id->dps & NVME_NS_DPS_PI_MASK : 0;
2036
Keith Busch52b68d72015-02-23 09:16:21 -07002037 if (blk_get_integrity(disk) && (ns->pi_type != pi_type ||
2038 ns->ms != old_ms ||
Keith Busche1e5e562015-02-19 13:39:03 -07002039 bs != queue_logical_block_size(disk->queue) ||
Keith Buscha67a9512015-04-07 16:57:19 -06002040 (ns->ms && ns->ext)))
Keith Busche1e5e562015-02-19 13:39:03 -07002041 blk_integrity_unregister(disk);
2042
2043 ns->pi_type = pi_type;
2044 blk_queue_logical_block_size(ns->queue, bs);
2045
Keith Busch52b68d72015-02-23 09:16:21 -07002046 if (ns->ms && !blk_get_integrity(disk) && (disk->flags & GENHD_FL_UP) &&
Keith Buscha67a9512015-04-07 16:57:19 -06002047 !ns->ext)
Keith Busche1e5e562015-02-19 13:39:03 -07002048 nvme_init_integrity(ns);
2049
Alok Pandeye19b1272015-08-26 08:56:14 -06002050 if (ns->ms && !(ns->ms == 8 && ns->pi_type) && !blk_get_integrity(disk))
Keith Busche1e5e562015-02-19 13:39:03 -07002051 set_capacity(disk, 0);
2052 else
2053 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
2054
2055 if (dev->oncs & NVME_CTRL_ONCS_DSM)
2056 nvme_config_discard(ns);
2057
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002058 kfree(id);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002059 return 0;
2060}
2061
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002062static const struct block_device_operations nvme_fops = {
2063 .owner = THIS_MODULE,
2064 .ioctl = nvme_ioctl,
Keith Busch320a3822013-10-23 13:07:34 -06002065 .compat_ioctl = nvme_compat_ioctl,
Keith Busch9ac27092014-01-31 16:53:39 -07002066 .open = nvme_open,
2067 .release = nvme_release,
Keith Busch4cc09e22014-04-02 15:45:37 -06002068 .getgeo = nvme_getgeo,
Keith Busch1b9dbf72014-09-10 17:21:14 -06002069 .revalidate_disk= nvme_revalidate_disk,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002070};
2071
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002072static int nvme_kthread(void *data)
2073{
Keith Buschd4b4ff82013-12-10 13:10:37 -07002074 struct nvme_dev *dev, *next;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002075
2076 while (!kthread_should_stop()) {
Arjan van de Ven564a2322013-05-01 16:38:23 -04002077 set_current_state(TASK_INTERRUPTIBLE);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002078 spin_lock(&dev_list_lock);
Keith Buschd4b4ff82013-12-10 13:10:37 -07002079 list_for_each_entry_safe(dev, next, &dev_list, node) {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002080 int i;
Keith Buschdfbac8c2015-08-10 15:20:40 -06002081 u32 csts = readl(&dev->bar->csts);
2082
2083 if ((dev->subsystem && (csts & NVME_CSTS_NSSRO)) ||
2084 csts & NVME_CSTS_CFS) {
Keith Buschd4b4ff82013-12-10 13:10:37 -07002085 if (work_busy(&dev->reset_work))
2086 continue;
2087 list_del_init(&dev->node);
Christoph Hellwige75ec752015-05-22 11:12:39 +02002088 dev_warn(dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002089 "Failed status: %x, reset controller\n",
2090 readl(&dev->bar->csts));
Keith Buschd4b4ff82013-12-10 13:10:37 -07002091 queue_work(nvme_workq, &dev->reset_work);
2092 continue;
2093 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002094 for (i = 0; i < dev->queue_count; i++) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002095 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05002096 if (!nvmeq)
2097 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002098 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxbc57a0f2013-06-24 11:56:42 -04002099 nvme_process_cq(nvmeq);
Keith Busch6fccf932014-06-18 13:58:57 -06002100
2101 while ((i == 0) && (dev->event_limit > 0)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002102 if (nvme_submit_async_admin_req(dev))
Keith Busch6fccf932014-06-18 13:58:57 -06002103 break;
2104 dev->event_limit--;
2105 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002106 spin_unlock_irq(&nvmeq->q_lock);
2107 }
2108 }
2109 spin_unlock(&dev_list_lock);
Arjan van de Venacb7aa02013-02-04 14:44:33 -08002110 schedule_timeout(round_jiffies_relative(HZ));
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002111 }
2112 return 0;
2113}
2114
Keith Busche1e5e562015-02-19 13:39:03 -07002115static void nvme_alloc_ns(struct nvme_dev *dev, unsigned nsid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002116{
2117 struct nvme_ns *ns;
2118 struct gendisk *disk;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002119 int node = dev_to_node(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002120
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002121 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002122 if (!ns)
Keith Busche1e5e562015-02-19 13:39:03 -07002123 return;
2124
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002125 ns->queue = blk_mq_init_queue(&dev->tagset);
Dan Carpenter9f173b32014-11-05 23:39:09 +03002126 if (IS_ERR(ns->queue))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002127 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07002128 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
2129 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002130 ns->dev = dev;
2131 ns->queue->queuedata = ns;
2132
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002133 disk = alloc_disk_node(0, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002134 if (!disk)
2135 goto out_free_queue;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002136
Keith Busch188c3562015-10-01 17:14:10 -06002137 kref_init(&ns->kref);
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002138 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002139 ns->disk = disk;
Keith Busche1e5e562015-02-19 13:39:03 -07002140 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
2141 list_add_tail(&ns->list, &dev->namespaces);
2142
Keith Busche9ef4632012-07-24 15:01:04 -06002143 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Keith Busche8244102015-08-12 16:17:54 -06002144 if (dev->max_hw_sectors) {
Keith Busch8fc23e02012-07-26 11:29:57 -06002145 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
Keith Busche8244102015-08-12 16:17:54 -06002146 blk_queue_max_segments(ns->queue,
2147 ((dev->max_hw_sectors << 9) / dev->page_size) + 1);
2148 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002149 if (dev->stripe_size)
2150 blk_queue_chunk_sectors(ns->queue, dev->stripe_size >> 9);
Keith Buscha7d2ce22014-04-29 11:41:28 -06002151 if (dev->vwc & NVME_CTRL_VWC_PRESENT)
2152 blk_queue_flush(ns->queue, REQ_FLUSH | REQ_FUA);
Keith Busch03100aa2015-08-19 14:24:05 -07002153 blk_queue_virt_boundary(ns->queue, dev->page_size - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002154
2155 disk->major = nvme_major;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002156 disk->first_minor = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002157 disk->fops = &nvme_fops;
2158 disk->private_data = ns;
2159 disk->queue = ns->queue;
Keith Buschb3fffde2015-02-03 11:21:42 -07002160 disk->driverfs_dev = dev->device;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002161 disk->flags = GENHD_FL_EXT_DEVT;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002162 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002163
Keith Busche1e5e562015-02-19 13:39:03 -07002164 /*
2165 * Initialize capacity to 0 until we establish the namespace format and
2166 * setup integrity extentions if necessary. The revalidate_disk after
2167 * add_disk allows the driver to register with integrity if the format
2168 * requires it.
2169 */
2170 set_capacity(disk, 0);
Keith Buscha5768aa2015-06-01 14:28:14 -06002171 if (nvme_revalidate_disk(ns->disk))
2172 goto out_free_disk;
2173
Keith Busch5105aa52015-10-02 10:37:28 -06002174 kref_get(&dev->kref);
Keith Busche1e5e562015-02-19 13:39:03 -07002175 add_disk(ns->disk);
Keith Busch7bee6072015-07-14 11:57:48 -06002176 if (ns->ms) {
2177 struct block_device *bd = bdget_disk(ns->disk, 0);
2178 if (!bd)
2179 return;
2180 if (blkdev_get(bd, FMODE_READ, NULL)) {
2181 bdput(bd);
2182 return;
2183 }
2184 blkdev_reread_part(bd);
2185 blkdev_put(bd, FMODE_READ);
2186 }
Keith Busche1e5e562015-02-19 13:39:03 -07002187 return;
Keith Buscha5768aa2015-06-01 14:28:14 -06002188 out_free_disk:
2189 kfree(disk);
2190 list_del(&ns->list);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002191 out_free_queue:
2192 blk_cleanup_queue(ns->queue);
2193 out_free_ns:
2194 kfree(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002195}
2196
Keith Busch42f61422014-03-24 10:46:25 -06002197static void nvme_create_io_queues(struct nvme_dev *dev)
2198{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002199 unsigned i;
Keith Busch42f61422014-03-24 10:46:25 -06002200
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002201 for (i = dev->queue_count; i <= dev->max_qid; i++)
Keith Busch2b25d982014-12-22 12:59:04 -07002202 if (!nvme_alloc_queue(dev, i, dev->q_depth))
Keith Busch42f61422014-03-24 10:46:25 -06002203 break;
2204
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002205 for (i = dev->online_queues; i <= dev->queue_count - 1; i++)
2206 if (nvme_create_queue(dev->queues[i], i))
Keith Busch42f61422014-03-24 10:46:25 -06002207 break;
2208}
2209
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002210static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002211{
2212 int status;
2213 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002214 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002215
Matthew Wilcoxdf348132012-01-11 07:29:56 -07002216 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002217 &result);
Matthew Wilcox27e81662014-04-11 11:58:45 -04002218 if (status < 0)
2219 return status;
2220 if (status > 0) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002221 dev_err(dev->dev, "Could not set queue count (%d)\n", status);
Keith Buschbadc34d2014-06-23 14:25:35 -06002222 return 0;
Matthew Wilcox27e81662014-04-11 11:58:45 -04002223 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002224 return min(result & 0xffff, result >> 16) + 1;
2225}
2226
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002227static void __iomem *nvme_map_cmb(struct nvme_dev *dev)
2228{
2229 u64 szu, size, offset;
2230 u32 cmbloc;
2231 resource_size_t bar_size;
2232 struct pci_dev *pdev = to_pci_dev(dev->dev);
2233 void __iomem *cmb;
2234 dma_addr_t dma_addr;
2235
2236 if (!use_cmb_sqes)
2237 return NULL;
2238
2239 dev->cmbsz = readl(&dev->bar->cmbsz);
2240 if (!(NVME_CMB_SZ(dev->cmbsz)))
2241 return NULL;
2242
2243 cmbloc = readl(&dev->bar->cmbloc);
2244
2245 szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz));
2246 size = szu * NVME_CMB_SZ(dev->cmbsz);
2247 offset = szu * NVME_CMB_OFST(cmbloc);
2248 bar_size = pci_resource_len(pdev, NVME_CMB_BIR(cmbloc));
2249
2250 if (offset > bar_size)
2251 return NULL;
2252
2253 /*
2254 * Controllers may support a CMB size larger than their BAR,
2255 * for example, due to being behind a bridge. Reduce the CMB to
2256 * the reported size of the BAR
2257 */
2258 if (size > bar_size - offset)
2259 size = bar_size - offset;
2260
2261 dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(cmbloc)) + offset;
2262 cmb = ioremap_wc(dma_addr, size);
2263 if (!cmb)
2264 return NULL;
2265
2266 dev->cmb_dma_addr = dma_addr;
2267 dev->cmb_size = size;
2268 return cmb;
2269}
2270
2271static inline void nvme_release_cmb(struct nvme_dev *dev)
2272{
2273 if (dev->cmb) {
2274 iounmap(dev->cmb);
2275 dev->cmb = NULL;
2276 }
2277}
2278
Keith Busch9d713c22013-07-15 15:02:24 -06002279static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
2280{
Haiyan Hub80d5cc2013-09-10 11:25:37 +08002281 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
Keith Busch9d713c22013-07-15 15:02:24 -06002282}
2283
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002284static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002285{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002286 struct nvme_queue *adminq = dev->queues[0];
Christoph Hellwige75ec752015-05-22 11:12:39 +02002287 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch42f61422014-03-24 10:46:25 -06002288 int result, i, vecs, nr_io_queues, size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002289
Keith Busch42f61422014-03-24 10:46:25 -06002290 nr_io_queues = num_possible_cpus();
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002291 result = set_queue_count(dev, nr_io_queues);
Keith Buschbadc34d2014-06-23 14:25:35 -06002292 if (result <= 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002293 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002294 if (result < nr_io_queues)
2295 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002296
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002297 if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) {
2298 result = nvme_cmb_qdepth(dev, nr_io_queues,
2299 sizeof(struct nvme_command));
2300 if (result > 0)
2301 dev->q_depth = result;
2302 else
2303 nvme_release_cmb(dev);
2304 }
2305
Keith Busch9d713c22013-07-15 15:02:24 -06002306 size = db_bar_size(dev, nr_io_queues);
2307 if (size > 8192) {
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002308 iounmap(dev->bar);
Keith Busch9d713c22013-07-15 15:02:24 -06002309 do {
2310 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
2311 if (dev->bar)
2312 break;
2313 if (!--nr_io_queues)
2314 return -ENOMEM;
2315 size = db_bar_size(dev, nr_io_queues);
2316 } while (1);
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002317 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Keith Busch5a92e702014-02-21 14:13:44 -07002318 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002319 }
2320
Keith Busch9d713c22013-07-15 15:02:24 -06002321 /* Deregister the admin queue's interrupt */
Matthew Wilcox3193f072014-01-27 15:57:22 -05002322 free_irq(dev->entry[0].vector, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06002323
Jens Axboee32efbf2014-11-14 09:49:26 -07002324 /*
2325 * If we enable msix early due to not intx, disable it again before
2326 * setting up the full range we need.
2327 */
2328 if (!pdev->irq)
2329 pci_disable_msix(pdev);
2330
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002331 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002332 dev->entry[i].entry = i;
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002333 vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues);
2334 if (vecs < 0) {
2335 vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32));
2336 if (vecs < 0) {
2337 vecs = 1;
2338 } else {
2339 for (i = 0; i < vecs; i++)
2340 dev->entry[i].vector = i + pdev->irq;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002341 }
2342 }
2343
Matthew Wilcox063a8092013-06-20 10:53:48 -04002344 /*
2345 * Should investigate if there's a performance win from allocating
2346 * more queues than interrupt vectors; it might allow the submission
2347 * path to scale better, even if the receive path is limited by the
2348 * number of interrupts.
2349 */
2350 nr_io_queues = vecs;
Keith Busch42f61422014-03-24 10:46:25 -06002351 dev->max_qid = nr_io_queues;
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07002352
Matthew Wilcox3193f072014-01-27 15:57:22 -05002353 result = queue_request_irq(dev, adminq, adminq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06002354 if (result) {
2355 adminq->cq_vector = -1;
Keith Busch22404272013-07-15 15:02:20 -06002356 goto free_queues;
Jon Derrick758dd7f2015-06-30 11:22:52 -06002357 }
Matthew Wilcox1b234842011-01-20 13:01:49 -05002358
Keith Buschcd638942013-07-15 15:02:23 -06002359 /* Free previously allocated queues that are no longer usable */
Keith Busch42f61422014-03-24 10:46:25 -06002360 nvme_free_queues(dev, nr_io_queues + 1);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002361 nvme_create_io_queues(dev);
Keith Buschcd638942013-07-15 15:02:23 -06002362
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002363 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002364
Keith Busch22404272013-07-15 15:02:20 -06002365 free_queues:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002366 nvme_free_queues(dev, 1);
Keith Busch22404272013-07-15 15:02:20 -06002367 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002368}
2369
Keith Buscha5768aa2015-06-01 14:28:14 -06002370static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2371{
2372 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2373 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2374
2375 return nsa->ns_id - nsb->ns_id;
2376}
2377
2378static struct nvme_ns *nvme_find_ns(struct nvme_dev *dev, unsigned nsid)
2379{
2380 struct nvme_ns *ns;
2381
2382 list_for_each_entry(ns, &dev->namespaces, list) {
2383 if (ns->ns_id == nsid)
2384 return ns;
2385 if (ns->ns_id > nsid)
2386 break;
2387 }
2388 return NULL;
2389}
2390
2391static inline bool nvme_io_incapable(struct nvme_dev *dev)
2392{
2393 return (!dev->bar || readl(&dev->bar->csts) & NVME_CSTS_CFS ||
2394 dev->online_queues < 2);
2395}
2396
2397static void nvme_ns_remove(struct nvme_ns *ns)
2398{
2399 bool kill = nvme_io_incapable(ns->dev) && !blk_queue_dying(ns->queue);
2400
2401 if (kill)
2402 blk_set_queue_dying(ns->queue);
2403 if (ns->disk->flags & GENHD_FL_UP) {
2404 if (blk_get_integrity(ns->disk))
2405 blk_integrity_unregister(ns->disk);
2406 del_gendisk(ns->disk);
2407 }
2408 if (kill || !blk_queue_dying(ns->queue)) {
2409 blk_mq_abort_requeue_list(ns->queue);
2410 blk_cleanup_queue(ns->queue);
Keith Busch5105aa52015-10-02 10:37:28 -06002411 }
2412 list_del_init(&ns->list);
2413 kref_put(&ns->kref, nvme_free_ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002414}
2415
2416static void nvme_scan_namespaces(struct nvme_dev *dev, unsigned nn)
2417{
2418 struct nvme_ns *ns, *next;
2419 unsigned i;
2420
2421 for (i = 1; i <= nn; i++) {
2422 ns = nvme_find_ns(dev, i);
2423 if (ns) {
Keith Busch5105aa52015-10-02 10:37:28 -06002424 if (revalidate_disk(ns->disk))
Keith Buscha5768aa2015-06-01 14:28:14 -06002425 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002426 } else
2427 nvme_alloc_ns(dev, i);
2428 }
2429 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
Keith Busch5105aa52015-10-02 10:37:28 -06002430 if (ns->ns_id > nn)
Keith Buscha5768aa2015-06-01 14:28:14 -06002431 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002432 }
2433 list_sort(NULL, &dev->namespaces, ns_cmp);
2434}
2435
Keith Buschbda4e0f2015-09-03 08:18:17 -06002436static void nvme_set_irq_hints(struct nvme_dev *dev)
2437{
2438 struct nvme_queue *nvmeq;
2439 int i;
2440
2441 for (i = 0; i < dev->online_queues; i++) {
2442 nvmeq = dev->queues[i];
2443
2444 if (!nvmeq->tags || !(*nvmeq->tags))
2445 continue;
2446
2447 irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector,
2448 blk_mq_tags_cpumask(*nvmeq->tags));
2449 }
2450}
2451
Keith Buscha5768aa2015-06-01 14:28:14 -06002452static void nvme_dev_scan(struct work_struct *work)
2453{
2454 struct nvme_dev *dev = container_of(work, struct nvme_dev, scan_work);
2455 struct nvme_id_ctrl *ctrl;
2456
2457 if (!dev->tagset.tags)
2458 return;
2459 if (nvme_identify_ctrl(dev, &ctrl))
2460 return;
2461 nvme_scan_namespaces(dev, le32_to_cpup(&ctrl->nn));
2462 kfree(ctrl);
Keith Buschbda4e0f2015-09-03 08:18:17 -06002463 nvme_set_irq_hints(dev);
Keith Buscha5768aa2015-06-01 14:28:14 -06002464}
2465
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002466/*
2467 * Return: error value if an error occurred setting up the queues or calling
2468 * Identify Device. 0 if these succeeded, even if adding some of the
2469 * namespaces failed. At the moment, these failures are silent. TBD which
2470 * failures should be reported.
2471 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002472static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002473{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002474 struct pci_dev *pdev = to_pci_dev(dev->dev);
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04002475 int res;
Matthew Wilcox51814232011-02-01 16:18:08 -05002476 struct nvme_id_ctrl *ctrl;
Keith Busch159b67d2013-04-09 17:13:20 -06002477 int shift = NVME_CAP_MPSMIN(readq(&dev->bar->cap)) + 12;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002478
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002479 res = nvme_identify_ctrl(dev, &ctrl);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002480 if (res) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002481 dev_err(dev->dev, "Identify Controller failed (%d)\n", res);
Keith Busche1e5e562015-02-19 13:39:03 -07002482 return -EIO;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002483 }
2484
Keith Busch0e5e4f02012-11-09 16:33:05 -07002485 dev->oncs = le16_to_cpup(&ctrl->oncs);
Keith Buschc30341d2013-12-10 13:10:38 -07002486 dev->abort_limit = ctrl->acl + 1;
Keith Buscha7d2ce22014-04-29 11:41:28 -06002487 dev->vwc = ctrl->vwc;
Matthew Wilcox51814232011-02-01 16:18:08 -05002488 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
2489 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
2490 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Keith Busch159b67d2013-04-09 17:13:20 -06002491 if (ctrl->mdts)
Keith Busch8fc23e02012-07-26 11:29:57 -06002492 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
Matthew Wilcox68608c262013-06-21 14:36:34 -04002493 if ((pdev->vendor == PCI_VENDOR_ID_INTEL) &&
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002494 (pdev->device == 0x0953) && ctrl->vs[3]) {
2495 unsigned int max_hw_sectors;
2496
Keith Busch159b67d2013-04-09 17:13:20 -06002497 dev->stripe_size = 1 << (ctrl->vs[3] + shift);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002498 max_hw_sectors = dev->stripe_size >> (shift - 9);
2499 if (dev->max_hw_sectors) {
2500 dev->max_hw_sectors = min(max_hw_sectors,
2501 dev->max_hw_sectors);
2502 } else
2503 dev->max_hw_sectors = max_hw_sectors;
2504 }
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002505 kfree(ctrl);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002506
Keith Buschffe77042015-06-08 10:08:15 -06002507 if (!dev->tagset.tags) {
2508 dev->tagset.ops = &nvme_mq_ops;
2509 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2510 dev->tagset.timeout = NVME_IO_TIMEOUT;
2511 dev->tagset.numa_node = dev_to_node(dev->dev);
2512 dev->tagset.queue_depth =
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002513 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
Keith Buschffe77042015-06-08 10:08:15 -06002514 dev->tagset.cmd_size = nvme_cmd_size(dev);
2515 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2516 dev->tagset.driver_data = dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002517
Keith Buschffe77042015-06-08 10:08:15 -06002518 if (blk_mq_alloc_tag_set(&dev->tagset))
2519 return 0;
2520 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002521 schedule_work(&dev->scan_work);
Keith Busche1e5e562015-02-19 13:39:03 -07002522 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002523}
2524
Keith Busch0877cb02013-07-15 15:02:19 -06002525static int nvme_dev_map(struct nvme_dev *dev)
2526{
Keith Busch42f61422014-03-24 10:46:25 -06002527 u64 cap;
Keith Busch0877cb02013-07-15 15:02:19 -06002528 int bars, result = -ENOMEM;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002529 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002530
2531 if (pci_enable_device_mem(pdev))
2532 return result;
2533
2534 dev->entry[0].vector = pdev->irq;
2535 pci_set_master(pdev);
2536 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Jens Axboebe7837e2014-11-14 09:50:19 -07002537 if (!bars)
2538 goto disable_pci;
2539
Keith Busch0877cb02013-07-15 15:02:19 -06002540 if (pci_request_selected_regions(pdev, bars, "nvme"))
2541 goto disable_pci;
2542
Christoph Hellwige75ec752015-05-22 11:12:39 +02002543 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
2544 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
Russell King052d0ef2013-06-26 23:49:11 +01002545 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06002546
Keith Busch0877cb02013-07-15 15:02:19 -06002547 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
2548 if (!dev->bar)
2549 goto disable;
Jens Axboee32efbf2014-11-14 09:49:26 -07002550
Keith Busch0e53d182013-12-10 13:10:39 -07002551 if (readl(&dev->bar->csts) == -1) {
2552 result = -ENODEV;
2553 goto unmap;
2554 }
Jens Axboee32efbf2014-11-14 09:49:26 -07002555
2556 /*
2557 * Some devices don't advertse INTx interrupts, pre-enable a single
2558 * MSIX vec for setup. We'll adjust this later.
2559 */
2560 if (!pdev->irq) {
2561 result = pci_enable_msix(pdev, dev->entry, 1);
2562 if (result < 0)
2563 goto unmap;
2564 }
2565
Keith Busch42f61422014-03-24 10:46:25 -06002566 cap = readq(&dev->bar->cap);
2567 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
2568 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
Keith Busch0877cb02013-07-15 15:02:19 -06002569 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002570 if (readl(&dev->bar->vs) >= NVME_VS(1, 2))
2571 dev->cmb = nvme_map_cmb(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002572
2573 return 0;
2574
Keith Busch0e53d182013-12-10 13:10:39 -07002575 unmap:
2576 iounmap(dev->bar);
2577 dev->bar = NULL;
Keith Busch0877cb02013-07-15 15:02:19 -06002578 disable:
2579 pci_release_regions(pdev);
2580 disable_pci:
2581 pci_disable_device(pdev);
2582 return result;
2583}
2584
2585static void nvme_dev_unmap(struct nvme_dev *dev)
2586{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002587 struct pci_dev *pdev = to_pci_dev(dev->dev);
2588
2589 if (pdev->msi_enabled)
2590 pci_disable_msi(pdev);
2591 else if (pdev->msix_enabled)
2592 pci_disable_msix(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002593
2594 if (dev->bar) {
2595 iounmap(dev->bar);
2596 dev->bar = NULL;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002597 pci_release_regions(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002598 }
2599
Christoph Hellwige75ec752015-05-22 11:12:39 +02002600 if (pci_is_enabled(pdev))
2601 pci_disable_device(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002602}
2603
Keith Busch4d115422013-12-10 13:10:40 -07002604struct nvme_delq_ctx {
2605 struct task_struct *waiter;
2606 struct kthread_worker *worker;
2607 atomic_t refcount;
2608};
2609
2610static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev)
2611{
2612 dq->waiter = current;
2613 mb();
2614
2615 for (;;) {
2616 set_current_state(TASK_KILLABLE);
2617 if (!atomic_read(&dq->refcount))
2618 break;
2619 if (!schedule_timeout(ADMIN_TIMEOUT) ||
2620 fatal_signal_pending(current)) {
Keith Busch0fb59cb2015-01-07 18:55:50 -07002621 /*
2622 * Disable the controller first since we can't trust it
2623 * at this point, but leave the admin queue enabled
2624 * until all queue deletion requests are flushed.
2625 * FIXME: This may take a while if there are more h/w
2626 * queues than admin tags.
2627 */
Keith Busch4d115422013-12-10 13:10:40 -07002628 set_current_state(TASK_RUNNING);
Keith Busch4d115422013-12-10 13:10:40 -07002629 nvme_disable_ctrl(dev, readq(&dev->bar->cap));
Keith Busch0fb59cb2015-01-07 18:55:50 -07002630 nvme_clear_queue(dev->queues[0]);
Keith Busch4d115422013-12-10 13:10:40 -07002631 flush_kthread_worker(dq->worker);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002632 nvme_disable_queue(dev, 0);
Keith Busch4d115422013-12-10 13:10:40 -07002633 return;
2634 }
2635 }
2636 set_current_state(TASK_RUNNING);
2637}
2638
2639static void nvme_put_dq(struct nvme_delq_ctx *dq)
2640{
2641 atomic_dec(&dq->refcount);
2642 if (dq->waiter)
2643 wake_up_process(dq->waiter);
2644}
2645
2646static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq)
2647{
2648 atomic_inc(&dq->refcount);
2649 return dq;
2650}
2651
2652static void nvme_del_queue_end(struct nvme_queue *nvmeq)
2653{
2654 struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx;
Keith Busch4d115422013-12-10 13:10:40 -07002655 nvme_put_dq(dq);
2656}
2657
2658static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode,
2659 kthread_work_func_t fn)
2660{
2661 struct nvme_command c;
2662
2663 memset(&c, 0, sizeof(c));
2664 c.delete_queue.opcode = opcode;
2665 c.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2666
2667 init_kthread_work(&nvmeq->cmdinfo.work, fn);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002668 return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo,
2669 ADMIN_TIMEOUT);
Keith Busch4d115422013-12-10 13:10:40 -07002670}
2671
2672static void nvme_del_cq_work_handler(struct kthread_work *work)
2673{
2674 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2675 cmdinfo.work);
2676 nvme_del_queue_end(nvmeq);
2677}
2678
2679static int nvme_delete_cq(struct nvme_queue *nvmeq)
2680{
2681 return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq,
2682 nvme_del_cq_work_handler);
2683}
2684
2685static void nvme_del_sq_work_handler(struct kthread_work *work)
2686{
2687 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2688 cmdinfo.work);
2689 int status = nvmeq->cmdinfo.status;
2690
2691 if (!status)
2692 status = nvme_delete_cq(nvmeq);
2693 if (status)
2694 nvme_del_queue_end(nvmeq);
2695}
2696
2697static int nvme_delete_sq(struct nvme_queue *nvmeq)
2698{
2699 return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq,
2700 nvme_del_sq_work_handler);
2701}
2702
2703static void nvme_del_queue_start(struct kthread_work *work)
2704{
2705 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2706 cmdinfo.work);
Keith Busch4d115422013-12-10 13:10:40 -07002707 if (nvme_delete_sq(nvmeq))
2708 nvme_del_queue_end(nvmeq);
2709}
2710
2711static void nvme_disable_io_queues(struct nvme_dev *dev)
2712{
2713 int i;
2714 DEFINE_KTHREAD_WORKER_ONSTACK(worker);
2715 struct nvme_delq_ctx dq;
2716 struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
2717 &worker, "nvme%d", dev->instance);
2718
2719 if (IS_ERR(kworker_task)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002720 dev_err(dev->dev,
Keith Busch4d115422013-12-10 13:10:40 -07002721 "Failed to create queue del task\n");
2722 for (i = dev->queue_count - 1; i > 0; i--)
2723 nvme_disable_queue(dev, i);
2724 return;
2725 }
2726
2727 dq.waiter = NULL;
2728 atomic_set(&dq.refcount, 0);
2729 dq.worker = &worker;
2730 for (i = dev->queue_count - 1; i > 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002731 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002732
2733 if (nvme_suspend_queue(nvmeq))
2734 continue;
2735 nvmeq->cmdinfo.ctx = nvme_get_dq(&dq);
2736 nvmeq->cmdinfo.worker = dq.worker;
2737 init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start);
2738 queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work);
2739 }
2740 nvme_wait_dq(&dq, dev);
2741 kthread_stop(kworker_task);
2742}
2743
Dan McLeranb9afca32014-04-07 17:10:11 -06002744/*
2745* Remove the node from the device list and check
2746* for whether or not we need to stop the nvme_thread.
2747*/
2748static void nvme_dev_list_remove(struct nvme_dev *dev)
2749{
2750 struct task_struct *tmp = NULL;
2751
2752 spin_lock(&dev_list_lock);
2753 list_del_init(&dev->node);
2754 if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) {
2755 tmp = nvme_thread;
2756 nvme_thread = NULL;
2757 }
2758 spin_unlock(&dev_list_lock);
2759
2760 if (tmp)
2761 kthread_stop(tmp);
2762}
2763
Keith Buschc9d3bf82015-01-07 18:55:52 -07002764static void nvme_freeze_queues(struct nvme_dev *dev)
2765{
2766 struct nvme_ns *ns;
2767
2768 list_for_each_entry(ns, &dev->namespaces, list) {
2769 blk_mq_freeze_queue_start(ns->queue);
2770
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002771 spin_lock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002772 queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue);
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002773 spin_unlock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002774
2775 blk_mq_cancel_requeue_work(ns->queue);
2776 blk_mq_stop_hw_queues(ns->queue);
2777 }
2778}
2779
2780static void nvme_unfreeze_queues(struct nvme_dev *dev)
2781{
2782 struct nvme_ns *ns;
2783
2784 list_for_each_entry(ns, &dev->namespaces, list) {
2785 queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue);
2786 blk_mq_unfreeze_queue(ns->queue);
2787 blk_mq_start_stopped_hw_queues(ns->queue, true);
2788 blk_mq_kick_requeue_list(ns->queue);
2789 }
2790}
2791
Keith Buschf0b50732013-07-15 15:02:21 -06002792static void nvme_dev_shutdown(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002793{
Keith Busch22404272013-07-15 15:02:20 -06002794 int i;
Keith Busch7c1b2452014-06-25 11:18:12 -06002795 u32 csts = -1;
Keith Busch22404272013-07-15 15:02:20 -06002796
Dan McLeranb9afca32014-04-07 17:10:11 -06002797 nvme_dev_list_remove(dev);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002798
Keith Buschc9d3bf82015-01-07 18:55:52 -07002799 if (dev->bar) {
2800 nvme_freeze_queues(dev);
Keith Busch7c1b2452014-06-25 11:18:12 -06002801 csts = readl(&dev->bar->csts);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002802 }
Keith Busch7c1b2452014-06-25 11:18:12 -06002803 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
Keith Busch4d115422013-12-10 13:10:40 -07002804 for (i = dev->queue_count - 1; i >= 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002805 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002806 nvme_suspend_queue(nvmeq);
Keith Busch4d115422013-12-10 13:10:40 -07002807 }
2808 } else {
2809 nvme_disable_io_queues(dev);
Keith Busch1894d8f2013-07-15 15:02:22 -06002810 nvme_shutdown_ctrl(dev);
Keith Busch4d115422013-12-10 13:10:40 -07002811 nvme_disable_queue(dev, 0);
2812 }
Keith Buschf0b50732013-07-15 15:02:21 -06002813 nvme_dev_unmap(dev);
Keith Busch07836e62015-02-19 10:34:48 -07002814
2815 for (i = dev->queue_count - 1; i >= 0; i--)
2816 nvme_clear_queue(dev->queues[i]);
Keith Buschf0b50732013-07-15 15:02:21 -06002817}
2818
2819static void nvme_dev_remove(struct nvme_dev *dev)
2820{
Keith Busch5105aa52015-10-02 10:37:28 -06002821 struct nvme_ns *ns, *next;
Keith Buschf0b50732013-07-15 15:02:21 -06002822
Keith Busch5105aa52015-10-02 10:37:28 -06002823 list_for_each_entry_safe(ns, next, &dev->namespaces, list)
Keith Buscha5768aa2015-06-01 14:28:14 -06002824 nvme_ns_remove(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002825}
2826
Matthew Wilcox091b6092011-02-10 09:56:01 -05002827static int nvme_setup_prp_pools(struct nvme_dev *dev)
2828{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002829 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
Matthew Wilcox091b6092011-02-10 09:56:01 -05002830 PAGE_SIZE, PAGE_SIZE, 0);
2831 if (!dev->prp_page_pool)
2832 return -ENOMEM;
2833
Matthew Wilcox99802a72011-02-10 10:30:34 -05002834 /* Optimisation for I/Os between 4k and 128k */
Christoph Hellwige75ec752015-05-22 11:12:39 +02002835 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
Matthew Wilcox99802a72011-02-10 10:30:34 -05002836 256, 256, 0);
2837 if (!dev->prp_small_pool) {
2838 dma_pool_destroy(dev->prp_page_pool);
2839 return -ENOMEM;
2840 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002841 return 0;
2842}
2843
2844static void nvme_release_prp_pools(struct nvme_dev *dev)
2845{
2846 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002847 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002848}
2849
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002850static DEFINE_IDA(nvme_instance_ida);
2851
2852static int nvme_set_instance(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002853{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002854 int instance, error;
2855
2856 do {
2857 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
2858 return -ENODEV;
2859
2860 spin_lock(&dev_list_lock);
2861 error = ida_get_new(&nvme_instance_ida, &instance);
2862 spin_unlock(&dev_list_lock);
2863 } while (error == -EAGAIN);
2864
2865 if (error)
2866 return -ENODEV;
2867
2868 dev->instance = instance;
2869 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002870}
2871
2872static void nvme_release_instance(struct nvme_dev *dev)
2873{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002874 spin_lock(&dev_list_lock);
2875 ida_remove(&nvme_instance_ida, dev->instance);
2876 spin_unlock(&dev_list_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002877}
2878
Keith Busch5e82e952013-02-19 10:17:58 -07002879static void nvme_free_dev(struct kref *kref)
2880{
2881 struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref);
Keith Busch9ac27092014-01-31 16:53:39 -07002882
Christoph Hellwige75ec752015-05-22 11:12:39 +02002883 put_device(dev->dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07002884 put_device(dev->device);
Indraneel M285dffc2014-12-11 08:24:18 -07002885 nvme_release_instance(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06002886 if (dev->tagset.tags)
2887 blk_mq_free_tag_set(&dev->tagset);
2888 if (dev->admin_q)
2889 blk_put_queue(dev->admin_q);
Keith Busch5e82e952013-02-19 10:17:58 -07002890 kfree(dev->queues);
2891 kfree(dev->entry);
2892 kfree(dev);
2893}
2894
2895static int nvme_dev_open(struct inode *inode, struct file *f)
2896{
Keith Buschb3fffde2015-02-03 11:21:42 -07002897 struct nvme_dev *dev;
2898 int instance = iminor(inode);
2899 int ret = -ENODEV;
2900
2901 spin_lock(&dev_list_lock);
2902 list_for_each_entry(dev, &dev_list, node) {
2903 if (dev->instance == instance) {
Keith Busch2e1d8442015-02-12 15:33:00 -07002904 if (!dev->admin_q) {
2905 ret = -EWOULDBLOCK;
2906 break;
2907 }
Keith Buschb3fffde2015-02-03 11:21:42 -07002908 if (!kref_get_unless_zero(&dev->kref))
2909 break;
2910 f->private_data = dev;
2911 ret = 0;
2912 break;
2913 }
2914 }
2915 spin_unlock(&dev_list_lock);
2916
2917 return ret;
Keith Busch5e82e952013-02-19 10:17:58 -07002918}
2919
2920static int nvme_dev_release(struct inode *inode, struct file *f)
2921{
2922 struct nvme_dev *dev = f->private_data;
2923 kref_put(&dev->kref, nvme_free_dev);
2924 return 0;
2925}
2926
2927static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
2928{
2929 struct nvme_dev *dev = f->private_data;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002930 struct nvme_ns *ns;
2931
Keith Busch5e82e952013-02-19 10:17:58 -07002932 switch (cmd) {
2933 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002934 return nvme_user_cmd(dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06002935 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002936 if (list_empty(&dev->namespaces))
2937 return -ENOTTY;
2938 ns = list_first_entry(&dev->namespaces, struct nvme_ns, list);
2939 return nvme_user_cmd(dev, ns, (void __user *)arg);
Keith Busch4cc06522015-06-05 10:30:08 -06002940 case NVME_IOCTL_RESET:
2941 dev_warn(dev->dev, "resetting controller\n");
2942 return nvme_reset(dev);
Jon Derrick81f03fe2015-08-10 15:20:41 -06002943 case NVME_IOCTL_SUBSYS_RESET:
2944 return nvme_subsys_reset(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07002945 default:
2946 return -ENOTTY;
2947 }
2948}
2949
2950static const struct file_operations nvme_dev_fops = {
2951 .owner = THIS_MODULE,
2952 .open = nvme_dev_open,
2953 .release = nvme_dev_release,
2954 .unlocked_ioctl = nvme_dev_ioctl,
2955 .compat_ioctl = nvme_dev_ioctl,
2956};
2957
Keith Buschf0b50732013-07-15 15:02:21 -06002958static int nvme_dev_start(struct nvme_dev *dev)
2959{
2960 int result;
Dan McLeranb9afca32014-04-07 17:10:11 -06002961 bool start_thread = false;
Keith Buschf0b50732013-07-15 15:02:21 -06002962
2963 result = nvme_dev_map(dev);
2964 if (result)
2965 return result;
2966
2967 result = nvme_configure_admin_queue(dev);
2968 if (result)
2969 goto unmap;
2970
2971 spin_lock(&dev_list_lock);
Dan McLeranb9afca32014-04-07 17:10:11 -06002972 if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) {
2973 start_thread = true;
2974 nvme_thread = NULL;
2975 }
Keith Buschf0b50732013-07-15 15:02:21 -06002976 list_add(&dev->node, &dev_list);
2977 spin_unlock(&dev_list_lock);
2978
Dan McLeranb9afca32014-04-07 17:10:11 -06002979 if (start_thread) {
2980 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
Keith Busch387caa52014-09-22 13:46:19 -06002981 wake_up_all(&nvme_kthread_wait);
Dan McLeranb9afca32014-04-07 17:10:11 -06002982 } else
2983 wait_event_killable(nvme_kthread_wait, nvme_thread);
2984
2985 if (IS_ERR_OR_NULL(nvme_thread)) {
2986 result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR;
2987 goto disable;
2988 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002989
2990 nvme_init_queue(dev->queues[0], 0);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002991 result = nvme_alloc_admin_tags(dev);
2992 if (result)
2993 goto disable;
Dan McLeranb9afca32014-04-07 17:10:11 -06002994
Keith Buschf0b50732013-07-15 15:02:21 -06002995 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06002996 if (result)
Keith Busch0fb59cb2015-01-07 18:55:50 -07002997 goto free_tags;
Keith Buschf0b50732013-07-15 15:02:21 -06002998
Keith Busch1efccc92015-03-31 10:37:17 -06002999 dev->event_limit = 1;
Keith Buschd82e8bf2013-09-05 14:45:07 -06003000 return result;
Keith Buschf0b50732013-07-15 15:02:21 -06003001
Keith Busch0fb59cb2015-01-07 18:55:50 -07003002 free_tags:
3003 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06003004 blk_put_queue(dev->admin_q);
3005 dev->admin_q = NULL;
3006 dev->queues[0]->tags = NULL;
Keith Buschf0b50732013-07-15 15:02:21 -06003007 disable:
Keith Buscha1a5ef92013-12-16 13:50:00 -05003008 nvme_disable_queue(dev, 0);
Dan McLeranb9afca32014-04-07 17:10:11 -06003009 nvme_dev_list_remove(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003010 unmap:
3011 nvme_dev_unmap(dev);
3012 return result;
3013}
3014
Keith Busch9a6b9452013-12-10 13:10:36 -07003015static int nvme_remove_dead_ctrl(void *arg)
3016{
3017 struct nvme_dev *dev = (struct nvme_dev *)arg;
Christoph Hellwige75ec752015-05-22 11:12:39 +02003018 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003019
3020 if (pci_get_drvdata(pdev))
Keith Buschc81f4972014-06-23 15:24:53 -06003021 pci_stop_and_remove_bus_device_locked(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003022 kref_put(&dev->kref, nvme_free_dev);
3023 return 0;
3024}
3025
Keith Busch9a6b9452013-12-10 13:10:36 -07003026static int nvme_dev_resume(struct nvme_dev *dev)
3027{
3028 int ret;
3029
3030 ret = nvme_dev_start(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06003031 if (ret)
Keith Busch9a6b9452013-12-10 13:10:36 -07003032 return ret;
Keith Buschbadc34d2014-06-23 14:25:35 -06003033 if (dev->online_queues < 2) {
Keith Busch0a7385a2015-10-02 10:37:29 -06003034 dev_warn(dev->dev, "IO queues not created\n");
3035 nvme_free_queues(dev, 1);
3036 nvme_dev_remove(dev);
Keith Buschc9d3bf82015-01-07 18:55:52 -07003037 } else {
3038 nvme_unfreeze_queues(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003039 nvme_dev_add(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003040 }
3041 return 0;
3042}
3043
Keith Buschde3eff22015-06-18 13:36:39 -06003044static void nvme_dead_ctrl(struct nvme_dev *dev)
3045{
3046 dev_warn(dev->dev, "Device failed to resume\n");
3047 kref_get(&dev->kref);
3048 if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
3049 dev->instance))) {
3050 dev_err(dev->dev,
3051 "Failed to start controller remove task\n");
3052 kref_put(&dev->kref, nvme_free_dev);
3053 }
3054}
3055
Keith Busch9a6b9452013-12-10 13:10:36 -07003056static void nvme_dev_reset(struct nvme_dev *dev)
3057{
Keith Buschffe77042015-06-08 10:08:15 -06003058 bool in_probe = work_busy(&dev->probe_work);
3059
Keith Busch9a6b9452013-12-10 13:10:36 -07003060 nvme_dev_shutdown(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003061
3062 /* Synchronize with device probe so that work will see failure status
3063 * and exit gracefully without trying to schedule another reset */
3064 flush_work(&dev->probe_work);
3065
3066 /* Fail this device if reset occured during probe to avoid
3067 * infinite initialization loops. */
3068 if (in_probe) {
Keith Buschde3eff22015-06-18 13:36:39 -06003069 nvme_dead_ctrl(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003070 return;
Keith Busch9a6b9452013-12-10 13:10:36 -07003071 }
Keith Buschffe77042015-06-08 10:08:15 -06003072 /* Schedule device resume asynchronously so the reset work is available
3073 * to cleanup errors that may occur during reinitialization */
3074 schedule_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003075}
3076
3077static void nvme_reset_failed_dev(struct work_struct *ws)
3078{
3079 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
3080 nvme_dev_reset(dev);
3081}
3082
Keith Busch4cc06522015-06-05 10:30:08 -06003083static int nvme_reset(struct nvme_dev *dev)
3084{
3085 int ret = -EBUSY;
3086
3087 if (!dev->admin_q || blk_queue_dying(dev->admin_q))
3088 return -ENODEV;
3089
3090 spin_lock(&dev_list_lock);
3091 if (!work_pending(&dev->reset_work)) {
Keith Busch4cc06522015-06-05 10:30:08 -06003092 queue_work(nvme_workq, &dev->reset_work);
3093 ret = 0;
3094 }
3095 spin_unlock(&dev_list_lock);
3096
3097 if (!ret) {
3098 flush_work(&dev->reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003099 flush_work(&dev->probe_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003100 return 0;
3101 }
3102
3103 return ret;
3104}
3105
3106static ssize_t nvme_sysfs_reset(struct device *dev,
3107 struct device_attribute *attr, const char *buf,
3108 size_t count)
3109{
3110 struct nvme_dev *ndev = dev_get_drvdata(dev);
3111 int ret;
3112
3113 ret = nvme_reset(ndev);
3114 if (ret < 0)
3115 return ret;
3116
3117 return count;
3118}
3119static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
3120
Keith Busch2e1d8442015-02-12 15:33:00 -07003121static void nvme_async_probe(struct work_struct *work);
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003122static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003123{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003124 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003125 struct nvme_dev *dev;
3126
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003127 node = dev_to_node(&pdev->dev);
3128 if (node == NUMA_NO_NODE)
3129 set_dev_node(&pdev->dev, 0);
3130
3131 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003132 if (!dev)
3133 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003134 dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry),
3135 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003136 if (!dev->entry)
3137 goto free;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003138 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
3139 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003140 if (!dev->queues)
3141 goto free;
3142
3143 INIT_LIST_HEAD(&dev->namespaces);
Keith Busch0a7385a2015-10-02 10:37:29 -06003144 INIT_WORK(&dev->reset_work, nvme_reset_failed_dev);
Christoph Hellwige75ec752015-05-22 11:12:39 +02003145 dev->dev = get_device(&pdev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003146 pci_set_drvdata(pdev, dev);
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07003147 result = nvme_set_instance(dev);
3148 if (result)
Keith Buscha96d4f52014-08-19 19:15:59 -06003149 goto put_pci;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003150
Matthew Wilcox091b6092011-02-10 09:56:01 -05003151 result = nvme_setup_prp_pools(dev);
3152 if (result)
Keith Busch0877cb02013-07-15 15:02:19 -06003153 goto release;
Matthew Wilcox091b6092011-02-10 09:56:01 -05003154
Keith Buschfb35e912014-03-03 11:09:47 -07003155 kref_init(&dev->kref);
Keith Buschb3fffde2015-02-03 11:21:42 -07003156 dev->device = device_create(nvme_class, &pdev->dev,
3157 MKDEV(nvme_char_major, dev->instance),
3158 dev, "nvme%d", dev->instance);
3159 if (IS_ERR(dev->device)) {
3160 result = PTR_ERR(dev->device);
Keith Busch2e1d8442015-02-12 15:33:00 -07003161 goto release_pools;
Keith Buschb3fffde2015-02-03 11:21:42 -07003162 }
3163 get_device(dev->device);
Keith Busch4cc06522015-06-05 10:30:08 -06003164 dev_set_drvdata(dev->device, dev);
3165
3166 result = device_create_file(dev->device, &dev_attr_reset_controller);
3167 if (result)
3168 goto put_dev;
Keith Buschb3fffde2015-02-03 11:21:42 -07003169
Keith Busche6e96d72015-03-23 09:32:37 -06003170 INIT_LIST_HEAD(&dev->node);
Keith Buscha5768aa2015-06-01 14:28:14 -06003171 INIT_WORK(&dev->scan_work, nvme_dev_scan);
Keith Busch2e1d8442015-02-12 15:33:00 -07003172 INIT_WORK(&dev->probe_work, nvme_async_probe);
3173 schedule_work(&dev->probe_work);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003174 return 0;
3175
Keith Busch4cc06522015-06-05 10:30:08 -06003176 put_dev:
3177 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
3178 put_device(dev->device);
Keith Busch0877cb02013-07-15 15:02:19 -06003179 release_pools:
Matthew Wilcox091b6092011-02-10 09:56:01 -05003180 nvme_release_prp_pools(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06003181 release:
3182 nvme_release_instance(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06003183 put_pci:
Christoph Hellwige75ec752015-05-22 11:12:39 +02003184 put_device(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003185 free:
3186 kfree(dev->queues);
3187 kfree(dev->entry);
3188 kfree(dev);
3189 return result;
3190}
3191
Keith Busch2e1d8442015-02-12 15:33:00 -07003192static void nvme_async_probe(struct work_struct *work)
3193{
3194 struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work);
Keith Busch2e1d8442015-02-12 15:33:00 -07003195
Keith Buschde3eff22015-06-18 13:36:39 -06003196 if (nvme_dev_resume(dev) && !work_busy(&dev->reset_work))
3197 nvme_dead_ctrl(dev);
Keith Busch2e1d8442015-02-12 15:33:00 -07003198}
3199
Keith Buschf0d54a52014-05-02 10:40:43 -06003200static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
3201{
Keith Buscha6739472014-06-23 16:03:21 -06003202 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buschf0d54a52014-05-02 10:40:43 -06003203
Keith Buscha6739472014-06-23 16:03:21 -06003204 if (prepare)
3205 nvme_dev_shutdown(dev);
3206 else
Keith Busch0a7385a2015-10-02 10:37:29 -06003207 schedule_work(&dev->probe_work);
Keith Buschf0d54a52014-05-02 10:40:43 -06003208}
3209
Keith Busch09ece142014-01-27 11:29:40 -05003210static void nvme_shutdown(struct pci_dev *pdev)
3211{
3212 struct nvme_dev *dev = pci_get_drvdata(pdev);
3213 nvme_dev_shutdown(dev);
3214}
3215
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003216static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003217{
3218 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003219
3220 spin_lock(&dev_list_lock);
3221 list_del_init(&dev->node);
3222 spin_unlock(&dev_list_lock);
3223
3224 pci_set_drvdata(pdev, NULL);
Keith Busch2e1d8442015-02-12 15:33:00 -07003225 flush_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003226 flush_work(&dev->reset_work);
Keith Buscha5768aa2015-06-01 14:28:14 -06003227 flush_work(&dev->scan_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003228 device_remove_file(dev->device, &dev_attr_reset_controller);
Keith Buschc9d3bf82015-01-07 18:55:52 -07003229 nvme_dev_remove(dev);
Keith Busch3399a3f2015-06-18 13:36:40 -06003230 nvme_dev_shutdown(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003231 nvme_dev_remove_admin(dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07003232 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003233 nvme_free_queues(dev, 0);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06003234 nvme_release_cmb(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003235 nvme_release_prp_pools(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003236 kref_put(&dev->kref, nvme_free_dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003237}
3238
3239/* These functions are yet to be implemented */
3240#define nvme_error_detected NULL
3241#define nvme_dump_registers NULL
3242#define nvme_link_reset NULL
3243#define nvme_slot_reset NULL
3244#define nvme_error_resume NULL
Keith Buschcd638942013-07-15 15:02:23 -06003245
Jingoo Han671a6012014-02-13 11:19:14 +09003246#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06003247static int nvme_suspend(struct device *dev)
3248{
3249 struct pci_dev *pdev = to_pci_dev(dev);
3250 struct nvme_dev *ndev = pci_get_drvdata(pdev);
3251
3252 nvme_dev_shutdown(ndev);
3253 return 0;
3254}
3255
3256static int nvme_resume(struct device *dev)
3257{
3258 struct pci_dev *pdev = to_pci_dev(dev);
3259 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06003260
Keith Busch0a7385a2015-10-02 10:37:29 -06003261 schedule_work(&ndev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003262 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06003263}
Jingoo Han671a6012014-02-13 11:19:14 +09003264#endif
Keith Buschcd638942013-07-15 15:02:23 -06003265
3266static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003267
Stephen Hemminger1d352032012-09-07 09:33:17 -07003268static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003269 .error_detected = nvme_error_detected,
3270 .mmio_enabled = nvme_dump_registers,
3271 .link_reset = nvme_link_reset,
3272 .slot_reset = nvme_slot_reset,
3273 .resume = nvme_error_resume,
Keith Buschf0d54a52014-05-02 10:40:43 -06003274 .reset_notify = nvme_reset_notify,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003275};
3276
3277/* Move to pci_ids.h later */
3278#define PCI_CLASS_STORAGE_EXPRESS 0x010802
3279
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003280static const struct pci_device_id nvme_id_table[] = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003281 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
3282 { 0, }
3283};
3284MODULE_DEVICE_TABLE(pci, nvme_id_table);
3285
3286static struct pci_driver nvme_driver = {
3287 .name = "nvme",
3288 .id_table = nvme_id_table,
3289 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003290 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05003291 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06003292 .driver = {
3293 .pm = &nvme_dev_pm_ops,
3294 },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003295 .err_handler = &nvme_err_handler,
3296};
3297
3298static int __init nvme_init(void)
3299{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003300 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003301
Dan McLeranb9afca32014-04-07 17:10:11 -06003302 init_waitqueue_head(&nvme_kthread_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003303
Keith Busch9a6b9452013-12-10 13:10:36 -07003304 nvme_workq = create_singlethread_workqueue("nvme");
3305 if (!nvme_workq)
Dan McLeranb9afca32014-04-07 17:10:11 -06003306 return -ENOMEM;
Keith Busch9a6b9452013-12-10 13:10:36 -07003307
Keith Busch5c42ea12012-07-25 16:05:18 -06003308 result = register_blkdev(nvme_major, "nvme");
3309 if (result < 0)
Keith Busch9a6b9452013-12-10 13:10:36 -07003310 goto kill_workq;
Keith Busch5c42ea12012-07-25 16:05:18 -06003311 else if (result > 0)
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003312 nvme_major = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003313
Keith Buschb3fffde2015-02-03 11:21:42 -07003314 result = __register_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme",
3315 &nvme_dev_fops);
3316 if (result < 0)
3317 goto unregister_blkdev;
3318 else if (result > 0)
3319 nvme_char_major = result;
3320
3321 nvme_class = class_create(THIS_MODULE, "nvme");
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003322 if (IS_ERR(nvme_class)) {
3323 result = PTR_ERR(nvme_class);
Keith Buschb3fffde2015-02-03 11:21:42 -07003324 goto unregister_chrdev;
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003325 }
Keith Buschb3fffde2015-02-03 11:21:42 -07003326
Keith Buschf3db22f2014-06-11 11:51:35 -06003327 result = pci_register_driver(&nvme_driver);
3328 if (result)
Keith Buschb3fffde2015-02-03 11:21:42 -07003329 goto destroy_class;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003330 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003331
Keith Buschb3fffde2015-02-03 11:21:42 -07003332 destroy_class:
3333 class_destroy(nvme_class);
3334 unregister_chrdev:
3335 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003336 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003337 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003338 kill_workq:
3339 destroy_workqueue(nvme_workq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003340 return result;
3341}
3342
3343static void __exit nvme_exit(void)
3344{
3345 pci_unregister_driver(&nvme_driver);
3346 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003347 destroy_workqueue(nvme_workq);
Keith Buschb3fffde2015-02-03 11:21:42 -07003348 class_destroy(nvme_class);
3349 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Dan McLeranb9afca32014-04-07 17:10:11 -06003350 BUG_ON(nvme_thread && !IS_ERR(nvme_thread));
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04003351 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003352}
3353
3354MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
3355MODULE_LICENSE("GPL");
Keith Buschc78b47132014-11-21 15:16:32 -07003356MODULE_VERSION("1.0");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003357module_init(nvme_init);
3358module_exit(nvme_exit);