blob: 61cfff34c3b867379feb571d2f656ae24761895b [file] [log] [blame]
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001/*
2 * NVM Express device driver
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003 * Copyright (c) 2011-2014, Intel Corporation.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050013 */
14
15#include <linux/nvme.h>
Matthew Wilcox8de05532011-05-12 13:50:28 -040016#include <linux/bitops.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050017#include <linux/blkdev.h>
Matias Bjørlinga4aea562014-11-04 08:20:14 -070018#include <linux/blk-mq.h>
Keith Busch42f61422014-03-24 10:46:25 -060019#include <linux/cpu.h>
Matthew Wilcoxfd63e9ce2011-05-06 08:37:54 -040020#include <linux/delay.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050021#include <linux/errno.h>
22#include <linux/fs.h>
23#include <linux/genhd.h>
Keith Busch4cc09e22014-04-02 15:45:37 -060024#include <linux/hdreg.h>
Matthew Wilcox5aff9382011-05-06 08:45:47 -040025#include <linux/idr.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050026#include <linux/init.h>
27#include <linux/interrupt.h>
28#include <linux/io.h>
29#include <linux/kdev_t.h>
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050030#include <linux/kthread.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050031#include <linux/kernel.h>
Keith Buscha5768aa2015-06-01 14:28:14 -060032#include <linux/list_sort.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050033#include <linux/mm.h>
34#include <linux/module.h>
35#include <linux/moduleparam.h>
36#include <linux/pci.h>
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -050037#include <linux/poison.h>
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -040038#include <linux/ptrace.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050039#include <linux/sched.h>
40#include <linux/slab.h>
Keith Busche1e5e562015-02-19 13:39:03 -070041#include <linux/t10-pi.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050042#include <linux/types.h>
Vishal Verma5d0f6132013-03-04 18:40:58 -070043#include <scsi/sg.h>
Hitoshi Mitake797a7962012-02-07 11:45:33 +090044#include <asm-generic/io-64-nonatomic-lo-hi.h>
45
Keith Buschb3fffde2015-02-03 11:21:42 -070046#define NVME_MINORS (1U << MINORBITS)
Keith Busch9d43cf62014-05-13 11:42:02 -060047#define NVME_Q_DEPTH 1024
Jens Axboed31af0a2015-03-06 12:56:13 -070048#define NVME_AQ_DEPTH 256
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050049#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
50#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
Keith Busch9d43cf62014-05-13 11:42:02 -060051#define ADMIN_TIMEOUT (admin_timeout * HZ)
Dan McLeran2484f402014-07-01 09:33:32 -060052#define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050053
Keith Busch9d43cf62014-05-13 11:42:02 -060054static unsigned char admin_timeout = 60;
55module_param(admin_timeout, byte, 0644);
56MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050057
Matthew Wilcoxbd676082014-06-03 23:04:30 -040058unsigned char nvme_io_timeout = 30;
59module_param_named(io_timeout, nvme_io_timeout, byte, 0644);
Keith Buschb3550842014-04-04 11:43:36 -060060MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050061
Dan McLeran2484f402014-07-01 09:33:32 -060062static unsigned char shutdown_timeout = 5;
63module_param(shutdown_timeout, byte, 0644);
64MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
65
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050066static int nvme_major;
67module_param(nvme_major, int, 0);
68
Keith Buschb3fffde2015-02-03 11:21:42 -070069static int nvme_char_major;
70module_param(nvme_char_major, int, 0);
71
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050072static int use_threaded_interrupts;
73module_param(use_threaded_interrupts, int, 0);
74
Jon Derrick8ffaadf2015-07-20 10:14:09 -060075static bool use_cmb_sqes = true;
76module_param(use_cmb_sqes, bool, 0644);
77MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
78
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050079static DEFINE_SPINLOCK(dev_list_lock);
80static LIST_HEAD(dev_list);
81static struct task_struct *nvme_thread;
Keith Busch9a6b9452013-12-10 13:10:36 -070082static struct workqueue_struct *nvme_workq;
Dan McLeranb9afca32014-04-07 17:10:11 -060083static wait_queue_head_t nvme_kthread_wait;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050084
Keith Buschb3fffde2015-02-03 11:21:42 -070085static struct class *nvme_class;
86
Christoph Hellwig906678922015-10-02 18:49:23 +020087static int __nvme_reset(struct nvme_dev *dev);
Keith Busch4cc06522015-06-05 10:30:08 -060088static int nvme_reset(struct nvme_dev *dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -070089static int nvme_process_cq(struct nvme_queue *nvmeq);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +020090static void nvme_dead_ctrl(struct nvme_dev *dev);
Keith Buschd4b4ff82013-12-10 13:10:37 -070091
Keith Busch4d115422013-12-10 13:10:40 -070092struct async_cmd_info {
93 struct kthread_work work;
94 struct kthread_worker *worker;
Matias Bjørlinga4aea562014-11-04 08:20:14 -070095 struct request *req;
Keith Busch4d115422013-12-10 13:10:40 -070096 u32 result;
97 int status;
98 void *ctx;
99};
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500100
101/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500102 * An NVM Express queue. Each device has at least two (one for admin
103 * commands and one for I/O commands).
104 */
105struct nvme_queue {
106 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500107 struct nvme_dev *dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -0500108 char irqname[24]; /* nvme4294967295-65535\0 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500109 spinlock_t q_lock;
110 struct nvme_command *sq_cmds;
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600111 struct nvme_command __iomem *sq_cmds_io;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500112 volatile struct nvme_completion *cqes;
Keith Busch42483222015-06-01 09:29:54 -0600113 struct blk_mq_tags **tags;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500114 dma_addr_t sq_dma_addr;
115 dma_addr_t cq_dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500116 u32 __iomem *q_db;
117 u16 q_depth;
Jens Axboe6222d172015-01-15 15:19:10 -0700118 s16 cq_vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500119 u16 sq_head;
120 u16 sq_tail;
121 u16 cq_head;
Keith Buschc30341d2013-12-10 13:10:38 -0700122 u16 qid;
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400123 u8 cq_phase;
124 u8 cqe_seen;
Keith Busch4d115422013-12-10 13:10:40 -0700125 struct async_cmd_info cmdinfo;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500126};
127
128/*
129 * Check we didin't inadvertently grow the command struct
130 */
131static inline void _nvme_check_size(void)
132{
133 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
134 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
135 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
136 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
137 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
Vishal Vermaf8ebf842013-03-27 07:13:41 -0400138 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
Keith Buschc30341d2013-12-10 13:10:38 -0700139 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500140 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
141 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
142 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
143 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
Keith Busch6ecec742012-09-26 12:49:27 -0600144 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500145}
146
Keith Buschedd10d32014-04-03 16:45:23 -0600147typedef void (*nvme_completion_fn)(struct nvme_queue *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400148 struct nvme_completion *);
149
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500150struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400151 nvme_completion_fn fn;
152 void *ctx;
Keith Buschc30341d2013-12-10 13:10:38 -0700153 int aborted;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700154 struct nvme_queue *nvmeq;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700155 struct nvme_iod iod[0];
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500156};
157
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700158/*
159 * Max size of iod being embedded in the request payload
160 */
161#define NVME_INT_PAGES 2
162#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->page_size)
Chong Yuanfda631f2015-03-27 09:21:32 +0800163#define NVME_INT_MASK 0x01
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700164
165/*
166 * Will slightly overestimate the number of pages needed. This is OK
167 * as it only leads to a small amount of wasted memory for the lifetime of
168 * the I/O.
169 */
170static int nvme_npages(unsigned size, struct nvme_dev *dev)
171{
172 unsigned nprps = DIV_ROUND_UP(size + dev->page_size, dev->page_size);
173 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
174}
175
176static unsigned int nvme_cmd_size(struct nvme_dev *dev)
177{
178 unsigned int ret = sizeof(struct nvme_cmd_info);
179
180 ret += sizeof(struct nvme_iod);
181 ret += sizeof(__le64 *) * nvme_npages(NVME_INT_BYTES(dev), dev);
182 ret += sizeof(struct scatterlist) * NVME_INT_PAGES;
183
184 return ret;
185}
186
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700187static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
188 unsigned int hctx_idx)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500189{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700190 struct nvme_dev *dev = data;
191 struct nvme_queue *nvmeq = dev->queues[0];
192
Keith Busch42483222015-06-01 09:29:54 -0600193 WARN_ON(hctx_idx != 0);
194 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
195 WARN_ON(nvmeq->tags);
196
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700197 hctx->driver_data = nvmeq;
Keith Busch42483222015-06-01 09:29:54 -0600198 nvmeq->tags = &dev->admin_tagset.tags[0];
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700199 return 0;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500200}
201
Keith Busch4af0e212015-06-08 10:08:13 -0600202static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
203{
204 struct nvme_queue *nvmeq = hctx->driver_data;
205
206 nvmeq->tags = NULL;
207}
208
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700209static int nvme_admin_init_request(void *data, struct request *req,
210 unsigned int hctx_idx, unsigned int rq_idx,
211 unsigned int numa_node)
Keith Busch22404272013-07-15 15:02:20 -0600212{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700213 struct nvme_dev *dev = data;
214 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
215 struct nvme_queue *nvmeq = dev->queues[0];
216
217 BUG_ON(!nvmeq);
218 cmd->nvmeq = nvmeq;
219 return 0;
Keith Busch22404272013-07-15 15:02:20 -0600220}
221
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700222static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
223 unsigned int hctx_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500224{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700225 struct nvme_dev *dev = data;
Keith Busch42483222015-06-01 09:29:54 -0600226 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500227
Keith Busch42483222015-06-01 09:29:54 -0600228 if (!nvmeq->tags)
229 nvmeq->tags = &dev->tagset.tags[hctx_idx];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500230
Keith Busch42483222015-06-01 09:29:54 -0600231 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700232 hctx->driver_data = nvmeq;
233 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500234}
235
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700236static int nvme_init_request(void *data, struct request *req,
237 unsigned int hctx_idx, unsigned int rq_idx,
238 unsigned int numa_node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500239{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700240 struct nvme_dev *dev = data;
241 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
242 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
243
244 BUG_ON(!nvmeq);
245 cmd->nvmeq = nvmeq;
246 return 0;
247}
248
249static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx,
250 nvme_completion_fn handler)
251{
252 cmd->fn = handler;
253 cmd->ctx = ctx;
254 cmd->aborted = 0;
Keith Buschc917dfe2015-01-07 18:55:48 -0700255 blk_mq_start_request(blk_mq_rq_from_pdu(cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500256}
257
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700258static void *iod_get_private(struct nvme_iod *iod)
259{
260 return (void *) (iod->private & ~0x1UL);
261}
262
263/*
264 * If bit 0 is set, the iod is embedded in the request payload.
265 */
266static bool iod_should_kfree(struct nvme_iod *iod)
267{
Chong Yuanfda631f2015-03-27 09:21:32 +0800268 return (iod->private & NVME_INT_MASK) == 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700269}
270
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400271/* Special values must be less than 0x1000 */
272#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500273#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
274#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
275#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500276
Keith Buschedd10d32014-04-03 16:45:23 -0600277static void special_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400278 struct nvme_completion *cqe)
279{
280 if (ctx == CMD_CTX_CANCELLED)
281 return;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400282 if (ctx == CMD_CTX_COMPLETED) {
Keith Buschedd10d32014-04-03 16:45:23 -0600283 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400284 "completed id %d twice on queue %d\n",
285 cqe->command_id, le16_to_cpup(&cqe->sq_id));
286 return;
287 }
288 if (ctx == CMD_CTX_INVALID) {
Keith Buschedd10d32014-04-03 16:45:23 -0600289 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400290 "invalid id %d completed on queue %d\n",
291 cqe->command_id, le16_to_cpup(&cqe->sq_id));
292 return;
293 }
Keith Buschedd10d32014-04-03 16:45:23 -0600294 dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400295}
296
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700297static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn)
298{
299 void *ctx;
300
301 if (fn)
302 *fn = cmd->fn;
303 ctx = cmd->ctx;
304 cmd->fn = special_completion;
305 cmd->ctx = CMD_CTX_CANCELLED;
306 return ctx;
307}
308
309static void async_req_completion(struct nvme_queue *nvmeq, void *ctx,
310 struct nvme_completion *cqe)
311{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700312 u32 result = le32_to_cpup(&cqe->result);
313 u16 status = le16_to_cpup(&cqe->status) >> 1;
314
315 if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ)
316 ++nvmeq->dev->event_limit;
Keith Buscha5768aa2015-06-01 14:28:14 -0600317 if (status != NVME_SC_SUCCESS)
318 return;
319
320 switch (result & 0xff07) {
321 case NVME_AER_NOTICE_NS_CHANGED:
322 dev_info(nvmeq->q_dmadev, "rescanning\n");
323 schedule_work(&nvmeq->dev->scan_work);
324 default:
325 dev_warn(nvmeq->q_dmadev, "async event result %08x\n", result);
326 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700327}
328
329static void abort_completion(struct nvme_queue *nvmeq, void *ctx,
330 struct nvme_completion *cqe)
331{
332 struct request *req = ctx;
333
334 u16 status = le16_to_cpup(&cqe->status) >> 1;
335 u32 result = le32_to_cpup(&cqe->result);
336
Keith Busch42483222015-06-01 09:29:54 -0600337 blk_mq_free_request(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700338
339 dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result);
340 ++nvmeq->dev->abort_limit;
341}
342
Keith Buschedd10d32014-04-03 16:45:23 -0600343static void async_completion(struct nvme_queue *nvmeq, void *ctx,
Keith Busch4d115422013-12-10 13:10:40 -0700344 struct nvme_completion *cqe)
345{
346 struct async_cmd_info *cmdinfo = ctx;
347 cmdinfo->result = le32_to_cpup(&cqe->result);
348 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
349 queue_kthread_work(cmdinfo->worker, &cmdinfo->work);
Keith Busch42483222015-06-01 09:29:54 -0600350 blk_mq_free_request(cmdinfo->req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700351}
352
353static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq,
354 unsigned int tag)
355{
Keith Busch42483222015-06-01 09:29:54 -0600356 struct request *req = blk_mq_tag_to_rq(*nvmeq->tags, tag);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700357
358 return blk_mq_rq_to_pdu(req);
Keith Busch4d115422013-12-10 13:10:40 -0700359}
360
Matthew Wilcox184d2942011-05-11 21:36:38 -0400361/*
362 * Called with local interrupts disabled and the q_lock held. May not sleep.
363 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700364static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400365 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500366{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700367 struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400368 void *ctx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700369 if (tag >= nvmeq->q_depth) {
370 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500371 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400372 }
Keith Busch859361a2012-08-02 14:05:59 -0600373 if (fn)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700374 *fn = cmd->fn;
375 ctx = cmd->ctx;
376 cmd->fn = special_completion;
377 cmd->ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400378 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500379}
380
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500381/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400382 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500383 * @nvmeq: The queue to use
384 * @cmd: The command to send
385 *
386 * Safe to use from interrupt context
387 */
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530388static void __nvme_submit_cmd(struct nvme_queue *nvmeq,
389 struct nvme_command *cmd)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500390{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700391 u16 tail = nvmeq->sq_tail;
392
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600393 if (nvmeq->sq_cmds_io)
394 memcpy_toio(&nvmeq->sq_cmds_io[tail], cmd, sizeof(*cmd));
395 else
396 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
397
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500398 if (++tail == nvmeq->q_depth)
399 tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500400 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500401 nvmeq->sq_tail = tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500402}
403
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530404static void nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700405{
406 unsigned long flags;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700407 spin_lock_irqsave(&nvmeq->q_lock, flags);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530408 __nvme_submit_cmd(nvmeq, cmd);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700409 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700410}
411
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500412static __le64 **iod_list(struct nvme_iod *iod)
413{
414 return ((void *)iod) + iod->offset;
415}
416
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700417static inline void iod_init(struct nvme_iod *iod, unsigned nbytes,
418 unsigned nseg, unsigned long private)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500419{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700420 iod->private = private;
421 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
422 iod->npages = -1;
423 iod->length = nbytes;
424 iod->nents = 0;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500425}
426
427static struct nvme_iod *
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700428__nvme_alloc_iod(unsigned nseg, unsigned bytes, struct nvme_dev *dev,
429 unsigned long priv, gfp_t gfp)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500430{
431 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700432 sizeof(__le64 *) * nvme_npages(bytes, dev) +
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500433 sizeof(struct scatterlist) * nseg, gfp);
434
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700435 if (iod)
436 iod_init(iod, bytes, nseg, priv);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500437
438 return iod;
439}
440
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700441static struct nvme_iod *nvme_alloc_iod(struct request *rq, struct nvme_dev *dev,
442 gfp_t gfp)
443{
444 unsigned size = !(rq->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(rq) :
445 sizeof(struct nvme_dsm_range);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700446 struct nvme_iod *iod;
447
448 if (rq->nr_phys_segments <= NVME_INT_PAGES &&
449 size <= NVME_INT_BYTES(dev)) {
450 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(rq);
451
452 iod = cmd->iod;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700453 iod_init(iod, size, rq->nr_phys_segments,
Chong Yuanfda631f2015-03-27 09:21:32 +0800454 (unsigned long) rq | NVME_INT_MASK);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700455 return iod;
456 }
457
458 return __nvme_alloc_iod(rq->nr_phys_segments, size, dev,
459 (unsigned long) rq, gfp);
460}
461
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200462static void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500463{
Keith Busch1d090622014-06-23 11:34:01 -0600464 const int last_prp = dev->page_size / 8 - 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500465 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500466 __le64 **list = iod_list(iod);
467 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500468
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500469 if (iod->npages == 0)
470 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
471 for (i = 0; i < iod->npages; i++) {
472 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500473 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500474 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500475 prp_dma = next_prp_dma;
476 }
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700477
478 if (iod_should_kfree(iod))
479 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500480}
481
Keith Buschb4ff9c82014-08-29 09:06:12 -0600482static int nvme_error_status(u16 status)
483{
484 switch (status & 0x7ff) {
485 case NVME_SC_SUCCESS:
486 return 0;
487 case NVME_SC_CAP_EXCEEDED:
488 return -ENOSPC;
489 default:
490 return -EIO;
491 }
492}
493
Keith Busch52b68d72015-02-23 09:16:21 -0700494#ifdef CONFIG_BLK_DEV_INTEGRITY
Keith Busche1e5e562015-02-19 13:39:03 -0700495static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
496{
497 if (be32_to_cpu(pi->ref_tag) == v)
498 pi->ref_tag = cpu_to_be32(p);
499}
500
501static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
502{
503 if (be32_to_cpu(pi->ref_tag) == p)
504 pi->ref_tag = cpu_to_be32(v);
505}
506
507/**
508 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
509 *
510 * The virtual start sector is the one that was originally submitted by the
511 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
512 * start sector may be different. Remap protection information to match the
513 * physical LBA on writes, and back to the original seed on reads.
514 *
515 * Type 0 and 3 do not have a ref tag, so no remapping required.
516 */
517static void nvme_dif_remap(struct request *req,
518 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
519{
520 struct nvme_ns *ns = req->rq_disk->private_data;
521 struct bio_integrity_payload *bip;
522 struct t10_pi_tuple *pi;
523 void *p, *pmap;
524 u32 i, nlb, ts, phys, virt;
525
526 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
527 return;
528
529 bip = bio_integrity(req->bio);
530 if (!bip)
531 return;
532
533 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
Keith Busche1e5e562015-02-19 13:39:03 -0700534
535 p = pmap;
536 virt = bip_get_seed(bip);
537 phys = nvme_block_nr(ns, blk_rq_pos(req));
538 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
539 ts = ns->disk->integrity->tuple_size;
540
541 for (i = 0; i < nlb; i++, virt++, phys++) {
542 pi = (struct t10_pi_tuple *)p;
543 dif_swap(phys, virt, pi);
544 p += ts;
545 }
546 kunmap_atomic(pmap);
547}
548
Keith Busch52b68d72015-02-23 09:16:21 -0700549static int nvme_noop_verify(struct blk_integrity_iter *iter)
550{
551 return 0;
552}
553
554static int nvme_noop_generate(struct blk_integrity_iter *iter)
555{
556 return 0;
557}
558
559struct blk_integrity nvme_meta_noop = {
560 .name = "NVME_META_NOOP",
561 .generate_fn = nvme_noop_generate,
562 .verify_fn = nvme_noop_verify,
563};
564
565static void nvme_init_integrity(struct nvme_ns *ns)
566{
567 struct blk_integrity integrity;
568
569 switch (ns->pi_type) {
570 case NVME_NS_DPS_PI_TYPE3:
571 integrity = t10_pi_type3_crc;
572 break;
573 case NVME_NS_DPS_PI_TYPE1:
574 case NVME_NS_DPS_PI_TYPE2:
575 integrity = t10_pi_type1_crc;
576 break;
577 default:
578 integrity = nvme_meta_noop;
579 break;
580 }
581 integrity.tuple_size = ns->ms;
582 blk_integrity_register(ns->disk, &integrity);
583 blk_queue_max_integrity_segments(ns->queue, 1);
584}
585#else /* CONFIG_BLK_DEV_INTEGRITY */
586static void nvme_dif_remap(struct request *req,
587 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
588{
589}
590static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
591{
592}
593static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
594{
595}
596static void nvme_init_integrity(struct nvme_ns *ns)
597{
598}
599#endif
600
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700601static void req_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500602 struct nvme_completion *cqe)
603{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500604 struct nvme_iod *iod = ctx;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700605 struct request *req = iod_get_private(iod);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700606 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
607
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500608 u16 status = le16_to_cpup(&cqe->status) >> 1;
609
Keith Buschedd10d32014-04-03 16:45:23 -0600610 if (unlikely(status)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700611 if (!(status & NVME_SC_DNR || blk_noretry_request(req))
612 && (jiffies - req->start_time) < req->timeout) {
Keith Buschc9d3bf82015-01-07 18:55:52 -0700613 unsigned long flags;
614
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700615 blk_mq_requeue_request(req);
Keith Buschc9d3bf82015-01-07 18:55:52 -0700616 spin_lock_irqsave(req->q->queue_lock, flags);
617 if (!blk_queue_stopped(req->q))
618 blk_mq_kick_requeue_list(req->q);
619 spin_unlock_irqrestore(req->q->queue_lock, flags);
Keith Buschedd10d32014-04-03 16:45:23 -0600620 return;
621 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200622
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200623 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
Keith Busch17188bb2015-06-08 10:08:14 -0600624 if (cmd_rq->ctx == CMD_CTX_CANCELLED)
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200625 status = -EINTR;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200626 } else {
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200627 status = nvme_error_status(status);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200628 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200629 }
630
Keith Buscha0a931d2015-05-22 12:28:31 -0600631 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
632 u32 result = le32_to_cpup(&cqe->result);
633 req->special = (void *)(uintptr_t)result;
634 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700635
636 if (cmd_rq->aborted)
Christoph Hellwige75ec752015-05-22 11:12:39 +0200637 dev_warn(nvmeq->dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700638 "completing aborted command with status:%04x\n",
639 status);
640
Keith Busche1e5e562015-02-19 13:39:03 -0700641 if (iod->nents) {
Christoph Hellwige75ec752015-05-22 11:12:39 +0200642 dma_unmap_sg(nvmeq->dev->dev, iod->sg, iod->nents,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700643 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Keith Busche1e5e562015-02-19 13:39:03 -0700644 if (blk_integrity_rq(req)) {
645 if (!rq_data_dir(req))
646 nvme_dif_remap(req, nvme_dif_complete);
Christoph Hellwige75ec752015-05-22 11:12:39 +0200647 dma_unmap_sg(nvmeq->dev->dev, iod->meta_sg, 1,
Keith Busche1e5e562015-02-19 13:39:03 -0700648 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
649 }
650 }
Keith Buschedd10d32014-04-03 16:45:23 -0600651 nvme_free_iod(nvmeq->dev, iod);
Keith Busch3291fa52014-04-28 12:30:52 -0600652
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200653 blk_mq_complete_request(req, status);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500654}
655
Matthew Wilcox184d2942011-05-11 21:36:38 -0400656/* length is in bytes. gfp flags indicates whether we may sleep. */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200657static int nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod,
658 int total_len, gfp_t gfp)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500659{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500660 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500661 int length = total_len;
662 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500663 int dma_len = sg_dma_len(sg);
664 u64 dma_addr = sg_dma_address(sg);
Murali Iyerf137e0f2015-03-26 11:07:51 -0500665 u32 page_size = dev->page_size;
666 int offset = dma_addr & (page_size - 1);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500667 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500668 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500669 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500670 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500671
Keith Busch1d090622014-06-23 11:34:01 -0600672 length -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500673 if (length <= 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500674 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500675
Keith Busch1d090622014-06-23 11:34:01 -0600676 dma_len -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500677 if (dma_len) {
Keith Busch1d090622014-06-23 11:34:01 -0600678 dma_addr += (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500679 } else {
680 sg = sg_next(sg);
681 dma_addr = sg_dma_address(sg);
682 dma_len = sg_dma_len(sg);
683 }
684
Keith Busch1d090622014-06-23 11:34:01 -0600685 if (length <= page_size) {
Keith Buschedd10d32014-04-03 16:45:23 -0600686 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500687 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500688 }
689
Keith Busch1d090622014-06-23 11:34:01 -0600690 nprps = DIV_ROUND_UP(length, page_size);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500691 if (nprps <= (256 / 8)) {
692 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500693 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500694 } else {
695 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500696 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500697 }
698
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400699 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
700 if (!prp_list) {
Keith Buschedd10d32014-04-03 16:45:23 -0600701 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500702 iod->npages = -1;
Keith Busch1d090622014-06-23 11:34:01 -0600703 return (total_len - length) + page_size;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400704 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500705 list[0] = prp_list;
706 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500707 i = 0;
708 for (;;) {
Keith Busch1d090622014-06-23 11:34:01 -0600709 if (i == page_size >> 3) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500710 __le64 *old_prp_list = prp_list;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400711 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500712 if (!prp_list)
713 return total_len - length;
714 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400715 prp_list[0] = old_prp_list[i - 1];
716 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
717 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500718 }
719 prp_list[i++] = cpu_to_le64(dma_addr);
Keith Busch1d090622014-06-23 11:34:01 -0600720 dma_len -= page_size;
721 dma_addr += page_size;
722 length -= page_size;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500723 if (length <= 0)
724 break;
725 if (dma_len > 0)
726 continue;
727 BUG_ON(dma_len < 0);
728 sg = sg_next(sg);
729 dma_addr = sg_dma_address(sg);
730 dma_len = sg_dma_len(sg);
731 }
732
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500733 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500734}
735
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200736static void nvme_submit_priv(struct nvme_queue *nvmeq, struct request *req,
737 struct nvme_iod *iod)
738{
Jon Derrick498c4392015-07-20 10:14:08 -0600739 struct nvme_command cmnd;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200740
Jon Derrick498c4392015-07-20 10:14:08 -0600741 memcpy(&cmnd, req->cmd, sizeof(cmnd));
742 cmnd.rw.command_id = req->tag;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200743 if (req->nr_phys_segments) {
Jon Derrick498c4392015-07-20 10:14:08 -0600744 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
745 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200746 }
747
Jon Derrick498c4392015-07-20 10:14:08 -0600748 __nvme_submit_cmd(nvmeq, &cmnd);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200749}
750
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700751/*
752 * We reuse the small pool to allocate the 16-byte range here as it is not
753 * worth having a special pool for these or additional cases to handle freeing
754 * the iod.
755 */
756static void nvme_submit_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns,
757 struct request *req, struct nvme_iod *iod)
Keith Busch0e5e4f02012-11-09 16:33:05 -0700758{
Keith Buschedd10d32014-04-03 16:45:23 -0600759 struct nvme_dsm_range *range =
760 (struct nvme_dsm_range *)iod_list(iod)[0];
Jon Derrick498c4392015-07-20 10:14:08 -0600761 struct nvme_command cmnd;
Keith Busch0e5e4f02012-11-09 16:33:05 -0700762
Keith Busch0e5e4f02012-11-09 16:33:05 -0700763 range->cattr = cpu_to_le32(0);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700764 range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift);
765 range->slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
Keith Busch0e5e4f02012-11-09 16:33:05 -0700766
Jon Derrick498c4392015-07-20 10:14:08 -0600767 memset(&cmnd, 0, sizeof(cmnd));
768 cmnd.dsm.opcode = nvme_cmd_dsm;
769 cmnd.dsm.command_id = req->tag;
770 cmnd.dsm.nsid = cpu_to_le32(ns->ns_id);
771 cmnd.dsm.prp1 = cpu_to_le64(iod->first_dma);
772 cmnd.dsm.nr = 0;
773 cmnd.dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700774
Jon Derrick498c4392015-07-20 10:14:08 -0600775 __nvme_submit_cmd(nvmeq, &cmnd);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700776}
777
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700778static void nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500779 int cmdid)
780{
Jon Derrick498c4392015-07-20 10:14:08 -0600781 struct nvme_command cmnd;
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500782
Jon Derrick498c4392015-07-20 10:14:08 -0600783 memset(&cmnd, 0, sizeof(cmnd));
784 cmnd.common.opcode = nvme_cmd_flush;
785 cmnd.common.command_id = cmdid;
786 cmnd.common.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500787
Jon Derrick498c4392015-07-20 10:14:08 -0600788 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500789}
790
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700791static int nvme_submit_iod(struct nvme_queue *nvmeq, struct nvme_iod *iod,
792 struct nvme_ns *ns)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500793{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700794 struct request *req = iod_get_private(iod);
Jon Derrick498c4392015-07-20 10:14:08 -0600795 struct nvme_command cmnd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700796 u16 control = 0;
797 u32 dsmgmt = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500798
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700799 if (req->cmd_flags & REQ_FUA)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500800 control |= NVME_RW_FUA;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700801 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500802 control |= NVME_RW_LR;
803
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700804 if (req->cmd_flags & REQ_RAHEAD)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500805 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
806
Jon Derrick498c4392015-07-20 10:14:08 -0600807 memset(&cmnd, 0, sizeof(cmnd));
808 cmnd.rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
809 cmnd.rw.command_id = req->tag;
810 cmnd.rw.nsid = cpu_to_le32(ns->ns_id);
811 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
812 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
813 cmnd.rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
814 cmnd.rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500815
Alok Pandeye19b1272015-08-26 08:56:14 -0600816 if (ns->ms) {
Keith Busche1e5e562015-02-19 13:39:03 -0700817 switch (ns->pi_type) {
818 case NVME_NS_DPS_PI_TYPE3:
819 control |= NVME_RW_PRINFO_PRCHK_GUARD;
820 break;
821 case NVME_NS_DPS_PI_TYPE1:
822 case NVME_NS_DPS_PI_TYPE2:
823 control |= NVME_RW_PRINFO_PRCHK_GUARD |
824 NVME_RW_PRINFO_PRCHK_REF;
Jon Derrick498c4392015-07-20 10:14:08 -0600825 cmnd.rw.reftag = cpu_to_le32(
Keith Busche1e5e562015-02-19 13:39:03 -0700826 nvme_block_nr(ns, blk_rq_pos(req)));
827 break;
828 }
Alok Pandeye19b1272015-08-26 08:56:14 -0600829 if (blk_integrity_rq(req))
830 cmnd.rw.metadata =
831 cpu_to_le64(sg_dma_address(iod->meta_sg));
832 else
833 control |= NVME_RW_PRINFO_PRACT;
834 }
Keith Busche1e5e562015-02-19 13:39:03 -0700835
Jon Derrick498c4392015-07-20 10:14:08 -0600836 cmnd.rw.control = cpu_to_le16(control);
837 cmnd.rw.dsmgmt = cpu_to_le32(dsmgmt);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500838
Jon Derrick498c4392015-07-20 10:14:08 -0600839 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500840
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500841 return 0;
Keith Buschedd10d32014-04-03 16:45:23 -0600842}
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500843
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200844/*
845 * NOTE: ns is NULL when called on the admin queue.
846 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700847static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
848 const struct blk_mq_queue_data *bd)
Keith Busch53562be2014-04-29 11:41:29 -0600849{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700850 struct nvme_ns *ns = hctx->queue->queuedata;
851 struct nvme_queue *nvmeq = hctx->driver_data;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200852 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700853 struct request *req = bd->rq;
854 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
Keith Buschedd10d32014-04-03 16:45:23 -0600855 struct nvme_iod *iod;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700856 enum dma_data_direction dma_dir;
Keith Buschedd10d32014-04-03 16:45:23 -0600857
Keith Busche1e5e562015-02-19 13:39:03 -0700858 /*
859 * If formated with metadata, require the block layer provide a buffer
860 * unless this namespace is formated such that the metadata can be
861 * stripped/generated by the controller with PRACT=1.
862 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200863 if (ns && ns->ms && !blk_integrity_rq(req)) {
Keith Busch71feb362015-06-19 11:07:30 -0600864 if (!(ns->pi_type && ns->ms == 8) &&
865 req->cmd_type != REQ_TYPE_DRV_PRIV) {
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200866 blk_mq_complete_request(req, -EFAULT);
Keith Busche1e5e562015-02-19 13:39:03 -0700867 return BLK_MQ_RQ_QUEUE_OK;
868 }
869 }
870
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200871 iod = nvme_alloc_iod(req, dev, GFP_ATOMIC);
Keith Buschedd10d32014-04-03 16:45:23 -0600872 if (!iod)
Jens Axboefe543032014-12-11 13:58:39 -0700873 return BLK_MQ_RQ_QUEUE_BUSY;
Keith Buschedd10d32014-04-03 16:45:23 -0600874
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700875 if (req->cmd_flags & REQ_DISCARD) {
Keith Buschedd10d32014-04-03 16:45:23 -0600876 void *range;
877 /*
878 * We reuse the small pool to allocate the 16-byte range here
879 * as it is not worth having a special pool for these or
880 * additional cases to handle freeing the iod.
881 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200882 range = dma_pool_alloc(dev->prp_small_pool, GFP_ATOMIC,
Keith Buschedd10d32014-04-03 16:45:23 -0600883 &iod->first_dma);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700884 if (!range)
Jens Axboefe543032014-12-11 13:58:39 -0700885 goto retry_cmd;
Keith Buschedd10d32014-04-03 16:45:23 -0600886 iod_list(iod)[0] = (__le64 *)range;
887 iod->npages = 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700888 } else if (req->nr_phys_segments) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700889 dma_dir = rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Keith Buschedd10d32014-04-03 16:45:23 -0600890
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700891 sg_init_table(iod->sg, req->nr_phys_segments);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700892 iod->nents = blk_rq_map_sg(req->q, req, iod->sg);
Jens Axboefe543032014-12-11 13:58:39 -0700893 if (!iod->nents)
894 goto error_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700895
896 if (!dma_map_sg(nvmeq->q_dmadev, iod->sg, iod->nents, dma_dir))
Jens Axboefe543032014-12-11 13:58:39 -0700897 goto retry_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700898
Jens Axboefe543032014-12-11 13:58:39 -0700899 if (blk_rq_bytes(req) !=
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200900 nvme_setup_prps(dev, iod, blk_rq_bytes(req), GFP_ATOMIC)) {
901 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
Jens Axboefe543032014-12-11 13:58:39 -0700902 goto retry_cmd;
903 }
Keith Busche1e5e562015-02-19 13:39:03 -0700904 if (blk_integrity_rq(req)) {
905 if (blk_rq_count_integrity_sg(req->q, req->bio) != 1)
906 goto error_cmd;
907
908 sg_init_table(iod->meta_sg, 1);
909 if (blk_rq_map_integrity_sg(
910 req->q, req->bio, iod->meta_sg) != 1)
911 goto error_cmd;
912
913 if (rq_data_dir(req))
914 nvme_dif_remap(req, nvme_dif_prep);
915
916 if (!dma_map_sg(nvmeq->q_dmadev, iod->meta_sg, 1, dma_dir))
917 goto error_cmd;
918 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700919 }
920
Keith Busch9af87852014-12-03 17:07:13 -0700921 nvme_set_info(cmd, iod, req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700922 spin_lock_irq(&nvmeq->q_lock);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200923 if (req->cmd_type == REQ_TYPE_DRV_PRIV)
924 nvme_submit_priv(nvmeq, req, iod);
925 else if (req->cmd_flags & REQ_DISCARD)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700926 nvme_submit_discard(nvmeq, ns, req, iod);
927 else if (req->cmd_flags & REQ_FLUSH)
928 nvme_submit_flush(nvmeq, ns, req->tag);
929 else
930 nvme_submit_iod(nvmeq, iod, ns);
931
932 nvme_process_cq(nvmeq);
933 spin_unlock_irq(&nvmeq->q_lock);
934 return BLK_MQ_RQ_QUEUE_OK;
935
Jens Axboefe543032014-12-11 13:58:39 -0700936 error_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200937 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700938 return BLK_MQ_RQ_QUEUE_ERROR;
939 retry_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200940 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700941 return BLK_MQ_RQ_QUEUE_BUSY;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500942}
943
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400944static int nvme_process_cq(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500945{
Matthew Wilcox82123462011-01-20 13:24:06 -0500946 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500947
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500948 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500949 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500950
951 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400952 void *ctx;
953 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500954 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -0500955 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500956 break;
957 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
958 if (++head == nvmeq->q_depth) {
959 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500960 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500961 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700962 ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn);
Keith Buschedd10d32014-04-03 16:45:23 -0600963 fn(nvmeq, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500964 }
965
966 /* If the controller ignores the cq head doorbell and continuously
967 * writes to the queue, it is theoretically possible to wrap around
968 * the queue twice and mistakenly return IRQ_NONE. Linux only
969 * requires that 0.1% of your interrupts are handled, so this isn't
970 * a big problem.
971 */
Matthew Wilcox82123462011-01-20 13:24:06 -0500972 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400973 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500974
Haiyan Hub80d5cc2013-09-10 11:25:37 +0800975 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500976 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500977 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500978
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400979 nvmeq->cqe_seen = 1;
980 return 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500981}
982
983static irqreturn_t nvme_irq(int irq, void *data)
984{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500985 irqreturn_t result;
986 struct nvme_queue *nvmeq = data;
987 spin_lock(&nvmeq->q_lock);
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400988 nvme_process_cq(nvmeq);
989 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
990 nvmeq->cqe_seen = 0;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500991 spin_unlock(&nvmeq->q_lock);
992 return result;
993}
994
995static irqreturn_t nvme_irq_check(int irq, void *data)
996{
997 struct nvme_queue *nvmeq = data;
998 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
999 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
1000 return IRQ_NONE;
1001 return IRQ_WAKE_THREAD;
1002}
1003
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001004/*
1005 * Returns 0 on success. If the result is negative, it's a Linux error code;
1006 * if the result is positive, it's an NVM Express status code
1007 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001008int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1009 void *buffer, void __user *ubuffer, unsigned bufflen,
1010 u32 *result, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001011{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001012 bool write = cmd->common.opcode & 1;
1013 struct bio *bio = NULL;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001014 struct request *req;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001015 int ret;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001016
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001017 req = blk_mq_alloc_request(q, write, GFP_KERNEL, false);
Christoph Hellwigf705f832015-05-22 11:12:38 +02001018 if (IS_ERR(req))
1019 return PTR_ERR(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001020
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001021 req->cmd_type = REQ_TYPE_DRV_PRIV;
Matias Bjørlinge112af02015-06-05 14:54:24 +02001022 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001023 req->__data_len = 0;
1024 req->__sector = (sector_t) -1;
1025 req->bio = req->biotail = NULL;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001026
Keith Buschf4ff4142015-05-28 09:48:54 -06001027 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001028
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001029 req->cmd = (unsigned char *)cmd;
1030 req->cmd_len = sizeof(struct nvme_command);
Keith Buscha0a931d2015-05-22 12:28:31 -06001031 req->special = (void *)0;
Matthew Wilcox3c0cf132011-02-04 16:03:56 -05001032
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001033 if (buffer && bufflen) {
1034 ret = blk_rq_map_kern(q, req, buffer, bufflen, __GFP_WAIT);
1035 if (ret)
1036 goto out;
1037 } else if (ubuffer && bufflen) {
1038 ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen, __GFP_WAIT);
1039 if (ret)
1040 goto out;
1041 bio = req->bio;
1042 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001043
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001044 blk_execute_rq(req->q, NULL, req, 0);
1045 if (bio)
1046 blk_rq_unmap_user(bio);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001047 if (result)
Keith Buscha0a931d2015-05-22 12:28:31 -06001048 *result = (u32)(uintptr_t)req->special;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001049 ret = req->errors;
1050 out:
Christoph Hellwigf705f832015-05-22 11:12:38 +02001051 blk_mq_free_request(req);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001052 return ret;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001053}
1054
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001055int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1056 void *buffer, unsigned bufflen)
Christoph Hellwigf705f832015-05-22 11:12:38 +02001057{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001058 return __nvme_submit_sync_cmd(q, cmd, buffer, NULL, bufflen, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001059}
1060
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001061static int nvme_submit_async_admin_req(struct nvme_dev *dev)
1062{
1063 struct nvme_queue *nvmeq = dev->queues[0];
1064 struct nvme_command c;
1065 struct nvme_cmd_info *cmd_info;
1066 struct request *req;
1067
Keith Busch1efccc92015-03-31 10:37:17 -06001068 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC, true);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001069 if (IS_ERR(req))
1070 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001071
Keith Buschc917dfe2015-01-07 18:55:48 -07001072 req->cmd_flags |= REQ_NO_TIMEOUT;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001073 cmd_info = blk_mq_rq_to_pdu(req);
Keith Busch1efccc92015-03-31 10:37:17 -06001074 nvme_set_info(cmd_info, NULL, async_req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001075
1076 memset(&c, 0, sizeof(c));
1077 c.common.opcode = nvme_admin_async_event;
1078 c.common.command_id = req->tag;
1079
Keith Busch42483222015-06-01 09:29:54 -06001080 blk_mq_free_request(req);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301081 __nvme_submit_cmd(nvmeq, &c);
1082 return 0;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001083}
1084
1085static int nvme_submit_admin_async_cmd(struct nvme_dev *dev,
Keith Busch4d115422013-12-10 13:10:40 -07001086 struct nvme_command *cmd,
1087 struct async_cmd_info *cmdinfo, unsigned timeout)
1088{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001089 struct nvme_queue *nvmeq = dev->queues[0];
1090 struct request *req;
1091 struct nvme_cmd_info *cmd_rq;
Keith Busch4d115422013-12-10 13:10:40 -07001092
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001093 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001094 if (IS_ERR(req))
1095 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001096
1097 req->timeout = timeout;
1098 cmd_rq = blk_mq_rq_to_pdu(req);
1099 cmdinfo->req = req;
1100 nvme_set_info(cmd_rq, cmdinfo, async_completion);
Keith Busch4d115422013-12-10 13:10:40 -07001101 cmdinfo->status = -EINTR;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001102
1103 cmd->common.command_id = req->tag;
1104
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301105 nvme_submit_cmd(nvmeq, cmd);
1106 return 0;
Keith Busch4d115422013-12-10 13:10:40 -07001107}
1108
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001109static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
1110{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001111 struct nvme_command c;
1112
1113 memset(&c, 0, sizeof(c));
1114 c.delete_queue.opcode = opcode;
1115 c.delete_queue.qid = cpu_to_le16(id);
1116
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001117 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001118}
1119
1120static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
1121 struct nvme_queue *nvmeq)
1122{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001123 struct nvme_command c;
1124 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
1125
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001126 /*
1127 * Note: we (ab)use the fact the the prp fields survive if no data
1128 * is attached to the request.
1129 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001130 memset(&c, 0, sizeof(c));
1131 c.create_cq.opcode = nvme_admin_create_cq;
1132 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1133 c.create_cq.cqid = cpu_to_le16(qid);
1134 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1135 c.create_cq.cq_flags = cpu_to_le16(flags);
1136 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
1137
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001138 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001139}
1140
1141static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1142 struct nvme_queue *nvmeq)
1143{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001144 struct nvme_command c;
1145 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
1146
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001147 /*
1148 * Note: we (ab)use the fact the the prp fields survive if no data
1149 * is attached to the request.
1150 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001151 memset(&c, 0, sizeof(c));
1152 c.create_sq.opcode = nvme_admin_create_sq;
1153 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1154 c.create_sq.sqid = cpu_to_le16(qid);
1155 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1156 c.create_sq.sq_flags = cpu_to_le16(flags);
1157 c.create_sq.cqid = cpu_to_le16(qid);
1158
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001159 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001160}
1161
1162static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1163{
1164 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1165}
1166
1167static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1168{
1169 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1170}
1171
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001172int nvme_identify_ctrl(struct nvme_dev *dev, struct nvme_id_ctrl **id)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001173{
Andrew Mortone44ac582015-06-27 12:20:34 -06001174 struct nvme_command c = { };
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001175 int error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001176
Andrew Mortone44ac582015-06-27 12:20:34 -06001177 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1178 c.identify.opcode = nvme_admin_identify;
1179 c.identify.cns = cpu_to_le32(1);
1180
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001181 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
1182 if (!*id)
1183 return -ENOMEM;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001184
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001185 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1186 sizeof(struct nvme_id_ctrl));
1187 if (error)
1188 kfree(*id);
1189 return error;
1190}
1191
1192int nvme_identify_ns(struct nvme_dev *dev, unsigned nsid,
1193 struct nvme_id_ns **id)
1194{
Andrew Mortone44ac582015-06-27 12:20:34 -06001195 struct nvme_command c = { };
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001196 int error;
1197
Andrew Mortone44ac582015-06-27 12:20:34 -06001198 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1199 c.identify.opcode = nvme_admin_identify,
1200 c.identify.nsid = cpu_to_le32(nsid),
1201
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001202 *id = kmalloc(sizeof(struct nvme_id_ns), GFP_KERNEL);
1203 if (!*id)
1204 return -ENOMEM;
1205
1206 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1207 sizeof(struct nvme_id_ns));
1208 if (error)
1209 kfree(*id);
1210 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001211}
1212
Vishal Verma5d0f6132013-03-04 18:40:58 -07001213int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid,
Keith Busch08df1e02012-09-21 10:52:13 -06001214 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001215{
1216 struct nvme_command c;
1217
1218 memset(&c, 0, sizeof(c));
1219 c.features.opcode = nvme_admin_get_features;
Keith Buscha42cecc2012-07-25 16:06:38 -06001220 c.features.nsid = cpu_to_le32(nsid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001221 c.features.prp1 = cpu_to_le64(dma_addr);
1222 c.features.fid = cpu_to_le32(fid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001223
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001224 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1225 result, 0);
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001226}
1227
Vishal Verma5d0f6132013-03-04 18:40:58 -07001228int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11,
1229 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001230{
1231 struct nvme_command c;
1232
1233 memset(&c, 0, sizeof(c));
1234 c.features.opcode = nvme_admin_set_features;
1235 c.features.prp1 = cpu_to_le64(dma_addr);
1236 c.features.fid = cpu_to_le32(fid);
1237 c.features.dword11 = cpu_to_le32(dword11);
1238
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001239 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1240 result, 0);
1241}
1242
1243int nvme_get_log_page(struct nvme_dev *dev, struct nvme_smart_log **log)
1244{
Andrew Mortone44ac582015-06-27 12:20:34 -06001245 struct nvme_command c = { };
1246 int error;
1247
1248 c.common.opcode = nvme_admin_get_log_page,
1249 c.common.nsid = cpu_to_le32(0xFFFFFFFF),
1250 c.common.cdw10[0] = cpu_to_le32(
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001251 (((sizeof(struct nvme_smart_log) / 4) - 1) << 16) |
1252 NVME_LOG_SMART),
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001253
1254 *log = kmalloc(sizeof(struct nvme_smart_log), GFP_KERNEL);
1255 if (!*log)
1256 return -ENOMEM;
1257
1258 error = nvme_submit_sync_cmd(dev->admin_q, &c, *log,
1259 sizeof(struct nvme_smart_log));
1260 if (error)
1261 kfree(*log);
1262 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001263}
1264
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001265/**
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001266 * nvme_abort_req - Attempt aborting a request
Keith Buschc30341d2013-12-10 13:10:38 -07001267 *
1268 * Schedule controller reset if the command was already aborted once before and
1269 * still hasn't been returned to the driver, or if this is the admin queue.
1270 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001271static void nvme_abort_req(struct request *req)
Keith Buschc30341d2013-12-10 13:10:38 -07001272{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001273 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
1274 struct nvme_queue *nvmeq = cmd_rq->nvmeq;
Keith Buschc30341d2013-12-10 13:10:38 -07001275 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001276 struct request *abort_req;
1277 struct nvme_cmd_info *abort_cmd;
1278 struct nvme_command cmd;
Keith Buschc30341d2013-12-10 13:10:38 -07001279
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001280 if (!nvmeq->qid || cmd_rq->aborted) {
Christoph Hellwig906678922015-10-02 18:49:23 +02001281 spin_lock(&dev_list_lock);
1282 if (!__nvme_reset(dev)) {
1283 dev_warn(dev->dev,
1284 "I/O %d QID %d timeout, reset controller\n",
1285 req->tag, nvmeq->qid);
1286 }
1287 spin_unlock(&dev_list_lock);
Keith Buschc30341d2013-12-10 13:10:38 -07001288 return;
1289 }
1290
1291 if (!dev->abort_limit)
1292 return;
1293
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001294 abort_req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC,
1295 false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001296 if (IS_ERR(abort_req))
Keith Buschc30341d2013-12-10 13:10:38 -07001297 return;
1298
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001299 abort_cmd = blk_mq_rq_to_pdu(abort_req);
1300 nvme_set_info(abort_cmd, abort_req, abort_completion);
1301
Keith Buschc30341d2013-12-10 13:10:38 -07001302 memset(&cmd, 0, sizeof(cmd));
1303 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001304 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001305 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001306 cmd.abort.command_id = abort_req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001307
1308 --dev->abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001309 cmd_rq->aborted = 1;
Keith Buschc30341d2013-12-10 13:10:38 -07001310
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001311 dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag,
Keith Buschc30341d2013-12-10 13:10:38 -07001312 nvmeq->qid);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301313 nvme_submit_cmd(dev->queues[0], &cmd);
Keith Buschc30341d2013-12-10 13:10:38 -07001314}
1315
Keith Busch42483222015-06-01 09:29:54 -06001316static void nvme_cancel_queue_ios(struct request *req, void *data, bool reserved)
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001317{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001318 struct nvme_queue *nvmeq = data;
1319 void *ctx;
1320 nvme_completion_fn fn;
1321 struct nvme_cmd_info *cmd;
Keith Buschcef6a942015-01-07 18:55:51 -07001322 struct nvme_completion cqe;
1323
1324 if (!blk_mq_request_started(req))
1325 return;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001326
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001327 cmd = blk_mq_rq_to_pdu(req);
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001328
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001329 if (cmd->ctx == CMD_CTX_CANCELLED)
1330 return;
1331
Keith Buschcef6a942015-01-07 18:55:51 -07001332 if (blk_queue_dying(req->q))
1333 cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1);
1334 else
1335 cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
1336
1337
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001338 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n",
1339 req->tag, nvmeq->qid);
1340 ctx = cancel_cmd_info(cmd, &fn);
1341 fn(nvmeq, ctx, &cqe);
1342}
1343
1344static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1345{
1346 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
1347 struct nvme_queue *nvmeq = cmd->nvmeq;
1348
Keith Busch07836e62015-02-19 10:34:48 -07001349 dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag,
1350 nvmeq->qid);
1351 spin_lock_irq(&nvmeq->q_lock);
1352 nvme_abort_req(req);
1353 spin_unlock_irq(&nvmeq->q_lock);
1354
Keith Busch7a509a62015-01-07 18:55:53 -07001355 /*
1356 * The aborted req will be completed on receiving the abort req.
1357 * We enable the timer again. If hit twice, it'll cause a device reset,
1358 * as the device then is in a faulty state.
1359 */
Keith Busch07836e62015-02-19 10:34:48 -07001360 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001361}
1362
Keith Buschf435c282014-07-07 09:14:42 -06001363static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001364{
1365 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1366 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001367 if (nvmeq->sq_cmds)
1368 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
Matthew Wilcox9e866772012-08-03 13:55:56 -04001369 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1370 kfree(nvmeq);
1371}
1372
Keith Buscha1a5ef92013-12-16 13:50:00 -05001373static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001374{
1375 int i;
1376
Keith Buscha1a5ef92013-12-16 13:50:00 -05001377 for (i = dev->queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001378 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch22404272013-07-15 15:02:20 -06001379 dev->queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001380 dev->queues[i] = NULL;
Keith Buschf435c282014-07-07 09:14:42 -06001381 nvme_free_queue(nvmeq);
kaoudis121c7ad2015-01-14 21:01:58 -07001382 }
Keith Busch22404272013-07-15 15:02:20 -06001383}
1384
Keith Busch4d115422013-12-10 13:10:40 -07001385/**
1386 * nvme_suspend_queue - put queue into suspended state
1387 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001388 */
1389static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001390{
Keith Busch2b25d982014-12-22 12:59:04 -07001391 int vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001392
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001393 spin_lock_irq(&nvmeq->q_lock);
Keith Busch2b25d982014-12-22 12:59:04 -07001394 if (nvmeq->cq_vector == -1) {
1395 spin_unlock_irq(&nvmeq->q_lock);
1396 return 1;
1397 }
1398 vector = nvmeq->dev->entry[nvmeq->cq_vector].vector;
Keith Busch42f61422014-03-24 10:46:25 -06001399 nvmeq->dev->online_queues--;
Keith Busch2b25d982014-12-22 12:59:04 -07001400 nvmeq->cq_vector = -1;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001401 spin_unlock_irq(&nvmeq->q_lock);
1402
Keith Busch6df3dbc2015-03-26 13:49:33 -06001403 if (!nvmeq->qid && nvmeq->dev->admin_q)
1404 blk_mq_freeze_queue_start(nvmeq->dev->admin_q);
1405
Matthew Wilcoxaba20802011-03-27 08:52:06 -04001406 irq_set_affinity_hint(vector, NULL);
1407 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001408
Keith Busch4d115422013-12-10 13:10:40 -07001409 return 0;
1410}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001411
Keith Busch4d115422013-12-10 13:10:40 -07001412static void nvme_clear_queue(struct nvme_queue *nvmeq)
1413{
Keith Busch22404272013-07-15 15:02:20 -06001414 spin_lock_irq(&nvmeq->q_lock);
Keith Busch42483222015-06-01 09:29:54 -06001415 if (nvmeq->tags && *nvmeq->tags)
1416 blk_mq_all_tag_busy_iter(*nvmeq->tags, nvme_cancel_queue_ios, nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001417 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001418}
1419
Keith Busch4d115422013-12-10 13:10:40 -07001420static void nvme_disable_queue(struct nvme_dev *dev, int qid)
1421{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001422 struct nvme_queue *nvmeq = dev->queues[qid];
Keith Busch4d115422013-12-10 13:10:40 -07001423
1424 if (!nvmeq)
1425 return;
1426 if (nvme_suspend_queue(nvmeq))
1427 return;
1428
Keith Busch0e53d182013-12-10 13:10:39 -07001429 /* Don't tell the adapter to delete the admin queue.
1430 * Don't tell a removed adapter to delete IO queues. */
1431 if (qid && readl(&dev->bar->csts) != -1) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001432 adapter_delete_sq(dev, qid);
1433 adapter_delete_cq(dev, qid);
1434 }
Keith Busch07836e62015-02-19 10:34:48 -07001435
1436 spin_lock_irq(&nvmeq->q_lock);
1437 nvme_process_cq(nvmeq);
1438 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001439}
1440
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001441static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1442 int entry_size)
1443{
1444 int q_depth = dev->q_depth;
1445 unsigned q_size_aligned = roundup(q_depth * entry_size, dev->page_size);
1446
1447 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
Jon Derrickc45f5c92015-07-21 15:08:13 -06001448 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
1449 mem_per_q = round_down(mem_per_q, dev->page_size);
1450 q_depth = div_u64(mem_per_q, entry_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001451
1452 /*
1453 * Ensure the reduced q_depth is above some threshold where it
1454 * would be better to map queues in system memory with the
1455 * original depth
1456 */
1457 if (q_depth < 64)
1458 return -ENOMEM;
1459 }
1460
1461 return q_depth;
1462}
1463
1464static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1465 int qid, int depth)
1466{
1467 if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) {
1468 unsigned offset = (qid - 1) *
1469 roundup(SQ_SIZE(depth), dev->page_size);
1470 nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset;
1471 nvmeq->sq_cmds_io = dev->cmb + offset;
1472 } else {
1473 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1474 &nvmeq->sq_dma_addr, GFP_KERNEL);
1475 if (!nvmeq->sq_cmds)
1476 return -ENOMEM;
1477 }
1478
1479 return 0;
1480}
1481
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001482static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
Keith Busch2b25d982014-12-22 12:59:04 -07001483 int depth)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001484{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001485 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001486 if (!nvmeq)
1487 return NULL;
1488
Christoph Hellwige75ec752015-05-22 11:12:39 +02001489 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
Joe Perches4d51abf2014-06-15 13:37:33 -07001490 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001491 if (!nvmeq->cqes)
1492 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001493
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001494 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001495 goto free_cqdma;
1496
Christoph Hellwige75ec752015-05-22 11:12:39 +02001497 nvmeq->q_dmadev = dev->dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001498 nvmeq->dev = dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001499 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
1500 dev->instance, qid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001501 spin_lock_init(&nvmeq->q_lock);
1502 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001503 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001504 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001505 nvmeq->q_depth = depth;
Keith Buschc30341d2013-12-10 13:10:38 -07001506 nvmeq->qid = qid;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001507 nvmeq->cq_vector = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001508 dev->queues[qid] = nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001509
Jon Derrick36a7e992015-05-27 12:26:23 -06001510 /* make sure queue descriptor is set before queue count, for kthread */
1511 mb();
1512 dev->queue_count++;
1513
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001514 return nvmeq;
1515
1516 free_cqdma:
Christoph Hellwige75ec752015-05-22 11:12:39 +02001517 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001518 nvmeq->cq_dma_addr);
1519 free_nvmeq:
1520 kfree(nvmeq);
1521 return NULL;
1522}
1523
Matthew Wilcox30010822011-01-20 09:10:15 -05001524static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1525 const char *name)
1526{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001527 if (use_threaded_interrupts)
1528 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001529 nvme_irq_check, nvme_irq, IRQF_SHARED,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001530 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001531 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001532 IRQF_SHARED, name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001533}
1534
Keith Busch22404272013-07-15 15:02:20 -06001535static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001536{
Keith Busch22404272013-07-15 15:02:20 -06001537 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001538
Keith Busch7be50e92014-09-10 15:48:47 -06001539 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001540 nvmeq->sq_tail = 0;
1541 nvmeq->cq_head = 0;
1542 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001543 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001544 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Keith Busch42f61422014-03-24 10:46:25 -06001545 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001546 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001547}
1548
1549static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1550{
1551 struct nvme_dev *dev = nvmeq->dev;
1552 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001553
Keith Busch2b25d982014-12-22 12:59:04 -07001554 nvmeq->cq_vector = qid - 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001555 result = adapter_alloc_cq(dev, qid, nvmeq);
1556 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001557 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001558
1559 result = adapter_alloc_sq(dev, qid, nvmeq);
1560 if (result < 0)
1561 goto release_cq;
1562
Matthew Wilcox3193f072014-01-27 15:57:22 -05001563 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001564 if (result < 0)
1565 goto release_sq;
1566
Keith Busch22404272013-07-15 15:02:20 -06001567 nvme_init_queue(nvmeq, qid);
Keith Busch22404272013-07-15 15:02:20 -06001568 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001569
1570 release_sq:
1571 adapter_delete_sq(dev, qid);
1572 release_cq:
1573 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001574 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001575}
1576
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001577static int nvme_wait_ready(struct nvme_dev *dev, u64 cap, bool enabled)
1578{
1579 unsigned long timeout;
1580 u32 bit = enabled ? NVME_CSTS_RDY : 0;
1581
1582 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1583
1584 while ((readl(&dev->bar->csts) & NVME_CSTS_RDY) != bit) {
1585 msleep(100);
1586 if (fatal_signal_pending(current))
1587 return -EINTR;
1588 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001589 dev_err(dev->dev,
Matthew Wilcox27e81662014-04-11 11:58:45 -04001590 "Device not ready; aborting %s\n", enabled ?
1591 "initialisation" : "reset");
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001592 return -ENODEV;
1593 }
1594 }
1595
1596 return 0;
1597}
1598
1599/*
1600 * If the device has been passed off to us in an enabled state, just clear
1601 * the enabled bit. The spec says we should set the 'shutdown notification
1602 * bits', but doing so may cause the device to complete commands to the
1603 * admin queue ... and we don't know what memory that might be pointing at!
1604 */
1605static int nvme_disable_ctrl(struct nvme_dev *dev, u64 cap)
1606{
Dan McLeran01079522014-06-23 08:24:36 -06001607 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1608 dev->ctrl_config &= ~NVME_CC_ENABLE;
1609 writel(dev->ctrl_config, &dev->bar->cc);
Matthew Wilcox44af1462013-05-04 06:43:17 -04001610
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001611 return nvme_wait_ready(dev, cap, false);
1612}
1613
1614static int nvme_enable_ctrl(struct nvme_dev *dev, u64 cap)
1615{
Dan McLeran01079522014-06-23 08:24:36 -06001616 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1617 dev->ctrl_config |= NVME_CC_ENABLE;
1618 writel(dev->ctrl_config, &dev->bar->cc);
1619
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001620 return nvme_wait_ready(dev, cap, true);
1621}
1622
Keith Busch1894d8f2013-07-15 15:02:22 -06001623static int nvme_shutdown_ctrl(struct nvme_dev *dev)
1624{
1625 unsigned long timeout;
Keith Busch1894d8f2013-07-15 15:02:22 -06001626
Dan McLeran01079522014-06-23 08:24:36 -06001627 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1628 dev->ctrl_config |= NVME_CC_SHN_NORMAL;
1629
1630 writel(dev->ctrl_config, &dev->bar->cc);
Keith Busch1894d8f2013-07-15 15:02:22 -06001631
Dan McLeran2484f402014-07-01 09:33:32 -06001632 timeout = SHUTDOWN_TIMEOUT + jiffies;
Keith Busch1894d8f2013-07-15 15:02:22 -06001633 while ((readl(&dev->bar->csts) & NVME_CSTS_SHST_MASK) !=
1634 NVME_CSTS_SHST_CMPLT) {
1635 msleep(100);
1636 if (fatal_signal_pending(current))
1637 return -EINTR;
1638 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001639 dev_err(dev->dev,
Keith Busch1894d8f2013-07-15 15:02:22 -06001640 "Device shutdown incomplete; abort shutdown\n");
1641 return -ENODEV;
1642 }
1643 }
1644
1645 return 0;
1646}
1647
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001648static struct blk_mq_ops nvme_mq_admin_ops = {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001649 .queue_rq = nvme_queue_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001650 .map_queue = blk_mq_map_queue,
1651 .init_hctx = nvme_admin_init_hctx,
Keith Busch4af0e212015-06-08 10:08:13 -06001652 .exit_hctx = nvme_admin_exit_hctx,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001653 .init_request = nvme_admin_init_request,
1654 .timeout = nvme_timeout,
1655};
1656
1657static struct blk_mq_ops nvme_mq_ops = {
1658 .queue_rq = nvme_queue_rq,
1659 .map_queue = blk_mq_map_queue,
1660 .init_hctx = nvme_init_hctx,
1661 .init_request = nvme_init_request,
1662 .timeout = nvme_timeout,
1663};
1664
Keith Buschea191d22015-01-07 18:55:49 -07001665static void nvme_dev_remove_admin(struct nvme_dev *dev)
1666{
1667 if (dev->admin_q && !blk_queue_dying(dev->admin_q)) {
1668 blk_cleanup_queue(dev->admin_q);
1669 blk_mq_free_tag_set(&dev->admin_tagset);
1670 }
1671}
1672
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001673static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1674{
1675 if (!dev->admin_q) {
1676 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1677 dev->admin_tagset.nr_hw_queues = 1;
1678 dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1;
Keith Busch1efccc92015-03-31 10:37:17 -06001679 dev->admin_tagset.reserved_tags = 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001680 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001681 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
Jens Axboeac3dd5b2015-01-22 12:07:58 -07001682 dev->admin_tagset.cmd_size = nvme_cmd_size(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001683 dev->admin_tagset.driver_data = dev;
1684
1685 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1686 return -ENOMEM;
1687
1688 dev->admin_q = blk_mq_init_queue(&dev->admin_tagset);
Ming Lei35b489d2015-01-02 14:25:27 +00001689 if (IS_ERR(dev->admin_q)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001690 blk_mq_free_tag_set(&dev->admin_tagset);
1691 return -ENOMEM;
1692 }
Keith Buschea191d22015-01-07 18:55:49 -07001693 if (!blk_get_queue(dev->admin_q)) {
1694 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06001695 dev->admin_q = NULL;
Keith Buschea191d22015-01-07 18:55:49 -07001696 return -ENODEV;
1697 }
Keith Busch0fb59cb2015-01-07 18:55:50 -07001698 } else
1699 blk_mq_unfreeze_queue(dev->admin_q);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001700
1701 return 0;
1702}
1703
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001704static int nvme_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001705{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001706 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001707 u32 aqa;
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001708 u64 cap = readq(&dev->bar->cap);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001709 struct nvme_queue *nvmeq;
Keith Busch1d090622014-06-23 11:34:01 -06001710 unsigned page_shift = PAGE_SHIFT;
1711 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12;
1712 unsigned dev_page_max = NVME_CAP_MPSMAX(cap) + 12;
1713
1714 if (page_shift < dev_page_min) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001715 dev_err(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001716 "Minimum device page size (%u) too large for "
1717 "host (%u)\n", 1 << dev_page_min,
1718 1 << page_shift);
1719 return -ENODEV;
1720 }
1721 if (page_shift > dev_page_max) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001722 dev_info(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001723 "Device maximum page size (%u) smaller than "
1724 "host (%u); enabling work-around\n",
1725 1 << dev_page_max, 1 << page_shift);
1726 page_shift = dev_page_max;
1727 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001728
Keith Buschdfbac8c2015-08-10 15:20:40 -06001729 dev->subsystem = readl(&dev->bar->vs) >= NVME_VS(1, 1) ?
1730 NVME_CAP_NSSRC(cap) : 0;
1731
1732 if (dev->subsystem && (readl(&dev->bar->csts) & NVME_CSTS_NSSRO))
1733 writel(NVME_CSTS_NSSRO, &dev->bar->csts);
1734
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001735 result = nvme_disable_ctrl(dev, cap);
1736 if (result < 0)
1737 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001738
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001739 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001740 if (!nvmeq) {
Keith Busch2b25d982014-12-22 12:59:04 -07001741 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
Keith Buschcd638942013-07-15 15:02:23 -06001742 if (!nvmeq)
1743 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001744 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001745
1746 aqa = nvmeq->q_depth - 1;
1747 aqa |= aqa << 16;
1748
Keith Busch1d090622014-06-23 11:34:01 -06001749 dev->page_size = 1 << page_shift;
1750
Dan McLeran01079522014-06-23 08:24:36 -06001751 dev->ctrl_config = NVME_CC_CSS_NVM;
Keith Busch1d090622014-06-23 11:34:01 -06001752 dev->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001753 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -04001754 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001755
1756 writel(aqa, &dev->bar->aqa);
1757 writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1758 writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001759
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001760 result = nvme_enable_ctrl(dev, cap);
Keith Busch025c5572013-05-01 13:07:51 -06001761 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001762 goto free_nvmeq;
1763
Keith Busch2b25d982014-12-22 12:59:04 -07001764 nvmeq->cq_vector = 0;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001765 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001766 if (result) {
1767 nvmeq->cq_vector = -1;
Keith Busch0fb59cb2015-01-07 18:55:50 -07001768 goto free_nvmeq;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001769 }
Keith Busch025c5572013-05-01 13:07:51 -06001770
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001771 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001772
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001773 free_nvmeq:
1774 nvme_free_queues(dev, 0);
1775 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001776}
1777
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001778static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1779{
1780 struct nvme_dev *dev = ns->dev;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001781 struct nvme_user_io io;
1782 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001783 unsigned length, meta_len;
Keith Buscha67a9512015-04-07 16:57:19 -06001784 int status, write;
Keith Buscha67a9512015-04-07 16:57:19 -06001785 dma_addr_t meta_dma = 0;
1786 void *meta = NULL;
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001787 void __user *metadata;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001788
1789 if (copy_from_user(&io, uio, sizeof(io)))
1790 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001791
1792 switch (io.opcode) {
1793 case nvme_cmd_write:
1794 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001795 case nvme_cmd_compare:
Matthew Wilcox64132142011-08-09 12:56:37 -04001796 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001797 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001798 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001799 }
1800
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001801 length = (io.nblocks + 1) << ns->lba_shift;
1802 meta_len = (io.nblocks + 1) * ns->ms;
Linus Torvalds6a398a32015-06-25 15:12:50 -07001803 metadata = (void __user *)(unsigned long)io.metadata;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001804 write = io.opcode & 1;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001805
Keith Busch71feb362015-06-19 11:07:30 -06001806 if (ns->ext) {
1807 length += meta_len;
1808 meta_len = 0;
Keith Buscha67a9512015-04-07 16:57:19 -06001809 }
1810 if (meta_len) {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001811 if (((io.metadata & 3) || !io.metadata) && !ns->ext)
1812 return -EINVAL;
1813
Christoph Hellwige75ec752015-05-22 11:12:39 +02001814 meta = dma_alloc_coherent(dev->dev, meta_len,
Keith Buscha67a9512015-04-07 16:57:19 -06001815 &meta_dma, GFP_KERNEL);
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001816
Keith Buscha67a9512015-04-07 16:57:19 -06001817 if (!meta) {
1818 status = -ENOMEM;
1819 goto unmap;
1820 }
1821 if (write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001822 if (copy_from_user(meta, metadata, meta_len)) {
Keith Buscha67a9512015-04-07 16:57:19 -06001823 status = -EFAULT;
1824 goto unmap;
1825 }
1826 }
1827 }
1828
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001829 memset(&c, 0, sizeof(c));
1830 c.rw.opcode = io.opcode;
1831 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001832 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001833 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001834 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001835 c.rw.control = cpu_to_le16(io.control);
Matthew Wilcox1c9b5262013-04-16 15:21:06 -04001836 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1837 c.rw.reftag = cpu_to_le32(io.reftag);
1838 c.rw.apptag = cpu_to_le16(io.apptag);
1839 c.rw.appmask = cpu_to_le16(io.appmask);
Keith Buscha67a9512015-04-07 16:57:19 -06001840 c.rw.metadata = cpu_to_le64(meta_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001841
1842 status = __nvme_submit_sync_cmd(ns->queue, &c, NULL,
1843 (void __user *)io.addr, length, NULL, 0);
Keith Buschf410c682013-04-23 17:23:59 -06001844 unmap:
Keith Buscha67a9512015-04-07 16:57:19 -06001845 if (meta) {
1846 if (status == NVME_SC_SUCCESS && !write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001847 if (copy_to_user(metadata, meta, meta_len))
Keith Buscha67a9512015-04-07 16:57:19 -06001848 status = -EFAULT;
1849 }
Christoph Hellwige75ec752015-05-22 11:12:39 +02001850 dma_free_coherent(dev->dev, meta_len, meta, meta_dma);
Keith Buschf410c682013-04-23 17:23:59 -06001851 }
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001852 return status;
1853}
1854
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001855static int nvme_user_cmd(struct nvme_dev *dev, struct nvme_ns *ns,
1856 struct nvme_passthru_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001857{
Keith Busch7963e522014-09-12 16:07:20 -06001858 struct nvme_passthru_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001859 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001860 unsigned timeout = 0;
1861 int status;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001862
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001863 if (!capable(CAP_SYS_ADMIN))
1864 return -EACCES;
1865 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001866 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001867
1868 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001869 c.common.opcode = cmd.opcode;
1870 c.common.flags = cmd.flags;
1871 c.common.nsid = cpu_to_le32(cmd.nsid);
1872 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1873 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1874 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1875 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1876 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1877 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1878 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1879 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1880
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001881 if (cmd.timeout_ms)
1882 timeout = msecs_to_jiffies(cmd.timeout_ms);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001883
Christoph Hellwigf705f832015-05-22 11:12:38 +02001884 status = __nvme_submit_sync_cmd(ns ? ns->queue : dev->admin_q, &c,
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001885 NULL, (void __user *)cmd.addr, cmd.data_len,
1886 &cmd.result, timeout);
1887 if (status >= 0) {
1888 if (put_user(cmd.result, &ucmd->result))
1889 return -EFAULT;
Keith Buschedd10d32014-04-03 16:45:23 -06001890 }
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001891
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001892 return status;
1893}
1894
Jon Derrick81f03fe2015-08-10 15:20:41 -06001895static int nvme_subsys_reset(struct nvme_dev *dev)
1896{
1897 if (!dev->subsystem)
1898 return -ENOTTY;
1899
1900 writel(0x4E564D65, &dev->bar->nssr); /* "NVMe" */
1901 return 0;
1902}
1903
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001904static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1905 unsigned long arg)
1906{
1907 struct nvme_ns *ns = bdev->bd_disk->private_data;
1908
1909 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001910 case NVME_IOCTL_ID:
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04001911 force_successful_syscall_return();
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001912 return ns->ns_id;
1913 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001914 return nvme_user_cmd(ns->dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06001915 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001916 return nvme_user_cmd(ns->dev, ns, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001917 case NVME_IOCTL_SUBMIT_IO:
1918 return nvme_submit_io(ns, (void __user *)arg);
Vishal Verma5d0f6132013-03-04 18:40:58 -07001919 case SG_GET_VERSION_NUM:
1920 return nvme_sg_get_version_num((void __user *)arg);
1921 case SG_IO:
1922 return nvme_sg_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001923 default:
1924 return -ENOTTY;
1925 }
1926}
1927
Keith Busch320a3822013-10-23 13:07:34 -06001928#ifdef CONFIG_COMPAT
1929static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode,
1930 unsigned int cmd, unsigned long arg)
1931{
Keith Busch320a3822013-10-23 13:07:34 -06001932 switch (cmd) {
1933 case SG_IO:
Keith Busche1797292014-08-27 13:55:38 -06001934 return -ENOIOCTLCMD;
Keith Busch320a3822013-10-23 13:07:34 -06001935 }
1936 return nvme_ioctl(bdev, mode, cmd, arg);
1937}
1938#else
1939#define nvme_compat_ioctl NULL
1940#endif
1941
Keith Busch5105aa52015-10-02 10:37:28 -06001942static void nvme_free_dev(struct kref *kref);
Keith Busch188c3562015-10-01 17:14:10 -06001943static void nvme_free_ns(struct kref *kref)
1944{
1945 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
1946
1947 spin_lock(&dev_list_lock);
1948 ns->disk->private_data = NULL;
1949 spin_unlock(&dev_list_lock);
1950
Keith Busch5105aa52015-10-02 10:37:28 -06001951 kref_put(&ns->dev->kref, nvme_free_dev);
Keith Busch188c3562015-10-01 17:14:10 -06001952 put_disk(ns->disk);
1953 kfree(ns);
1954}
1955
Keith Busch9ac27092014-01-31 16:53:39 -07001956static int nvme_open(struct block_device *bdev, fmode_t mode)
1957{
Keith Busch9e603522014-10-03 11:15:47 -06001958 int ret = 0;
1959 struct nvme_ns *ns;
Keith Busch9ac27092014-01-31 16:53:39 -07001960
Keith Busch9e603522014-10-03 11:15:47 -06001961 spin_lock(&dev_list_lock);
1962 ns = bdev->bd_disk->private_data;
1963 if (!ns)
1964 ret = -ENXIO;
Keith Busch188c3562015-10-01 17:14:10 -06001965 else if (!kref_get_unless_zero(&ns->kref))
Keith Busch9e603522014-10-03 11:15:47 -06001966 ret = -ENXIO;
1967 spin_unlock(&dev_list_lock);
1968
1969 return ret;
Keith Busch9ac27092014-01-31 16:53:39 -07001970}
1971
Keith Busch9ac27092014-01-31 16:53:39 -07001972static void nvme_release(struct gendisk *disk, fmode_t mode)
1973{
1974 struct nvme_ns *ns = disk->private_data;
Keith Busch188c3562015-10-01 17:14:10 -06001975 kref_put(&ns->kref, nvme_free_ns);
Keith Busch9ac27092014-01-31 16:53:39 -07001976}
1977
Keith Busch4cc09e22014-04-02 15:45:37 -06001978static int nvme_getgeo(struct block_device *bd, struct hd_geometry *geo)
1979{
1980 /* some standard values */
1981 geo->heads = 1 << 6;
1982 geo->sectors = 1 << 5;
1983 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
1984 return 0;
1985}
1986
Keith Busche1e5e562015-02-19 13:39:03 -07001987static void nvme_config_discard(struct nvme_ns *ns)
1988{
1989 u32 logical_block_size = queue_logical_block_size(ns->queue);
1990 ns->queue->limits.discard_zeroes_data = 0;
1991 ns->queue->limits.discard_alignment = logical_block_size;
1992 ns->queue->limits.discard_granularity = logical_block_size;
Jens Axboe2bb4cd52015-07-14 08:15:12 -06001993 blk_queue_max_discard_sectors(ns->queue, 0xffffffff);
Keith Busche1e5e562015-02-19 13:39:03 -07001994 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
1995}
1996
Keith Busch1b9dbf72014-09-10 17:21:14 -06001997static int nvme_revalidate_disk(struct gendisk *disk)
1998{
1999 struct nvme_ns *ns = disk->private_data;
2000 struct nvme_dev *dev = ns->dev;
2001 struct nvme_id_ns *id;
Keith Buscha67a9512015-04-07 16:57:19 -06002002 u8 lbaf, pi_type;
2003 u16 old_ms;
Keith Busche1e5e562015-02-19 13:39:03 -07002004 unsigned short bs;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002005
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002006 if (nvme_identify_ns(dev, ns->ns_id, &id)) {
Keith Buscha5768aa2015-06-01 14:28:14 -06002007 dev_warn(dev->dev, "%s: Identify failure nvme%dn%d\n", __func__,
2008 dev->instance, ns->ns_id);
2009 return -ENODEV;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002010 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002011 if (id->ncap == 0) {
2012 kfree(id);
2013 return -ENODEV;
Keith Busche1e5e562015-02-19 13:39:03 -07002014 }
Keith Busch1b9dbf72014-09-10 17:21:14 -06002015
Keith Busche1e5e562015-02-19 13:39:03 -07002016 old_ms = ns->ms;
2017 lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002018 ns->lba_shift = id->lbaf[lbaf].ds;
Keith Busche1e5e562015-02-19 13:39:03 -07002019 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms);
Keith Buscha67a9512015-04-07 16:57:19 -06002020 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002021
Keith Busche1e5e562015-02-19 13:39:03 -07002022 /*
2023 * If identify namespace failed, use default 512 byte block size so
2024 * block layer can use before failing read/write for 0 capacity.
2025 */
2026 if (ns->lba_shift == 0)
2027 ns->lba_shift = 9;
2028 bs = 1 << ns->lba_shift;
2029
2030 /* XXX: PI implementation requires metadata equal t10 pi tuple size */
2031 pi_type = ns->ms == sizeof(struct t10_pi_tuple) ?
2032 id->dps & NVME_NS_DPS_PI_MASK : 0;
2033
Keith Busch52b68d72015-02-23 09:16:21 -07002034 if (blk_get_integrity(disk) && (ns->pi_type != pi_type ||
2035 ns->ms != old_ms ||
Keith Busche1e5e562015-02-19 13:39:03 -07002036 bs != queue_logical_block_size(disk->queue) ||
Keith Buscha67a9512015-04-07 16:57:19 -06002037 (ns->ms && ns->ext)))
Keith Busche1e5e562015-02-19 13:39:03 -07002038 blk_integrity_unregister(disk);
2039
2040 ns->pi_type = pi_type;
2041 blk_queue_logical_block_size(ns->queue, bs);
2042
Keith Busch52b68d72015-02-23 09:16:21 -07002043 if (ns->ms && !blk_get_integrity(disk) && (disk->flags & GENHD_FL_UP) &&
Keith Buscha67a9512015-04-07 16:57:19 -06002044 !ns->ext)
Keith Busche1e5e562015-02-19 13:39:03 -07002045 nvme_init_integrity(ns);
2046
Alok Pandeye19b1272015-08-26 08:56:14 -06002047 if (ns->ms && !(ns->ms == 8 && ns->pi_type) && !blk_get_integrity(disk))
Keith Busche1e5e562015-02-19 13:39:03 -07002048 set_capacity(disk, 0);
2049 else
2050 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
2051
2052 if (dev->oncs & NVME_CTRL_ONCS_DSM)
2053 nvme_config_discard(ns);
2054
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002055 kfree(id);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002056 return 0;
2057}
2058
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002059static const struct block_device_operations nvme_fops = {
2060 .owner = THIS_MODULE,
2061 .ioctl = nvme_ioctl,
Keith Busch320a3822013-10-23 13:07:34 -06002062 .compat_ioctl = nvme_compat_ioctl,
Keith Busch9ac27092014-01-31 16:53:39 -07002063 .open = nvme_open,
2064 .release = nvme_release,
Keith Busch4cc09e22014-04-02 15:45:37 -06002065 .getgeo = nvme_getgeo,
Keith Busch1b9dbf72014-09-10 17:21:14 -06002066 .revalidate_disk= nvme_revalidate_disk,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002067};
2068
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002069static int nvme_kthread(void *data)
2070{
Keith Buschd4b4ff82013-12-10 13:10:37 -07002071 struct nvme_dev *dev, *next;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002072
2073 while (!kthread_should_stop()) {
Arjan van de Ven564a2322013-05-01 16:38:23 -04002074 set_current_state(TASK_INTERRUPTIBLE);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002075 spin_lock(&dev_list_lock);
Keith Buschd4b4ff82013-12-10 13:10:37 -07002076 list_for_each_entry_safe(dev, next, &dev_list, node) {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002077 int i;
Keith Buschdfbac8c2015-08-10 15:20:40 -06002078 u32 csts = readl(&dev->bar->csts);
2079
2080 if ((dev->subsystem && (csts & NVME_CSTS_NSSRO)) ||
2081 csts & NVME_CSTS_CFS) {
Christoph Hellwig906678922015-10-02 18:49:23 +02002082 if (!__nvme_reset(dev)) {
2083 dev_warn(dev->dev,
2084 "Failed status: %x, reset controller\n",
2085 readl(&dev->bar->csts));
2086 }
Keith Buschd4b4ff82013-12-10 13:10:37 -07002087 continue;
2088 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002089 for (i = 0; i < dev->queue_count; i++) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002090 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05002091 if (!nvmeq)
2092 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002093 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxbc57a0f2013-06-24 11:56:42 -04002094 nvme_process_cq(nvmeq);
Keith Busch6fccf932014-06-18 13:58:57 -06002095
2096 while ((i == 0) && (dev->event_limit > 0)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002097 if (nvme_submit_async_admin_req(dev))
Keith Busch6fccf932014-06-18 13:58:57 -06002098 break;
2099 dev->event_limit--;
2100 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002101 spin_unlock_irq(&nvmeq->q_lock);
2102 }
2103 }
2104 spin_unlock(&dev_list_lock);
Arjan van de Venacb7aa02013-02-04 14:44:33 -08002105 schedule_timeout(round_jiffies_relative(HZ));
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002106 }
2107 return 0;
2108}
2109
Keith Busche1e5e562015-02-19 13:39:03 -07002110static void nvme_alloc_ns(struct nvme_dev *dev, unsigned nsid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002111{
2112 struct nvme_ns *ns;
2113 struct gendisk *disk;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002114 int node = dev_to_node(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002115
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002116 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002117 if (!ns)
Keith Busche1e5e562015-02-19 13:39:03 -07002118 return;
2119
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002120 ns->queue = blk_mq_init_queue(&dev->tagset);
Dan Carpenter9f173b32014-11-05 23:39:09 +03002121 if (IS_ERR(ns->queue))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002122 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07002123 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
2124 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002125 ns->dev = dev;
2126 ns->queue->queuedata = ns;
2127
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002128 disk = alloc_disk_node(0, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002129 if (!disk)
2130 goto out_free_queue;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002131
Keith Busch188c3562015-10-01 17:14:10 -06002132 kref_init(&ns->kref);
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002133 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002134 ns->disk = disk;
Keith Busche1e5e562015-02-19 13:39:03 -07002135 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
2136 list_add_tail(&ns->list, &dev->namespaces);
2137
Keith Busche9ef4632012-07-24 15:01:04 -06002138 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Keith Busche8244102015-08-12 16:17:54 -06002139 if (dev->max_hw_sectors) {
Keith Busch8fc23e02012-07-26 11:29:57 -06002140 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
Keith Busche8244102015-08-12 16:17:54 -06002141 blk_queue_max_segments(ns->queue,
2142 ((dev->max_hw_sectors << 9) / dev->page_size) + 1);
2143 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002144 if (dev->stripe_size)
2145 blk_queue_chunk_sectors(ns->queue, dev->stripe_size >> 9);
Keith Buscha7d2ce22014-04-29 11:41:28 -06002146 if (dev->vwc & NVME_CTRL_VWC_PRESENT)
2147 blk_queue_flush(ns->queue, REQ_FLUSH | REQ_FUA);
Keith Busch03100aa2015-08-19 14:24:05 -07002148 blk_queue_virt_boundary(ns->queue, dev->page_size - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002149
2150 disk->major = nvme_major;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002151 disk->first_minor = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002152 disk->fops = &nvme_fops;
2153 disk->private_data = ns;
2154 disk->queue = ns->queue;
Keith Buschb3fffde2015-02-03 11:21:42 -07002155 disk->driverfs_dev = dev->device;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002156 disk->flags = GENHD_FL_EXT_DEVT;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002157 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002158
Keith Busche1e5e562015-02-19 13:39:03 -07002159 /*
2160 * Initialize capacity to 0 until we establish the namespace format and
2161 * setup integrity extentions if necessary. The revalidate_disk after
2162 * add_disk allows the driver to register with integrity if the format
2163 * requires it.
2164 */
2165 set_capacity(disk, 0);
Keith Buscha5768aa2015-06-01 14:28:14 -06002166 if (nvme_revalidate_disk(ns->disk))
2167 goto out_free_disk;
2168
Keith Busch5105aa52015-10-02 10:37:28 -06002169 kref_get(&dev->kref);
Keith Busche1e5e562015-02-19 13:39:03 -07002170 add_disk(ns->disk);
Keith Busch7bee6072015-07-14 11:57:48 -06002171 if (ns->ms) {
2172 struct block_device *bd = bdget_disk(ns->disk, 0);
2173 if (!bd)
2174 return;
2175 if (blkdev_get(bd, FMODE_READ, NULL)) {
2176 bdput(bd);
2177 return;
2178 }
2179 blkdev_reread_part(bd);
2180 blkdev_put(bd, FMODE_READ);
2181 }
Keith Busche1e5e562015-02-19 13:39:03 -07002182 return;
Keith Buscha5768aa2015-06-01 14:28:14 -06002183 out_free_disk:
2184 kfree(disk);
2185 list_del(&ns->list);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002186 out_free_queue:
2187 blk_cleanup_queue(ns->queue);
2188 out_free_ns:
2189 kfree(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002190}
2191
Keith Busch42f61422014-03-24 10:46:25 -06002192static void nvme_create_io_queues(struct nvme_dev *dev)
2193{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002194 unsigned i;
Keith Busch42f61422014-03-24 10:46:25 -06002195
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002196 for (i = dev->queue_count; i <= dev->max_qid; i++)
Keith Busch2b25d982014-12-22 12:59:04 -07002197 if (!nvme_alloc_queue(dev, i, dev->q_depth))
Keith Busch42f61422014-03-24 10:46:25 -06002198 break;
2199
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002200 for (i = dev->online_queues; i <= dev->queue_count - 1; i++)
2201 if (nvme_create_queue(dev->queues[i], i))
Keith Busch42f61422014-03-24 10:46:25 -06002202 break;
2203}
2204
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002205static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002206{
2207 int status;
2208 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002209 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002210
Matthew Wilcoxdf348132012-01-11 07:29:56 -07002211 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002212 &result);
Matthew Wilcox27e81662014-04-11 11:58:45 -04002213 if (status < 0)
2214 return status;
2215 if (status > 0) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002216 dev_err(dev->dev, "Could not set queue count (%d)\n", status);
Keith Buschbadc34d2014-06-23 14:25:35 -06002217 return 0;
Matthew Wilcox27e81662014-04-11 11:58:45 -04002218 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002219 return min(result & 0xffff, result >> 16) + 1;
2220}
2221
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002222static void __iomem *nvme_map_cmb(struct nvme_dev *dev)
2223{
2224 u64 szu, size, offset;
2225 u32 cmbloc;
2226 resource_size_t bar_size;
2227 struct pci_dev *pdev = to_pci_dev(dev->dev);
2228 void __iomem *cmb;
2229 dma_addr_t dma_addr;
2230
2231 if (!use_cmb_sqes)
2232 return NULL;
2233
2234 dev->cmbsz = readl(&dev->bar->cmbsz);
2235 if (!(NVME_CMB_SZ(dev->cmbsz)))
2236 return NULL;
2237
2238 cmbloc = readl(&dev->bar->cmbloc);
2239
2240 szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz));
2241 size = szu * NVME_CMB_SZ(dev->cmbsz);
2242 offset = szu * NVME_CMB_OFST(cmbloc);
2243 bar_size = pci_resource_len(pdev, NVME_CMB_BIR(cmbloc));
2244
2245 if (offset > bar_size)
2246 return NULL;
2247
2248 /*
2249 * Controllers may support a CMB size larger than their BAR,
2250 * for example, due to being behind a bridge. Reduce the CMB to
2251 * the reported size of the BAR
2252 */
2253 if (size > bar_size - offset)
2254 size = bar_size - offset;
2255
2256 dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(cmbloc)) + offset;
2257 cmb = ioremap_wc(dma_addr, size);
2258 if (!cmb)
2259 return NULL;
2260
2261 dev->cmb_dma_addr = dma_addr;
2262 dev->cmb_size = size;
2263 return cmb;
2264}
2265
2266static inline void nvme_release_cmb(struct nvme_dev *dev)
2267{
2268 if (dev->cmb) {
2269 iounmap(dev->cmb);
2270 dev->cmb = NULL;
2271 }
2272}
2273
Keith Busch9d713c22013-07-15 15:02:24 -06002274static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
2275{
Haiyan Hub80d5cc2013-09-10 11:25:37 +08002276 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
Keith Busch9d713c22013-07-15 15:02:24 -06002277}
2278
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002279static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002280{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002281 struct nvme_queue *adminq = dev->queues[0];
Christoph Hellwige75ec752015-05-22 11:12:39 +02002282 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch42f61422014-03-24 10:46:25 -06002283 int result, i, vecs, nr_io_queues, size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002284
Keith Busch42f61422014-03-24 10:46:25 -06002285 nr_io_queues = num_possible_cpus();
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002286 result = set_queue_count(dev, nr_io_queues);
Keith Buschbadc34d2014-06-23 14:25:35 -06002287 if (result <= 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002288 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002289 if (result < nr_io_queues)
2290 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002291
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002292 if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) {
2293 result = nvme_cmb_qdepth(dev, nr_io_queues,
2294 sizeof(struct nvme_command));
2295 if (result > 0)
2296 dev->q_depth = result;
2297 else
2298 nvme_release_cmb(dev);
2299 }
2300
Keith Busch9d713c22013-07-15 15:02:24 -06002301 size = db_bar_size(dev, nr_io_queues);
2302 if (size > 8192) {
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002303 iounmap(dev->bar);
Keith Busch9d713c22013-07-15 15:02:24 -06002304 do {
2305 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
2306 if (dev->bar)
2307 break;
2308 if (!--nr_io_queues)
2309 return -ENOMEM;
2310 size = db_bar_size(dev, nr_io_queues);
2311 } while (1);
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002312 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Keith Busch5a92e702014-02-21 14:13:44 -07002313 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002314 }
2315
Keith Busch9d713c22013-07-15 15:02:24 -06002316 /* Deregister the admin queue's interrupt */
Matthew Wilcox3193f072014-01-27 15:57:22 -05002317 free_irq(dev->entry[0].vector, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06002318
Jens Axboee32efbf2014-11-14 09:49:26 -07002319 /*
2320 * If we enable msix early due to not intx, disable it again before
2321 * setting up the full range we need.
2322 */
2323 if (!pdev->irq)
2324 pci_disable_msix(pdev);
2325
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002326 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002327 dev->entry[i].entry = i;
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002328 vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues);
2329 if (vecs < 0) {
2330 vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32));
2331 if (vecs < 0) {
2332 vecs = 1;
2333 } else {
2334 for (i = 0; i < vecs; i++)
2335 dev->entry[i].vector = i + pdev->irq;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002336 }
2337 }
2338
Matthew Wilcox063a8092013-06-20 10:53:48 -04002339 /*
2340 * Should investigate if there's a performance win from allocating
2341 * more queues than interrupt vectors; it might allow the submission
2342 * path to scale better, even if the receive path is limited by the
2343 * number of interrupts.
2344 */
2345 nr_io_queues = vecs;
Keith Busch42f61422014-03-24 10:46:25 -06002346 dev->max_qid = nr_io_queues;
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07002347
Matthew Wilcox3193f072014-01-27 15:57:22 -05002348 result = queue_request_irq(dev, adminq, adminq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06002349 if (result) {
2350 adminq->cq_vector = -1;
Keith Busch22404272013-07-15 15:02:20 -06002351 goto free_queues;
Jon Derrick758dd7f2015-06-30 11:22:52 -06002352 }
Matthew Wilcox1b234842011-01-20 13:01:49 -05002353
Keith Buschcd638942013-07-15 15:02:23 -06002354 /* Free previously allocated queues that are no longer usable */
Keith Busch42f61422014-03-24 10:46:25 -06002355 nvme_free_queues(dev, nr_io_queues + 1);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002356 nvme_create_io_queues(dev);
Keith Buschcd638942013-07-15 15:02:23 -06002357
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002358 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002359
Keith Busch22404272013-07-15 15:02:20 -06002360 free_queues:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002361 nvme_free_queues(dev, 1);
Keith Busch22404272013-07-15 15:02:20 -06002362 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002363}
2364
Keith Buscha5768aa2015-06-01 14:28:14 -06002365static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2366{
2367 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2368 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2369
2370 return nsa->ns_id - nsb->ns_id;
2371}
2372
2373static struct nvme_ns *nvme_find_ns(struct nvme_dev *dev, unsigned nsid)
2374{
2375 struct nvme_ns *ns;
2376
2377 list_for_each_entry(ns, &dev->namespaces, list) {
2378 if (ns->ns_id == nsid)
2379 return ns;
2380 if (ns->ns_id > nsid)
2381 break;
2382 }
2383 return NULL;
2384}
2385
2386static inline bool nvme_io_incapable(struct nvme_dev *dev)
2387{
2388 return (!dev->bar || readl(&dev->bar->csts) & NVME_CSTS_CFS ||
2389 dev->online_queues < 2);
2390}
2391
2392static void nvme_ns_remove(struct nvme_ns *ns)
2393{
2394 bool kill = nvme_io_incapable(ns->dev) && !blk_queue_dying(ns->queue);
2395
2396 if (kill)
2397 blk_set_queue_dying(ns->queue);
2398 if (ns->disk->flags & GENHD_FL_UP) {
2399 if (blk_get_integrity(ns->disk))
2400 blk_integrity_unregister(ns->disk);
2401 del_gendisk(ns->disk);
2402 }
2403 if (kill || !blk_queue_dying(ns->queue)) {
2404 blk_mq_abort_requeue_list(ns->queue);
2405 blk_cleanup_queue(ns->queue);
Keith Busch5105aa52015-10-02 10:37:28 -06002406 }
2407 list_del_init(&ns->list);
2408 kref_put(&ns->kref, nvme_free_ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002409}
2410
2411static void nvme_scan_namespaces(struct nvme_dev *dev, unsigned nn)
2412{
2413 struct nvme_ns *ns, *next;
2414 unsigned i;
2415
2416 for (i = 1; i <= nn; i++) {
2417 ns = nvme_find_ns(dev, i);
2418 if (ns) {
Keith Busch5105aa52015-10-02 10:37:28 -06002419 if (revalidate_disk(ns->disk))
Keith Buscha5768aa2015-06-01 14:28:14 -06002420 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002421 } else
2422 nvme_alloc_ns(dev, i);
2423 }
2424 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
Keith Busch5105aa52015-10-02 10:37:28 -06002425 if (ns->ns_id > nn)
Keith Buscha5768aa2015-06-01 14:28:14 -06002426 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002427 }
2428 list_sort(NULL, &dev->namespaces, ns_cmp);
2429}
2430
Keith Buschbda4e0f2015-09-03 08:18:17 -06002431static void nvme_set_irq_hints(struct nvme_dev *dev)
2432{
2433 struct nvme_queue *nvmeq;
2434 int i;
2435
2436 for (i = 0; i < dev->online_queues; i++) {
2437 nvmeq = dev->queues[i];
2438
2439 if (!nvmeq->tags || !(*nvmeq->tags))
2440 continue;
2441
2442 irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector,
2443 blk_mq_tags_cpumask(*nvmeq->tags));
2444 }
2445}
2446
Keith Buscha5768aa2015-06-01 14:28:14 -06002447static void nvme_dev_scan(struct work_struct *work)
2448{
2449 struct nvme_dev *dev = container_of(work, struct nvme_dev, scan_work);
2450 struct nvme_id_ctrl *ctrl;
2451
2452 if (!dev->tagset.tags)
2453 return;
2454 if (nvme_identify_ctrl(dev, &ctrl))
2455 return;
2456 nvme_scan_namespaces(dev, le32_to_cpup(&ctrl->nn));
2457 kfree(ctrl);
Keith Buschbda4e0f2015-09-03 08:18:17 -06002458 nvme_set_irq_hints(dev);
Keith Buscha5768aa2015-06-01 14:28:14 -06002459}
2460
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002461/*
2462 * Return: error value if an error occurred setting up the queues or calling
2463 * Identify Device. 0 if these succeeded, even if adding some of the
2464 * namespaces failed. At the moment, these failures are silent. TBD which
2465 * failures should be reported.
2466 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002467static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002468{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002469 struct pci_dev *pdev = to_pci_dev(dev->dev);
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04002470 int res;
Matthew Wilcox51814232011-02-01 16:18:08 -05002471 struct nvme_id_ctrl *ctrl;
Keith Busch159b67d2013-04-09 17:13:20 -06002472 int shift = NVME_CAP_MPSMIN(readq(&dev->bar->cap)) + 12;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002473
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002474 res = nvme_identify_ctrl(dev, &ctrl);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002475 if (res) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002476 dev_err(dev->dev, "Identify Controller failed (%d)\n", res);
Keith Busche1e5e562015-02-19 13:39:03 -07002477 return -EIO;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002478 }
2479
Keith Busch0e5e4f02012-11-09 16:33:05 -07002480 dev->oncs = le16_to_cpup(&ctrl->oncs);
Keith Buschc30341d2013-12-10 13:10:38 -07002481 dev->abort_limit = ctrl->acl + 1;
Keith Buscha7d2ce22014-04-29 11:41:28 -06002482 dev->vwc = ctrl->vwc;
Matthew Wilcox51814232011-02-01 16:18:08 -05002483 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
2484 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
2485 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Keith Busch159b67d2013-04-09 17:13:20 -06002486 if (ctrl->mdts)
Keith Busch8fc23e02012-07-26 11:29:57 -06002487 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
Matthew Wilcox68608c262013-06-21 14:36:34 -04002488 if ((pdev->vendor == PCI_VENDOR_ID_INTEL) &&
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002489 (pdev->device == 0x0953) && ctrl->vs[3]) {
2490 unsigned int max_hw_sectors;
2491
Keith Busch159b67d2013-04-09 17:13:20 -06002492 dev->stripe_size = 1 << (ctrl->vs[3] + shift);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002493 max_hw_sectors = dev->stripe_size >> (shift - 9);
2494 if (dev->max_hw_sectors) {
2495 dev->max_hw_sectors = min(max_hw_sectors,
2496 dev->max_hw_sectors);
2497 } else
2498 dev->max_hw_sectors = max_hw_sectors;
2499 }
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002500 kfree(ctrl);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002501
Keith Buschffe77042015-06-08 10:08:15 -06002502 if (!dev->tagset.tags) {
2503 dev->tagset.ops = &nvme_mq_ops;
2504 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2505 dev->tagset.timeout = NVME_IO_TIMEOUT;
2506 dev->tagset.numa_node = dev_to_node(dev->dev);
2507 dev->tagset.queue_depth =
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002508 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
Keith Buschffe77042015-06-08 10:08:15 -06002509 dev->tagset.cmd_size = nvme_cmd_size(dev);
2510 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2511 dev->tagset.driver_data = dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002512
Keith Buschffe77042015-06-08 10:08:15 -06002513 if (blk_mq_alloc_tag_set(&dev->tagset))
2514 return 0;
2515 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002516 schedule_work(&dev->scan_work);
Keith Busche1e5e562015-02-19 13:39:03 -07002517 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002518}
2519
Keith Busch0877cb02013-07-15 15:02:19 -06002520static int nvme_dev_map(struct nvme_dev *dev)
2521{
Keith Busch42f61422014-03-24 10:46:25 -06002522 u64 cap;
Keith Busch0877cb02013-07-15 15:02:19 -06002523 int bars, result = -ENOMEM;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002524 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002525
2526 if (pci_enable_device_mem(pdev))
2527 return result;
2528
2529 dev->entry[0].vector = pdev->irq;
2530 pci_set_master(pdev);
2531 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Jens Axboebe7837e2014-11-14 09:50:19 -07002532 if (!bars)
2533 goto disable_pci;
2534
Keith Busch0877cb02013-07-15 15:02:19 -06002535 if (pci_request_selected_regions(pdev, bars, "nvme"))
2536 goto disable_pci;
2537
Christoph Hellwige75ec752015-05-22 11:12:39 +02002538 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
2539 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
Russell King052d0ef2013-06-26 23:49:11 +01002540 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06002541
Keith Busch0877cb02013-07-15 15:02:19 -06002542 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
2543 if (!dev->bar)
2544 goto disable;
Jens Axboee32efbf2014-11-14 09:49:26 -07002545
Keith Busch0e53d182013-12-10 13:10:39 -07002546 if (readl(&dev->bar->csts) == -1) {
2547 result = -ENODEV;
2548 goto unmap;
2549 }
Jens Axboee32efbf2014-11-14 09:49:26 -07002550
2551 /*
2552 * Some devices don't advertse INTx interrupts, pre-enable a single
2553 * MSIX vec for setup. We'll adjust this later.
2554 */
2555 if (!pdev->irq) {
2556 result = pci_enable_msix(pdev, dev->entry, 1);
2557 if (result < 0)
2558 goto unmap;
2559 }
2560
Keith Busch42f61422014-03-24 10:46:25 -06002561 cap = readq(&dev->bar->cap);
2562 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
2563 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
Keith Busch0877cb02013-07-15 15:02:19 -06002564 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002565 if (readl(&dev->bar->vs) >= NVME_VS(1, 2))
2566 dev->cmb = nvme_map_cmb(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002567
2568 return 0;
2569
Keith Busch0e53d182013-12-10 13:10:39 -07002570 unmap:
2571 iounmap(dev->bar);
2572 dev->bar = NULL;
Keith Busch0877cb02013-07-15 15:02:19 -06002573 disable:
2574 pci_release_regions(pdev);
2575 disable_pci:
2576 pci_disable_device(pdev);
2577 return result;
2578}
2579
2580static void nvme_dev_unmap(struct nvme_dev *dev)
2581{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002582 struct pci_dev *pdev = to_pci_dev(dev->dev);
2583
2584 if (pdev->msi_enabled)
2585 pci_disable_msi(pdev);
2586 else if (pdev->msix_enabled)
2587 pci_disable_msix(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002588
2589 if (dev->bar) {
2590 iounmap(dev->bar);
2591 dev->bar = NULL;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002592 pci_release_regions(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002593 }
2594
Christoph Hellwige75ec752015-05-22 11:12:39 +02002595 if (pci_is_enabled(pdev))
2596 pci_disable_device(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002597}
2598
Keith Busch4d115422013-12-10 13:10:40 -07002599struct nvme_delq_ctx {
2600 struct task_struct *waiter;
2601 struct kthread_worker *worker;
2602 atomic_t refcount;
2603};
2604
2605static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev)
2606{
2607 dq->waiter = current;
2608 mb();
2609
2610 for (;;) {
2611 set_current_state(TASK_KILLABLE);
2612 if (!atomic_read(&dq->refcount))
2613 break;
2614 if (!schedule_timeout(ADMIN_TIMEOUT) ||
2615 fatal_signal_pending(current)) {
Keith Busch0fb59cb2015-01-07 18:55:50 -07002616 /*
2617 * Disable the controller first since we can't trust it
2618 * at this point, but leave the admin queue enabled
2619 * until all queue deletion requests are flushed.
2620 * FIXME: This may take a while if there are more h/w
2621 * queues than admin tags.
2622 */
Keith Busch4d115422013-12-10 13:10:40 -07002623 set_current_state(TASK_RUNNING);
Keith Busch4d115422013-12-10 13:10:40 -07002624 nvme_disable_ctrl(dev, readq(&dev->bar->cap));
Keith Busch0fb59cb2015-01-07 18:55:50 -07002625 nvme_clear_queue(dev->queues[0]);
Keith Busch4d115422013-12-10 13:10:40 -07002626 flush_kthread_worker(dq->worker);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002627 nvme_disable_queue(dev, 0);
Keith Busch4d115422013-12-10 13:10:40 -07002628 return;
2629 }
2630 }
2631 set_current_state(TASK_RUNNING);
2632}
2633
2634static void nvme_put_dq(struct nvme_delq_ctx *dq)
2635{
2636 atomic_dec(&dq->refcount);
2637 if (dq->waiter)
2638 wake_up_process(dq->waiter);
2639}
2640
2641static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq)
2642{
2643 atomic_inc(&dq->refcount);
2644 return dq;
2645}
2646
2647static void nvme_del_queue_end(struct nvme_queue *nvmeq)
2648{
2649 struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx;
Keith Busch4d115422013-12-10 13:10:40 -07002650 nvme_put_dq(dq);
2651}
2652
2653static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode,
2654 kthread_work_func_t fn)
2655{
2656 struct nvme_command c;
2657
2658 memset(&c, 0, sizeof(c));
2659 c.delete_queue.opcode = opcode;
2660 c.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2661
2662 init_kthread_work(&nvmeq->cmdinfo.work, fn);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002663 return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo,
2664 ADMIN_TIMEOUT);
Keith Busch4d115422013-12-10 13:10:40 -07002665}
2666
2667static void nvme_del_cq_work_handler(struct kthread_work *work)
2668{
2669 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2670 cmdinfo.work);
2671 nvme_del_queue_end(nvmeq);
2672}
2673
2674static int nvme_delete_cq(struct nvme_queue *nvmeq)
2675{
2676 return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq,
2677 nvme_del_cq_work_handler);
2678}
2679
2680static void nvme_del_sq_work_handler(struct kthread_work *work)
2681{
2682 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2683 cmdinfo.work);
2684 int status = nvmeq->cmdinfo.status;
2685
2686 if (!status)
2687 status = nvme_delete_cq(nvmeq);
2688 if (status)
2689 nvme_del_queue_end(nvmeq);
2690}
2691
2692static int nvme_delete_sq(struct nvme_queue *nvmeq)
2693{
2694 return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq,
2695 nvme_del_sq_work_handler);
2696}
2697
2698static void nvme_del_queue_start(struct kthread_work *work)
2699{
2700 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2701 cmdinfo.work);
Keith Busch4d115422013-12-10 13:10:40 -07002702 if (nvme_delete_sq(nvmeq))
2703 nvme_del_queue_end(nvmeq);
2704}
2705
2706static void nvme_disable_io_queues(struct nvme_dev *dev)
2707{
2708 int i;
2709 DEFINE_KTHREAD_WORKER_ONSTACK(worker);
2710 struct nvme_delq_ctx dq;
2711 struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
2712 &worker, "nvme%d", dev->instance);
2713
2714 if (IS_ERR(kworker_task)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002715 dev_err(dev->dev,
Keith Busch4d115422013-12-10 13:10:40 -07002716 "Failed to create queue del task\n");
2717 for (i = dev->queue_count - 1; i > 0; i--)
2718 nvme_disable_queue(dev, i);
2719 return;
2720 }
2721
2722 dq.waiter = NULL;
2723 atomic_set(&dq.refcount, 0);
2724 dq.worker = &worker;
2725 for (i = dev->queue_count - 1; i > 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002726 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002727
2728 if (nvme_suspend_queue(nvmeq))
2729 continue;
2730 nvmeq->cmdinfo.ctx = nvme_get_dq(&dq);
2731 nvmeq->cmdinfo.worker = dq.worker;
2732 init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start);
2733 queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work);
2734 }
2735 nvme_wait_dq(&dq, dev);
2736 kthread_stop(kworker_task);
2737}
2738
Dan McLeranb9afca32014-04-07 17:10:11 -06002739/*
2740* Remove the node from the device list and check
2741* for whether or not we need to stop the nvme_thread.
2742*/
2743static void nvme_dev_list_remove(struct nvme_dev *dev)
2744{
2745 struct task_struct *tmp = NULL;
2746
2747 spin_lock(&dev_list_lock);
2748 list_del_init(&dev->node);
2749 if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) {
2750 tmp = nvme_thread;
2751 nvme_thread = NULL;
2752 }
2753 spin_unlock(&dev_list_lock);
2754
2755 if (tmp)
2756 kthread_stop(tmp);
2757}
2758
Keith Buschc9d3bf82015-01-07 18:55:52 -07002759static void nvme_freeze_queues(struct nvme_dev *dev)
2760{
2761 struct nvme_ns *ns;
2762
2763 list_for_each_entry(ns, &dev->namespaces, list) {
2764 blk_mq_freeze_queue_start(ns->queue);
2765
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002766 spin_lock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002767 queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue);
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002768 spin_unlock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002769
2770 blk_mq_cancel_requeue_work(ns->queue);
2771 blk_mq_stop_hw_queues(ns->queue);
2772 }
2773}
2774
2775static void nvme_unfreeze_queues(struct nvme_dev *dev)
2776{
2777 struct nvme_ns *ns;
2778
2779 list_for_each_entry(ns, &dev->namespaces, list) {
2780 queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue);
2781 blk_mq_unfreeze_queue(ns->queue);
2782 blk_mq_start_stopped_hw_queues(ns->queue, true);
2783 blk_mq_kick_requeue_list(ns->queue);
2784 }
2785}
2786
Keith Buschf0b50732013-07-15 15:02:21 -06002787static void nvme_dev_shutdown(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002788{
Keith Busch22404272013-07-15 15:02:20 -06002789 int i;
Keith Busch7c1b2452014-06-25 11:18:12 -06002790 u32 csts = -1;
Keith Busch22404272013-07-15 15:02:20 -06002791
Dan McLeranb9afca32014-04-07 17:10:11 -06002792 nvme_dev_list_remove(dev);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002793
Keith Buschc9d3bf82015-01-07 18:55:52 -07002794 if (dev->bar) {
2795 nvme_freeze_queues(dev);
Keith Busch7c1b2452014-06-25 11:18:12 -06002796 csts = readl(&dev->bar->csts);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002797 }
Keith Busch7c1b2452014-06-25 11:18:12 -06002798 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
Keith Busch4d115422013-12-10 13:10:40 -07002799 for (i = dev->queue_count - 1; i >= 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002800 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002801 nvme_suspend_queue(nvmeq);
Keith Busch4d115422013-12-10 13:10:40 -07002802 }
2803 } else {
2804 nvme_disable_io_queues(dev);
Keith Busch1894d8f2013-07-15 15:02:22 -06002805 nvme_shutdown_ctrl(dev);
Keith Busch4d115422013-12-10 13:10:40 -07002806 nvme_disable_queue(dev, 0);
2807 }
Keith Buschf0b50732013-07-15 15:02:21 -06002808 nvme_dev_unmap(dev);
Keith Busch07836e62015-02-19 10:34:48 -07002809
2810 for (i = dev->queue_count - 1; i >= 0; i--)
2811 nvme_clear_queue(dev->queues[i]);
Keith Buschf0b50732013-07-15 15:02:21 -06002812}
2813
2814static void nvme_dev_remove(struct nvme_dev *dev)
2815{
Keith Busch5105aa52015-10-02 10:37:28 -06002816 struct nvme_ns *ns, *next;
Keith Buschf0b50732013-07-15 15:02:21 -06002817
Keith Busch5105aa52015-10-02 10:37:28 -06002818 list_for_each_entry_safe(ns, next, &dev->namespaces, list)
Keith Buscha5768aa2015-06-01 14:28:14 -06002819 nvme_ns_remove(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002820}
2821
Matthew Wilcox091b6092011-02-10 09:56:01 -05002822static int nvme_setup_prp_pools(struct nvme_dev *dev)
2823{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002824 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
Matthew Wilcox091b6092011-02-10 09:56:01 -05002825 PAGE_SIZE, PAGE_SIZE, 0);
2826 if (!dev->prp_page_pool)
2827 return -ENOMEM;
2828
Matthew Wilcox99802a72011-02-10 10:30:34 -05002829 /* Optimisation for I/Os between 4k and 128k */
Christoph Hellwige75ec752015-05-22 11:12:39 +02002830 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
Matthew Wilcox99802a72011-02-10 10:30:34 -05002831 256, 256, 0);
2832 if (!dev->prp_small_pool) {
2833 dma_pool_destroy(dev->prp_page_pool);
2834 return -ENOMEM;
2835 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002836 return 0;
2837}
2838
2839static void nvme_release_prp_pools(struct nvme_dev *dev)
2840{
2841 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002842 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002843}
2844
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002845static DEFINE_IDA(nvme_instance_ida);
2846
2847static int nvme_set_instance(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002848{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002849 int instance, error;
2850
2851 do {
2852 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
2853 return -ENODEV;
2854
2855 spin_lock(&dev_list_lock);
2856 error = ida_get_new(&nvme_instance_ida, &instance);
2857 spin_unlock(&dev_list_lock);
2858 } while (error == -EAGAIN);
2859
2860 if (error)
2861 return -ENODEV;
2862
2863 dev->instance = instance;
2864 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002865}
2866
2867static void nvme_release_instance(struct nvme_dev *dev)
2868{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002869 spin_lock(&dev_list_lock);
2870 ida_remove(&nvme_instance_ida, dev->instance);
2871 spin_unlock(&dev_list_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002872}
2873
Keith Busch5e82e952013-02-19 10:17:58 -07002874static void nvme_free_dev(struct kref *kref)
2875{
2876 struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref);
Keith Busch9ac27092014-01-31 16:53:39 -07002877
Christoph Hellwige75ec752015-05-22 11:12:39 +02002878 put_device(dev->dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07002879 put_device(dev->device);
Indraneel M285dffc2014-12-11 08:24:18 -07002880 nvme_release_instance(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06002881 if (dev->tagset.tags)
2882 blk_mq_free_tag_set(&dev->tagset);
2883 if (dev->admin_q)
2884 blk_put_queue(dev->admin_q);
Keith Busch5e82e952013-02-19 10:17:58 -07002885 kfree(dev->queues);
2886 kfree(dev->entry);
2887 kfree(dev);
2888}
2889
2890static int nvme_dev_open(struct inode *inode, struct file *f)
2891{
Keith Buschb3fffde2015-02-03 11:21:42 -07002892 struct nvme_dev *dev;
2893 int instance = iminor(inode);
2894 int ret = -ENODEV;
2895
2896 spin_lock(&dev_list_lock);
2897 list_for_each_entry(dev, &dev_list, node) {
2898 if (dev->instance == instance) {
Keith Busch2e1d8442015-02-12 15:33:00 -07002899 if (!dev->admin_q) {
2900 ret = -EWOULDBLOCK;
2901 break;
2902 }
Keith Buschb3fffde2015-02-03 11:21:42 -07002903 if (!kref_get_unless_zero(&dev->kref))
2904 break;
2905 f->private_data = dev;
2906 ret = 0;
2907 break;
2908 }
2909 }
2910 spin_unlock(&dev_list_lock);
2911
2912 return ret;
Keith Busch5e82e952013-02-19 10:17:58 -07002913}
2914
2915static int nvme_dev_release(struct inode *inode, struct file *f)
2916{
2917 struct nvme_dev *dev = f->private_data;
2918 kref_put(&dev->kref, nvme_free_dev);
2919 return 0;
2920}
2921
2922static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
2923{
2924 struct nvme_dev *dev = f->private_data;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002925 struct nvme_ns *ns;
2926
Keith Busch5e82e952013-02-19 10:17:58 -07002927 switch (cmd) {
2928 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002929 return nvme_user_cmd(dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06002930 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002931 if (list_empty(&dev->namespaces))
2932 return -ENOTTY;
2933 ns = list_first_entry(&dev->namespaces, struct nvme_ns, list);
2934 return nvme_user_cmd(dev, ns, (void __user *)arg);
Keith Busch4cc06522015-06-05 10:30:08 -06002935 case NVME_IOCTL_RESET:
2936 dev_warn(dev->dev, "resetting controller\n");
2937 return nvme_reset(dev);
Jon Derrick81f03fe2015-08-10 15:20:41 -06002938 case NVME_IOCTL_SUBSYS_RESET:
2939 return nvme_subsys_reset(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07002940 default:
2941 return -ENOTTY;
2942 }
2943}
2944
2945static const struct file_operations nvme_dev_fops = {
2946 .owner = THIS_MODULE,
2947 .open = nvme_dev_open,
2948 .release = nvme_dev_release,
2949 .unlocked_ioctl = nvme_dev_ioctl,
2950 .compat_ioctl = nvme_dev_ioctl,
2951};
2952
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002953static void nvme_probe_work(struct work_struct *work)
Keith Buschf0b50732013-07-15 15:02:21 -06002954{
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002955 struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work);
Dan McLeranb9afca32014-04-07 17:10:11 -06002956 bool start_thread = false;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002957 int result;
Keith Buschf0b50732013-07-15 15:02:21 -06002958
2959 result = nvme_dev_map(dev);
2960 if (result)
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002961 goto out;
Keith Buschf0b50732013-07-15 15:02:21 -06002962
2963 result = nvme_configure_admin_queue(dev);
2964 if (result)
2965 goto unmap;
2966
2967 spin_lock(&dev_list_lock);
Dan McLeranb9afca32014-04-07 17:10:11 -06002968 if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) {
2969 start_thread = true;
2970 nvme_thread = NULL;
2971 }
Keith Buschf0b50732013-07-15 15:02:21 -06002972 list_add(&dev->node, &dev_list);
2973 spin_unlock(&dev_list_lock);
2974
Dan McLeranb9afca32014-04-07 17:10:11 -06002975 if (start_thread) {
2976 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
Keith Busch387caa52014-09-22 13:46:19 -06002977 wake_up_all(&nvme_kthread_wait);
Dan McLeranb9afca32014-04-07 17:10:11 -06002978 } else
2979 wait_event_killable(nvme_kthread_wait, nvme_thread);
2980
2981 if (IS_ERR_OR_NULL(nvme_thread)) {
2982 result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR;
2983 goto disable;
2984 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002985
2986 nvme_init_queue(dev->queues[0], 0);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002987 result = nvme_alloc_admin_tags(dev);
2988 if (result)
2989 goto disable;
Dan McLeranb9afca32014-04-07 17:10:11 -06002990
Keith Buschf0b50732013-07-15 15:02:21 -06002991 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06002992 if (result)
Keith Busch0fb59cb2015-01-07 18:55:50 -07002993 goto free_tags;
Keith Buschf0b50732013-07-15 15:02:21 -06002994
Keith Busch1efccc92015-03-31 10:37:17 -06002995 dev->event_limit = 1;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02002996
2997 if (dev->online_queues < 2) {
2998 dev_warn(dev->dev, "IO queues not created\n");
2999 nvme_free_queues(dev, 1);
3000 nvme_dev_remove(dev);
3001 } else {
3002 nvme_unfreeze_queues(dev);
3003 nvme_dev_add(dev);
3004 }
3005
3006 return;
Keith Buschf0b50732013-07-15 15:02:21 -06003007
Keith Busch0fb59cb2015-01-07 18:55:50 -07003008 free_tags:
3009 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06003010 blk_put_queue(dev->admin_q);
3011 dev->admin_q = NULL;
3012 dev->queues[0]->tags = NULL;
Keith Buschf0b50732013-07-15 15:02:21 -06003013 disable:
Keith Buscha1a5ef92013-12-16 13:50:00 -05003014 nvme_disable_queue(dev, 0);
Dan McLeranb9afca32014-04-07 17:10:11 -06003015 nvme_dev_list_remove(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003016 unmap:
3017 nvme_dev_unmap(dev);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003018 out:
3019 if (!work_busy(&dev->reset_work))
3020 nvme_dead_ctrl(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003021}
3022
Keith Busch9a6b9452013-12-10 13:10:36 -07003023static int nvme_remove_dead_ctrl(void *arg)
3024{
3025 struct nvme_dev *dev = (struct nvme_dev *)arg;
Christoph Hellwige75ec752015-05-22 11:12:39 +02003026 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003027
3028 if (pci_get_drvdata(pdev))
Keith Buschc81f4972014-06-23 15:24:53 -06003029 pci_stop_and_remove_bus_device_locked(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003030 kref_put(&dev->kref, nvme_free_dev);
3031 return 0;
3032}
3033
Keith Buschde3eff22015-06-18 13:36:39 -06003034static void nvme_dead_ctrl(struct nvme_dev *dev)
3035{
3036 dev_warn(dev->dev, "Device failed to resume\n");
3037 kref_get(&dev->kref);
3038 if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
3039 dev->instance))) {
3040 dev_err(dev->dev,
3041 "Failed to start controller remove task\n");
3042 kref_put(&dev->kref, nvme_free_dev);
3043 }
3044}
3045
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003046static void nvme_reset_work(struct work_struct *ws)
Keith Busch9a6b9452013-12-10 13:10:36 -07003047{
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003048 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003049 bool in_probe = work_busy(&dev->probe_work);
3050
Keith Busch9a6b9452013-12-10 13:10:36 -07003051 nvme_dev_shutdown(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003052
3053 /* Synchronize with device probe so that work will see failure status
3054 * and exit gracefully without trying to schedule another reset */
3055 flush_work(&dev->probe_work);
3056
3057 /* Fail this device if reset occured during probe to avoid
3058 * infinite initialization loops. */
3059 if (in_probe) {
Keith Buschde3eff22015-06-18 13:36:39 -06003060 nvme_dead_ctrl(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003061 return;
Keith Busch9a6b9452013-12-10 13:10:36 -07003062 }
Keith Buschffe77042015-06-08 10:08:15 -06003063 /* Schedule device resume asynchronously so the reset work is available
3064 * to cleanup errors that may occur during reinitialization */
3065 schedule_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003066}
3067
Christoph Hellwig906678922015-10-02 18:49:23 +02003068static int __nvme_reset(struct nvme_dev *dev)
3069{
3070 if (work_pending(&dev->reset_work))
3071 return -EBUSY;
3072 list_del_init(&dev->node);
3073 queue_work(nvme_workq, &dev->reset_work);
3074 return 0;
3075}
3076
Keith Busch4cc06522015-06-05 10:30:08 -06003077static int nvme_reset(struct nvme_dev *dev)
3078{
Christoph Hellwig906678922015-10-02 18:49:23 +02003079 int ret;
Keith Busch4cc06522015-06-05 10:30:08 -06003080
3081 if (!dev->admin_q || blk_queue_dying(dev->admin_q))
3082 return -ENODEV;
3083
3084 spin_lock(&dev_list_lock);
Christoph Hellwig906678922015-10-02 18:49:23 +02003085 ret = __nvme_reset(dev);
Keith Busch4cc06522015-06-05 10:30:08 -06003086 spin_unlock(&dev_list_lock);
3087
3088 if (!ret) {
3089 flush_work(&dev->reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003090 flush_work(&dev->probe_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003091 return 0;
3092 }
3093
3094 return ret;
3095}
3096
3097static ssize_t nvme_sysfs_reset(struct device *dev,
3098 struct device_attribute *attr, const char *buf,
3099 size_t count)
3100{
3101 struct nvme_dev *ndev = dev_get_drvdata(dev);
3102 int ret;
3103
3104 ret = nvme_reset(ndev);
3105 if (ret < 0)
3106 return ret;
3107
3108 return count;
3109}
3110static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
3111
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003112static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003113{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003114 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003115 struct nvme_dev *dev;
3116
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003117 node = dev_to_node(&pdev->dev);
3118 if (node == NUMA_NO_NODE)
3119 set_dev_node(&pdev->dev, 0);
3120
3121 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003122 if (!dev)
3123 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003124 dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry),
3125 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003126 if (!dev->entry)
3127 goto free;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003128 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
3129 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003130 if (!dev->queues)
3131 goto free;
3132
3133 INIT_LIST_HEAD(&dev->namespaces);
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003134 INIT_WORK(&dev->reset_work, nvme_reset_work);
Christoph Hellwige75ec752015-05-22 11:12:39 +02003135 dev->dev = get_device(&pdev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003136 pci_set_drvdata(pdev, dev);
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07003137 result = nvme_set_instance(dev);
3138 if (result)
Keith Buscha96d4f52014-08-19 19:15:59 -06003139 goto put_pci;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003140
Matthew Wilcox091b6092011-02-10 09:56:01 -05003141 result = nvme_setup_prp_pools(dev);
3142 if (result)
Keith Busch0877cb02013-07-15 15:02:19 -06003143 goto release;
Matthew Wilcox091b6092011-02-10 09:56:01 -05003144
Keith Buschfb35e912014-03-03 11:09:47 -07003145 kref_init(&dev->kref);
Keith Buschb3fffde2015-02-03 11:21:42 -07003146 dev->device = device_create(nvme_class, &pdev->dev,
3147 MKDEV(nvme_char_major, dev->instance),
3148 dev, "nvme%d", dev->instance);
3149 if (IS_ERR(dev->device)) {
3150 result = PTR_ERR(dev->device);
Keith Busch2e1d8442015-02-12 15:33:00 -07003151 goto release_pools;
Keith Buschb3fffde2015-02-03 11:21:42 -07003152 }
3153 get_device(dev->device);
Keith Busch4cc06522015-06-05 10:30:08 -06003154 dev_set_drvdata(dev->device, dev);
3155
3156 result = device_create_file(dev->device, &dev_attr_reset_controller);
3157 if (result)
3158 goto put_dev;
Keith Buschb3fffde2015-02-03 11:21:42 -07003159
Keith Busche6e96d72015-03-23 09:32:37 -06003160 INIT_LIST_HEAD(&dev->node);
Keith Buscha5768aa2015-06-01 14:28:14 -06003161 INIT_WORK(&dev->scan_work, nvme_dev_scan);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003162 INIT_WORK(&dev->probe_work, nvme_probe_work);
Keith Busch2e1d8442015-02-12 15:33:00 -07003163 schedule_work(&dev->probe_work);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003164 return 0;
3165
Keith Busch4cc06522015-06-05 10:30:08 -06003166 put_dev:
3167 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
3168 put_device(dev->device);
Keith Busch0877cb02013-07-15 15:02:19 -06003169 release_pools:
Matthew Wilcox091b6092011-02-10 09:56:01 -05003170 nvme_release_prp_pools(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06003171 release:
3172 nvme_release_instance(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06003173 put_pci:
Christoph Hellwige75ec752015-05-22 11:12:39 +02003174 put_device(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003175 free:
3176 kfree(dev->queues);
3177 kfree(dev->entry);
3178 kfree(dev);
3179 return result;
3180}
3181
Keith Buschf0d54a52014-05-02 10:40:43 -06003182static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
3183{
Keith Buscha6739472014-06-23 16:03:21 -06003184 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buschf0d54a52014-05-02 10:40:43 -06003185
Keith Buscha6739472014-06-23 16:03:21 -06003186 if (prepare)
3187 nvme_dev_shutdown(dev);
3188 else
Keith Busch0a7385a2015-10-02 10:37:29 -06003189 schedule_work(&dev->probe_work);
Keith Buschf0d54a52014-05-02 10:40:43 -06003190}
3191
Keith Busch09ece142014-01-27 11:29:40 -05003192static void nvme_shutdown(struct pci_dev *pdev)
3193{
3194 struct nvme_dev *dev = pci_get_drvdata(pdev);
3195 nvme_dev_shutdown(dev);
3196}
3197
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003198static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003199{
3200 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003201
3202 spin_lock(&dev_list_lock);
3203 list_del_init(&dev->node);
3204 spin_unlock(&dev_list_lock);
3205
3206 pci_set_drvdata(pdev, NULL);
Keith Busch2e1d8442015-02-12 15:33:00 -07003207 flush_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003208 flush_work(&dev->reset_work);
Keith Buscha5768aa2015-06-01 14:28:14 -06003209 flush_work(&dev->scan_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003210 device_remove_file(dev->device, &dev_attr_reset_controller);
Keith Buschc9d3bf82015-01-07 18:55:52 -07003211 nvme_dev_remove(dev);
Keith Busch3399a3f2015-06-18 13:36:40 -06003212 nvme_dev_shutdown(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003213 nvme_dev_remove_admin(dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07003214 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003215 nvme_free_queues(dev, 0);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06003216 nvme_release_cmb(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003217 nvme_release_prp_pools(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003218 kref_put(&dev->kref, nvme_free_dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003219}
3220
3221/* These functions are yet to be implemented */
3222#define nvme_error_detected NULL
3223#define nvme_dump_registers NULL
3224#define nvme_link_reset NULL
3225#define nvme_slot_reset NULL
3226#define nvme_error_resume NULL
Keith Buschcd638942013-07-15 15:02:23 -06003227
Jingoo Han671a6012014-02-13 11:19:14 +09003228#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06003229static int nvme_suspend(struct device *dev)
3230{
3231 struct pci_dev *pdev = to_pci_dev(dev);
3232 struct nvme_dev *ndev = pci_get_drvdata(pdev);
3233
3234 nvme_dev_shutdown(ndev);
3235 return 0;
3236}
3237
3238static int nvme_resume(struct device *dev)
3239{
3240 struct pci_dev *pdev = to_pci_dev(dev);
3241 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06003242
Keith Busch0a7385a2015-10-02 10:37:29 -06003243 schedule_work(&ndev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003244 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06003245}
Jingoo Han671a6012014-02-13 11:19:14 +09003246#endif
Keith Buschcd638942013-07-15 15:02:23 -06003247
3248static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003249
Stephen Hemminger1d352032012-09-07 09:33:17 -07003250static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003251 .error_detected = nvme_error_detected,
3252 .mmio_enabled = nvme_dump_registers,
3253 .link_reset = nvme_link_reset,
3254 .slot_reset = nvme_slot_reset,
3255 .resume = nvme_error_resume,
Keith Buschf0d54a52014-05-02 10:40:43 -06003256 .reset_notify = nvme_reset_notify,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003257};
3258
3259/* Move to pci_ids.h later */
3260#define PCI_CLASS_STORAGE_EXPRESS 0x010802
3261
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003262static const struct pci_device_id nvme_id_table[] = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003263 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
3264 { 0, }
3265};
3266MODULE_DEVICE_TABLE(pci, nvme_id_table);
3267
3268static struct pci_driver nvme_driver = {
3269 .name = "nvme",
3270 .id_table = nvme_id_table,
3271 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003272 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05003273 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06003274 .driver = {
3275 .pm = &nvme_dev_pm_ops,
3276 },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003277 .err_handler = &nvme_err_handler,
3278};
3279
3280static int __init nvme_init(void)
3281{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003282 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003283
Dan McLeranb9afca32014-04-07 17:10:11 -06003284 init_waitqueue_head(&nvme_kthread_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003285
Keith Busch9a6b9452013-12-10 13:10:36 -07003286 nvme_workq = create_singlethread_workqueue("nvme");
3287 if (!nvme_workq)
Dan McLeranb9afca32014-04-07 17:10:11 -06003288 return -ENOMEM;
Keith Busch9a6b9452013-12-10 13:10:36 -07003289
Keith Busch5c42ea12012-07-25 16:05:18 -06003290 result = register_blkdev(nvme_major, "nvme");
3291 if (result < 0)
Keith Busch9a6b9452013-12-10 13:10:36 -07003292 goto kill_workq;
Keith Busch5c42ea12012-07-25 16:05:18 -06003293 else if (result > 0)
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003294 nvme_major = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003295
Keith Buschb3fffde2015-02-03 11:21:42 -07003296 result = __register_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme",
3297 &nvme_dev_fops);
3298 if (result < 0)
3299 goto unregister_blkdev;
3300 else if (result > 0)
3301 nvme_char_major = result;
3302
3303 nvme_class = class_create(THIS_MODULE, "nvme");
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003304 if (IS_ERR(nvme_class)) {
3305 result = PTR_ERR(nvme_class);
Keith Buschb3fffde2015-02-03 11:21:42 -07003306 goto unregister_chrdev;
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003307 }
Keith Buschb3fffde2015-02-03 11:21:42 -07003308
Keith Buschf3db22f2014-06-11 11:51:35 -06003309 result = pci_register_driver(&nvme_driver);
3310 if (result)
Keith Buschb3fffde2015-02-03 11:21:42 -07003311 goto destroy_class;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003312 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003313
Keith Buschb3fffde2015-02-03 11:21:42 -07003314 destroy_class:
3315 class_destroy(nvme_class);
3316 unregister_chrdev:
3317 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003318 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003319 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003320 kill_workq:
3321 destroy_workqueue(nvme_workq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003322 return result;
3323}
3324
3325static void __exit nvme_exit(void)
3326{
3327 pci_unregister_driver(&nvme_driver);
3328 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003329 destroy_workqueue(nvme_workq);
Keith Buschb3fffde2015-02-03 11:21:42 -07003330 class_destroy(nvme_class);
3331 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Dan McLeranb9afca32014-04-07 17:10:11 -06003332 BUG_ON(nvme_thread && !IS_ERR(nvme_thread));
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04003333 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003334}
3335
3336MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
3337MODULE_LICENSE("GPL");
Keith Buschc78b47132014-11-21 15:16:32 -07003338MODULE_VERSION("1.0");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003339module_init(nvme_init);
3340module_exit(nvme_exit);