blob: ad06f8dcf5826ff4f679f3632268248c0cb4cb0c [file] [log] [blame]
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001/*
2 * NVM Express device driver
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003 * Copyright (c) 2011-2014, Intel Corporation.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050013 */
14
Matthew Wilcox8de05532011-05-12 13:50:28 -040015#include <linux/bitops.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050016#include <linux/blkdev.h>
Matias Bjørlinga4aea562014-11-04 08:20:14 -070017#include <linux/blk-mq.h>
Keith Busch42f61422014-03-24 10:46:25 -060018#include <linux/cpu.h>
Matthew Wilcoxfd63e9ce2011-05-06 08:37:54 -040019#include <linux/delay.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050020#include <linux/errno.h>
21#include <linux/fs.h>
22#include <linux/genhd.h>
Keith Busch4cc09e22014-04-02 15:45:37 -060023#include <linux/hdreg.h>
Matthew Wilcox5aff9382011-05-06 08:45:47 -040024#include <linux/idr.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050025#include <linux/init.h>
26#include <linux/interrupt.h>
27#include <linux/io.h>
28#include <linux/kdev_t.h>
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050029#include <linux/kthread.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050030#include <linux/kernel.h>
Keith Buscha5768aa2015-06-01 14:28:14 -060031#include <linux/list_sort.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050032#include <linux/mm.h>
33#include <linux/module.h>
34#include <linux/moduleparam.h>
35#include <linux/pci.h>
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -050036#include <linux/poison.h>
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -040037#include <linux/ptrace.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050038#include <linux/sched.h>
39#include <linux/slab.h>
Keith Busche1e5e562015-02-19 13:39:03 -070040#include <linux/t10-pi.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050041#include <linux/types.h>
Vishal Verma5d0f6132013-03-04 18:40:58 -070042#include <scsi/sg.h>
Hitoshi Mitake797a7962012-02-07 11:45:33 +090043#include <asm-generic/io-64-nonatomic-lo-hi.h>
44
Christoph Hellwig9d99a8d2015-10-02 15:25:49 +020045#include <uapi/linux/nvme_ioctl.h>
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020046#include "nvme.h"
47
Keith Buschb3fffde2015-02-03 11:21:42 -070048#define NVME_MINORS (1U << MINORBITS)
Keith Busch9d43cf62014-05-13 11:42:02 -060049#define NVME_Q_DEPTH 1024
Jens Axboed31af0a2015-03-06 12:56:13 -070050#define NVME_AQ_DEPTH 256
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050051#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
52#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
Keith Busch9d43cf62014-05-13 11:42:02 -060053#define ADMIN_TIMEOUT (admin_timeout * HZ)
Dan McLeran2484f402014-07-01 09:33:32 -060054#define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050055
Keith Busch9d43cf62014-05-13 11:42:02 -060056static unsigned char admin_timeout = 60;
57module_param(admin_timeout, byte, 0644);
58MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050059
Matthew Wilcoxbd676082014-06-03 23:04:30 -040060unsigned char nvme_io_timeout = 30;
61module_param_named(io_timeout, nvme_io_timeout, byte, 0644);
Keith Buschb3550842014-04-04 11:43:36 -060062MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050063
Dan McLeran2484f402014-07-01 09:33:32 -060064static unsigned char shutdown_timeout = 5;
65module_param(shutdown_timeout, byte, 0644);
66MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
67
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050068static int nvme_major;
69module_param(nvme_major, int, 0);
70
Keith Buschb3fffde2015-02-03 11:21:42 -070071static int nvme_char_major;
72module_param(nvme_char_major, int, 0);
73
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050074static int use_threaded_interrupts;
75module_param(use_threaded_interrupts, int, 0);
76
Jon Derrick8ffaadf2015-07-20 10:14:09 -060077static bool use_cmb_sqes = true;
78module_param(use_cmb_sqes, bool, 0644);
79MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
80
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050081static DEFINE_SPINLOCK(dev_list_lock);
82static LIST_HEAD(dev_list);
83static struct task_struct *nvme_thread;
Keith Busch9a6b9452013-12-10 13:10:36 -070084static struct workqueue_struct *nvme_workq;
Dan McLeranb9afca32014-04-07 17:10:11 -060085static wait_queue_head_t nvme_kthread_wait;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050086
Keith Buschb3fffde2015-02-03 11:21:42 -070087static struct class *nvme_class;
88
Christoph Hellwig906678922015-10-02 18:49:23 +020089static int __nvme_reset(struct nvme_dev *dev);
Keith Busch4cc06522015-06-05 10:30:08 -060090static int nvme_reset(struct nvme_dev *dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -070091static int nvme_process_cq(struct nvme_queue *nvmeq);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +020092static void nvme_dead_ctrl(struct nvme_dev *dev);
Keith Buschd4b4ff82013-12-10 13:10:37 -070093
Keith Busch4d115422013-12-10 13:10:40 -070094struct async_cmd_info {
95 struct kthread_work work;
96 struct kthread_worker *worker;
Matias Bjørlinga4aea562014-11-04 08:20:14 -070097 struct request *req;
Keith Busch4d115422013-12-10 13:10:40 -070098 u32 result;
99 int status;
100 void *ctx;
101};
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500102
103/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500104 * An NVM Express queue. Each device has at least two (one for admin
105 * commands and one for I/O commands).
106 */
107struct nvme_queue {
108 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500109 struct nvme_dev *dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -0500110 char irqname[24]; /* nvme4294967295-65535\0 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500111 spinlock_t q_lock;
112 struct nvme_command *sq_cmds;
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600113 struct nvme_command __iomem *sq_cmds_io;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500114 volatile struct nvme_completion *cqes;
Keith Busch42483222015-06-01 09:29:54 -0600115 struct blk_mq_tags **tags;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500116 dma_addr_t sq_dma_addr;
117 dma_addr_t cq_dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500118 u32 __iomem *q_db;
119 u16 q_depth;
Jens Axboe6222d172015-01-15 15:19:10 -0700120 s16 cq_vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500121 u16 sq_head;
122 u16 sq_tail;
123 u16 cq_head;
Keith Buschc30341d2013-12-10 13:10:38 -0700124 u16 qid;
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400125 u8 cq_phase;
126 u8 cqe_seen;
Keith Busch4d115422013-12-10 13:10:40 -0700127 struct async_cmd_info cmdinfo;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500128};
129
130/*
131 * Check we didin't inadvertently grow the command struct
132 */
133static inline void _nvme_check_size(void)
134{
135 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
136 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
137 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
138 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
139 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
Vishal Vermaf8ebf842013-03-27 07:13:41 -0400140 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
Keith Buschc30341d2013-12-10 13:10:38 -0700141 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500142 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
143 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
144 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
145 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
Keith Busch6ecec742012-09-26 12:49:27 -0600146 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500147}
148
Keith Buschedd10d32014-04-03 16:45:23 -0600149typedef void (*nvme_completion_fn)(struct nvme_queue *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400150 struct nvme_completion *);
151
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500152struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400153 nvme_completion_fn fn;
154 void *ctx;
Keith Buschc30341d2013-12-10 13:10:38 -0700155 int aborted;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700156 struct nvme_queue *nvmeq;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700157 struct nvme_iod iod[0];
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500158};
159
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700160/*
161 * Max size of iod being embedded in the request payload
162 */
163#define NVME_INT_PAGES 2
164#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->page_size)
Chong Yuanfda631f2015-03-27 09:21:32 +0800165#define NVME_INT_MASK 0x01
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700166
167/*
168 * Will slightly overestimate the number of pages needed. This is OK
169 * as it only leads to a small amount of wasted memory for the lifetime of
170 * the I/O.
171 */
172static int nvme_npages(unsigned size, struct nvme_dev *dev)
173{
174 unsigned nprps = DIV_ROUND_UP(size + dev->page_size, dev->page_size);
175 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
176}
177
178static unsigned int nvme_cmd_size(struct nvme_dev *dev)
179{
180 unsigned int ret = sizeof(struct nvme_cmd_info);
181
182 ret += sizeof(struct nvme_iod);
183 ret += sizeof(__le64 *) * nvme_npages(NVME_INT_BYTES(dev), dev);
184 ret += sizeof(struct scatterlist) * NVME_INT_PAGES;
185
186 return ret;
187}
188
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700189static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
190 unsigned int hctx_idx)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500191{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700192 struct nvme_dev *dev = data;
193 struct nvme_queue *nvmeq = dev->queues[0];
194
Keith Busch42483222015-06-01 09:29:54 -0600195 WARN_ON(hctx_idx != 0);
196 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
197 WARN_ON(nvmeq->tags);
198
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700199 hctx->driver_data = nvmeq;
Keith Busch42483222015-06-01 09:29:54 -0600200 nvmeq->tags = &dev->admin_tagset.tags[0];
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700201 return 0;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500202}
203
Keith Busch4af0e212015-06-08 10:08:13 -0600204static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
205{
206 struct nvme_queue *nvmeq = hctx->driver_data;
207
208 nvmeq->tags = NULL;
209}
210
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700211static int nvme_admin_init_request(void *data, struct request *req,
212 unsigned int hctx_idx, unsigned int rq_idx,
213 unsigned int numa_node)
Keith Busch22404272013-07-15 15:02:20 -0600214{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700215 struct nvme_dev *dev = data;
216 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
217 struct nvme_queue *nvmeq = dev->queues[0];
218
219 BUG_ON(!nvmeq);
220 cmd->nvmeq = nvmeq;
221 return 0;
Keith Busch22404272013-07-15 15:02:20 -0600222}
223
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700224static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
225 unsigned int hctx_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500226{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700227 struct nvme_dev *dev = data;
Keith Busch42483222015-06-01 09:29:54 -0600228 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500229
Keith Busch42483222015-06-01 09:29:54 -0600230 if (!nvmeq->tags)
231 nvmeq->tags = &dev->tagset.tags[hctx_idx];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500232
Keith Busch42483222015-06-01 09:29:54 -0600233 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700234 hctx->driver_data = nvmeq;
235 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500236}
237
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700238static int nvme_init_request(void *data, struct request *req,
239 unsigned int hctx_idx, unsigned int rq_idx,
240 unsigned int numa_node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500241{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700242 struct nvme_dev *dev = data;
243 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
244 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
245
246 BUG_ON(!nvmeq);
247 cmd->nvmeq = nvmeq;
248 return 0;
249}
250
251static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx,
252 nvme_completion_fn handler)
253{
254 cmd->fn = handler;
255 cmd->ctx = ctx;
256 cmd->aborted = 0;
Keith Buschc917dfe2015-01-07 18:55:48 -0700257 blk_mq_start_request(blk_mq_rq_from_pdu(cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500258}
259
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700260static void *iod_get_private(struct nvme_iod *iod)
261{
262 return (void *) (iod->private & ~0x1UL);
263}
264
265/*
266 * If bit 0 is set, the iod is embedded in the request payload.
267 */
268static bool iod_should_kfree(struct nvme_iod *iod)
269{
Chong Yuanfda631f2015-03-27 09:21:32 +0800270 return (iod->private & NVME_INT_MASK) == 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700271}
272
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400273/* Special values must be less than 0x1000 */
274#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500275#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
276#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
277#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500278
Keith Buschedd10d32014-04-03 16:45:23 -0600279static void special_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400280 struct nvme_completion *cqe)
281{
282 if (ctx == CMD_CTX_CANCELLED)
283 return;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400284 if (ctx == CMD_CTX_COMPLETED) {
Keith Buschedd10d32014-04-03 16:45:23 -0600285 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400286 "completed id %d twice on queue %d\n",
287 cqe->command_id, le16_to_cpup(&cqe->sq_id));
288 return;
289 }
290 if (ctx == CMD_CTX_INVALID) {
Keith Buschedd10d32014-04-03 16:45:23 -0600291 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400292 "invalid id %d completed on queue %d\n",
293 cqe->command_id, le16_to_cpup(&cqe->sq_id));
294 return;
295 }
Keith Buschedd10d32014-04-03 16:45:23 -0600296 dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400297}
298
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700299static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn)
300{
301 void *ctx;
302
303 if (fn)
304 *fn = cmd->fn;
305 ctx = cmd->ctx;
306 cmd->fn = special_completion;
307 cmd->ctx = CMD_CTX_CANCELLED;
308 return ctx;
309}
310
311static void async_req_completion(struct nvme_queue *nvmeq, void *ctx,
312 struct nvme_completion *cqe)
313{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700314 u32 result = le32_to_cpup(&cqe->result);
315 u16 status = le16_to_cpup(&cqe->status) >> 1;
316
317 if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ)
318 ++nvmeq->dev->event_limit;
Keith Buscha5768aa2015-06-01 14:28:14 -0600319 if (status != NVME_SC_SUCCESS)
320 return;
321
322 switch (result & 0xff07) {
323 case NVME_AER_NOTICE_NS_CHANGED:
324 dev_info(nvmeq->q_dmadev, "rescanning\n");
325 schedule_work(&nvmeq->dev->scan_work);
326 default:
327 dev_warn(nvmeq->q_dmadev, "async event result %08x\n", result);
328 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700329}
330
331static void abort_completion(struct nvme_queue *nvmeq, void *ctx,
332 struct nvme_completion *cqe)
333{
334 struct request *req = ctx;
335
336 u16 status = le16_to_cpup(&cqe->status) >> 1;
337 u32 result = le32_to_cpup(&cqe->result);
338
Keith Busch42483222015-06-01 09:29:54 -0600339 blk_mq_free_request(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700340
341 dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result);
342 ++nvmeq->dev->abort_limit;
343}
344
Keith Buschedd10d32014-04-03 16:45:23 -0600345static void async_completion(struct nvme_queue *nvmeq, void *ctx,
Keith Busch4d115422013-12-10 13:10:40 -0700346 struct nvme_completion *cqe)
347{
348 struct async_cmd_info *cmdinfo = ctx;
349 cmdinfo->result = le32_to_cpup(&cqe->result);
350 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
351 queue_kthread_work(cmdinfo->worker, &cmdinfo->work);
Keith Busch42483222015-06-01 09:29:54 -0600352 blk_mq_free_request(cmdinfo->req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700353}
354
355static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq,
356 unsigned int tag)
357{
Keith Busch42483222015-06-01 09:29:54 -0600358 struct request *req = blk_mq_tag_to_rq(*nvmeq->tags, tag);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700359
360 return blk_mq_rq_to_pdu(req);
Keith Busch4d115422013-12-10 13:10:40 -0700361}
362
Matthew Wilcox184d2942011-05-11 21:36:38 -0400363/*
364 * Called with local interrupts disabled and the q_lock held. May not sleep.
365 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700366static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400367 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500368{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700369 struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400370 void *ctx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700371 if (tag >= nvmeq->q_depth) {
372 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500373 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400374 }
Keith Busch859361a2012-08-02 14:05:59 -0600375 if (fn)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700376 *fn = cmd->fn;
377 ctx = cmd->ctx;
378 cmd->fn = special_completion;
379 cmd->ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400380 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500381}
382
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500383/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400384 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500385 * @nvmeq: The queue to use
386 * @cmd: The command to send
387 *
388 * Safe to use from interrupt context
389 */
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530390static void __nvme_submit_cmd(struct nvme_queue *nvmeq,
391 struct nvme_command *cmd)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500392{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700393 u16 tail = nvmeq->sq_tail;
394
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600395 if (nvmeq->sq_cmds_io)
396 memcpy_toio(&nvmeq->sq_cmds_io[tail], cmd, sizeof(*cmd));
397 else
398 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
399
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500400 if (++tail == nvmeq->q_depth)
401 tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500402 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500403 nvmeq->sq_tail = tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500404}
405
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530406static void nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700407{
408 unsigned long flags;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700409 spin_lock_irqsave(&nvmeq->q_lock, flags);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530410 __nvme_submit_cmd(nvmeq, cmd);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700411 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700412}
413
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500414static __le64 **iod_list(struct nvme_iod *iod)
415{
416 return ((void *)iod) + iod->offset;
417}
418
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700419static inline void iod_init(struct nvme_iod *iod, unsigned nbytes,
420 unsigned nseg, unsigned long private)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500421{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700422 iod->private = private;
423 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
424 iod->npages = -1;
425 iod->length = nbytes;
426 iod->nents = 0;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500427}
428
429static struct nvme_iod *
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700430__nvme_alloc_iod(unsigned nseg, unsigned bytes, struct nvme_dev *dev,
431 unsigned long priv, gfp_t gfp)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500432{
433 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700434 sizeof(__le64 *) * nvme_npages(bytes, dev) +
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500435 sizeof(struct scatterlist) * nseg, gfp);
436
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700437 if (iod)
438 iod_init(iod, bytes, nseg, priv);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500439
440 return iod;
441}
442
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700443static struct nvme_iod *nvme_alloc_iod(struct request *rq, struct nvme_dev *dev,
444 gfp_t gfp)
445{
446 unsigned size = !(rq->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(rq) :
447 sizeof(struct nvme_dsm_range);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700448 struct nvme_iod *iod;
449
450 if (rq->nr_phys_segments <= NVME_INT_PAGES &&
451 size <= NVME_INT_BYTES(dev)) {
452 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(rq);
453
454 iod = cmd->iod;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700455 iod_init(iod, size, rq->nr_phys_segments,
Chong Yuanfda631f2015-03-27 09:21:32 +0800456 (unsigned long) rq | NVME_INT_MASK);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700457 return iod;
458 }
459
460 return __nvme_alloc_iod(rq->nr_phys_segments, size, dev,
461 (unsigned long) rq, gfp);
462}
463
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200464static void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500465{
Keith Busch1d090622014-06-23 11:34:01 -0600466 const int last_prp = dev->page_size / 8 - 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500467 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500468 __le64 **list = iod_list(iod);
469 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500470
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500471 if (iod->npages == 0)
472 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
473 for (i = 0; i < iod->npages; i++) {
474 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500475 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500476 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500477 prp_dma = next_prp_dma;
478 }
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700479
480 if (iod_should_kfree(iod))
481 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500482}
483
Keith Buschb4ff9c82014-08-29 09:06:12 -0600484static int nvme_error_status(u16 status)
485{
486 switch (status & 0x7ff) {
487 case NVME_SC_SUCCESS:
488 return 0;
489 case NVME_SC_CAP_EXCEEDED:
490 return -ENOSPC;
491 default:
492 return -EIO;
493 }
494}
495
Keith Busch52b68d72015-02-23 09:16:21 -0700496#ifdef CONFIG_BLK_DEV_INTEGRITY
Keith Busche1e5e562015-02-19 13:39:03 -0700497static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
498{
499 if (be32_to_cpu(pi->ref_tag) == v)
500 pi->ref_tag = cpu_to_be32(p);
501}
502
503static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
504{
505 if (be32_to_cpu(pi->ref_tag) == p)
506 pi->ref_tag = cpu_to_be32(v);
507}
508
509/**
510 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
511 *
512 * The virtual start sector is the one that was originally submitted by the
513 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
514 * start sector may be different. Remap protection information to match the
515 * physical LBA on writes, and back to the original seed on reads.
516 *
517 * Type 0 and 3 do not have a ref tag, so no remapping required.
518 */
519static void nvme_dif_remap(struct request *req,
520 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
521{
522 struct nvme_ns *ns = req->rq_disk->private_data;
523 struct bio_integrity_payload *bip;
524 struct t10_pi_tuple *pi;
525 void *p, *pmap;
526 u32 i, nlb, ts, phys, virt;
527
528 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
529 return;
530
531 bip = bio_integrity(req->bio);
532 if (!bip)
533 return;
534
535 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
Keith Busche1e5e562015-02-19 13:39:03 -0700536
537 p = pmap;
538 virt = bip_get_seed(bip);
539 phys = nvme_block_nr(ns, blk_rq_pos(req));
540 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
Martin K. Petersen25520d52015-10-21 13:19:49 -0400541 ts = ns->disk->integrity.tuple_size;
Keith Busche1e5e562015-02-19 13:39:03 -0700542
543 for (i = 0; i < nlb; i++, virt++, phys++) {
544 pi = (struct t10_pi_tuple *)p;
545 dif_swap(phys, virt, pi);
546 p += ts;
547 }
548 kunmap_atomic(pmap);
549}
550
Keith Busch52b68d72015-02-23 09:16:21 -0700551static int nvme_noop_verify(struct blk_integrity_iter *iter)
552{
553 return 0;
554}
555
556static int nvme_noop_generate(struct blk_integrity_iter *iter)
557{
558 return 0;
559}
560
Martin K. Petersen0f8087e2015-10-21 13:19:33 -0400561struct blk_integrity_profile nvme_meta_noop = {
Keith Busch52b68d72015-02-23 09:16:21 -0700562 .name = "NVME_META_NOOP",
563 .generate_fn = nvme_noop_generate,
564 .verify_fn = nvme_noop_verify,
565};
566
567static void nvme_init_integrity(struct nvme_ns *ns)
568{
569 struct blk_integrity integrity;
570
571 switch (ns->pi_type) {
572 case NVME_NS_DPS_PI_TYPE3:
Martin K. Petersen0f8087e2015-10-21 13:19:33 -0400573 integrity.profile = &t10_pi_type3_crc;
Keith Busch52b68d72015-02-23 09:16:21 -0700574 break;
575 case NVME_NS_DPS_PI_TYPE1:
576 case NVME_NS_DPS_PI_TYPE2:
Martin K. Petersen0f8087e2015-10-21 13:19:33 -0400577 integrity.profile = &t10_pi_type1_crc;
Keith Busch52b68d72015-02-23 09:16:21 -0700578 break;
579 default:
Martin K. Petersen0f8087e2015-10-21 13:19:33 -0400580 integrity.profile = &nvme_meta_noop;
Keith Busch52b68d72015-02-23 09:16:21 -0700581 break;
582 }
583 integrity.tuple_size = ns->ms;
584 blk_integrity_register(ns->disk, &integrity);
585 blk_queue_max_integrity_segments(ns->queue, 1);
586}
587#else /* CONFIG_BLK_DEV_INTEGRITY */
588static void nvme_dif_remap(struct request *req,
589 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
590{
591}
592static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
593{
594}
595static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
596{
597}
598static void nvme_init_integrity(struct nvme_ns *ns)
599{
600}
601#endif
602
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700603static void req_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500604 struct nvme_completion *cqe)
605{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500606 struct nvme_iod *iod = ctx;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700607 struct request *req = iod_get_private(iod);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700608 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500609 u16 status = le16_to_cpup(&cqe->status) >> 1;
Jens Axboeef658fc2015-10-15 09:49:57 -0600610 int error = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500611
Keith Buschedd10d32014-04-03 16:45:23 -0600612 if (unlikely(status)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700613 if (!(status & NVME_SC_DNR || blk_noretry_request(req))
614 && (jiffies - req->start_time) < req->timeout) {
Keith Buschc9d3bf82015-01-07 18:55:52 -0700615 unsigned long flags;
616
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700617 blk_mq_requeue_request(req);
Keith Buschc9d3bf82015-01-07 18:55:52 -0700618 spin_lock_irqsave(req->q->queue_lock, flags);
619 if (!blk_queue_stopped(req->q))
620 blk_mq_kick_requeue_list(req->q);
621 spin_unlock_irqrestore(req->q->queue_lock, flags);
Keith Buschedd10d32014-04-03 16:45:23 -0600622 return;
623 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200624
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200625 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
Keith Busch17188bb2015-06-08 10:08:14 -0600626 if (cmd_rq->ctx == CMD_CTX_CANCELLED)
Christoph Hellwig1951fea2015-10-12 21:23:39 +0200627 error = -EINTR;
628 else
629 error = status;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200630 } else {
Christoph Hellwig1951fea2015-10-12 21:23:39 +0200631 error = nvme_error_status(status);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200632 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200633 }
634
Keith Buscha0a931d2015-05-22 12:28:31 -0600635 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
636 u32 result = le32_to_cpup(&cqe->result);
637 req->special = (void *)(uintptr_t)result;
638 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700639
640 if (cmd_rq->aborted)
Christoph Hellwige75ec752015-05-22 11:12:39 +0200641 dev_warn(nvmeq->dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700642 "completing aborted command with status:%04x\n",
Christoph Hellwig1951fea2015-10-12 21:23:39 +0200643 error);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700644
Keith Busche1e5e562015-02-19 13:39:03 -0700645 if (iod->nents) {
Christoph Hellwige75ec752015-05-22 11:12:39 +0200646 dma_unmap_sg(nvmeq->dev->dev, iod->sg, iod->nents,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700647 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Keith Busche1e5e562015-02-19 13:39:03 -0700648 if (blk_integrity_rq(req)) {
649 if (!rq_data_dir(req))
650 nvme_dif_remap(req, nvme_dif_complete);
Christoph Hellwige75ec752015-05-22 11:12:39 +0200651 dma_unmap_sg(nvmeq->dev->dev, iod->meta_sg, 1,
Keith Busche1e5e562015-02-19 13:39:03 -0700652 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
653 }
654 }
Keith Buschedd10d32014-04-03 16:45:23 -0600655 nvme_free_iod(nvmeq->dev, iod);
Keith Busch3291fa52014-04-28 12:30:52 -0600656
Christoph Hellwig1951fea2015-10-12 21:23:39 +0200657 blk_mq_complete_request(req, error);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500658}
659
Matthew Wilcox184d2942011-05-11 21:36:38 -0400660/* length is in bytes. gfp flags indicates whether we may sleep. */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200661static int nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod,
662 int total_len, gfp_t gfp)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500663{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500664 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500665 int length = total_len;
666 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500667 int dma_len = sg_dma_len(sg);
668 u64 dma_addr = sg_dma_address(sg);
Murali Iyerf137e0f2015-03-26 11:07:51 -0500669 u32 page_size = dev->page_size;
670 int offset = dma_addr & (page_size - 1);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500671 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500672 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500673 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500674 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500675
Keith Busch1d090622014-06-23 11:34:01 -0600676 length -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500677 if (length <= 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500678 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500679
Keith Busch1d090622014-06-23 11:34:01 -0600680 dma_len -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500681 if (dma_len) {
Keith Busch1d090622014-06-23 11:34:01 -0600682 dma_addr += (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500683 } else {
684 sg = sg_next(sg);
685 dma_addr = sg_dma_address(sg);
686 dma_len = sg_dma_len(sg);
687 }
688
Keith Busch1d090622014-06-23 11:34:01 -0600689 if (length <= page_size) {
Keith Buschedd10d32014-04-03 16:45:23 -0600690 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500691 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500692 }
693
Keith Busch1d090622014-06-23 11:34:01 -0600694 nprps = DIV_ROUND_UP(length, page_size);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500695 if (nprps <= (256 / 8)) {
696 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500697 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500698 } else {
699 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500700 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500701 }
702
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400703 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
704 if (!prp_list) {
Keith Buschedd10d32014-04-03 16:45:23 -0600705 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500706 iod->npages = -1;
Keith Busch1d090622014-06-23 11:34:01 -0600707 return (total_len - length) + page_size;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400708 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500709 list[0] = prp_list;
710 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500711 i = 0;
712 for (;;) {
Keith Busch1d090622014-06-23 11:34:01 -0600713 if (i == page_size >> 3) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500714 __le64 *old_prp_list = prp_list;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400715 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500716 if (!prp_list)
717 return total_len - length;
718 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400719 prp_list[0] = old_prp_list[i - 1];
720 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
721 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500722 }
723 prp_list[i++] = cpu_to_le64(dma_addr);
Keith Busch1d090622014-06-23 11:34:01 -0600724 dma_len -= page_size;
725 dma_addr += page_size;
726 length -= page_size;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500727 if (length <= 0)
728 break;
729 if (dma_len > 0)
730 continue;
731 BUG_ON(dma_len < 0);
732 sg = sg_next(sg);
733 dma_addr = sg_dma_address(sg);
734 dma_len = sg_dma_len(sg);
735 }
736
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500737 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500738}
739
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200740static void nvme_submit_priv(struct nvme_queue *nvmeq, struct request *req,
741 struct nvme_iod *iod)
742{
Jon Derrick498c4392015-07-20 10:14:08 -0600743 struct nvme_command cmnd;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200744
Jon Derrick498c4392015-07-20 10:14:08 -0600745 memcpy(&cmnd, req->cmd, sizeof(cmnd));
746 cmnd.rw.command_id = req->tag;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200747 if (req->nr_phys_segments) {
Jon Derrick498c4392015-07-20 10:14:08 -0600748 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
749 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200750 }
751
Jon Derrick498c4392015-07-20 10:14:08 -0600752 __nvme_submit_cmd(nvmeq, &cmnd);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200753}
754
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700755/*
756 * We reuse the small pool to allocate the 16-byte range here as it is not
757 * worth having a special pool for these or additional cases to handle freeing
758 * the iod.
759 */
760static void nvme_submit_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns,
761 struct request *req, struct nvme_iod *iod)
Keith Busch0e5e4f02012-11-09 16:33:05 -0700762{
Keith Buschedd10d32014-04-03 16:45:23 -0600763 struct nvme_dsm_range *range =
764 (struct nvme_dsm_range *)iod_list(iod)[0];
Jon Derrick498c4392015-07-20 10:14:08 -0600765 struct nvme_command cmnd;
Keith Busch0e5e4f02012-11-09 16:33:05 -0700766
Keith Busch0e5e4f02012-11-09 16:33:05 -0700767 range->cattr = cpu_to_le32(0);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700768 range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift);
769 range->slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
Keith Busch0e5e4f02012-11-09 16:33:05 -0700770
Jon Derrick498c4392015-07-20 10:14:08 -0600771 memset(&cmnd, 0, sizeof(cmnd));
772 cmnd.dsm.opcode = nvme_cmd_dsm;
773 cmnd.dsm.command_id = req->tag;
774 cmnd.dsm.nsid = cpu_to_le32(ns->ns_id);
775 cmnd.dsm.prp1 = cpu_to_le64(iod->first_dma);
776 cmnd.dsm.nr = 0;
777 cmnd.dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700778
Jon Derrick498c4392015-07-20 10:14:08 -0600779 __nvme_submit_cmd(nvmeq, &cmnd);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700780}
781
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700782static void nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500783 int cmdid)
784{
Jon Derrick498c4392015-07-20 10:14:08 -0600785 struct nvme_command cmnd;
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500786
Jon Derrick498c4392015-07-20 10:14:08 -0600787 memset(&cmnd, 0, sizeof(cmnd));
788 cmnd.common.opcode = nvme_cmd_flush;
789 cmnd.common.command_id = cmdid;
790 cmnd.common.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500791
Jon Derrick498c4392015-07-20 10:14:08 -0600792 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500793}
794
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700795static int nvme_submit_iod(struct nvme_queue *nvmeq, struct nvme_iod *iod,
796 struct nvme_ns *ns)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500797{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700798 struct request *req = iod_get_private(iod);
Jon Derrick498c4392015-07-20 10:14:08 -0600799 struct nvme_command cmnd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700800 u16 control = 0;
801 u32 dsmgmt = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500802
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700803 if (req->cmd_flags & REQ_FUA)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500804 control |= NVME_RW_FUA;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700805 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500806 control |= NVME_RW_LR;
807
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700808 if (req->cmd_flags & REQ_RAHEAD)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500809 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
810
Jon Derrick498c4392015-07-20 10:14:08 -0600811 memset(&cmnd, 0, sizeof(cmnd));
812 cmnd.rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
813 cmnd.rw.command_id = req->tag;
814 cmnd.rw.nsid = cpu_to_le32(ns->ns_id);
815 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
816 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
817 cmnd.rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
818 cmnd.rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500819
Alok Pandeye19b1272015-08-26 08:56:14 -0600820 if (ns->ms) {
Keith Busche1e5e562015-02-19 13:39:03 -0700821 switch (ns->pi_type) {
822 case NVME_NS_DPS_PI_TYPE3:
823 control |= NVME_RW_PRINFO_PRCHK_GUARD;
824 break;
825 case NVME_NS_DPS_PI_TYPE1:
826 case NVME_NS_DPS_PI_TYPE2:
827 control |= NVME_RW_PRINFO_PRCHK_GUARD |
828 NVME_RW_PRINFO_PRCHK_REF;
Jon Derrick498c4392015-07-20 10:14:08 -0600829 cmnd.rw.reftag = cpu_to_le32(
Keith Busche1e5e562015-02-19 13:39:03 -0700830 nvme_block_nr(ns, blk_rq_pos(req)));
831 break;
832 }
Alok Pandeye19b1272015-08-26 08:56:14 -0600833 if (blk_integrity_rq(req))
834 cmnd.rw.metadata =
835 cpu_to_le64(sg_dma_address(iod->meta_sg));
836 else
837 control |= NVME_RW_PRINFO_PRACT;
838 }
Keith Busche1e5e562015-02-19 13:39:03 -0700839
Jon Derrick498c4392015-07-20 10:14:08 -0600840 cmnd.rw.control = cpu_to_le16(control);
841 cmnd.rw.dsmgmt = cpu_to_le32(dsmgmt);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500842
Jon Derrick498c4392015-07-20 10:14:08 -0600843 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500844
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500845 return 0;
Keith Buschedd10d32014-04-03 16:45:23 -0600846}
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500847
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200848/*
849 * NOTE: ns is NULL when called on the admin queue.
850 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700851static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
852 const struct blk_mq_queue_data *bd)
Keith Busch53562be2014-04-29 11:41:29 -0600853{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700854 struct nvme_ns *ns = hctx->queue->queuedata;
855 struct nvme_queue *nvmeq = hctx->driver_data;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200856 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700857 struct request *req = bd->rq;
858 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
Keith Buschedd10d32014-04-03 16:45:23 -0600859 struct nvme_iod *iod;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700860 enum dma_data_direction dma_dir;
Keith Buschedd10d32014-04-03 16:45:23 -0600861
Keith Busche1e5e562015-02-19 13:39:03 -0700862 /*
863 * If formated with metadata, require the block layer provide a buffer
864 * unless this namespace is formated such that the metadata can be
865 * stripped/generated by the controller with PRACT=1.
866 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200867 if (ns && ns->ms && !blk_integrity_rq(req)) {
Keith Busch71feb362015-06-19 11:07:30 -0600868 if (!(ns->pi_type && ns->ms == 8) &&
869 req->cmd_type != REQ_TYPE_DRV_PRIV) {
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200870 blk_mq_complete_request(req, -EFAULT);
Keith Busche1e5e562015-02-19 13:39:03 -0700871 return BLK_MQ_RQ_QUEUE_OK;
872 }
873 }
874
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200875 iod = nvme_alloc_iod(req, dev, GFP_ATOMIC);
Keith Buschedd10d32014-04-03 16:45:23 -0600876 if (!iod)
Jens Axboefe543032014-12-11 13:58:39 -0700877 return BLK_MQ_RQ_QUEUE_BUSY;
Keith Buschedd10d32014-04-03 16:45:23 -0600878
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700879 if (req->cmd_flags & REQ_DISCARD) {
Keith Buschedd10d32014-04-03 16:45:23 -0600880 void *range;
881 /*
882 * We reuse the small pool to allocate the 16-byte range here
883 * as it is not worth having a special pool for these or
884 * additional cases to handle freeing the iod.
885 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200886 range = dma_pool_alloc(dev->prp_small_pool, GFP_ATOMIC,
Keith Buschedd10d32014-04-03 16:45:23 -0600887 &iod->first_dma);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700888 if (!range)
Jens Axboefe543032014-12-11 13:58:39 -0700889 goto retry_cmd;
Keith Buschedd10d32014-04-03 16:45:23 -0600890 iod_list(iod)[0] = (__le64 *)range;
891 iod->npages = 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700892 } else if (req->nr_phys_segments) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700893 dma_dir = rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Keith Buschedd10d32014-04-03 16:45:23 -0600894
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700895 sg_init_table(iod->sg, req->nr_phys_segments);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700896 iod->nents = blk_rq_map_sg(req->q, req, iod->sg);
Jens Axboefe543032014-12-11 13:58:39 -0700897 if (!iod->nents)
898 goto error_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700899
900 if (!dma_map_sg(nvmeq->q_dmadev, iod->sg, iod->nents, dma_dir))
Jens Axboefe543032014-12-11 13:58:39 -0700901 goto retry_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700902
Jens Axboefe543032014-12-11 13:58:39 -0700903 if (blk_rq_bytes(req) !=
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200904 nvme_setup_prps(dev, iod, blk_rq_bytes(req), GFP_ATOMIC)) {
905 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
Jens Axboefe543032014-12-11 13:58:39 -0700906 goto retry_cmd;
907 }
Keith Busche1e5e562015-02-19 13:39:03 -0700908 if (blk_integrity_rq(req)) {
909 if (blk_rq_count_integrity_sg(req->q, req->bio) != 1)
910 goto error_cmd;
911
912 sg_init_table(iod->meta_sg, 1);
913 if (blk_rq_map_integrity_sg(
914 req->q, req->bio, iod->meta_sg) != 1)
915 goto error_cmd;
916
917 if (rq_data_dir(req))
918 nvme_dif_remap(req, nvme_dif_prep);
919
920 if (!dma_map_sg(nvmeq->q_dmadev, iod->meta_sg, 1, dma_dir))
921 goto error_cmd;
922 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700923 }
924
Keith Busch9af87852014-12-03 17:07:13 -0700925 nvme_set_info(cmd, iod, req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700926 spin_lock_irq(&nvmeq->q_lock);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200927 if (req->cmd_type == REQ_TYPE_DRV_PRIV)
928 nvme_submit_priv(nvmeq, req, iod);
929 else if (req->cmd_flags & REQ_DISCARD)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700930 nvme_submit_discard(nvmeq, ns, req, iod);
931 else if (req->cmd_flags & REQ_FLUSH)
932 nvme_submit_flush(nvmeq, ns, req->tag);
933 else
934 nvme_submit_iod(nvmeq, iod, ns);
935
936 nvme_process_cq(nvmeq);
937 spin_unlock_irq(&nvmeq->q_lock);
938 return BLK_MQ_RQ_QUEUE_OK;
939
Jens Axboefe543032014-12-11 13:58:39 -0700940 error_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200941 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700942 return BLK_MQ_RQ_QUEUE_ERROR;
943 retry_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200944 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700945 return BLK_MQ_RQ_QUEUE_BUSY;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500946}
947
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400948static int nvme_process_cq(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500949{
Matthew Wilcox82123462011-01-20 13:24:06 -0500950 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500951
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500952 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500953 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500954
955 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400956 void *ctx;
957 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500958 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -0500959 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500960 break;
961 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
962 if (++head == nvmeq->q_depth) {
963 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500964 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500965 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700966 ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn);
Keith Buschedd10d32014-04-03 16:45:23 -0600967 fn(nvmeq, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500968 }
969
970 /* If the controller ignores the cq head doorbell and continuously
971 * writes to the queue, it is theoretically possible to wrap around
972 * the queue twice and mistakenly return IRQ_NONE. Linux only
973 * requires that 0.1% of your interrupts are handled, so this isn't
974 * a big problem.
975 */
Matthew Wilcox82123462011-01-20 13:24:06 -0500976 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400977 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500978
Haiyan Hub80d5cc2013-09-10 11:25:37 +0800979 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500980 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500981 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500982
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400983 nvmeq->cqe_seen = 1;
984 return 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500985}
986
987static irqreturn_t nvme_irq(int irq, void *data)
988{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500989 irqreturn_t result;
990 struct nvme_queue *nvmeq = data;
991 spin_lock(&nvmeq->q_lock);
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400992 nvme_process_cq(nvmeq);
993 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
994 nvmeq->cqe_seen = 0;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500995 spin_unlock(&nvmeq->q_lock);
996 return result;
997}
998
999static irqreturn_t nvme_irq_check(int irq, void *data)
1000{
1001 struct nvme_queue *nvmeq = data;
1002 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
1003 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
1004 return IRQ_NONE;
1005 return IRQ_WAKE_THREAD;
1006}
1007
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001008/*
1009 * Returns 0 on success. If the result is negative, it's a Linux error code;
1010 * if the result is positive, it's an NVM Express status code
1011 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001012int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1013 void *buffer, void __user *ubuffer, unsigned bufflen,
1014 u32 *result, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001015{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001016 bool write = cmd->common.opcode & 1;
1017 struct bio *bio = NULL;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001018 struct request *req;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001019 int ret;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001020
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001021 req = blk_mq_alloc_request(q, write, GFP_KERNEL, false);
Christoph Hellwigf705f832015-05-22 11:12:38 +02001022 if (IS_ERR(req))
1023 return PTR_ERR(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001024
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001025 req->cmd_type = REQ_TYPE_DRV_PRIV;
Matias Bjørlinge112af02015-06-05 14:54:24 +02001026 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001027 req->__data_len = 0;
1028 req->__sector = (sector_t) -1;
1029 req->bio = req->biotail = NULL;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001030
Keith Buschf4ff4142015-05-28 09:48:54 -06001031 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001032
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001033 req->cmd = (unsigned char *)cmd;
1034 req->cmd_len = sizeof(struct nvme_command);
Keith Buscha0a931d2015-05-22 12:28:31 -06001035 req->special = (void *)0;
Matthew Wilcox3c0cf132011-02-04 16:03:56 -05001036
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001037 if (buffer && bufflen) {
1038 ret = blk_rq_map_kern(q, req, buffer, bufflen, __GFP_WAIT);
1039 if (ret)
1040 goto out;
1041 } else if (ubuffer && bufflen) {
1042 ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen, __GFP_WAIT);
1043 if (ret)
1044 goto out;
1045 bio = req->bio;
1046 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001047
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001048 blk_execute_rq(req->q, NULL, req, 0);
1049 if (bio)
1050 blk_rq_unmap_user(bio);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001051 if (result)
Keith Buscha0a931d2015-05-22 12:28:31 -06001052 *result = (u32)(uintptr_t)req->special;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001053 ret = req->errors;
1054 out:
Christoph Hellwigf705f832015-05-22 11:12:38 +02001055 blk_mq_free_request(req);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001056 return ret;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001057}
1058
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001059int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1060 void *buffer, unsigned bufflen)
Christoph Hellwigf705f832015-05-22 11:12:38 +02001061{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001062 return __nvme_submit_sync_cmd(q, cmd, buffer, NULL, bufflen, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001063}
1064
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001065static int nvme_submit_async_admin_req(struct nvme_dev *dev)
1066{
1067 struct nvme_queue *nvmeq = dev->queues[0];
1068 struct nvme_command c;
1069 struct nvme_cmd_info *cmd_info;
1070 struct request *req;
1071
Keith Busch1efccc92015-03-31 10:37:17 -06001072 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC, true);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001073 if (IS_ERR(req))
1074 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001075
Keith Buschc917dfe2015-01-07 18:55:48 -07001076 req->cmd_flags |= REQ_NO_TIMEOUT;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001077 cmd_info = blk_mq_rq_to_pdu(req);
Keith Busch1efccc92015-03-31 10:37:17 -06001078 nvme_set_info(cmd_info, NULL, async_req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001079
1080 memset(&c, 0, sizeof(c));
1081 c.common.opcode = nvme_admin_async_event;
1082 c.common.command_id = req->tag;
1083
Keith Busch42483222015-06-01 09:29:54 -06001084 blk_mq_free_request(req);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301085 __nvme_submit_cmd(nvmeq, &c);
1086 return 0;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001087}
1088
1089static int nvme_submit_admin_async_cmd(struct nvme_dev *dev,
Keith Busch4d115422013-12-10 13:10:40 -07001090 struct nvme_command *cmd,
1091 struct async_cmd_info *cmdinfo, unsigned timeout)
1092{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001093 struct nvme_queue *nvmeq = dev->queues[0];
1094 struct request *req;
1095 struct nvme_cmd_info *cmd_rq;
Keith Busch4d115422013-12-10 13:10:40 -07001096
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001097 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001098 if (IS_ERR(req))
1099 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001100
1101 req->timeout = timeout;
1102 cmd_rq = blk_mq_rq_to_pdu(req);
1103 cmdinfo->req = req;
1104 nvme_set_info(cmd_rq, cmdinfo, async_completion);
Keith Busch4d115422013-12-10 13:10:40 -07001105 cmdinfo->status = -EINTR;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001106
1107 cmd->common.command_id = req->tag;
1108
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301109 nvme_submit_cmd(nvmeq, cmd);
1110 return 0;
Keith Busch4d115422013-12-10 13:10:40 -07001111}
1112
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001113static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
1114{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001115 struct nvme_command c;
1116
1117 memset(&c, 0, sizeof(c));
1118 c.delete_queue.opcode = opcode;
1119 c.delete_queue.qid = cpu_to_le16(id);
1120
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001121 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001122}
1123
1124static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
1125 struct nvme_queue *nvmeq)
1126{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001127 struct nvme_command c;
1128 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
1129
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001130 /*
1131 * Note: we (ab)use the fact the the prp fields survive if no data
1132 * is attached to the request.
1133 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001134 memset(&c, 0, sizeof(c));
1135 c.create_cq.opcode = nvme_admin_create_cq;
1136 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1137 c.create_cq.cqid = cpu_to_le16(qid);
1138 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1139 c.create_cq.cq_flags = cpu_to_le16(flags);
1140 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
1141
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001142 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001143}
1144
1145static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1146 struct nvme_queue *nvmeq)
1147{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001148 struct nvme_command c;
1149 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
1150
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001151 /*
1152 * Note: we (ab)use the fact the the prp fields survive if no data
1153 * is attached to the request.
1154 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001155 memset(&c, 0, sizeof(c));
1156 c.create_sq.opcode = nvme_admin_create_sq;
1157 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1158 c.create_sq.sqid = cpu_to_le16(qid);
1159 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1160 c.create_sq.sq_flags = cpu_to_le16(flags);
1161 c.create_sq.cqid = cpu_to_le16(qid);
1162
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001163 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001164}
1165
1166static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1167{
1168 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1169}
1170
1171static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1172{
1173 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1174}
1175
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001176int nvme_identify_ctrl(struct nvme_dev *dev, struct nvme_id_ctrl **id)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001177{
Andrew Mortone44ac582015-06-27 12:20:34 -06001178 struct nvme_command c = { };
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001179 int error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001180
Andrew Mortone44ac582015-06-27 12:20:34 -06001181 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1182 c.identify.opcode = nvme_admin_identify;
1183 c.identify.cns = cpu_to_le32(1);
1184
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001185 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
1186 if (!*id)
1187 return -ENOMEM;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001188
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001189 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1190 sizeof(struct nvme_id_ctrl));
1191 if (error)
1192 kfree(*id);
1193 return error;
1194}
1195
1196int nvme_identify_ns(struct nvme_dev *dev, unsigned nsid,
1197 struct nvme_id_ns **id)
1198{
Andrew Mortone44ac582015-06-27 12:20:34 -06001199 struct nvme_command c = { };
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001200 int error;
1201
Andrew Mortone44ac582015-06-27 12:20:34 -06001202 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1203 c.identify.opcode = nvme_admin_identify,
1204 c.identify.nsid = cpu_to_le32(nsid),
1205
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001206 *id = kmalloc(sizeof(struct nvme_id_ns), GFP_KERNEL);
1207 if (!*id)
1208 return -ENOMEM;
1209
1210 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1211 sizeof(struct nvme_id_ns));
1212 if (error)
1213 kfree(*id);
1214 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001215}
1216
Vishal Verma5d0f6132013-03-04 18:40:58 -07001217int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid,
Keith Busch08df1e02012-09-21 10:52:13 -06001218 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001219{
1220 struct nvme_command c;
1221
1222 memset(&c, 0, sizeof(c));
1223 c.features.opcode = nvme_admin_get_features;
Keith Buscha42cecc2012-07-25 16:06:38 -06001224 c.features.nsid = cpu_to_le32(nsid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001225 c.features.prp1 = cpu_to_le64(dma_addr);
1226 c.features.fid = cpu_to_le32(fid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001227
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001228 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1229 result, 0);
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001230}
1231
Vishal Verma5d0f6132013-03-04 18:40:58 -07001232int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11,
1233 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001234{
1235 struct nvme_command c;
1236
1237 memset(&c, 0, sizeof(c));
1238 c.features.opcode = nvme_admin_set_features;
1239 c.features.prp1 = cpu_to_le64(dma_addr);
1240 c.features.fid = cpu_to_le32(fid);
1241 c.features.dword11 = cpu_to_le32(dword11);
1242
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001243 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1244 result, 0);
1245}
1246
1247int nvme_get_log_page(struct nvme_dev *dev, struct nvme_smart_log **log)
1248{
Andrew Mortone44ac582015-06-27 12:20:34 -06001249 struct nvme_command c = { };
1250 int error;
1251
1252 c.common.opcode = nvme_admin_get_log_page,
1253 c.common.nsid = cpu_to_le32(0xFFFFFFFF),
1254 c.common.cdw10[0] = cpu_to_le32(
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001255 (((sizeof(struct nvme_smart_log) / 4) - 1) << 16) |
1256 NVME_LOG_SMART),
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001257
1258 *log = kmalloc(sizeof(struct nvme_smart_log), GFP_KERNEL);
1259 if (!*log)
1260 return -ENOMEM;
1261
1262 error = nvme_submit_sync_cmd(dev->admin_q, &c, *log,
1263 sizeof(struct nvme_smart_log));
1264 if (error)
1265 kfree(*log);
1266 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001267}
1268
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001269/**
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001270 * nvme_abort_req - Attempt aborting a request
Keith Buschc30341d2013-12-10 13:10:38 -07001271 *
1272 * Schedule controller reset if the command was already aborted once before and
1273 * still hasn't been returned to the driver, or if this is the admin queue.
1274 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001275static void nvme_abort_req(struct request *req)
Keith Buschc30341d2013-12-10 13:10:38 -07001276{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001277 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
1278 struct nvme_queue *nvmeq = cmd_rq->nvmeq;
Keith Buschc30341d2013-12-10 13:10:38 -07001279 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001280 struct request *abort_req;
1281 struct nvme_cmd_info *abort_cmd;
1282 struct nvme_command cmd;
Keith Buschc30341d2013-12-10 13:10:38 -07001283
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001284 if (!nvmeq->qid || cmd_rq->aborted) {
Christoph Hellwig906678922015-10-02 18:49:23 +02001285 spin_lock(&dev_list_lock);
1286 if (!__nvme_reset(dev)) {
1287 dev_warn(dev->dev,
1288 "I/O %d QID %d timeout, reset controller\n",
1289 req->tag, nvmeq->qid);
1290 }
1291 spin_unlock(&dev_list_lock);
Keith Buschc30341d2013-12-10 13:10:38 -07001292 return;
1293 }
1294
1295 if (!dev->abort_limit)
1296 return;
1297
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001298 abort_req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC,
1299 false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001300 if (IS_ERR(abort_req))
Keith Buschc30341d2013-12-10 13:10:38 -07001301 return;
1302
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001303 abort_cmd = blk_mq_rq_to_pdu(abort_req);
1304 nvme_set_info(abort_cmd, abort_req, abort_completion);
1305
Keith Buschc30341d2013-12-10 13:10:38 -07001306 memset(&cmd, 0, sizeof(cmd));
1307 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001308 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001309 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001310 cmd.abort.command_id = abort_req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001311
1312 --dev->abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001313 cmd_rq->aborted = 1;
Keith Buschc30341d2013-12-10 13:10:38 -07001314
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001315 dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag,
Keith Buschc30341d2013-12-10 13:10:38 -07001316 nvmeq->qid);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301317 nvme_submit_cmd(dev->queues[0], &cmd);
Keith Buschc30341d2013-12-10 13:10:38 -07001318}
1319
Keith Busch42483222015-06-01 09:29:54 -06001320static void nvme_cancel_queue_ios(struct request *req, void *data, bool reserved)
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001321{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001322 struct nvme_queue *nvmeq = data;
1323 void *ctx;
1324 nvme_completion_fn fn;
1325 struct nvme_cmd_info *cmd;
Keith Buschcef6a942015-01-07 18:55:51 -07001326 struct nvme_completion cqe;
1327
1328 if (!blk_mq_request_started(req))
1329 return;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001330
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001331 cmd = blk_mq_rq_to_pdu(req);
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001332
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001333 if (cmd->ctx == CMD_CTX_CANCELLED)
1334 return;
1335
Keith Buschcef6a942015-01-07 18:55:51 -07001336 if (blk_queue_dying(req->q))
1337 cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1);
1338 else
1339 cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
1340
1341
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001342 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n",
1343 req->tag, nvmeq->qid);
1344 ctx = cancel_cmd_info(cmd, &fn);
1345 fn(nvmeq, ctx, &cqe);
1346}
1347
1348static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1349{
1350 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
1351 struct nvme_queue *nvmeq = cmd->nvmeq;
1352
Keith Busch07836e62015-02-19 10:34:48 -07001353 dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag,
1354 nvmeq->qid);
1355 spin_lock_irq(&nvmeq->q_lock);
1356 nvme_abort_req(req);
1357 spin_unlock_irq(&nvmeq->q_lock);
1358
Keith Busch7a509a62015-01-07 18:55:53 -07001359 /*
1360 * The aborted req will be completed on receiving the abort req.
1361 * We enable the timer again. If hit twice, it'll cause a device reset,
1362 * as the device then is in a faulty state.
1363 */
Keith Busch07836e62015-02-19 10:34:48 -07001364 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001365}
1366
Keith Buschf435c282014-07-07 09:14:42 -06001367static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001368{
1369 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1370 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001371 if (nvmeq->sq_cmds)
1372 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
Matthew Wilcox9e866772012-08-03 13:55:56 -04001373 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1374 kfree(nvmeq);
1375}
1376
Keith Buscha1a5ef92013-12-16 13:50:00 -05001377static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001378{
1379 int i;
1380
Keith Buscha1a5ef92013-12-16 13:50:00 -05001381 for (i = dev->queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001382 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch22404272013-07-15 15:02:20 -06001383 dev->queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001384 dev->queues[i] = NULL;
Keith Buschf435c282014-07-07 09:14:42 -06001385 nvme_free_queue(nvmeq);
kaoudis121c7ad2015-01-14 21:01:58 -07001386 }
Keith Busch22404272013-07-15 15:02:20 -06001387}
1388
Keith Busch4d115422013-12-10 13:10:40 -07001389/**
1390 * nvme_suspend_queue - put queue into suspended state
1391 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001392 */
1393static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001394{
Keith Busch2b25d982014-12-22 12:59:04 -07001395 int vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001396
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001397 spin_lock_irq(&nvmeq->q_lock);
Keith Busch2b25d982014-12-22 12:59:04 -07001398 if (nvmeq->cq_vector == -1) {
1399 spin_unlock_irq(&nvmeq->q_lock);
1400 return 1;
1401 }
1402 vector = nvmeq->dev->entry[nvmeq->cq_vector].vector;
Keith Busch42f61422014-03-24 10:46:25 -06001403 nvmeq->dev->online_queues--;
Keith Busch2b25d982014-12-22 12:59:04 -07001404 nvmeq->cq_vector = -1;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001405 spin_unlock_irq(&nvmeq->q_lock);
1406
Keith Busch6df3dbc2015-03-26 13:49:33 -06001407 if (!nvmeq->qid && nvmeq->dev->admin_q)
1408 blk_mq_freeze_queue_start(nvmeq->dev->admin_q);
1409
Matthew Wilcoxaba20802011-03-27 08:52:06 -04001410 irq_set_affinity_hint(vector, NULL);
1411 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001412
Keith Busch4d115422013-12-10 13:10:40 -07001413 return 0;
1414}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001415
Keith Busch4d115422013-12-10 13:10:40 -07001416static void nvme_clear_queue(struct nvme_queue *nvmeq)
1417{
Keith Busch22404272013-07-15 15:02:20 -06001418 spin_lock_irq(&nvmeq->q_lock);
Keith Busch42483222015-06-01 09:29:54 -06001419 if (nvmeq->tags && *nvmeq->tags)
1420 blk_mq_all_tag_busy_iter(*nvmeq->tags, nvme_cancel_queue_ios, nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001421 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001422}
1423
Keith Busch4d115422013-12-10 13:10:40 -07001424static void nvme_disable_queue(struct nvme_dev *dev, int qid)
1425{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001426 struct nvme_queue *nvmeq = dev->queues[qid];
Keith Busch4d115422013-12-10 13:10:40 -07001427
1428 if (!nvmeq)
1429 return;
1430 if (nvme_suspend_queue(nvmeq))
1431 return;
1432
Keith Busch0e53d182013-12-10 13:10:39 -07001433 /* Don't tell the adapter to delete the admin queue.
1434 * Don't tell a removed adapter to delete IO queues. */
1435 if (qid && readl(&dev->bar->csts) != -1) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001436 adapter_delete_sq(dev, qid);
1437 adapter_delete_cq(dev, qid);
1438 }
Keith Busch07836e62015-02-19 10:34:48 -07001439
1440 spin_lock_irq(&nvmeq->q_lock);
1441 nvme_process_cq(nvmeq);
1442 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001443}
1444
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001445static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1446 int entry_size)
1447{
1448 int q_depth = dev->q_depth;
1449 unsigned q_size_aligned = roundup(q_depth * entry_size, dev->page_size);
1450
1451 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
Jon Derrickc45f5c92015-07-21 15:08:13 -06001452 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
1453 mem_per_q = round_down(mem_per_q, dev->page_size);
1454 q_depth = div_u64(mem_per_q, entry_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001455
1456 /*
1457 * Ensure the reduced q_depth is above some threshold where it
1458 * would be better to map queues in system memory with the
1459 * original depth
1460 */
1461 if (q_depth < 64)
1462 return -ENOMEM;
1463 }
1464
1465 return q_depth;
1466}
1467
1468static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1469 int qid, int depth)
1470{
1471 if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) {
1472 unsigned offset = (qid - 1) *
1473 roundup(SQ_SIZE(depth), dev->page_size);
1474 nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset;
1475 nvmeq->sq_cmds_io = dev->cmb + offset;
1476 } else {
1477 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1478 &nvmeq->sq_dma_addr, GFP_KERNEL);
1479 if (!nvmeq->sq_cmds)
1480 return -ENOMEM;
1481 }
1482
1483 return 0;
1484}
1485
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001486static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
Keith Busch2b25d982014-12-22 12:59:04 -07001487 int depth)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001488{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001489 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001490 if (!nvmeq)
1491 return NULL;
1492
Christoph Hellwige75ec752015-05-22 11:12:39 +02001493 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
Joe Perches4d51abf2014-06-15 13:37:33 -07001494 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001495 if (!nvmeq->cqes)
1496 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001497
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001498 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001499 goto free_cqdma;
1500
Christoph Hellwige75ec752015-05-22 11:12:39 +02001501 nvmeq->q_dmadev = dev->dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001502 nvmeq->dev = dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001503 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
1504 dev->instance, qid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001505 spin_lock_init(&nvmeq->q_lock);
1506 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001507 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001508 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001509 nvmeq->q_depth = depth;
Keith Buschc30341d2013-12-10 13:10:38 -07001510 nvmeq->qid = qid;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001511 nvmeq->cq_vector = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001512 dev->queues[qid] = nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001513
Jon Derrick36a7e992015-05-27 12:26:23 -06001514 /* make sure queue descriptor is set before queue count, for kthread */
1515 mb();
1516 dev->queue_count++;
1517
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001518 return nvmeq;
1519
1520 free_cqdma:
Christoph Hellwige75ec752015-05-22 11:12:39 +02001521 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001522 nvmeq->cq_dma_addr);
1523 free_nvmeq:
1524 kfree(nvmeq);
1525 return NULL;
1526}
1527
Matthew Wilcox30010822011-01-20 09:10:15 -05001528static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1529 const char *name)
1530{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001531 if (use_threaded_interrupts)
1532 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001533 nvme_irq_check, nvme_irq, IRQF_SHARED,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001534 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001535 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001536 IRQF_SHARED, name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001537}
1538
Keith Busch22404272013-07-15 15:02:20 -06001539static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001540{
Keith Busch22404272013-07-15 15:02:20 -06001541 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001542
Keith Busch7be50e92014-09-10 15:48:47 -06001543 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001544 nvmeq->sq_tail = 0;
1545 nvmeq->cq_head = 0;
1546 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001547 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001548 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Keith Busch42f61422014-03-24 10:46:25 -06001549 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001550 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001551}
1552
1553static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1554{
1555 struct nvme_dev *dev = nvmeq->dev;
1556 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001557
Keith Busch2b25d982014-12-22 12:59:04 -07001558 nvmeq->cq_vector = qid - 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001559 result = adapter_alloc_cq(dev, qid, nvmeq);
1560 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001561 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001562
1563 result = adapter_alloc_sq(dev, qid, nvmeq);
1564 if (result < 0)
1565 goto release_cq;
1566
Matthew Wilcox3193f072014-01-27 15:57:22 -05001567 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001568 if (result < 0)
1569 goto release_sq;
1570
Keith Busch22404272013-07-15 15:02:20 -06001571 nvme_init_queue(nvmeq, qid);
Keith Busch22404272013-07-15 15:02:20 -06001572 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001573
1574 release_sq:
1575 adapter_delete_sq(dev, qid);
1576 release_cq:
1577 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001578 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001579}
1580
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001581static int nvme_wait_ready(struct nvme_dev *dev, u64 cap, bool enabled)
1582{
1583 unsigned long timeout;
1584 u32 bit = enabled ? NVME_CSTS_RDY : 0;
1585
1586 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1587
1588 while ((readl(&dev->bar->csts) & NVME_CSTS_RDY) != bit) {
1589 msleep(100);
1590 if (fatal_signal_pending(current))
1591 return -EINTR;
1592 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001593 dev_err(dev->dev,
Matthew Wilcox27e81662014-04-11 11:58:45 -04001594 "Device not ready; aborting %s\n", enabled ?
1595 "initialisation" : "reset");
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001596 return -ENODEV;
1597 }
1598 }
1599
1600 return 0;
1601}
1602
1603/*
1604 * If the device has been passed off to us in an enabled state, just clear
1605 * the enabled bit. The spec says we should set the 'shutdown notification
1606 * bits', but doing so may cause the device to complete commands to the
1607 * admin queue ... and we don't know what memory that might be pointing at!
1608 */
1609static int nvme_disable_ctrl(struct nvme_dev *dev, u64 cap)
1610{
Dan McLeran01079522014-06-23 08:24:36 -06001611 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1612 dev->ctrl_config &= ~NVME_CC_ENABLE;
1613 writel(dev->ctrl_config, &dev->bar->cc);
Matthew Wilcox44af1462013-05-04 06:43:17 -04001614
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001615 return nvme_wait_ready(dev, cap, false);
1616}
1617
1618static int nvme_enable_ctrl(struct nvme_dev *dev, u64 cap)
1619{
Dan McLeran01079522014-06-23 08:24:36 -06001620 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1621 dev->ctrl_config |= NVME_CC_ENABLE;
1622 writel(dev->ctrl_config, &dev->bar->cc);
1623
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001624 return nvme_wait_ready(dev, cap, true);
1625}
1626
Keith Busch1894d8f2013-07-15 15:02:22 -06001627static int nvme_shutdown_ctrl(struct nvme_dev *dev)
1628{
1629 unsigned long timeout;
Keith Busch1894d8f2013-07-15 15:02:22 -06001630
Dan McLeran01079522014-06-23 08:24:36 -06001631 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1632 dev->ctrl_config |= NVME_CC_SHN_NORMAL;
1633
1634 writel(dev->ctrl_config, &dev->bar->cc);
Keith Busch1894d8f2013-07-15 15:02:22 -06001635
Dan McLeran2484f402014-07-01 09:33:32 -06001636 timeout = SHUTDOWN_TIMEOUT + jiffies;
Keith Busch1894d8f2013-07-15 15:02:22 -06001637 while ((readl(&dev->bar->csts) & NVME_CSTS_SHST_MASK) !=
1638 NVME_CSTS_SHST_CMPLT) {
1639 msleep(100);
1640 if (fatal_signal_pending(current))
1641 return -EINTR;
1642 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001643 dev_err(dev->dev,
Keith Busch1894d8f2013-07-15 15:02:22 -06001644 "Device shutdown incomplete; abort shutdown\n");
1645 return -ENODEV;
1646 }
1647 }
1648
1649 return 0;
1650}
1651
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001652static struct blk_mq_ops nvme_mq_admin_ops = {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001653 .queue_rq = nvme_queue_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001654 .map_queue = blk_mq_map_queue,
1655 .init_hctx = nvme_admin_init_hctx,
Keith Busch4af0e212015-06-08 10:08:13 -06001656 .exit_hctx = nvme_admin_exit_hctx,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001657 .init_request = nvme_admin_init_request,
1658 .timeout = nvme_timeout,
1659};
1660
1661static struct blk_mq_ops nvme_mq_ops = {
1662 .queue_rq = nvme_queue_rq,
1663 .map_queue = blk_mq_map_queue,
1664 .init_hctx = nvme_init_hctx,
1665 .init_request = nvme_init_request,
1666 .timeout = nvme_timeout,
1667};
1668
Keith Buschea191d22015-01-07 18:55:49 -07001669static void nvme_dev_remove_admin(struct nvme_dev *dev)
1670{
1671 if (dev->admin_q && !blk_queue_dying(dev->admin_q)) {
1672 blk_cleanup_queue(dev->admin_q);
1673 blk_mq_free_tag_set(&dev->admin_tagset);
1674 }
1675}
1676
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001677static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1678{
1679 if (!dev->admin_q) {
1680 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1681 dev->admin_tagset.nr_hw_queues = 1;
1682 dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1;
Keith Busch1efccc92015-03-31 10:37:17 -06001683 dev->admin_tagset.reserved_tags = 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001684 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001685 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
Jens Axboeac3dd5b2015-01-22 12:07:58 -07001686 dev->admin_tagset.cmd_size = nvme_cmd_size(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001687 dev->admin_tagset.driver_data = dev;
1688
1689 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1690 return -ENOMEM;
1691
1692 dev->admin_q = blk_mq_init_queue(&dev->admin_tagset);
Ming Lei35b489d2015-01-02 14:25:27 +00001693 if (IS_ERR(dev->admin_q)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001694 blk_mq_free_tag_set(&dev->admin_tagset);
1695 return -ENOMEM;
1696 }
Keith Buschea191d22015-01-07 18:55:49 -07001697 if (!blk_get_queue(dev->admin_q)) {
1698 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06001699 dev->admin_q = NULL;
Keith Buschea191d22015-01-07 18:55:49 -07001700 return -ENODEV;
1701 }
Keith Busch0fb59cb2015-01-07 18:55:50 -07001702 } else
1703 blk_mq_unfreeze_queue(dev->admin_q);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001704
1705 return 0;
1706}
1707
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001708static int nvme_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001709{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001710 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001711 u32 aqa;
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001712 u64 cap = readq(&dev->bar->cap);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001713 struct nvme_queue *nvmeq;
Keith Busch1d090622014-06-23 11:34:01 -06001714 unsigned page_shift = PAGE_SHIFT;
1715 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12;
1716 unsigned dev_page_max = NVME_CAP_MPSMAX(cap) + 12;
1717
1718 if (page_shift < dev_page_min) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001719 dev_err(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001720 "Minimum device page size (%u) too large for "
1721 "host (%u)\n", 1 << dev_page_min,
1722 1 << page_shift);
1723 return -ENODEV;
1724 }
1725 if (page_shift > dev_page_max) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001726 dev_info(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001727 "Device maximum page size (%u) smaller than "
1728 "host (%u); enabling work-around\n",
1729 1 << dev_page_max, 1 << page_shift);
1730 page_shift = dev_page_max;
1731 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001732
Keith Buschdfbac8c2015-08-10 15:20:40 -06001733 dev->subsystem = readl(&dev->bar->vs) >= NVME_VS(1, 1) ?
1734 NVME_CAP_NSSRC(cap) : 0;
1735
1736 if (dev->subsystem && (readl(&dev->bar->csts) & NVME_CSTS_NSSRO))
1737 writel(NVME_CSTS_NSSRO, &dev->bar->csts);
1738
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001739 result = nvme_disable_ctrl(dev, cap);
1740 if (result < 0)
1741 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001742
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001743 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001744 if (!nvmeq) {
Keith Busch2b25d982014-12-22 12:59:04 -07001745 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
Keith Buschcd638942013-07-15 15:02:23 -06001746 if (!nvmeq)
1747 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001748 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001749
1750 aqa = nvmeq->q_depth - 1;
1751 aqa |= aqa << 16;
1752
Keith Busch1d090622014-06-23 11:34:01 -06001753 dev->page_size = 1 << page_shift;
1754
Dan McLeran01079522014-06-23 08:24:36 -06001755 dev->ctrl_config = NVME_CC_CSS_NVM;
Keith Busch1d090622014-06-23 11:34:01 -06001756 dev->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001757 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -04001758 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001759
1760 writel(aqa, &dev->bar->aqa);
1761 writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1762 writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001763
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001764 result = nvme_enable_ctrl(dev, cap);
Keith Busch025c5572013-05-01 13:07:51 -06001765 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001766 goto free_nvmeq;
1767
Keith Busch2b25d982014-12-22 12:59:04 -07001768 nvmeq->cq_vector = 0;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001769 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001770 if (result) {
1771 nvmeq->cq_vector = -1;
Keith Busch0fb59cb2015-01-07 18:55:50 -07001772 goto free_nvmeq;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001773 }
Keith Busch025c5572013-05-01 13:07:51 -06001774
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001775 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001776
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001777 free_nvmeq:
1778 nvme_free_queues(dev, 0);
1779 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001780}
1781
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001782static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1783{
1784 struct nvme_dev *dev = ns->dev;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001785 struct nvme_user_io io;
1786 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001787 unsigned length, meta_len;
Keith Buscha67a9512015-04-07 16:57:19 -06001788 int status, write;
Keith Buscha67a9512015-04-07 16:57:19 -06001789 dma_addr_t meta_dma = 0;
1790 void *meta = NULL;
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001791 void __user *metadata;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001792
1793 if (copy_from_user(&io, uio, sizeof(io)))
1794 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001795
1796 switch (io.opcode) {
1797 case nvme_cmd_write:
1798 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001799 case nvme_cmd_compare:
Matthew Wilcox64132142011-08-09 12:56:37 -04001800 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001801 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001802 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001803 }
1804
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001805 length = (io.nblocks + 1) << ns->lba_shift;
1806 meta_len = (io.nblocks + 1) * ns->ms;
Arnd Bergmann3d42e672015-10-06 22:29:48 +02001807 metadata = (void __user *)(uintptr_t)io.metadata;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001808 write = io.opcode & 1;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001809
Keith Busch71feb362015-06-19 11:07:30 -06001810 if (ns->ext) {
1811 length += meta_len;
1812 meta_len = 0;
Keith Buscha67a9512015-04-07 16:57:19 -06001813 }
1814 if (meta_len) {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001815 if (((io.metadata & 3) || !io.metadata) && !ns->ext)
1816 return -EINVAL;
1817
Christoph Hellwige75ec752015-05-22 11:12:39 +02001818 meta = dma_alloc_coherent(dev->dev, meta_len,
Keith Buscha67a9512015-04-07 16:57:19 -06001819 &meta_dma, GFP_KERNEL);
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001820
Keith Buscha67a9512015-04-07 16:57:19 -06001821 if (!meta) {
1822 status = -ENOMEM;
1823 goto unmap;
1824 }
1825 if (write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001826 if (copy_from_user(meta, metadata, meta_len)) {
Keith Buscha67a9512015-04-07 16:57:19 -06001827 status = -EFAULT;
1828 goto unmap;
1829 }
1830 }
1831 }
1832
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001833 memset(&c, 0, sizeof(c));
1834 c.rw.opcode = io.opcode;
1835 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001836 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001837 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001838 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001839 c.rw.control = cpu_to_le16(io.control);
Matthew Wilcox1c9b5262013-04-16 15:21:06 -04001840 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1841 c.rw.reftag = cpu_to_le32(io.reftag);
1842 c.rw.apptag = cpu_to_le16(io.apptag);
1843 c.rw.appmask = cpu_to_le16(io.appmask);
Keith Buscha67a9512015-04-07 16:57:19 -06001844 c.rw.metadata = cpu_to_le64(meta_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001845
1846 status = __nvme_submit_sync_cmd(ns->queue, &c, NULL,
Arnd Bergmann3d42e672015-10-06 22:29:48 +02001847 (void __user *)(uintptr_t)io.addr, length, NULL, 0);
Keith Buschf410c682013-04-23 17:23:59 -06001848 unmap:
Keith Buscha67a9512015-04-07 16:57:19 -06001849 if (meta) {
1850 if (status == NVME_SC_SUCCESS && !write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001851 if (copy_to_user(metadata, meta, meta_len))
Keith Buscha67a9512015-04-07 16:57:19 -06001852 status = -EFAULT;
1853 }
Christoph Hellwige75ec752015-05-22 11:12:39 +02001854 dma_free_coherent(dev->dev, meta_len, meta, meta_dma);
Keith Buschf410c682013-04-23 17:23:59 -06001855 }
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001856 return status;
1857}
1858
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001859static int nvme_user_cmd(struct nvme_dev *dev, struct nvme_ns *ns,
1860 struct nvme_passthru_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001861{
Keith Busch7963e522014-09-12 16:07:20 -06001862 struct nvme_passthru_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001863 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001864 unsigned timeout = 0;
1865 int status;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001866
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001867 if (!capable(CAP_SYS_ADMIN))
1868 return -EACCES;
1869 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001870 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001871
1872 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001873 c.common.opcode = cmd.opcode;
1874 c.common.flags = cmd.flags;
1875 c.common.nsid = cpu_to_le32(cmd.nsid);
1876 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1877 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1878 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1879 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1880 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1881 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1882 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1883 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1884
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001885 if (cmd.timeout_ms)
1886 timeout = msecs_to_jiffies(cmd.timeout_ms);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001887
Christoph Hellwigf705f832015-05-22 11:12:38 +02001888 status = __nvme_submit_sync_cmd(ns ? ns->queue : dev->admin_q, &c,
Arnd Bergmann3d42e672015-10-06 22:29:48 +02001889 NULL, (void __user *)(uintptr_t)cmd.addr, cmd.data_len,
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001890 &cmd.result, timeout);
1891 if (status >= 0) {
1892 if (put_user(cmd.result, &ucmd->result))
1893 return -EFAULT;
Keith Buschedd10d32014-04-03 16:45:23 -06001894 }
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001895
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001896 return status;
1897}
1898
Jon Derrick81f03fe2015-08-10 15:20:41 -06001899static int nvme_subsys_reset(struct nvme_dev *dev)
1900{
1901 if (!dev->subsystem)
1902 return -ENOTTY;
1903
1904 writel(0x4E564D65, &dev->bar->nssr); /* "NVMe" */
1905 return 0;
1906}
1907
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001908static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1909 unsigned long arg)
1910{
1911 struct nvme_ns *ns = bdev->bd_disk->private_data;
1912
1913 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001914 case NVME_IOCTL_ID:
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04001915 force_successful_syscall_return();
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001916 return ns->ns_id;
1917 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001918 return nvme_user_cmd(ns->dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06001919 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001920 return nvme_user_cmd(ns->dev, ns, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001921 case NVME_IOCTL_SUBMIT_IO:
1922 return nvme_submit_io(ns, (void __user *)arg);
Vishal Verma5d0f6132013-03-04 18:40:58 -07001923 case SG_GET_VERSION_NUM:
1924 return nvme_sg_get_version_num((void __user *)arg);
1925 case SG_IO:
1926 return nvme_sg_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001927 default:
1928 return -ENOTTY;
1929 }
1930}
1931
Keith Busch320a3822013-10-23 13:07:34 -06001932#ifdef CONFIG_COMPAT
1933static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode,
1934 unsigned int cmd, unsigned long arg)
1935{
Keith Busch320a3822013-10-23 13:07:34 -06001936 switch (cmd) {
1937 case SG_IO:
Keith Busche1797292014-08-27 13:55:38 -06001938 return -ENOIOCTLCMD;
Keith Busch320a3822013-10-23 13:07:34 -06001939 }
1940 return nvme_ioctl(bdev, mode, cmd, arg);
1941}
1942#else
1943#define nvme_compat_ioctl NULL
1944#endif
1945
Keith Busch5105aa52015-10-02 10:37:28 -06001946static void nvme_free_dev(struct kref *kref);
Keith Busch188c3562015-10-01 17:14:10 -06001947static void nvme_free_ns(struct kref *kref)
1948{
1949 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
1950
1951 spin_lock(&dev_list_lock);
1952 ns->disk->private_data = NULL;
1953 spin_unlock(&dev_list_lock);
1954
Keith Busch5105aa52015-10-02 10:37:28 -06001955 kref_put(&ns->dev->kref, nvme_free_dev);
Keith Busch188c3562015-10-01 17:14:10 -06001956 put_disk(ns->disk);
1957 kfree(ns);
1958}
1959
Keith Busch9ac27092014-01-31 16:53:39 -07001960static int nvme_open(struct block_device *bdev, fmode_t mode)
1961{
Keith Busch9e603522014-10-03 11:15:47 -06001962 int ret = 0;
1963 struct nvme_ns *ns;
Keith Busch9ac27092014-01-31 16:53:39 -07001964
Keith Busch9e603522014-10-03 11:15:47 -06001965 spin_lock(&dev_list_lock);
1966 ns = bdev->bd_disk->private_data;
1967 if (!ns)
1968 ret = -ENXIO;
Keith Busch188c3562015-10-01 17:14:10 -06001969 else if (!kref_get_unless_zero(&ns->kref))
Keith Busch9e603522014-10-03 11:15:47 -06001970 ret = -ENXIO;
1971 spin_unlock(&dev_list_lock);
1972
1973 return ret;
Keith Busch9ac27092014-01-31 16:53:39 -07001974}
1975
Keith Busch9ac27092014-01-31 16:53:39 -07001976static void nvme_release(struct gendisk *disk, fmode_t mode)
1977{
1978 struct nvme_ns *ns = disk->private_data;
Keith Busch188c3562015-10-01 17:14:10 -06001979 kref_put(&ns->kref, nvme_free_ns);
Keith Busch9ac27092014-01-31 16:53:39 -07001980}
1981
Keith Busch4cc09e22014-04-02 15:45:37 -06001982static int nvme_getgeo(struct block_device *bd, struct hd_geometry *geo)
1983{
1984 /* some standard values */
1985 geo->heads = 1 << 6;
1986 geo->sectors = 1 << 5;
1987 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
1988 return 0;
1989}
1990
Keith Busche1e5e562015-02-19 13:39:03 -07001991static void nvme_config_discard(struct nvme_ns *ns)
1992{
1993 u32 logical_block_size = queue_logical_block_size(ns->queue);
1994 ns->queue->limits.discard_zeroes_data = 0;
1995 ns->queue->limits.discard_alignment = logical_block_size;
1996 ns->queue->limits.discard_granularity = logical_block_size;
Jens Axboe2bb4cd52015-07-14 08:15:12 -06001997 blk_queue_max_discard_sectors(ns->queue, 0xffffffff);
Keith Busche1e5e562015-02-19 13:39:03 -07001998 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
1999}
2000
Keith Busch1b9dbf72014-09-10 17:21:14 -06002001static int nvme_revalidate_disk(struct gendisk *disk)
2002{
2003 struct nvme_ns *ns = disk->private_data;
2004 struct nvme_dev *dev = ns->dev;
2005 struct nvme_id_ns *id;
Keith Buscha67a9512015-04-07 16:57:19 -06002006 u8 lbaf, pi_type;
2007 u16 old_ms;
Keith Busche1e5e562015-02-19 13:39:03 -07002008 unsigned short bs;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002009
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002010 if (nvme_identify_ns(dev, ns->ns_id, &id)) {
Keith Buscha5768aa2015-06-01 14:28:14 -06002011 dev_warn(dev->dev, "%s: Identify failure nvme%dn%d\n", __func__,
2012 dev->instance, ns->ns_id);
2013 return -ENODEV;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002014 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002015 if (id->ncap == 0) {
2016 kfree(id);
2017 return -ENODEV;
Keith Busche1e5e562015-02-19 13:39:03 -07002018 }
Keith Busch1b9dbf72014-09-10 17:21:14 -06002019
Keith Busche1e5e562015-02-19 13:39:03 -07002020 old_ms = ns->ms;
2021 lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002022 ns->lba_shift = id->lbaf[lbaf].ds;
Keith Busche1e5e562015-02-19 13:39:03 -07002023 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms);
Keith Buscha67a9512015-04-07 16:57:19 -06002024 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002025
Keith Busche1e5e562015-02-19 13:39:03 -07002026 /*
2027 * If identify namespace failed, use default 512 byte block size so
2028 * block layer can use before failing read/write for 0 capacity.
2029 */
2030 if (ns->lba_shift == 0)
2031 ns->lba_shift = 9;
2032 bs = 1 << ns->lba_shift;
2033
2034 /* XXX: PI implementation requires metadata equal t10 pi tuple size */
2035 pi_type = ns->ms == sizeof(struct t10_pi_tuple) ?
2036 id->dps & NVME_NS_DPS_PI_MASK : 0;
2037
Keith Busch52b68d72015-02-23 09:16:21 -07002038 if (blk_get_integrity(disk) && (ns->pi_type != pi_type ||
2039 ns->ms != old_ms ||
Keith Busche1e5e562015-02-19 13:39:03 -07002040 bs != queue_logical_block_size(disk->queue) ||
Keith Buscha67a9512015-04-07 16:57:19 -06002041 (ns->ms && ns->ext)))
Keith Busche1e5e562015-02-19 13:39:03 -07002042 blk_integrity_unregister(disk);
2043
2044 ns->pi_type = pi_type;
2045 blk_queue_logical_block_size(ns->queue, bs);
2046
Martin K. Petersen25520d52015-10-21 13:19:49 -04002047 if (ns->ms && !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) {
Christoph Hellwig906678922015-10-02 18:49:23 +02002085 if (!__nvme_reset(dev)) {
2086 dev_warn(dev->dev,
2087 "Failed status: %x, reset controller\n",
2088 readl(&dev->bar->csts));
2089 }
Keith Buschd4b4ff82013-12-10 13:10:37 -07002090 continue;
2091 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002092 for (i = 0; i < dev->queue_count; i++) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002093 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05002094 if (!nvmeq)
2095 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002096 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxbc57a0f2013-06-24 11:56:42 -04002097 nvme_process_cq(nvmeq);
Keith Busch6fccf932014-06-18 13:58:57 -06002098
2099 while ((i == 0) && (dev->event_limit > 0)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002100 if (nvme_submit_async_admin_req(dev))
Keith Busch6fccf932014-06-18 13:58:57 -06002101 break;
2102 dev->event_limit--;
2103 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002104 spin_unlock_irq(&nvmeq->q_lock);
2105 }
2106 }
2107 spin_unlock(&dev_list_lock);
Arjan van de Venacb7aa02013-02-04 14:44:33 -08002108 schedule_timeout(round_jiffies_relative(HZ));
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002109 }
2110 return 0;
2111}
2112
Keith Busche1e5e562015-02-19 13:39:03 -07002113static void nvme_alloc_ns(struct nvme_dev *dev, unsigned nsid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002114{
2115 struct nvme_ns *ns;
2116 struct gendisk *disk;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002117 int node = dev_to_node(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002118
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002119 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002120 if (!ns)
Keith Busche1e5e562015-02-19 13:39:03 -07002121 return;
2122
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002123 ns->queue = blk_mq_init_queue(&dev->tagset);
Dan Carpenter9f173b32014-11-05 23:39:09 +03002124 if (IS_ERR(ns->queue))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002125 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07002126 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
2127 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002128 ns->dev = dev;
2129 ns->queue->queuedata = ns;
2130
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002131 disk = alloc_disk_node(0, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002132 if (!disk)
2133 goto out_free_queue;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002134
Keith Busch188c3562015-10-01 17:14:10 -06002135 kref_init(&ns->kref);
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002136 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002137 ns->disk = disk;
Keith Busche1e5e562015-02-19 13:39:03 -07002138 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
2139 list_add_tail(&ns->list, &dev->namespaces);
2140
Keith Busche9ef4632012-07-24 15:01:04 -06002141 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Keith Busche8244102015-08-12 16:17:54 -06002142 if (dev->max_hw_sectors) {
Keith Busch8fc23e02012-07-26 11:29:57 -06002143 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
Keith Busche8244102015-08-12 16:17:54 -06002144 blk_queue_max_segments(ns->queue,
2145 ((dev->max_hw_sectors << 9) / dev->page_size) + 1);
2146 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002147 if (dev->stripe_size)
2148 blk_queue_chunk_sectors(ns->queue, dev->stripe_size >> 9);
Keith Buscha7d2ce22014-04-29 11:41:28 -06002149 if (dev->vwc & NVME_CTRL_VWC_PRESENT)
2150 blk_queue_flush(ns->queue, REQ_FLUSH | REQ_FUA);
Keith Busch03100aa2015-08-19 14:24:05 -07002151 blk_queue_virt_boundary(ns->queue, dev->page_size - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002152
2153 disk->major = nvme_major;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002154 disk->first_minor = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002155 disk->fops = &nvme_fops;
2156 disk->private_data = ns;
2157 disk->queue = ns->queue;
Keith Buschb3fffde2015-02-03 11:21:42 -07002158 disk->driverfs_dev = dev->device;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002159 disk->flags = GENHD_FL_EXT_DEVT;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002160 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002161
Keith Busche1e5e562015-02-19 13:39:03 -07002162 /*
2163 * Initialize capacity to 0 until we establish the namespace format and
2164 * setup integrity extentions if necessary. The revalidate_disk after
2165 * add_disk allows the driver to register with integrity if the format
2166 * requires it.
2167 */
2168 set_capacity(disk, 0);
Keith Buscha5768aa2015-06-01 14:28:14 -06002169 if (nvme_revalidate_disk(ns->disk))
2170 goto out_free_disk;
2171
Keith Busch5105aa52015-10-02 10:37:28 -06002172 kref_get(&dev->kref);
Keith Busche1e5e562015-02-19 13:39:03 -07002173 add_disk(ns->disk);
Keith Busch7bee6072015-07-14 11:57:48 -06002174 if (ns->ms) {
2175 struct block_device *bd = bdget_disk(ns->disk, 0);
2176 if (!bd)
2177 return;
2178 if (blkdev_get(bd, FMODE_READ, NULL)) {
2179 bdput(bd);
2180 return;
2181 }
2182 blkdev_reread_part(bd);
2183 blkdev_put(bd, FMODE_READ);
2184 }
Keith Busche1e5e562015-02-19 13:39:03 -07002185 return;
Keith Buscha5768aa2015-06-01 14:28:14 -06002186 out_free_disk:
2187 kfree(disk);
2188 list_del(&ns->list);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002189 out_free_queue:
2190 blk_cleanup_queue(ns->queue);
2191 out_free_ns:
2192 kfree(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002193}
2194
Christoph Hellwig2659e572015-10-02 18:51:31 +02002195/*
2196 * Create I/O queues. Failing to create an I/O queue is not an issue,
2197 * we can continue with less than the desired amount of queues, and
2198 * even a controller without I/O queues an still be used to issue
2199 * admin commands. This might be useful to upgrade a buggy firmware
2200 * for example.
2201 */
Keith Busch42f61422014-03-24 10:46:25 -06002202static void nvme_create_io_queues(struct nvme_dev *dev)
2203{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002204 unsigned i;
Keith Busch42f61422014-03-24 10:46:25 -06002205
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002206 for (i = dev->queue_count; i <= dev->max_qid; i++)
Keith Busch2b25d982014-12-22 12:59:04 -07002207 if (!nvme_alloc_queue(dev, i, dev->q_depth))
Keith Busch42f61422014-03-24 10:46:25 -06002208 break;
2209
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002210 for (i = dev->online_queues; i <= dev->queue_count - 1; i++)
Christoph Hellwig2659e572015-10-02 18:51:31 +02002211 if (nvme_create_queue(dev->queues[i], i)) {
2212 nvme_free_queues(dev, i);
Keith Busch42f61422014-03-24 10:46:25 -06002213 break;
Christoph Hellwig2659e572015-10-02 18:51:31 +02002214 }
Keith Busch42f61422014-03-24 10:46:25 -06002215}
2216
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002217static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002218{
2219 int status;
2220 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002221 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002222
Matthew Wilcoxdf348132012-01-11 07:29:56 -07002223 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002224 &result);
Matthew Wilcox27e81662014-04-11 11:58:45 -04002225 if (status < 0)
2226 return status;
2227 if (status > 0) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002228 dev_err(dev->dev, "Could not set queue count (%d)\n", status);
Keith Buschbadc34d2014-06-23 14:25:35 -06002229 return 0;
Matthew Wilcox27e81662014-04-11 11:58:45 -04002230 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002231 return min(result & 0xffff, result >> 16) + 1;
2232}
2233
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002234static void __iomem *nvme_map_cmb(struct nvme_dev *dev)
2235{
2236 u64 szu, size, offset;
2237 u32 cmbloc;
2238 resource_size_t bar_size;
2239 struct pci_dev *pdev = to_pci_dev(dev->dev);
2240 void __iomem *cmb;
2241 dma_addr_t dma_addr;
2242
2243 if (!use_cmb_sqes)
2244 return NULL;
2245
2246 dev->cmbsz = readl(&dev->bar->cmbsz);
2247 if (!(NVME_CMB_SZ(dev->cmbsz)))
2248 return NULL;
2249
2250 cmbloc = readl(&dev->bar->cmbloc);
2251
2252 szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz));
2253 size = szu * NVME_CMB_SZ(dev->cmbsz);
2254 offset = szu * NVME_CMB_OFST(cmbloc);
2255 bar_size = pci_resource_len(pdev, NVME_CMB_BIR(cmbloc));
2256
2257 if (offset > bar_size)
2258 return NULL;
2259
2260 /*
2261 * Controllers may support a CMB size larger than their BAR,
2262 * for example, due to being behind a bridge. Reduce the CMB to
2263 * the reported size of the BAR
2264 */
2265 if (size > bar_size - offset)
2266 size = bar_size - offset;
2267
2268 dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(cmbloc)) + offset;
2269 cmb = ioremap_wc(dma_addr, size);
2270 if (!cmb)
2271 return NULL;
2272
2273 dev->cmb_dma_addr = dma_addr;
2274 dev->cmb_size = size;
2275 return cmb;
2276}
2277
2278static inline void nvme_release_cmb(struct nvme_dev *dev)
2279{
2280 if (dev->cmb) {
2281 iounmap(dev->cmb);
2282 dev->cmb = NULL;
2283 }
2284}
2285
Keith Busch9d713c22013-07-15 15:02:24 -06002286static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
2287{
Haiyan Hub80d5cc2013-09-10 11:25:37 +08002288 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
Keith Busch9d713c22013-07-15 15:02:24 -06002289}
2290
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002291static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002292{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002293 struct nvme_queue *adminq = dev->queues[0];
Christoph Hellwige75ec752015-05-22 11:12:39 +02002294 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch42f61422014-03-24 10:46:25 -06002295 int result, i, vecs, nr_io_queues, size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002296
Keith Busch42f61422014-03-24 10:46:25 -06002297 nr_io_queues = num_possible_cpus();
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002298 result = set_queue_count(dev, nr_io_queues);
Keith Buschbadc34d2014-06-23 14:25:35 -06002299 if (result <= 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002300 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002301 if (result < nr_io_queues)
2302 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002303
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002304 if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) {
2305 result = nvme_cmb_qdepth(dev, nr_io_queues,
2306 sizeof(struct nvme_command));
2307 if (result > 0)
2308 dev->q_depth = result;
2309 else
2310 nvme_release_cmb(dev);
2311 }
2312
Keith Busch9d713c22013-07-15 15:02:24 -06002313 size = db_bar_size(dev, nr_io_queues);
2314 if (size > 8192) {
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002315 iounmap(dev->bar);
Keith Busch9d713c22013-07-15 15:02:24 -06002316 do {
2317 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
2318 if (dev->bar)
2319 break;
2320 if (!--nr_io_queues)
2321 return -ENOMEM;
2322 size = db_bar_size(dev, nr_io_queues);
2323 } while (1);
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002324 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Keith Busch5a92e702014-02-21 14:13:44 -07002325 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002326 }
2327
Keith Busch9d713c22013-07-15 15:02:24 -06002328 /* Deregister the admin queue's interrupt */
Matthew Wilcox3193f072014-01-27 15:57:22 -05002329 free_irq(dev->entry[0].vector, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06002330
Jens Axboee32efbf2014-11-14 09:49:26 -07002331 /*
2332 * If we enable msix early due to not intx, disable it again before
2333 * setting up the full range we need.
2334 */
2335 if (!pdev->irq)
2336 pci_disable_msix(pdev);
2337
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002338 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002339 dev->entry[i].entry = i;
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002340 vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues);
2341 if (vecs < 0) {
2342 vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32));
2343 if (vecs < 0) {
2344 vecs = 1;
2345 } else {
2346 for (i = 0; i < vecs; i++)
2347 dev->entry[i].vector = i + pdev->irq;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002348 }
2349 }
2350
Matthew Wilcox063a8092013-06-20 10:53:48 -04002351 /*
2352 * Should investigate if there's a performance win from allocating
2353 * more queues than interrupt vectors; it might allow the submission
2354 * path to scale better, even if the receive path is limited by the
2355 * number of interrupts.
2356 */
2357 nr_io_queues = vecs;
Keith Busch42f61422014-03-24 10:46:25 -06002358 dev->max_qid = nr_io_queues;
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07002359
Matthew Wilcox3193f072014-01-27 15:57:22 -05002360 result = queue_request_irq(dev, adminq, adminq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06002361 if (result) {
2362 adminq->cq_vector = -1;
Keith Busch22404272013-07-15 15:02:20 -06002363 goto free_queues;
Jon Derrick758dd7f2015-06-30 11:22:52 -06002364 }
Matthew Wilcox1b234842011-01-20 13:01:49 -05002365
Keith Buschcd638942013-07-15 15:02:23 -06002366 /* Free previously allocated queues that are no longer usable */
Keith Busch42f61422014-03-24 10:46:25 -06002367 nvme_free_queues(dev, nr_io_queues + 1);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002368 nvme_create_io_queues(dev);
Keith Buschcd638942013-07-15 15:02:23 -06002369
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002370 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002371
Keith Busch22404272013-07-15 15:02:20 -06002372 free_queues:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002373 nvme_free_queues(dev, 1);
Keith Busch22404272013-07-15 15:02:20 -06002374 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002375}
2376
Keith Buscha5768aa2015-06-01 14:28:14 -06002377static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2378{
2379 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2380 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2381
2382 return nsa->ns_id - nsb->ns_id;
2383}
2384
2385static struct nvme_ns *nvme_find_ns(struct nvme_dev *dev, unsigned nsid)
2386{
2387 struct nvme_ns *ns;
2388
2389 list_for_each_entry(ns, &dev->namespaces, list) {
2390 if (ns->ns_id == nsid)
2391 return ns;
2392 if (ns->ns_id > nsid)
2393 break;
2394 }
2395 return NULL;
2396}
2397
2398static inline bool nvme_io_incapable(struct nvme_dev *dev)
2399{
2400 return (!dev->bar || readl(&dev->bar->csts) & NVME_CSTS_CFS ||
2401 dev->online_queues < 2);
2402}
2403
2404static void nvme_ns_remove(struct nvme_ns *ns)
2405{
2406 bool kill = nvme_io_incapable(ns->dev) && !blk_queue_dying(ns->queue);
2407
2408 if (kill)
2409 blk_set_queue_dying(ns->queue);
Dan Williams9609b992015-10-21 13:19:55 -04002410 if (ns->disk->flags & GENHD_FL_UP)
Keith Buscha5768aa2015-06-01 14:28:14 -06002411 del_gendisk(ns->disk);
Keith Buscha5768aa2015-06-01 14:28:14 -06002412 if (kill || !blk_queue_dying(ns->queue)) {
2413 blk_mq_abort_requeue_list(ns->queue);
2414 blk_cleanup_queue(ns->queue);
Keith Busch5105aa52015-10-02 10:37:28 -06002415 }
2416 list_del_init(&ns->list);
2417 kref_put(&ns->kref, nvme_free_ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002418}
2419
2420static void nvme_scan_namespaces(struct nvme_dev *dev, unsigned nn)
2421{
2422 struct nvme_ns *ns, *next;
2423 unsigned i;
2424
2425 for (i = 1; i <= nn; i++) {
2426 ns = nvme_find_ns(dev, i);
2427 if (ns) {
Keith Busch5105aa52015-10-02 10:37:28 -06002428 if (revalidate_disk(ns->disk))
Keith Buscha5768aa2015-06-01 14:28:14 -06002429 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002430 } else
2431 nvme_alloc_ns(dev, i);
2432 }
2433 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
Keith Busch5105aa52015-10-02 10:37:28 -06002434 if (ns->ns_id > nn)
Keith Buscha5768aa2015-06-01 14:28:14 -06002435 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002436 }
2437 list_sort(NULL, &dev->namespaces, ns_cmp);
2438}
2439
Keith Buschbda4e0f2015-09-03 08:18:17 -06002440static void nvme_set_irq_hints(struct nvme_dev *dev)
2441{
2442 struct nvme_queue *nvmeq;
2443 int i;
2444
2445 for (i = 0; i < dev->online_queues; i++) {
2446 nvmeq = dev->queues[i];
2447
2448 if (!nvmeq->tags || !(*nvmeq->tags))
2449 continue;
2450
2451 irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector,
2452 blk_mq_tags_cpumask(*nvmeq->tags));
2453 }
2454}
2455
Keith Buscha5768aa2015-06-01 14:28:14 -06002456static void nvme_dev_scan(struct work_struct *work)
2457{
2458 struct nvme_dev *dev = container_of(work, struct nvme_dev, scan_work);
2459 struct nvme_id_ctrl *ctrl;
2460
2461 if (!dev->tagset.tags)
2462 return;
2463 if (nvme_identify_ctrl(dev, &ctrl))
2464 return;
2465 nvme_scan_namespaces(dev, le32_to_cpup(&ctrl->nn));
2466 kfree(ctrl);
Keith Buschbda4e0f2015-09-03 08:18:17 -06002467 nvme_set_irq_hints(dev);
Keith Buscha5768aa2015-06-01 14:28:14 -06002468}
2469
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002470/*
2471 * Return: error value if an error occurred setting up the queues or calling
2472 * Identify Device. 0 if these succeeded, even if adding some of the
2473 * namespaces failed. At the moment, these failures are silent. TBD which
2474 * failures should be reported.
2475 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002476static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002477{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002478 struct pci_dev *pdev = to_pci_dev(dev->dev);
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04002479 int res;
Matthew Wilcox51814232011-02-01 16:18:08 -05002480 struct nvme_id_ctrl *ctrl;
Keith Busch159b67d2013-04-09 17:13:20 -06002481 int shift = NVME_CAP_MPSMIN(readq(&dev->bar->cap)) + 12;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002482
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002483 res = nvme_identify_ctrl(dev, &ctrl);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002484 if (res) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002485 dev_err(dev->dev, "Identify Controller failed (%d)\n", res);
Keith Busche1e5e562015-02-19 13:39:03 -07002486 return -EIO;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002487 }
2488
Keith Busch0e5e4f02012-11-09 16:33:05 -07002489 dev->oncs = le16_to_cpup(&ctrl->oncs);
Keith Buschc30341d2013-12-10 13:10:38 -07002490 dev->abort_limit = ctrl->acl + 1;
Keith Buscha7d2ce22014-04-29 11:41:28 -06002491 dev->vwc = ctrl->vwc;
Matthew Wilcox51814232011-02-01 16:18:08 -05002492 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
2493 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
2494 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Keith Busch159b67d2013-04-09 17:13:20 -06002495 if (ctrl->mdts)
Keith Busch8fc23e02012-07-26 11:29:57 -06002496 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
Matthew Wilcox68608c262013-06-21 14:36:34 -04002497 if ((pdev->vendor == PCI_VENDOR_ID_INTEL) &&
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002498 (pdev->device == 0x0953) && ctrl->vs[3]) {
2499 unsigned int max_hw_sectors;
2500
Keith Busch159b67d2013-04-09 17:13:20 -06002501 dev->stripe_size = 1 << (ctrl->vs[3] + shift);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002502 max_hw_sectors = dev->stripe_size >> (shift - 9);
2503 if (dev->max_hw_sectors) {
2504 dev->max_hw_sectors = min(max_hw_sectors,
2505 dev->max_hw_sectors);
2506 } else
2507 dev->max_hw_sectors = max_hw_sectors;
2508 }
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002509 kfree(ctrl);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002510
Keith Buschffe77042015-06-08 10:08:15 -06002511 if (!dev->tagset.tags) {
2512 dev->tagset.ops = &nvme_mq_ops;
2513 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2514 dev->tagset.timeout = NVME_IO_TIMEOUT;
2515 dev->tagset.numa_node = dev_to_node(dev->dev);
2516 dev->tagset.queue_depth =
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002517 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
Keith Buschffe77042015-06-08 10:08:15 -06002518 dev->tagset.cmd_size = nvme_cmd_size(dev);
2519 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2520 dev->tagset.driver_data = dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002521
Keith Buschffe77042015-06-08 10:08:15 -06002522 if (blk_mq_alloc_tag_set(&dev->tagset))
2523 return 0;
2524 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002525 schedule_work(&dev->scan_work);
Keith Busche1e5e562015-02-19 13:39:03 -07002526 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002527}
2528
Keith Busch0877cb02013-07-15 15:02:19 -06002529static int nvme_dev_map(struct nvme_dev *dev)
2530{
Keith Busch42f61422014-03-24 10:46:25 -06002531 u64 cap;
Keith Busch0877cb02013-07-15 15:02:19 -06002532 int bars, result = -ENOMEM;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002533 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002534
2535 if (pci_enable_device_mem(pdev))
2536 return result;
2537
2538 dev->entry[0].vector = pdev->irq;
2539 pci_set_master(pdev);
2540 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Jens Axboebe7837e2014-11-14 09:50:19 -07002541 if (!bars)
2542 goto disable_pci;
2543
Keith Busch0877cb02013-07-15 15:02:19 -06002544 if (pci_request_selected_regions(pdev, bars, "nvme"))
2545 goto disable_pci;
2546
Christoph Hellwige75ec752015-05-22 11:12:39 +02002547 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
2548 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
Russell King052d0ef2013-06-26 23:49:11 +01002549 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06002550
Keith Busch0877cb02013-07-15 15:02:19 -06002551 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
2552 if (!dev->bar)
2553 goto disable;
Jens Axboee32efbf2014-11-14 09:49:26 -07002554
Keith Busch0e53d182013-12-10 13:10:39 -07002555 if (readl(&dev->bar->csts) == -1) {
2556 result = -ENODEV;
2557 goto unmap;
2558 }
Jens Axboee32efbf2014-11-14 09:49:26 -07002559
2560 /*
2561 * Some devices don't advertse INTx interrupts, pre-enable a single
2562 * MSIX vec for setup. We'll adjust this later.
2563 */
2564 if (!pdev->irq) {
2565 result = pci_enable_msix(pdev, dev->entry, 1);
2566 if (result < 0)
2567 goto unmap;
2568 }
2569
Keith Busch42f61422014-03-24 10:46:25 -06002570 cap = readq(&dev->bar->cap);
2571 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
2572 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
Keith Busch0877cb02013-07-15 15:02:19 -06002573 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002574 if (readl(&dev->bar->vs) >= NVME_VS(1, 2))
2575 dev->cmb = nvme_map_cmb(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002576
2577 return 0;
2578
Keith Busch0e53d182013-12-10 13:10:39 -07002579 unmap:
2580 iounmap(dev->bar);
2581 dev->bar = NULL;
Keith Busch0877cb02013-07-15 15:02:19 -06002582 disable:
2583 pci_release_regions(pdev);
2584 disable_pci:
2585 pci_disable_device(pdev);
2586 return result;
2587}
2588
2589static void nvme_dev_unmap(struct nvme_dev *dev)
2590{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002591 struct pci_dev *pdev = to_pci_dev(dev->dev);
2592
2593 if (pdev->msi_enabled)
2594 pci_disable_msi(pdev);
2595 else if (pdev->msix_enabled)
2596 pci_disable_msix(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002597
2598 if (dev->bar) {
2599 iounmap(dev->bar);
2600 dev->bar = NULL;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002601 pci_release_regions(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002602 }
2603
Christoph Hellwige75ec752015-05-22 11:12:39 +02002604 if (pci_is_enabled(pdev))
2605 pci_disable_device(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002606}
2607
Keith Busch4d115422013-12-10 13:10:40 -07002608struct nvme_delq_ctx {
2609 struct task_struct *waiter;
2610 struct kthread_worker *worker;
2611 atomic_t refcount;
2612};
2613
2614static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev)
2615{
2616 dq->waiter = current;
2617 mb();
2618
2619 for (;;) {
2620 set_current_state(TASK_KILLABLE);
2621 if (!atomic_read(&dq->refcount))
2622 break;
2623 if (!schedule_timeout(ADMIN_TIMEOUT) ||
2624 fatal_signal_pending(current)) {
Keith Busch0fb59cb2015-01-07 18:55:50 -07002625 /*
2626 * Disable the controller first since we can't trust it
2627 * at this point, but leave the admin queue enabled
2628 * until all queue deletion requests are flushed.
2629 * FIXME: This may take a while if there are more h/w
2630 * queues than admin tags.
2631 */
Keith Busch4d115422013-12-10 13:10:40 -07002632 set_current_state(TASK_RUNNING);
Keith Busch4d115422013-12-10 13:10:40 -07002633 nvme_disable_ctrl(dev, readq(&dev->bar->cap));
Keith Busch0fb59cb2015-01-07 18:55:50 -07002634 nvme_clear_queue(dev->queues[0]);
Keith Busch4d115422013-12-10 13:10:40 -07002635 flush_kthread_worker(dq->worker);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002636 nvme_disable_queue(dev, 0);
Keith Busch4d115422013-12-10 13:10:40 -07002637 return;
2638 }
2639 }
2640 set_current_state(TASK_RUNNING);
2641}
2642
2643static void nvme_put_dq(struct nvme_delq_ctx *dq)
2644{
2645 atomic_dec(&dq->refcount);
2646 if (dq->waiter)
2647 wake_up_process(dq->waiter);
2648}
2649
2650static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq)
2651{
2652 atomic_inc(&dq->refcount);
2653 return dq;
2654}
2655
2656static void nvme_del_queue_end(struct nvme_queue *nvmeq)
2657{
2658 struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx;
Keith Busch4d115422013-12-10 13:10:40 -07002659 nvme_put_dq(dq);
2660}
2661
2662static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode,
2663 kthread_work_func_t fn)
2664{
2665 struct nvme_command c;
2666
2667 memset(&c, 0, sizeof(c));
2668 c.delete_queue.opcode = opcode;
2669 c.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2670
2671 init_kthread_work(&nvmeq->cmdinfo.work, fn);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002672 return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo,
2673 ADMIN_TIMEOUT);
Keith Busch4d115422013-12-10 13:10:40 -07002674}
2675
2676static void nvme_del_cq_work_handler(struct kthread_work *work)
2677{
2678 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2679 cmdinfo.work);
2680 nvme_del_queue_end(nvmeq);
2681}
2682
2683static int nvme_delete_cq(struct nvme_queue *nvmeq)
2684{
2685 return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq,
2686 nvme_del_cq_work_handler);
2687}
2688
2689static void nvme_del_sq_work_handler(struct kthread_work *work)
2690{
2691 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2692 cmdinfo.work);
2693 int status = nvmeq->cmdinfo.status;
2694
2695 if (!status)
2696 status = nvme_delete_cq(nvmeq);
2697 if (status)
2698 nvme_del_queue_end(nvmeq);
2699}
2700
2701static int nvme_delete_sq(struct nvme_queue *nvmeq)
2702{
2703 return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq,
2704 nvme_del_sq_work_handler);
2705}
2706
2707static void nvme_del_queue_start(struct kthread_work *work)
2708{
2709 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2710 cmdinfo.work);
Keith Busch4d115422013-12-10 13:10:40 -07002711 if (nvme_delete_sq(nvmeq))
2712 nvme_del_queue_end(nvmeq);
2713}
2714
2715static void nvme_disable_io_queues(struct nvme_dev *dev)
2716{
2717 int i;
2718 DEFINE_KTHREAD_WORKER_ONSTACK(worker);
2719 struct nvme_delq_ctx dq;
2720 struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
2721 &worker, "nvme%d", dev->instance);
2722
2723 if (IS_ERR(kworker_task)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002724 dev_err(dev->dev,
Keith Busch4d115422013-12-10 13:10:40 -07002725 "Failed to create queue del task\n");
2726 for (i = dev->queue_count - 1; i > 0; i--)
2727 nvme_disable_queue(dev, i);
2728 return;
2729 }
2730
2731 dq.waiter = NULL;
2732 atomic_set(&dq.refcount, 0);
2733 dq.worker = &worker;
2734 for (i = dev->queue_count - 1; i > 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002735 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002736
2737 if (nvme_suspend_queue(nvmeq))
2738 continue;
2739 nvmeq->cmdinfo.ctx = nvme_get_dq(&dq);
2740 nvmeq->cmdinfo.worker = dq.worker;
2741 init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start);
2742 queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work);
2743 }
2744 nvme_wait_dq(&dq, dev);
2745 kthread_stop(kworker_task);
2746}
2747
Dan McLeranb9afca32014-04-07 17:10:11 -06002748/*
2749* Remove the node from the device list and check
2750* for whether or not we need to stop the nvme_thread.
2751*/
2752static void nvme_dev_list_remove(struct nvme_dev *dev)
2753{
2754 struct task_struct *tmp = NULL;
2755
2756 spin_lock(&dev_list_lock);
2757 list_del_init(&dev->node);
2758 if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) {
2759 tmp = nvme_thread;
2760 nvme_thread = NULL;
2761 }
2762 spin_unlock(&dev_list_lock);
2763
2764 if (tmp)
2765 kthread_stop(tmp);
2766}
2767
Keith Buschc9d3bf82015-01-07 18:55:52 -07002768static void nvme_freeze_queues(struct nvme_dev *dev)
2769{
2770 struct nvme_ns *ns;
2771
2772 list_for_each_entry(ns, &dev->namespaces, list) {
2773 blk_mq_freeze_queue_start(ns->queue);
2774
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002775 spin_lock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002776 queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue);
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002777 spin_unlock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002778
2779 blk_mq_cancel_requeue_work(ns->queue);
2780 blk_mq_stop_hw_queues(ns->queue);
2781 }
2782}
2783
2784static void nvme_unfreeze_queues(struct nvme_dev *dev)
2785{
2786 struct nvme_ns *ns;
2787
2788 list_for_each_entry(ns, &dev->namespaces, list) {
2789 queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue);
2790 blk_mq_unfreeze_queue(ns->queue);
2791 blk_mq_start_stopped_hw_queues(ns->queue, true);
2792 blk_mq_kick_requeue_list(ns->queue);
2793 }
2794}
2795
Keith Buschf0b50732013-07-15 15:02:21 -06002796static void nvme_dev_shutdown(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002797{
Keith Busch22404272013-07-15 15:02:20 -06002798 int i;
Keith Busch7c1b2452014-06-25 11:18:12 -06002799 u32 csts = -1;
Keith Busch22404272013-07-15 15:02:20 -06002800
Dan McLeranb9afca32014-04-07 17:10:11 -06002801 nvme_dev_list_remove(dev);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002802
Keith Buschc9d3bf82015-01-07 18:55:52 -07002803 if (dev->bar) {
2804 nvme_freeze_queues(dev);
Keith Busch7c1b2452014-06-25 11:18:12 -06002805 csts = readl(&dev->bar->csts);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002806 }
Keith Busch7c1b2452014-06-25 11:18:12 -06002807 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
Keith Busch4d115422013-12-10 13:10:40 -07002808 for (i = dev->queue_count - 1; i >= 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002809 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002810 nvme_suspend_queue(nvmeq);
Keith Busch4d115422013-12-10 13:10:40 -07002811 }
2812 } else {
2813 nvme_disable_io_queues(dev);
Keith Busch1894d8f2013-07-15 15:02:22 -06002814 nvme_shutdown_ctrl(dev);
Keith Busch4d115422013-12-10 13:10:40 -07002815 nvme_disable_queue(dev, 0);
2816 }
Keith Buschf0b50732013-07-15 15:02:21 -06002817 nvme_dev_unmap(dev);
Keith Busch07836e62015-02-19 10:34:48 -07002818
2819 for (i = dev->queue_count - 1; i >= 0; i--)
2820 nvme_clear_queue(dev->queues[i]);
Keith Buschf0b50732013-07-15 15:02:21 -06002821}
2822
2823static void nvme_dev_remove(struct nvme_dev *dev)
2824{
Keith Busch5105aa52015-10-02 10:37:28 -06002825 struct nvme_ns *ns, *next;
Keith Buschf0b50732013-07-15 15:02:21 -06002826
Keith Busch5105aa52015-10-02 10:37:28 -06002827 list_for_each_entry_safe(ns, next, &dev->namespaces, list)
Keith Buscha5768aa2015-06-01 14:28:14 -06002828 nvme_ns_remove(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002829}
2830
Matthew Wilcox091b6092011-02-10 09:56:01 -05002831static int nvme_setup_prp_pools(struct nvme_dev *dev)
2832{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002833 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
Matthew Wilcox091b6092011-02-10 09:56:01 -05002834 PAGE_SIZE, PAGE_SIZE, 0);
2835 if (!dev->prp_page_pool)
2836 return -ENOMEM;
2837
Matthew Wilcox99802a72011-02-10 10:30:34 -05002838 /* Optimisation for I/Os between 4k and 128k */
Christoph Hellwige75ec752015-05-22 11:12:39 +02002839 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
Matthew Wilcox99802a72011-02-10 10:30:34 -05002840 256, 256, 0);
2841 if (!dev->prp_small_pool) {
2842 dma_pool_destroy(dev->prp_page_pool);
2843 return -ENOMEM;
2844 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002845 return 0;
2846}
2847
2848static void nvme_release_prp_pools(struct nvme_dev *dev)
2849{
2850 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002851 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002852}
2853
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002854static DEFINE_IDA(nvme_instance_ida);
2855
2856static int nvme_set_instance(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002857{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002858 int instance, error;
2859
2860 do {
2861 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
2862 return -ENODEV;
2863
2864 spin_lock(&dev_list_lock);
2865 error = ida_get_new(&nvme_instance_ida, &instance);
2866 spin_unlock(&dev_list_lock);
2867 } while (error == -EAGAIN);
2868
2869 if (error)
2870 return -ENODEV;
2871
2872 dev->instance = instance;
2873 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002874}
2875
2876static void nvme_release_instance(struct nvme_dev *dev)
2877{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002878 spin_lock(&dev_list_lock);
2879 ida_remove(&nvme_instance_ida, dev->instance);
2880 spin_unlock(&dev_list_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002881}
2882
Keith Busch5e82e952013-02-19 10:17:58 -07002883static void nvme_free_dev(struct kref *kref)
2884{
2885 struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref);
Keith Busch9ac27092014-01-31 16:53:39 -07002886
Christoph Hellwige75ec752015-05-22 11:12:39 +02002887 put_device(dev->dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07002888 put_device(dev->device);
Indraneel M285dffc2014-12-11 08:24:18 -07002889 nvme_release_instance(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06002890 if (dev->tagset.tags)
2891 blk_mq_free_tag_set(&dev->tagset);
2892 if (dev->admin_q)
2893 blk_put_queue(dev->admin_q);
Keith Busch5e82e952013-02-19 10:17:58 -07002894 kfree(dev->queues);
2895 kfree(dev->entry);
2896 kfree(dev);
2897}
2898
2899static int nvme_dev_open(struct inode *inode, struct file *f)
2900{
Keith Buschb3fffde2015-02-03 11:21:42 -07002901 struct nvme_dev *dev;
2902 int instance = iminor(inode);
2903 int ret = -ENODEV;
2904
2905 spin_lock(&dev_list_lock);
2906 list_for_each_entry(dev, &dev_list, node) {
2907 if (dev->instance == instance) {
Keith Busch2e1d8442015-02-12 15:33:00 -07002908 if (!dev->admin_q) {
2909 ret = -EWOULDBLOCK;
2910 break;
2911 }
Keith Buschb3fffde2015-02-03 11:21:42 -07002912 if (!kref_get_unless_zero(&dev->kref))
2913 break;
2914 f->private_data = dev;
2915 ret = 0;
2916 break;
2917 }
2918 }
2919 spin_unlock(&dev_list_lock);
2920
2921 return ret;
Keith Busch5e82e952013-02-19 10:17:58 -07002922}
2923
2924static int nvme_dev_release(struct inode *inode, struct file *f)
2925{
2926 struct nvme_dev *dev = f->private_data;
2927 kref_put(&dev->kref, nvme_free_dev);
2928 return 0;
2929}
2930
2931static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
2932{
2933 struct nvme_dev *dev = f->private_data;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002934 struct nvme_ns *ns;
2935
Keith Busch5e82e952013-02-19 10:17:58 -07002936 switch (cmd) {
2937 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002938 return nvme_user_cmd(dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06002939 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002940 if (list_empty(&dev->namespaces))
2941 return -ENOTTY;
2942 ns = list_first_entry(&dev->namespaces, struct nvme_ns, list);
2943 return nvme_user_cmd(dev, ns, (void __user *)arg);
Keith Busch4cc06522015-06-05 10:30:08 -06002944 case NVME_IOCTL_RESET:
2945 dev_warn(dev->dev, "resetting controller\n");
2946 return nvme_reset(dev);
Jon Derrick81f03fe2015-08-10 15:20:41 -06002947 case NVME_IOCTL_SUBSYS_RESET:
2948 return nvme_subsys_reset(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07002949 default:
2950 return -ENOTTY;
2951 }
2952}
2953
2954static const struct file_operations nvme_dev_fops = {
2955 .owner = THIS_MODULE,
2956 .open = nvme_dev_open,
2957 .release = nvme_dev_release,
2958 .unlocked_ioctl = nvme_dev_ioctl,
2959 .compat_ioctl = nvme_dev_ioctl,
2960};
2961
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002962static void nvme_probe_work(struct work_struct *work)
Keith Buschf0b50732013-07-15 15:02:21 -06002963{
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002964 struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work);
Dan McLeranb9afca32014-04-07 17:10:11 -06002965 bool start_thread = false;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002966 int result;
Keith Buschf0b50732013-07-15 15:02:21 -06002967
2968 result = nvme_dev_map(dev);
2969 if (result)
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002970 goto out;
Keith Buschf0b50732013-07-15 15:02:21 -06002971
2972 result = nvme_configure_admin_queue(dev);
2973 if (result)
2974 goto unmap;
2975
2976 spin_lock(&dev_list_lock);
Dan McLeranb9afca32014-04-07 17:10:11 -06002977 if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) {
2978 start_thread = true;
2979 nvme_thread = NULL;
2980 }
Keith Buschf0b50732013-07-15 15:02:21 -06002981 list_add(&dev->node, &dev_list);
2982 spin_unlock(&dev_list_lock);
2983
Dan McLeranb9afca32014-04-07 17:10:11 -06002984 if (start_thread) {
2985 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
Keith Busch387caa52014-09-22 13:46:19 -06002986 wake_up_all(&nvme_kthread_wait);
Dan McLeranb9afca32014-04-07 17:10:11 -06002987 } else
2988 wait_event_killable(nvme_kthread_wait, nvme_thread);
2989
2990 if (IS_ERR_OR_NULL(nvme_thread)) {
2991 result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR;
2992 goto disable;
2993 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002994
2995 nvme_init_queue(dev->queues[0], 0);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002996 result = nvme_alloc_admin_tags(dev);
2997 if (result)
2998 goto disable;
Dan McLeranb9afca32014-04-07 17:10:11 -06002999
Keith Buschf0b50732013-07-15 15:02:21 -06003000 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06003001 if (result)
Keith Busch0fb59cb2015-01-07 18:55:50 -07003002 goto free_tags;
Keith Buschf0b50732013-07-15 15:02:21 -06003003
Keith Busch1efccc92015-03-31 10:37:17 -06003004 dev->event_limit = 1;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003005
Christoph Hellwig2659e572015-10-02 18:51:31 +02003006 /*
3007 * Keep the controller around but remove all namespaces if we don't have
3008 * any working I/O queue.
3009 */
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003010 if (dev->online_queues < 2) {
3011 dev_warn(dev->dev, "IO queues not created\n");
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003012 nvme_dev_remove(dev);
3013 } else {
3014 nvme_unfreeze_queues(dev);
3015 nvme_dev_add(dev);
3016 }
3017
3018 return;
Keith Buschf0b50732013-07-15 15:02:21 -06003019
Keith Busch0fb59cb2015-01-07 18:55:50 -07003020 free_tags:
3021 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06003022 blk_put_queue(dev->admin_q);
3023 dev->admin_q = NULL;
3024 dev->queues[0]->tags = NULL;
Keith Buschf0b50732013-07-15 15:02:21 -06003025 disable:
Keith Buscha1a5ef92013-12-16 13:50:00 -05003026 nvme_disable_queue(dev, 0);
Dan McLeranb9afca32014-04-07 17:10:11 -06003027 nvme_dev_list_remove(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003028 unmap:
3029 nvme_dev_unmap(dev);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003030 out:
3031 if (!work_busy(&dev->reset_work))
3032 nvme_dead_ctrl(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003033}
3034
Keith Busch9a6b9452013-12-10 13:10:36 -07003035static int nvme_remove_dead_ctrl(void *arg)
3036{
3037 struct nvme_dev *dev = (struct nvme_dev *)arg;
Christoph Hellwige75ec752015-05-22 11:12:39 +02003038 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003039
3040 if (pci_get_drvdata(pdev))
Keith Buschc81f4972014-06-23 15:24:53 -06003041 pci_stop_and_remove_bus_device_locked(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003042 kref_put(&dev->kref, nvme_free_dev);
3043 return 0;
3044}
3045
Keith Buschde3eff22015-06-18 13:36:39 -06003046static void nvme_dead_ctrl(struct nvme_dev *dev)
3047{
3048 dev_warn(dev->dev, "Device failed to resume\n");
3049 kref_get(&dev->kref);
3050 if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
3051 dev->instance))) {
3052 dev_err(dev->dev,
3053 "Failed to start controller remove task\n");
3054 kref_put(&dev->kref, nvme_free_dev);
3055 }
3056}
3057
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003058static void nvme_reset_work(struct work_struct *ws)
Keith Busch9a6b9452013-12-10 13:10:36 -07003059{
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003060 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003061 bool in_probe = work_busy(&dev->probe_work);
3062
Keith Busch9a6b9452013-12-10 13:10:36 -07003063 nvme_dev_shutdown(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003064
3065 /* Synchronize with device probe so that work will see failure status
3066 * and exit gracefully without trying to schedule another reset */
3067 flush_work(&dev->probe_work);
3068
3069 /* Fail this device if reset occured during probe to avoid
3070 * infinite initialization loops. */
3071 if (in_probe) {
Keith Buschde3eff22015-06-18 13:36:39 -06003072 nvme_dead_ctrl(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003073 return;
Keith Busch9a6b9452013-12-10 13:10:36 -07003074 }
Keith Buschffe77042015-06-08 10:08:15 -06003075 /* Schedule device resume asynchronously so the reset work is available
3076 * to cleanup errors that may occur during reinitialization */
3077 schedule_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003078}
3079
Christoph Hellwig906678922015-10-02 18:49:23 +02003080static int __nvme_reset(struct nvme_dev *dev)
3081{
3082 if (work_pending(&dev->reset_work))
3083 return -EBUSY;
3084 list_del_init(&dev->node);
3085 queue_work(nvme_workq, &dev->reset_work);
3086 return 0;
3087}
3088
Keith Busch4cc06522015-06-05 10:30:08 -06003089static int nvme_reset(struct nvme_dev *dev)
3090{
Christoph Hellwig906678922015-10-02 18:49:23 +02003091 int ret;
Keith Busch4cc06522015-06-05 10:30:08 -06003092
3093 if (!dev->admin_q || blk_queue_dying(dev->admin_q))
3094 return -ENODEV;
3095
3096 spin_lock(&dev_list_lock);
Christoph Hellwig906678922015-10-02 18:49:23 +02003097 ret = __nvme_reset(dev);
Keith Busch4cc06522015-06-05 10:30:08 -06003098 spin_unlock(&dev_list_lock);
3099
3100 if (!ret) {
3101 flush_work(&dev->reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003102 flush_work(&dev->probe_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003103 return 0;
3104 }
3105
3106 return ret;
3107}
3108
3109static ssize_t nvme_sysfs_reset(struct device *dev,
3110 struct device_attribute *attr, const char *buf,
3111 size_t count)
3112{
3113 struct nvme_dev *ndev = dev_get_drvdata(dev);
3114 int ret;
3115
3116 ret = nvme_reset(ndev);
3117 if (ret < 0)
3118 return ret;
3119
3120 return count;
3121}
3122static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
3123
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003124static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003125{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003126 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003127 struct nvme_dev *dev;
3128
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003129 node = dev_to_node(&pdev->dev);
3130 if (node == NUMA_NO_NODE)
3131 set_dev_node(&pdev->dev, 0);
3132
3133 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003134 if (!dev)
3135 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003136 dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry),
3137 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003138 if (!dev->entry)
3139 goto free;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003140 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
3141 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003142 if (!dev->queues)
3143 goto free;
3144
3145 INIT_LIST_HEAD(&dev->namespaces);
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003146 INIT_WORK(&dev->reset_work, nvme_reset_work);
Christoph Hellwige75ec752015-05-22 11:12:39 +02003147 dev->dev = get_device(&pdev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003148 pci_set_drvdata(pdev, dev);
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07003149 result = nvme_set_instance(dev);
3150 if (result)
Keith Buscha96d4f52014-08-19 19:15:59 -06003151 goto put_pci;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003152
Matthew Wilcox091b6092011-02-10 09:56:01 -05003153 result = nvme_setup_prp_pools(dev);
3154 if (result)
Keith Busch0877cb02013-07-15 15:02:19 -06003155 goto release;
Matthew Wilcox091b6092011-02-10 09:56:01 -05003156
Keith Buschfb35e912014-03-03 11:09:47 -07003157 kref_init(&dev->kref);
Keith Buschb3fffde2015-02-03 11:21:42 -07003158 dev->device = device_create(nvme_class, &pdev->dev,
3159 MKDEV(nvme_char_major, dev->instance),
3160 dev, "nvme%d", dev->instance);
3161 if (IS_ERR(dev->device)) {
3162 result = PTR_ERR(dev->device);
Keith Busch2e1d8442015-02-12 15:33:00 -07003163 goto release_pools;
Keith Buschb3fffde2015-02-03 11:21:42 -07003164 }
3165 get_device(dev->device);
Keith Busch4cc06522015-06-05 10:30:08 -06003166 dev_set_drvdata(dev->device, dev);
3167
3168 result = device_create_file(dev->device, &dev_attr_reset_controller);
3169 if (result)
3170 goto put_dev;
Keith Buschb3fffde2015-02-03 11:21:42 -07003171
Keith Busche6e96d72015-03-23 09:32:37 -06003172 INIT_LIST_HEAD(&dev->node);
Keith Buscha5768aa2015-06-01 14:28:14 -06003173 INIT_WORK(&dev->scan_work, nvme_dev_scan);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003174 INIT_WORK(&dev->probe_work, nvme_probe_work);
Keith Busch2e1d8442015-02-12 15:33:00 -07003175 schedule_work(&dev->probe_work);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003176 return 0;
3177
Keith Busch4cc06522015-06-05 10:30:08 -06003178 put_dev:
3179 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
3180 put_device(dev->device);
Keith Busch0877cb02013-07-15 15:02:19 -06003181 release_pools:
Matthew Wilcox091b6092011-02-10 09:56:01 -05003182 nvme_release_prp_pools(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06003183 release:
3184 nvme_release_instance(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06003185 put_pci:
Christoph Hellwige75ec752015-05-22 11:12:39 +02003186 put_device(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003187 free:
3188 kfree(dev->queues);
3189 kfree(dev->entry);
3190 kfree(dev);
3191 return result;
3192}
3193
Keith Buschf0d54a52014-05-02 10:40:43 -06003194static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
3195{
Keith Buscha6739472014-06-23 16:03:21 -06003196 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buschf0d54a52014-05-02 10:40:43 -06003197
Keith Buscha6739472014-06-23 16:03:21 -06003198 if (prepare)
3199 nvme_dev_shutdown(dev);
3200 else
Keith Busch0a7385a2015-10-02 10:37:29 -06003201 schedule_work(&dev->probe_work);
Keith Buschf0d54a52014-05-02 10:40:43 -06003202}
3203
Keith Busch09ece142014-01-27 11:29:40 -05003204static void nvme_shutdown(struct pci_dev *pdev)
3205{
3206 struct nvme_dev *dev = pci_get_drvdata(pdev);
3207 nvme_dev_shutdown(dev);
3208}
3209
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003210static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003211{
3212 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003213
3214 spin_lock(&dev_list_lock);
3215 list_del_init(&dev->node);
3216 spin_unlock(&dev_list_lock);
3217
3218 pci_set_drvdata(pdev, NULL);
Keith Busch2e1d8442015-02-12 15:33:00 -07003219 flush_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003220 flush_work(&dev->reset_work);
Keith Buscha5768aa2015-06-01 14:28:14 -06003221 flush_work(&dev->scan_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003222 device_remove_file(dev->device, &dev_attr_reset_controller);
Keith Buschc9d3bf82015-01-07 18:55:52 -07003223 nvme_dev_remove(dev);
Keith Busch3399a3f2015-06-18 13:36:40 -06003224 nvme_dev_shutdown(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003225 nvme_dev_remove_admin(dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07003226 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003227 nvme_free_queues(dev, 0);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06003228 nvme_release_cmb(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003229 nvme_release_prp_pools(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003230 kref_put(&dev->kref, nvme_free_dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003231}
3232
3233/* These functions are yet to be implemented */
3234#define nvme_error_detected NULL
3235#define nvme_dump_registers NULL
3236#define nvme_link_reset NULL
3237#define nvme_slot_reset NULL
3238#define nvme_error_resume NULL
Keith Buschcd638942013-07-15 15:02:23 -06003239
Jingoo Han671a6012014-02-13 11:19:14 +09003240#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06003241static int nvme_suspend(struct device *dev)
3242{
3243 struct pci_dev *pdev = to_pci_dev(dev);
3244 struct nvme_dev *ndev = pci_get_drvdata(pdev);
3245
3246 nvme_dev_shutdown(ndev);
3247 return 0;
3248}
3249
3250static int nvme_resume(struct device *dev)
3251{
3252 struct pci_dev *pdev = to_pci_dev(dev);
3253 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06003254
Keith Busch0a7385a2015-10-02 10:37:29 -06003255 schedule_work(&ndev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003256 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06003257}
Jingoo Han671a6012014-02-13 11:19:14 +09003258#endif
Keith Buschcd638942013-07-15 15:02:23 -06003259
3260static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003261
Stephen Hemminger1d352032012-09-07 09:33:17 -07003262static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003263 .error_detected = nvme_error_detected,
3264 .mmio_enabled = nvme_dump_registers,
3265 .link_reset = nvme_link_reset,
3266 .slot_reset = nvme_slot_reset,
3267 .resume = nvme_error_resume,
Keith Buschf0d54a52014-05-02 10:40:43 -06003268 .reset_notify = nvme_reset_notify,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003269};
3270
3271/* Move to pci_ids.h later */
3272#define PCI_CLASS_STORAGE_EXPRESS 0x010802
3273
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003274static const struct pci_device_id nvme_id_table[] = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003275 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
3276 { 0, }
3277};
3278MODULE_DEVICE_TABLE(pci, nvme_id_table);
3279
3280static struct pci_driver nvme_driver = {
3281 .name = "nvme",
3282 .id_table = nvme_id_table,
3283 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003284 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05003285 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06003286 .driver = {
3287 .pm = &nvme_dev_pm_ops,
3288 },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003289 .err_handler = &nvme_err_handler,
3290};
3291
3292static int __init nvme_init(void)
3293{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003294 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003295
Dan McLeranb9afca32014-04-07 17:10:11 -06003296 init_waitqueue_head(&nvme_kthread_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003297
Keith Busch9a6b9452013-12-10 13:10:36 -07003298 nvme_workq = create_singlethread_workqueue("nvme");
3299 if (!nvme_workq)
Dan McLeranb9afca32014-04-07 17:10:11 -06003300 return -ENOMEM;
Keith Busch9a6b9452013-12-10 13:10:36 -07003301
Keith Busch5c42ea12012-07-25 16:05:18 -06003302 result = register_blkdev(nvme_major, "nvme");
3303 if (result < 0)
Keith Busch9a6b9452013-12-10 13:10:36 -07003304 goto kill_workq;
Keith Busch5c42ea12012-07-25 16:05:18 -06003305 else if (result > 0)
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003306 nvme_major = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003307
Keith Buschb3fffde2015-02-03 11:21:42 -07003308 result = __register_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme",
3309 &nvme_dev_fops);
3310 if (result < 0)
3311 goto unregister_blkdev;
3312 else if (result > 0)
3313 nvme_char_major = result;
3314
3315 nvme_class = class_create(THIS_MODULE, "nvme");
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003316 if (IS_ERR(nvme_class)) {
3317 result = PTR_ERR(nvme_class);
Keith Buschb3fffde2015-02-03 11:21:42 -07003318 goto unregister_chrdev;
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003319 }
Keith Buschb3fffde2015-02-03 11:21:42 -07003320
Keith Buschf3db22f2014-06-11 11:51:35 -06003321 result = pci_register_driver(&nvme_driver);
3322 if (result)
Keith Buschb3fffde2015-02-03 11:21:42 -07003323 goto destroy_class;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003324 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003325
Keith Buschb3fffde2015-02-03 11:21:42 -07003326 destroy_class:
3327 class_destroy(nvme_class);
3328 unregister_chrdev:
3329 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003330 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003331 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003332 kill_workq:
3333 destroy_workqueue(nvme_workq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003334 return result;
3335}
3336
3337static void __exit nvme_exit(void)
3338{
3339 pci_unregister_driver(&nvme_driver);
3340 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003341 destroy_workqueue(nvme_workq);
Keith Buschb3fffde2015-02-03 11:21:42 -07003342 class_destroy(nvme_class);
3343 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Dan McLeranb9afca32014-04-07 17:10:11 -06003344 BUG_ON(nvme_thread && !IS_ERR(nvme_thread));
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04003345 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003346}
3347
3348MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
3349MODULE_LICENSE("GPL");
Keith Buschc78b47132014-11-21 15:16:32 -07003350MODULE_VERSION("1.0");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003351module_init(nvme_init);
3352module_exit(nvme_exit);