blob: 9a12d5a325551b6e1217bf788fc640e3bd2b8918 [file] [log] [blame]
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001/*
2 * NVM Express device driver
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003 * Copyright (c) 2011-2014, Intel Corporation.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050013 */
14
Matthew Wilcox8de05532011-05-12 13:50:28 -040015#include <linux/bitops.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050016#include <linux/blkdev.h>
Matias Bjørlinga4aea562014-11-04 08:20:14 -070017#include <linux/blk-mq.h>
Keith Busch42f61422014-03-24 10:46:25 -060018#include <linux/cpu.h>
Matthew Wilcoxfd63e9ce2011-05-06 08:37:54 -040019#include <linux/delay.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050020#include <linux/errno.h>
21#include <linux/fs.h>
22#include <linux/genhd.h>
Keith Busch4cc09e22014-04-02 15:45:37 -060023#include <linux/hdreg.h>
Matthew Wilcox5aff9382011-05-06 08:45:47 -040024#include <linux/idr.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050025#include <linux/init.h>
26#include <linux/interrupt.h>
27#include <linux/io.h>
28#include <linux/kdev_t.h>
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050029#include <linux/kthread.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050030#include <linux/kernel.h>
Keith Buscha5768aa2015-06-01 14:28:14 -060031#include <linux/list_sort.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050032#include <linux/mm.h>
33#include <linux/module.h>
34#include <linux/moduleparam.h>
35#include <linux/pci.h>
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -050036#include <linux/poison.h>
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -040037#include <linux/ptrace.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050038#include <linux/sched.h>
39#include <linux/slab.h>
Keith Busche1e5e562015-02-19 13:39:03 -070040#include <linux/t10-pi.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050041#include <linux/types.h>
Keith Busch1d277a62015-10-15 14:10:52 +020042#include <linux/pr.h>
Vishal Verma5d0f6132013-03-04 18:40:58 -070043#include <scsi/sg.h>
Hitoshi Mitake797a7962012-02-07 11:45:33 +090044#include <asm-generic/io-64-nonatomic-lo-hi.h>
Keith Busch1d277a62015-10-15 14:10:52 +020045#include <asm/unaligned.h>
Hitoshi Mitake797a7962012-02-07 11:45:33 +090046
Christoph Hellwig9d99a8d2015-10-02 15:25:49 +020047#include <uapi/linux/nvme_ioctl.h>
Christoph Hellwigf11bb3e2015-10-03 15:46:41 +020048#include "nvme.h"
49
Keith Buschb3fffde2015-02-03 11:21:42 -070050#define NVME_MINORS (1U << MINORBITS)
Keith Busch9d43cf62014-05-13 11:42:02 -060051#define NVME_Q_DEPTH 1024
Jens Axboed31af0a2015-03-06 12:56:13 -070052#define NVME_AQ_DEPTH 256
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050053#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
54#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
Keith Busch9d43cf62014-05-13 11:42:02 -060055#define ADMIN_TIMEOUT (admin_timeout * HZ)
Dan McLeran2484f402014-07-01 09:33:32 -060056#define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050057
Keith Busch9d43cf62014-05-13 11:42:02 -060058static unsigned char admin_timeout = 60;
59module_param(admin_timeout, byte, 0644);
60MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050061
Matthew Wilcoxbd676082014-06-03 23:04:30 -040062unsigned char nvme_io_timeout = 30;
63module_param_named(io_timeout, nvme_io_timeout, byte, 0644);
Keith Buschb3550842014-04-04 11:43:36 -060064MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050065
Dan McLeran2484f402014-07-01 09:33:32 -060066static unsigned char shutdown_timeout = 5;
67module_param(shutdown_timeout, byte, 0644);
68MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
69
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050070static int nvme_major;
71module_param(nvme_major, int, 0);
72
Keith Buschb3fffde2015-02-03 11:21:42 -070073static int nvme_char_major;
74module_param(nvme_char_major, int, 0);
75
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050076static int use_threaded_interrupts;
77module_param(use_threaded_interrupts, int, 0);
78
Jon Derrick8ffaadf2015-07-20 10:14:09 -060079static bool use_cmb_sqes = true;
80module_param(use_cmb_sqes, bool, 0644);
81MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
82
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050083static DEFINE_SPINLOCK(dev_list_lock);
84static LIST_HEAD(dev_list);
85static struct task_struct *nvme_thread;
Keith Busch9a6b9452013-12-10 13:10:36 -070086static struct workqueue_struct *nvme_workq;
Dan McLeranb9afca32014-04-07 17:10:11 -060087static wait_queue_head_t nvme_kthread_wait;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050088
Keith Buschb3fffde2015-02-03 11:21:42 -070089static struct class *nvme_class;
90
Christoph Hellwig906678922015-10-02 18:49:23 +020091static int __nvme_reset(struct nvme_dev *dev);
Keith Busch4cc06522015-06-05 10:30:08 -060092static int nvme_reset(struct nvme_dev *dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -070093static int nvme_process_cq(struct nvme_queue *nvmeq);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +020094static void nvme_dead_ctrl(struct nvme_dev *dev);
Keith Buschd4b4ff82013-12-10 13:10:37 -070095
Keith Busch4d115422013-12-10 13:10:40 -070096struct async_cmd_info {
97 struct kthread_work work;
98 struct kthread_worker *worker;
Matias Bjørlinga4aea562014-11-04 08:20:14 -070099 struct request *req;
Keith Busch4d115422013-12-10 13:10:40 -0700100 u32 result;
101 int status;
102 void *ctx;
103};
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500104
105/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500106 * An NVM Express queue. Each device has at least two (one for admin
107 * commands and one for I/O commands).
108 */
109struct nvme_queue {
110 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500111 struct nvme_dev *dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -0500112 char irqname[24]; /* nvme4294967295-65535\0 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500113 spinlock_t q_lock;
114 struct nvme_command *sq_cmds;
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600115 struct nvme_command __iomem *sq_cmds_io;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500116 volatile struct nvme_completion *cqes;
Keith Busch42483222015-06-01 09:29:54 -0600117 struct blk_mq_tags **tags;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500118 dma_addr_t sq_dma_addr;
119 dma_addr_t cq_dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500120 u32 __iomem *q_db;
121 u16 q_depth;
Jens Axboe6222d172015-01-15 15:19:10 -0700122 s16 cq_vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500123 u16 sq_head;
124 u16 sq_tail;
125 u16 cq_head;
Keith Buschc30341d2013-12-10 13:10:38 -0700126 u16 qid;
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400127 u8 cq_phase;
128 u8 cqe_seen;
Keith Busch4d115422013-12-10 13:10:40 -0700129 struct async_cmd_info cmdinfo;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500130};
131
132/*
133 * Check we didin't inadvertently grow the command struct
134 */
135static inline void _nvme_check_size(void)
136{
137 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
138 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
139 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
140 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
141 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
Vishal Vermaf8ebf842013-03-27 07:13:41 -0400142 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
Keith Buschc30341d2013-12-10 13:10:38 -0700143 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500144 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
145 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
146 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
147 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
Keith Busch6ecec742012-09-26 12:49:27 -0600148 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500149}
150
Keith Buschedd10d32014-04-03 16:45:23 -0600151typedef void (*nvme_completion_fn)(struct nvme_queue *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400152 struct nvme_completion *);
153
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500154struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400155 nvme_completion_fn fn;
156 void *ctx;
Keith Buschc30341d2013-12-10 13:10:38 -0700157 int aborted;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700158 struct nvme_queue *nvmeq;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700159 struct nvme_iod iod[0];
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500160};
161
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700162/*
163 * Max size of iod being embedded in the request payload
164 */
165#define NVME_INT_PAGES 2
166#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->page_size)
Chong Yuanfda631f2015-03-27 09:21:32 +0800167#define NVME_INT_MASK 0x01
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700168
169/*
170 * Will slightly overestimate the number of pages needed. This is OK
171 * as it only leads to a small amount of wasted memory for the lifetime of
172 * the I/O.
173 */
174static int nvme_npages(unsigned size, struct nvme_dev *dev)
175{
176 unsigned nprps = DIV_ROUND_UP(size + dev->page_size, dev->page_size);
177 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
178}
179
180static unsigned int nvme_cmd_size(struct nvme_dev *dev)
181{
182 unsigned int ret = sizeof(struct nvme_cmd_info);
183
184 ret += sizeof(struct nvme_iod);
185 ret += sizeof(__le64 *) * nvme_npages(NVME_INT_BYTES(dev), dev);
186 ret += sizeof(struct scatterlist) * NVME_INT_PAGES;
187
188 return ret;
189}
190
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700191static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
192 unsigned int hctx_idx)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500193{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700194 struct nvme_dev *dev = data;
195 struct nvme_queue *nvmeq = dev->queues[0];
196
Keith Busch42483222015-06-01 09:29:54 -0600197 WARN_ON(hctx_idx != 0);
198 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
199 WARN_ON(nvmeq->tags);
200
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700201 hctx->driver_data = nvmeq;
Keith Busch42483222015-06-01 09:29:54 -0600202 nvmeq->tags = &dev->admin_tagset.tags[0];
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700203 return 0;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500204}
205
Keith Busch4af0e212015-06-08 10:08:13 -0600206static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
207{
208 struct nvme_queue *nvmeq = hctx->driver_data;
209
210 nvmeq->tags = NULL;
211}
212
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700213static int nvme_admin_init_request(void *data, struct request *req,
214 unsigned int hctx_idx, unsigned int rq_idx,
215 unsigned int numa_node)
Keith Busch22404272013-07-15 15:02:20 -0600216{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700217 struct nvme_dev *dev = data;
218 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
219 struct nvme_queue *nvmeq = dev->queues[0];
220
221 BUG_ON(!nvmeq);
222 cmd->nvmeq = nvmeq;
223 return 0;
Keith Busch22404272013-07-15 15:02:20 -0600224}
225
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700226static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
227 unsigned int hctx_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500228{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700229 struct nvme_dev *dev = data;
Keith Busch42483222015-06-01 09:29:54 -0600230 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500231
Keith Busch42483222015-06-01 09:29:54 -0600232 if (!nvmeq->tags)
233 nvmeq->tags = &dev->tagset.tags[hctx_idx];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500234
Keith Busch42483222015-06-01 09:29:54 -0600235 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700236 hctx->driver_data = nvmeq;
237 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500238}
239
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700240static int nvme_init_request(void *data, struct request *req,
241 unsigned int hctx_idx, unsigned int rq_idx,
242 unsigned int numa_node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500243{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700244 struct nvme_dev *dev = data;
245 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
246 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
247
248 BUG_ON(!nvmeq);
249 cmd->nvmeq = nvmeq;
250 return 0;
251}
252
253static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx,
254 nvme_completion_fn handler)
255{
256 cmd->fn = handler;
257 cmd->ctx = ctx;
258 cmd->aborted = 0;
Keith Buschc917dfe2015-01-07 18:55:48 -0700259 blk_mq_start_request(blk_mq_rq_from_pdu(cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500260}
261
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700262static void *iod_get_private(struct nvme_iod *iod)
263{
264 return (void *) (iod->private & ~0x1UL);
265}
266
267/*
268 * If bit 0 is set, the iod is embedded in the request payload.
269 */
270static bool iod_should_kfree(struct nvme_iod *iod)
271{
Chong Yuanfda631f2015-03-27 09:21:32 +0800272 return (iod->private & NVME_INT_MASK) == 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700273}
274
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400275/* Special values must be less than 0x1000 */
276#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500277#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
278#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
279#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500280
Keith Buschedd10d32014-04-03 16:45:23 -0600281static void special_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400282 struct nvme_completion *cqe)
283{
284 if (ctx == CMD_CTX_CANCELLED)
285 return;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400286 if (ctx == CMD_CTX_COMPLETED) {
Keith Buschedd10d32014-04-03 16:45:23 -0600287 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400288 "completed id %d twice on queue %d\n",
289 cqe->command_id, le16_to_cpup(&cqe->sq_id));
290 return;
291 }
292 if (ctx == CMD_CTX_INVALID) {
Keith Buschedd10d32014-04-03 16:45:23 -0600293 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400294 "invalid id %d completed on queue %d\n",
295 cqe->command_id, le16_to_cpup(&cqe->sq_id));
296 return;
297 }
Keith Buschedd10d32014-04-03 16:45:23 -0600298 dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400299}
300
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700301static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn)
302{
303 void *ctx;
304
305 if (fn)
306 *fn = cmd->fn;
307 ctx = cmd->ctx;
308 cmd->fn = special_completion;
309 cmd->ctx = CMD_CTX_CANCELLED;
310 return ctx;
311}
312
313static void async_req_completion(struct nvme_queue *nvmeq, void *ctx,
314 struct nvme_completion *cqe)
315{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700316 u32 result = le32_to_cpup(&cqe->result);
317 u16 status = le16_to_cpup(&cqe->status) >> 1;
318
319 if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ)
320 ++nvmeq->dev->event_limit;
Keith Buscha5768aa2015-06-01 14:28:14 -0600321 if (status != NVME_SC_SUCCESS)
322 return;
323
324 switch (result & 0xff07) {
325 case NVME_AER_NOTICE_NS_CHANGED:
326 dev_info(nvmeq->q_dmadev, "rescanning\n");
327 schedule_work(&nvmeq->dev->scan_work);
328 default:
329 dev_warn(nvmeq->q_dmadev, "async event result %08x\n", result);
330 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700331}
332
333static void abort_completion(struct nvme_queue *nvmeq, void *ctx,
334 struct nvme_completion *cqe)
335{
336 struct request *req = ctx;
337
338 u16 status = le16_to_cpup(&cqe->status) >> 1;
339 u32 result = le32_to_cpup(&cqe->result);
340
Keith Busch42483222015-06-01 09:29:54 -0600341 blk_mq_free_request(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700342
343 dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result);
344 ++nvmeq->dev->abort_limit;
345}
346
Keith Buschedd10d32014-04-03 16:45:23 -0600347static void async_completion(struct nvme_queue *nvmeq, void *ctx,
Keith Busch4d115422013-12-10 13:10:40 -0700348 struct nvme_completion *cqe)
349{
350 struct async_cmd_info *cmdinfo = ctx;
351 cmdinfo->result = le32_to_cpup(&cqe->result);
352 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
353 queue_kthread_work(cmdinfo->worker, &cmdinfo->work);
Keith Busch42483222015-06-01 09:29:54 -0600354 blk_mq_free_request(cmdinfo->req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700355}
356
357static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq,
358 unsigned int tag)
359{
Keith Busch42483222015-06-01 09:29:54 -0600360 struct request *req = blk_mq_tag_to_rq(*nvmeq->tags, tag);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700361
362 return blk_mq_rq_to_pdu(req);
Keith Busch4d115422013-12-10 13:10:40 -0700363}
364
Matthew Wilcox184d2942011-05-11 21:36:38 -0400365/*
366 * Called with local interrupts disabled and the q_lock held. May not sleep.
367 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700368static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400369 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500370{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700371 struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400372 void *ctx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700373 if (tag >= nvmeq->q_depth) {
374 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500375 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400376 }
Keith Busch859361a2012-08-02 14:05:59 -0600377 if (fn)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700378 *fn = cmd->fn;
379 ctx = cmd->ctx;
380 cmd->fn = special_completion;
381 cmd->ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400382 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500383}
384
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500385/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400386 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500387 * @nvmeq: The queue to use
388 * @cmd: The command to send
389 *
390 * Safe to use from interrupt context
391 */
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530392static void __nvme_submit_cmd(struct nvme_queue *nvmeq,
393 struct nvme_command *cmd)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500394{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700395 u16 tail = nvmeq->sq_tail;
396
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600397 if (nvmeq->sq_cmds_io)
398 memcpy_toio(&nvmeq->sq_cmds_io[tail], cmd, sizeof(*cmd));
399 else
400 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
401
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500402 if (++tail == nvmeq->q_depth)
403 tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500404 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500405 nvmeq->sq_tail = tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500406}
407
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530408static void nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700409{
410 unsigned long flags;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700411 spin_lock_irqsave(&nvmeq->q_lock, flags);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530412 __nvme_submit_cmd(nvmeq, cmd);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700413 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700414}
415
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500416static __le64 **iod_list(struct nvme_iod *iod)
417{
418 return ((void *)iod) + iod->offset;
419}
420
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700421static inline void iod_init(struct nvme_iod *iod, unsigned nbytes,
422 unsigned nseg, unsigned long private)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500423{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700424 iod->private = private;
425 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
426 iod->npages = -1;
427 iod->length = nbytes;
428 iod->nents = 0;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500429}
430
431static struct nvme_iod *
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700432__nvme_alloc_iod(unsigned nseg, unsigned bytes, struct nvme_dev *dev,
433 unsigned long priv, gfp_t gfp)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500434{
435 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700436 sizeof(__le64 *) * nvme_npages(bytes, dev) +
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500437 sizeof(struct scatterlist) * nseg, gfp);
438
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700439 if (iod)
440 iod_init(iod, bytes, nseg, priv);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500441
442 return iod;
443}
444
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700445static struct nvme_iod *nvme_alloc_iod(struct request *rq, struct nvme_dev *dev,
446 gfp_t gfp)
447{
448 unsigned size = !(rq->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(rq) :
449 sizeof(struct nvme_dsm_range);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700450 struct nvme_iod *iod;
451
452 if (rq->nr_phys_segments <= NVME_INT_PAGES &&
453 size <= NVME_INT_BYTES(dev)) {
454 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(rq);
455
456 iod = cmd->iod;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700457 iod_init(iod, size, rq->nr_phys_segments,
Chong Yuanfda631f2015-03-27 09:21:32 +0800458 (unsigned long) rq | NVME_INT_MASK);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700459 return iod;
460 }
461
462 return __nvme_alloc_iod(rq->nr_phys_segments, size, dev,
463 (unsigned long) rq, gfp);
464}
465
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200466static void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500467{
Keith Busch1d090622014-06-23 11:34:01 -0600468 const int last_prp = dev->page_size / 8 - 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500469 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500470 __le64 **list = iod_list(iod);
471 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500472
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500473 if (iod->npages == 0)
474 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
475 for (i = 0; i < iod->npages; i++) {
476 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500477 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500478 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500479 prp_dma = next_prp_dma;
480 }
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700481
482 if (iod_should_kfree(iod))
483 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500484}
485
Keith Buschb4ff9c82014-08-29 09:06:12 -0600486static int nvme_error_status(u16 status)
487{
488 switch (status & 0x7ff) {
489 case NVME_SC_SUCCESS:
490 return 0;
491 case NVME_SC_CAP_EXCEEDED:
492 return -ENOSPC;
493 default:
494 return -EIO;
495 }
496}
497
Keith Busch52b68d72015-02-23 09:16:21 -0700498#ifdef CONFIG_BLK_DEV_INTEGRITY
Keith Busche1e5e562015-02-19 13:39:03 -0700499static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
500{
501 if (be32_to_cpu(pi->ref_tag) == v)
502 pi->ref_tag = cpu_to_be32(p);
503}
504
505static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
506{
507 if (be32_to_cpu(pi->ref_tag) == p)
508 pi->ref_tag = cpu_to_be32(v);
509}
510
511/**
512 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
513 *
514 * The virtual start sector is the one that was originally submitted by the
515 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
516 * start sector may be different. Remap protection information to match the
517 * physical LBA on writes, and back to the original seed on reads.
518 *
519 * Type 0 and 3 do not have a ref tag, so no remapping required.
520 */
521static void nvme_dif_remap(struct request *req,
522 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
523{
524 struct nvme_ns *ns = req->rq_disk->private_data;
525 struct bio_integrity_payload *bip;
526 struct t10_pi_tuple *pi;
527 void *p, *pmap;
528 u32 i, nlb, ts, phys, virt;
529
530 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
531 return;
532
533 bip = bio_integrity(req->bio);
534 if (!bip)
535 return;
536
537 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
Keith Busche1e5e562015-02-19 13:39:03 -0700538
539 p = pmap;
540 virt = bip_get_seed(bip);
541 phys = nvme_block_nr(ns, blk_rq_pos(req));
542 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
543 ts = ns->disk->integrity->tuple_size;
544
545 for (i = 0; i < nlb; i++, virt++, phys++) {
546 pi = (struct t10_pi_tuple *)p;
547 dif_swap(phys, virt, pi);
548 p += ts;
549 }
550 kunmap_atomic(pmap);
551}
552
Keith Busch52b68d72015-02-23 09:16:21 -0700553static int nvme_noop_verify(struct blk_integrity_iter *iter)
554{
555 return 0;
556}
557
558static int nvme_noop_generate(struct blk_integrity_iter *iter)
559{
560 return 0;
561}
562
563struct blk_integrity nvme_meta_noop = {
564 .name = "NVME_META_NOOP",
565 .generate_fn = nvme_noop_generate,
566 .verify_fn = nvme_noop_verify,
567};
568
569static void nvme_init_integrity(struct nvme_ns *ns)
570{
571 struct blk_integrity integrity;
572
573 switch (ns->pi_type) {
574 case NVME_NS_DPS_PI_TYPE3:
575 integrity = t10_pi_type3_crc;
576 break;
577 case NVME_NS_DPS_PI_TYPE1:
578 case NVME_NS_DPS_PI_TYPE2:
579 integrity = t10_pi_type1_crc;
580 break;
581 default:
582 integrity = nvme_meta_noop;
583 break;
584 }
585 integrity.tuple_size = ns->ms;
586 blk_integrity_register(ns->disk, &integrity);
587 blk_queue_max_integrity_segments(ns->queue, 1);
588}
589#else /* CONFIG_BLK_DEV_INTEGRITY */
590static void nvme_dif_remap(struct request *req,
591 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
592{
593}
594static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
595{
596}
597static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
598{
599}
600static void nvme_init_integrity(struct nvme_ns *ns)
601{
602}
603#endif
604
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700605static void req_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500606 struct nvme_completion *cqe)
607{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500608 struct nvme_iod *iod = ctx;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700609 struct request *req = iod_get_private(iod);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700610 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500611 u16 status = le16_to_cpup(&cqe->status) >> 1;
Jens Axboeef658fc2015-10-15 09:49:57 -0600612 int error = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500613
Keith Buschedd10d32014-04-03 16:45:23 -0600614 if (unlikely(status)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700615 if (!(status & NVME_SC_DNR || blk_noretry_request(req))
616 && (jiffies - req->start_time) < req->timeout) {
Keith Buschc9d3bf82015-01-07 18:55:52 -0700617 unsigned long flags;
618
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700619 blk_mq_requeue_request(req);
Keith Buschc9d3bf82015-01-07 18:55:52 -0700620 spin_lock_irqsave(req->q->queue_lock, flags);
621 if (!blk_queue_stopped(req->q))
622 blk_mq_kick_requeue_list(req->q);
623 spin_unlock_irqrestore(req->q->queue_lock, flags);
Keith Buschedd10d32014-04-03 16:45:23 -0600624 return;
625 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200626
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200627 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
Keith Busch17188bb42015-06-08 10:08:14 -0600628 if (cmd_rq->ctx == CMD_CTX_CANCELLED)
Christoph Hellwig1951fea2015-10-12 21:23:39 +0200629 error = -EINTR;
630 else
631 error = status;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200632 } else {
Christoph Hellwig1951fea2015-10-12 21:23:39 +0200633 error = nvme_error_status(status);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200634 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200635 }
636
Keith Buscha0a931d2015-05-22 12:28:31 -0600637 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
638 u32 result = le32_to_cpup(&cqe->result);
639 req->special = (void *)(uintptr_t)result;
640 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700641
642 if (cmd_rq->aborted)
Christoph Hellwige75ec752015-05-22 11:12:39 +0200643 dev_warn(nvmeq->dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700644 "completing aborted command with status:%04x\n",
Christoph Hellwig1951fea2015-10-12 21:23:39 +0200645 error);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700646
Keith Busche1e5e562015-02-19 13:39:03 -0700647 if (iod->nents) {
Christoph Hellwige75ec752015-05-22 11:12:39 +0200648 dma_unmap_sg(nvmeq->dev->dev, iod->sg, iod->nents,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700649 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Keith Busche1e5e562015-02-19 13:39:03 -0700650 if (blk_integrity_rq(req)) {
651 if (!rq_data_dir(req))
652 nvme_dif_remap(req, nvme_dif_complete);
Christoph Hellwige75ec752015-05-22 11:12:39 +0200653 dma_unmap_sg(nvmeq->dev->dev, iod->meta_sg, 1,
Keith Busche1e5e562015-02-19 13:39:03 -0700654 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
655 }
656 }
Keith Buschedd10d32014-04-03 16:45:23 -0600657 nvme_free_iod(nvmeq->dev, iod);
Keith Busch3291fa52014-04-28 12:30:52 -0600658
Christoph Hellwig1951fea2015-10-12 21:23:39 +0200659 blk_mq_complete_request(req, error);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500660}
661
Matthew Wilcox184d2942011-05-11 21:36:38 -0400662/* length is in bytes. gfp flags indicates whether we may sleep. */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200663static int nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod,
664 int total_len, gfp_t gfp)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500665{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500666 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500667 int length = total_len;
668 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500669 int dma_len = sg_dma_len(sg);
670 u64 dma_addr = sg_dma_address(sg);
Murali Iyerf137e0f2015-03-26 11:07:51 -0500671 u32 page_size = dev->page_size;
672 int offset = dma_addr & (page_size - 1);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500673 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500674 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500675 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500676 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500677
Keith Busch1d090622014-06-23 11:34:01 -0600678 length -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500679 if (length <= 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500680 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500681
Keith Busch1d090622014-06-23 11:34:01 -0600682 dma_len -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500683 if (dma_len) {
Keith Busch1d090622014-06-23 11:34:01 -0600684 dma_addr += (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500685 } else {
686 sg = sg_next(sg);
687 dma_addr = sg_dma_address(sg);
688 dma_len = sg_dma_len(sg);
689 }
690
Keith Busch1d090622014-06-23 11:34:01 -0600691 if (length <= page_size) {
Keith Buschedd10d32014-04-03 16:45:23 -0600692 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500693 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500694 }
695
Keith Busch1d090622014-06-23 11:34:01 -0600696 nprps = DIV_ROUND_UP(length, page_size);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500697 if (nprps <= (256 / 8)) {
698 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500699 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500700 } else {
701 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500702 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500703 }
704
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400705 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
706 if (!prp_list) {
Keith Buschedd10d32014-04-03 16:45:23 -0600707 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500708 iod->npages = -1;
Keith Busch1d090622014-06-23 11:34:01 -0600709 return (total_len - length) + page_size;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400710 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500711 list[0] = prp_list;
712 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500713 i = 0;
714 for (;;) {
Keith Busch1d090622014-06-23 11:34:01 -0600715 if (i == page_size >> 3) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500716 __le64 *old_prp_list = prp_list;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400717 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500718 if (!prp_list)
719 return total_len - length;
720 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400721 prp_list[0] = old_prp_list[i - 1];
722 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
723 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500724 }
725 prp_list[i++] = cpu_to_le64(dma_addr);
Keith Busch1d090622014-06-23 11:34:01 -0600726 dma_len -= page_size;
727 dma_addr += page_size;
728 length -= page_size;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500729 if (length <= 0)
730 break;
731 if (dma_len > 0)
732 continue;
733 BUG_ON(dma_len < 0);
734 sg = sg_next(sg);
735 dma_addr = sg_dma_address(sg);
736 dma_len = sg_dma_len(sg);
737 }
738
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500739 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500740}
741
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200742static void nvme_submit_priv(struct nvme_queue *nvmeq, struct request *req,
743 struct nvme_iod *iod)
744{
Jon Derrick498c4392015-07-20 10:14:08 -0600745 struct nvme_command cmnd;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200746
Jon Derrick498c4392015-07-20 10:14:08 -0600747 memcpy(&cmnd, req->cmd, sizeof(cmnd));
748 cmnd.rw.command_id = req->tag;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200749 if (req->nr_phys_segments) {
Jon Derrick498c4392015-07-20 10:14:08 -0600750 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
751 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200752 }
753
Jon Derrick498c4392015-07-20 10:14:08 -0600754 __nvme_submit_cmd(nvmeq, &cmnd);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200755}
756
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700757/*
758 * We reuse the small pool to allocate the 16-byte range here as it is not
759 * worth having a special pool for these or additional cases to handle freeing
760 * the iod.
761 */
762static void nvme_submit_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns,
763 struct request *req, struct nvme_iod *iod)
Keith Busch0e5e4f02012-11-09 16:33:05 -0700764{
Keith Buschedd10d32014-04-03 16:45:23 -0600765 struct nvme_dsm_range *range =
766 (struct nvme_dsm_range *)iod_list(iod)[0];
Jon Derrick498c4392015-07-20 10:14:08 -0600767 struct nvme_command cmnd;
Keith Busch0e5e4f02012-11-09 16:33:05 -0700768
Keith Busch0e5e4f02012-11-09 16:33:05 -0700769 range->cattr = cpu_to_le32(0);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700770 range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift);
771 range->slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
Keith Busch0e5e4f02012-11-09 16:33:05 -0700772
Jon Derrick498c4392015-07-20 10:14:08 -0600773 memset(&cmnd, 0, sizeof(cmnd));
774 cmnd.dsm.opcode = nvme_cmd_dsm;
775 cmnd.dsm.command_id = req->tag;
776 cmnd.dsm.nsid = cpu_to_le32(ns->ns_id);
777 cmnd.dsm.prp1 = cpu_to_le64(iod->first_dma);
778 cmnd.dsm.nr = 0;
779 cmnd.dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700780
Jon Derrick498c4392015-07-20 10:14:08 -0600781 __nvme_submit_cmd(nvmeq, &cmnd);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700782}
783
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700784static void nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500785 int cmdid)
786{
Jon Derrick498c4392015-07-20 10:14:08 -0600787 struct nvme_command cmnd;
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500788
Jon Derrick498c4392015-07-20 10:14:08 -0600789 memset(&cmnd, 0, sizeof(cmnd));
790 cmnd.common.opcode = nvme_cmd_flush;
791 cmnd.common.command_id = cmdid;
792 cmnd.common.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500793
Jon Derrick498c4392015-07-20 10:14:08 -0600794 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500795}
796
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700797static int nvme_submit_iod(struct nvme_queue *nvmeq, struct nvme_iod *iod,
798 struct nvme_ns *ns)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500799{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700800 struct request *req = iod_get_private(iod);
Jon Derrick498c4392015-07-20 10:14:08 -0600801 struct nvme_command cmnd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700802 u16 control = 0;
803 u32 dsmgmt = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500804
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700805 if (req->cmd_flags & REQ_FUA)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500806 control |= NVME_RW_FUA;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700807 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500808 control |= NVME_RW_LR;
809
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700810 if (req->cmd_flags & REQ_RAHEAD)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500811 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
812
Jon Derrick498c4392015-07-20 10:14:08 -0600813 memset(&cmnd, 0, sizeof(cmnd));
814 cmnd.rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
815 cmnd.rw.command_id = req->tag;
816 cmnd.rw.nsid = cpu_to_le32(ns->ns_id);
817 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
818 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
819 cmnd.rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
820 cmnd.rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500821
Alok Pandeye19b1272015-08-26 08:56:14 -0600822 if (ns->ms) {
Keith Busche1e5e562015-02-19 13:39:03 -0700823 switch (ns->pi_type) {
824 case NVME_NS_DPS_PI_TYPE3:
825 control |= NVME_RW_PRINFO_PRCHK_GUARD;
826 break;
827 case NVME_NS_DPS_PI_TYPE1:
828 case NVME_NS_DPS_PI_TYPE2:
829 control |= NVME_RW_PRINFO_PRCHK_GUARD |
830 NVME_RW_PRINFO_PRCHK_REF;
Jon Derrick498c4392015-07-20 10:14:08 -0600831 cmnd.rw.reftag = cpu_to_le32(
Keith Busche1e5e562015-02-19 13:39:03 -0700832 nvme_block_nr(ns, blk_rq_pos(req)));
833 break;
834 }
Alok Pandeye19b1272015-08-26 08:56:14 -0600835 if (blk_integrity_rq(req))
836 cmnd.rw.metadata =
837 cpu_to_le64(sg_dma_address(iod->meta_sg));
838 else
839 control |= NVME_RW_PRINFO_PRACT;
840 }
Keith Busche1e5e562015-02-19 13:39:03 -0700841
Jon Derrick498c4392015-07-20 10:14:08 -0600842 cmnd.rw.control = cpu_to_le16(control);
843 cmnd.rw.dsmgmt = cpu_to_le32(dsmgmt);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500844
Jon Derrick498c4392015-07-20 10:14:08 -0600845 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500846
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500847 return 0;
Keith Buschedd10d32014-04-03 16:45:23 -0600848}
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500849
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200850/*
851 * NOTE: ns is NULL when called on the admin queue.
852 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700853static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
854 const struct blk_mq_queue_data *bd)
Keith Busch53562be2014-04-29 11:41:29 -0600855{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700856 struct nvme_ns *ns = hctx->queue->queuedata;
857 struct nvme_queue *nvmeq = hctx->driver_data;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200858 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700859 struct request *req = bd->rq;
860 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
Keith Buschedd10d32014-04-03 16:45:23 -0600861 struct nvme_iod *iod;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700862 enum dma_data_direction dma_dir;
Keith Buschedd10d32014-04-03 16:45:23 -0600863
Keith Busche1e5e562015-02-19 13:39:03 -0700864 /*
865 * If formated with metadata, require the block layer provide a buffer
866 * unless this namespace is formated such that the metadata can be
867 * stripped/generated by the controller with PRACT=1.
868 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200869 if (ns && ns->ms && !blk_integrity_rq(req)) {
Keith Busch71feb362015-06-19 11:07:30 -0600870 if (!(ns->pi_type && ns->ms == 8) &&
871 req->cmd_type != REQ_TYPE_DRV_PRIV) {
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200872 blk_mq_complete_request(req, -EFAULT);
Keith Busche1e5e562015-02-19 13:39:03 -0700873 return BLK_MQ_RQ_QUEUE_OK;
874 }
875 }
876
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200877 iod = nvme_alloc_iod(req, dev, GFP_ATOMIC);
Keith Buschedd10d32014-04-03 16:45:23 -0600878 if (!iod)
Jens Axboefe543032014-12-11 13:58:39 -0700879 return BLK_MQ_RQ_QUEUE_BUSY;
Keith Buschedd10d32014-04-03 16:45:23 -0600880
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700881 if (req->cmd_flags & REQ_DISCARD) {
Keith Buschedd10d32014-04-03 16:45:23 -0600882 void *range;
883 /*
884 * We reuse the small pool to allocate the 16-byte range here
885 * as it is not worth having a special pool for these or
886 * additional cases to handle freeing the iod.
887 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200888 range = dma_pool_alloc(dev->prp_small_pool, GFP_ATOMIC,
Keith Buschedd10d32014-04-03 16:45:23 -0600889 &iod->first_dma);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700890 if (!range)
Jens Axboefe543032014-12-11 13:58:39 -0700891 goto retry_cmd;
Keith Buschedd10d32014-04-03 16:45:23 -0600892 iod_list(iod)[0] = (__le64 *)range;
893 iod->npages = 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700894 } else if (req->nr_phys_segments) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700895 dma_dir = rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Keith Buschedd10d32014-04-03 16:45:23 -0600896
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700897 sg_init_table(iod->sg, req->nr_phys_segments);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700898 iod->nents = blk_rq_map_sg(req->q, req, iod->sg);
Jens Axboefe543032014-12-11 13:58:39 -0700899 if (!iod->nents)
900 goto error_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700901
902 if (!dma_map_sg(nvmeq->q_dmadev, iod->sg, iod->nents, dma_dir))
Jens Axboefe543032014-12-11 13:58:39 -0700903 goto retry_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700904
Jens Axboefe543032014-12-11 13:58:39 -0700905 if (blk_rq_bytes(req) !=
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200906 nvme_setup_prps(dev, iod, blk_rq_bytes(req), GFP_ATOMIC)) {
907 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
Jens Axboefe543032014-12-11 13:58:39 -0700908 goto retry_cmd;
909 }
Keith Busche1e5e562015-02-19 13:39:03 -0700910 if (blk_integrity_rq(req)) {
911 if (blk_rq_count_integrity_sg(req->q, req->bio) != 1)
912 goto error_cmd;
913
914 sg_init_table(iod->meta_sg, 1);
915 if (blk_rq_map_integrity_sg(
916 req->q, req->bio, iod->meta_sg) != 1)
917 goto error_cmd;
918
919 if (rq_data_dir(req))
920 nvme_dif_remap(req, nvme_dif_prep);
921
922 if (!dma_map_sg(nvmeq->q_dmadev, iod->meta_sg, 1, dma_dir))
923 goto error_cmd;
924 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700925 }
926
Keith Busch9af87852014-12-03 17:07:13 -0700927 nvme_set_info(cmd, iod, req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700928 spin_lock_irq(&nvmeq->q_lock);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200929 if (req->cmd_type == REQ_TYPE_DRV_PRIV)
930 nvme_submit_priv(nvmeq, req, iod);
931 else if (req->cmd_flags & REQ_DISCARD)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700932 nvme_submit_discard(nvmeq, ns, req, iod);
933 else if (req->cmd_flags & REQ_FLUSH)
934 nvme_submit_flush(nvmeq, ns, req->tag);
935 else
936 nvme_submit_iod(nvmeq, iod, ns);
937
938 nvme_process_cq(nvmeq);
939 spin_unlock_irq(&nvmeq->q_lock);
940 return BLK_MQ_RQ_QUEUE_OK;
941
Jens Axboefe543032014-12-11 13:58:39 -0700942 error_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200943 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700944 return BLK_MQ_RQ_QUEUE_ERROR;
945 retry_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200946 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -0700947 return BLK_MQ_RQ_QUEUE_BUSY;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500948}
949
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400950static int nvme_process_cq(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500951{
Matthew Wilcox82123462011-01-20 13:24:06 -0500952 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500953
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500954 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500955 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500956
957 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400958 void *ctx;
959 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500960 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -0500961 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500962 break;
963 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
964 if (++head == nvmeq->q_depth) {
965 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500966 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500967 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700968 ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn);
Keith Buschedd10d32014-04-03 16:45:23 -0600969 fn(nvmeq, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500970 }
971
972 /* If the controller ignores the cq head doorbell and continuously
973 * writes to the queue, it is theoretically possible to wrap around
974 * the queue twice and mistakenly return IRQ_NONE. Linux only
975 * requires that 0.1% of your interrupts are handled, so this isn't
976 * a big problem.
977 */
Matthew Wilcox82123462011-01-20 13:24:06 -0500978 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400979 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500980
Haiyan Hub80d5cc2013-09-10 11:25:37 +0800981 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500982 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500983 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500984
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400985 nvmeq->cqe_seen = 1;
986 return 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500987}
988
989static irqreturn_t nvme_irq(int irq, void *data)
990{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500991 irqreturn_t result;
992 struct nvme_queue *nvmeq = data;
993 spin_lock(&nvmeq->q_lock);
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400994 nvme_process_cq(nvmeq);
995 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
996 nvmeq->cqe_seen = 0;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500997 spin_unlock(&nvmeq->q_lock);
998 return result;
999}
1000
1001static irqreturn_t nvme_irq_check(int irq, void *data)
1002{
1003 struct nvme_queue *nvmeq = data;
1004 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
1005 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
1006 return IRQ_NONE;
1007 return IRQ_WAKE_THREAD;
1008}
1009
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001010/*
1011 * Returns 0 on success. If the result is negative, it's a Linux error code;
1012 * if the result is positive, it's an NVM Express status code
1013 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001014int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1015 void *buffer, void __user *ubuffer, unsigned bufflen,
1016 u32 *result, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001017{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001018 bool write = cmd->common.opcode & 1;
1019 struct bio *bio = NULL;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001020 struct request *req;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001021 int ret;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001022
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001023 req = blk_mq_alloc_request(q, write, GFP_KERNEL, false);
Christoph Hellwigf705f832015-05-22 11:12:38 +02001024 if (IS_ERR(req))
1025 return PTR_ERR(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001026
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001027 req->cmd_type = REQ_TYPE_DRV_PRIV;
Matias Bjørlinge112af02015-06-05 14:54:24 +02001028 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001029 req->__data_len = 0;
1030 req->__sector = (sector_t) -1;
1031 req->bio = req->biotail = NULL;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001032
Keith Buschf4ff4142015-05-28 09:48:54 -06001033 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001034
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001035 req->cmd = (unsigned char *)cmd;
1036 req->cmd_len = sizeof(struct nvme_command);
Keith Buscha0a931d2015-05-22 12:28:31 -06001037 req->special = (void *)0;
Matthew Wilcox3c0cf132011-02-04 16:03:56 -05001038
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001039 if (buffer && bufflen) {
1040 ret = blk_rq_map_kern(q, req, buffer, bufflen, __GFP_WAIT);
1041 if (ret)
1042 goto out;
1043 } else if (ubuffer && bufflen) {
1044 ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen, __GFP_WAIT);
1045 if (ret)
1046 goto out;
1047 bio = req->bio;
1048 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001049
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001050 blk_execute_rq(req->q, NULL, req, 0);
1051 if (bio)
1052 blk_rq_unmap_user(bio);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001053 if (result)
Keith Buscha0a931d2015-05-22 12:28:31 -06001054 *result = (u32)(uintptr_t)req->special;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001055 ret = req->errors;
1056 out:
Christoph Hellwigf705f832015-05-22 11:12:38 +02001057 blk_mq_free_request(req);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001058 return ret;
Christoph Hellwigf705f832015-05-22 11:12:38 +02001059}
1060
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001061int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1062 void *buffer, unsigned bufflen)
Christoph Hellwigf705f832015-05-22 11:12:38 +02001063{
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001064 return __nvme_submit_sync_cmd(q, cmd, buffer, NULL, bufflen, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001065}
1066
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001067static int nvme_submit_async_admin_req(struct nvme_dev *dev)
1068{
1069 struct nvme_queue *nvmeq = dev->queues[0];
1070 struct nvme_command c;
1071 struct nvme_cmd_info *cmd_info;
1072 struct request *req;
1073
Keith Busch1efccc92015-03-31 10:37:17 -06001074 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC, true);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001075 if (IS_ERR(req))
1076 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001077
Keith Buschc917dfe2015-01-07 18:55:48 -07001078 req->cmd_flags |= REQ_NO_TIMEOUT;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001079 cmd_info = blk_mq_rq_to_pdu(req);
Keith Busch1efccc92015-03-31 10:37:17 -06001080 nvme_set_info(cmd_info, NULL, async_req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001081
1082 memset(&c, 0, sizeof(c));
1083 c.common.opcode = nvme_admin_async_event;
1084 c.common.command_id = req->tag;
1085
Keith Busch42483222015-06-01 09:29:54 -06001086 blk_mq_free_request(req);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301087 __nvme_submit_cmd(nvmeq, &c);
1088 return 0;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001089}
1090
1091static int nvme_submit_admin_async_cmd(struct nvme_dev *dev,
Keith Busch4d115422013-12-10 13:10:40 -07001092 struct nvme_command *cmd,
1093 struct async_cmd_info *cmdinfo, unsigned timeout)
1094{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001095 struct nvme_queue *nvmeq = dev->queues[0];
1096 struct request *req;
1097 struct nvme_cmd_info *cmd_rq;
Keith Busch4d115422013-12-10 13:10:40 -07001098
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001099 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001100 if (IS_ERR(req))
1101 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001102
1103 req->timeout = timeout;
1104 cmd_rq = blk_mq_rq_to_pdu(req);
1105 cmdinfo->req = req;
1106 nvme_set_info(cmd_rq, cmdinfo, async_completion);
Keith Busch4d115422013-12-10 13:10:40 -07001107 cmdinfo->status = -EINTR;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001108
1109 cmd->common.command_id = req->tag;
1110
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301111 nvme_submit_cmd(nvmeq, cmd);
1112 return 0;
Keith Busch4d115422013-12-10 13:10:40 -07001113}
1114
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001115static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
1116{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001117 struct nvme_command c;
1118
1119 memset(&c, 0, sizeof(c));
1120 c.delete_queue.opcode = opcode;
1121 c.delete_queue.qid = cpu_to_le16(id);
1122
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001123 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001124}
1125
1126static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
1127 struct nvme_queue *nvmeq)
1128{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001129 struct nvme_command c;
1130 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
1131
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001132 /*
1133 * Note: we (ab)use the fact the the prp fields survive if no data
1134 * is attached to the request.
1135 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001136 memset(&c, 0, sizeof(c));
1137 c.create_cq.opcode = nvme_admin_create_cq;
1138 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1139 c.create_cq.cqid = cpu_to_le16(qid);
1140 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1141 c.create_cq.cq_flags = cpu_to_le16(flags);
1142 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
1143
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001144 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001145}
1146
1147static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1148 struct nvme_queue *nvmeq)
1149{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001150 struct nvme_command c;
1151 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
1152
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001153 /*
1154 * Note: we (ab)use the fact the the prp fields survive if no data
1155 * is attached to the request.
1156 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001157 memset(&c, 0, sizeof(c));
1158 c.create_sq.opcode = nvme_admin_create_sq;
1159 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1160 c.create_sq.sqid = cpu_to_le16(qid);
1161 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1162 c.create_sq.sq_flags = cpu_to_le16(flags);
1163 c.create_sq.cqid = cpu_to_le16(qid);
1164
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001165 return nvme_submit_sync_cmd(dev->admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001166}
1167
1168static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1169{
1170 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1171}
1172
1173static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1174{
1175 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1176}
1177
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001178int nvme_identify_ctrl(struct nvme_dev *dev, struct nvme_id_ctrl **id)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001179{
Andrew Mortone44ac582015-06-27 12:20:34 -06001180 struct nvme_command c = { };
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001181 int error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001182
Andrew Mortone44ac582015-06-27 12:20:34 -06001183 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1184 c.identify.opcode = nvme_admin_identify;
1185 c.identify.cns = cpu_to_le32(1);
1186
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001187 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
1188 if (!*id)
1189 return -ENOMEM;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001190
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001191 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1192 sizeof(struct nvme_id_ctrl));
1193 if (error)
1194 kfree(*id);
1195 return error;
1196}
1197
1198int nvme_identify_ns(struct nvme_dev *dev, unsigned nsid,
1199 struct nvme_id_ns **id)
1200{
Andrew Mortone44ac582015-06-27 12:20:34 -06001201 struct nvme_command c = { };
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001202 int error;
1203
Andrew Mortone44ac582015-06-27 12:20:34 -06001204 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1205 c.identify.opcode = nvme_admin_identify,
1206 c.identify.nsid = cpu_to_le32(nsid),
1207
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001208 *id = kmalloc(sizeof(struct nvme_id_ns), GFP_KERNEL);
1209 if (!*id)
1210 return -ENOMEM;
1211
1212 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1213 sizeof(struct nvme_id_ns));
1214 if (error)
1215 kfree(*id);
1216 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001217}
1218
Vishal Verma5d0f6132013-03-04 18:40:58 -07001219int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid,
Keith Busch08df1e02012-09-21 10:52:13 -06001220 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001221{
1222 struct nvme_command c;
1223
1224 memset(&c, 0, sizeof(c));
1225 c.features.opcode = nvme_admin_get_features;
Keith Buscha42cecc2012-07-25 16:06:38 -06001226 c.features.nsid = cpu_to_le32(nsid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001227 c.features.prp1 = cpu_to_le64(dma_addr);
1228 c.features.fid = cpu_to_le32(fid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001229
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001230 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1231 result, 0);
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001232}
1233
Vishal Verma5d0f6132013-03-04 18:40:58 -07001234int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11,
1235 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001236{
1237 struct nvme_command c;
1238
1239 memset(&c, 0, sizeof(c));
1240 c.features.opcode = nvme_admin_set_features;
1241 c.features.prp1 = cpu_to_le64(dma_addr);
1242 c.features.fid = cpu_to_le32(fid);
1243 c.features.dword11 = cpu_to_le32(dword11);
1244
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001245 return __nvme_submit_sync_cmd(dev->admin_q, &c, NULL, NULL, 0,
1246 result, 0);
1247}
1248
1249int nvme_get_log_page(struct nvme_dev *dev, struct nvme_smart_log **log)
1250{
Andrew Mortone44ac582015-06-27 12:20:34 -06001251 struct nvme_command c = { };
1252 int error;
1253
1254 c.common.opcode = nvme_admin_get_log_page,
1255 c.common.nsid = cpu_to_le32(0xFFFFFFFF),
1256 c.common.cdw10[0] = cpu_to_le32(
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001257 (((sizeof(struct nvme_smart_log) / 4) - 1) << 16) |
1258 NVME_LOG_SMART),
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001259
1260 *log = kmalloc(sizeof(struct nvme_smart_log), GFP_KERNEL);
1261 if (!*log)
1262 return -ENOMEM;
1263
1264 error = nvme_submit_sync_cmd(dev->admin_q, &c, *log,
1265 sizeof(struct nvme_smart_log));
1266 if (error)
1267 kfree(*log);
1268 return error;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001269}
1270
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001271/**
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001272 * nvme_abort_req - Attempt aborting a request
Keith Buschc30341d2013-12-10 13:10:38 -07001273 *
1274 * Schedule controller reset if the command was already aborted once before and
1275 * still hasn't been returned to the driver, or if this is the admin queue.
1276 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001277static void nvme_abort_req(struct request *req)
Keith Buschc30341d2013-12-10 13:10:38 -07001278{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001279 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
1280 struct nvme_queue *nvmeq = cmd_rq->nvmeq;
Keith Buschc30341d2013-12-10 13:10:38 -07001281 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001282 struct request *abort_req;
1283 struct nvme_cmd_info *abort_cmd;
1284 struct nvme_command cmd;
Keith Buschc30341d2013-12-10 13:10:38 -07001285
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001286 if (!nvmeq->qid || cmd_rq->aborted) {
Christoph Hellwig906678922015-10-02 18:49:23 +02001287 spin_lock(&dev_list_lock);
1288 if (!__nvme_reset(dev)) {
1289 dev_warn(dev->dev,
1290 "I/O %d QID %d timeout, reset controller\n",
1291 req->tag, nvmeq->qid);
1292 }
1293 spin_unlock(&dev_list_lock);
Keith Buschc30341d2013-12-10 13:10:38 -07001294 return;
1295 }
1296
1297 if (!dev->abort_limit)
1298 return;
1299
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001300 abort_req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC,
1301 false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001302 if (IS_ERR(abort_req))
Keith Buschc30341d2013-12-10 13:10:38 -07001303 return;
1304
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001305 abort_cmd = blk_mq_rq_to_pdu(abort_req);
1306 nvme_set_info(abort_cmd, abort_req, abort_completion);
1307
Keith Buschc30341d2013-12-10 13:10:38 -07001308 memset(&cmd, 0, sizeof(cmd));
1309 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001310 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001311 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001312 cmd.abort.command_id = abort_req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001313
1314 --dev->abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001315 cmd_rq->aborted = 1;
Keith Buschc30341d2013-12-10 13:10:38 -07001316
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001317 dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag,
Keith Buschc30341d2013-12-10 13:10:38 -07001318 nvmeq->qid);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301319 nvme_submit_cmd(dev->queues[0], &cmd);
Keith Buschc30341d2013-12-10 13:10:38 -07001320}
1321
Keith Busch42483222015-06-01 09:29:54 -06001322static void nvme_cancel_queue_ios(struct request *req, void *data, bool reserved)
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001323{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001324 struct nvme_queue *nvmeq = data;
1325 void *ctx;
1326 nvme_completion_fn fn;
1327 struct nvme_cmd_info *cmd;
Keith Buschcef6a942015-01-07 18:55:51 -07001328 struct nvme_completion cqe;
1329
1330 if (!blk_mq_request_started(req))
1331 return;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001332
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001333 cmd = blk_mq_rq_to_pdu(req);
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001334
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001335 if (cmd->ctx == CMD_CTX_CANCELLED)
1336 return;
1337
Keith Buschcef6a942015-01-07 18:55:51 -07001338 if (blk_queue_dying(req->q))
1339 cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1);
1340 else
1341 cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
1342
1343
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001344 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n",
1345 req->tag, nvmeq->qid);
1346 ctx = cancel_cmd_info(cmd, &fn);
1347 fn(nvmeq, ctx, &cqe);
1348}
1349
1350static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1351{
1352 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
1353 struct nvme_queue *nvmeq = cmd->nvmeq;
1354
Keith Busch07836e62015-02-19 10:34:48 -07001355 dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag,
1356 nvmeq->qid);
1357 spin_lock_irq(&nvmeq->q_lock);
1358 nvme_abort_req(req);
1359 spin_unlock_irq(&nvmeq->q_lock);
1360
Keith Busch7a509a62015-01-07 18:55:53 -07001361 /*
1362 * The aborted req will be completed on receiving the abort req.
1363 * We enable the timer again. If hit twice, it'll cause a device reset,
1364 * as the device then is in a faulty state.
1365 */
Keith Busch07836e62015-02-19 10:34:48 -07001366 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001367}
1368
Keith Buschf435c282014-07-07 09:14:42 -06001369static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001370{
1371 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1372 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001373 if (nvmeq->sq_cmds)
1374 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
Matthew Wilcox9e866772012-08-03 13:55:56 -04001375 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1376 kfree(nvmeq);
1377}
1378
Keith Buscha1a5ef92013-12-16 13:50:00 -05001379static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001380{
1381 int i;
1382
Keith Buscha1a5ef92013-12-16 13:50:00 -05001383 for (i = dev->queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001384 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch22404272013-07-15 15:02:20 -06001385 dev->queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001386 dev->queues[i] = NULL;
Keith Buschf435c282014-07-07 09:14:42 -06001387 nvme_free_queue(nvmeq);
kaoudis121c7ad2015-01-14 21:01:58 -07001388 }
Keith Busch22404272013-07-15 15:02:20 -06001389}
1390
Keith Busch4d115422013-12-10 13:10:40 -07001391/**
1392 * nvme_suspend_queue - put queue into suspended state
1393 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001394 */
1395static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001396{
Keith Busch2b25d982014-12-22 12:59:04 -07001397 int vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001398
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001399 spin_lock_irq(&nvmeq->q_lock);
Keith Busch2b25d982014-12-22 12:59:04 -07001400 if (nvmeq->cq_vector == -1) {
1401 spin_unlock_irq(&nvmeq->q_lock);
1402 return 1;
1403 }
1404 vector = nvmeq->dev->entry[nvmeq->cq_vector].vector;
Keith Busch42f61422014-03-24 10:46:25 -06001405 nvmeq->dev->online_queues--;
Keith Busch2b25d982014-12-22 12:59:04 -07001406 nvmeq->cq_vector = -1;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001407 spin_unlock_irq(&nvmeq->q_lock);
1408
Keith Busch6df3dbc2015-03-26 13:49:33 -06001409 if (!nvmeq->qid && nvmeq->dev->admin_q)
1410 blk_mq_freeze_queue_start(nvmeq->dev->admin_q);
1411
Matthew Wilcoxaba20802011-03-27 08:52:06 -04001412 irq_set_affinity_hint(vector, NULL);
1413 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001414
Keith Busch4d115422013-12-10 13:10:40 -07001415 return 0;
1416}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001417
Keith Busch4d115422013-12-10 13:10:40 -07001418static void nvme_clear_queue(struct nvme_queue *nvmeq)
1419{
Keith Busch22404272013-07-15 15:02:20 -06001420 spin_lock_irq(&nvmeq->q_lock);
Keith Busch42483222015-06-01 09:29:54 -06001421 if (nvmeq->tags && *nvmeq->tags)
1422 blk_mq_all_tag_busy_iter(*nvmeq->tags, nvme_cancel_queue_ios, nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001423 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001424}
1425
Keith Busch4d115422013-12-10 13:10:40 -07001426static void nvme_disable_queue(struct nvme_dev *dev, int qid)
1427{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001428 struct nvme_queue *nvmeq = dev->queues[qid];
Keith Busch4d115422013-12-10 13:10:40 -07001429
1430 if (!nvmeq)
1431 return;
1432 if (nvme_suspend_queue(nvmeq))
1433 return;
1434
Keith Busch0e53d182013-12-10 13:10:39 -07001435 /* Don't tell the adapter to delete the admin queue.
1436 * Don't tell a removed adapter to delete IO queues. */
1437 if (qid && readl(&dev->bar->csts) != -1) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001438 adapter_delete_sq(dev, qid);
1439 adapter_delete_cq(dev, qid);
1440 }
Keith Busch07836e62015-02-19 10:34:48 -07001441
1442 spin_lock_irq(&nvmeq->q_lock);
1443 nvme_process_cq(nvmeq);
1444 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001445}
1446
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001447static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1448 int entry_size)
1449{
1450 int q_depth = dev->q_depth;
1451 unsigned q_size_aligned = roundup(q_depth * entry_size, dev->page_size);
1452
1453 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
Jon Derrickc45f5c92015-07-21 15:08:13 -06001454 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
1455 mem_per_q = round_down(mem_per_q, dev->page_size);
1456 q_depth = div_u64(mem_per_q, entry_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001457
1458 /*
1459 * Ensure the reduced q_depth is above some threshold where it
1460 * would be better to map queues in system memory with the
1461 * original depth
1462 */
1463 if (q_depth < 64)
1464 return -ENOMEM;
1465 }
1466
1467 return q_depth;
1468}
1469
1470static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1471 int qid, int depth)
1472{
1473 if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) {
1474 unsigned offset = (qid - 1) *
1475 roundup(SQ_SIZE(depth), dev->page_size);
1476 nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset;
1477 nvmeq->sq_cmds_io = dev->cmb + offset;
1478 } else {
1479 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1480 &nvmeq->sq_dma_addr, GFP_KERNEL);
1481 if (!nvmeq->sq_cmds)
1482 return -ENOMEM;
1483 }
1484
1485 return 0;
1486}
1487
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001488static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
Keith Busch2b25d982014-12-22 12:59:04 -07001489 int depth)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001490{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001491 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001492 if (!nvmeq)
1493 return NULL;
1494
Christoph Hellwige75ec752015-05-22 11:12:39 +02001495 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
Joe Perches4d51abf2014-06-15 13:37:33 -07001496 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001497 if (!nvmeq->cqes)
1498 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001499
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001500 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001501 goto free_cqdma;
1502
Christoph Hellwige75ec752015-05-22 11:12:39 +02001503 nvmeq->q_dmadev = dev->dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001504 nvmeq->dev = dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001505 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
1506 dev->instance, qid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001507 spin_lock_init(&nvmeq->q_lock);
1508 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001509 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001510 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001511 nvmeq->q_depth = depth;
Keith Buschc30341d2013-12-10 13:10:38 -07001512 nvmeq->qid = qid;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001513 nvmeq->cq_vector = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001514 dev->queues[qid] = nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001515
Jon Derrick36a7e992015-05-27 12:26:23 -06001516 /* make sure queue descriptor is set before queue count, for kthread */
1517 mb();
1518 dev->queue_count++;
1519
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001520 return nvmeq;
1521
1522 free_cqdma:
Christoph Hellwige75ec752015-05-22 11:12:39 +02001523 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001524 nvmeq->cq_dma_addr);
1525 free_nvmeq:
1526 kfree(nvmeq);
1527 return NULL;
1528}
1529
Matthew Wilcox30010822011-01-20 09:10:15 -05001530static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1531 const char *name)
1532{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001533 if (use_threaded_interrupts)
1534 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001535 nvme_irq_check, nvme_irq, IRQF_SHARED,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001536 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001537 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001538 IRQF_SHARED, name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001539}
1540
Keith Busch22404272013-07-15 15:02:20 -06001541static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001542{
Keith Busch22404272013-07-15 15:02:20 -06001543 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001544
Keith Busch7be50e92014-09-10 15:48:47 -06001545 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001546 nvmeq->sq_tail = 0;
1547 nvmeq->cq_head = 0;
1548 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001549 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001550 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Keith Busch42f61422014-03-24 10:46:25 -06001551 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001552 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001553}
1554
1555static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1556{
1557 struct nvme_dev *dev = nvmeq->dev;
1558 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001559
Keith Busch2b25d982014-12-22 12:59:04 -07001560 nvmeq->cq_vector = qid - 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001561 result = adapter_alloc_cq(dev, qid, nvmeq);
1562 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001563 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001564
1565 result = adapter_alloc_sq(dev, qid, nvmeq);
1566 if (result < 0)
1567 goto release_cq;
1568
Matthew Wilcox3193f072014-01-27 15:57:22 -05001569 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001570 if (result < 0)
1571 goto release_sq;
1572
Keith Busch22404272013-07-15 15:02:20 -06001573 nvme_init_queue(nvmeq, qid);
Keith Busch22404272013-07-15 15:02:20 -06001574 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001575
1576 release_sq:
1577 adapter_delete_sq(dev, qid);
1578 release_cq:
1579 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001580 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001581}
1582
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001583static int nvme_wait_ready(struct nvme_dev *dev, u64 cap, bool enabled)
1584{
1585 unsigned long timeout;
1586 u32 bit = enabled ? NVME_CSTS_RDY : 0;
1587
1588 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1589
1590 while ((readl(&dev->bar->csts) & NVME_CSTS_RDY) != bit) {
1591 msleep(100);
1592 if (fatal_signal_pending(current))
1593 return -EINTR;
1594 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001595 dev_err(dev->dev,
Matthew Wilcox27e81662014-04-11 11:58:45 -04001596 "Device not ready; aborting %s\n", enabled ?
1597 "initialisation" : "reset");
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001598 return -ENODEV;
1599 }
1600 }
1601
1602 return 0;
1603}
1604
1605/*
1606 * If the device has been passed off to us in an enabled state, just clear
1607 * the enabled bit. The spec says we should set the 'shutdown notification
1608 * bits', but doing so may cause the device to complete commands to the
1609 * admin queue ... and we don't know what memory that might be pointing at!
1610 */
1611static int nvme_disable_ctrl(struct nvme_dev *dev, u64 cap)
1612{
Dan McLeran01079522014-06-23 08:24:36 -06001613 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1614 dev->ctrl_config &= ~NVME_CC_ENABLE;
1615 writel(dev->ctrl_config, &dev->bar->cc);
Matthew Wilcox44af1462013-05-04 06:43:17 -04001616
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001617 return nvme_wait_ready(dev, cap, false);
1618}
1619
1620static int nvme_enable_ctrl(struct nvme_dev *dev, u64 cap)
1621{
Dan McLeran01079522014-06-23 08:24:36 -06001622 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1623 dev->ctrl_config |= NVME_CC_ENABLE;
1624 writel(dev->ctrl_config, &dev->bar->cc);
1625
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001626 return nvme_wait_ready(dev, cap, true);
1627}
1628
Keith Busch1894d8f2013-07-15 15:02:22 -06001629static int nvme_shutdown_ctrl(struct nvme_dev *dev)
1630{
1631 unsigned long timeout;
Keith Busch1894d8f2013-07-15 15:02:22 -06001632
Dan McLeran01079522014-06-23 08:24:36 -06001633 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1634 dev->ctrl_config |= NVME_CC_SHN_NORMAL;
1635
1636 writel(dev->ctrl_config, &dev->bar->cc);
Keith Busch1894d8f2013-07-15 15:02:22 -06001637
Dan McLeran2484f402014-07-01 09:33:32 -06001638 timeout = SHUTDOWN_TIMEOUT + jiffies;
Keith Busch1894d8f2013-07-15 15:02:22 -06001639 while ((readl(&dev->bar->csts) & NVME_CSTS_SHST_MASK) !=
1640 NVME_CSTS_SHST_CMPLT) {
1641 msleep(100);
1642 if (fatal_signal_pending(current))
1643 return -EINTR;
1644 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001645 dev_err(dev->dev,
Keith Busch1894d8f2013-07-15 15:02:22 -06001646 "Device shutdown incomplete; abort shutdown\n");
1647 return -ENODEV;
1648 }
1649 }
1650
1651 return 0;
1652}
1653
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001654static struct blk_mq_ops nvme_mq_admin_ops = {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001655 .queue_rq = nvme_queue_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001656 .map_queue = blk_mq_map_queue,
1657 .init_hctx = nvme_admin_init_hctx,
Keith Busch4af0e212015-06-08 10:08:13 -06001658 .exit_hctx = nvme_admin_exit_hctx,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001659 .init_request = nvme_admin_init_request,
1660 .timeout = nvme_timeout,
1661};
1662
1663static struct blk_mq_ops nvme_mq_ops = {
1664 .queue_rq = nvme_queue_rq,
1665 .map_queue = blk_mq_map_queue,
1666 .init_hctx = nvme_init_hctx,
1667 .init_request = nvme_init_request,
1668 .timeout = nvme_timeout,
1669};
1670
Keith Buschea191d22015-01-07 18:55:49 -07001671static void nvme_dev_remove_admin(struct nvme_dev *dev)
1672{
1673 if (dev->admin_q && !blk_queue_dying(dev->admin_q)) {
1674 blk_cleanup_queue(dev->admin_q);
1675 blk_mq_free_tag_set(&dev->admin_tagset);
1676 }
1677}
1678
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001679static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1680{
1681 if (!dev->admin_q) {
1682 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1683 dev->admin_tagset.nr_hw_queues = 1;
1684 dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1;
Keith Busch1efccc92015-03-31 10:37:17 -06001685 dev->admin_tagset.reserved_tags = 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001686 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001687 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
Jens Axboeac3dd5b2015-01-22 12:07:58 -07001688 dev->admin_tagset.cmd_size = nvme_cmd_size(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001689 dev->admin_tagset.driver_data = dev;
1690
1691 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1692 return -ENOMEM;
1693
1694 dev->admin_q = blk_mq_init_queue(&dev->admin_tagset);
Ming Lei35b489d2015-01-02 14:25:27 +00001695 if (IS_ERR(dev->admin_q)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001696 blk_mq_free_tag_set(&dev->admin_tagset);
1697 return -ENOMEM;
1698 }
Keith Buschea191d22015-01-07 18:55:49 -07001699 if (!blk_get_queue(dev->admin_q)) {
1700 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06001701 dev->admin_q = NULL;
Keith Buschea191d22015-01-07 18:55:49 -07001702 return -ENODEV;
1703 }
Keith Busch0fb59cb2015-01-07 18:55:50 -07001704 } else
1705 blk_mq_unfreeze_queue(dev->admin_q);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001706
1707 return 0;
1708}
1709
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001710static int nvme_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001711{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001712 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001713 u32 aqa;
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001714 u64 cap = readq(&dev->bar->cap);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001715 struct nvme_queue *nvmeq;
Keith Busch1d090622014-06-23 11:34:01 -06001716 unsigned page_shift = PAGE_SHIFT;
1717 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12;
1718 unsigned dev_page_max = NVME_CAP_MPSMAX(cap) + 12;
1719
1720 if (page_shift < dev_page_min) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001721 dev_err(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001722 "Minimum device page size (%u) too large for "
1723 "host (%u)\n", 1 << dev_page_min,
1724 1 << page_shift);
1725 return -ENODEV;
1726 }
1727 if (page_shift > dev_page_max) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001728 dev_info(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001729 "Device maximum page size (%u) smaller than "
1730 "host (%u); enabling work-around\n",
1731 1 << dev_page_max, 1 << page_shift);
1732 page_shift = dev_page_max;
1733 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001734
Keith Buschdfbac8c2015-08-10 15:20:40 -06001735 dev->subsystem = readl(&dev->bar->vs) >= NVME_VS(1, 1) ?
1736 NVME_CAP_NSSRC(cap) : 0;
1737
1738 if (dev->subsystem && (readl(&dev->bar->csts) & NVME_CSTS_NSSRO))
1739 writel(NVME_CSTS_NSSRO, &dev->bar->csts);
1740
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001741 result = nvme_disable_ctrl(dev, cap);
1742 if (result < 0)
1743 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001744
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001745 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001746 if (!nvmeq) {
Keith Busch2b25d982014-12-22 12:59:04 -07001747 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
Keith Buschcd638942013-07-15 15:02:23 -06001748 if (!nvmeq)
1749 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001750 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001751
1752 aqa = nvmeq->q_depth - 1;
1753 aqa |= aqa << 16;
1754
Keith Busch1d090622014-06-23 11:34:01 -06001755 dev->page_size = 1 << page_shift;
1756
Dan McLeran01079522014-06-23 08:24:36 -06001757 dev->ctrl_config = NVME_CC_CSS_NVM;
Keith Busch1d090622014-06-23 11:34:01 -06001758 dev->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001759 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -04001760 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001761
1762 writel(aqa, &dev->bar->aqa);
1763 writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1764 writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001765
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001766 result = nvme_enable_ctrl(dev, cap);
Keith Busch025c5572013-05-01 13:07:51 -06001767 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001768 goto free_nvmeq;
1769
Keith Busch2b25d982014-12-22 12:59:04 -07001770 nvmeq->cq_vector = 0;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001771 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001772 if (result) {
1773 nvmeq->cq_vector = -1;
Keith Busch0fb59cb2015-01-07 18:55:50 -07001774 goto free_nvmeq;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001775 }
Keith Busch025c5572013-05-01 13:07:51 -06001776
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001777 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001778
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001779 free_nvmeq:
1780 nvme_free_queues(dev, 0);
1781 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001782}
1783
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001784static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1785{
1786 struct nvme_dev *dev = ns->dev;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001787 struct nvme_user_io io;
1788 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001789 unsigned length, meta_len;
Keith Buscha67a9512015-04-07 16:57:19 -06001790 int status, write;
Keith Buscha67a9512015-04-07 16:57:19 -06001791 dma_addr_t meta_dma = 0;
1792 void *meta = NULL;
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001793 void __user *metadata;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001794
1795 if (copy_from_user(&io, uio, sizeof(io)))
1796 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001797
1798 switch (io.opcode) {
1799 case nvme_cmd_write:
1800 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001801 case nvme_cmd_compare:
Matthew Wilcox64132142011-08-09 12:56:37 -04001802 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001803 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001804 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001805 }
1806
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001807 length = (io.nblocks + 1) << ns->lba_shift;
1808 meta_len = (io.nblocks + 1) * ns->ms;
Arnd Bergmann3d42e672015-10-06 22:29:48 +02001809 metadata = (void __user *)(uintptr_t)io.metadata;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001810 write = io.opcode & 1;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001811
Keith Busch71feb362015-06-19 11:07:30 -06001812 if (ns->ext) {
1813 length += meta_len;
1814 meta_len = 0;
Keith Buscha67a9512015-04-07 16:57:19 -06001815 }
1816 if (meta_len) {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001817 if (((io.metadata & 3) || !io.metadata) && !ns->ext)
1818 return -EINVAL;
1819
Christoph Hellwige75ec752015-05-22 11:12:39 +02001820 meta = dma_alloc_coherent(dev->dev, meta_len,
Keith Buscha67a9512015-04-07 16:57:19 -06001821 &meta_dma, GFP_KERNEL);
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001822
Keith Buscha67a9512015-04-07 16:57:19 -06001823 if (!meta) {
1824 status = -ENOMEM;
1825 goto unmap;
1826 }
1827 if (write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001828 if (copy_from_user(meta, metadata, meta_len)) {
Keith Buscha67a9512015-04-07 16:57:19 -06001829 status = -EFAULT;
1830 goto unmap;
1831 }
1832 }
1833 }
1834
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001835 memset(&c, 0, sizeof(c));
1836 c.rw.opcode = io.opcode;
1837 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001838 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001839 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001840 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001841 c.rw.control = cpu_to_le16(io.control);
Matthew Wilcox1c9b5262013-04-16 15:21:06 -04001842 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1843 c.rw.reftag = cpu_to_le32(io.reftag);
1844 c.rw.apptag = cpu_to_le16(io.apptag);
1845 c.rw.appmask = cpu_to_le16(io.appmask);
Keith Buscha67a9512015-04-07 16:57:19 -06001846 c.rw.metadata = cpu_to_le64(meta_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001847
1848 status = __nvme_submit_sync_cmd(ns->queue, &c, NULL,
Arnd Bergmann3d42e672015-10-06 22:29:48 +02001849 (void __user *)(uintptr_t)io.addr, length, NULL, 0);
Keith Buschf410c682013-04-23 17:23:59 -06001850 unmap:
Keith Buscha67a9512015-04-07 16:57:19 -06001851 if (meta) {
1852 if (status == NVME_SC_SUCCESS && !write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001853 if (copy_to_user(metadata, meta, meta_len))
Keith Buscha67a9512015-04-07 16:57:19 -06001854 status = -EFAULT;
1855 }
Christoph Hellwige75ec752015-05-22 11:12:39 +02001856 dma_free_coherent(dev->dev, meta_len, meta, meta_dma);
Keith Buschf410c682013-04-23 17:23:59 -06001857 }
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001858 return status;
1859}
1860
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001861static int nvme_user_cmd(struct nvme_dev *dev, struct nvme_ns *ns,
1862 struct nvme_passthru_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001863{
Keith Busch7963e522014-09-12 16:07:20 -06001864 struct nvme_passthru_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001865 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001866 unsigned timeout = 0;
1867 int status;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001868
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001869 if (!capable(CAP_SYS_ADMIN))
1870 return -EACCES;
1871 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001872 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001873
1874 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001875 c.common.opcode = cmd.opcode;
1876 c.common.flags = cmd.flags;
1877 c.common.nsid = cpu_to_le32(cmd.nsid);
1878 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1879 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1880 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1881 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1882 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1883 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1884 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1885 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1886
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001887 if (cmd.timeout_ms)
1888 timeout = msecs_to_jiffies(cmd.timeout_ms);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001889
Christoph Hellwigf705f832015-05-22 11:12:38 +02001890 status = __nvme_submit_sync_cmd(ns ? ns->queue : dev->admin_q, &c,
Arnd Bergmann3d42e672015-10-06 22:29:48 +02001891 NULL, (void __user *)(uintptr_t)cmd.addr, cmd.data_len,
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001892 &cmd.result, timeout);
1893 if (status >= 0) {
1894 if (put_user(cmd.result, &ucmd->result))
1895 return -EFAULT;
Keith Buschedd10d32014-04-03 16:45:23 -06001896 }
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001897
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001898 return status;
1899}
1900
Jon Derrick81f03fe2015-08-10 15:20:41 -06001901static int nvme_subsys_reset(struct nvme_dev *dev)
1902{
1903 if (!dev->subsystem)
1904 return -ENOTTY;
1905
1906 writel(0x4E564D65, &dev->bar->nssr); /* "NVMe" */
1907 return 0;
1908}
1909
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001910static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1911 unsigned long arg)
1912{
1913 struct nvme_ns *ns = bdev->bd_disk->private_data;
1914
1915 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001916 case NVME_IOCTL_ID:
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04001917 force_successful_syscall_return();
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001918 return ns->ns_id;
1919 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001920 return nvme_user_cmd(ns->dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06001921 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001922 return nvme_user_cmd(ns->dev, ns, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001923 case NVME_IOCTL_SUBMIT_IO:
1924 return nvme_submit_io(ns, (void __user *)arg);
Vishal Verma5d0f6132013-03-04 18:40:58 -07001925 case SG_GET_VERSION_NUM:
1926 return nvme_sg_get_version_num((void __user *)arg);
1927 case SG_IO:
1928 return nvme_sg_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001929 default:
1930 return -ENOTTY;
1931 }
1932}
1933
Keith Busch320a3822013-10-23 13:07:34 -06001934#ifdef CONFIG_COMPAT
1935static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode,
1936 unsigned int cmd, unsigned long arg)
1937{
Keith Busch320a3822013-10-23 13:07:34 -06001938 switch (cmd) {
1939 case SG_IO:
Keith Busche1797292014-08-27 13:55:38 -06001940 return -ENOIOCTLCMD;
Keith Busch320a3822013-10-23 13:07:34 -06001941 }
1942 return nvme_ioctl(bdev, mode, cmd, arg);
1943}
1944#else
1945#define nvme_compat_ioctl NULL
1946#endif
1947
Keith Busch5105aa52015-10-02 10:37:28 -06001948static void nvme_free_dev(struct kref *kref);
Keith Busch188c3562015-10-01 17:14:10 -06001949static void nvme_free_ns(struct kref *kref)
1950{
1951 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
1952
1953 spin_lock(&dev_list_lock);
1954 ns->disk->private_data = NULL;
1955 spin_unlock(&dev_list_lock);
1956
Keith Busch5105aa52015-10-02 10:37:28 -06001957 kref_put(&ns->dev->kref, nvme_free_dev);
Keith Busch188c3562015-10-01 17:14:10 -06001958 put_disk(ns->disk);
1959 kfree(ns);
1960}
1961
Keith Busch9ac27092014-01-31 16:53:39 -07001962static int nvme_open(struct block_device *bdev, fmode_t mode)
1963{
Keith Busch9e603522014-10-03 11:15:47 -06001964 int ret = 0;
1965 struct nvme_ns *ns;
Keith Busch9ac27092014-01-31 16:53:39 -07001966
Keith Busch9e603522014-10-03 11:15:47 -06001967 spin_lock(&dev_list_lock);
1968 ns = bdev->bd_disk->private_data;
1969 if (!ns)
1970 ret = -ENXIO;
Keith Busch188c3562015-10-01 17:14:10 -06001971 else if (!kref_get_unless_zero(&ns->kref))
Keith Busch9e603522014-10-03 11:15:47 -06001972 ret = -ENXIO;
1973 spin_unlock(&dev_list_lock);
1974
1975 return ret;
Keith Busch9ac27092014-01-31 16:53:39 -07001976}
1977
Keith Busch9ac27092014-01-31 16:53:39 -07001978static void nvme_release(struct gendisk *disk, fmode_t mode)
1979{
1980 struct nvme_ns *ns = disk->private_data;
Keith Busch188c3562015-10-01 17:14:10 -06001981 kref_put(&ns->kref, nvme_free_ns);
Keith Busch9ac27092014-01-31 16:53:39 -07001982}
1983
Keith Busch4cc09e22014-04-02 15:45:37 -06001984static int nvme_getgeo(struct block_device *bd, struct hd_geometry *geo)
1985{
1986 /* some standard values */
1987 geo->heads = 1 << 6;
1988 geo->sectors = 1 << 5;
1989 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
1990 return 0;
1991}
1992
Keith Busche1e5e562015-02-19 13:39:03 -07001993static void nvme_config_discard(struct nvme_ns *ns)
1994{
1995 u32 logical_block_size = queue_logical_block_size(ns->queue);
1996 ns->queue->limits.discard_zeroes_data = 0;
1997 ns->queue->limits.discard_alignment = logical_block_size;
1998 ns->queue->limits.discard_granularity = logical_block_size;
Jens Axboe2bb4cd52015-07-14 08:15:12 -06001999 blk_queue_max_discard_sectors(ns->queue, 0xffffffff);
Keith Busche1e5e562015-02-19 13:39:03 -07002000 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
2001}
2002
Keith Busch1b9dbf72014-09-10 17:21:14 -06002003static int nvme_revalidate_disk(struct gendisk *disk)
2004{
2005 struct nvme_ns *ns = disk->private_data;
2006 struct nvme_dev *dev = ns->dev;
2007 struct nvme_id_ns *id;
Keith Buscha67a9512015-04-07 16:57:19 -06002008 u8 lbaf, pi_type;
2009 u16 old_ms;
Keith Busche1e5e562015-02-19 13:39:03 -07002010 unsigned short bs;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002011
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002012 if (nvme_identify_ns(dev, ns->ns_id, &id)) {
Keith Buscha5768aa2015-06-01 14:28:14 -06002013 dev_warn(dev->dev, "%s: Identify failure nvme%dn%d\n", __func__,
2014 dev->instance, ns->ns_id);
2015 return -ENODEV;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002016 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002017 if (id->ncap == 0) {
2018 kfree(id);
2019 return -ENODEV;
Keith Busche1e5e562015-02-19 13:39:03 -07002020 }
Keith Busch1b9dbf72014-09-10 17:21:14 -06002021
Keith Busche1e5e562015-02-19 13:39:03 -07002022 old_ms = ns->ms;
2023 lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK;
Keith Busch1b9dbf72014-09-10 17:21:14 -06002024 ns->lba_shift = id->lbaf[lbaf].ds;
Keith Busche1e5e562015-02-19 13:39:03 -07002025 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms);
Keith Buscha67a9512015-04-07 16:57:19 -06002026 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002027
Keith Busche1e5e562015-02-19 13:39:03 -07002028 /*
2029 * If identify namespace failed, use default 512 byte block size so
2030 * block layer can use before failing read/write for 0 capacity.
2031 */
2032 if (ns->lba_shift == 0)
2033 ns->lba_shift = 9;
2034 bs = 1 << ns->lba_shift;
2035
2036 /* XXX: PI implementation requires metadata equal t10 pi tuple size */
2037 pi_type = ns->ms == sizeof(struct t10_pi_tuple) ?
2038 id->dps & NVME_NS_DPS_PI_MASK : 0;
2039
Keith Busch52b68d72015-02-23 09:16:21 -07002040 if (blk_get_integrity(disk) && (ns->pi_type != pi_type ||
2041 ns->ms != old_ms ||
Keith Busche1e5e562015-02-19 13:39:03 -07002042 bs != queue_logical_block_size(disk->queue) ||
Keith Buscha67a9512015-04-07 16:57:19 -06002043 (ns->ms && ns->ext)))
Keith Busche1e5e562015-02-19 13:39:03 -07002044 blk_integrity_unregister(disk);
2045
2046 ns->pi_type = pi_type;
2047 blk_queue_logical_block_size(ns->queue, bs);
2048
Keith Busch52b68d72015-02-23 09:16:21 -07002049 if (ns->ms && !blk_get_integrity(disk) && (disk->flags & GENHD_FL_UP) &&
Keith Buscha67a9512015-04-07 16:57:19 -06002050 !ns->ext)
Keith Busche1e5e562015-02-19 13:39:03 -07002051 nvme_init_integrity(ns);
2052
Alok Pandeye19b1272015-08-26 08:56:14 -06002053 if (ns->ms && !(ns->ms == 8 && ns->pi_type) && !blk_get_integrity(disk))
Keith Busche1e5e562015-02-19 13:39:03 -07002054 set_capacity(disk, 0);
2055 else
2056 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
2057
2058 if (dev->oncs & NVME_CTRL_ONCS_DSM)
2059 nvme_config_discard(ns);
2060
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002061 kfree(id);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002062 return 0;
2063}
2064
Keith Busch1d277a62015-10-15 14:10:52 +02002065static char nvme_pr_type(enum pr_type type)
2066{
2067 switch (type) {
2068 case PR_WRITE_EXCLUSIVE:
2069 return 1;
2070 case PR_EXCLUSIVE_ACCESS:
2071 return 2;
2072 case PR_WRITE_EXCLUSIVE_REG_ONLY:
2073 return 3;
2074 case PR_EXCLUSIVE_ACCESS_REG_ONLY:
2075 return 4;
2076 case PR_WRITE_EXCLUSIVE_ALL_REGS:
2077 return 5;
2078 case PR_EXCLUSIVE_ACCESS_ALL_REGS:
2079 return 6;
2080 default:
2081 return 0;
2082 }
2083};
2084
2085static int nvme_pr_command(struct block_device *bdev, u32 cdw10,
2086 u64 key, u64 sa_key, u8 op)
2087{
2088 struct nvme_ns *ns = bdev->bd_disk->private_data;
2089 struct nvme_command c;
2090 u8 data[16] = { 0, };
2091
2092 put_unaligned_le64(key, &data[0]);
2093 put_unaligned_le64(sa_key, &data[8]);
2094
2095 memset(&c, 0, sizeof(c));
2096 c.common.opcode = op;
Christoph Hellwiga6dd1022015-10-22 12:01:05 +02002097 c.common.nsid = cpu_to_le32(ns->ns_id);
2098 c.common.cdw10[0] = cpu_to_le32(cdw10);
Keith Busch1d277a62015-10-15 14:10:52 +02002099
2100 return nvme_submit_sync_cmd(ns->queue, &c, data, 16);
2101}
2102
2103static int nvme_pr_register(struct block_device *bdev, u64 old,
2104 u64 new, unsigned flags)
2105{
2106 u32 cdw10;
2107
2108 if (flags & ~PR_FL_IGNORE_KEY)
2109 return -EOPNOTSUPP;
2110
2111 cdw10 = old ? 2 : 0;
2112 cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0;
2113 cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */
2114 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register);
2115}
2116
2117static int nvme_pr_reserve(struct block_device *bdev, u64 key,
2118 enum pr_type type, unsigned flags)
2119{
2120 u32 cdw10;
2121
2122 if (flags & ~PR_FL_IGNORE_KEY)
2123 return -EOPNOTSUPP;
2124
2125 cdw10 = nvme_pr_type(type) << 8;
2126 cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0);
2127 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire);
2128}
2129
2130static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new,
2131 enum pr_type type, bool abort)
2132{
2133 u32 cdw10 = nvme_pr_type(type) << 8 | abort ? 2 : 1;
2134 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire);
2135}
2136
2137static int nvme_pr_clear(struct block_device *bdev, u64 key)
2138{
Dan Carpenter73fcf4e2015-11-03 22:50:49 +03002139 u32 cdw10 = 1 | (key ? 1 << 3 : 0);
Keith Busch1d277a62015-10-15 14:10:52 +02002140 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register);
2141}
2142
2143static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
2144{
2145 u32 cdw10 = nvme_pr_type(type) << 8 | key ? 1 << 3 : 0;
2146 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release);
2147}
2148
2149static const struct pr_ops nvme_pr_ops = {
2150 .pr_register = nvme_pr_register,
2151 .pr_reserve = nvme_pr_reserve,
2152 .pr_release = nvme_pr_release,
2153 .pr_preempt = nvme_pr_preempt,
2154 .pr_clear = nvme_pr_clear,
2155};
2156
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002157static const struct block_device_operations nvme_fops = {
2158 .owner = THIS_MODULE,
2159 .ioctl = nvme_ioctl,
Keith Busch320a3822013-10-23 13:07:34 -06002160 .compat_ioctl = nvme_compat_ioctl,
Keith Busch9ac27092014-01-31 16:53:39 -07002161 .open = nvme_open,
2162 .release = nvme_release,
Keith Busch4cc09e22014-04-02 15:45:37 -06002163 .getgeo = nvme_getgeo,
Keith Busch1b9dbf72014-09-10 17:21:14 -06002164 .revalidate_disk= nvme_revalidate_disk,
Keith Busch1d277a62015-10-15 14:10:52 +02002165 .pr_ops = &nvme_pr_ops,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002166};
2167
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002168static int nvme_kthread(void *data)
2169{
Keith Buschd4b4ff82013-12-10 13:10:37 -07002170 struct nvme_dev *dev, *next;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002171
2172 while (!kthread_should_stop()) {
Arjan van de Ven564a2322013-05-01 16:38:23 -04002173 set_current_state(TASK_INTERRUPTIBLE);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002174 spin_lock(&dev_list_lock);
Keith Buschd4b4ff82013-12-10 13:10:37 -07002175 list_for_each_entry_safe(dev, next, &dev_list, node) {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002176 int i;
Keith Buschdfbac8c2015-08-10 15:20:40 -06002177 u32 csts = readl(&dev->bar->csts);
2178
2179 if ((dev->subsystem && (csts & NVME_CSTS_NSSRO)) ||
2180 csts & NVME_CSTS_CFS) {
Christoph Hellwig906678922015-10-02 18:49:23 +02002181 if (!__nvme_reset(dev)) {
2182 dev_warn(dev->dev,
2183 "Failed status: %x, reset controller\n",
2184 readl(&dev->bar->csts));
2185 }
Keith Buschd4b4ff82013-12-10 13:10:37 -07002186 continue;
2187 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002188 for (i = 0; i < dev->queue_count; i++) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002189 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05002190 if (!nvmeq)
2191 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002192 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxbc57a0f2013-06-24 11:56:42 -04002193 nvme_process_cq(nvmeq);
Keith Busch6fccf932014-06-18 13:58:57 -06002194
2195 while ((i == 0) && (dev->event_limit > 0)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002196 if (nvme_submit_async_admin_req(dev))
Keith Busch6fccf932014-06-18 13:58:57 -06002197 break;
2198 dev->event_limit--;
2199 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002200 spin_unlock_irq(&nvmeq->q_lock);
2201 }
2202 }
2203 spin_unlock(&dev_list_lock);
Arjan van de Venacb7aa02013-02-04 14:44:33 -08002204 schedule_timeout(round_jiffies_relative(HZ));
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002205 }
2206 return 0;
2207}
2208
Keith Busche1e5e562015-02-19 13:39:03 -07002209static void nvme_alloc_ns(struct nvme_dev *dev, unsigned nsid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002210{
2211 struct nvme_ns *ns;
2212 struct gendisk *disk;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002213 int node = dev_to_node(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002214
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002215 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002216 if (!ns)
Keith Busche1e5e562015-02-19 13:39:03 -07002217 return;
2218
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002219 ns->queue = blk_mq_init_queue(&dev->tagset);
Dan Carpenter9f173b32014-11-05 23:39:09 +03002220 if (IS_ERR(ns->queue))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002221 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07002222 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
2223 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002224 ns->dev = dev;
2225 ns->queue->queuedata = ns;
2226
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002227 disk = alloc_disk_node(0, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002228 if (!disk)
2229 goto out_free_queue;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002230
Keith Busch188c3562015-10-01 17:14:10 -06002231 kref_init(&ns->kref);
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002232 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002233 ns->disk = disk;
Keith Busche1e5e562015-02-19 13:39:03 -07002234 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
2235 list_add_tail(&ns->list, &dev->namespaces);
2236
Keith Busche9ef4632012-07-24 15:01:04 -06002237 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Keith Busche8244102015-08-12 16:17:54 -06002238 if (dev->max_hw_sectors) {
Keith Busch8fc23e02012-07-26 11:29:57 -06002239 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
Keith Busche8244102015-08-12 16:17:54 -06002240 blk_queue_max_segments(ns->queue,
2241 ((dev->max_hw_sectors << 9) / dev->page_size) + 1);
2242 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002243 if (dev->stripe_size)
2244 blk_queue_chunk_sectors(ns->queue, dev->stripe_size >> 9);
Keith Buscha7d2ce22014-04-29 11:41:28 -06002245 if (dev->vwc & NVME_CTRL_VWC_PRESENT)
2246 blk_queue_flush(ns->queue, REQ_FLUSH | REQ_FUA);
Keith Busch03100aa2015-08-19 14:24:05 -07002247 blk_queue_virt_boundary(ns->queue, dev->page_size - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002248
2249 disk->major = nvme_major;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002250 disk->first_minor = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002251 disk->fops = &nvme_fops;
2252 disk->private_data = ns;
2253 disk->queue = ns->queue;
Keith Buschb3fffde2015-02-03 11:21:42 -07002254 disk->driverfs_dev = dev->device;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002255 disk->flags = GENHD_FL_EXT_DEVT;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002256 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002257
Keith Busche1e5e562015-02-19 13:39:03 -07002258 /*
2259 * Initialize capacity to 0 until we establish the namespace format and
2260 * setup integrity extentions if necessary. The revalidate_disk after
2261 * add_disk allows the driver to register with integrity if the format
2262 * requires it.
2263 */
2264 set_capacity(disk, 0);
Keith Buscha5768aa2015-06-01 14:28:14 -06002265 if (nvme_revalidate_disk(ns->disk))
2266 goto out_free_disk;
2267
Keith Busch5105aa52015-10-02 10:37:28 -06002268 kref_get(&dev->kref);
Keith Busche1e5e562015-02-19 13:39:03 -07002269 add_disk(ns->disk);
Keith Busch7bee6072015-07-14 11:57:48 -06002270 if (ns->ms) {
2271 struct block_device *bd = bdget_disk(ns->disk, 0);
2272 if (!bd)
2273 return;
2274 if (blkdev_get(bd, FMODE_READ, NULL)) {
2275 bdput(bd);
2276 return;
2277 }
2278 blkdev_reread_part(bd);
2279 blkdev_put(bd, FMODE_READ);
2280 }
Keith Busche1e5e562015-02-19 13:39:03 -07002281 return;
Keith Buscha5768aa2015-06-01 14:28:14 -06002282 out_free_disk:
2283 kfree(disk);
2284 list_del(&ns->list);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002285 out_free_queue:
2286 blk_cleanup_queue(ns->queue);
2287 out_free_ns:
2288 kfree(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002289}
2290
Christoph Hellwig2659e572015-10-02 18:51:31 +02002291/*
2292 * Create I/O queues. Failing to create an I/O queue is not an issue,
2293 * we can continue with less than the desired amount of queues, and
2294 * even a controller without I/O queues an still be used to issue
2295 * admin commands. This might be useful to upgrade a buggy firmware
2296 * for example.
2297 */
Keith Busch42f61422014-03-24 10:46:25 -06002298static void nvme_create_io_queues(struct nvme_dev *dev)
2299{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002300 unsigned i;
Keith Busch42f61422014-03-24 10:46:25 -06002301
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002302 for (i = dev->queue_count; i <= dev->max_qid; i++)
Keith Busch2b25d982014-12-22 12:59:04 -07002303 if (!nvme_alloc_queue(dev, i, dev->q_depth))
Keith Busch42f61422014-03-24 10:46:25 -06002304 break;
2305
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002306 for (i = dev->online_queues; i <= dev->queue_count - 1; i++)
Christoph Hellwig2659e572015-10-02 18:51:31 +02002307 if (nvme_create_queue(dev->queues[i], i)) {
2308 nvme_free_queues(dev, i);
Keith Busch42f61422014-03-24 10:46:25 -06002309 break;
Christoph Hellwig2659e572015-10-02 18:51:31 +02002310 }
Keith Busch42f61422014-03-24 10:46:25 -06002311}
2312
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002313static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002314{
2315 int status;
2316 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002317 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002318
Matthew Wilcoxdf348132012-01-11 07:29:56 -07002319 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002320 &result);
Matthew Wilcox27e81662014-04-11 11:58:45 -04002321 if (status < 0)
2322 return status;
2323 if (status > 0) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002324 dev_err(dev->dev, "Could not set queue count (%d)\n", status);
Keith Buschbadc34d2014-06-23 14:25:35 -06002325 return 0;
Matthew Wilcox27e81662014-04-11 11:58:45 -04002326 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002327 return min(result & 0xffff, result >> 16) + 1;
2328}
2329
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002330static void __iomem *nvme_map_cmb(struct nvme_dev *dev)
2331{
2332 u64 szu, size, offset;
2333 u32 cmbloc;
2334 resource_size_t bar_size;
2335 struct pci_dev *pdev = to_pci_dev(dev->dev);
2336 void __iomem *cmb;
2337 dma_addr_t dma_addr;
2338
2339 if (!use_cmb_sqes)
2340 return NULL;
2341
2342 dev->cmbsz = readl(&dev->bar->cmbsz);
2343 if (!(NVME_CMB_SZ(dev->cmbsz)))
2344 return NULL;
2345
2346 cmbloc = readl(&dev->bar->cmbloc);
2347
2348 szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz));
2349 size = szu * NVME_CMB_SZ(dev->cmbsz);
2350 offset = szu * NVME_CMB_OFST(cmbloc);
2351 bar_size = pci_resource_len(pdev, NVME_CMB_BIR(cmbloc));
2352
2353 if (offset > bar_size)
2354 return NULL;
2355
2356 /*
2357 * Controllers may support a CMB size larger than their BAR,
2358 * for example, due to being behind a bridge. Reduce the CMB to
2359 * the reported size of the BAR
2360 */
2361 if (size > bar_size - offset)
2362 size = bar_size - offset;
2363
2364 dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(cmbloc)) + offset;
2365 cmb = ioremap_wc(dma_addr, size);
2366 if (!cmb)
2367 return NULL;
2368
2369 dev->cmb_dma_addr = dma_addr;
2370 dev->cmb_size = size;
2371 return cmb;
2372}
2373
2374static inline void nvme_release_cmb(struct nvme_dev *dev)
2375{
2376 if (dev->cmb) {
2377 iounmap(dev->cmb);
2378 dev->cmb = NULL;
2379 }
2380}
2381
Keith Busch9d713c22013-07-15 15:02:24 -06002382static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
2383{
Haiyan Hub80d5cc2013-09-10 11:25:37 +08002384 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
Keith Busch9d713c22013-07-15 15:02:24 -06002385}
2386
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002387static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002388{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002389 struct nvme_queue *adminq = dev->queues[0];
Christoph Hellwige75ec752015-05-22 11:12:39 +02002390 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch42f61422014-03-24 10:46:25 -06002391 int result, i, vecs, nr_io_queues, size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002392
Keith Busch42f61422014-03-24 10:46:25 -06002393 nr_io_queues = num_possible_cpus();
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002394 result = set_queue_count(dev, nr_io_queues);
Keith Buschbadc34d2014-06-23 14:25:35 -06002395 if (result <= 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002396 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002397 if (result < nr_io_queues)
2398 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002399
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002400 if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) {
2401 result = nvme_cmb_qdepth(dev, nr_io_queues,
2402 sizeof(struct nvme_command));
2403 if (result > 0)
2404 dev->q_depth = result;
2405 else
2406 nvme_release_cmb(dev);
2407 }
2408
Keith Busch9d713c22013-07-15 15:02:24 -06002409 size = db_bar_size(dev, nr_io_queues);
2410 if (size > 8192) {
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002411 iounmap(dev->bar);
Keith Busch9d713c22013-07-15 15:02:24 -06002412 do {
2413 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
2414 if (dev->bar)
2415 break;
2416 if (!--nr_io_queues)
2417 return -ENOMEM;
2418 size = db_bar_size(dev, nr_io_queues);
2419 } while (1);
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002420 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Keith Busch5a92e702014-02-21 14:13:44 -07002421 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002422 }
2423
Keith Busch9d713c22013-07-15 15:02:24 -06002424 /* Deregister the admin queue's interrupt */
Matthew Wilcox3193f072014-01-27 15:57:22 -05002425 free_irq(dev->entry[0].vector, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06002426
Jens Axboee32efbf2014-11-14 09:49:26 -07002427 /*
2428 * If we enable msix early due to not intx, disable it again before
2429 * setting up the full range we need.
2430 */
2431 if (!pdev->irq)
2432 pci_disable_msix(pdev);
2433
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002434 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002435 dev->entry[i].entry = i;
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002436 vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues);
2437 if (vecs < 0) {
2438 vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32));
2439 if (vecs < 0) {
2440 vecs = 1;
2441 } else {
2442 for (i = 0; i < vecs; i++)
2443 dev->entry[i].vector = i + pdev->irq;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002444 }
2445 }
2446
Matthew Wilcox063a8092013-06-20 10:53:48 -04002447 /*
2448 * Should investigate if there's a performance win from allocating
2449 * more queues than interrupt vectors; it might allow the submission
2450 * path to scale better, even if the receive path is limited by the
2451 * number of interrupts.
2452 */
2453 nr_io_queues = vecs;
Keith Busch42f61422014-03-24 10:46:25 -06002454 dev->max_qid = nr_io_queues;
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07002455
Matthew Wilcox3193f072014-01-27 15:57:22 -05002456 result = queue_request_irq(dev, adminq, adminq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06002457 if (result) {
2458 adminq->cq_vector = -1;
Keith Busch22404272013-07-15 15:02:20 -06002459 goto free_queues;
Jon Derrick758dd7f2015-06-30 11:22:52 -06002460 }
Matthew Wilcox1b234842011-01-20 13:01:49 -05002461
Keith Buschcd638942013-07-15 15:02:23 -06002462 /* Free previously allocated queues that are no longer usable */
Keith Busch42f61422014-03-24 10:46:25 -06002463 nvme_free_queues(dev, nr_io_queues + 1);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002464 nvme_create_io_queues(dev);
Keith Buschcd638942013-07-15 15:02:23 -06002465
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002466 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002467
Keith Busch22404272013-07-15 15:02:20 -06002468 free_queues:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002469 nvme_free_queues(dev, 1);
Keith Busch22404272013-07-15 15:02:20 -06002470 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002471}
2472
Keith Buscha5768aa2015-06-01 14:28:14 -06002473static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2474{
2475 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2476 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2477
2478 return nsa->ns_id - nsb->ns_id;
2479}
2480
2481static struct nvme_ns *nvme_find_ns(struct nvme_dev *dev, unsigned nsid)
2482{
2483 struct nvme_ns *ns;
2484
2485 list_for_each_entry(ns, &dev->namespaces, list) {
2486 if (ns->ns_id == nsid)
2487 return ns;
2488 if (ns->ns_id > nsid)
2489 break;
2490 }
2491 return NULL;
2492}
2493
2494static inline bool nvme_io_incapable(struct nvme_dev *dev)
2495{
2496 return (!dev->bar || readl(&dev->bar->csts) & NVME_CSTS_CFS ||
2497 dev->online_queues < 2);
2498}
2499
2500static void nvme_ns_remove(struct nvme_ns *ns)
2501{
2502 bool kill = nvme_io_incapable(ns->dev) && !blk_queue_dying(ns->queue);
2503
2504 if (kill)
2505 blk_set_queue_dying(ns->queue);
2506 if (ns->disk->flags & GENHD_FL_UP) {
2507 if (blk_get_integrity(ns->disk))
2508 blk_integrity_unregister(ns->disk);
2509 del_gendisk(ns->disk);
2510 }
2511 if (kill || !blk_queue_dying(ns->queue)) {
2512 blk_mq_abort_requeue_list(ns->queue);
2513 blk_cleanup_queue(ns->queue);
Keith Busch5105aa52015-10-02 10:37:28 -06002514 }
2515 list_del_init(&ns->list);
2516 kref_put(&ns->kref, nvme_free_ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002517}
2518
2519static void nvme_scan_namespaces(struct nvme_dev *dev, unsigned nn)
2520{
2521 struct nvme_ns *ns, *next;
2522 unsigned i;
2523
2524 for (i = 1; i <= nn; i++) {
2525 ns = nvme_find_ns(dev, i);
2526 if (ns) {
Keith Busch5105aa52015-10-02 10:37:28 -06002527 if (revalidate_disk(ns->disk))
Keith Buscha5768aa2015-06-01 14:28:14 -06002528 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002529 } else
2530 nvme_alloc_ns(dev, i);
2531 }
2532 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
Keith Busch5105aa52015-10-02 10:37:28 -06002533 if (ns->ns_id > nn)
Keith Buscha5768aa2015-06-01 14:28:14 -06002534 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002535 }
2536 list_sort(NULL, &dev->namespaces, ns_cmp);
2537}
2538
Keith Buschbda4e0f2015-09-03 08:18:17 -06002539static void nvme_set_irq_hints(struct nvme_dev *dev)
2540{
2541 struct nvme_queue *nvmeq;
2542 int i;
2543
2544 for (i = 0; i < dev->online_queues; i++) {
2545 nvmeq = dev->queues[i];
2546
2547 if (!nvmeq->tags || !(*nvmeq->tags))
2548 continue;
2549
2550 irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector,
2551 blk_mq_tags_cpumask(*nvmeq->tags));
2552 }
2553}
2554
Keith Buscha5768aa2015-06-01 14:28:14 -06002555static void nvme_dev_scan(struct work_struct *work)
2556{
2557 struct nvme_dev *dev = container_of(work, struct nvme_dev, scan_work);
2558 struct nvme_id_ctrl *ctrl;
2559
2560 if (!dev->tagset.tags)
2561 return;
2562 if (nvme_identify_ctrl(dev, &ctrl))
2563 return;
2564 nvme_scan_namespaces(dev, le32_to_cpup(&ctrl->nn));
2565 kfree(ctrl);
Keith Buschbda4e0f2015-09-03 08:18:17 -06002566 nvme_set_irq_hints(dev);
Keith Buscha5768aa2015-06-01 14:28:14 -06002567}
2568
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002569/*
2570 * Return: error value if an error occurred setting up the queues or calling
2571 * Identify Device. 0 if these succeeded, even if adding some of the
2572 * namespaces failed. At the moment, these failures are silent. TBD which
2573 * failures should be reported.
2574 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002575static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002576{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002577 struct pci_dev *pdev = to_pci_dev(dev->dev);
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04002578 int res;
Matthew Wilcox51814232011-02-01 16:18:08 -05002579 struct nvme_id_ctrl *ctrl;
Keith Busch159b67d2013-04-09 17:13:20 -06002580 int shift = NVME_CAP_MPSMIN(readq(&dev->bar->cap)) + 12;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002581
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002582 res = nvme_identify_ctrl(dev, &ctrl);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002583 if (res) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002584 dev_err(dev->dev, "Identify Controller failed (%d)\n", res);
Keith Busche1e5e562015-02-19 13:39:03 -07002585 return -EIO;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002586 }
2587
Keith Busch0e5e4f02012-11-09 16:33:05 -07002588 dev->oncs = le16_to_cpup(&ctrl->oncs);
Keith Buschc30341d2013-12-10 13:10:38 -07002589 dev->abort_limit = ctrl->acl + 1;
Keith Buscha7d2ce22014-04-29 11:41:28 -06002590 dev->vwc = ctrl->vwc;
Matthew Wilcox51814232011-02-01 16:18:08 -05002591 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
2592 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
2593 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Keith Busch159b67d2013-04-09 17:13:20 -06002594 if (ctrl->mdts)
Keith Busch8fc23e02012-07-26 11:29:57 -06002595 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
Matthew Wilcox68608c262013-06-21 14:36:34 -04002596 if ((pdev->vendor == PCI_VENDOR_ID_INTEL) &&
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002597 (pdev->device == 0x0953) && ctrl->vs[3]) {
2598 unsigned int max_hw_sectors;
2599
Keith Busch159b67d2013-04-09 17:13:20 -06002600 dev->stripe_size = 1 << (ctrl->vs[3] + shift);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002601 max_hw_sectors = dev->stripe_size >> (shift - 9);
2602 if (dev->max_hw_sectors) {
2603 dev->max_hw_sectors = min(max_hw_sectors,
2604 dev->max_hw_sectors);
2605 } else
2606 dev->max_hw_sectors = max_hw_sectors;
2607 }
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002608 kfree(ctrl);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002609
Keith Buschffe77042015-06-08 10:08:15 -06002610 if (!dev->tagset.tags) {
2611 dev->tagset.ops = &nvme_mq_ops;
2612 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2613 dev->tagset.timeout = NVME_IO_TIMEOUT;
2614 dev->tagset.numa_node = dev_to_node(dev->dev);
2615 dev->tagset.queue_depth =
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002616 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
Keith Buschffe77042015-06-08 10:08:15 -06002617 dev->tagset.cmd_size = nvme_cmd_size(dev);
2618 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2619 dev->tagset.driver_data = dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002620
Keith Buschffe77042015-06-08 10:08:15 -06002621 if (blk_mq_alloc_tag_set(&dev->tagset))
2622 return 0;
2623 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002624 schedule_work(&dev->scan_work);
Keith Busche1e5e562015-02-19 13:39:03 -07002625 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002626}
2627
Keith Busch0877cb02013-07-15 15:02:19 -06002628static int nvme_dev_map(struct nvme_dev *dev)
2629{
Keith Busch42f61422014-03-24 10:46:25 -06002630 u64 cap;
Keith Busch0877cb02013-07-15 15:02:19 -06002631 int bars, result = -ENOMEM;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002632 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002633
2634 if (pci_enable_device_mem(pdev))
2635 return result;
2636
2637 dev->entry[0].vector = pdev->irq;
2638 pci_set_master(pdev);
2639 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Jens Axboebe7837e2014-11-14 09:50:19 -07002640 if (!bars)
2641 goto disable_pci;
2642
Keith Busch0877cb02013-07-15 15:02:19 -06002643 if (pci_request_selected_regions(pdev, bars, "nvme"))
2644 goto disable_pci;
2645
Christoph Hellwige75ec752015-05-22 11:12:39 +02002646 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
2647 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
Russell King052d0ef2013-06-26 23:49:11 +01002648 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06002649
Keith Busch0877cb02013-07-15 15:02:19 -06002650 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
2651 if (!dev->bar)
2652 goto disable;
Jens Axboee32efbf2014-11-14 09:49:26 -07002653
Keith Busch0e53d182013-12-10 13:10:39 -07002654 if (readl(&dev->bar->csts) == -1) {
2655 result = -ENODEV;
2656 goto unmap;
2657 }
Jens Axboee32efbf2014-11-14 09:49:26 -07002658
2659 /*
2660 * Some devices don't advertse INTx interrupts, pre-enable a single
2661 * MSIX vec for setup. We'll adjust this later.
2662 */
2663 if (!pdev->irq) {
2664 result = pci_enable_msix(pdev, dev->entry, 1);
2665 if (result < 0)
2666 goto unmap;
2667 }
2668
Keith Busch42f61422014-03-24 10:46:25 -06002669 cap = readq(&dev->bar->cap);
2670 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
2671 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
Keith Busch0877cb02013-07-15 15:02:19 -06002672 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002673 if (readl(&dev->bar->vs) >= NVME_VS(1, 2))
2674 dev->cmb = nvme_map_cmb(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002675
2676 return 0;
2677
Keith Busch0e53d182013-12-10 13:10:39 -07002678 unmap:
2679 iounmap(dev->bar);
2680 dev->bar = NULL;
Keith Busch0877cb02013-07-15 15:02:19 -06002681 disable:
2682 pci_release_regions(pdev);
2683 disable_pci:
2684 pci_disable_device(pdev);
2685 return result;
2686}
2687
2688static void nvme_dev_unmap(struct nvme_dev *dev)
2689{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002690 struct pci_dev *pdev = to_pci_dev(dev->dev);
2691
2692 if (pdev->msi_enabled)
2693 pci_disable_msi(pdev);
2694 else if (pdev->msix_enabled)
2695 pci_disable_msix(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002696
2697 if (dev->bar) {
2698 iounmap(dev->bar);
2699 dev->bar = NULL;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002700 pci_release_regions(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002701 }
2702
Christoph Hellwige75ec752015-05-22 11:12:39 +02002703 if (pci_is_enabled(pdev))
2704 pci_disable_device(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002705}
2706
Keith Busch4d115422013-12-10 13:10:40 -07002707struct nvme_delq_ctx {
2708 struct task_struct *waiter;
2709 struct kthread_worker *worker;
2710 atomic_t refcount;
2711};
2712
2713static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev)
2714{
2715 dq->waiter = current;
2716 mb();
2717
2718 for (;;) {
2719 set_current_state(TASK_KILLABLE);
2720 if (!atomic_read(&dq->refcount))
2721 break;
2722 if (!schedule_timeout(ADMIN_TIMEOUT) ||
2723 fatal_signal_pending(current)) {
Keith Busch0fb59cb2015-01-07 18:55:50 -07002724 /*
2725 * Disable the controller first since we can't trust it
2726 * at this point, but leave the admin queue enabled
2727 * until all queue deletion requests are flushed.
2728 * FIXME: This may take a while if there are more h/w
2729 * queues than admin tags.
2730 */
Keith Busch4d115422013-12-10 13:10:40 -07002731 set_current_state(TASK_RUNNING);
Keith Busch4d115422013-12-10 13:10:40 -07002732 nvme_disable_ctrl(dev, readq(&dev->bar->cap));
Keith Busch0fb59cb2015-01-07 18:55:50 -07002733 nvme_clear_queue(dev->queues[0]);
Keith Busch4d115422013-12-10 13:10:40 -07002734 flush_kthread_worker(dq->worker);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002735 nvme_disable_queue(dev, 0);
Keith Busch4d115422013-12-10 13:10:40 -07002736 return;
2737 }
2738 }
2739 set_current_state(TASK_RUNNING);
2740}
2741
2742static void nvme_put_dq(struct nvme_delq_ctx *dq)
2743{
2744 atomic_dec(&dq->refcount);
2745 if (dq->waiter)
2746 wake_up_process(dq->waiter);
2747}
2748
2749static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq)
2750{
2751 atomic_inc(&dq->refcount);
2752 return dq;
2753}
2754
2755static void nvme_del_queue_end(struct nvme_queue *nvmeq)
2756{
2757 struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx;
Keith Busch4d115422013-12-10 13:10:40 -07002758 nvme_put_dq(dq);
2759}
2760
2761static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode,
2762 kthread_work_func_t fn)
2763{
2764 struct nvme_command c;
2765
2766 memset(&c, 0, sizeof(c));
2767 c.delete_queue.opcode = opcode;
2768 c.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2769
2770 init_kthread_work(&nvmeq->cmdinfo.work, fn);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002771 return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo,
2772 ADMIN_TIMEOUT);
Keith Busch4d115422013-12-10 13:10:40 -07002773}
2774
2775static void nvme_del_cq_work_handler(struct kthread_work *work)
2776{
2777 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2778 cmdinfo.work);
2779 nvme_del_queue_end(nvmeq);
2780}
2781
2782static int nvme_delete_cq(struct nvme_queue *nvmeq)
2783{
2784 return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq,
2785 nvme_del_cq_work_handler);
2786}
2787
2788static void nvme_del_sq_work_handler(struct kthread_work *work)
2789{
2790 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2791 cmdinfo.work);
2792 int status = nvmeq->cmdinfo.status;
2793
2794 if (!status)
2795 status = nvme_delete_cq(nvmeq);
2796 if (status)
2797 nvme_del_queue_end(nvmeq);
2798}
2799
2800static int nvme_delete_sq(struct nvme_queue *nvmeq)
2801{
2802 return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq,
2803 nvme_del_sq_work_handler);
2804}
2805
2806static void nvme_del_queue_start(struct kthread_work *work)
2807{
2808 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2809 cmdinfo.work);
Keith Busch4d115422013-12-10 13:10:40 -07002810 if (nvme_delete_sq(nvmeq))
2811 nvme_del_queue_end(nvmeq);
2812}
2813
2814static void nvme_disable_io_queues(struct nvme_dev *dev)
2815{
2816 int i;
2817 DEFINE_KTHREAD_WORKER_ONSTACK(worker);
2818 struct nvme_delq_ctx dq;
2819 struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
2820 &worker, "nvme%d", dev->instance);
2821
2822 if (IS_ERR(kworker_task)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002823 dev_err(dev->dev,
Keith Busch4d115422013-12-10 13:10:40 -07002824 "Failed to create queue del task\n");
2825 for (i = dev->queue_count - 1; i > 0; i--)
2826 nvme_disable_queue(dev, i);
2827 return;
2828 }
2829
2830 dq.waiter = NULL;
2831 atomic_set(&dq.refcount, 0);
2832 dq.worker = &worker;
2833 for (i = dev->queue_count - 1; i > 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002834 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002835
2836 if (nvme_suspend_queue(nvmeq))
2837 continue;
2838 nvmeq->cmdinfo.ctx = nvme_get_dq(&dq);
2839 nvmeq->cmdinfo.worker = dq.worker;
2840 init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start);
2841 queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work);
2842 }
2843 nvme_wait_dq(&dq, dev);
2844 kthread_stop(kworker_task);
2845}
2846
Dan McLeranb9afca32014-04-07 17:10:11 -06002847/*
2848* Remove the node from the device list and check
2849* for whether or not we need to stop the nvme_thread.
2850*/
2851static void nvme_dev_list_remove(struct nvme_dev *dev)
2852{
2853 struct task_struct *tmp = NULL;
2854
2855 spin_lock(&dev_list_lock);
2856 list_del_init(&dev->node);
2857 if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) {
2858 tmp = nvme_thread;
2859 nvme_thread = NULL;
2860 }
2861 spin_unlock(&dev_list_lock);
2862
2863 if (tmp)
2864 kthread_stop(tmp);
2865}
2866
Keith Buschc9d3bf82015-01-07 18:55:52 -07002867static void nvme_freeze_queues(struct nvme_dev *dev)
2868{
2869 struct nvme_ns *ns;
2870
2871 list_for_each_entry(ns, &dev->namespaces, list) {
2872 blk_mq_freeze_queue_start(ns->queue);
2873
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002874 spin_lock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002875 queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue);
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002876 spin_unlock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002877
2878 blk_mq_cancel_requeue_work(ns->queue);
2879 blk_mq_stop_hw_queues(ns->queue);
2880 }
2881}
2882
2883static void nvme_unfreeze_queues(struct nvme_dev *dev)
2884{
2885 struct nvme_ns *ns;
2886
2887 list_for_each_entry(ns, &dev->namespaces, list) {
2888 queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue);
2889 blk_mq_unfreeze_queue(ns->queue);
2890 blk_mq_start_stopped_hw_queues(ns->queue, true);
2891 blk_mq_kick_requeue_list(ns->queue);
2892 }
2893}
2894
Keith Buschf0b50732013-07-15 15:02:21 -06002895static void nvme_dev_shutdown(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002896{
Keith Busch22404272013-07-15 15:02:20 -06002897 int i;
Keith Busch7c1b2452014-06-25 11:18:12 -06002898 u32 csts = -1;
Keith Busch22404272013-07-15 15:02:20 -06002899
Dan McLeranb9afca32014-04-07 17:10:11 -06002900 nvme_dev_list_remove(dev);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002901
Keith Buschc9d3bf82015-01-07 18:55:52 -07002902 if (dev->bar) {
2903 nvme_freeze_queues(dev);
Keith Busch7c1b2452014-06-25 11:18:12 -06002904 csts = readl(&dev->bar->csts);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002905 }
Keith Busch7c1b2452014-06-25 11:18:12 -06002906 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
Keith Busch4d115422013-12-10 13:10:40 -07002907 for (i = dev->queue_count - 1; i >= 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002908 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002909 nvme_suspend_queue(nvmeq);
Keith Busch4d115422013-12-10 13:10:40 -07002910 }
2911 } else {
2912 nvme_disable_io_queues(dev);
Keith Busch1894d8f2013-07-15 15:02:22 -06002913 nvme_shutdown_ctrl(dev);
Keith Busch4d115422013-12-10 13:10:40 -07002914 nvme_disable_queue(dev, 0);
2915 }
Keith Buschf0b50732013-07-15 15:02:21 -06002916 nvme_dev_unmap(dev);
Keith Busch07836e62015-02-19 10:34:48 -07002917
2918 for (i = dev->queue_count - 1; i >= 0; i--)
2919 nvme_clear_queue(dev->queues[i]);
Keith Buschf0b50732013-07-15 15:02:21 -06002920}
2921
2922static void nvme_dev_remove(struct nvme_dev *dev)
2923{
Keith Busch5105aa52015-10-02 10:37:28 -06002924 struct nvme_ns *ns, *next;
Keith Buschf0b50732013-07-15 15:02:21 -06002925
Keith Busch5105aa52015-10-02 10:37:28 -06002926 list_for_each_entry_safe(ns, next, &dev->namespaces, list)
Keith Buscha5768aa2015-06-01 14:28:14 -06002927 nvme_ns_remove(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002928}
2929
Matthew Wilcox091b6092011-02-10 09:56:01 -05002930static int nvme_setup_prp_pools(struct nvme_dev *dev)
2931{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002932 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
Matthew Wilcox091b6092011-02-10 09:56:01 -05002933 PAGE_SIZE, PAGE_SIZE, 0);
2934 if (!dev->prp_page_pool)
2935 return -ENOMEM;
2936
Matthew Wilcox99802a72011-02-10 10:30:34 -05002937 /* Optimisation for I/Os between 4k and 128k */
Christoph Hellwige75ec752015-05-22 11:12:39 +02002938 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
Matthew Wilcox99802a72011-02-10 10:30:34 -05002939 256, 256, 0);
2940 if (!dev->prp_small_pool) {
2941 dma_pool_destroy(dev->prp_page_pool);
2942 return -ENOMEM;
2943 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002944 return 0;
2945}
2946
2947static void nvme_release_prp_pools(struct nvme_dev *dev)
2948{
2949 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002950 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002951}
2952
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002953static DEFINE_IDA(nvme_instance_ida);
2954
2955static int nvme_set_instance(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002956{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002957 int instance, error;
2958
2959 do {
2960 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
2961 return -ENODEV;
2962
2963 spin_lock(&dev_list_lock);
2964 error = ida_get_new(&nvme_instance_ida, &instance);
2965 spin_unlock(&dev_list_lock);
2966 } while (error == -EAGAIN);
2967
2968 if (error)
2969 return -ENODEV;
2970
2971 dev->instance = instance;
2972 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002973}
2974
2975static void nvme_release_instance(struct nvme_dev *dev)
2976{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002977 spin_lock(&dev_list_lock);
2978 ida_remove(&nvme_instance_ida, dev->instance);
2979 spin_unlock(&dev_list_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002980}
2981
Keith Busch5e82e952013-02-19 10:17:58 -07002982static void nvme_free_dev(struct kref *kref)
2983{
2984 struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref);
Keith Busch9ac27092014-01-31 16:53:39 -07002985
Christoph Hellwige75ec752015-05-22 11:12:39 +02002986 put_device(dev->dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07002987 put_device(dev->device);
Indraneel M285dffc2014-12-11 08:24:18 -07002988 nvme_release_instance(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06002989 if (dev->tagset.tags)
2990 blk_mq_free_tag_set(&dev->tagset);
2991 if (dev->admin_q)
2992 blk_put_queue(dev->admin_q);
Keith Busch5e82e952013-02-19 10:17:58 -07002993 kfree(dev->queues);
2994 kfree(dev->entry);
2995 kfree(dev);
2996}
2997
2998static int nvme_dev_open(struct inode *inode, struct file *f)
2999{
Keith Buschb3fffde2015-02-03 11:21:42 -07003000 struct nvme_dev *dev;
3001 int instance = iminor(inode);
3002 int ret = -ENODEV;
3003
3004 spin_lock(&dev_list_lock);
3005 list_for_each_entry(dev, &dev_list, node) {
3006 if (dev->instance == instance) {
Keith Busch2e1d8442015-02-12 15:33:00 -07003007 if (!dev->admin_q) {
3008 ret = -EWOULDBLOCK;
3009 break;
3010 }
Keith Buschb3fffde2015-02-03 11:21:42 -07003011 if (!kref_get_unless_zero(&dev->kref))
3012 break;
3013 f->private_data = dev;
3014 ret = 0;
3015 break;
3016 }
3017 }
3018 spin_unlock(&dev_list_lock);
3019
3020 return ret;
Keith Busch5e82e952013-02-19 10:17:58 -07003021}
3022
3023static int nvme_dev_release(struct inode *inode, struct file *f)
3024{
3025 struct nvme_dev *dev = f->private_data;
3026 kref_put(&dev->kref, nvme_free_dev);
3027 return 0;
3028}
3029
3030static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
3031{
3032 struct nvme_dev *dev = f->private_data;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003033 struct nvme_ns *ns;
3034
Keith Busch5e82e952013-02-19 10:17:58 -07003035 switch (cmd) {
3036 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003037 return nvme_user_cmd(dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06003038 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003039 if (list_empty(&dev->namespaces))
3040 return -ENOTTY;
3041 ns = list_first_entry(&dev->namespaces, struct nvme_ns, list);
3042 return nvme_user_cmd(dev, ns, (void __user *)arg);
Keith Busch4cc06522015-06-05 10:30:08 -06003043 case NVME_IOCTL_RESET:
3044 dev_warn(dev->dev, "resetting controller\n");
3045 return nvme_reset(dev);
Jon Derrick81f03fe2015-08-10 15:20:41 -06003046 case NVME_IOCTL_SUBSYS_RESET:
3047 return nvme_subsys_reset(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003048 default:
3049 return -ENOTTY;
3050 }
3051}
3052
3053static const struct file_operations nvme_dev_fops = {
3054 .owner = THIS_MODULE,
3055 .open = nvme_dev_open,
3056 .release = nvme_dev_release,
3057 .unlocked_ioctl = nvme_dev_ioctl,
3058 .compat_ioctl = nvme_dev_ioctl,
3059};
3060
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003061static void nvme_probe_work(struct work_struct *work)
Keith Buschf0b50732013-07-15 15:02:21 -06003062{
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003063 struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work);
Dan McLeranb9afca32014-04-07 17:10:11 -06003064 bool start_thread = false;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003065 int result;
Keith Buschf0b50732013-07-15 15:02:21 -06003066
3067 result = nvme_dev_map(dev);
3068 if (result)
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003069 goto out;
Keith Buschf0b50732013-07-15 15:02:21 -06003070
3071 result = nvme_configure_admin_queue(dev);
3072 if (result)
3073 goto unmap;
3074
3075 spin_lock(&dev_list_lock);
Dan McLeranb9afca32014-04-07 17:10:11 -06003076 if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) {
3077 start_thread = true;
3078 nvme_thread = NULL;
3079 }
Keith Buschf0b50732013-07-15 15:02:21 -06003080 list_add(&dev->node, &dev_list);
3081 spin_unlock(&dev_list_lock);
3082
Dan McLeranb9afca32014-04-07 17:10:11 -06003083 if (start_thread) {
3084 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
Keith Busch387caa52014-09-22 13:46:19 -06003085 wake_up_all(&nvme_kthread_wait);
Dan McLeranb9afca32014-04-07 17:10:11 -06003086 } else
3087 wait_event_killable(nvme_kthread_wait, nvme_thread);
3088
3089 if (IS_ERR_OR_NULL(nvme_thread)) {
3090 result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR;
3091 goto disable;
3092 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003093
3094 nvme_init_queue(dev->queues[0], 0);
Keith Busch0fb59cb2015-01-07 18:55:50 -07003095 result = nvme_alloc_admin_tags(dev);
3096 if (result)
3097 goto disable;
Dan McLeranb9afca32014-04-07 17:10:11 -06003098
Keith Buschf0b50732013-07-15 15:02:21 -06003099 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06003100 if (result)
Keith Busch0fb59cb2015-01-07 18:55:50 -07003101 goto free_tags;
Keith Buschf0b50732013-07-15 15:02:21 -06003102
Keith Busch1efccc92015-03-31 10:37:17 -06003103 dev->event_limit = 1;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003104
Christoph Hellwig2659e572015-10-02 18:51:31 +02003105 /*
3106 * Keep the controller around but remove all namespaces if we don't have
3107 * any working I/O queue.
3108 */
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003109 if (dev->online_queues < 2) {
3110 dev_warn(dev->dev, "IO queues not created\n");
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003111 nvme_dev_remove(dev);
3112 } else {
3113 nvme_unfreeze_queues(dev);
3114 nvme_dev_add(dev);
3115 }
3116
3117 return;
Keith Buschf0b50732013-07-15 15:02:21 -06003118
Keith Busch0fb59cb2015-01-07 18:55:50 -07003119 free_tags:
3120 nvme_dev_remove_admin(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06003121 blk_put_queue(dev->admin_q);
3122 dev->admin_q = NULL;
3123 dev->queues[0]->tags = NULL;
Keith Buschf0b50732013-07-15 15:02:21 -06003124 disable:
Keith Buscha1a5ef92013-12-16 13:50:00 -05003125 nvme_disable_queue(dev, 0);
Dan McLeranb9afca32014-04-07 17:10:11 -06003126 nvme_dev_list_remove(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003127 unmap:
3128 nvme_dev_unmap(dev);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003129 out:
3130 if (!work_busy(&dev->reset_work))
3131 nvme_dead_ctrl(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003132}
3133
Keith Busch9a6b9452013-12-10 13:10:36 -07003134static int nvme_remove_dead_ctrl(void *arg)
3135{
3136 struct nvme_dev *dev = (struct nvme_dev *)arg;
Christoph Hellwige75ec752015-05-22 11:12:39 +02003137 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003138
3139 if (pci_get_drvdata(pdev))
Keith Buschc81f4972014-06-23 15:24:53 -06003140 pci_stop_and_remove_bus_device_locked(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003141 kref_put(&dev->kref, nvme_free_dev);
3142 return 0;
3143}
3144
Keith Buschde3eff22015-06-18 13:36:39 -06003145static void nvme_dead_ctrl(struct nvme_dev *dev)
3146{
3147 dev_warn(dev->dev, "Device failed to resume\n");
3148 kref_get(&dev->kref);
3149 if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
3150 dev->instance))) {
3151 dev_err(dev->dev,
3152 "Failed to start controller remove task\n");
3153 kref_put(&dev->kref, nvme_free_dev);
3154 }
3155}
3156
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003157static void nvme_reset_work(struct work_struct *ws)
Keith Busch9a6b9452013-12-10 13:10:36 -07003158{
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003159 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003160 bool in_probe = work_busy(&dev->probe_work);
3161
Keith Busch9a6b9452013-12-10 13:10:36 -07003162 nvme_dev_shutdown(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003163
3164 /* Synchronize with device probe so that work will see failure status
3165 * and exit gracefully without trying to schedule another reset */
3166 flush_work(&dev->probe_work);
3167
3168 /* Fail this device if reset occured during probe to avoid
3169 * infinite initialization loops. */
3170 if (in_probe) {
Keith Buschde3eff22015-06-18 13:36:39 -06003171 nvme_dead_ctrl(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003172 return;
Keith Busch9a6b9452013-12-10 13:10:36 -07003173 }
Keith Buschffe77042015-06-08 10:08:15 -06003174 /* Schedule device resume asynchronously so the reset work is available
3175 * to cleanup errors that may occur during reinitialization */
3176 schedule_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003177}
3178
Christoph Hellwig906678922015-10-02 18:49:23 +02003179static int __nvme_reset(struct nvme_dev *dev)
3180{
3181 if (work_pending(&dev->reset_work))
3182 return -EBUSY;
3183 list_del_init(&dev->node);
3184 queue_work(nvme_workq, &dev->reset_work);
3185 return 0;
3186}
3187
Keith Busch4cc06522015-06-05 10:30:08 -06003188static int nvme_reset(struct nvme_dev *dev)
3189{
Christoph Hellwig906678922015-10-02 18:49:23 +02003190 int ret;
Keith Busch4cc06522015-06-05 10:30:08 -06003191
3192 if (!dev->admin_q || blk_queue_dying(dev->admin_q))
3193 return -ENODEV;
3194
3195 spin_lock(&dev_list_lock);
Christoph Hellwig906678922015-10-02 18:49:23 +02003196 ret = __nvme_reset(dev);
Keith Busch4cc06522015-06-05 10:30:08 -06003197 spin_unlock(&dev_list_lock);
3198
3199 if (!ret) {
3200 flush_work(&dev->reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003201 flush_work(&dev->probe_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003202 return 0;
3203 }
3204
3205 return ret;
3206}
3207
3208static ssize_t nvme_sysfs_reset(struct device *dev,
3209 struct device_attribute *attr, const char *buf,
3210 size_t count)
3211{
3212 struct nvme_dev *ndev = dev_get_drvdata(dev);
3213 int ret;
3214
3215 ret = nvme_reset(ndev);
3216 if (ret < 0)
3217 return ret;
3218
3219 return count;
3220}
3221static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
3222
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003223static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003224{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003225 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003226 struct nvme_dev *dev;
3227
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003228 node = dev_to_node(&pdev->dev);
3229 if (node == NUMA_NO_NODE)
3230 set_dev_node(&pdev->dev, 0);
3231
3232 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003233 if (!dev)
3234 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003235 dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry),
3236 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003237 if (!dev->entry)
3238 goto free;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003239 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
3240 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003241 if (!dev->queues)
3242 goto free;
3243
3244 INIT_LIST_HEAD(&dev->namespaces);
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003245 INIT_WORK(&dev->reset_work, nvme_reset_work);
Christoph Hellwige75ec752015-05-22 11:12:39 +02003246 dev->dev = get_device(&pdev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003247 pci_set_drvdata(pdev, dev);
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07003248 result = nvme_set_instance(dev);
3249 if (result)
Keith Buscha96d4f52014-08-19 19:15:59 -06003250 goto put_pci;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003251
Matthew Wilcox091b6092011-02-10 09:56:01 -05003252 result = nvme_setup_prp_pools(dev);
3253 if (result)
Keith Busch0877cb02013-07-15 15:02:19 -06003254 goto release;
Matthew Wilcox091b6092011-02-10 09:56:01 -05003255
Keith Buschfb35e912014-03-03 11:09:47 -07003256 kref_init(&dev->kref);
Keith Buschb3fffde2015-02-03 11:21:42 -07003257 dev->device = device_create(nvme_class, &pdev->dev,
3258 MKDEV(nvme_char_major, dev->instance),
3259 dev, "nvme%d", dev->instance);
3260 if (IS_ERR(dev->device)) {
3261 result = PTR_ERR(dev->device);
Keith Busch2e1d8442015-02-12 15:33:00 -07003262 goto release_pools;
Keith Buschb3fffde2015-02-03 11:21:42 -07003263 }
3264 get_device(dev->device);
Keith Busch4cc06522015-06-05 10:30:08 -06003265 dev_set_drvdata(dev->device, dev);
3266
3267 result = device_create_file(dev->device, &dev_attr_reset_controller);
3268 if (result)
3269 goto put_dev;
Keith Buschb3fffde2015-02-03 11:21:42 -07003270
Keith Busche6e96d72015-03-23 09:32:37 -06003271 INIT_LIST_HEAD(&dev->node);
Keith Buscha5768aa2015-06-01 14:28:14 -06003272 INIT_WORK(&dev->scan_work, nvme_dev_scan);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003273 INIT_WORK(&dev->probe_work, nvme_probe_work);
Keith Busch2e1d8442015-02-12 15:33:00 -07003274 schedule_work(&dev->probe_work);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003275 return 0;
3276
Keith Busch4cc06522015-06-05 10:30:08 -06003277 put_dev:
3278 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
3279 put_device(dev->device);
Keith Busch0877cb02013-07-15 15:02:19 -06003280 release_pools:
Matthew Wilcox091b6092011-02-10 09:56:01 -05003281 nvme_release_prp_pools(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06003282 release:
3283 nvme_release_instance(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06003284 put_pci:
Christoph Hellwige75ec752015-05-22 11:12:39 +02003285 put_device(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003286 free:
3287 kfree(dev->queues);
3288 kfree(dev->entry);
3289 kfree(dev);
3290 return result;
3291}
3292
Keith Buschf0d54a52014-05-02 10:40:43 -06003293static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
3294{
Keith Buscha6739472014-06-23 16:03:21 -06003295 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buschf0d54a52014-05-02 10:40:43 -06003296
Keith Buscha6739472014-06-23 16:03:21 -06003297 if (prepare)
3298 nvme_dev_shutdown(dev);
3299 else
Keith Busch0a7385a2015-10-02 10:37:29 -06003300 schedule_work(&dev->probe_work);
Keith Buschf0d54a52014-05-02 10:40:43 -06003301}
3302
Keith Busch09ece142014-01-27 11:29:40 -05003303static void nvme_shutdown(struct pci_dev *pdev)
3304{
3305 struct nvme_dev *dev = pci_get_drvdata(pdev);
3306 nvme_dev_shutdown(dev);
3307}
3308
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003309static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003310{
3311 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003312
3313 spin_lock(&dev_list_lock);
3314 list_del_init(&dev->node);
3315 spin_unlock(&dev_list_lock);
3316
3317 pci_set_drvdata(pdev, NULL);
Keith Busch2e1d8442015-02-12 15:33:00 -07003318 flush_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003319 flush_work(&dev->reset_work);
Keith Buscha5768aa2015-06-01 14:28:14 -06003320 flush_work(&dev->scan_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003321 device_remove_file(dev->device, &dev_attr_reset_controller);
Keith Buschc9d3bf82015-01-07 18:55:52 -07003322 nvme_dev_remove(dev);
Keith Busch3399a3f2015-06-18 13:36:40 -06003323 nvme_dev_shutdown(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003324 nvme_dev_remove_admin(dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07003325 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance));
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003326 nvme_free_queues(dev, 0);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06003327 nvme_release_cmb(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003328 nvme_release_prp_pools(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003329 kref_put(&dev->kref, nvme_free_dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003330}
3331
3332/* These functions are yet to be implemented */
3333#define nvme_error_detected NULL
3334#define nvme_dump_registers NULL
3335#define nvme_link_reset NULL
3336#define nvme_slot_reset NULL
3337#define nvme_error_resume NULL
Keith Buschcd638942013-07-15 15:02:23 -06003338
Jingoo Han671a6012014-02-13 11:19:14 +09003339#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06003340static int nvme_suspend(struct device *dev)
3341{
3342 struct pci_dev *pdev = to_pci_dev(dev);
3343 struct nvme_dev *ndev = pci_get_drvdata(pdev);
3344
3345 nvme_dev_shutdown(ndev);
3346 return 0;
3347}
3348
3349static int nvme_resume(struct device *dev)
3350{
3351 struct pci_dev *pdev = to_pci_dev(dev);
3352 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06003353
Keith Busch0a7385a2015-10-02 10:37:29 -06003354 schedule_work(&ndev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003355 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06003356}
Jingoo Han671a6012014-02-13 11:19:14 +09003357#endif
Keith Buschcd638942013-07-15 15:02:23 -06003358
3359static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003360
Stephen Hemminger1d352032012-09-07 09:33:17 -07003361static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003362 .error_detected = nvme_error_detected,
3363 .mmio_enabled = nvme_dump_registers,
3364 .link_reset = nvme_link_reset,
3365 .slot_reset = nvme_slot_reset,
3366 .resume = nvme_error_resume,
Keith Buschf0d54a52014-05-02 10:40:43 -06003367 .reset_notify = nvme_reset_notify,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003368};
3369
3370/* Move to pci_ids.h later */
3371#define PCI_CLASS_STORAGE_EXPRESS 0x010802
3372
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003373static const struct pci_device_id nvme_id_table[] = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003374 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
3375 { 0, }
3376};
3377MODULE_DEVICE_TABLE(pci, nvme_id_table);
3378
3379static struct pci_driver nvme_driver = {
3380 .name = "nvme",
3381 .id_table = nvme_id_table,
3382 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003383 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05003384 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06003385 .driver = {
3386 .pm = &nvme_dev_pm_ops,
3387 },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003388 .err_handler = &nvme_err_handler,
3389};
3390
3391static int __init nvme_init(void)
3392{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003393 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003394
Dan McLeranb9afca32014-04-07 17:10:11 -06003395 init_waitqueue_head(&nvme_kthread_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003396
Keith Busch9a6b9452013-12-10 13:10:36 -07003397 nvme_workq = create_singlethread_workqueue("nvme");
3398 if (!nvme_workq)
Dan McLeranb9afca32014-04-07 17:10:11 -06003399 return -ENOMEM;
Keith Busch9a6b9452013-12-10 13:10:36 -07003400
Keith Busch5c42ea12012-07-25 16:05:18 -06003401 result = register_blkdev(nvme_major, "nvme");
3402 if (result < 0)
Keith Busch9a6b9452013-12-10 13:10:36 -07003403 goto kill_workq;
Keith Busch5c42ea12012-07-25 16:05:18 -06003404 else if (result > 0)
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003405 nvme_major = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003406
Keith Buschb3fffde2015-02-03 11:21:42 -07003407 result = __register_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme",
3408 &nvme_dev_fops);
3409 if (result < 0)
3410 goto unregister_blkdev;
3411 else if (result > 0)
3412 nvme_char_major = result;
3413
3414 nvme_class = class_create(THIS_MODULE, "nvme");
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003415 if (IS_ERR(nvme_class)) {
3416 result = PTR_ERR(nvme_class);
Keith Buschb3fffde2015-02-03 11:21:42 -07003417 goto unregister_chrdev;
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003418 }
Keith Buschb3fffde2015-02-03 11:21:42 -07003419
Keith Buschf3db22f2014-06-11 11:51:35 -06003420 result = pci_register_driver(&nvme_driver);
3421 if (result)
Keith Buschb3fffde2015-02-03 11:21:42 -07003422 goto destroy_class;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003423 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003424
Keith Buschb3fffde2015-02-03 11:21:42 -07003425 destroy_class:
3426 class_destroy(nvme_class);
3427 unregister_chrdev:
3428 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003429 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003430 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003431 kill_workq:
3432 destroy_workqueue(nvme_workq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003433 return result;
3434}
3435
3436static void __exit nvme_exit(void)
3437{
3438 pci_unregister_driver(&nvme_driver);
3439 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003440 destroy_workqueue(nvme_workq);
Keith Buschb3fffde2015-02-03 11:21:42 -07003441 class_destroy(nvme_class);
3442 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Dan McLeranb9afca32014-04-07 17:10:11 -06003443 BUG_ON(nvme_thread && !IS_ERR(nvme_thread));
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04003444 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003445}
3446
3447MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
3448MODULE_LICENSE("GPL");
Keith Buschc78b47132014-11-21 15:16:32 -07003449MODULE_VERSION("1.0");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003450module_init(nvme_init);
3451module_exit(nvme_exit);