blob: 75970fdeeecb3026ca31d9e51b86dba8a79735f9 [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>
Linus Torvalds9cf5c092015-11-06 14:22:15 -080044#include <linux/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))
Dan McLeran2484f402014-07-01 09:33:32 -060055#define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050056
Christoph Hellwig21d34712015-11-26 09:08:36 +010057unsigned char admin_timeout = 60;
Keith Busch9d43cf62014-05-13 11:42:02 -060058module_param(admin_timeout, byte, 0644);
59MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050060
Matthew Wilcoxbd676082014-06-03 23:04:30 -040061unsigned char nvme_io_timeout = 30;
62module_param_named(io_timeout, nvme_io_timeout, byte, 0644);
Keith Buschb3550842014-04-04 11:43:36 -060063MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050064
Dan McLeran2484f402014-07-01 09:33:32 -060065static unsigned char shutdown_timeout = 5;
66module_param(shutdown_timeout, byte, 0644);
67MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
68
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050069static int nvme_major;
70module_param(nvme_major, int, 0);
71
Keith Buschb3fffde2015-02-03 11:21:42 -070072static int nvme_char_major;
73module_param(nvme_char_major, int, 0);
74
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050075static int use_threaded_interrupts;
76module_param(use_threaded_interrupts, int, 0);
77
Jon Derrick8ffaadf2015-07-20 10:14:09 -060078static bool use_cmb_sqes = true;
79module_param(use_cmb_sqes, bool, 0644);
80MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes");
81
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050082static DEFINE_SPINLOCK(dev_list_lock);
83static LIST_HEAD(dev_list);
84static struct task_struct *nvme_thread;
Keith Busch9a6b9452013-12-10 13:10:36 -070085static struct workqueue_struct *nvme_workq;
Dan McLeranb9afca32014-04-07 17:10:11 -060086static wait_queue_head_t nvme_kthread_wait;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050087
Keith Buschb3fffde2015-02-03 11:21:42 -070088static struct class *nvme_class;
89
Christoph Hellwig1c63dc62015-11-26 10:06:56 +010090struct nvme_dev;
91struct nvme_queue;
92
Christoph Hellwig906678922015-10-02 18:49:23 +020093static int __nvme_reset(struct nvme_dev *dev);
Keith Busch4cc06522015-06-05 10:30:08 -060094static int nvme_reset(struct nvme_dev *dev);
Jens Axboea0fa9642015-11-03 20:37:26 -070095static void nvme_process_cq(struct nvme_queue *nvmeq);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +020096static void nvme_dead_ctrl(struct nvme_dev *dev);
Keith Buschd4b4ff82013-12-10 13:10:37 -070097
Keith Busch4d115422013-12-10 13:10:40 -070098struct async_cmd_info {
99 struct kthread_work work;
100 struct kthread_worker *worker;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700101 struct request *req;
Keith Busch4d115422013-12-10 13:10:40 -0700102 u32 result;
103 int status;
104 void *ctx;
105};
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500106
107/*
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100108 * Represents an NVM Express device. Each nvme_dev is a PCI function.
109 */
110struct nvme_dev {
111 struct list_head node;
112 struct nvme_queue **queues;
113 struct blk_mq_tag_set tagset;
114 struct blk_mq_tag_set admin_tagset;
115 u32 __iomem *dbs;
116 struct device *dev;
117 struct dma_pool *prp_page_pool;
118 struct dma_pool *prp_small_pool;
119 unsigned queue_count;
120 unsigned online_queues;
121 unsigned max_qid;
122 int q_depth;
123 u32 db_stride;
124 u32 ctrl_config;
125 struct msix_entry *entry;
126 void __iomem *bar;
127 struct list_head namespaces;
128 struct kref kref;
129 struct device *device;
130 struct work_struct reset_work;
131 struct work_struct probe_work;
132 struct work_struct scan_work;
133 bool subsystem;
134 u32 max_hw_sectors;
135 u32 stripe_size;
136 u32 page_size;
137 void __iomem *cmb;
138 dma_addr_t cmb_dma_addr;
139 u64 cmb_size;
140 u32 cmbsz;
141
142 struct nvme_ctrl ctrl;
143};
144
145static inline struct nvme_dev *to_nvme_dev(struct nvme_ctrl *ctrl)
146{
147 return container_of(ctrl, struct nvme_dev, ctrl);
148}
149
150/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500151 * An NVM Express queue. Each device has at least two (one for admin
152 * commands and one for I/O commands).
153 */
154struct nvme_queue {
155 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500156 struct nvme_dev *dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -0500157 char irqname[24]; /* nvme4294967295-65535\0 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500158 spinlock_t q_lock;
159 struct nvme_command *sq_cmds;
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600160 struct nvme_command __iomem *sq_cmds_io;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500161 volatile struct nvme_completion *cqes;
Keith Busch42483222015-06-01 09:29:54 -0600162 struct blk_mq_tags **tags;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500163 dma_addr_t sq_dma_addr;
164 dma_addr_t cq_dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500165 u32 __iomem *q_db;
166 u16 q_depth;
Jens Axboe6222d172015-01-15 15:19:10 -0700167 s16 cq_vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500168 u16 sq_head;
169 u16 sq_tail;
170 u16 cq_head;
Keith Buschc30341d2013-12-10 13:10:38 -0700171 u16 qid;
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400172 u8 cq_phase;
173 u8 cqe_seen;
Keith Busch4d115422013-12-10 13:10:40 -0700174 struct async_cmd_info cmdinfo;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500175};
176
177/*
Christoph Hellwig71bd1502015-10-16 07:58:32 +0200178 * The nvme_iod describes the data in an I/O, including the list of PRP
179 * entries. You can't see it in this data structure because C doesn't let
180 * me express that. Use nvme_alloc_iod to ensure there's enough space
181 * allocated to store the PRP list.
182 */
183struct nvme_iod {
184 unsigned long private; /* For the use of the submitter of the I/O */
185 int npages; /* In the PRP list. 0 means small pool in use */
186 int offset; /* Of PRP list */
187 int nents; /* Used in scatterlist */
188 int length; /* Of data, in bytes */
189 dma_addr_t first_dma;
190 struct scatterlist meta_sg[1]; /* metadata requires single contiguous buffer */
191 struct scatterlist sg[0];
192};
193
194/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500195 * Check we didin't inadvertently grow the command struct
196 */
197static inline void _nvme_check_size(void)
198{
199 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
200 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
201 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
202 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
203 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
Vishal Vermaf8ebf842013-03-27 07:13:41 -0400204 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
Keith Buschc30341d2013-12-10 13:10:38 -0700205 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500206 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
207 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
208 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
209 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
Keith Busch6ecec742012-09-26 12:49:27 -0600210 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500211}
212
Keith Buschedd10d32014-04-03 16:45:23 -0600213typedef void (*nvme_completion_fn)(struct nvme_queue *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400214 struct nvme_completion *);
215
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500216struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400217 nvme_completion_fn fn;
218 void *ctx;
Keith Buschc30341d2013-12-10 13:10:38 -0700219 int aborted;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700220 struct nvme_queue *nvmeq;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700221 struct nvme_iod iod[0];
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500222};
223
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700224/*
225 * Max size of iod being embedded in the request payload
226 */
227#define NVME_INT_PAGES 2
228#define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->page_size)
Chong Yuanfda631f2015-03-27 09:21:32 +0800229#define NVME_INT_MASK 0x01
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700230
231/*
232 * Will slightly overestimate the number of pages needed. This is OK
233 * as it only leads to a small amount of wasted memory for the lifetime of
234 * the I/O.
235 */
236static int nvme_npages(unsigned size, struct nvme_dev *dev)
237{
238 unsigned nprps = DIV_ROUND_UP(size + dev->page_size, dev->page_size);
239 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
240}
241
242static unsigned int nvme_cmd_size(struct nvme_dev *dev)
243{
244 unsigned int ret = sizeof(struct nvme_cmd_info);
245
246 ret += sizeof(struct nvme_iod);
247 ret += sizeof(__le64 *) * nvme_npages(NVME_INT_BYTES(dev), dev);
248 ret += sizeof(struct scatterlist) * NVME_INT_PAGES;
249
250 return ret;
251}
252
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700253static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
254 unsigned int hctx_idx)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500255{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700256 struct nvme_dev *dev = data;
257 struct nvme_queue *nvmeq = dev->queues[0];
258
Keith Busch42483222015-06-01 09:29:54 -0600259 WARN_ON(hctx_idx != 0);
260 WARN_ON(dev->admin_tagset.tags[0] != hctx->tags);
261 WARN_ON(nvmeq->tags);
262
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700263 hctx->driver_data = nvmeq;
Keith Busch42483222015-06-01 09:29:54 -0600264 nvmeq->tags = &dev->admin_tagset.tags[0];
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700265 return 0;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500266}
267
Keith Busch4af0e212015-06-08 10:08:13 -0600268static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
269{
270 struct nvme_queue *nvmeq = hctx->driver_data;
271
272 nvmeq->tags = NULL;
273}
274
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700275static int nvme_admin_init_request(void *data, struct request *req,
276 unsigned int hctx_idx, unsigned int rq_idx,
277 unsigned int numa_node)
Keith Busch22404272013-07-15 15:02:20 -0600278{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700279 struct nvme_dev *dev = data;
280 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
281 struct nvme_queue *nvmeq = dev->queues[0];
282
283 BUG_ON(!nvmeq);
284 cmd->nvmeq = nvmeq;
285 return 0;
Keith Busch22404272013-07-15 15:02:20 -0600286}
287
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700288static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
289 unsigned int hctx_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500290{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700291 struct nvme_dev *dev = data;
Keith Busch42483222015-06-01 09:29:54 -0600292 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500293
Keith Busch42483222015-06-01 09:29:54 -0600294 if (!nvmeq->tags)
295 nvmeq->tags = &dev->tagset.tags[hctx_idx];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500296
Keith Busch42483222015-06-01 09:29:54 -0600297 WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700298 hctx->driver_data = nvmeq;
299 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500300}
301
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700302static int nvme_init_request(void *data, struct request *req,
303 unsigned int hctx_idx, unsigned int rq_idx,
304 unsigned int numa_node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500305{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700306 struct nvme_dev *dev = data;
307 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
308 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
309
310 BUG_ON(!nvmeq);
311 cmd->nvmeq = nvmeq;
312 return 0;
313}
314
315static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx,
316 nvme_completion_fn handler)
317{
318 cmd->fn = handler;
319 cmd->ctx = ctx;
320 cmd->aborted = 0;
Keith Buschc917dfe2015-01-07 18:55:48 -0700321 blk_mq_start_request(blk_mq_rq_from_pdu(cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500322}
323
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700324static void *iod_get_private(struct nvme_iod *iod)
325{
326 return (void *) (iod->private & ~0x1UL);
327}
328
329/*
330 * If bit 0 is set, the iod is embedded in the request payload.
331 */
332static bool iod_should_kfree(struct nvme_iod *iod)
333{
Chong Yuanfda631f2015-03-27 09:21:32 +0800334 return (iod->private & NVME_INT_MASK) == 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700335}
336
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400337/* Special values must be less than 0x1000 */
338#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500339#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
340#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
341#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500342
Keith Buschedd10d32014-04-03 16:45:23 -0600343static void special_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400344 struct nvme_completion *cqe)
345{
346 if (ctx == CMD_CTX_CANCELLED)
347 return;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400348 if (ctx == CMD_CTX_COMPLETED) {
Keith Buschedd10d32014-04-03 16:45:23 -0600349 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400350 "completed id %d twice on queue %d\n",
351 cqe->command_id, le16_to_cpup(&cqe->sq_id));
352 return;
353 }
354 if (ctx == CMD_CTX_INVALID) {
Keith Buschedd10d32014-04-03 16:45:23 -0600355 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400356 "invalid id %d completed on queue %d\n",
357 cqe->command_id, le16_to_cpup(&cqe->sq_id));
358 return;
359 }
Keith Buschedd10d32014-04-03 16:45:23 -0600360 dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400361}
362
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700363static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn)
364{
365 void *ctx;
366
367 if (fn)
368 *fn = cmd->fn;
369 ctx = cmd->ctx;
370 cmd->fn = special_completion;
371 cmd->ctx = CMD_CTX_CANCELLED;
372 return ctx;
373}
374
375static void async_req_completion(struct nvme_queue *nvmeq, void *ctx,
376 struct nvme_completion *cqe)
377{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700378 u32 result = le32_to_cpup(&cqe->result);
379 u16 status = le16_to_cpup(&cqe->status) >> 1;
380
381 if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ)
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100382 ++nvmeq->dev->ctrl.event_limit;
Keith Buscha5768aa2015-06-01 14:28:14 -0600383 if (status != NVME_SC_SUCCESS)
384 return;
385
386 switch (result & 0xff07) {
387 case NVME_AER_NOTICE_NS_CHANGED:
388 dev_info(nvmeq->q_dmadev, "rescanning\n");
389 schedule_work(&nvmeq->dev->scan_work);
390 default:
391 dev_warn(nvmeq->q_dmadev, "async event result %08x\n", result);
392 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700393}
394
395static void abort_completion(struct nvme_queue *nvmeq, void *ctx,
396 struct nvme_completion *cqe)
397{
398 struct request *req = ctx;
399
400 u16 status = le16_to_cpup(&cqe->status) >> 1;
401 u32 result = le32_to_cpup(&cqe->result);
402
Keith Busch42483222015-06-01 09:29:54 -0600403 blk_mq_free_request(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700404
405 dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +0100406 ++nvmeq->dev->ctrl.abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700407}
408
Keith Buschedd10d32014-04-03 16:45:23 -0600409static void async_completion(struct nvme_queue *nvmeq, void *ctx,
Keith Busch4d115422013-12-10 13:10:40 -0700410 struct nvme_completion *cqe)
411{
412 struct async_cmd_info *cmdinfo = ctx;
413 cmdinfo->result = le32_to_cpup(&cqe->result);
414 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
415 queue_kthread_work(cmdinfo->worker, &cmdinfo->work);
Keith Busch42483222015-06-01 09:29:54 -0600416 blk_mq_free_request(cmdinfo->req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700417}
418
419static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq,
420 unsigned int tag)
421{
Keith Busch42483222015-06-01 09:29:54 -0600422 struct request *req = blk_mq_tag_to_rq(*nvmeq->tags, tag);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700423
424 return blk_mq_rq_to_pdu(req);
Keith Busch4d115422013-12-10 13:10:40 -0700425}
426
Matthew Wilcox184d2942011-05-11 21:36:38 -0400427/*
428 * Called with local interrupts disabled and the q_lock held. May not sleep.
429 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700430static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400431 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500432{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700433 struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400434 void *ctx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700435 if (tag >= nvmeq->q_depth) {
436 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500437 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400438 }
Keith Busch859361a2012-08-02 14:05:59 -0600439 if (fn)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700440 *fn = cmd->fn;
441 ctx = cmd->ctx;
442 cmd->fn = special_completion;
443 cmd->ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400444 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500445}
446
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500447/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400448 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500449 * @nvmeq: The queue to use
450 * @cmd: The command to send
451 *
452 * Safe to use from interrupt context
453 */
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530454static void __nvme_submit_cmd(struct nvme_queue *nvmeq,
455 struct nvme_command *cmd)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500456{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700457 u16 tail = nvmeq->sq_tail;
458
Jon Derrick8ffaadf2015-07-20 10:14:09 -0600459 if (nvmeq->sq_cmds_io)
460 memcpy_toio(&nvmeq->sq_cmds_io[tail], cmd, sizeof(*cmd));
461 else
462 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
463
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500464 if (++tail == nvmeq->q_depth)
465 tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500466 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500467 nvmeq->sq_tail = tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500468}
469
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530470static void nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700471{
472 unsigned long flags;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700473 spin_lock_irqsave(&nvmeq->q_lock, flags);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +0530474 __nvme_submit_cmd(nvmeq, cmd);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700475 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700476}
477
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500478static __le64 **iod_list(struct nvme_iod *iod)
479{
480 return ((void *)iod) + iod->offset;
481}
482
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700483static inline void iod_init(struct nvme_iod *iod, unsigned nbytes,
484 unsigned nseg, unsigned long private)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500485{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700486 iod->private = private;
487 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
488 iod->npages = -1;
489 iod->length = nbytes;
490 iod->nents = 0;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500491}
492
493static struct nvme_iod *
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700494__nvme_alloc_iod(unsigned nseg, unsigned bytes, struct nvme_dev *dev,
495 unsigned long priv, gfp_t gfp)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500496{
497 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700498 sizeof(__le64 *) * nvme_npages(bytes, dev) +
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500499 sizeof(struct scatterlist) * nseg, gfp);
500
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700501 if (iod)
502 iod_init(iod, bytes, nseg, priv);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500503
504 return iod;
505}
506
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700507static struct nvme_iod *nvme_alloc_iod(struct request *rq, struct nvme_dev *dev,
508 gfp_t gfp)
509{
510 unsigned size = !(rq->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(rq) :
511 sizeof(struct nvme_dsm_range);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700512 struct nvme_iod *iod;
513
514 if (rq->nr_phys_segments <= NVME_INT_PAGES &&
515 size <= NVME_INT_BYTES(dev)) {
516 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(rq);
517
518 iod = cmd->iod;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700519 iod_init(iod, size, rq->nr_phys_segments,
Chong Yuanfda631f2015-03-27 09:21:32 +0800520 (unsigned long) rq | NVME_INT_MASK);
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700521 return iod;
522 }
523
524 return __nvme_alloc_iod(rq->nr_phys_segments, size, dev,
525 (unsigned long) rq, gfp);
526}
527
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200528static void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500529{
Keith Busch1d090622014-06-23 11:34:01 -0600530 const int last_prp = dev->page_size / 8 - 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500531 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500532 __le64 **list = iod_list(iod);
533 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500534
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500535 if (iod->npages == 0)
536 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
537 for (i = 0; i < iod->npages; i++) {
538 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500539 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500540 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500541 prp_dma = next_prp_dma;
542 }
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700543
544 if (iod_should_kfree(iod))
545 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500546}
547
Keith Buschb4ff9c82014-08-29 09:06:12 -0600548static int nvme_error_status(u16 status)
549{
550 switch (status & 0x7ff) {
551 case NVME_SC_SUCCESS:
552 return 0;
553 case NVME_SC_CAP_EXCEEDED:
554 return -ENOSPC;
555 default:
556 return -EIO;
557 }
558}
559
Keith Busch52b68d72015-02-23 09:16:21 -0700560#ifdef CONFIG_BLK_DEV_INTEGRITY
Keith Busche1e5e562015-02-19 13:39:03 -0700561static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
562{
563 if (be32_to_cpu(pi->ref_tag) == v)
564 pi->ref_tag = cpu_to_be32(p);
565}
566
567static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
568{
569 if (be32_to_cpu(pi->ref_tag) == p)
570 pi->ref_tag = cpu_to_be32(v);
571}
572
573/**
574 * nvme_dif_remap - remaps ref tags to bip seed and physical lba
575 *
576 * The virtual start sector is the one that was originally submitted by the
577 * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical
578 * start sector may be different. Remap protection information to match the
579 * physical LBA on writes, and back to the original seed on reads.
580 *
581 * Type 0 and 3 do not have a ref tag, so no remapping required.
582 */
583static void nvme_dif_remap(struct request *req,
584 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
585{
586 struct nvme_ns *ns = req->rq_disk->private_data;
587 struct bio_integrity_payload *bip;
588 struct t10_pi_tuple *pi;
589 void *p, *pmap;
590 u32 i, nlb, ts, phys, virt;
591
592 if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3)
593 return;
594
595 bip = bio_integrity(req->bio);
596 if (!bip)
597 return;
598
599 pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset;
Keith Busche1e5e562015-02-19 13:39:03 -0700600
601 p = pmap;
602 virt = bip_get_seed(bip);
603 phys = nvme_block_nr(ns, blk_rq_pos(req));
604 nlb = (blk_rq_bytes(req) >> ns->lba_shift);
Dan Williamsac6fc482015-10-21 13:20:18 -0400605 ts = ns->disk->queue->integrity.tuple_size;
Keith Busche1e5e562015-02-19 13:39:03 -0700606
607 for (i = 0; i < nlb; i++, virt++, phys++) {
608 pi = (struct t10_pi_tuple *)p;
609 dif_swap(phys, virt, pi);
610 p += ts;
611 }
612 kunmap_atomic(pmap);
613}
614
Keith Busch52b68d72015-02-23 09:16:21 -0700615static void nvme_init_integrity(struct nvme_ns *ns)
616{
617 struct blk_integrity integrity;
618
619 switch (ns->pi_type) {
620 case NVME_NS_DPS_PI_TYPE3:
Martin K. Petersen0f8087e2015-10-21 13:19:33 -0400621 integrity.profile = &t10_pi_type3_crc;
Keith Busch52b68d72015-02-23 09:16:21 -0700622 break;
623 case NVME_NS_DPS_PI_TYPE1:
624 case NVME_NS_DPS_PI_TYPE2:
Martin K. Petersen0f8087e2015-10-21 13:19:33 -0400625 integrity.profile = &t10_pi_type1_crc;
Keith Busch52b68d72015-02-23 09:16:21 -0700626 break;
627 default:
Dan Williams4125a092015-10-21 13:20:29 -0400628 integrity.profile = NULL;
Keith Busch52b68d72015-02-23 09:16:21 -0700629 break;
630 }
631 integrity.tuple_size = ns->ms;
632 blk_integrity_register(ns->disk, &integrity);
633 blk_queue_max_integrity_segments(ns->queue, 1);
634}
635#else /* CONFIG_BLK_DEV_INTEGRITY */
636static void nvme_dif_remap(struct request *req,
637 void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi))
638{
639}
640static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi)
641{
642}
643static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi)
644{
645}
646static void nvme_init_integrity(struct nvme_ns *ns)
647{
648}
649#endif
650
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700651static void req_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500652 struct nvme_completion *cqe)
653{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500654 struct nvme_iod *iod = ctx;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700655 struct request *req = iod_get_private(iod);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700656 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500657 u16 status = le16_to_cpup(&cqe->status) >> 1;
Keith Busch0dfc70c2015-10-15 13:38:48 -0600658 bool requeue = false;
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200659 int error = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500660
Keith Buschedd10d32014-04-03 16:45:23 -0600661 if (unlikely(status)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700662 if (!(status & NVME_SC_DNR || blk_noretry_request(req))
663 && (jiffies - req->start_time) < req->timeout) {
Keith Buschc9d3bf82015-01-07 18:55:52 -0700664 unsigned long flags;
665
Keith Busch0dfc70c2015-10-15 13:38:48 -0600666 requeue = true;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700667 blk_mq_requeue_request(req);
Keith Buschc9d3bf82015-01-07 18:55:52 -0700668 spin_lock_irqsave(req->q->queue_lock, flags);
669 if (!blk_queue_stopped(req->q))
670 blk_mq_kick_requeue_list(req->q);
671 spin_unlock_irqrestore(req->q->queue_lock, flags);
Keith Busch0dfc70c2015-10-15 13:38:48 -0600672 goto release_iod;
Keith Buschedd10d32014-04-03 16:45:23 -0600673 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200674
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200675 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
Keith Busch17188bb2015-06-08 10:08:14 -0600676 if (cmd_rq->ctx == CMD_CTX_CANCELLED)
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200677 error = -EINTR;
678 else
679 error = status;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200680 } else {
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200681 error = nvme_error_status(status);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200682 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200683 }
684
Keith Buscha0a931d2015-05-22 12:28:31 -0600685 if (req->cmd_type == REQ_TYPE_DRV_PRIV) {
686 u32 result = le32_to_cpup(&cqe->result);
687 req->special = (void *)(uintptr_t)result;
688 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700689
690 if (cmd_rq->aborted)
Christoph Hellwige75ec752015-05-22 11:12:39 +0200691 dev_warn(nvmeq->dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700692 "completing aborted command with status:%04x\n",
Christoph Hellwig81c04b92015-10-12 21:23:39 +0200693 error);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700694
Keith Busch0dfc70c2015-10-15 13:38:48 -0600695release_iod:
Keith Busche1e5e562015-02-19 13:39:03 -0700696 if (iod->nents) {
Christoph Hellwige75ec752015-05-22 11:12:39 +0200697 dma_unmap_sg(nvmeq->dev->dev, iod->sg, iod->nents,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700698 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Keith Busche1e5e562015-02-19 13:39:03 -0700699 if (blk_integrity_rq(req)) {
700 if (!rq_data_dir(req))
701 nvme_dif_remap(req, nvme_dif_complete);
Christoph Hellwige75ec752015-05-22 11:12:39 +0200702 dma_unmap_sg(nvmeq->dev->dev, iod->meta_sg, 1,
Keith Busche1e5e562015-02-19 13:39:03 -0700703 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
704 }
705 }
Keith Buschedd10d32014-04-03 16:45:23 -0600706 nvme_free_iod(nvmeq->dev, iod);
Keith Busch3291fa52014-04-28 12:30:52 -0600707
Keith Busch0dfc70c2015-10-15 13:38:48 -0600708 if (likely(!requeue))
709 blk_mq_complete_request(req, error);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500710}
711
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200712static bool nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod,
713 int total_len)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500714{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500715 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500716 int length = total_len;
717 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500718 int dma_len = sg_dma_len(sg);
719 u64 dma_addr = sg_dma_address(sg);
Murali Iyerf137e0f2015-03-26 11:07:51 -0500720 u32 page_size = dev->page_size;
721 int offset = dma_addr & (page_size - 1);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500722 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500723 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500724 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500725 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500726
Keith Busch1d090622014-06-23 11:34:01 -0600727 length -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500728 if (length <= 0)
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200729 return true;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500730
Keith Busch1d090622014-06-23 11:34:01 -0600731 dma_len -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500732 if (dma_len) {
Keith Busch1d090622014-06-23 11:34:01 -0600733 dma_addr += (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500734 } else {
735 sg = sg_next(sg);
736 dma_addr = sg_dma_address(sg);
737 dma_len = sg_dma_len(sg);
738 }
739
Keith Busch1d090622014-06-23 11:34:01 -0600740 if (length <= page_size) {
Keith Buschedd10d32014-04-03 16:45:23 -0600741 iod->first_dma = dma_addr;
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200742 return true;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500743 }
744
Keith Busch1d090622014-06-23 11:34:01 -0600745 nprps = DIV_ROUND_UP(length, page_size);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500746 if (nprps <= (256 / 8)) {
747 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500748 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500749 } else {
750 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500751 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500752 }
753
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200754 prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400755 if (!prp_list) {
Keith Buschedd10d32014-04-03 16:45:23 -0600756 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500757 iod->npages = -1;
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200758 return false;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400759 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500760 list[0] = prp_list;
761 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500762 i = 0;
763 for (;;) {
Keith Busch1d090622014-06-23 11:34:01 -0600764 if (i == page_size >> 3) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500765 __le64 *old_prp_list = prp_list;
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200766 prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500767 if (!prp_list)
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200768 return false;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500769 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400770 prp_list[0] = old_prp_list[i - 1];
771 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
772 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500773 }
774 prp_list[i++] = cpu_to_le64(dma_addr);
Keith Busch1d090622014-06-23 11:34:01 -0600775 dma_len -= page_size;
776 dma_addr += page_size;
777 length -= page_size;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500778 if (length <= 0)
779 break;
780 if (dma_len > 0)
781 continue;
782 BUG_ON(dma_len < 0);
783 sg = sg_next(sg);
784 dma_addr = sg_dma_address(sg);
785 dma_len = sg_dma_len(sg);
786 }
787
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200788 return true;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500789}
790
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200791static void nvme_submit_priv(struct nvme_queue *nvmeq, struct request *req,
792 struct nvme_iod *iod)
793{
Jon Derrick498c4392015-07-20 10:14:08 -0600794 struct nvme_command cmnd;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200795
Jon Derrick498c4392015-07-20 10:14:08 -0600796 memcpy(&cmnd, req->cmd, sizeof(cmnd));
797 cmnd.rw.command_id = req->tag;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200798 if (req->nr_phys_segments) {
Jon Derrick498c4392015-07-20 10:14:08 -0600799 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
800 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200801 }
802
Jon Derrick498c4392015-07-20 10:14:08 -0600803 __nvme_submit_cmd(nvmeq, &cmnd);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200804}
805
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700806/*
807 * We reuse the small pool to allocate the 16-byte range here as it is not
808 * worth having a special pool for these or additional cases to handle freeing
809 * the iod.
810 */
811static void nvme_submit_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns,
812 struct request *req, struct nvme_iod *iod)
Keith Busch0e5e4f02012-11-09 16:33:05 -0700813{
Keith Buschedd10d32014-04-03 16:45:23 -0600814 struct nvme_dsm_range *range =
815 (struct nvme_dsm_range *)iod_list(iod)[0];
Jon Derrick498c4392015-07-20 10:14:08 -0600816 struct nvme_command cmnd;
Keith Busch0e5e4f02012-11-09 16:33:05 -0700817
Keith Busch0e5e4f02012-11-09 16:33:05 -0700818 range->cattr = cpu_to_le32(0);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700819 range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift);
820 range->slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
Keith Busch0e5e4f02012-11-09 16:33:05 -0700821
Jon Derrick498c4392015-07-20 10:14:08 -0600822 memset(&cmnd, 0, sizeof(cmnd));
823 cmnd.dsm.opcode = nvme_cmd_dsm;
824 cmnd.dsm.command_id = req->tag;
825 cmnd.dsm.nsid = cpu_to_le32(ns->ns_id);
826 cmnd.dsm.prp1 = cpu_to_le64(iod->first_dma);
827 cmnd.dsm.nr = 0;
828 cmnd.dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700829
Jon Derrick498c4392015-07-20 10:14:08 -0600830 __nvme_submit_cmd(nvmeq, &cmnd);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700831}
832
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700833static void nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500834 int cmdid)
835{
Jon Derrick498c4392015-07-20 10:14:08 -0600836 struct nvme_command cmnd;
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500837
Jon Derrick498c4392015-07-20 10:14:08 -0600838 memset(&cmnd, 0, sizeof(cmnd));
839 cmnd.common.opcode = nvme_cmd_flush;
840 cmnd.common.command_id = cmdid;
841 cmnd.common.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500842
Jon Derrick498c4392015-07-20 10:14:08 -0600843 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500844}
845
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700846static int nvme_submit_iod(struct nvme_queue *nvmeq, struct nvme_iod *iod,
847 struct nvme_ns *ns)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500848{
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700849 struct request *req = iod_get_private(iod);
Jon Derrick498c4392015-07-20 10:14:08 -0600850 struct nvme_command cmnd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700851 u16 control = 0;
852 u32 dsmgmt = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500853
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700854 if (req->cmd_flags & REQ_FUA)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500855 control |= NVME_RW_FUA;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700856 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500857 control |= NVME_RW_LR;
858
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700859 if (req->cmd_flags & REQ_RAHEAD)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500860 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
861
Jon Derrick498c4392015-07-20 10:14:08 -0600862 memset(&cmnd, 0, sizeof(cmnd));
863 cmnd.rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
864 cmnd.rw.command_id = req->tag;
865 cmnd.rw.nsid = cpu_to_le32(ns->ns_id);
866 cmnd.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
867 cmnd.rw.prp2 = cpu_to_le64(iod->first_dma);
868 cmnd.rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
869 cmnd.rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500870
Alok Pandeye19b1272015-08-26 08:56:14 -0600871 if (ns->ms) {
Keith Busche1e5e562015-02-19 13:39:03 -0700872 switch (ns->pi_type) {
873 case NVME_NS_DPS_PI_TYPE3:
874 control |= NVME_RW_PRINFO_PRCHK_GUARD;
875 break;
876 case NVME_NS_DPS_PI_TYPE1:
877 case NVME_NS_DPS_PI_TYPE2:
878 control |= NVME_RW_PRINFO_PRCHK_GUARD |
879 NVME_RW_PRINFO_PRCHK_REF;
Jon Derrick498c4392015-07-20 10:14:08 -0600880 cmnd.rw.reftag = cpu_to_le32(
Keith Busche1e5e562015-02-19 13:39:03 -0700881 nvme_block_nr(ns, blk_rq_pos(req)));
882 break;
883 }
Alok Pandeye19b1272015-08-26 08:56:14 -0600884 if (blk_integrity_rq(req))
885 cmnd.rw.metadata =
886 cpu_to_le64(sg_dma_address(iod->meta_sg));
887 else
888 control |= NVME_RW_PRINFO_PRACT;
889 }
Keith Busche1e5e562015-02-19 13:39:03 -0700890
Jon Derrick498c4392015-07-20 10:14:08 -0600891 cmnd.rw.control = cpu_to_le16(control);
892 cmnd.rw.dsmgmt = cpu_to_le32(dsmgmt);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500893
Jon Derrick498c4392015-07-20 10:14:08 -0600894 __nvme_submit_cmd(nvmeq, &cmnd);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500895
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500896 return 0;
Keith Buschedd10d32014-04-03 16:45:23 -0600897}
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500898
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200899/*
900 * NOTE: ns is NULL when called on the admin queue.
901 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700902static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
903 const struct blk_mq_queue_data *bd)
Keith Busch53562be2014-04-29 11:41:29 -0600904{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700905 struct nvme_ns *ns = hctx->queue->queuedata;
906 struct nvme_queue *nvmeq = hctx->driver_data;
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200907 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700908 struct request *req = bd->rq;
909 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
Keith Buschedd10d32014-04-03 16:45:23 -0600910 struct nvme_iod *iod;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700911 enum dma_data_direction dma_dir;
Keith Buschedd10d32014-04-03 16:45:23 -0600912
Keith Busche1e5e562015-02-19 13:39:03 -0700913 /*
914 * If formated with metadata, require the block layer provide a buffer
915 * unless this namespace is formated such that the metadata can be
916 * stripped/generated by the controller with PRACT=1.
917 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200918 if (ns && ns->ms && !blk_integrity_rq(req)) {
Keith Busch71feb362015-06-19 11:07:30 -0600919 if (!(ns->pi_type && ns->ms == 8) &&
920 req->cmd_type != REQ_TYPE_DRV_PRIV) {
Christoph Hellwigf4829a92015-09-27 21:01:50 +0200921 blk_mq_complete_request(req, -EFAULT);
Keith Busche1e5e562015-02-19 13:39:03 -0700922 return BLK_MQ_RQ_QUEUE_OK;
923 }
924 }
925
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200926 iod = nvme_alloc_iod(req, dev, GFP_ATOMIC);
Keith Buschedd10d32014-04-03 16:45:23 -0600927 if (!iod)
Jens Axboefe543032014-12-11 13:58:39 -0700928 return BLK_MQ_RQ_QUEUE_BUSY;
Keith Buschedd10d32014-04-03 16:45:23 -0600929
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700930 if (req->cmd_flags & REQ_DISCARD) {
Keith Buschedd10d32014-04-03 16:45:23 -0600931 void *range;
932 /*
933 * We reuse the small pool to allocate the 16-byte range here
934 * as it is not worth having a special pool for these or
935 * additional cases to handle freeing the iod.
936 */
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200937 range = dma_pool_alloc(dev->prp_small_pool, GFP_ATOMIC,
Keith Buschedd10d32014-04-03 16:45:23 -0600938 &iod->first_dma);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700939 if (!range)
Jens Axboefe543032014-12-11 13:58:39 -0700940 goto retry_cmd;
Keith Buschedd10d32014-04-03 16:45:23 -0600941 iod_list(iod)[0] = (__le64 *)range;
942 iod->npages = 0;
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700943 } else if (req->nr_phys_segments) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700944 dma_dir = rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Keith Buschedd10d32014-04-03 16:45:23 -0600945
Jens Axboeac3dd5b2015-01-22 12:07:58 -0700946 sg_init_table(iod->sg, req->nr_phys_segments);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700947 iod->nents = blk_rq_map_sg(req->q, req, iod->sg);
Jens Axboefe543032014-12-11 13:58:39 -0700948 if (!iod->nents)
949 goto error_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700950
951 if (!dma_map_sg(nvmeq->q_dmadev, iod->sg, iod->nents, dma_dir))
Jens Axboefe543032014-12-11 13:58:39 -0700952 goto retry_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700953
Christoph Hellwig69d2b572015-10-16 07:58:37 +0200954 if (!nvme_setup_prps(dev, iod, blk_rq_bytes(req))) {
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200955 dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir);
Jens Axboefe543032014-12-11 13:58:39 -0700956 goto retry_cmd;
957 }
Keith Busche1e5e562015-02-19 13:39:03 -0700958 if (blk_integrity_rq(req)) {
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200959 if (blk_rq_count_integrity_sg(req->q, req->bio) != 1) {
960 dma_unmap_sg(dev->dev, iod->sg, iod->nents,
961 dma_dir);
Keith Busche1e5e562015-02-19 13:39:03 -0700962 goto error_cmd;
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200963 }
Keith Busche1e5e562015-02-19 13:39:03 -0700964
965 sg_init_table(iod->meta_sg, 1);
966 if (blk_rq_map_integrity_sg(
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200967 req->q, req->bio, iod->meta_sg) != 1) {
968 dma_unmap_sg(dev->dev, iod->sg, iod->nents,
969 dma_dir);
Keith Busche1e5e562015-02-19 13:39:03 -0700970 goto error_cmd;
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200971 }
Keith Busche1e5e562015-02-19 13:39:03 -0700972
973 if (rq_data_dir(req))
974 nvme_dif_remap(req, nvme_dif_prep);
975
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200976 if (!dma_map_sg(nvmeq->q_dmadev, iod->meta_sg, 1, dma_dir)) {
977 dma_unmap_sg(dev->dev, iod->sg, iod->nents,
978 dma_dir);
Keith Busche1e5e562015-02-19 13:39:03 -0700979 goto error_cmd;
Christoph Hellwigbf508e92015-10-16 07:58:31 +0200980 }
Keith Busche1e5e562015-02-19 13:39:03 -0700981 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700982 }
983
Keith Busch9af87852014-12-03 17:07:13 -0700984 nvme_set_info(cmd, iod, req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700985 spin_lock_irq(&nvmeq->q_lock);
Christoph Hellwigd29ec822015-05-22 11:12:46 +0200986 if (req->cmd_type == REQ_TYPE_DRV_PRIV)
987 nvme_submit_priv(nvmeq, req, iod);
988 else if (req->cmd_flags & REQ_DISCARD)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700989 nvme_submit_discard(nvmeq, ns, req, iod);
990 else if (req->cmd_flags & REQ_FLUSH)
991 nvme_submit_flush(nvmeq, ns, req->tag);
992 else
993 nvme_submit_iod(nvmeq, iod, ns);
994
995 nvme_process_cq(nvmeq);
996 spin_unlock_irq(&nvmeq->q_lock);
997 return BLK_MQ_RQ_QUEUE_OK;
998
Jens Axboefe543032014-12-11 13:58:39 -0700999 error_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001000 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -07001001 return BLK_MQ_RQ_QUEUE_ERROR;
1002 retry_cmd:
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001003 nvme_free_iod(dev, iod);
Jens Axboefe543032014-12-11 13:58:39 -07001004 return BLK_MQ_RQ_QUEUE_BUSY;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001005}
1006
Jens Axboea0fa9642015-11-03 20:37:26 -07001007static void __nvme_process_cq(struct nvme_queue *nvmeq, unsigned int *tag)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001008{
Matthew Wilcox82123462011-01-20 13:24:06 -05001009 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001010
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001011 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -05001012 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001013
1014 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -04001015 void *ctx;
1016 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001017 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -05001018 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001019 break;
1020 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
1021 if (++head == nvmeq->q_depth) {
1022 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001023 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001024 }
Jens Axboea0fa9642015-11-03 20:37:26 -07001025 if (tag && *tag == cqe.command_id)
1026 *tag = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001027 ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn);
Keith Buschedd10d32014-04-03 16:45:23 -06001028 fn(nvmeq, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001029 }
1030
1031 /* If the controller ignores the cq head doorbell and continuously
1032 * writes to the queue, it is theoretically possible to wrap around
1033 * the queue twice and mistakenly return IRQ_NONE. Linux only
1034 * requires that 0.1% of your interrupts are handled, so this isn't
1035 * a big problem.
1036 */
Matthew Wilcox82123462011-01-20 13:24:06 -05001037 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Jens Axboea0fa9642015-11-03 20:37:26 -07001038 return;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001039
Keith Busch604e8c82015-11-20 08:38:13 -07001040 if (likely(nvmeq->cq_vector >= 0))
1041 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001042 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -05001043 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001044
Matthew Wilcoxe9539f42013-06-24 11:47:34 -04001045 nvmeq->cqe_seen = 1;
Jens Axboea0fa9642015-11-03 20:37:26 -07001046}
1047
1048static void nvme_process_cq(struct nvme_queue *nvmeq)
1049{
1050 __nvme_process_cq(nvmeq, NULL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001051}
1052
1053static irqreturn_t nvme_irq(int irq, void *data)
1054{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001055 irqreturn_t result;
1056 struct nvme_queue *nvmeq = data;
1057 spin_lock(&nvmeq->q_lock);
Matthew Wilcoxe9539f42013-06-24 11:47:34 -04001058 nvme_process_cq(nvmeq);
1059 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
1060 nvmeq->cqe_seen = 0;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001061 spin_unlock(&nvmeq->q_lock);
1062 return result;
1063}
1064
1065static irqreturn_t nvme_irq_check(int irq, void *data)
1066{
1067 struct nvme_queue *nvmeq = data;
1068 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
1069 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
1070 return IRQ_NONE;
1071 return IRQ_WAKE_THREAD;
1072}
1073
Jens Axboea0fa9642015-11-03 20:37:26 -07001074static int nvme_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag)
1075{
1076 struct nvme_queue *nvmeq = hctx->driver_data;
1077
1078 if ((le16_to_cpu(nvmeq->cqes[nvmeq->cq_head].status) & 1) ==
1079 nvmeq->cq_phase) {
1080 spin_lock_irq(&nvmeq->q_lock);
1081 __nvme_process_cq(nvmeq, &tag);
1082 spin_unlock_irq(&nvmeq->q_lock);
1083
1084 if (tag == -1)
1085 return 1;
1086 }
1087
1088 return 0;
1089}
1090
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001091static int nvme_submit_async_admin_req(struct nvme_dev *dev)
1092{
1093 struct nvme_queue *nvmeq = dev->queues[0];
1094 struct nvme_command c;
1095 struct nvme_cmd_info *cmd_info;
1096 struct request *req;
1097
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001098 req = blk_mq_alloc_request(dev->ctrl.admin_q, WRITE,
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001099 BLK_MQ_REQ_NOWAIT | BLK_MQ_REQ_RESERVED);
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
Keith Buschc917dfe2015-01-07 18:55:48 -07001103 req->cmd_flags |= REQ_NO_TIMEOUT;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001104 cmd_info = blk_mq_rq_to_pdu(req);
Keith Busch1efccc92015-03-31 10:37:17 -06001105 nvme_set_info(cmd_info, NULL, async_req_completion);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001106
1107 memset(&c, 0, sizeof(c));
1108 c.common.opcode = nvme_admin_async_event;
1109 c.common.command_id = req->tag;
1110
Keith Busch42483222015-06-01 09:29:54 -06001111 blk_mq_free_request(req);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301112 __nvme_submit_cmd(nvmeq, &c);
1113 return 0;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001114}
1115
1116static int nvme_submit_admin_async_cmd(struct nvme_dev *dev,
Keith Busch4d115422013-12-10 13:10:40 -07001117 struct nvme_command *cmd,
1118 struct async_cmd_info *cmdinfo, unsigned timeout)
1119{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001120 struct nvme_queue *nvmeq = dev->queues[0];
1121 struct request *req;
1122 struct nvme_cmd_info *cmd_rq;
Keith Busch4d115422013-12-10 13:10:40 -07001123
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001124 req = blk_mq_alloc_request(dev->ctrl.admin_q, WRITE, 0);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001125 if (IS_ERR(req))
1126 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001127
1128 req->timeout = timeout;
1129 cmd_rq = blk_mq_rq_to_pdu(req);
1130 cmdinfo->req = req;
1131 nvme_set_info(cmd_rq, cmdinfo, async_completion);
Keith Busch4d115422013-12-10 13:10:40 -07001132 cmdinfo->status = -EINTR;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001133
1134 cmd->common.command_id = req->tag;
1135
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301136 nvme_submit_cmd(nvmeq, cmd);
1137 return 0;
Keith Busch4d115422013-12-10 13:10:40 -07001138}
1139
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001140static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
1141{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001142 struct nvme_command c;
1143
1144 memset(&c, 0, sizeof(c));
1145 c.delete_queue.opcode = opcode;
1146 c.delete_queue.qid = cpu_to_le16(id);
1147
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001148 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001149}
1150
1151static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
1152 struct nvme_queue *nvmeq)
1153{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001154 struct nvme_command c;
1155 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
1156
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001157 /*
1158 * Note: we (ab)use the fact the the prp fields survive if no data
1159 * is attached to the request.
1160 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001161 memset(&c, 0, sizeof(c));
1162 c.create_cq.opcode = nvme_admin_create_cq;
1163 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
1164 c.create_cq.cqid = cpu_to_le16(qid);
1165 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1166 c.create_cq.cq_flags = cpu_to_le16(flags);
1167 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
1168
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001169 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001170}
1171
1172static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
1173 struct nvme_queue *nvmeq)
1174{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001175 struct nvme_command c;
1176 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
1177
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001178 /*
1179 * Note: we (ab)use the fact the the prp fields survive if no data
1180 * is attached to the request.
1181 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001182 memset(&c, 0, sizeof(c));
1183 c.create_sq.opcode = nvme_admin_create_sq;
1184 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
1185 c.create_sq.sqid = cpu_to_le16(qid);
1186 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
1187 c.create_sq.sq_flags = cpu_to_le16(flags);
1188 c.create_sq.cqid = cpu_to_le16(qid);
1189
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001190 return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001191}
1192
1193static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
1194{
1195 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
1196}
1197
1198static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
1199{
1200 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
1201}
1202
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001203/**
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001204 * nvme_abort_req - Attempt aborting a request
Keith Buschc30341d2013-12-10 13:10:38 -07001205 *
1206 * Schedule controller reset if the command was already aborted once before and
1207 * still hasn't been returned to the driver, or if this is the admin queue.
1208 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001209static void nvme_abort_req(struct request *req)
Keith Buschc30341d2013-12-10 13:10:38 -07001210{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001211 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
1212 struct nvme_queue *nvmeq = cmd_rq->nvmeq;
Keith Buschc30341d2013-12-10 13:10:38 -07001213 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001214 struct request *abort_req;
1215 struct nvme_cmd_info *abort_cmd;
1216 struct nvme_command cmd;
Keith Buschc30341d2013-12-10 13:10:38 -07001217
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001218 if (!nvmeq->qid || cmd_rq->aborted) {
Christoph Hellwig906678922015-10-02 18:49:23 +02001219 spin_lock(&dev_list_lock);
1220 if (!__nvme_reset(dev)) {
1221 dev_warn(dev->dev,
1222 "I/O %d QID %d timeout, reset controller\n",
1223 req->tag, nvmeq->qid);
1224 }
1225 spin_unlock(&dev_list_lock);
Keith Buschc30341d2013-12-10 13:10:38 -07001226 return;
1227 }
1228
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001229 if (!dev->ctrl.abort_limit)
Keith Buschc30341d2013-12-10 13:10:38 -07001230 return;
1231
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001232 abort_req = blk_mq_alloc_request(dev->ctrl.admin_q, WRITE,
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +01001233 BLK_MQ_REQ_NOWAIT);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001234 if (IS_ERR(abort_req))
Keith Buschc30341d2013-12-10 13:10:38 -07001235 return;
1236
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001237 abort_cmd = blk_mq_rq_to_pdu(abort_req);
1238 nvme_set_info(abort_cmd, abort_req, abort_completion);
1239
Keith Buschc30341d2013-12-10 13:10:38 -07001240 memset(&cmd, 0, sizeof(cmd));
1241 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001242 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001243 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001244 cmd.abort.command_id = abort_req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001245
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001246 --dev->ctrl.abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001247 cmd_rq->aborted = 1;
Keith Buschc30341d2013-12-10 13:10:38 -07001248
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001249 dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag,
Keith Buschc30341d2013-12-10 13:10:38 -07001250 nvmeq->qid);
Sunad Bhandarye3f879b2015-07-31 18:56:58 +05301251 nvme_submit_cmd(dev->queues[0], &cmd);
Keith Buschc30341d2013-12-10 13:10:38 -07001252}
1253
Keith Busch42483222015-06-01 09:29:54 -06001254static void nvme_cancel_queue_ios(struct request *req, void *data, bool reserved)
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001255{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001256 struct nvme_queue *nvmeq = data;
1257 void *ctx;
1258 nvme_completion_fn fn;
1259 struct nvme_cmd_info *cmd;
Keith Buschcef6a942015-01-07 18:55:51 -07001260 struct nvme_completion cqe;
1261
1262 if (!blk_mq_request_started(req))
1263 return;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001264
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001265 cmd = blk_mq_rq_to_pdu(req);
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001266
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001267 if (cmd->ctx == CMD_CTX_CANCELLED)
1268 return;
1269
Keith Buschcef6a942015-01-07 18:55:51 -07001270 if (blk_queue_dying(req->q))
1271 cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1);
1272 else
1273 cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
1274
1275
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001276 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n",
1277 req->tag, nvmeq->qid);
1278 ctx = cancel_cmd_info(cmd, &fn);
1279 fn(nvmeq, ctx, &cqe);
1280}
1281
1282static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1283{
1284 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
1285 struct nvme_queue *nvmeq = cmd->nvmeq;
1286
Keith Busch07836e62015-02-19 10:34:48 -07001287 dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag,
1288 nvmeq->qid);
1289 spin_lock_irq(&nvmeq->q_lock);
1290 nvme_abort_req(req);
1291 spin_unlock_irq(&nvmeq->q_lock);
1292
Keith Busch7a509a62015-01-07 18:55:53 -07001293 /*
1294 * The aborted req will be completed on receiving the abort req.
1295 * We enable the timer again. If hit twice, it'll cause a device reset,
1296 * as the device then is in a faulty state.
1297 */
Keith Busch07836e62015-02-19 10:34:48 -07001298 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001299}
1300
Keith Buschf435c282014-07-07 09:14:42 -06001301static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001302{
1303 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1304 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001305 if (nvmeq->sq_cmds)
1306 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
Matthew Wilcox9e866772012-08-03 13:55:56 -04001307 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1308 kfree(nvmeq);
1309}
1310
Keith Buscha1a5ef92013-12-16 13:50:00 -05001311static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001312{
1313 int i;
1314
Keith Buscha1a5ef92013-12-16 13:50:00 -05001315 for (i = dev->queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001316 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch22404272013-07-15 15:02:20 -06001317 dev->queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001318 dev->queues[i] = NULL;
Keith Buschf435c282014-07-07 09:14:42 -06001319 nvme_free_queue(nvmeq);
kaoudis121c7ad2015-01-14 21:01:58 -07001320 }
Keith Busch22404272013-07-15 15:02:20 -06001321}
1322
Keith Busch4d115422013-12-10 13:10:40 -07001323/**
1324 * nvme_suspend_queue - put queue into suspended state
1325 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001326 */
1327static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001328{
Keith Busch2b25d982014-12-22 12:59:04 -07001329 int vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001330
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001331 spin_lock_irq(&nvmeq->q_lock);
Keith Busch2b25d982014-12-22 12:59:04 -07001332 if (nvmeq->cq_vector == -1) {
1333 spin_unlock_irq(&nvmeq->q_lock);
1334 return 1;
1335 }
1336 vector = nvmeq->dev->entry[nvmeq->cq_vector].vector;
Keith Busch42f61422014-03-24 10:46:25 -06001337 nvmeq->dev->online_queues--;
Keith Busch2b25d982014-12-22 12:59:04 -07001338 nvmeq->cq_vector = -1;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001339 spin_unlock_irq(&nvmeq->q_lock);
1340
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001341 if (!nvmeq->qid && nvmeq->dev->ctrl.admin_q)
1342 blk_mq_freeze_queue_start(nvmeq->dev->ctrl.admin_q);
Keith Busch6df3dbc2015-03-26 13:49:33 -06001343
Matthew Wilcoxaba20802011-03-27 08:52:06 -04001344 irq_set_affinity_hint(vector, NULL);
1345 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001346
Keith Busch4d115422013-12-10 13:10:40 -07001347 return 0;
1348}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001349
Keith Busch4d115422013-12-10 13:10:40 -07001350static void nvme_clear_queue(struct nvme_queue *nvmeq)
1351{
Keith Busch22404272013-07-15 15:02:20 -06001352 spin_lock_irq(&nvmeq->q_lock);
Keith Busch42483222015-06-01 09:29:54 -06001353 if (nvmeq->tags && *nvmeq->tags)
1354 blk_mq_all_tag_busy_iter(*nvmeq->tags, nvme_cancel_queue_ios, nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001355 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001356}
1357
Keith Busch4d115422013-12-10 13:10:40 -07001358static void nvme_disable_queue(struct nvme_dev *dev, int qid)
1359{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001360 struct nvme_queue *nvmeq = dev->queues[qid];
Keith Busch4d115422013-12-10 13:10:40 -07001361
1362 if (!nvmeq)
1363 return;
1364 if (nvme_suspend_queue(nvmeq))
1365 return;
1366
Keith Busch0e53d182013-12-10 13:10:39 -07001367 /* Don't tell the adapter to delete the admin queue.
1368 * Don't tell a removed adapter to delete IO queues. */
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001369 if (qid && readl(dev->bar + NVME_REG_CSTS) != -1) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001370 adapter_delete_sq(dev, qid);
1371 adapter_delete_cq(dev, qid);
1372 }
Keith Busch07836e62015-02-19 10:34:48 -07001373
1374 spin_lock_irq(&nvmeq->q_lock);
1375 nvme_process_cq(nvmeq);
1376 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001377}
1378
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001379static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues,
1380 int entry_size)
1381{
1382 int q_depth = dev->q_depth;
1383 unsigned q_size_aligned = roundup(q_depth * entry_size, dev->page_size);
1384
1385 if (q_size_aligned * nr_io_queues > dev->cmb_size) {
Jon Derrickc45f5c92015-07-21 15:08:13 -06001386 u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues);
1387 mem_per_q = round_down(mem_per_q, dev->page_size);
1388 q_depth = div_u64(mem_per_q, entry_size);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001389
1390 /*
1391 * Ensure the reduced q_depth is above some threshold where it
1392 * would be better to map queues in system memory with the
1393 * original depth
1394 */
1395 if (q_depth < 64)
1396 return -ENOMEM;
1397 }
1398
1399 return q_depth;
1400}
1401
1402static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1403 int qid, int depth)
1404{
1405 if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) {
1406 unsigned offset = (qid - 1) *
1407 roundup(SQ_SIZE(depth), dev->page_size);
1408 nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset;
1409 nvmeq->sq_cmds_io = dev->cmb + offset;
1410 } else {
1411 nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth),
1412 &nvmeq->sq_dma_addr, GFP_KERNEL);
1413 if (!nvmeq->sq_cmds)
1414 return -ENOMEM;
1415 }
1416
1417 return 0;
1418}
1419
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001420static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
Keith Busch2b25d982014-12-22 12:59:04 -07001421 int depth)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001422{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001423 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001424 if (!nvmeq)
1425 return NULL;
1426
Christoph Hellwige75ec752015-05-22 11:12:39 +02001427 nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth),
Joe Perches4d51abf2014-06-15 13:37:33 -07001428 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001429 if (!nvmeq->cqes)
1430 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001431
Jon Derrick8ffaadf2015-07-20 10:14:09 -06001432 if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001433 goto free_cqdma;
1434
Christoph Hellwige75ec752015-05-22 11:12:39 +02001435 nvmeq->q_dmadev = dev->dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001436 nvmeq->dev = dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001437 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001438 dev->ctrl.instance, qid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001439 spin_lock_init(&nvmeq->q_lock);
1440 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001441 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001442 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001443 nvmeq->q_depth = depth;
Keith Buschc30341d2013-12-10 13:10:38 -07001444 nvmeq->qid = qid;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001445 nvmeq->cq_vector = -1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001446 dev->queues[qid] = nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001447
Jon Derrick36a7e992015-05-27 12:26:23 -06001448 /* make sure queue descriptor is set before queue count, for kthread */
1449 mb();
1450 dev->queue_count++;
1451
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001452 return nvmeq;
1453
1454 free_cqdma:
Christoph Hellwige75ec752015-05-22 11:12:39 +02001455 dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001456 nvmeq->cq_dma_addr);
1457 free_nvmeq:
1458 kfree(nvmeq);
1459 return NULL;
1460}
1461
Matthew Wilcox30010822011-01-20 09:10:15 -05001462static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1463 const char *name)
1464{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001465 if (use_threaded_interrupts)
1466 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001467 nvme_irq_check, nvme_irq, IRQF_SHARED,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001468 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001469 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001470 IRQF_SHARED, name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001471}
1472
Keith Busch22404272013-07-15 15:02:20 -06001473static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001474{
Keith Busch22404272013-07-15 15:02:20 -06001475 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001476
Keith Busch7be50e92014-09-10 15:48:47 -06001477 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001478 nvmeq->sq_tail = 0;
1479 nvmeq->cq_head = 0;
1480 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001481 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001482 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Keith Busch42f61422014-03-24 10:46:25 -06001483 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001484 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001485}
1486
1487static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1488{
1489 struct nvme_dev *dev = nvmeq->dev;
1490 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001491
Keith Busch2b25d982014-12-22 12:59:04 -07001492 nvmeq->cq_vector = qid - 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001493 result = adapter_alloc_cq(dev, qid, nvmeq);
1494 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001495 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001496
1497 result = adapter_alloc_sq(dev, qid, nvmeq);
1498 if (result < 0)
1499 goto release_cq;
1500
Matthew Wilcox3193f072014-01-27 15:57:22 -05001501 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001502 if (result < 0)
1503 goto release_sq;
1504
Keith Busch22404272013-07-15 15:02:20 -06001505 nvme_init_queue(nvmeq, qid);
Keith Busch22404272013-07-15 15:02:20 -06001506 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001507
1508 release_sq:
1509 adapter_delete_sq(dev, qid);
1510 release_cq:
1511 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001512 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001513}
1514
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001515static int nvme_wait_ready(struct nvme_dev *dev, u64 cap, bool enabled)
1516{
1517 unsigned long timeout;
1518 u32 bit = enabled ? NVME_CSTS_RDY : 0;
1519
1520 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1521
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001522 while ((readl(dev->bar + NVME_REG_CSTS) & NVME_CSTS_RDY) != bit) {
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001523 msleep(100);
1524 if (fatal_signal_pending(current))
1525 return -EINTR;
1526 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001527 dev_err(dev->dev,
Matthew Wilcox27e81662014-04-11 11:58:45 -04001528 "Device not ready; aborting %s\n", enabled ?
1529 "initialisation" : "reset");
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001530 return -ENODEV;
1531 }
1532 }
1533
1534 return 0;
1535}
1536
1537/*
1538 * If the device has been passed off to us in an enabled state, just clear
1539 * the enabled bit. The spec says we should set the 'shutdown notification
1540 * bits', but doing so may cause the device to complete commands to the
1541 * admin queue ... and we don't know what memory that might be pointing at!
1542 */
1543static int nvme_disable_ctrl(struct nvme_dev *dev, u64 cap)
1544{
Dan McLeran01079522014-06-23 08:24:36 -06001545 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1546 dev->ctrl_config &= ~NVME_CC_ENABLE;
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001547 writel(dev->ctrl_config, dev->bar + NVME_REG_CC);
Matthew Wilcox44af1462013-05-04 06:43:17 -04001548
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001549 return nvme_wait_ready(dev, cap, false);
1550}
1551
1552static int nvme_enable_ctrl(struct nvme_dev *dev, u64 cap)
1553{
Dan McLeran01079522014-06-23 08:24:36 -06001554 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1555 dev->ctrl_config |= NVME_CC_ENABLE;
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001556 writel(dev->ctrl_config, dev->bar + NVME_REG_CC);
Dan McLeran01079522014-06-23 08:24:36 -06001557
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001558 return nvme_wait_ready(dev, cap, true);
1559}
1560
Keith Busch1894d8f2013-07-15 15:02:22 -06001561static int nvme_shutdown_ctrl(struct nvme_dev *dev)
1562{
1563 unsigned long timeout;
Keith Busch1894d8f2013-07-15 15:02:22 -06001564
Dan McLeran01079522014-06-23 08:24:36 -06001565 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1566 dev->ctrl_config |= NVME_CC_SHN_NORMAL;
1567
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001568 writel(dev->ctrl_config, dev->bar + NVME_REG_CC);
Keith Busch1894d8f2013-07-15 15:02:22 -06001569
Dan McLeran2484f402014-07-01 09:33:32 -06001570 timeout = SHUTDOWN_TIMEOUT + jiffies;
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001571 while ((readl(dev->bar + NVME_REG_CSTS) & NVME_CSTS_SHST_MASK) !=
Keith Busch1894d8f2013-07-15 15:02:22 -06001572 NVME_CSTS_SHST_CMPLT) {
1573 msleep(100);
1574 if (fatal_signal_pending(current))
1575 return -EINTR;
1576 if (time_after(jiffies, timeout)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001577 dev_err(dev->dev,
Keith Busch1894d8f2013-07-15 15:02:22 -06001578 "Device shutdown incomplete; abort shutdown\n");
1579 return -ENODEV;
1580 }
1581 }
1582
1583 return 0;
1584}
1585
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001586static struct blk_mq_ops nvme_mq_admin_ops = {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001587 .queue_rq = nvme_queue_rq,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001588 .map_queue = blk_mq_map_queue,
1589 .init_hctx = nvme_admin_init_hctx,
Keith Busch4af0e212015-06-08 10:08:13 -06001590 .exit_hctx = nvme_admin_exit_hctx,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001591 .init_request = nvme_admin_init_request,
1592 .timeout = nvme_timeout,
1593};
1594
1595static struct blk_mq_ops nvme_mq_ops = {
1596 .queue_rq = nvme_queue_rq,
1597 .map_queue = blk_mq_map_queue,
1598 .init_hctx = nvme_init_hctx,
1599 .init_request = nvme_init_request,
1600 .timeout = nvme_timeout,
Jens Axboea0fa9642015-11-03 20:37:26 -07001601 .poll = nvme_poll,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001602};
1603
Keith Buschea191d22015-01-07 18:55:49 -07001604static void nvme_dev_remove_admin(struct nvme_dev *dev)
1605{
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001606 if (dev->ctrl.admin_q && !blk_queue_dying(dev->ctrl.admin_q)) {
1607 blk_cleanup_queue(dev->ctrl.admin_q);
Keith Buschea191d22015-01-07 18:55:49 -07001608 blk_mq_free_tag_set(&dev->admin_tagset);
1609 }
1610}
1611
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001612static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1613{
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001614 if (!dev->ctrl.admin_q) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001615 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1616 dev->admin_tagset.nr_hw_queues = 1;
1617 dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1;
Keith Busch1efccc92015-03-31 10:37:17 -06001618 dev->admin_tagset.reserved_tags = 1;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001619 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
Christoph Hellwige75ec752015-05-22 11:12:39 +02001620 dev->admin_tagset.numa_node = dev_to_node(dev->dev);
Jens Axboeac3dd5b2015-01-22 12:07:58 -07001621 dev->admin_tagset.cmd_size = nvme_cmd_size(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001622 dev->admin_tagset.driver_data = dev;
1623
1624 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1625 return -ENOMEM;
1626
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001627 dev->ctrl.admin_q = blk_mq_init_queue(&dev->admin_tagset);
1628 if (IS_ERR(dev->ctrl.admin_q)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001629 blk_mq_free_tag_set(&dev->admin_tagset);
1630 return -ENOMEM;
1631 }
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001632 if (!blk_get_queue(dev->ctrl.admin_q)) {
Keith Buschea191d22015-01-07 18:55:49 -07001633 nvme_dev_remove_admin(dev);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001634 dev->ctrl.admin_q = NULL;
Keith Buschea191d22015-01-07 18:55:49 -07001635 return -ENODEV;
1636 }
Keith Busch0fb59cb2015-01-07 18:55:50 -07001637 } else
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001638 blk_mq_unfreeze_queue(dev->ctrl.admin_q);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001639
1640 return 0;
1641}
1642
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001643static int nvme_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001644{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001645 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001646 u32 aqa;
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001647 u64 cap = lo_hi_readq(dev->bar + NVME_REG_CAP);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001648 struct nvme_queue *nvmeq;
Nishanth Aravamudanc5c9f252015-11-24 09:55:05 -07001649 /*
1650 * default to a 4K page size, with the intention to update this
1651 * path in the future to accomodate architectures with differing
1652 * kernel and IO page sizes.
1653 */
1654 unsigned page_shift = 12;
Keith Busch1d090622014-06-23 11:34:01 -06001655 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12;
Keith Busch1d090622014-06-23 11:34:01 -06001656
1657 if (page_shift < dev_page_min) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02001658 dev_err(dev->dev,
Keith Busch1d090622014-06-23 11:34:01 -06001659 "Minimum device page size (%u) too large for "
1660 "host (%u)\n", 1 << dev_page_min,
1661 1 << page_shift);
1662 return -ENODEV;
1663 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001664
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001665 dev->subsystem = readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 1) ?
Keith Buschdfbac8c2015-08-10 15:20:40 -06001666 NVME_CAP_NSSRC(cap) : 0;
1667
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001668 if (dev->subsystem &&
1669 (readl(dev->bar + NVME_REG_CSTS) & NVME_CSTS_NSSRO))
1670 writel(NVME_CSTS_NSSRO, dev->bar + NVME_REG_CSTS);
Keith Buschdfbac8c2015-08-10 15:20:40 -06001671
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001672 result = nvme_disable_ctrl(dev, cap);
1673 if (result < 0)
1674 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001675
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001676 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001677 if (!nvmeq) {
Keith Busch2b25d982014-12-22 12:59:04 -07001678 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH);
Keith Buschcd638942013-07-15 15:02:23 -06001679 if (!nvmeq)
1680 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001681 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001682
1683 aqa = nvmeq->q_depth - 1;
1684 aqa |= aqa << 16;
1685
Keith Busch1d090622014-06-23 11:34:01 -06001686 dev->page_size = 1 << page_shift;
1687
Dan McLeran01079522014-06-23 08:24:36 -06001688 dev->ctrl_config = NVME_CC_CSS_NVM;
Keith Busch1d090622014-06-23 11:34:01 -06001689 dev->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001690 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -04001691 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001692
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001693 writel(aqa, dev->bar + NVME_REG_AQA);
1694 lo_hi_writeq(nvmeq->sq_dma_addr, dev->bar + NVME_REG_ASQ);
1695 lo_hi_writeq(nvmeq->cq_dma_addr, dev->bar + NVME_REG_ACQ);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001696
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001697 result = nvme_enable_ctrl(dev, cap);
Keith Busch025c5572013-05-01 13:07:51 -06001698 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001699 goto free_nvmeq;
1700
Keith Busch2b25d982014-12-22 12:59:04 -07001701 nvmeq->cq_vector = 0;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001702 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06001703 if (result) {
1704 nvmeq->cq_vector = -1;
Keith Busch0fb59cb2015-01-07 18:55:50 -07001705 goto free_nvmeq;
Jon Derrick758dd7f2015-06-30 11:22:52 -06001706 }
Keith Busch025c5572013-05-01 13:07:51 -06001707
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001708 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001709
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001710 free_nvmeq:
1711 nvme_free_queues(dev, 0);
1712 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001713}
1714
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001715static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1716{
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001717 struct nvme_dev *dev = to_nvme_dev(ns->ctrl);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001718 struct nvme_user_io io;
1719 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001720 unsigned length, meta_len;
Keith Buscha67a9512015-04-07 16:57:19 -06001721 int status, write;
Keith Buscha67a9512015-04-07 16:57:19 -06001722 dma_addr_t meta_dma = 0;
1723 void *meta = NULL;
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001724 void __user *metadata;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001725
1726 if (copy_from_user(&io, uio, sizeof(io)))
1727 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001728
1729 switch (io.opcode) {
1730 case nvme_cmd_write:
1731 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001732 case nvme_cmd_compare:
Matthew Wilcox64132142011-08-09 12:56:37 -04001733 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001734 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001735 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001736 }
1737
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001738 length = (io.nblocks + 1) << ns->lba_shift;
1739 meta_len = (io.nblocks + 1) * ns->ms;
Arnd Bergmann835da3f2015-10-06 22:29:48 +02001740 metadata = (void __user *)(uintptr_t)io.metadata;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001741 write = io.opcode & 1;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001742
Keith Busch71feb362015-06-19 11:07:30 -06001743 if (ns->ext) {
1744 length += meta_len;
1745 meta_len = 0;
Keith Buscha67a9512015-04-07 16:57:19 -06001746 }
1747 if (meta_len) {
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001748 if (((io.metadata & 3) || !io.metadata) && !ns->ext)
1749 return -EINVAL;
1750
Christoph Hellwige75ec752015-05-22 11:12:39 +02001751 meta = dma_alloc_coherent(dev->dev, meta_len,
Keith Buscha67a9512015-04-07 16:57:19 -06001752 &meta_dma, GFP_KERNEL);
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001753
Keith Buscha67a9512015-04-07 16:57:19 -06001754 if (!meta) {
1755 status = -ENOMEM;
1756 goto unmap;
1757 }
1758 if (write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001759 if (copy_from_user(meta, metadata, meta_len)) {
Keith Buscha67a9512015-04-07 16:57:19 -06001760 status = -EFAULT;
1761 goto unmap;
1762 }
1763 }
1764 }
1765
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001766 memset(&c, 0, sizeof(c));
1767 c.rw.opcode = io.opcode;
1768 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001769 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001770 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001771 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001772 c.rw.control = cpu_to_le16(io.control);
Matthew Wilcox1c9b5262013-04-16 15:21:06 -04001773 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1774 c.rw.reftag = cpu_to_le32(io.reftag);
1775 c.rw.apptag = cpu_to_le16(io.apptag);
1776 c.rw.appmask = cpu_to_le16(io.appmask);
Keith Buscha67a9512015-04-07 16:57:19 -06001777 c.rw.metadata = cpu_to_le64(meta_dma);
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001778
1779 status = __nvme_submit_sync_cmd(ns->queue, &c, NULL,
Arnd Bergmann835da3f2015-10-06 22:29:48 +02001780 (void __user *)(uintptr_t)io.addr, length, NULL, 0);
Keith Buschf410c682013-04-23 17:23:59 -06001781 unmap:
Keith Buscha67a9512015-04-07 16:57:19 -06001782 if (meta) {
1783 if (status == NVME_SC_SUCCESS && !write) {
Arnd Bergmannfec558b2015-05-19 17:05:40 +02001784 if (copy_to_user(metadata, meta, meta_len))
Keith Buscha67a9512015-04-07 16:57:19 -06001785 status = -EFAULT;
1786 }
Christoph Hellwige75ec752015-05-22 11:12:39 +02001787 dma_free_coherent(dev->dev, meta_len, meta, meta_dma);
Keith Buschf410c682013-04-23 17:23:59 -06001788 }
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001789 return status;
1790}
1791
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001792static int nvme_user_cmd(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001793 struct nvme_passthru_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001794{
Keith Busch7963e522014-09-12 16:07:20 -06001795 struct nvme_passthru_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001796 struct nvme_command c;
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001797 unsigned timeout = 0;
1798 int status;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001799
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001800 if (!capable(CAP_SYS_ADMIN))
1801 return -EACCES;
1802 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001803 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001804
1805 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001806 c.common.opcode = cmd.opcode;
1807 c.common.flags = cmd.flags;
1808 c.common.nsid = cpu_to_le32(cmd.nsid);
1809 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1810 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1811 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1812 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1813 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1814 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1815 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1816 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1817
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001818 if (cmd.timeout_ms)
1819 timeout = msecs_to_jiffies(cmd.timeout_ms);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001820
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001821 status = __nvme_submit_sync_cmd(ns ? ns->queue : ctrl->admin_q, &c,
Arnd Bergmann835da3f2015-10-06 22:29:48 +02001822 NULL, (void __user *)(uintptr_t)cmd.addr, cmd.data_len,
Christoph Hellwigd29ec822015-05-22 11:12:46 +02001823 &cmd.result, timeout);
1824 if (status >= 0) {
1825 if (put_user(cmd.result, &ucmd->result))
1826 return -EFAULT;
Keith Buschedd10d32014-04-03 16:45:23 -06001827 }
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001828
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001829 return status;
1830}
1831
Jon Derrick81f03fe2015-08-10 15:20:41 -06001832static int nvme_subsys_reset(struct nvme_dev *dev)
1833{
1834 if (!dev->subsystem)
1835 return -ENOTTY;
1836
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01001837 writel(0x4E564D65, dev->bar + NVME_REG_NSSR); /* "NVMe" */
Jon Derrick81f03fe2015-08-10 15:20:41 -06001838 return 0;
1839}
1840
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001841static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1842 unsigned long arg)
1843{
1844 struct nvme_ns *ns = bdev->bd_disk->private_data;
1845
1846 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001847 case NVME_IOCTL_ID:
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04001848 force_successful_syscall_return();
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001849 return ns->ns_id;
1850 case NVME_IOCTL_ADMIN_CMD:
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001851 return nvme_user_cmd(ns->ctrl, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06001852 case NVME_IOCTL_IO_CMD:
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001853 return nvme_user_cmd(ns->ctrl, ns, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001854 case NVME_IOCTL_SUBMIT_IO:
1855 return nvme_submit_io(ns, (void __user *)arg);
Vishal Verma5d0f6132013-03-04 18:40:58 -07001856 case SG_GET_VERSION_NUM:
1857 return nvme_sg_get_version_num((void __user *)arg);
1858 case SG_IO:
1859 return nvme_sg_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001860 default:
1861 return -ENOTTY;
1862 }
1863}
1864
Keith Busch320a3822013-10-23 13:07:34 -06001865#ifdef CONFIG_COMPAT
1866static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode,
1867 unsigned int cmd, unsigned long arg)
1868{
Keith Busch320a3822013-10-23 13:07:34 -06001869 switch (cmd) {
1870 case SG_IO:
Keith Busche1797292014-08-27 13:55:38 -06001871 return -ENOIOCTLCMD;
Keith Busch320a3822013-10-23 13:07:34 -06001872 }
1873 return nvme_ioctl(bdev, mode, cmd, arg);
1874}
1875#else
1876#define nvme_compat_ioctl NULL
1877#endif
1878
Keith Busch5105aa52015-10-02 10:37:28 -06001879static void nvme_free_dev(struct kref *kref);
Keith Busch188c3562015-10-01 17:14:10 -06001880static void nvme_free_ns(struct kref *kref)
1881{
1882 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001883 struct nvme_dev *dev = to_nvme_dev(ns->ctrl);
Keith Busch188c3562015-10-01 17:14:10 -06001884
Matias Bjørlingca064082015-10-29 17:57:29 +09001885 if (ns->type == NVME_NS_LIGHTNVM)
1886 nvme_nvm_unregister(ns->queue, ns->disk->disk_name);
1887
Keith Busch188c3562015-10-01 17:14:10 -06001888 spin_lock(&dev_list_lock);
1889 ns->disk->private_data = NULL;
1890 spin_unlock(&dev_list_lock);
1891
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001892 kref_put(&dev->kref, nvme_free_dev);
Keith Busch188c3562015-10-01 17:14:10 -06001893 put_disk(ns->disk);
1894 kfree(ns);
1895}
1896
Keith Busch9ac27092014-01-31 16:53:39 -07001897static int nvme_open(struct block_device *bdev, fmode_t mode)
1898{
Keith Busch9e603522014-10-03 11:15:47 -06001899 int ret = 0;
1900 struct nvme_ns *ns;
Keith Busch9ac27092014-01-31 16:53:39 -07001901
Keith Busch9e603522014-10-03 11:15:47 -06001902 spin_lock(&dev_list_lock);
1903 ns = bdev->bd_disk->private_data;
1904 if (!ns)
1905 ret = -ENXIO;
Keith Busch188c3562015-10-01 17:14:10 -06001906 else if (!kref_get_unless_zero(&ns->kref))
Keith Busch9e603522014-10-03 11:15:47 -06001907 ret = -ENXIO;
1908 spin_unlock(&dev_list_lock);
1909
1910 return ret;
Keith Busch9ac27092014-01-31 16:53:39 -07001911}
1912
Keith Busch9ac27092014-01-31 16:53:39 -07001913static void nvme_release(struct gendisk *disk, fmode_t mode)
1914{
1915 struct nvme_ns *ns = disk->private_data;
Keith Busch188c3562015-10-01 17:14:10 -06001916 kref_put(&ns->kref, nvme_free_ns);
Keith Busch9ac27092014-01-31 16:53:39 -07001917}
1918
Keith Busch4cc09e22014-04-02 15:45:37 -06001919static int nvme_getgeo(struct block_device *bd, struct hd_geometry *geo)
1920{
1921 /* some standard values */
1922 geo->heads = 1 << 6;
1923 geo->sectors = 1 << 5;
1924 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
1925 return 0;
1926}
1927
Keith Busche1e5e562015-02-19 13:39:03 -07001928static void nvme_config_discard(struct nvme_ns *ns)
1929{
1930 u32 logical_block_size = queue_logical_block_size(ns->queue);
1931 ns->queue->limits.discard_zeroes_data = 0;
1932 ns->queue->limits.discard_alignment = logical_block_size;
1933 ns->queue->limits.discard_granularity = logical_block_size;
Jens Axboe2bb4cd52015-07-14 08:15:12 -06001934 blk_queue_max_discard_sectors(ns->queue, 0xffffffff);
Keith Busche1e5e562015-02-19 13:39:03 -07001935 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
1936}
1937
Keith Busch1b9dbf72014-09-10 17:21:14 -06001938static int nvme_revalidate_disk(struct gendisk *disk)
1939{
1940 struct nvme_ns *ns = disk->private_data;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001941 struct nvme_dev *dev = to_nvme_dev(ns->ctrl);
Keith Busch1b9dbf72014-09-10 17:21:14 -06001942 struct nvme_id_ns *id;
Keith Buscha67a9512015-04-07 16:57:19 -06001943 u8 lbaf, pi_type;
1944 u16 old_ms;
Keith Busche1e5e562015-02-19 13:39:03 -07001945 unsigned short bs;
Keith Busch1b9dbf72014-09-10 17:21:14 -06001946
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001947 if (nvme_identify_ns(&dev->ctrl, ns->ns_id, &id)) {
Keith Buscha5768aa2015-06-01 14:28:14 -06001948 dev_warn(dev->dev, "%s: Identify failure nvme%dn%d\n", __func__,
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01001949 dev->ctrl.instance, ns->ns_id);
Keith Buscha5768aa2015-06-01 14:28:14 -06001950 return -ENODEV;
Keith Busch1b9dbf72014-09-10 17:21:14 -06001951 }
Keith Buscha5768aa2015-06-01 14:28:14 -06001952 if (id->ncap == 0) {
1953 kfree(id);
1954 return -ENODEV;
Keith Busche1e5e562015-02-19 13:39:03 -07001955 }
Keith Busch1b9dbf72014-09-10 17:21:14 -06001956
Matias Bjørlingca064082015-10-29 17:57:29 +09001957 if (nvme_nvm_ns_supported(ns, id) && ns->type != NVME_NS_LIGHTNVM) {
1958 if (nvme_nvm_register(ns->queue, disk->disk_name)) {
1959 dev_warn(dev->dev,
1960 "%s: LightNVM init failure\n", __func__);
1961 kfree(id);
1962 return -ENODEV;
1963 }
1964 ns->type = NVME_NS_LIGHTNVM;
1965 }
1966
Keith Busche1e5e562015-02-19 13:39:03 -07001967 old_ms = ns->ms;
1968 lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK;
Keith Busch1b9dbf72014-09-10 17:21:14 -06001969 ns->lba_shift = id->lbaf[lbaf].ds;
Keith Busche1e5e562015-02-19 13:39:03 -07001970 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms);
Keith Buscha67a9512015-04-07 16:57:19 -06001971 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
Keith Busch1b9dbf72014-09-10 17:21:14 -06001972
Keith Busche1e5e562015-02-19 13:39:03 -07001973 /*
1974 * If identify namespace failed, use default 512 byte block size so
1975 * block layer can use before failing read/write for 0 capacity.
1976 */
1977 if (ns->lba_shift == 0)
1978 ns->lba_shift = 9;
1979 bs = 1 << ns->lba_shift;
1980
1981 /* XXX: PI implementation requires metadata equal t10 pi tuple size */
1982 pi_type = ns->ms == sizeof(struct t10_pi_tuple) ?
1983 id->dps & NVME_NS_DPS_PI_MASK : 0;
1984
Dan Williams4cfc7662015-10-21 13:20:07 -04001985 blk_mq_freeze_queue(disk->queue);
Keith Busch52b68d72015-02-23 09:16:21 -07001986 if (blk_get_integrity(disk) && (ns->pi_type != pi_type ||
1987 ns->ms != old_ms ||
Keith Busche1e5e562015-02-19 13:39:03 -07001988 bs != queue_logical_block_size(disk->queue) ||
Keith Buscha67a9512015-04-07 16:57:19 -06001989 (ns->ms && ns->ext)))
Keith Busche1e5e562015-02-19 13:39:03 -07001990 blk_integrity_unregister(disk);
1991
1992 ns->pi_type = pi_type;
1993 blk_queue_logical_block_size(ns->queue, bs);
1994
Martin K. Petersen25520d52015-10-21 13:19:49 -04001995 if (ns->ms && !ns->ext)
Keith Busche1e5e562015-02-19 13:39:03 -07001996 nvme_init_integrity(ns);
1997
Matias Bjørlingca064082015-10-29 17:57:29 +09001998 if ((ns->ms && !(ns->ms == 8 && ns->pi_type) &&
1999 !blk_get_integrity(disk)) ||
2000 ns->type == NVME_NS_LIGHTNVM)
Keith Busche1e5e562015-02-19 13:39:03 -07002001 set_capacity(disk, 0);
2002 else
2003 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
2004
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002005 if (dev->ctrl.oncs & NVME_CTRL_ONCS_DSM)
Keith Busche1e5e562015-02-19 13:39:03 -07002006 nvme_config_discard(ns);
Dan Williams4cfc7662015-10-21 13:20:07 -04002007 blk_mq_unfreeze_queue(disk->queue);
Keith Busche1e5e562015-02-19 13:39:03 -07002008
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002009 kfree(id);
Keith Busch1b9dbf72014-09-10 17:21:14 -06002010 return 0;
2011}
2012
Keith Busch1d277a62015-10-15 14:10:52 +02002013static char nvme_pr_type(enum pr_type type)
2014{
2015 switch (type) {
2016 case PR_WRITE_EXCLUSIVE:
2017 return 1;
2018 case PR_EXCLUSIVE_ACCESS:
2019 return 2;
2020 case PR_WRITE_EXCLUSIVE_REG_ONLY:
2021 return 3;
2022 case PR_EXCLUSIVE_ACCESS_REG_ONLY:
2023 return 4;
2024 case PR_WRITE_EXCLUSIVE_ALL_REGS:
2025 return 5;
2026 case PR_EXCLUSIVE_ACCESS_ALL_REGS:
2027 return 6;
2028 default:
2029 return 0;
2030 }
2031};
2032
2033static int nvme_pr_command(struct block_device *bdev, u32 cdw10,
2034 u64 key, u64 sa_key, u8 op)
2035{
2036 struct nvme_ns *ns = bdev->bd_disk->private_data;
2037 struct nvme_command c;
2038 u8 data[16] = { 0, };
2039
2040 put_unaligned_le64(key, &data[0]);
2041 put_unaligned_le64(sa_key, &data[8]);
2042
2043 memset(&c, 0, sizeof(c));
2044 c.common.opcode = op;
Christoph Hellwiga6dd1022015-10-22 12:01:05 +02002045 c.common.nsid = cpu_to_le32(ns->ns_id);
2046 c.common.cdw10[0] = cpu_to_le32(cdw10);
Keith Busch1d277a62015-10-15 14:10:52 +02002047
2048 return nvme_submit_sync_cmd(ns->queue, &c, data, 16);
2049}
2050
2051static int nvme_pr_register(struct block_device *bdev, u64 old,
2052 u64 new, unsigned flags)
2053{
2054 u32 cdw10;
2055
2056 if (flags & ~PR_FL_IGNORE_KEY)
2057 return -EOPNOTSUPP;
2058
2059 cdw10 = old ? 2 : 0;
2060 cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0;
2061 cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */
2062 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register);
2063}
2064
2065static int nvme_pr_reserve(struct block_device *bdev, u64 key,
2066 enum pr_type type, unsigned flags)
2067{
2068 u32 cdw10;
2069
2070 if (flags & ~PR_FL_IGNORE_KEY)
2071 return -EOPNOTSUPP;
2072
2073 cdw10 = nvme_pr_type(type) << 8;
2074 cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0);
2075 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire);
2076}
2077
2078static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new,
2079 enum pr_type type, bool abort)
2080{
2081 u32 cdw10 = nvme_pr_type(type) << 8 | abort ? 2 : 1;
2082 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire);
2083}
2084
2085static int nvme_pr_clear(struct block_device *bdev, u64 key)
2086{
Dan Carpenter73fcf4e2015-11-03 22:50:49 +03002087 u32 cdw10 = 1 | (key ? 1 << 3 : 0);
Keith Busch1d277a62015-10-15 14:10:52 +02002088 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register);
2089}
2090
2091static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
2092{
2093 u32 cdw10 = nvme_pr_type(type) << 8 | key ? 1 << 3 : 0;
2094 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release);
2095}
2096
2097static const struct pr_ops nvme_pr_ops = {
2098 .pr_register = nvme_pr_register,
2099 .pr_reserve = nvme_pr_reserve,
2100 .pr_release = nvme_pr_release,
2101 .pr_preempt = nvme_pr_preempt,
2102 .pr_clear = nvme_pr_clear,
2103};
2104
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002105static const struct block_device_operations nvme_fops = {
2106 .owner = THIS_MODULE,
2107 .ioctl = nvme_ioctl,
Keith Busch320a3822013-10-23 13:07:34 -06002108 .compat_ioctl = nvme_compat_ioctl,
Keith Busch9ac27092014-01-31 16:53:39 -07002109 .open = nvme_open,
2110 .release = nvme_release,
Keith Busch4cc09e22014-04-02 15:45:37 -06002111 .getgeo = nvme_getgeo,
Keith Busch1b9dbf72014-09-10 17:21:14 -06002112 .revalidate_disk= nvme_revalidate_disk,
Keith Busch1d277a62015-10-15 14:10:52 +02002113 .pr_ops = &nvme_pr_ops,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002114};
2115
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002116static int nvme_kthread(void *data)
2117{
Keith Buschd4b4ff82013-12-10 13:10:37 -07002118 struct nvme_dev *dev, *next;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002119
2120 while (!kthread_should_stop()) {
Arjan van de Ven564a2322013-05-01 16:38:23 -04002121 set_current_state(TASK_INTERRUPTIBLE);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002122 spin_lock(&dev_list_lock);
Keith Buschd4b4ff82013-12-10 13:10:37 -07002123 list_for_each_entry_safe(dev, next, &dev_list, node) {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002124 int i;
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002125 u32 csts = readl(dev->bar + NVME_REG_CSTS);
Keith Buschdfbac8c2015-08-10 15:20:40 -06002126
2127 if ((dev->subsystem && (csts & NVME_CSTS_NSSRO)) ||
2128 csts & NVME_CSTS_CFS) {
Christoph Hellwig906678922015-10-02 18:49:23 +02002129 if (!__nvme_reset(dev)) {
2130 dev_warn(dev->dev,
2131 "Failed status: %x, reset controller\n",
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002132 readl(dev->bar + NVME_REG_CSTS));
Christoph Hellwig906678922015-10-02 18:49:23 +02002133 }
Keith Buschd4b4ff82013-12-10 13:10:37 -07002134 continue;
2135 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002136 for (i = 0; i < dev->queue_count; i++) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002137 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05002138 if (!nvmeq)
2139 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002140 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxbc57a0f2013-06-24 11:56:42 -04002141 nvme_process_cq(nvmeq);
Keith Busch6fccf932014-06-18 13:58:57 -06002142
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002143 while (i == 0 && dev->ctrl.event_limit > 0) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002144 if (nvme_submit_async_admin_req(dev))
Keith Busch6fccf932014-06-18 13:58:57 -06002145 break;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002146 dev->ctrl.event_limit--;
Keith Busch6fccf932014-06-18 13:58:57 -06002147 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002148 spin_unlock_irq(&nvmeq->q_lock);
2149 }
2150 }
2151 spin_unlock(&dev_list_lock);
Arjan van de Venacb7aa02013-02-04 14:44:33 -08002152 schedule_timeout(round_jiffies_relative(HZ));
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002153 }
2154 return 0;
2155}
2156
Keith Busche1e5e562015-02-19 13:39:03 -07002157static void nvme_alloc_ns(struct nvme_dev *dev, unsigned nsid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002158{
2159 struct nvme_ns *ns;
2160 struct gendisk *disk;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002161 int node = dev_to_node(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002162
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002163 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002164 if (!ns)
Keith Busche1e5e562015-02-19 13:39:03 -07002165 return;
2166
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002167 ns->queue = blk_mq_init_queue(&dev->tagset);
Dan Carpenter9f173b32014-11-05 23:39:09 +03002168 if (IS_ERR(ns->queue))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002169 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07002170 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
2171 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002172 ns->ctrl = &dev->ctrl;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002173 ns->queue->queuedata = ns;
2174
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002175 disk = alloc_disk_node(0, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002176 if (!disk)
2177 goto out_free_queue;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002178
Keith Busch188c3562015-10-01 17:14:10 -06002179 kref_init(&ns->kref);
Matthew Wilcox5aff9382011-05-06 08:45:47 -04002180 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002181 ns->disk = disk;
Keith Busche1e5e562015-02-19 13:39:03 -07002182 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
2183 list_add_tail(&ns->list, &dev->namespaces);
2184
Keith Busche9ef4632012-07-24 15:01:04 -06002185 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Keith Busche8244102015-08-12 16:17:54 -06002186 if (dev->max_hw_sectors) {
Keith Busch8fc23e02012-07-26 11:29:57 -06002187 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
Keith Busche8244102015-08-12 16:17:54 -06002188 blk_queue_max_segments(ns->queue,
Keith Busch6824c5e2015-11-18 16:33:08 -07002189 (dev->max_hw_sectors / (dev->page_size >> 9)) + 1);
Keith Busche8244102015-08-12 16:17:54 -06002190 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002191 if (dev->stripe_size)
2192 blk_queue_chunk_sectors(ns->queue, dev->stripe_size >> 9);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002193 if (dev->ctrl.vwc & NVME_CTRL_VWC_PRESENT)
Keith Buscha7d2ce22014-04-29 11:41:28 -06002194 blk_queue_flush(ns->queue, REQ_FLUSH | REQ_FUA);
Keith Busch03100aa2015-08-19 14:24:05 -07002195 blk_queue_virt_boundary(ns->queue, dev->page_size - 1);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002196
2197 disk->major = nvme_major;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002198 disk->first_minor = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002199 disk->fops = &nvme_fops;
2200 disk->private_data = ns;
2201 disk->queue = ns->queue;
Keith Buschb3fffde2015-02-03 11:21:42 -07002202 disk->driverfs_dev = dev->device;
Matthew Wilcox469071a2013-12-09 12:58:46 -05002203 disk->flags = GENHD_FL_EXT_DEVT;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002204 sprintf(disk->disk_name, "nvme%dn%d", dev->ctrl.instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002205
Keith Busche1e5e562015-02-19 13:39:03 -07002206 /*
2207 * Initialize capacity to 0 until we establish the namespace format and
2208 * setup integrity extentions if necessary. The revalidate_disk after
2209 * add_disk allows the driver to register with integrity if the format
2210 * requires it.
2211 */
2212 set_capacity(disk, 0);
Keith Buscha5768aa2015-06-01 14:28:14 -06002213 if (nvme_revalidate_disk(ns->disk))
2214 goto out_free_disk;
2215
Keith Busch5105aa52015-10-02 10:37:28 -06002216 kref_get(&dev->kref);
Matias Bjørlingca064082015-10-29 17:57:29 +09002217 if (ns->type != NVME_NS_LIGHTNVM) {
2218 add_disk(ns->disk);
2219 if (ns->ms) {
2220 struct block_device *bd = bdget_disk(ns->disk, 0);
2221 if (!bd)
2222 return;
2223 if (blkdev_get(bd, FMODE_READ, NULL)) {
2224 bdput(bd);
2225 return;
2226 }
2227 blkdev_reread_part(bd);
2228 blkdev_put(bd, FMODE_READ);
Keith Busch7bee6072015-07-14 11:57:48 -06002229 }
Keith Busch7bee6072015-07-14 11:57:48 -06002230 }
Keith Busche1e5e562015-02-19 13:39:03 -07002231 return;
Keith Buscha5768aa2015-06-01 14:28:14 -06002232 out_free_disk:
2233 kfree(disk);
2234 list_del(&ns->list);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002235 out_free_queue:
2236 blk_cleanup_queue(ns->queue);
2237 out_free_ns:
2238 kfree(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002239}
2240
Christoph Hellwig2659e572015-10-02 18:51:31 +02002241/*
2242 * Create I/O queues. Failing to create an I/O queue is not an issue,
2243 * we can continue with less than the desired amount of queues, and
2244 * even a controller without I/O queues an still be used to issue
2245 * admin commands. This might be useful to upgrade a buggy firmware
2246 * for example.
2247 */
Keith Busch42f61422014-03-24 10:46:25 -06002248static void nvme_create_io_queues(struct nvme_dev *dev)
2249{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002250 unsigned i;
Keith Busch42f61422014-03-24 10:46:25 -06002251
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002252 for (i = dev->queue_count; i <= dev->max_qid; i++)
Keith Busch2b25d982014-12-22 12:59:04 -07002253 if (!nvme_alloc_queue(dev, i, dev->q_depth))
Keith Busch42f61422014-03-24 10:46:25 -06002254 break;
2255
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002256 for (i = dev->online_queues; i <= dev->queue_count - 1; i++)
Christoph Hellwig2659e572015-10-02 18:51:31 +02002257 if (nvme_create_queue(dev->queues[i], i)) {
2258 nvme_free_queues(dev, i);
Keith Busch42f61422014-03-24 10:46:25 -06002259 break;
Christoph Hellwig2659e572015-10-02 18:51:31 +02002260 }
Keith Busch42f61422014-03-24 10:46:25 -06002261}
2262
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002263static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002264{
2265 int status;
2266 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05002267 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002268
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002269 status = nvme_set_features(&dev->ctrl, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002270 &result);
Matthew Wilcox27e81662014-04-11 11:58:45 -04002271 if (status < 0)
2272 return status;
2273 if (status > 0) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002274 dev_err(dev->dev, "Could not set queue count (%d)\n", status);
Keith Buschbadc34d2014-06-23 14:25:35 -06002275 return 0;
Matthew Wilcox27e81662014-04-11 11:58:45 -04002276 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002277 return min(result & 0xffff, result >> 16) + 1;
2278}
2279
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002280static void __iomem *nvme_map_cmb(struct nvme_dev *dev)
2281{
2282 u64 szu, size, offset;
2283 u32 cmbloc;
2284 resource_size_t bar_size;
2285 struct pci_dev *pdev = to_pci_dev(dev->dev);
2286 void __iomem *cmb;
2287 dma_addr_t dma_addr;
2288
2289 if (!use_cmb_sqes)
2290 return NULL;
2291
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002292 dev->cmbsz = readl(dev->bar + NVME_REG_CMBSZ);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002293 if (!(NVME_CMB_SZ(dev->cmbsz)))
2294 return NULL;
2295
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002296 cmbloc = readl(dev->bar + NVME_REG_CMBLOC);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002297
2298 szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz));
2299 size = szu * NVME_CMB_SZ(dev->cmbsz);
2300 offset = szu * NVME_CMB_OFST(cmbloc);
2301 bar_size = pci_resource_len(pdev, NVME_CMB_BIR(cmbloc));
2302
2303 if (offset > bar_size)
2304 return NULL;
2305
2306 /*
2307 * Controllers may support a CMB size larger than their BAR,
2308 * for example, due to being behind a bridge. Reduce the CMB to
2309 * the reported size of the BAR
2310 */
2311 if (size > bar_size - offset)
2312 size = bar_size - offset;
2313
2314 dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(cmbloc)) + offset;
2315 cmb = ioremap_wc(dma_addr, size);
2316 if (!cmb)
2317 return NULL;
2318
2319 dev->cmb_dma_addr = dma_addr;
2320 dev->cmb_size = size;
2321 return cmb;
2322}
2323
2324static inline void nvme_release_cmb(struct nvme_dev *dev)
2325{
2326 if (dev->cmb) {
2327 iounmap(dev->cmb);
2328 dev->cmb = NULL;
2329 }
2330}
2331
Keith Busch9d713c22013-07-15 15:02:24 -06002332static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
2333{
Haiyan Hub80d5cc2013-09-10 11:25:37 +08002334 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
Keith Busch9d713c22013-07-15 15:02:24 -06002335}
2336
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002337static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002338{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002339 struct nvme_queue *adminq = dev->queues[0];
Christoph Hellwige75ec752015-05-22 11:12:39 +02002340 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch42f61422014-03-24 10:46:25 -06002341 int result, i, vecs, nr_io_queues, size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002342
Keith Busch42f61422014-03-24 10:46:25 -06002343 nr_io_queues = num_possible_cpus();
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002344 result = set_queue_count(dev, nr_io_queues);
Keith Buschbadc34d2014-06-23 14:25:35 -06002345 if (result <= 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002346 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05002347 if (result < nr_io_queues)
2348 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002349
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002350 if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) {
2351 result = nvme_cmb_qdepth(dev, nr_io_queues,
2352 sizeof(struct nvme_command));
2353 if (result > 0)
2354 dev->q_depth = result;
2355 else
2356 nvme_release_cmb(dev);
2357 }
2358
Keith Busch9d713c22013-07-15 15:02:24 -06002359 size = db_bar_size(dev, nr_io_queues);
2360 if (size > 8192) {
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002361 iounmap(dev->bar);
Keith Busch9d713c22013-07-15 15:02:24 -06002362 do {
2363 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
2364 if (dev->bar)
2365 break;
2366 if (!--nr_io_queues)
2367 return -ENOMEM;
2368 size = db_bar_size(dev, nr_io_queues);
2369 } while (1);
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002370 dev->dbs = dev->bar + 4096;
Keith Busch5a92e702014-02-21 14:13:44 -07002371 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04002372 }
2373
Keith Busch9d713c22013-07-15 15:02:24 -06002374 /* Deregister the admin queue's interrupt */
Matthew Wilcox3193f072014-01-27 15:57:22 -05002375 free_irq(dev->entry[0].vector, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06002376
Jens Axboee32efbf2014-11-14 09:49:26 -07002377 /*
2378 * If we enable msix early due to not intx, disable it again before
2379 * setting up the full range we need.
2380 */
2381 if (!pdev->irq)
2382 pci_disable_msix(pdev);
2383
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002384 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002385 dev->entry[i].entry = i;
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002386 vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues);
2387 if (vecs < 0) {
2388 vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32));
2389 if (vecs < 0) {
2390 vecs = 1;
2391 } else {
2392 for (i = 0; i < vecs; i++)
2393 dev->entry[i].vector = i + pdev->irq;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002394 }
2395 }
2396
Matthew Wilcox063a8092013-06-20 10:53:48 -04002397 /*
2398 * Should investigate if there's a performance win from allocating
2399 * more queues than interrupt vectors; it might allow the submission
2400 * path to scale better, even if the receive path is limited by the
2401 * number of interrupts.
2402 */
2403 nr_io_queues = vecs;
Keith Busch42f61422014-03-24 10:46:25 -06002404 dev->max_qid = nr_io_queues;
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07002405
Matthew Wilcox3193f072014-01-27 15:57:22 -05002406 result = queue_request_irq(dev, adminq, adminq->irqname);
Jon Derrick758dd7f2015-06-30 11:22:52 -06002407 if (result) {
2408 adminq->cq_vector = -1;
Keith Busch22404272013-07-15 15:02:20 -06002409 goto free_queues;
Jon Derrick758dd7f2015-06-30 11:22:52 -06002410 }
Matthew Wilcox1b234842011-01-20 13:01:49 -05002411
Keith Buschcd638942013-07-15 15:02:23 -06002412 /* Free previously allocated queues that are no longer usable */
Keith Busch42f61422014-03-24 10:46:25 -06002413 nvme_free_queues(dev, nr_io_queues + 1);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002414 nvme_create_io_queues(dev);
Keith Buschcd638942013-07-15 15:02:23 -06002415
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002416 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002417
Keith Busch22404272013-07-15 15:02:20 -06002418 free_queues:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002419 nvme_free_queues(dev, 1);
Keith Busch22404272013-07-15 15:02:20 -06002420 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002421}
2422
Keith Buscha5768aa2015-06-01 14:28:14 -06002423static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2424{
2425 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2426 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2427
2428 return nsa->ns_id - nsb->ns_id;
2429}
2430
2431static struct nvme_ns *nvme_find_ns(struct nvme_dev *dev, unsigned nsid)
2432{
2433 struct nvme_ns *ns;
2434
2435 list_for_each_entry(ns, &dev->namespaces, list) {
2436 if (ns->ns_id == nsid)
2437 return ns;
2438 if (ns->ns_id > nsid)
2439 break;
2440 }
2441 return NULL;
2442}
2443
2444static inline bool nvme_io_incapable(struct nvme_dev *dev)
2445{
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002446 return (!dev->bar ||
2447 readl(dev->bar + NVME_REG_CSTS) & NVME_CSTS_CFS ||
2448 dev->online_queues < 2);
Keith Buscha5768aa2015-06-01 14:28:14 -06002449}
2450
2451static void nvme_ns_remove(struct nvme_ns *ns)
2452{
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002453 bool kill = nvme_io_incapable(to_nvme_dev(ns->ctrl)) &&
2454 !blk_queue_dying(ns->queue);
Keith Buscha5768aa2015-06-01 14:28:14 -06002455
2456 if (kill)
2457 blk_set_queue_dying(ns->queue);
Dan Williams9609b992015-10-21 13:19:55 -04002458 if (ns->disk->flags & GENHD_FL_UP)
Keith Buscha5768aa2015-06-01 14:28:14 -06002459 del_gendisk(ns->disk);
Keith Buscha5768aa2015-06-01 14:28:14 -06002460 if (kill || !blk_queue_dying(ns->queue)) {
2461 blk_mq_abort_requeue_list(ns->queue);
2462 blk_cleanup_queue(ns->queue);
Keith Busch5105aa52015-10-02 10:37:28 -06002463 }
2464 list_del_init(&ns->list);
2465 kref_put(&ns->kref, nvme_free_ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002466}
2467
2468static void nvme_scan_namespaces(struct nvme_dev *dev, unsigned nn)
2469{
2470 struct nvme_ns *ns, *next;
2471 unsigned i;
2472
2473 for (i = 1; i <= nn; i++) {
2474 ns = nvme_find_ns(dev, i);
2475 if (ns) {
Keith Busch5105aa52015-10-02 10:37:28 -06002476 if (revalidate_disk(ns->disk))
Keith Buscha5768aa2015-06-01 14:28:14 -06002477 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002478 } else
2479 nvme_alloc_ns(dev, i);
2480 }
2481 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
Keith Busch5105aa52015-10-02 10:37:28 -06002482 if (ns->ns_id > nn)
Keith Buscha5768aa2015-06-01 14:28:14 -06002483 nvme_ns_remove(ns);
Keith Buscha5768aa2015-06-01 14:28:14 -06002484 }
2485 list_sort(NULL, &dev->namespaces, ns_cmp);
2486}
2487
Keith Buschbda4e0f2015-09-03 08:18:17 -06002488static void nvme_set_irq_hints(struct nvme_dev *dev)
2489{
2490 struct nvme_queue *nvmeq;
2491 int i;
2492
2493 for (i = 0; i < dev->online_queues; i++) {
2494 nvmeq = dev->queues[i];
2495
2496 if (!nvmeq->tags || !(*nvmeq->tags))
2497 continue;
2498
2499 irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector,
2500 blk_mq_tags_cpumask(*nvmeq->tags));
2501 }
2502}
2503
Keith Buscha5768aa2015-06-01 14:28:14 -06002504static void nvme_dev_scan(struct work_struct *work)
2505{
2506 struct nvme_dev *dev = container_of(work, struct nvme_dev, scan_work);
2507 struct nvme_id_ctrl *ctrl;
2508
2509 if (!dev->tagset.tags)
2510 return;
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002511 if (nvme_identify_ctrl(&dev->ctrl, &ctrl))
Keith Buscha5768aa2015-06-01 14:28:14 -06002512 return;
2513 nvme_scan_namespaces(dev, le32_to_cpup(&ctrl->nn));
2514 kfree(ctrl);
Keith Buschbda4e0f2015-09-03 08:18:17 -06002515 nvme_set_irq_hints(dev);
Keith Buscha5768aa2015-06-01 14:28:14 -06002516}
2517
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002518/*
2519 * Return: error value if an error occurred setting up the queues or calling
2520 * Identify Device. 0 if these succeeded, even if adding some of the
2521 * namespaces failed. At the moment, these failures are silent. TBD which
2522 * failures should be reported.
2523 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002524static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002525{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002526 struct pci_dev *pdev = to_pci_dev(dev->dev);
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04002527 int res;
Matthew Wilcox51814232011-02-01 16:18:08 -05002528 struct nvme_id_ctrl *ctrl;
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002529 int shift = NVME_CAP_MPSMIN(lo_hi_readq(dev->bar + NVME_REG_CAP)) + 12;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002530
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002531 res = nvme_identify_ctrl(&dev->ctrl, &ctrl);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002532 if (res) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002533 dev_err(dev->dev, "Identify Controller failed (%d)\n", res);
Keith Busche1e5e562015-02-19 13:39:03 -07002534 return -EIO;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002535 }
2536
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002537 dev->ctrl.oncs = le16_to_cpup(&ctrl->oncs);
2538 dev->ctrl.abort_limit = ctrl->acl + 1;
2539 dev->ctrl.vwc = ctrl->vwc;
2540 memcpy(dev->ctrl.serial, ctrl->sn, sizeof(ctrl->sn));
2541 memcpy(dev->ctrl.model, ctrl->mn, sizeof(ctrl->mn));
2542 memcpy(dev->ctrl.firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Keith Busch159b67d2013-04-09 17:13:20 -06002543 if (ctrl->mdts)
Keith Busch8fc23e02012-07-26 11:29:57 -06002544 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
Sathyavathi Mb12363d2015-11-05 12:52:28 -07002545 else
2546 dev->max_hw_sectors = UINT_MAX;
Matthew Wilcox68608c262013-06-21 14:36:34 -04002547 if ((pdev->vendor == PCI_VENDOR_ID_INTEL) &&
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002548 (pdev->device == 0x0953) && ctrl->vs[3]) {
2549 unsigned int max_hw_sectors;
2550
Keith Busch159b67d2013-04-09 17:13:20 -06002551 dev->stripe_size = 1 << (ctrl->vs[3] + shift);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002552 max_hw_sectors = dev->stripe_size >> (shift - 9);
2553 if (dev->max_hw_sectors) {
2554 dev->max_hw_sectors = min(max_hw_sectors,
2555 dev->max_hw_sectors);
2556 } else
2557 dev->max_hw_sectors = max_hw_sectors;
2558 }
Christoph Hellwigd29ec822015-05-22 11:12:46 +02002559 kfree(ctrl);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002560
Keith Buschffe77042015-06-08 10:08:15 -06002561 if (!dev->tagset.tags) {
2562 dev->tagset.ops = &nvme_mq_ops;
2563 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2564 dev->tagset.timeout = NVME_IO_TIMEOUT;
2565 dev->tagset.numa_node = dev_to_node(dev->dev);
2566 dev->tagset.queue_depth =
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002567 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
Keith Buschffe77042015-06-08 10:08:15 -06002568 dev->tagset.cmd_size = nvme_cmd_size(dev);
2569 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2570 dev->tagset.driver_data = dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002571
Keith Buschffe77042015-06-08 10:08:15 -06002572 if (blk_mq_alloc_tag_set(&dev->tagset))
2573 return 0;
2574 }
Keith Buscha5768aa2015-06-01 14:28:14 -06002575 schedule_work(&dev->scan_work);
Keith Busche1e5e562015-02-19 13:39:03 -07002576 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002577}
2578
Keith Busch0877cb02013-07-15 15:02:19 -06002579static int nvme_dev_map(struct nvme_dev *dev)
2580{
Keith Busch42f61422014-03-24 10:46:25 -06002581 u64 cap;
Keith Busch0877cb02013-07-15 15:02:19 -06002582 int bars, result = -ENOMEM;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002583 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002584
2585 if (pci_enable_device_mem(pdev))
2586 return result;
2587
2588 dev->entry[0].vector = pdev->irq;
2589 pci_set_master(pdev);
2590 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Jens Axboebe7837e2014-11-14 09:50:19 -07002591 if (!bars)
2592 goto disable_pci;
2593
Keith Busch0877cb02013-07-15 15:02:19 -06002594 if (pci_request_selected_regions(pdev, bars, "nvme"))
2595 goto disable_pci;
2596
Christoph Hellwige75ec752015-05-22 11:12:39 +02002597 if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) &&
2598 dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32)))
Russell King052d0ef2013-06-26 23:49:11 +01002599 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06002600
Keith Busch0877cb02013-07-15 15:02:19 -06002601 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
2602 if (!dev->bar)
2603 goto disable;
Jens Axboee32efbf2014-11-14 09:49:26 -07002604
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002605 if (readl(dev->bar + NVME_REG_CSTS) == -1) {
Keith Busch0e53d182013-12-10 13:10:39 -07002606 result = -ENODEV;
2607 goto unmap;
2608 }
Jens Axboee32efbf2014-11-14 09:49:26 -07002609
2610 /*
2611 * Some devices don't advertse INTx interrupts, pre-enable a single
2612 * MSIX vec for setup. We'll adjust this later.
2613 */
2614 if (!pdev->irq) {
2615 result = pci_enable_msix(pdev, dev->entry, 1);
2616 if (result < 0)
2617 goto unmap;
2618 }
2619
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002620 cap = lo_hi_readq(dev->bar + NVME_REG_CAP);
2621
Keith Busch42f61422014-03-24 10:46:25 -06002622 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
2623 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002624 dev->dbs = dev->bar + 4096;
2625 if (readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 2))
Jon Derrick8ffaadf2015-07-20 10:14:09 -06002626 dev->cmb = nvme_map_cmb(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002627
2628 return 0;
2629
Keith Busch0e53d182013-12-10 13:10:39 -07002630 unmap:
2631 iounmap(dev->bar);
2632 dev->bar = NULL;
Keith Busch0877cb02013-07-15 15:02:19 -06002633 disable:
2634 pci_release_regions(pdev);
2635 disable_pci:
2636 pci_disable_device(pdev);
2637 return result;
2638}
2639
2640static void nvme_dev_unmap(struct nvme_dev *dev)
2641{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002642 struct pci_dev *pdev = to_pci_dev(dev->dev);
2643
2644 if (pdev->msi_enabled)
2645 pci_disable_msi(pdev);
2646 else if (pdev->msix_enabled)
2647 pci_disable_msix(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002648
2649 if (dev->bar) {
2650 iounmap(dev->bar);
2651 dev->bar = NULL;
Christoph Hellwige75ec752015-05-22 11:12:39 +02002652 pci_release_regions(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002653 }
2654
Christoph Hellwige75ec752015-05-22 11:12:39 +02002655 if (pci_is_enabled(pdev))
2656 pci_disable_device(pdev);
Keith Busch0877cb02013-07-15 15:02:19 -06002657}
2658
Keith Busch4d115422013-12-10 13:10:40 -07002659struct nvme_delq_ctx {
2660 struct task_struct *waiter;
2661 struct kthread_worker *worker;
2662 atomic_t refcount;
2663};
2664
2665static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev)
2666{
2667 dq->waiter = current;
2668 mb();
2669
2670 for (;;) {
2671 set_current_state(TASK_KILLABLE);
2672 if (!atomic_read(&dq->refcount))
2673 break;
2674 if (!schedule_timeout(ADMIN_TIMEOUT) ||
2675 fatal_signal_pending(current)) {
Keith Busch0fb59cb2015-01-07 18:55:50 -07002676 /*
2677 * Disable the controller first since we can't trust it
2678 * at this point, but leave the admin queue enabled
2679 * until all queue deletion requests are flushed.
2680 * FIXME: This may take a while if there are more h/w
2681 * queues than admin tags.
2682 */
Keith Busch4d115422013-12-10 13:10:40 -07002683 set_current_state(TASK_RUNNING);
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002684 nvme_disable_ctrl(dev,
2685 lo_hi_readq(dev->bar + NVME_REG_CAP));
Keith Busch0fb59cb2015-01-07 18:55:50 -07002686 nvme_clear_queue(dev->queues[0]);
Keith Busch4d115422013-12-10 13:10:40 -07002687 flush_kthread_worker(dq->worker);
Keith Busch0fb59cb2015-01-07 18:55:50 -07002688 nvme_disable_queue(dev, 0);
Keith Busch4d115422013-12-10 13:10:40 -07002689 return;
2690 }
2691 }
2692 set_current_state(TASK_RUNNING);
2693}
2694
2695static void nvme_put_dq(struct nvme_delq_ctx *dq)
2696{
2697 atomic_dec(&dq->refcount);
2698 if (dq->waiter)
2699 wake_up_process(dq->waiter);
2700}
2701
2702static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq)
2703{
2704 atomic_inc(&dq->refcount);
2705 return dq;
2706}
2707
2708static void nvme_del_queue_end(struct nvme_queue *nvmeq)
2709{
2710 struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx;
Keith Busch4d115422013-12-10 13:10:40 -07002711 nvme_put_dq(dq);
Keith Busch604e8c82015-11-20 08:38:13 -07002712
2713 spin_lock_irq(&nvmeq->q_lock);
2714 nvme_process_cq(nvmeq);
2715 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch4d115422013-12-10 13:10:40 -07002716}
2717
2718static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode,
2719 kthread_work_func_t fn)
2720{
2721 struct nvme_command c;
2722
2723 memset(&c, 0, sizeof(c));
2724 c.delete_queue.opcode = opcode;
2725 c.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2726
2727 init_kthread_work(&nvmeq->cmdinfo.work, fn);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002728 return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo,
2729 ADMIN_TIMEOUT);
Keith Busch4d115422013-12-10 13:10:40 -07002730}
2731
2732static void nvme_del_cq_work_handler(struct kthread_work *work)
2733{
2734 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2735 cmdinfo.work);
2736 nvme_del_queue_end(nvmeq);
2737}
2738
2739static int nvme_delete_cq(struct nvme_queue *nvmeq)
2740{
2741 return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq,
2742 nvme_del_cq_work_handler);
2743}
2744
2745static void nvme_del_sq_work_handler(struct kthread_work *work)
2746{
2747 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2748 cmdinfo.work);
2749 int status = nvmeq->cmdinfo.status;
2750
2751 if (!status)
2752 status = nvme_delete_cq(nvmeq);
2753 if (status)
2754 nvme_del_queue_end(nvmeq);
2755}
2756
2757static int nvme_delete_sq(struct nvme_queue *nvmeq)
2758{
2759 return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq,
2760 nvme_del_sq_work_handler);
2761}
2762
2763static void nvme_del_queue_start(struct kthread_work *work)
2764{
2765 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2766 cmdinfo.work);
Keith Busch4d115422013-12-10 13:10:40 -07002767 if (nvme_delete_sq(nvmeq))
2768 nvme_del_queue_end(nvmeq);
2769}
2770
2771static void nvme_disable_io_queues(struct nvme_dev *dev)
2772{
2773 int i;
2774 DEFINE_KTHREAD_WORKER_ONSTACK(worker);
2775 struct nvme_delq_ctx dq;
2776 struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002777 &worker, "nvme%d", dev->ctrl.instance);
Keith Busch4d115422013-12-10 13:10:40 -07002778
2779 if (IS_ERR(kworker_task)) {
Christoph Hellwige75ec752015-05-22 11:12:39 +02002780 dev_err(dev->dev,
Keith Busch4d115422013-12-10 13:10:40 -07002781 "Failed to create queue del task\n");
2782 for (i = dev->queue_count - 1; i > 0; i--)
2783 nvme_disable_queue(dev, i);
2784 return;
2785 }
2786
2787 dq.waiter = NULL;
2788 atomic_set(&dq.refcount, 0);
2789 dq.worker = &worker;
2790 for (i = dev->queue_count - 1; i > 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002791 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002792
2793 if (nvme_suspend_queue(nvmeq))
2794 continue;
2795 nvmeq->cmdinfo.ctx = nvme_get_dq(&dq);
2796 nvmeq->cmdinfo.worker = dq.worker;
2797 init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start);
2798 queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work);
2799 }
2800 nvme_wait_dq(&dq, dev);
2801 kthread_stop(kworker_task);
2802}
2803
Dan McLeranb9afca32014-04-07 17:10:11 -06002804/*
2805* Remove the node from the device list and check
2806* for whether or not we need to stop the nvme_thread.
2807*/
2808static void nvme_dev_list_remove(struct nvme_dev *dev)
2809{
2810 struct task_struct *tmp = NULL;
2811
2812 spin_lock(&dev_list_lock);
2813 list_del_init(&dev->node);
2814 if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) {
2815 tmp = nvme_thread;
2816 nvme_thread = NULL;
2817 }
2818 spin_unlock(&dev_list_lock);
2819
2820 if (tmp)
2821 kthread_stop(tmp);
2822}
2823
Keith Buschc9d3bf82015-01-07 18:55:52 -07002824static void nvme_freeze_queues(struct nvme_dev *dev)
2825{
2826 struct nvme_ns *ns;
2827
2828 list_for_each_entry(ns, &dev->namespaces, list) {
2829 blk_mq_freeze_queue_start(ns->queue);
2830
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002831 spin_lock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002832 queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue);
Christoph Hellwigcddcd722015-05-07 09:38:14 +02002833 spin_unlock_irq(ns->queue->queue_lock);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002834
2835 blk_mq_cancel_requeue_work(ns->queue);
2836 blk_mq_stop_hw_queues(ns->queue);
2837 }
2838}
2839
2840static void nvme_unfreeze_queues(struct nvme_dev *dev)
2841{
2842 struct nvme_ns *ns;
2843
2844 list_for_each_entry(ns, &dev->namespaces, list) {
2845 queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue);
2846 blk_mq_unfreeze_queue(ns->queue);
2847 blk_mq_start_stopped_hw_queues(ns->queue, true);
2848 blk_mq_kick_requeue_list(ns->queue);
2849 }
2850}
2851
Keith Buschf0b50732013-07-15 15:02:21 -06002852static void nvme_dev_shutdown(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002853{
Keith Busch22404272013-07-15 15:02:20 -06002854 int i;
Keith Busch7c1b2452014-06-25 11:18:12 -06002855 u32 csts = -1;
Keith Busch22404272013-07-15 15:02:20 -06002856
Dan McLeranb9afca32014-04-07 17:10:11 -06002857 nvme_dev_list_remove(dev);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002858
Keith Buschc9d3bf82015-01-07 18:55:52 -07002859 if (dev->bar) {
2860 nvme_freeze_queues(dev);
Christoph Hellwig7a67cbe2015-11-20 08:58:10 +01002861 csts = readl(dev->bar + NVME_REG_CSTS);
Keith Buschc9d3bf82015-01-07 18:55:52 -07002862 }
Keith Busch7c1b2452014-06-25 11:18:12 -06002863 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
Keith Busch4d115422013-12-10 13:10:40 -07002864 for (i = dev->queue_count - 1; i >= 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002865 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002866 nvme_suspend_queue(nvmeq);
Keith Busch4d115422013-12-10 13:10:40 -07002867 }
2868 } else {
2869 nvme_disable_io_queues(dev);
Keith Busch1894d8f2013-07-15 15:02:22 -06002870 nvme_shutdown_ctrl(dev);
Keith Busch4d115422013-12-10 13:10:40 -07002871 nvme_disable_queue(dev, 0);
2872 }
Keith Buschf0b50732013-07-15 15:02:21 -06002873 nvme_dev_unmap(dev);
Keith Busch07836e62015-02-19 10:34:48 -07002874
2875 for (i = dev->queue_count - 1; i >= 0; i--)
2876 nvme_clear_queue(dev->queues[i]);
Keith Buschf0b50732013-07-15 15:02:21 -06002877}
2878
2879static void nvme_dev_remove(struct nvme_dev *dev)
2880{
Keith Busch5105aa52015-10-02 10:37:28 -06002881 struct nvme_ns *ns, *next;
Keith Buschf0b50732013-07-15 15:02:21 -06002882
Keith Busch5105aa52015-10-02 10:37:28 -06002883 list_for_each_entry_safe(ns, next, &dev->namespaces, list)
Keith Buscha5768aa2015-06-01 14:28:14 -06002884 nvme_ns_remove(ns);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002885}
2886
Matthew Wilcox091b6092011-02-10 09:56:01 -05002887static int nvme_setup_prp_pools(struct nvme_dev *dev)
2888{
Christoph Hellwige75ec752015-05-22 11:12:39 +02002889 dev->prp_page_pool = dma_pool_create("prp list page", dev->dev,
Matthew Wilcox091b6092011-02-10 09:56:01 -05002890 PAGE_SIZE, PAGE_SIZE, 0);
2891 if (!dev->prp_page_pool)
2892 return -ENOMEM;
2893
Matthew Wilcox99802a72011-02-10 10:30:34 -05002894 /* Optimisation for I/Os between 4k and 128k */
Christoph Hellwige75ec752015-05-22 11:12:39 +02002895 dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev,
Matthew Wilcox99802a72011-02-10 10:30:34 -05002896 256, 256, 0);
2897 if (!dev->prp_small_pool) {
2898 dma_pool_destroy(dev->prp_page_pool);
2899 return -ENOMEM;
2900 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002901 return 0;
2902}
2903
2904static void nvme_release_prp_pools(struct nvme_dev *dev)
2905{
2906 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002907 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002908}
2909
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002910static DEFINE_IDA(nvme_instance_ida);
2911
2912static int nvme_set_instance(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002913{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002914 int instance, error;
2915
2916 do {
2917 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
2918 return -ENODEV;
2919
2920 spin_lock(&dev_list_lock);
2921 error = ida_get_new(&nvme_instance_ida, &instance);
2922 spin_unlock(&dev_list_lock);
2923 } while (error == -EAGAIN);
2924
2925 if (error)
2926 return -ENODEV;
2927
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002928 dev->ctrl.instance = instance;
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002929 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002930}
2931
2932static void nvme_release_instance(struct nvme_dev *dev)
2933{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002934 spin_lock(&dev_list_lock);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002935 ida_remove(&nvme_instance_ida, dev->ctrl.instance);
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002936 spin_unlock(&dev_list_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002937}
2938
Keith Busch5e82e952013-02-19 10:17:58 -07002939static void nvme_free_dev(struct kref *kref)
2940{
2941 struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref);
Keith Busch9ac27092014-01-31 16:53:39 -07002942
Christoph Hellwige75ec752015-05-22 11:12:39 +02002943 put_device(dev->dev);
Keith Buschb3fffde2015-02-03 11:21:42 -07002944 put_device(dev->device);
Indraneel M285dffc2014-12-11 08:24:18 -07002945 nvme_release_instance(dev);
Keith Busch4af0e212015-06-08 10:08:13 -06002946 if (dev->tagset.tags)
2947 blk_mq_free_tag_set(&dev->tagset);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002948 if (dev->ctrl.admin_q)
2949 blk_put_queue(dev->ctrl.admin_q);
Keith Busch5e82e952013-02-19 10:17:58 -07002950 kfree(dev->queues);
2951 kfree(dev->entry);
2952 kfree(dev);
2953}
2954
2955static int nvme_dev_open(struct inode *inode, struct file *f)
2956{
Keith Buschb3fffde2015-02-03 11:21:42 -07002957 struct nvme_dev *dev;
2958 int instance = iminor(inode);
2959 int ret = -ENODEV;
2960
2961 spin_lock(&dev_list_lock);
2962 list_for_each_entry(dev, &dev_list, node) {
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002963 if (dev->ctrl.instance == instance) {
2964 if (!dev->ctrl.admin_q) {
Keith Busch2e1d8442015-02-12 15:33:00 -07002965 ret = -EWOULDBLOCK;
2966 break;
2967 }
Keith Buschb3fffde2015-02-03 11:21:42 -07002968 if (!kref_get_unless_zero(&dev->kref))
2969 break;
2970 f->private_data = dev;
2971 ret = 0;
2972 break;
2973 }
2974 }
2975 spin_unlock(&dev_list_lock);
2976
2977 return ret;
Keith Busch5e82e952013-02-19 10:17:58 -07002978}
2979
2980static int nvme_dev_release(struct inode *inode, struct file *f)
2981{
2982 struct nvme_dev *dev = f->private_data;
2983 kref_put(&dev->kref, nvme_free_dev);
2984 return 0;
2985}
2986
2987static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
2988{
2989 struct nvme_dev *dev = f->private_data;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002990 struct nvme_ns *ns;
2991
Keith Busch5e82e952013-02-19 10:17:58 -07002992 switch (cmd) {
2993 case NVME_IOCTL_ADMIN_CMD:
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002994 return nvme_user_cmd(&dev->ctrl, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06002995 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002996 if (list_empty(&dev->namespaces))
2997 return -ENOTTY;
2998 ns = list_first_entry(&dev->namespaces, struct nvme_ns, list);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01002999 return nvme_user_cmd(&dev->ctrl, ns, (void __user *)arg);
Keith Busch4cc06522015-06-05 10:30:08 -06003000 case NVME_IOCTL_RESET:
3001 dev_warn(dev->dev, "resetting controller\n");
3002 return nvme_reset(dev);
Jon Derrick81f03fe2015-08-10 15:20:41 -06003003 case NVME_IOCTL_SUBSYS_RESET:
3004 return nvme_subsys_reset(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003005 default:
3006 return -ENOTTY;
3007 }
3008}
3009
3010static const struct file_operations nvme_dev_fops = {
3011 .owner = THIS_MODULE,
3012 .open = nvme_dev_open,
3013 .release = nvme_dev_release,
3014 .unlocked_ioctl = nvme_dev_ioctl,
3015 .compat_ioctl = nvme_dev_ioctl,
3016};
3017
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003018static void nvme_probe_work(struct work_struct *work)
Keith Buschf0b50732013-07-15 15:02:21 -06003019{
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003020 struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work);
Dan McLeranb9afca32014-04-07 17:10:11 -06003021 bool start_thread = false;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003022 int result;
Keith Buschf0b50732013-07-15 15:02:21 -06003023
3024 result = nvme_dev_map(dev);
3025 if (result)
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003026 goto out;
Keith Buschf0b50732013-07-15 15:02:21 -06003027
3028 result = nvme_configure_admin_queue(dev);
3029 if (result)
3030 goto unmap;
3031
3032 spin_lock(&dev_list_lock);
Dan McLeranb9afca32014-04-07 17:10:11 -06003033 if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) {
3034 start_thread = true;
3035 nvme_thread = NULL;
3036 }
Keith Buschf0b50732013-07-15 15:02:21 -06003037 list_add(&dev->node, &dev_list);
3038 spin_unlock(&dev_list_lock);
3039
Dan McLeranb9afca32014-04-07 17:10:11 -06003040 if (start_thread) {
3041 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
Keith Busch387caa52014-09-22 13:46:19 -06003042 wake_up_all(&nvme_kthread_wait);
Dan McLeranb9afca32014-04-07 17:10:11 -06003043 } else
3044 wait_event_killable(nvme_kthread_wait, nvme_thread);
3045
3046 if (IS_ERR_OR_NULL(nvme_thread)) {
3047 result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR;
3048 goto disable;
3049 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003050
3051 nvme_init_queue(dev->queues[0], 0);
Keith Busch0fb59cb2015-01-07 18:55:50 -07003052 result = nvme_alloc_admin_tags(dev);
3053 if (result)
3054 goto disable;
Dan McLeranb9afca32014-04-07 17:10:11 -06003055
Keith Buschf0b50732013-07-15 15:02:21 -06003056 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06003057 if (result)
Keith Busch0fb59cb2015-01-07 18:55:50 -07003058 goto free_tags;
Keith Buschf0b50732013-07-15 15:02:21 -06003059
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01003060 dev->ctrl.event_limit = 1;
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003061
Christoph Hellwig2659e572015-10-02 18:51:31 +02003062 /*
3063 * Keep the controller around but remove all namespaces if we don't have
3064 * any working I/O queue.
3065 */
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003066 if (dev->online_queues < 2) {
3067 dev_warn(dev->dev, "IO queues not created\n");
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003068 nvme_dev_remove(dev);
3069 } else {
3070 nvme_unfreeze_queues(dev);
3071 nvme_dev_add(dev);
3072 }
3073
3074 return;
Keith Buschf0b50732013-07-15 15:02:21 -06003075
Keith Busch0fb59cb2015-01-07 18:55:50 -07003076 free_tags:
3077 nvme_dev_remove_admin(dev);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01003078 blk_put_queue(dev->ctrl.admin_q);
3079 dev->ctrl.admin_q = NULL;
Keith Busch4af0e212015-06-08 10:08:13 -06003080 dev->queues[0]->tags = NULL;
Keith Buschf0b50732013-07-15 15:02:21 -06003081 disable:
Keith Buscha1a5ef92013-12-16 13:50:00 -05003082 nvme_disable_queue(dev, 0);
Dan McLeranb9afca32014-04-07 17:10:11 -06003083 nvme_dev_list_remove(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003084 unmap:
3085 nvme_dev_unmap(dev);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003086 out:
3087 if (!work_busy(&dev->reset_work))
3088 nvme_dead_ctrl(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06003089}
3090
Keith Busch9a6b9452013-12-10 13:10:36 -07003091static int nvme_remove_dead_ctrl(void *arg)
3092{
3093 struct nvme_dev *dev = (struct nvme_dev *)arg;
Christoph Hellwige75ec752015-05-22 11:12:39 +02003094 struct pci_dev *pdev = to_pci_dev(dev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003095
3096 if (pci_get_drvdata(pdev))
Keith Buschc81f4972014-06-23 15:24:53 -06003097 pci_stop_and_remove_bus_device_locked(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003098 kref_put(&dev->kref, nvme_free_dev);
3099 return 0;
3100}
3101
Keith Buschde3eff22015-06-18 13:36:39 -06003102static void nvme_dead_ctrl(struct nvme_dev *dev)
3103{
3104 dev_warn(dev->dev, "Device failed to resume\n");
3105 kref_get(&dev->kref);
3106 if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01003107 dev->ctrl.instance))) {
Keith Buschde3eff22015-06-18 13:36:39 -06003108 dev_err(dev->dev,
3109 "Failed to start controller remove task\n");
3110 kref_put(&dev->kref, nvme_free_dev);
3111 }
3112}
3113
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003114static void nvme_reset_work(struct work_struct *ws)
Keith Busch9a6b9452013-12-10 13:10:36 -07003115{
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003116 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003117 bool in_probe = work_busy(&dev->probe_work);
3118
Keith Busch9a6b9452013-12-10 13:10:36 -07003119 nvme_dev_shutdown(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003120
3121 /* Synchronize with device probe so that work will see failure status
3122 * and exit gracefully without trying to schedule another reset */
3123 flush_work(&dev->probe_work);
3124
3125 /* Fail this device if reset occured during probe to avoid
3126 * infinite initialization loops. */
3127 if (in_probe) {
Keith Buschde3eff22015-06-18 13:36:39 -06003128 nvme_dead_ctrl(dev);
Keith Buschffe77042015-06-08 10:08:15 -06003129 return;
Keith Busch9a6b9452013-12-10 13:10:36 -07003130 }
Keith Buschffe77042015-06-08 10:08:15 -06003131 /* Schedule device resume asynchronously so the reset work is available
3132 * to cleanup errors that may occur during reinitialization */
3133 schedule_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003134}
3135
Christoph Hellwig906678922015-10-02 18:49:23 +02003136static int __nvme_reset(struct nvme_dev *dev)
Keith Busch9a6b9452013-12-10 13:10:36 -07003137{
Christoph Hellwig906678922015-10-02 18:49:23 +02003138 if (work_pending(&dev->reset_work))
3139 return -EBUSY;
3140 list_del_init(&dev->node);
3141 queue_work(nvme_workq, &dev->reset_work);
3142 return 0;
Tejun Heo9ca97372014-03-07 10:24:49 -05003143}
3144
Keith Busch4cc06522015-06-05 10:30:08 -06003145static int nvme_reset(struct nvme_dev *dev)
3146{
Christoph Hellwig906678922015-10-02 18:49:23 +02003147 int ret;
Keith Busch4cc06522015-06-05 10:30:08 -06003148
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01003149 if (!dev->ctrl.admin_q || blk_queue_dying(dev->ctrl.admin_q))
Keith Busch4cc06522015-06-05 10:30:08 -06003150 return -ENODEV;
3151
3152 spin_lock(&dev_list_lock);
Christoph Hellwig906678922015-10-02 18:49:23 +02003153 ret = __nvme_reset(dev);
Keith Busch4cc06522015-06-05 10:30:08 -06003154 spin_unlock(&dev_list_lock);
3155
3156 if (!ret) {
3157 flush_work(&dev->reset_work);
Keith Buschffe77042015-06-08 10:08:15 -06003158 flush_work(&dev->probe_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003159 return 0;
3160 }
3161
3162 return ret;
3163}
3164
3165static ssize_t nvme_sysfs_reset(struct device *dev,
3166 struct device_attribute *attr, const char *buf,
3167 size_t count)
3168{
3169 struct nvme_dev *ndev = dev_get_drvdata(dev);
3170 int ret;
3171
3172 ret = nvme_reset(ndev);
3173 if (ret < 0)
3174 return ret;
3175
3176 return count;
3177}
3178static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
3179
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01003180static int nvme_pci_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val)
3181{
3182 *val = readl(to_nvme_dev(ctrl)->bar + off);
3183 return 0;
3184}
3185
3186static const struct nvme_ctrl_ops nvme_pci_ctrl_ops = {
3187 .reg_read32 = nvme_pci_reg_read32,
3188};
3189
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003190static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003191{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003192 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003193 struct nvme_dev *dev;
3194
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003195 node = dev_to_node(&pdev->dev);
3196 if (node == NUMA_NO_NODE)
3197 set_dev_node(&pdev->dev, 0);
3198
3199 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003200 if (!dev)
3201 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003202 dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry),
3203 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003204 if (!dev->entry)
3205 goto free;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003206 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
3207 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003208 if (!dev->queues)
3209 goto free;
3210
3211 INIT_LIST_HEAD(&dev->namespaces);
Christoph Hellwig77b50d92015-10-02 17:41:18 +02003212 INIT_WORK(&dev->reset_work, nvme_reset_work);
Christoph Hellwige75ec752015-05-22 11:12:39 +02003213 dev->dev = get_device(&pdev->dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003214 pci_set_drvdata(pdev, dev);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01003215
3216 dev->ctrl.ops = &nvme_pci_ctrl_ops;
3217 dev->ctrl.dev = dev->dev;
3218
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07003219 result = nvme_set_instance(dev);
3220 if (result)
Keith Buscha96d4f52014-08-19 19:15:59 -06003221 goto put_pci;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003222
Matthew Wilcox091b6092011-02-10 09:56:01 -05003223 result = nvme_setup_prp_pools(dev);
3224 if (result)
Keith Busch0877cb02013-07-15 15:02:19 -06003225 goto release;
Matthew Wilcox091b6092011-02-10 09:56:01 -05003226
Keith Buschfb35e912014-03-03 11:09:47 -07003227 kref_init(&dev->kref);
Keith Buschb3fffde2015-02-03 11:21:42 -07003228 dev->device = device_create(nvme_class, &pdev->dev,
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01003229 MKDEV(nvme_char_major, dev->ctrl.instance),
3230 dev, "nvme%d", dev->ctrl.instance);
Keith Buschb3fffde2015-02-03 11:21:42 -07003231 if (IS_ERR(dev->device)) {
3232 result = PTR_ERR(dev->device);
Keith Busch2e1d8442015-02-12 15:33:00 -07003233 goto release_pools;
Keith Buschb3fffde2015-02-03 11:21:42 -07003234 }
3235 get_device(dev->device);
Keith Busch4cc06522015-06-05 10:30:08 -06003236 dev_set_drvdata(dev->device, dev);
3237
3238 result = device_create_file(dev->device, &dev_attr_reset_controller);
3239 if (result)
3240 goto put_dev;
Keith Buschb3fffde2015-02-03 11:21:42 -07003241
Keith Busche6e96d72015-03-23 09:32:37 -06003242 INIT_LIST_HEAD(&dev->node);
Keith Buscha5768aa2015-06-01 14:28:14 -06003243 INIT_WORK(&dev->scan_work, nvme_dev_scan);
Christoph Hellwig3cf519b2015-10-03 09:49:23 +02003244 INIT_WORK(&dev->probe_work, nvme_probe_work);
Keith Busch2e1d8442015-02-12 15:33:00 -07003245 schedule_work(&dev->probe_work);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003246 return 0;
3247
Keith Busch4cc06522015-06-05 10:30:08 -06003248 put_dev:
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01003249 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->ctrl.instance));
Keith Busch4cc06522015-06-05 10:30:08 -06003250 put_device(dev->device);
Keith Busch0877cb02013-07-15 15:02:19 -06003251 release_pools:
Matthew Wilcox091b6092011-02-10 09:56:01 -05003252 nvme_release_prp_pools(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06003253 release:
3254 nvme_release_instance(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06003255 put_pci:
Christoph Hellwige75ec752015-05-22 11:12:39 +02003256 put_device(dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003257 free:
3258 kfree(dev->queues);
3259 kfree(dev->entry);
3260 kfree(dev);
3261 return result;
3262}
3263
Keith Buschf0d54a52014-05-02 10:40:43 -06003264static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
3265{
Keith Buscha6739472014-06-23 16:03:21 -06003266 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buschf0d54a52014-05-02 10:40:43 -06003267
Keith Buscha6739472014-06-23 16:03:21 -06003268 if (prepare)
3269 nvme_dev_shutdown(dev);
3270 else
Keith Busch0a7385a2015-10-02 10:37:29 -06003271 schedule_work(&dev->probe_work);
Keith Buschf0d54a52014-05-02 10:40:43 -06003272}
3273
Keith Busch09ece142014-01-27 11:29:40 -05003274static void nvme_shutdown(struct pci_dev *pdev)
3275{
3276 struct nvme_dev *dev = pci_get_drvdata(pdev);
3277 nvme_dev_shutdown(dev);
3278}
3279
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003280static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003281{
3282 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003283
3284 spin_lock(&dev_list_lock);
3285 list_del_init(&dev->node);
3286 spin_unlock(&dev_list_lock);
3287
3288 pci_set_drvdata(pdev, NULL);
Keith Busch2e1d8442015-02-12 15:33:00 -07003289 flush_work(&dev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003290 flush_work(&dev->reset_work);
Keith Buscha5768aa2015-06-01 14:28:14 -06003291 flush_work(&dev->scan_work);
Keith Busch4cc06522015-06-05 10:30:08 -06003292 device_remove_file(dev->device, &dev_attr_reset_controller);
Keith Buschc9d3bf82015-01-07 18:55:52 -07003293 nvme_dev_remove(dev);
Keith Busch3399a3f2015-06-18 13:36:40 -06003294 nvme_dev_shutdown(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003295 nvme_dev_remove_admin(dev);
Christoph Hellwig1c63dc62015-11-26 10:06:56 +01003296 device_destroy(nvme_class, MKDEV(nvme_char_major, dev->ctrl.instance));
Matias Bjørlinga4aea562014-11-04 08:20:14 -07003297 nvme_free_queues(dev, 0);
Jon Derrick8ffaadf2015-07-20 10:14:09 -06003298 nvme_release_cmb(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07003299 nvme_release_prp_pools(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07003300 kref_put(&dev->kref, nvme_free_dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003301}
3302
3303/* These functions are yet to be implemented */
3304#define nvme_error_detected NULL
3305#define nvme_dump_registers NULL
3306#define nvme_link_reset NULL
3307#define nvme_slot_reset NULL
3308#define nvme_error_resume NULL
Keith Buschcd638942013-07-15 15:02:23 -06003309
Jingoo Han671a6012014-02-13 11:19:14 +09003310#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06003311static int nvme_suspend(struct device *dev)
3312{
3313 struct pci_dev *pdev = to_pci_dev(dev);
3314 struct nvme_dev *ndev = pci_get_drvdata(pdev);
3315
3316 nvme_dev_shutdown(ndev);
3317 return 0;
3318}
3319
3320static int nvme_resume(struct device *dev)
3321{
3322 struct pci_dev *pdev = to_pci_dev(dev);
3323 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06003324
Keith Busch0a7385a2015-10-02 10:37:29 -06003325 schedule_work(&ndev->probe_work);
Keith Busch9a6b9452013-12-10 13:10:36 -07003326 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06003327}
Jingoo Han671a6012014-02-13 11:19:14 +09003328#endif
Keith Buschcd638942013-07-15 15:02:23 -06003329
3330static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003331
Stephen Hemminger1d352032012-09-07 09:33:17 -07003332static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003333 .error_detected = nvme_error_detected,
3334 .mmio_enabled = nvme_dump_registers,
3335 .link_reset = nvme_link_reset,
3336 .slot_reset = nvme_slot_reset,
3337 .resume = nvme_error_resume,
Keith Buschf0d54a52014-05-02 10:40:43 -06003338 .reset_notify = nvme_reset_notify,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003339};
3340
3341/* Move to pci_ids.h later */
3342#define PCI_CLASS_STORAGE_EXPRESS 0x010802
3343
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003344static const struct pci_device_id nvme_id_table[] = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003345 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
Stephan Güntherc74dc782015-11-04 00:49:45 +01003346 { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003347 { 0, }
3348};
3349MODULE_DEVICE_TABLE(pci, nvme_id_table);
3350
3351static struct pci_driver nvme_driver = {
3352 .name = "nvme",
3353 .id_table = nvme_id_table,
3354 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08003355 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05003356 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06003357 .driver = {
3358 .pm = &nvme_dev_pm_ops,
3359 },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003360 .err_handler = &nvme_err_handler,
3361};
3362
3363static int __init nvme_init(void)
3364{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003365 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003366
Dan McLeranb9afca32014-04-07 17:10:11 -06003367 init_waitqueue_head(&nvme_kthread_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003368
Keith Busch9a6b9452013-12-10 13:10:36 -07003369 nvme_workq = create_singlethread_workqueue("nvme");
3370 if (!nvme_workq)
Dan McLeranb9afca32014-04-07 17:10:11 -06003371 return -ENOMEM;
Keith Busch9a6b9452013-12-10 13:10:36 -07003372
Keith Busch5c42ea12012-07-25 16:05:18 -06003373 result = register_blkdev(nvme_major, "nvme");
3374 if (result < 0)
Keith Busch9a6b9452013-12-10 13:10:36 -07003375 goto kill_workq;
Keith Busch5c42ea12012-07-25 16:05:18 -06003376 else if (result > 0)
Matthew Wilcox0ac13142012-07-31 13:31:15 -04003377 nvme_major = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003378
Keith Buschb3fffde2015-02-03 11:21:42 -07003379 result = __register_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme",
3380 &nvme_dev_fops);
3381 if (result < 0)
3382 goto unregister_blkdev;
3383 else if (result > 0)
3384 nvme_char_major = result;
3385
3386 nvme_class = class_create(THIS_MODULE, "nvme");
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003387 if (IS_ERR(nvme_class)) {
3388 result = PTR_ERR(nvme_class);
Keith Buschb3fffde2015-02-03 11:21:42 -07003389 goto unregister_chrdev;
Alexey Khoroshilovc7270402015-03-07 01:43:41 +03003390 }
Keith Buschb3fffde2015-02-03 11:21:42 -07003391
Keith Buschf3db22f2014-06-11 11:51:35 -06003392 result = pci_register_driver(&nvme_driver);
3393 if (result)
Keith Buschb3fffde2015-02-03 11:21:42 -07003394 goto destroy_class;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003395 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003396
Keith Buschb3fffde2015-02-03 11:21:42 -07003397 destroy_class:
3398 class_destroy(nvme_class);
3399 unregister_chrdev:
3400 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05003401 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003402 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003403 kill_workq:
3404 destroy_workqueue(nvme_workq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003405 return result;
3406}
3407
3408static void __exit nvme_exit(void)
3409{
3410 pci_unregister_driver(&nvme_driver);
3411 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07003412 destroy_workqueue(nvme_workq);
Keith Buschb3fffde2015-02-03 11:21:42 -07003413 class_destroy(nvme_class);
3414 __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme");
Dan McLeranb9afca32014-04-07 17:10:11 -06003415 BUG_ON(nvme_thread && !IS_ERR(nvme_thread));
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04003416 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003417}
3418
3419MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
3420MODULE_LICENSE("GPL");
Keith Buschc78b47132014-11-21 15:16:32 -07003421MODULE_VERSION("1.0");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05003422module_init(nvme_init);
3423module_exit(nvme_exit);