blob: 8393f91b2721549ce31124027bf49eff30ee8ffc [file] [log] [blame]
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001/*
2 * NVM Express device driver
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04003 * Copyright (c) 2011-2014, Intel Corporation.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050013 */
14
15#include <linux/nvme.h>
Matthew Wilcox8de05532011-05-12 13:50:28 -040016#include <linux/bitops.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050017#include <linux/blkdev.h>
Matias Bjørlinga4aea562014-11-04 08:20:14 -070018#include <linux/blk-mq.h>
Keith Busch42f61422014-03-24 10:46:25 -060019#include <linux/cpu.h>
Matthew Wilcoxfd63e9ce2011-05-06 08:37:54 -040020#include <linux/delay.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050021#include <linux/errno.h>
22#include <linux/fs.h>
23#include <linux/genhd.h>
Keith Busch4cc09e22014-04-02 15:45:37 -060024#include <linux/hdreg.h>
Matthew Wilcox5aff9382011-05-06 08:45:47 -040025#include <linux/idr.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050026#include <linux/init.h>
27#include <linux/interrupt.h>
28#include <linux/io.h>
29#include <linux/kdev_t.h>
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050030#include <linux/kthread.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050031#include <linux/kernel.h>
32#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>
40#include <linux/types.h>
Vishal Verma5d0f6132013-03-04 18:40:58 -070041#include <scsi/sg.h>
Hitoshi Mitake797a7962012-02-07 11:45:33 +090042#include <asm-generic/io-64-nonatomic-lo-hi.h>
43
Keith Busch9d43cf62014-05-13 11:42:02 -060044#define NVME_Q_DEPTH 1024
Matias Bjørlinga4aea562014-11-04 08:20:14 -070045#define NVME_AQ_DEPTH 64
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050046#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
47#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
Keith Busch9d43cf62014-05-13 11:42:02 -060048#define ADMIN_TIMEOUT (admin_timeout * HZ)
Dan McLeran2484f402014-07-01 09:33:32 -060049#define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ)
Keith Busch9d43cf62014-05-13 11:42:02 -060050#define IOD_TIMEOUT (retry_time * HZ)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050051
Keith Busch9d43cf62014-05-13 11:42:02 -060052static unsigned char admin_timeout = 60;
53module_param(admin_timeout, byte, 0644);
54MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050055
Matthew Wilcoxbd676082014-06-03 23:04:30 -040056unsigned char nvme_io_timeout = 30;
57module_param_named(io_timeout, nvme_io_timeout, byte, 0644);
Keith Buschb3550842014-04-04 11:43:36 -060058MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050059
Keith Busch61e4ce02014-05-13 11:42:01 -060060static unsigned char retry_time = 30;
61module_param(retry_time, byte, 0644);
62MODULE_PARM_DESC(retry_time, "time in seconds to retry failed I/O");
63
Dan McLeran2484f402014-07-01 09:33:32 -060064static unsigned char shutdown_timeout = 5;
65module_param(shutdown_timeout, byte, 0644);
66MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
67
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050068static int nvme_major;
69module_param(nvme_major, int, 0);
70
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050071static int use_threaded_interrupts;
72module_param(use_threaded_interrupts, int, 0);
73
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050074static DEFINE_SPINLOCK(dev_list_lock);
75static LIST_HEAD(dev_list);
76static struct task_struct *nvme_thread;
Keith Busch9a6b9452013-12-10 13:10:36 -070077static struct workqueue_struct *nvme_workq;
Dan McLeranb9afca32014-04-07 17:10:11 -060078static wait_queue_head_t nvme_kthread_wait;
Keith Buschf3db22f2014-06-11 11:51:35 -060079static struct notifier_block nvme_nb;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050080
Keith Buschd4b4ff82013-12-10 13:10:37 -070081static void nvme_reset_failed_dev(struct work_struct *ws);
Matias Bjørlinga4aea562014-11-04 08:20:14 -070082static int nvme_process_cq(struct nvme_queue *nvmeq);
Keith Buschd4b4ff82013-12-10 13:10:37 -070083
Keith Busch4d115422013-12-10 13:10:40 -070084struct async_cmd_info {
85 struct kthread_work work;
86 struct kthread_worker *worker;
Matias Bjørlinga4aea562014-11-04 08:20:14 -070087 struct request *req;
Keith Busch4d115422013-12-10 13:10:40 -070088 u32 result;
89 int status;
90 void *ctx;
91};
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050092
93/*
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050094 * An NVM Express queue. Each device has at least two (one for admin
95 * commands and one for I/O commands).
96 */
97struct nvme_queue {
Keith Buschf435c282014-07-07 09:14:42 -060098 struct llist_node node;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050099 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500100 struct nvme_dev *dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -0500101 char irqname[24]; /* nvme4294967295-65535\0 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500102 spinlock_t q_lock;
103 struct nvme_command *sq_cmds;
104 volatile struct nvme_completion *cqes;
105 dma_addr_t sq_dma_addr;
106 dma_addr_t cq_dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500107 u32 __iomem *q_db;
108 u16 q_depth;
109 u16 cq_vector;
110 u16 sq_head;
111 u16 sq_tail;
112 u16 cq_head;
Keith Buschc30341d2013-12-10 13:10:38 -0700113 u16 qid;
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400114 u8 cq_phase;
115 u8 cqe_seen;
Keith Busch4d115422013-12-10 13:10:40 -0700116 struct async_cmd_info cmdinfo;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700117 struct blk_mq_hw_ctx *hctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500118};
119
120/*
121 * Check we didin't inadvertently grow the command struct
122 */
123static inline void _nvme_check_size(void)
124{
125 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
126 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
127 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
128 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
129 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
Vishal Vermaf8ebf842013-03-27 07:13:41 -0400130 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
Keith Buschc30341d2013-12-10 13:10:38 -0700131 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500132 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
133 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
134 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
135 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
Keith Busch6ecec742012-09-26 12:49:27 -0600136 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500137}
138
Keith Buschedd10d32014-04-03 16:45:23 -0600139typedef void (*nvme_completion_fn)(struct nvme_queue *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400140 struct nvme_completion *);
141
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500142struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400143 nvme_completion_fn fn;
144 void *ctx;
Keith Buschc30341d2013-12-10 13:10:38 -0700145 int aborted;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700146 struct nvme_queue *nvmeq;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500147};
148
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700149static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
150 unsigned int hctx_idx)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500151{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700152 struct nvme_dev *dev = data;
153 struct nvme_queue *nvmeq = dev->queues[0];
154
155 WARN_ON(nvmeq->hctx);
156 nvmeq->hctx = hctx;
157 hctx->driver_data = nvmeq;
158 return 0;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500159}
160
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700161static int nvme_admin_init_request(void *data, struct request *req,
162 unsigned int hctx_idx, unsigned int rq_idx,
163 unsigned int numa_node)
Keith Busch22404272013-07-15 15:02:20 -0600164{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700165 struct nvme_dev *dev = data;
166 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
167 struct nvme_queue *nvmeq = dev->queues[0];
168
169 BUG_ON(!nvmeq);
170 cmd->nvmeq = nvmeq;
171 return 0;
Keith Busch22404272013-07-15 15:02:20 -0600172}
173
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700174static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
175 unsigned int hctx_idx)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500176{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700177 struct nvme_dev *dev = data;
178 struct nvme_queue *nvmeq = dev->queues[
179 (hctx_idx % dev->queue_count) + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500180
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700181 if (!nvmeq->hctx)
182 nvmeq->hctx = hctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500183
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700184 /* nvmeq queues are shared between namespaces. We assume here that
185 * blk-mq map the tags so they match up with the nvme queue tags. */
186 WARN_ON(nvmeq->hctx->tags != hctx->tags);
187
188 hctx->driver_data = nvmeq;
189 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500190}
191
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700192static int nvme_init_request(void *data, struct request *req,
193 unsigned int hctx_idx, unsigned int rq_idx,
194 unsigned int numa_node)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500195{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700196 struct nvme_dev *dev = data;
197 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
198 struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1];
199
200 BUG_ON(!nvmeq);
201 cmd->nvmeq = nvmeq;
202 return 0;
203}
204
205static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx,
206 nvme_completion_fn handler)
207{
208 cmd->fn = handler;
209 cmd->ctx = ctx;
210 cmd->aborted = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500211}
212
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400213/* Special values must be less than 0x1000 */
214#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500215#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
216#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
217#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500218
Keith Buschedd10d32014-04-03 16:45:23 -0600219static void special_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400220 struct nvme_completion *cqe)
221{
222 if (ctx == CMD_CTX_CANCELLED)
223 return;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400224 if (ctx == CMD_CTX_COMPLETED) {
Keith Buschedd10d32014-04-03 16:45:23 -0600225 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400226 "completed id %d twice on queue %d\n",
227 cqe->command_id, le16_to_cpup(&cqe->sq_id));
228 return;
229 }
230 if (ctx == CMD_CTX_INVALID) {
Keith Buschedd10d32014-04-03 16:45:23 -0600231 dev_warn(nvmeq->q_dmadev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400232 "invalid id %d completed on queue %d\n",
233 cqe->command_id, le16_to_cpup(&cqe->sq_id));
234 return;
235 }
Keith Buschedd10d32014-04-03 16:45:23 -0600236 dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400237}
238
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700239static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn)
240{
241 void *ctx;
242
243 if (fn)
244 *fn = cmd->fn;
245 ctx = cmd->ctx;
246 cmd->fn = special_completion;
247 cmd->ctx = CMD_CTX_CANCELLED;
248 return ctx;
249}
250
251static void async_req_completion(struct nvme_queue *nvmeq, void *ctx,
252 struct nvme_completion *cqe)
253{
254 struct request *req = ctx;
255
256 u32 result = le32_to_cpup(&cqe->result);
257 u16 status = le16_to_cpup(&cqe->status) >> 1;
258
259 if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ)
260 ++nvmeq->dev->event_limit;
261 if (status == NVME_SC_SUCCESS)
262 dev_warn(nvmeq->q_dmadev,
263 "async event result %08x\n", result);
264
265 blk_put_request(req);
266}
267
268static void abort_completion(struct nvme_queue *nvmeq, void *ctx,
269 struct nvme_completion *cqe)
270{
271 struct request *req = ctx;
272
273 u16 status = le16_to_cpup(&cqe->status) >> 1;
274 u32 result = le32_to_cpup(&cqe->result);
275
276 blk_put_request(req);
277
278 dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result);
279 ++nvmeq->dev->abort_limit;
280}
281
Keith Buschedd10d32014-04-03 16:45:23 -0600282static void async_completion(struct nvme_queue *nvmeq, void *ctx,
Keith Busch4d115422013-12-10 13:10:40 -0700283 struct nvme_completion *cqe)
284{
285 struct async_cmd_info *cmdinfo = ctx;
286 cmdinfo->result = le32_to_cpup(&cqe->result);
287 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
288 queue_kthread_work(cmdinfo->worker, &cmdinfo->work);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700289 blk_put_request(cmdinfo->req);
290}
291
292static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq,
293 unsigned int tag)
294{
295 struct blk_mq_hw_ctx *hctx = nvmeq->hctx;
296 struct request *req = blk_mq_tag_to_rq(hctx->tags, tag);
297
298 return blk_mq_rq_to_pdu(req);
Keith Busch4d115422013-12-10 13:10:40 -0700299}
300
Matthew Wilcox184d2942011-05-11 21:36:38 -0400301/*
302 * Called with local interrupts disabled and the q_lock held. May not sleep.
303 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700304static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400305 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500306{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700307 struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400308 void *ctx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700309 if (tag >= nvmeq->q_depth) {
310 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500311 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400312 }
Keith Busch859361a2012-08-02 14:05:59 -0600313 if (fn)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700314 *fn = cmd->fn;
315 ctx = cmd->ctx;
316 cmd->fn = special_completion;
317 cmd->ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400318 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500319}
320
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500321/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400322 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500323 * @nvmeq: The queue to use
324 * @cmd: The command to send
325 *
326 * Safe to use from interrupt context
327 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700328static int __nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500329{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700330 u16 tail = nvmeq->sq_tail;
331
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500332 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500333 if (++tail == nvmeq->q_depth)
334 tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500335 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500336 nvmeq->sq_tail = tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500337
338 return 0;
339}
340
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700341static int nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
342{
343 unsigned long flags;
344 int ret;
345 spin_lock_irqsave(&nvmeq->q_lock, flags);
346 ret = __nvme_submit_cmd(nvmeq, cmd);
347 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
348 return ret;
349}
350
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500351static __le64 **iod_list(struct nvme_iod *iod)
352{
353 return ((void *)iod) + iod->offset;
354}
355
356/*
357 * Will slightly overestimate the number of pages needed. This is OK
358 * as it only leads to a small amount of wasted memory for the lifetime of
359 * the I/O.
360 */
Keith Busch1d090622014-06-23 11:34:01 -0600361static int nvme_npages(unsigned size, struct nvme_dev *dev)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500362{
Keith Busch1d090622014-06-23 11:34:01 -0600363 unsigned nprps = DIV_ROUND_UP(size + dev->page_size, dev->page_size);
364 return DIV_ROUND_UP(8 * nprps, dev->page_size - 8);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500365}
366
367static struct nvme_iod *
Keith Busch1d090622014-06-23 11:34:01 -0600368nvme_alloc_iod(unsigned nseg, unsigned nbytes, struct nvme_dev *dev, gfp_t gfp)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500369{
370 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
Keith Busch1d090622014-06-23 11:34:01 -0600371 sizeof(__le64 *) * nvme_npages(nbytes, dev) +
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500372 sizeof(struct scatterlist) * nseg, gfp);
373
374 if (iod) {
375 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
376 iod->npages = -1;
377 iod->length = nbytes;
Keith Busch2b196032012-11-06 11:59:23 -0700378 iod->nents = 0;
Keith Buschedd10d32014-04-03 16:45:23 -0600379 iod->first_dma = 0ULL;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500380 }
381
382 return iod;
383}
384
Vishal Verma5d0f6132013-03-04 18:40:58 -0700385void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500386{
Keith Busch1d090622014-06-23 11:34:01 -0600387 const int last_prp = dev->page_size / 8 - 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500388 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500389 __le64 **list = iod_list(iod);
390 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500391
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500392 if (iod->npages == 0)
393 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
394 for (i = 0; i < iod->npages; i++) {
395 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500396 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500397 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500398 prp_dma = next_prp_dma;
399 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500400 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500401}
402
Keith Buschb4ff9c82014-08-29 09:06:12 -0600403static int nvme_error_status(u16 status)
404{
405 switch (status & 0x7ff) {
406 case NVME_SC_SUCCESS:
407 return 0;
408 case NVME_SC_CAP_EXCEEDED:
409 return -ENOSPC;
410 default:
411 return -EIO;
412 }
413}
414
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700415static void req_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500416 struct nvme_completion *cqe)
417{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500418 struct nvme_iod *iod = ctx;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700419 struct request *req = iod->private;
420 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
421
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500422 u16 status = le16_to_cpup(&cqe->status) >> 1;
423
Keith Buschedd10d32014-04-03 16:45:23 -0600424 if (unlikely(status)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700425 if (!(status & NVME_SC_DNR || blk_noretry_request(req))
426 && (jiffies - req->start_time) < req->timeout) {
427 blk_mq_requeue_request(req);
428 blk_mq_kick_requeue_list(req->q);
Keith Buschedd10d32014-04-03 16:45:23 -0600429 return;
430 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700431 req->errors = nvme_error_status(status);
432 } else
433 req->errors = 0;
434
435 if (cmd_rq->aborted)
436 dev_warn(&nvmeq->dev->pci_dev->dev,
437 "completing aborted command with status:%04x\n",
438 status);
439
440 if (iod->nents)
441 dma_unmap_sg(&nvmeq->dev->pci_dev->dev, iod->sg, iod->nents,
442 rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Keith Buschedd10d32014-04-03 16:45:23 -0600443 nvme_free_iod(nvmeq->dev, iod);
Keith Busch3291fa52014-04-28 12:30:52 -0600444
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700445 blk_mq_complete_request(req);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500446}
447
Matthew Wilcox184d2942011-05-11 21:36:38 -0400448/* length is in bytes. gfp flags indicates whether we may sleep. */
Keith Buschedd10d32014-04-03 16:45:23 -0600449int nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod, int total_len,
450 gfp_t gfp)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500451{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500452 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500453 int length = total_len;
454 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500455 int dma_len = sg_dma_len(sg);
456 u64 dma_addr = sg_dma_address(sg);
457 int offset = offset_in_page(dma_addr);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500458 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500459 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500460 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500461 int nprps, i;
Keith Busch1d090622014-06-23 11:34:01 -0600462 u32 page_size = dev->page_size;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500463
Keith Busch1d090622014-06-23 11:34:01 -0600464 length -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500465 if (length <= 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500466 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500467
Keith Busch1d090622014-06-23 11:34:01 -0600468 dma_len -= (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500469 if (dma_len) {
Keith Busch1d090622014-06-23 11:34:01 -0600470 dma_addr += (page_size - offset);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500471 } else {
472 sg = sg_next(sg);
473 dma_addr = sg_dma_address(sg);
474 dma_len = sg_dma_len(sg);
475 }
476
Keith Busch1d090622014-06-23 11:34:01 -0600477 if (length <= page_size) {
Keith Buschedd10d32014-04-03 16:45:23 -0600478 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500479 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500480 }
481
Keith Busch1d090622014-06-23 11:34:01 -0600482 nprps = DIV_ROUND_UP(length, page_size);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500483 if (nprps <= (256 / 8)) {
484 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500485 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500486 } else {
487 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500488 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500489 }
490
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400491 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
492 if (!prp_list) {
Keith Buschedd10d32014-04-03 16:45:23 -0600493 iod->first_dma = dma_addr;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500494 iod->npages = -1;
Keith Busch1d090622014-06-23 11:34:01 -0600495 return (total_len - length) + page_size;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400496 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500497 list[0] = prp_list;
498 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500499 i = 0;
500 for (;;) {
Keith Busch1d090622014-06-23 11:34:01 -0600501 if (i == page_size >> 3) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500502 __le64 *old_prp_list = prp_list;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400503 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500504 if (!prp_list)
505 return total_len - length;
506 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400507 prp_list[0] = old_prp_list[i - 1];
508 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
509 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500510 }
511 prp_list[i++] = cpu_to_le64(dma_addr);
Keith Busch1d090622014-06-23 11:34:01 -0600512 dma_len -= page_size;
513 dma_addr += page_size;
514 length -= page_size;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500515 if (length <= 0)
516 break;
517 if (dma_len > 0)
518 continue;
519 BUG_ON(dma_len < 0);
520 sg = sg_next(sg);
521 dma_addr = sg_dma_address(sg);
522 dma_len = sg_dma_len(sg);
523 }
524
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500525 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500526}
527
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700528/*
529 * We reuse the small pool to allocate the 16-byte range here as it is not
530 * worth having a special pool for these or additional cases to handle freeing
531 * the iod.
532 */
533static void nvme_submit_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns,
534 struct request *req, struct nvme_iod *iod)
Keith Busch0e5e4f02012-11-09 16:33:05 -0700535{
Keith Buschedd10d32014-04-03 16:45:23 -0600536 struct nvme_dsm_range *range =
537 (struct nvme_dsm_range *)iod_list(iod)[0];
Keith Busch0e5e4f02012-11-09 16:33:05 -0700538 struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
539
Keith Busch0e5e4f02012-11-09 16:33:05 -0700540 range->cattr = cpu_to_le32(0);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700541 range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift);
542 range->slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
Keith Busch0e5e4f02012-11-09 16:33:05 -0700543
544 memset(cmnd, 0, sizeof(*cmnd));
545 cmnd->dsm.opcode = nvme_cmd_dsm;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700546 cmnd->dsm.command_id = req->tag;
Keith Busch0e5e4f02012-11-09 16:33:05 -0700547 cmnd->dsm.nsid = cpu_to_le32(ns->ns_id);
548 cmnd->dsm.prp1 = cpu_to_le64(iod->first_dma);
549 cmnd->dsm.nr = 0;
550 cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
551
552 if (++nvmeq->sq_tail == nvmeq->q_depth)
553 nvmeq->sq_tail = 0;
554 writel(nvmeq->sq_tail, nvmeq->q_db);
Keith Busch0e5e4f02012-11-09 16:33:05 -0700555}
556
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700557static void nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500558 int cmdid)
559{
560 struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
561
562 memset(cmnd, 0, sizeof(*cmnd));
563 cmnd->common.opcode = nvme_cmd_flush;
564 cmnd->common.command_id = cmdid;
565 cmnd->common.nsid = cpu_to_le32(ns->ns_id);
566
567 if (++nvmeq->sq_tail == nvmeq->q_depth)
568 nvmeq->sq_tail = 0;
569 writel(nvmeq->sq_tail, nvmeq->q_db);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500570}
571
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700572static int nvme_submit_iod(struct nvme_queue *nvmeq, struct nvme_iod *iod,
573 struct nvme_ns *ns)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500574{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700575 struct request *req = iod->private;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500576 struct nvme_command *cmnd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700577 u16 control = 0;
578 u32 dsmgmt = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500579
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700580 if (req->cmd_flags & REQ_FUA)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500581 control |= NVME_RW_FUA;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700582 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500583 control |= NVME_RW_LR;
584
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700585 if (req->cmd_flags & REQ_RAHEAD)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500586 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
587
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500588 cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
Matthew Wilcoxb8deb622011-01-26 10:08:25 -0500589 memset(cmnd, 0, sizeof(*cmnd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500590
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700591 cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
592 cmnd->rw.command_id = req->tag;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500593 cmnd->rw.nsid = cpu_to_le32(ns->ns_id);
Keith Buschedd10d32014-04-03 16:45:23 -0600594 cmnd->rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
595 cmnd->rw.prp2 = cpu_to_le64(iod->first_dma);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700596 cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
597 cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500598 cmnd->rw.control = cpu_to_le16(control);
599 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500600
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500601 if (++nvmeq->sq_tail == nvmeq->q_depth)
602 nvmeq->sq_tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500603 writel(nvmeq->sq_tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500604
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500605 return 0;
Keith Buschedd10d32014-04-03 16:45:23 -0600606}
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500607
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700608static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
609 const struct blk_mq_queue_data *bd)
Keith Busch53562be2014-04-29 11:41:29 -0600610{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700611 struct nvme_ns *ns = hctx->queue->queuedata;
612 struct nvme_queue *nvmeq = hctx->driver_data;
613 struct request *req = bd->rq;
614 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
Keith Buschedd10d32014-04-03 16:45:23 -0600615 struct nvme_iod *iod;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700616 int psegs = req->nr_phys_segments;
617 int result = BLK_MQ_RQ_QUEUE_BUSY;
618 enum dma_data_direction dma_dir;
619 unsigned size = !(req->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(req) :
Keith Busch9dbbfab2014-10-06 15:23:06 -0600620 sizeof(struct nvme_dsm_range);
Keith Buschedd10d32014-04-03 16:45:23 -0600621
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700622 /*
623 * Requeued IO has already been prepped
624 */
625 iod = req->special;
626 if (iod)
627 goto submit_iod;
Keith Buschedd10d32014-04-03 16:45:23 -0600628
Keith Busch9dbbfab2014-10-06 15:23:06 -0600629 iod = nvme_alloc_iod(psegs, size, ns->dev, GFP_ATOMIC);
Keith Buschedd10d32014-04-03 16:45:23 -0600630 if (!iod)
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700631 return result;
Keith Buschedd10d32014-04-03 16:45:23 -0600632
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700633 iod->private = req;
634 req->special = iod;
635
636 nvme_set_info(cmd, iod, req_completion);
637
638 if (req->cmd_flags & REQ_DISCARD) {
Keith Buschedd10d32014-04-03 16:45:23 -0600639 void *range;
640 /*
641 * We reuse the small pool to allocate the 16-byte range here
642 * as it is not worth having a special pool for these or
643 * additional cases to handle freeing the iod.
644 */
645 range = dma_pool_alloc(nvmeq->dev->prp_small_pool,
646 GFP_ATOMIC,
647 &iod->first_dma);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700648 if (!range)
649 goto finish_cmd;
Keith Buschedd10d32014-04-03 16:45:23 -0600650 iod_list(iod)[0] = (__le64 *)range;
651 iod->npages = 0;
652 } else if (psegs) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700653 dma_dir = rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
Keith Buschedd10d32014-04-03 16:45:23 -0600654
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700655 sg_init_table(iod->sg, psegs);
656 iod->nents = blk_rq_map_sg(req->q, req, iod->sg);
657 if (!iod->nents) {
658 result = BLK_MQ_RQ_QUEUE_ERROR;
659 goto finish_cmd;
660 }
661
662 if (!dma_map_sg(nvmeq->q_dmadev, iod->sg, iod->nents, dma_dir))
663 goto finish_cmd;
664
665 if (blk_rq_bytes(req) != nvme_setup_prps(nvmeq->dev, iod,
666 blk_rq_bytes(req), GFP_ATOMIC))
667 goto finish_cmd;
668 }
669
670 blk_mq_start_request(req);
671
672 submit_iod:
673 spin_lock_irq(&nvmeq->q_lock);
674 if (req->cmd_flags & REQ_DISCARD)
675 nvme_submit_discard(nvmeq, ns, req, iod);
676 else if (req->cmd_flags & REQ_FLUSH)
677 nvme_submit_flush(nvmeq, ns, req->tag);
678 else
679 nvme_submit_iod(nvmeq, iod, ns);
680
681 nvme_process_cq(nvmeq);
682 spin_unlock_irq(&nvmeq->q_lock);
683 return BLK_MQ_RQ_QUEUE_OK;
684
685 finish_cmd:
686 nvme_finish_cmd(nvmeq, req->tag, NULL);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500687 nvme_free_iod(nvmeq->dev, iod);
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500688 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500689}
690
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400691static int nvme_process_cq(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500692{
Matthew Wilcox82123462011-01-20 13:24:06 -0500693 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500694
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500695 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500696 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500697
698 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400699 void *ctx;
700 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500701 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -0500702 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500703 break;
704 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
705 if (++head == nvmeq->q_depth) {
706 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500707 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500708 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700709 ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn);
Keith Buschedd10d32014-04-03 16:45:23 -0600710 fn(nvmeq, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500711 }
712
713 /* If the controller ignores the cq head doorbell and continuously
714 * writes to the queue, it is theoretically possible to wrap around
715 * the queue twice and mistakenly return IRQ_NONE. Linux only
716 * requires that 0.1% of your interrupts are handled, so this isn't
717 * a big problem.
718 */
Matthew Wilcox82123462011-01-20 13:24:06 -0500719 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400720 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500721
Haiyan Hub80d5cc2013-09-10 11:25:37 +0800722 writel(head, nvmeq->q_db + nvmeq->dev->db_stride);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500723 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500724 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500725
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400726 nvmeq->cqe_seen = 1;
727 return 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500728}
729
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700730/* Admin queue isn't initialized as a request queue. If at some point this
731 * happens anyway, make sure to notify the user */
732static int nvme_admin_queue_rq(struct blk_mq_hw_ctx *hctx,
733 const struct blk_mq_queue_data *bd)
Matthew Wilcox7d822452013-06-24 12:03:57 -0400734{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700735 WARN_ON_ONCE(1);
736 return BLK_MQ_RQ_QUEUE_ERROR;
Matthew Wilcox7d822452013-06-24 12:03:57 -0400737}
738
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500739static irqreturn_t nvme_irq(int irq, void *data)
740{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500741 irqreturn_t result;
742 struct nvme_queue *nvmeq = data;
743 spin_lock(&nvmeq->q_lock);
Matthew Wilcoxe9539f42013-06-24 11:47:34 -0400744 nvme_process_cq(nvmeq);
745 result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE;
746 nvmeq->cqe_seen = 0;
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500747 spin_unlock(&nvmeq->q_lock);
748 return result;
749}
750
751static irqreturn_t nvme_irq_check(int irq, void *data)
752{
753 struct nvme_queue *nvmeq = data;
754 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
755 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
756 return IRQ_NONE;
757 return IRQ_WAKE_THREAD;
758}
759
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700760static void nvme_abort_cmd_info(struct nvme_queue *nvmeq, struct nvme_cmd_info *
761 cmd_info)
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500762{
763 spin_lock_irq(&nvmeq->q_lock);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700764 cancel_cmd_info(cmd_info, NULL);
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500765 spin_unlock_irq(&nvmeq->q_lock);
766}
767
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400768struct sync_cmd_info {
769 struct task_struct *task;
770 u32 result;
771 int status;
772};
773
Keith Buschedd10d32014-04-03 16:45:23 -0600774static void sync_completion(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400775 struct nvme_completion *cqe)
776{
777 struct sync_cmd_info *cmdinfo = ctx;
778 cmdinfo->result = le32_to_cpup(&cqe->result);
779 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
780 wake_up_process(cmdinfo->task);
781}
782
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500783/*
784 * Returns 0 on success. If the result is negative, it's a Linux error code;
785 * if the result is positive, it's an NVM Express status code
786 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700787static int nvme_submit_sync_cmd(struct request *req, struct nvme_command *cmd,
Vishal Verma5d0f6132013-03-04 18:40:58 -0700788 u32 *result, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500789{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700790 int ret;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500791 struct sync_cmd_info cmdinfo;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700792 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
793 struct nvme_queue *nvmeq = cmd_rq->nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500794
795 cmdinfo.task = current;
796 cmdinfo.status = -EINTR;
797
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700798 cmd->common.command_id = req->tag;
799
800 nvme_set_info(cmd_rq, &cmdinfo, sync_completion);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500801
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500802 set_current_state(TASK_KILLABLE);
Keith Busch4f5099a2014-03-03 16:39:13 -0700803 ret = nvme_submit_cmd(nvmeq, cmd);
804 if (ret) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700805 nvme_finish_cmd(nvmeq, req->tag, NULL);
Keith Busch4f5099a2014-03-03 16:39:13 -0700806 set_current_state(TASK_RUNNING);
Keith Busch4f5099a2014-03-03 16:39:13 -0700807 }
Keith Busch78f8d252013-04-19 14:11:06 -0600808 schedule_timeout(timeout);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500809
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500810 if (cmdinfo.status == -EINTR) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700811 nvme_abort_cmd_info(nvmeq, blk_mq_rq_to_pdu(req));
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500812 return -EINTR;
813 }
814
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500815 if (result)
816 *result = cmdinfo.result;
817
818 return cmdinfo.status;
819}
820
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700821static int nvme_submit_async_admin_req(struct nvme_dev *dev)
822{
823 struct nvme_queue *nvmeq = dev->queues[0];
824 struct nvme_command c;
825 struct nvme_cmd_info *cmd_info;
826 struct request *req;
827
828 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false);
Dan Carpenter9f173b32014-11-05 23:39:09 +0300829 if (IS_ERR(req))
830 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700831
832 cmd_info = blk_mq_rq_to_pdu(req);
833 nvme_set_info(cmd_info, req, async_req_completion);
834
835 memset(&c, 0, sizeof(c));
836 c.common.opcode = nvme_admin_async_event;
837 c.common.command_id = req->tag;
838
839 return __nvme_submit_cmd(nvmeq, &c);
840}
841
842static int nvme_submit_admin_async_cmd(struct nvme_dev *dev,
Keith Busch4d115422013-12-10 13:10:40 -0700843 struct nvme_command *cmd,
844 struct async_cmd_info *cmdinfo, unsigned timeout)
845{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700846 struct nvme_queue *nvmeq = dev->queues[0];
847 struct request *req;
848 struct nvme_cmd_info *cmd_rq;
Keith Busch4d115422013-12-10 13:10:40 -0700849
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700850 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false);
Dan Carpenter9f173b32014-11-05 23:39:09 +0300851 if (IS_ERR(req))
852 return PTR_ERR(req);
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700853
854 req->timeout = timeout;
855 cmd_rq = blk_mq_rq_to_pdu(req);
856 cmdinfo->req = req;
857 nvme_set_info(cmd_rq, cmdinfo, async_completion);
Keith Busch4d115422013-12-10 13:10:40 -0700858 cmdinfo->status = -EINTR;
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700859
860 cmd->common.command_id = req->tag;
861
Keith Busch4f5099a2014-03-03 16:39:13 -0700862 return nvme_submit_cmd(nvmeq, cmd);
Keith Busch4d115422013-12-10 13:10:40 -0700863}
864
kbuild test robota64e6bb2014-11-05 18:47:07 +0800865static int __nvme_submit_admin_cmd(struct nvme_dev *dev, struct nvme_command *cmd,
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700866 u32 *result, unsigned timeout)
867{
868 int res;
869 struct request *req;
870
871 req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false);
872 if (!req)
873 return -ENOMEM;
874 res = nvme_submit_sync_cmd(req, cmd, result, timeout);
875 blk_put_request(req);
876 return res;
877}
878
Vishal Verma5d0f6132013-03-04 18:40:58 -0700879int nvme_submit_admin_cmd(struct nvme_dev *dev, struct nvme_command *cmd,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500880 u32 *result)
881{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700882 return __nvme_submit_admin_cmd(dev, cmd, result, ADMIN_TIMEOUT);
Keith Busch4f5099a2014-03-03 16:39:13 -0700883}
884
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700885int nvme_submit_io_cmd(struct nvme_dev *dev, struct nvme_ns *ns,
886 struct nvme_command *cmd, u32 *result)
Keith Busch4f5099a2014-03-03 16:39:13 -0700887{
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700888 int res;
889 struct request *req;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500890
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700891 req = blk_mq_alloc_request(ns->queue, WRITE, (GFP_KERNEL|__GFP_WAIT),
892 false);
893 if (!req)
894 return -ENOMEM;
895 res = nvme_submit_sync_cmd(req, cmd, result, NVME_IO_TIMEOUT);
896 blk_put_request(req);
897 return res;
Keith Busch4d115422013-12-10 13:10:40 -0700898}
899
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500900static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
901{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500902 struct nvme_command c;
903
904 memset(&c, 0, sizeof(c));
905 c.delete_queue.opcode = opcode;
906 c.delete_queue.qid = cpu_to_le16(id);
907
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700908 return nvme_submit_admin_cmd(dev, &c, NULL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500909}
910
911static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
912 struct nvme_queue *nvmeq)
913{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500914 struct nvme_command c;
915 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
916
917 memset(&c, 0, sizeof(c));
918 c.create_cq.opcode = nvme_admin_create_cq;
919 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
920 c.create_cq.cqid = cpu_to_le16(qid);
921 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
922 c.create_cq.cq_flags = cpu_to_le16(flags);
923 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
924
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700925 return nvme_submit_admin_cmd(dev, &c, NULL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500926}
927
928static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
929 struct nvme_queue *nvmeq)
930{
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500931 struct nvme_command c;
932 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
933
934 memset(&c, 0, sizeof(c));
935 c.create_sq.opcode = nvme_admin_create_sq;
936 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
937 c.create_sq.sqid = cpu_to_le16(qid);
938 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
939 c.create_sq.sq_flags = cpu_to_le16(flags);
940 c.create_sq.cqid = cpu_to_le16(qid);
941
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700942 return nvme_submit_admin_cmd(dev, &c, NULL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500943}
944
945static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
946{
947 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
948}
949
950static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
951{
952 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
953}
954
Vishal Verma5d0f6132013-03-04 18:40:58 -0700955int nvme_identify(struct nvme_dev *dev, unsigned nsid, unsigned cns,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400956 dma_addr_t dma_addr)
957{
958 struct nvme_command c;
959
960 memset(&c, 0, sizeof(c));
961 c.identify.opcode = nvme_admin_identify;
962 c.identify.nsid = cpu_to_le32(nsid);
963 c.identify.prp1 = cpu_to_le64(dma_addr);
964 c.identify.cns = cpu_to_le32(cns);
965
966 return nvme_submit_admin_cmd(dev, &c, NULL);
967}
968
Vishal Verma5d0f6132013-03-04 18:40:58 -0700969int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid,
Keith Busch08df1e02012-09-21 10:52:13 -0600970 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400971{
972 struct nvme_command c;
973
974 memset(&c, 0, sizeof(c));
975 c.features.opcode = nvme_admin_get_features;
Keith Buscha42cecc2012-07-25 16:06:38 -0600976 c.features.nsid = cpu_to_le32(nsid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400977 c.features.prp1 = cpu_to_le64(dma_addr);
978 c.features.fid = cpu_to_le32(fid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400979
Keith Busch08df1e02012-09-21 10:52:13 -0600980 return nvme_submit_admin_cmd(dev, &c, result);
Matthew Wilcoxdf348132012-01-11 07:29:56 -0700981}
982
Vishal Verma5d0f6132013-03-04 18:40:58 -0700983int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11,
984 dma_addr_t dma_addr, u32 *result)
Matthew Wilcoxdf348132012-01-11 07:29:56 -0700985{
986 struct nvme_command c;
987
988 memset(&c, 0, sizeof(c));
989 c.features.opcode = nvme_admin_set_features;
990 c.features.prp1 = cpu_to_le64(dma_addr);
991 c.features.fid = cpu_to_le32(fid);
992 c.features.dword11 = cpu_to_le32(dword11);
993
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400994 return nvme_submit_admin_cmd(dev, &c, result);
995}
996
Matthew Wilcoxa09115b2012-08-07 15:56:23 -0400997/**
Matias Bjørlinga4aea562014-11-04 08:20:14 -0700998 * nvme_abort_req - Attempt aborting a request
Keith Buschc30341d2013-12-10 13:10:38 -0700999 *
1000 * Schedule controller reset if the command was already aborted once before and
1001 * still hasn't been returned to the driver, or if this is the admin queue.
1002 */
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001003static void nvme_abort_req(struct request *req)
Keith Buschc30341d2013-12-10 13:10:38 -07001004{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001005 struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req);
1006 struct nvme_queue *nvmeq = cmd_rq->nvmeq;
Keith Buschc30341d2013-12-10 13:10:38 -07001007 struct nvme_dev *dev = nvmeq->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001008 struct request *abort_req;
1009 struct nvme_cmd_info *abort_cmd;
1010 struct nvme_command cmd;
Keith Buschc30341d2013-12-10 13:10:38 -07001011
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001012 if (!nvmeq->qid || cmd_rq->aborted) {
Keith Buschc30341d2013-12-10 13:10:38 -07001013 if (work_busy(&dev->reset_work))
1014 return;
1015 list_del_init(&dev->node);
1016 dev_warn(&dev->pci_dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001017 "I/O %d QID %d timeout, reset controller\n",
1018 req->tag, nvmeq->qid);
Tejun Heo9ca97372014-03-07 10:24:49 -05001019 dev->reset_workfn = nvme_reset_failed_dev;
Keith Buschc30341d2013-12-10 13:10:38 -07001020 queue_work(nvme_workq, &dev->reset_work);
1021 return;
1022 }
1023
1024 if (!dev->abort_limit)
1025 return;
1026
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001027 abort_req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC,
1028 false);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001029 if (IS_ERR(abort_req))
Keith Buschc30341d2013-12-10 13:10:38 -07001030 return;
1031
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001032 abort_cmd = blk_mq_rq_to_pdu(abort_req);
1033 nvme_set_info(abort_cmd, abort_req, abort_completion);
1034
Keith Buschc30341d2013-12-10 13:10:38 -07001035 memset(&cmd, 0, sizeof(cmd));
1036 cmd.abort.opcode = nvme_admin_abort_cmd;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001037 cmd.abort.cid = req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001038 cmd.abort.sqid = cpu_to_le16(nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001039 cmd.abort.command_id = abort_req->tag;
Keith Buschc30341d2013-12-10 13:10:38 -07001040
1041 --dev->abort_limit;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001042 cmd_rq->aborted = 1;
Keith Buschc30341d2013-12-10 13:10:38 -07001043
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001044 dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag,
Keith Buschc30341d2013-12-10 13:10:38 -07001045 nvmeq->qid);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001046 if (nvme_submit_cmd(dev->queues[0], &cmd) < 0) {
1047 dev_warn(nvmeq->q_dmadev,
1048 "Could not abort I/O %d QID %d",
1049 req->tag, nvmeq->qid);
1050 blk_put_request(req);
1051 }
Keith Buschc30341d2013-12-10 13:10:38 -07001052}
1053
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001054static void nvme_cancel_queue_ios(struct blk_mq_hw_ctx *hctx,
1055 struct request *req, void *data, bool reserved)
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001056{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001057 struct nvme_queue *nvmeq = data;
1058 void *ctx;
1059 nvme_completion_fn fn;
1060 struct nvme_cmd_info *cmd;
1061 static struct nvme_completion cqe = {
1062 .status = cpu_to_le16(NVME_SC_ABORT_REQ << 1),
1063 };
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001064
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001065 cmd = blk_mq_rq_to_pdu(req);
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001066
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001067 if (cmd->ctx == CMD_CTX_CANCELLED)
1068 return;
1069
1070 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n",
1071 req->tag, nvmeq->qid);
1072 ctx = cancel_cmd_info(cmd, &fn);
1073 fn(nvmeq, ctx, &cqe);
1074}
1075
1076static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved)
1077{
1078 struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req);
1079 struct nvme_queue *nvmeq = cmd->nvmeq;
1080
1081 dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag,
1082 nvmeq->qid);
1083 if (nvmeq->dev->initialized)
1084 nvme_abort_req(req);
1085
1086 /*
1087 * The aborted req will be completed on receiving the abort req.
1088 * We enable the timer again. If hit twice, it'll cause a device reset,
1089 * as the device then is in a faulty state.
1090 */
1091 return BLK_EH_RESET_TIMER;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001092}
1093
Keith Buschf435c282014-07-07 09:14:42 -06001094static void nvme_free_queue(struct nvme_queue *nvmeq)
Matthew Wilcox9e866772012-08-03 13:55:56 -04001095{
1096 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1097 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
1098 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
1099 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1100 kfree(nvmeq);
1101}
1102
Keith Buscha1a5ef92013-12-16 13:50:00 -05001103static void nvme_free_queues(struct nvme_dev *dev, int lowest)
Keith Busch22404272013-07-15 15:02:20 -06001104{
Keith Buschf435c282014-07-07 09:14:42 -06001105 LLIST_HEAD(q_list);
1106 struct nvme_queue *nvmeq, *next;
1107 struct llist_node *entry;
Keith Busch22404272013-07-15 15:02:20 -06001108 int i;
1109
Keith Buscha1a5ef92013-12-16 13:50:00 -05001110 for (i = dev->queue_count - 1; i >= lowest; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001111 struct nvme_queue *nvmeq = dev->queues[i];
Keith Buschf435c282014-07-07 09:14:42 -06001112 llist_add(&nvmeq->node, &q_list);
Keith Busch22404272013-07-15 15:02:20 -06001113 dev->queue_count--;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001114 dev->queues[i] = NULL;
Keith Busch22404272013-07-15 15:02:20 -06001115 }
Keith Buschf435c282014-07-07 09:14:42 -06001116 synchronize_rcu();
1117 entry = llist_del_all(&q_list);
1118 llist_for_each_entry_safe(nvmeq, next, entry, node)
1119 nvme_free_queue(nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001120}
1121
Keith Busch4d115422013-12-10 13:10:40 -07001122/**
1123 * nvme_suspend_queue - put queue into suspended state
1124 * @nvmeq - queue to suspend
Keith Busch4d115422013-12-10 13:10:40 -07001125 */
1126static int nvme_suspend_queue(struct nvme_queue *nvmeq)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001127{
Keith Busch4d115422013-12-10 13:10:40 -07001128 int vector = nvmeq->dev->entry[nvmeq->cq_vector].vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001129
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001130 spin_lock_irq(&nvmeq->q_lock);
Keith Busch42f61422014-03-24 10:46:25 -06001131 nvmeq->dev->online_queues--;
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001132 spin_unlock_irq(&nvmeq->q_lock);
1133
Matthew Wilcoxaba20802011-03-27 08:52:06 -04001134 irq_set_affinity_hint(vector, NULL);
1135 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001136
Keith Busch4d115422013-12-10 13:10:40 -07001137 return 0;
1138}
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001139
Keith Busch4d115422013-12-10 13:10:40 -07001140static void nvme_clear_queue(struct nvme_queue *nvmeq)
1141{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001142 struct blk_mq_hw_ctx *hctx = nvmeq->hctx;
1143
Keith Busch22404272013-07-15 15:02:20 -06001144 spin_lock_irq(&nvmeq->q_lock);
1145 nvme_process_cq(nvmeq);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001146 if (hctx && hctx->tags)
1147 blk_mq_tag_busy_iter(hctx, nvme_cancel_queue_ios, nvmeq);
Keith Busch22404272013-07-15 15:02:20 -06001148 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001149}
1150
Keith Busch4d115422013-12-10 13:10:40 -07001151static void nvme_disable_queue(struct nvme_dev *dev, int qid)
1152{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001153 struct nvme_queue *nvmeq = dev->queues[qid];
Keith Busch4d115422013-12-10 13:10:40 -07001154
1155 if (!nvmeq)
1156 return;
1157 if (nvme_suspend_queue(nvmeq))
1158 return;
1159
Keith Busch0e53d182013-12-10 13:10:39 -07001160 /* Don't tell the adapter to delete the admin queue.
1161 * Don't tell a removed adapter to delete IO queues. */
1162 if (qid && readl(&dev->bar->csts) != -1) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001163 adapter_delete_sq(dev, qid);
1164 adapter_delete_cq(dev, qid);
1165 }
Keith Busch4d115422013-12-10 13:10:40 -07001166 nvme_clear_queue(nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001167}
1168
1169static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
1170 int depth, int vector)
1171{
1172 struct device *dmadev = &dev->pci_dev->dev;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001173 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001174 if (!nvmeq)
1175 return NULL;
1176
Joe Perches4d51abf2014-06-15 13:37:33 -07001177 nvmeq->cqes = dma_zalloc_coherent(dmadev, CQ_SIZE(depth),
1178 &nvmeq->cq_dma_addr, GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001179 if (!nvmeq->cqes)
1180 goto free_nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001181
1182 nvmeq->sq_cmds = dma_alloc_coherent(dmadev, SQ_SIZE(depth),
1183 &nvmeq->sq_dma_addr, GFP_KERNEL);
1184 if (!nvmeq->sq_cmds)
1185 goto free_cqdma;
1186
1187 nvmeq->q_dmadev = dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -05001188 nvmeq->dev = dev;
Matthew Wilcox3193f072014-01-27 15:57:22 -05001189 snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d",
1190 dev->instance, qid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001191 spin_lock_init(&nvmeq->q_lock);
1192 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -05001193 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001194 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001195 nvmeq->q_depth = depth;
1196 nvmeq->cq_vector = vector;
Keith Buschc30341d2013-12-10 13:10:38 -07001197 nvmeq->qid = qid;
Keith Busch22404272013-07-15 15:02:20 -06001198 dev->queue_count++;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001199 dev->queues[qid] = nvmeq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001200
1201 return nvmeq;
1202
1203 free_cqdma:
Keith Busch68b8eca2013-05-01 13:07:47 -06001204 dma_free_coherent(dmadev, CQ_SIZE(depth), (void *)nvmeq->cqes,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001205 nvmeq->cq_dma_addr);
1206 free_nvmeq:
1207 kfree(nvmeq);
1208 return NULL;
1209}
1210
Matthew Wilcox30010822011-01-20 09:10:15 -05001211static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
1212 const char *name)
1213{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001214 if (use_threaded_interrupts)
1215 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001216 nvme_irq_check, nvme_irq, IRQF_SHARED,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -05001217 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001218 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
Michael Opdenacker481e5ba2013-10-12 06:23:29 +02001219 IRQF_SHARED, name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -05001220}
1221
Keith Busch22404272013-07-15 15:02:20 -06001222static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001223{
Keith Busch22404272013-07-15 15:02:20 -06001224 struct nvme_dev *dev = nvmeq->dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001225
Keith Busch7be50e92014-09-10 15:48:47 -06001226 spin_lock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001227 nvmeq->sq_tail = 0;
1228 nvmeq->cq_head = 0;
1229 nvmeq->cq_phase = 1;
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001230 nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride];
Keith Busch22404272013-07-15 15:02:20 -06001231 memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth));
Keith Busch42f61422014-03-24 10:46:25 -06001232 dev->online_queues++;
Keith Busch7be50e92014-09-10 15:48:47 -06001233 spin_unlock_irq(&nvmeq->q_lock);
Keith Busch22404272013-07-15 15:02:20 -06001234}
1235
1236static int nvme_create_queue(struct nvme_queue *nvmeq, int qid)
1237{
1238 struct nvme_dev *dev = nvmeq->dev;
1239 int result;
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001240
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001241 result = adapter_alloc_cq(dev, qid, nvmeq);
1242 if (result < 0)
Keith Busch22404272013-07-15 15:02:20 -06001243 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001244
1245 result = adapter_alloc_sq(dev, qid, nvmeq);
1246 if (result < 0)
1247 goto release_cq;
1248
Matthew Wilcox3193f072014-01-27 15:57:22 -05001249 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001250 if (result < 0)
1251 goto release_sq;
1252
Keith Busch22404272013-07-15 15:02:20 -06001253 nvme_init_queue(nvmeq, qid);
Keith Busch22404272013-07-15 15:02:20 -06001254 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001255
1256 release_sq:
1257 adapter_delete_sq(dev, qid);
1258 release_cq:
1259 adapter_delete_cq(dev, qid);
Keith Busch22404272013-07-15 15:02:20 -06001260 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001261}
1262
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001263static int nvme_wait_ready(struct nvme_dev *dev, u64 cap, bool enabled)
1264{
1265 unsigned long timeout;
1266 u32 bit = enabled ? NVME_CSTS_RDY : 0;
1267
1268 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1269
1270 while ((readl(&dev->bar->csts) & NVME_CSTS_RDY) != bit) {
1271 msleep(100);
1272 if (fatal_signal_pending(current))
1273 return -EINTR;
1274 if (time_after(jiffies, timeout)) {
1275 dev_err(&dev->pci_dev->dev,
Matthew Wilcox27e81662014-04-11 11:58:45 -04001276 "Device not ready; aborting %s\n", enabled ?
1277 "initialisation" : "reset");
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001278 return -ENODEV;
1279 }
1280 }
1281
1282 return 0;
1283}
1284
1285/*
1286 * If the device has been passed off to us in an enabled state, just clear
1287 * the enabled bit. The spec says we should set the 'shutdown notification
1288 * bits', but doing so may cause the device to complete commands to the
1289 * admin queue ... and we don't know what memory that might be pointing at!
1290 */
1291static int nvme_disable_ctrl(struct nvme_dev *dev, u64 cap)
1292{
Dan McLeran01079522014-06-23 08:24:36 -06001293 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1294 dev->ctrl_config &= ~NVME_CC_ENABLE;
1295 writel(dev->ctrl_config, &dev->bar->cc);
Matthew Wilcox44af1462013-05-04 06:43:17 -04001296
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001297 return nvme_wait_ready(dev, cap, false);
1298}
1299
1300static int nvme_enable_ctrl(struct nvme_dev *dev, u64 cap)
1301{
Dan McLeran01079522014-06-23 08:24:36 -06001302 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1303 dev->ctrl_config |= NVME_CC_ENABLE;
1304 writel(dev->ctrl_config, &dev->bar->cc);
1305
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001306 return nvme_wait_ready(dev, cap, true);
1307}
1308
Keith Busch1894d8f2013-07-15 15:02:22 -06001309static int nvme_shutdown_ctrl(struct nvme_dev *dev)
1310{
1311 unsigned long timeout;
Keith Busch1894d8f2013-07-15 15:02:22 -06001312
Dan McLeran01079522014-06-23 08:24:36 -06001313 dev->ctrl_config &= ~NVME_CC_SHN_MASK;
1314 dev->ctrl_config |= NVME_CC_SHN_NORMAL;
1315
1316 writel(dev->ctrl_config, &dev->bar->cc);
Keith Busch1894d8f2013-07-15 15:02:22 -06001317
Dan McLeran2484f402014-07-01 09:33:32 -06001318 timeout = SHUTDOWN_TIMEOUT + jiffies;
Keith Busch1894d8f2013-07-15 15:02:22 -06001319 while ((readl(&dev->bar->csts) & NVME_CSTS_SHST_MASK) !=
1320 NVME_CSTS_SHST_CMPLT) {
1321 msleep(100);
1322 if (fatal_signal_pending(current))
1323 return -EINTR;
1324 if (time_after(jiffies, timeout)) {
1325 dev_err(&dev->pci_dev->dev,
1326 "Device shutdown incomplete; abort shutdown\n");
1327 return -ENODEV;
1328 }
1329 }
1330
1331 return 0;
1332}
1333
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001334static struct blk_mq_ops nvme_mq_admin_ops = {
1335 .queue_rq = nvme_admin_queue_rq,
1336 .map_queue = blk_mq_map_queue,
1337 .init_hctx = nvme_admin_init_hctx,
1338 .init_request = nvme_admin_init_request,
1339 .timeout = nvme_timeout,
1340};
1341
1342static struct blk_mq_ops nvme_mq_ops = {
1343 .queue_rq = nvme_queue_rq,
1344 .map_queue = blk_mq_map_queue,
1345 .init_hctx = nvme_init_hctx,
1346 .init_request = nvme_init_request,
1347 .timeout = nvme_timeout,
1348};
1349
1350static int nvme_alloc_admin_tags(struct nvme_dev *dev)
1351{
1352 if (!dev->admin_q) {
1353 dev->admin_tagset.ops = &nvme_mq_admin_ops;
1354 dev->admin_tagset.nr_hw_queues = 1;
1355 dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1;
1356 dev->admin_tagset.timeout = ADMIN_TIMEOUT;
1357 dev->admin_tagset.numa_node = dev_to_node(&dev->pci_dev->dev);
1358 dev->admin_tagset.cmd_size = sizeof(struct nvme_cmd_info);
1359 dev->admin_tagset.driver_data = dev;
1360
1361 if (blk_mq_alloc_tag_set(&dev->admin_tagset))
1362 return -ENOMEM;
1363
1364 dev->admin_q = blk_mq_init_queue(&dev->admin_tagset);
1365 if (!dev->admin_q) {
1366 blk_mq_free_tag_set(&dev->admin_tagset);
1367 return -ENOMEM;
1368 }
1369 }
1370
1371 return 0;
1372}
1373
1374static void nvme_free_admin_tags(struct nvme_dev *dev)
1375{
1376 if (dev->admin_q)
1377 blk_mq_free_tag_set(&dev->admin_tagset);
1378}
1379
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001380static int nvme_configure_admin_queue(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001381{
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001382 int result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001383 u32 aqa;
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001384 u64 cap = readq(&dev->bar->cap);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001385 struct nvme_queue *nvmeq;
Keith Busch1d090622014-06-23 11:34:01 -06001386 unsigned page_shift = PAGE_SHIFT;
1387 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12;
1388 unsigned dev_page_max = NVME_CAP_MPSMAX(cap) + 12;
1389
1390 if (page_shift < dev_page_min) {
1391 dev_err(&dev->pci_dev->dev,
1392 "Minimum device page size (%u) too large for "
1393 "host (%u)\n", 1 << dev_page_min,
1394 1 << page_shift);
1395 return -ENODEV;
1396 }
1397 if (page_shift > dev_page_max) {
1398 dev_info(&dev->pci_dev->dev,
1399 "Device maximum page size (%u) smaller than "
1400 "host (%u); enabling work-around\n",
1401 1 << dev_page_max, 1 << page_shift);
1402 page_shift = dev_page_max;
1403 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001404
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001405 result = nvme_disable_ctrl(dev, cap);
1406 if (result < 0)
1407 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001408
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001409 nvmeq = dev->queues[0];
Keith Buschcd638942013-07-15 15:02:23 -06001410 if (!nvmeq) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001411 nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH, 0);
Keith Buschcd638942013-07-15 15:02:23 -06001412 if (!nvmeq)
1413 return -ENOMEM;
Keith Buschcd638942013-07-15 15:02:23 -06001414 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001415
1416 aqa = nvmeq->q_depth - 1;
1417 aqa |= aqa << 16;
1418
Keith Busch1d090622014-06-23 11:34:01 -06001419 dev->page_size = 1 << page_shift;
1420
Dan McLeran01079522014-06-23 08:24:36 -06001421 dev->ctrl_config = NVME_CC_CSS_NVM;
Keith Busch1d090622014-06-23 11:34:01 -06001422 dev->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001423 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -04001424 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001425
1426 writel(aqa, &dev->bar->aqa);
1427 writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1428 writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001429
Matthew Wilcoxba47e382013-05-04 06:43:16 -04001430 result = nvme_enable_ctrl(dev, cap);
Keith Busch025c5572013-05-01 13:07:51 -06001431 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001432 goto free_nvmeq;
1433
1434 result = nvme_alloc_admin_tags(dev);
1435 if (result)
1436 goto free_nvmeq;
Matthew Wilcox9e866772012-08-03 13:55:56 -04001437
Matthew Wilcox3193f072014-01-27 15:57:22 -05001438 result = queue_request_irq(dev, nvmeq, nvmeq->irqname);
Keith Busch025c5572013-05-01 13:07:51 -06001439 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001440 goto free_tags;
Keith Busch025c5572013-05-01 13:07:51 -06001441
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001442 return result;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001443
1444 free_tags:
1445 nvme_free_admin_tags(dev);
1446 free_nvmeq:
1447 nvme_free_queues(dev, 0);
1448 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001449}
1450
Vishal Verma5d0f6132013-03-04 18:40:58 -07001451struct nvme_iod *nvme_map_user_pages(struct nvme_dev *dev, int write,
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001452 unsigned long addr, unsigned length)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001453{
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001454 int i, err, count, nents, offset;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001455 struct scatterlist *sg;
1456 struct page **pages;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001457 struct nvme_iod *iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001458
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001459 if (addr & 3)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001460 return ERR_PTR(-EINVAL);
Dan Carpenter5460fc02013-05-13 17:59:50 +03001461 if (!length || length > INT_MAX - PAGE_SIZE)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001462 return ERR_PTR(-EINVAL);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001463
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001464 offset = offset_in_page(addr);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001465 count = DIV_ROUND_UP(offset + length, PAGE_SIZE);
1466 pages = kcalloc(count, sizeof(*pages), GFP_KERNEL);
Dan Carpenter22fff822012-01-20 07:55:30 -05001467 if (!pages)
1468 return ERR_PTR(-ENOMEM);
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001469
1470 err = get_user_pages_fast(addr, count, 1, pages);
1471 if (err < count) {
1472 count = err;
1473 err = -EFAULT;
1474 goto put_pages;
1475 }
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001476
Santosh Y6808c5f2014-05-29 10:01:52 +05301477 err = -ENOMEM;
Keith Busch1d090622014-06-23 11:34:01 -06001478 iod = nvme_alloc_iod(count, length, dev, GFP_KERNEL);
Santosh Y6808c5f2014-05-29 10:01:52 +05301479 if (!iod)
1480 goto put_pages;
1481
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001482 sg = iod->sg;
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001483 sg_init_table(sg, count);
Matthew Wilcoxd0ba1e42011-09-13 17:01:39 -04001484 for (i = 0; i < count; i++) {
1485 sg_set_page(&sg[i], pages[i],
Dan Carpenter5460fc02013-05-13 17:59:50 +03001486 min_t(unsigned, length, PAGE_SIZE - offset),
1487 offset);
Matthew Wilcoxd0ba1e42011-09-13 17:01:39 -04001488 length -= (PAGE_SIZE - offset);
1489 offset = 0;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001490 }
Matthew Wilcoxfe304c42012-01-06 13:49:25 -07001491 sg_mark_end(&sg[i - 1]);
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001492 iod->nents = count;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001493
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001494 nents = dma_map_sg(&dev->pci_dev->dev, sg, count,
1495 write ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001496 if (!nents)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001497 goto free_iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001498
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001499 kfree(pages);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001500 return iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001501
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001502 free_iod:
1503 kfree(iod);
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001504 put_pages:
1505 for (i = 0; i < count; i++)
1506 put_page(pages[i]);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001507 kfree(pages);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001508 return ERR_PTR(err);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001509}
1510
Vishal Verma5d0f6132013-03-04 18:40:58 -07001511void nvme_unmap_user_pages(struct nvme_dev *dev, int write,
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001512 struct nvme_iod *iod)
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001513{
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001514 int i;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001515
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001516 dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents,
1517 write ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001518
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001519 for (i = 0; i < iod->nents; i++)
1520 put_page(sg_page(&iod->sg[i]));
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001521}
1522
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001523static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1524{
1525 struct nvme_dev *dev = ns->dev;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001526 struct nvme_user_io io;
1527 struct nvme_command c;
Keith Buschf410c682013-04-23 17:23:59 -06001528 unsigned length, meta_len;
1529 int status, i;
1530 struct nvme_iod *iod, *meta_iod = NULL;
1531 dma_addr_t meta_dma_addr;
1532 void *meta, *uninitialized_var(meta_mem);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001533
1534 if (copy_from_user(&io, uio, sizeof(io)))
1535 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001536 length = (io.nblocks + 1) << ns->lba_shift;
Keith Buschf410c682013-04-23 17:23:59 -06001537 meta_len = (io.nblocks + 1) * ns->ms;
1538
1539 if (meta_len && ((io.metadata & 3) || !io.metadata))
1540 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001541
1542 switch (io.opcode) {
1543 case nvme_cmd_write:
1544 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001545 case nvme_cmd_compare:
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001546 iod = nvme_map_user_pages(dev, io.opcode & 1, io.addr, length);
Matthew Wilcox64132142011-08-09 12:56:37 -04001547 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001548 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001549 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001550 }
1551
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001552 if (IS_ERR(iod))
1553 return PTR_ERR(iod);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001554
1555 memset(&c, 0, sizeof(c));
1556 c.rw.opcode = io.opcode;
1557 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001558 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001559 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001560 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001561 c.rw.control = cpu_to_le16(io.control);
Matthew Wilcox1c9b5262013-04-16 15:21:06 -04001562 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1563 c.rw.reftag = cpu_to_le32(io.reftag);
1564 c.rw.apptag = cpu_to_le16(io.apptag);
1565 c.rw.appmask = cpu_to_le16(io.appmask);
Keith Buschf410c682013-04-23 17:23:59 -06001566
1567 if (meta_len) {
Keith Busch1b567492013-07-18 12:13:51 -06001568 meta_iod = nvme_map_user_pages(dev, io.opcode & 1, io.metadata,
1569 meta_len);
Keith Buschf410c682013-04-23 17:23:59 -06001570 if (IS_ERR(meta_iod)) {
1571 status = PTR_ERR(meta_iod);
1572 meta_iod = NULL;
1573 goto unmap;
1574 }
1575
1576 meta_mem = dma_alloc_coherent(&dev->pci_dev->dev, meta_len,
1577 &meta_dma_addr, GFP_KERNEL);
1578 if (!meta_mem) {
1579 status = -ENOMEM;
1580 goto unmap;
1581 }
1582
1583 if (io.opcode & 1) {
1584 int meta_offset = 0;
1585
1586 for (i = 0; i < meta_iod->nents; i++) {
1587 meta = kmap_atomic(sg_page(&meta_iod->sg[i])) +
1588 meta_iod->sg[i].offset;
1589 memcpy(meta_mem + meta_offset, meta,
1590 meta_iod->sg[i].length);
1591 kunmap_atomic(meta);
1592 meta_offset += meta_iod->sg[i].length;
1593 }
1594 }
1595
1596 c.rw.metadata = cpu_to_le64(meta_dma_addr);
1597 }
1598
Keith Buschedd10d32014-04-03 16:45:23 -06001599 length = nvme_setup_prps(dev, iod, length, GFP_KERNEL);
1600 c.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
1601 c.rw.prp2 = cpu_to_le64(iod->first_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -05001602
Matthew Wilcoxb77954c2011-05-12 13:51:41 -04001603 if (length != (io.nblocks + 1) << ns->lba_shift)
1604 status = -ENOMEM;
1605 else
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001606 status = nvme_submit_io_cmd(dev, ns, &c, NULL);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001607
Keith Buschf410c682013-04-23 17:23:59 -06001608 if (meta_len) {
1609 if (status == NVME_SC_SUCCESS && !(io.opcode & 1)) {
1610 int meta_offset = 0;
1611
1612 for (i = 0; i < meta_iod->nents; i++) {
1613 meta = kmap_atomic(sg_page(&meta_iod->sg[i])) +
1614 meta_iod->sg[i].offset;
1615 memcpy(meta, meta_mem + meta_offset,
1616 meta_iod->sg[i].length);
1617 kunmap_atomic(meta);
1618 meta_offset += meta_iod->sg[i].length;
1619 }
1620 }
1621
1622 dma_free_coherent(&dev->pci_dev->dev, meta_len, meta_mem,
1623 meta_dma_addr);
1624 }
1625
1626 unmap:
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001627 nvme_unmap_user_pages(dev, io.opcode & 1, iod);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001628 nvme_free_iod(dev, iod);
Keith Buschf410c682013-04-23 17:23:59 -06001629
1630 if (meta_iod) {
1631 nvme_unmap_user_pages(dev, io.opcode & 1, meta_iod);
1632 nvme_free_iod(dev, meta_iod);
1633 }
1634
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001635 return status;
1636}
1637
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001638static int nvme_user_cmd(struct nvme_dev *dev, struct nvme_ns *ns,
1639 struct nvme_passthru_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001640{
Keith Busch7963e522014-09-12 16:07:20 -06001641 struct nvme_passthru_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001642 struct nvme_command c;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001643 int status, length;
Keith Buschc7d36ab2012-07-27 11:53:28 -06001644 struct nvme_iod *uninitialized_var(iod);
Keith Busch94f370c2013-05-09 14:01:38 -06001645 unsigned timeout;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001646
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001647 if (!capable(CAP_SYS_ADMIN))
1648 return -EACCES;
1649 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001650 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001651
1652 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001653 c.common.opcode = cmd.opcode;
1654 c.common.flags = cmd.flags;
1655 c.common.nsid = cpu_to_le32(cmd.nsid);
1656 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1657 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1658 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1659 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1660 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1661 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1662 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1663 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1664
1665 length = cmd.data_len;
1666 if (cmd.data_len) {
Matthew Wilcox49742182012-01-06 13:42:45 -07001667 iod = nvme_map_user_pages(dev, cmd.opcode & 1, cmd.addr,
1668 length);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001669 if (IS_ERR(iod))
1670 return PTR_ERR(iod);
Keith Buschedd10d32014-04-03 16:45:23 -06001671 length = nvme_setup_prps(dev, iod, length, GFP_KERNEL);
1672 c.common.prp1 = cpu_to_le64(sg_dma_address(iod->sg));
1673 c.common.prp2 = cpu_to_le64(iod->first_dma);
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001674 }
1675
Keith Busch94f370c2013-05-09 14:01:38 -06001676 timeout = cmd.timeout_ms ? msecs_to_jiffies(cmd.timeout_ms) :
1677 ADMIN_TIMEOUT;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001678
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001679 if (length != cmd.data_len)
Matthew Wilcoxb77954c2011-05-12 13:51:41 -04001680 status = -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001681 else if (ns) {
1682 struct request *req;
1683
1684 req = blk_mq_alloc_request(ns->queue, WRITE,
1685 (GFP_KERNEL|__GFP_WAIT), false);
1686 if (!req)
1687 status = -ENOMEM;
1688 else {
1689 status = nvme_submit_sync_cmd(req, &c, &cmd.result,
1690 timeout);
1691 blk_put_request(req);
1692 }
1693 } else
1694 status = __nvme_submit_admin_cmd(dev, &c, &cmd.result, timeout);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001695
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001696 if (cmd.data_len) {
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001697 nvme_unmap_user_pages(dev, cmd.opcode & 1, iod);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001698 nvme_free_iod(dev, iod);
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001699 }
Keith Buschf4f117f2012-09-21 10:49:05 -06001700
Chayan Biswascf90bc42013-05-22 22:34:49 +00001701 if ((status >= 0) && copy_to_user(&ucmd->result, &cmd.result,
Keith Buschf4f117f2012-09-21 10:49:05 -06001702 sizeof(cmd.result)))
1703 status = -EFAULT;
1704
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001705 return status;
1706}
1707
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001708static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1709 unsigned long arg)
1710{
1711 struct nvme_ns *ns = bdev->bd_disk->private_data;
1712
1713 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001714 case NVME_IOCTL_ID:
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04001715 force_successful_syscall_return();
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001716 return ns->ns_id;
1717 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001718 return nvme_user_cmd(ns->dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06001719 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001720 return nvme_user_cmd(ns->dev, ns, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001721 case NVME_IOCTL_SUBMIT_IO:
1722 return nvme_submit_io(ns, (void __user *)arg);
Vishal Verma5d0f6132013-03-04 18:40:58 -07001723 case SG_GET_VERSION_NUM:
1724 return nvme_sg_get_version_num((void __user *)arg);
1725 case SG_IO:
1726 return nvme_sg_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001727 default:
1728 return -ENOTTY;
1729 }
1730}
1731
Keith Busch320a3822013-10-23 13:07:34 -06001732#ifdef CONFIG_COMPAT
1733static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode,
1734 unsigned int cmd, unsigned long arg)
1735{
Keith Busch320a3822013-10-23 13:07:34 -06001736 switch (cmd) {
1737 case SG_IO:
Keith Busche1797292014-08-27 13:55:38 -06001738 return -ENOIOCTLCMD;
Keith Busch320a3822013-10-23 13:07:34 -06001739 }
1740 return nvme_ioctl(bdev, mode, cmd, arg);
1741}
1742#else
1743#define nvme_compat_ioctl NULL
1744#endif
1745
Keith Busch9ac27092014-01-31 16:53:39 -07001746static int nvme_open(struct block_device *bdev, fmode_t mode)
1747{
Keith Busch9e603522014-10-03 11:15:47 -06001748 int ret = 0;
1749 struct nvme_ns *ns;
Keith Busch9ac27092014-01-31 16:53:39 -07001750
Keith Busch9e603522014-10-03 11:15:47 -06001751 spin_lock(&dev_list_lock);
1752 ns = bdev->bd_disk->private_data;
1753 if (!ns)
1754 ret = -ENXIO;
1755 else if (!kref_get_unless_zero(&ns->dev->kref))
1756 ret = -ENXIO;
1757 spin_unlock(&dev_list_lock);
1758
1759 return ret;
Keith Busch9ac27092014-01-31 16:53:39 -07001760}
1761
1762static void nvme_free_dev(struct kref *kref);
1763
1764static void nvme_release(struct gendisk *disk, fmode_t mode)
1765{
1766 struct nvme_ns *ns = disk->private_data;
1767 struct nvme_dev *dev = ns->dev;
1768
1769 kref_put(&dev->kref, nvme_free_dev);
1770}
1771
Keith Busch4cc09e22014-04-02 15:45:37 -06001772static int nvme_getgeo(struct block_device *bd, struct hd_geometry *geo)
1773{
1774 /* some standard values */
1775 geo->heads = 1 << 6;
1776 geo->sectors = 1 << 5;
1777 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
1778 return 0;
1779}
1780
Keith Busch1b9dbf72014-09-10 17:21:14 -06001781static int nvme_revalidate_disk(struct gendisk *disk)
1782{
1783 struct nvme_ns *ns = disk->private_data;
1784 struct nvme_dev *dev = ns->dev;
1785 struct nvme_id_ns *id;
1786 dma_addr_t dma_addr;
1787 int lbaf;
1788
1789 id = dma_alloc_coherent(&dev->pci_dev->dev, 4096, &dma_addr,
1790 GFP_KERNEL);
1791 if (!id) {
1792 dev_warn(&dev->pci_dev->dev, "%s: Memory alocation failure\n",
1793 __func__);
1794 return 0;
1795 }
1796
1797 if (nvme_identify(dev, ns->ns_id, 0, dma_addr))
1798 goto free;
1799
1800 lbaf = id->flbas & 0xf;
1801 ns->lba_shift = id->lbaf[lbaf].ds;
1802
1803 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
1804 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
1805 free:
1806 dma_free_coherent(&dev->pci_dev->dev, 4096, id, dma_addr);
1807 return 0;
1808}
1809
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001810static const struct block_device_operations nvme_fops = {
1811 .owner = THIS_MODULE,
1812 .ioctl = nvme_ioctl,
Keith Busch320a3822013-10-23 13:07:34 -06001813 .compat_ioctl = nvme_compat_ioctl,
Keith Busch9ac27092014-01-31 16:53:39 -07001814 .open = nvme_open,
1815 .release = nvme_release,
Keith Busch4cc09e22014-04-02 15:45:37 -06001816 .getgeo = nvme_getgeo,
Keith Busch1b9dbf72014-09-10 17:21:14 -06001817 .revalidate_disk= nvme_revalidate_disk,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001818};
1819
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001820static int nvme_kthread(void *data)
1821{
Keith Buschd4b4ff82013-12-10 13:10:37 -07001822 struct nvme_dev *dev, *next;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001823
1824 while (!kthread_should_stop()) {
Arjan van de Ven564a2322013-05-01 16:38:23 -04001825 set_current_state(TASK_INTERRUPTIBLE);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001826 spin_lock(&dev_list_lock);
Keith Buschd4b4ff82013-12-10 13:10:37 -07001827 list_for_each_entry_safe(dev, next, &dev_list, node) {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001828 int i;
Keith Buschd4b4ff82013-12-10 13:10:37 -07001829 if (readl(&dev->bar->csts) & NVME_CSTS_CFS &&
1830 dev->initialized) {
1831 if (work_busy(&dev->reset_work))
1832 continue;
1833 list_del_init(&dev->node);
1834 dev_warn(&dev->pci_dev->dev,
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001835 "Failed status: %x, reset controller\n",
1836 readl(&dev->bar->csts));
Tejun Heo9ca97372014-03-07 10:24:49 -05001837 dev->reset_workfn = nvme_reset_failed_dev;
Keith Buschd4b4ff82013-12-10 13:10:37 -07001838 queue_work(nvme_workq, &dev->reset_work);
1839 continue;
1840 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001841 for (i = 0; i < dev->queue_count; i++) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001842 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05001843 if (!nvmeq)
1844 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001845 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxbc57a0f2013-06-24 11:56:42 -04001846 nvme_process_cq(nvmeq);
Keith Busch6fccf932014-06-18 13:58:57 -06001847
1848 while ((i == 0) && (dev->event_limit > 0)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001849 if (nvme_submit_async_admin_req(dev))
Keith Busch6fccf932014-06-18 13:58:57 -06001850 break;
1851 dev->event_limit--;
1852 }
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001853 spin_unlock_irq(&nvmeq->q_lock);
1854 }
1855 }
1856 spin_unlock(&dev_list_lock);
Arjan van de Venacb7aa02013-02-04 14:44:33 -08001857 schedule_timeout(round_jiffies_relative(HZ));
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001858 }
1859 return 0;
1860}
1861
Keith Busch0e5e4f02012-11-09 16:33:05 -07001862static void nvme_config_discard(struct nvme_ns *ns)
1863{
1864 u32 logical_block_size = queue_logical_block_size(ns->queue);
1865 ns->queue->limits.discard_zeroes_data = 0;
1866 ns->queue->limits.discard_alignment = logical_block_size;
1867 ns->queue->limits.discard_granularity = logical_block_size;
1868 ns->queue->limits.max_discard_sectors = 0xffffffff;
1869 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
1870}
1871
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04001872static struct nvme_ns *nvme_alloc_ns(struct nvme_dev *dev, unsigned nsid,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001873 struct nvme_id_ns *id, struct nvme_lba_range_type *rt)
1874{
1875 struct nvme_ns *ns;
1876 struct gendisk *disk;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001877 int node = dev_to_node(&dev->pci_dev->dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001878 int lbaf;
1879
1880 if (rt->attributes & NVME_LBART_ATTRIB_HIDE)
1881 return NULL;
1882
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001883 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001884 if (!ns)
1885 return NULL;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001886 ns->queue = blk_mq_init_queue(&dev->tagset);
Dan Carpenter9f173b32014-11-05 23:39:09 +03001887 if (IS_ERR(ns->queue))
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001888 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07001889 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
1890 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001891 queue_flag_set_unlocked(QUEUE_FLAG_SG_GAPS, ns->queue);
1892 queue_flag_clear_unlocked(QUEUE_FLAG_IO_STAT, ns->queue);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001893 ns->dev = dev;
1894 ns->queue->queuedata = ns;
1895
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001896 disk = alloc_disk_node(0, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001897 if (!disk)
1898 goto out_free_queue;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001899
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001900 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001901 ns->disk = disk;
1902 lbaf = id->flbas & 0xf;
1903 ns->lba_shift = id->lbaf[lbaf].ds;
Keith Buschf410c682013-04-23 17:23:59 -06001904 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms);
Keith Busche9ef4632012-07-24 15:01:04 -06001905 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Keith Busch8fc23e02012-07-26 11:29:57 -06001906 if (dev->max_hw_sectors)
1907 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001908 if (dev->stripe_size)
1909 blk_queue_chunk_sectors(ns->queue, dev->stripe_size >> 9);
Keith Buscha7d2ce22014-04-29 11:41:28 -06001910 if (dev->vwc & NVME_CTRL_VWC_PRESENT)
1911 blk_queue_flush(ns->queue, REQ_FLUSH | REQ_FUA);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001912
1913 disk->major = nvme_major;
Matthew Wilcox469071a2013-12-09 12:58:46 -05001914 disk->first_minor = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001915 disk->fops = &nvme_fops;
1916 disk->private_data = ns;
1917 disk->queue = ns->queue;
Matthew Wilcox388f0372011-02-01 12:49:38 -05001918 disk->driverfs_dev = &dev->pci_dev->dev;
Matthew Wilcox469071a2013-12-09 12:58:46 -05001919 disk->flags = GENHD_FL_EXT_DEVT;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001920 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001921 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
1922
Keith Busch0e5e4f02012-11-09 16:33:05 -07001923 if (dev->oncs & NVME_CTRL_ONCS_DSM)
1924 nvme_config_discard(ns);
1925
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001926 return ns;
1927
1928 out_free_queue:
1929 blk_cleanup_queue(ns->queue);
1930 out_free_ns:
1931 kfree(ns);
1932 return NULL;
1933}
1934
Keith Busch42f61422014-03-24 10:46:25 -06001935static void nvme_create_io_queues(struct nvme_dev *dev)
1936{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001937 unsigned i;
Keith Busch42f61422014-03-24 10:46:25 -06001938
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001939 for (i = dev->queue_count; i <= dev->max_qid; i++)
Keith Busch42f61422014-03-24 10:46:25 -06001940 if (!nvme_alloc_queue(dev, i, dev->q_depth, i - 1))
1941 break;
1942
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001943 for (i = dev->online_queues; i <= dev->queue_count - 1; i++)
1944 if (nvme_create_queue(dev->queues[i], i))
Keith Busch42f61422014-03-24 10:46:25 -06001945 break;
1946}
1947
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05001948static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001949{
1950 int status;
1951 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05001952 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001953
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001954 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001955 &result);
Matthew Wilcox27e81662014-04-11 11:58:45 -04001956 if (status < 0)
1957 return status;
1958 if (status > 0) {
1959 dev_err(&dev->pci_dev->dev, "Could not set queue count (%d)\n",
1960 status);
Keith Buschbadc34d2014-06-23 14:25:35 -06001961 return 0;
Matthew Wilcox27e81662014-04-11 11:58:45 -04001962 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001963 return min(result & 0xffff, result >> 16) + 1;
1964}
1965
Keith Busch9d713c22013-07-15 15:02:24 -06001966static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues)
1967{
Haiyan Hub80d5cc2013-09-10 11:25:37 +08001968 return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride);
Keith Busch9d713c22013-07-15 15:02:24 -06001969}
1970
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08001971static int nvme_setup_io_queues(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001972{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07001973 struct nvme_queue *adminq = dev->queues[0];
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07001974 struct pci_dev *pdev = dev->pci_dev;
Keith Busch42f61422014-03-24 10:46:25 -06001975 int result, i, vecs, nr_io_queues, size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001976
Keith Busch42f61422014-03-24 10:46:25 -06001977 nr_io_queues = num_possible_cpus();
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001978 result = set_queue_count(dev, nr_io_queues);
Keith Buschbadc34d2014-06-23 14:25:35 -06001979 if (result <= 0)
Matthew Wilcox1b234842011-01-20 13:01:49 -05001980 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001981 if (result < nr_io_queues)
1982 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001983
Keith Busch9d713c22013-07-15 15:02:24 -06001984 size = db_bar_size(dev, nr_io_queues);
1985 if (size > 8192) {
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001986 iounmap(dev->bar);
Keith Busch9d713c22013-07-15 15:02:24 -06001987 do {
1988 dev->bar = ioremap(pci_resource_start(pdev, 0), size);
1989 if (dev->bar)
1990 break;
1991 if (!--nr_io_queues)
1992 return -ENOMEM;
1993 size = db_bar_size(dev, nr_io_queues);
1994 } while (1);
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001995 dev->dbs = ((void __iomem *)dev->bar) + 4096;
Keith Busch5a92e702014-02-21 14:13:44 -07001996 adminq->q_db = dev->dbs;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001997 }
1998
Keith Busch9d713c22013-07-15 15:02:24 -06001999 /* Deregister the admin queue's interrupt */
Matthew Wilcox3193f072014-01-27 15:57:22 -05002000 free_irq(dev->entry[0].vector, adminq);
Keith Busch9d713c22013-07-15 15:02:24 -06002001
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002002 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05002003 dev->entry[i].entry = i;
Alexander Gordeevbe577fa2014-03-04 16:22:00 +01002004 vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues);
2005 if (vecs < 0) {
2006 vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32));
2007 if (vecs < 0) {
2008 vecs = 1;
2009 } else {
2010 for (i = 0; i < vecs; i++)
2011 dev->entry[i].vector = i + pdev->irq;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002012 }
2013 }
2014
Matthew Wilcox063a8092013-06-20 10:53:48 -04002015 /*
2016 * Should investigate if there's a performance win from allocating
2017 * more queues than interrupt vectors; it might allow the submission
2018 * path to scale better, even if the receive path is limited by the
2019 * number of interrupts.
2020 */
2021 nr_io_queues = vecs;
Keith Busch42f61422014-03-24 10:46:25 -06002022 dev->max_qid = nr_io_queues;
Ramachandra Rao Gajulafa08a392013-05-11 15:19:31 -07002023
Matthew Wilcox3193f072014-01-27 15:57:22 -05002024 result = queue_request_irq(dev, adminq, adminq->irqname);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002025 if (result)
Keith Busch22404272013-07-15 15:02:20 -06002026 goto free_queues;
Matthew Wilcox1b234842011-01-20 13:01:49 -05002027
Keith Buschcd638942013-07-15 15:02:23 -06002028 /* Free previously allocated queues that are no longer usable */
Keith Busch42f61422014-03-24 10:46:25 -06002029 nvme_free_queues(dev, nr_io_queues + 1);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002030 nvme_create_io_queues(dev);
Keith Buschcd638942013-07-15 15:02:23 -06002031
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002032 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002033
Keith Busch22404272013-07-15 15:02:20 -06002034 free_queues:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002035 nvme_free_queues(dev, 1);
Keith Busch22404272013-07-15 15:02:20 -06002036 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002037}
2038
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002039/*
2040 * Return: error value if an error occurred setting up the queues or calling
2041 * Identify Device. 0 if these succeeded, even if adding some of the
2042 * namespaces failed. At the moment, these failures are silent. TBD which
2043 * failures should be reported.
2044 */
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002045static int nvme_dev_add(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002046{
Matthew Wilcox68608c262013-06-21 14:36:34 -04002047 struct pci_dev *pdev = dev->pci_dev;
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -04002048 int res;
2049 unsigned nn, i;
Keith Buschcbb62182013-05-01 13:07:49 -06002050 struct nvme_ns *ns;
Matthew Wilcox51814232011-02-01 16:18:08 -05002051 struct nvme_id_ctrl *ctrl;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002052 struct nvme_id_ns *id_ns;
2053 void *mem;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002054 dma_addr_t dma_addr;
Keith Busch159b67d2013-04-09 17:13:20 -06002055 int shift = NVME_CAP_MPSMIN(readq(&dev->bar->cap)) + 12;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002056
Matthew Wilcox68608c262013-06-21 14:36:34 -04002057 mem = dma_alloc_coherent(&pdev->dev, 8192, &dma_addr, GFP_KERNEL);
Keith Buscha9ef4342013-05-01 13:07:48 -06002058 if (!mem)
2059 return -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002060
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002061 res = nvme_identify(dev, 0, 1, dma_addr);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002062 if (res) {
Matthew Wilcox27e81662014-04-11 11:58:45 -04002063 dev_err(&pdev->dev, "Identify Controller failed (%d)\n", res);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002064 res = -EIO;
Keith Buschcbb62182013-05-01 13:07:49 -06002065 goto out;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002066 }
2067
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002068 ctrl = mem;
Matthew Wilcox51814232011-02-01 16:18:08 -05002069 nn = le32_to_cpup(&ctrl->nn);
Keith Busch0e5e4f02012-11-09 16:33:05 -07002070 dev->oncs = le16_to_cpup(&ctrl->oncs);
Keith Buschc30341d2013-12-10 13:10:38 -07002071 dev->abort_limit = ctrl->acl + 1;
Keith Buscha7d2ce22014-04-29 11:41:28 -06002072 dev->vwc = ctrl->vwc;
Keith Busch6fccf932014-06-18 13:58:57 -06002073 dev->event_limit = min(ctrl->aerl + 1, 8);
Matthew Wilcox51814232011-02-01 16:18:08 -05002074 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
2075 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
2076 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Keith Busch159b67d2013-04-09 17:13:20 -06002077 if (ctrl->mdts)
Keith Busch8fc23e02012-07-26 11:29:57 -06002078 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
Matthew Wilcox68608c262013-06-21 14:36:34 -04002079 if ((pdev->vendor == PCI_VENDOR_ID_INTEL) &&
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002080 (pdev->device == 0x0953) && ctrl->vs[3]) {
2081 unsigned int max_hw_sectors;
2082
Keith Busch159b67d2013-04-09 17:13:20 -06002083 dev->stripe_size = 1 << (ctrl->vs[3] + shift);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002084 max_hw_sectors = dev->stripe_size >> (shift - 9);
2085 if (dev->max_hw_sectors) {
2086 dev->max_hw_sectors = min(max_hw_sectors,
2087 dev->max_hw_sectors);
2088 } else
2089 dev->max_hw_sectors = max_hw_sectors;
2090 }
2091
2092 dev->tagset.ops = &nvme_mq_ops;
2093 dev->tagset.nr_hw_queues = dev->online_queues - 1;
2094 dev->tagset.timeout = NVME_IO_TIMEOUT;
2095 dev->tagset.numa_node = dev_to_node(&dev->pci_dev->dev);
2096 dev->tagset.queue_depth =
2097 min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1;
2098 dev->tagset.cmd_size = sizeof(struct nvme_cmd_info);
2099 dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE;
2100 dev->tagset.driver_data = dev;
2101
2102 if (blk_mq_alloc_tag_set(&dev->tagset))
2103 goto out;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002104
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002105 id_ns = mem;
Matthew Wilcox2b2c1892011-10-07 13:10:13 -04002106 for (i = 1; i <= nn; i++) {
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002107 res = nvme_identify(dev, i, 0, dma_addr);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002108 if (res)
2109 continue;
2110
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002111 if (id_ns->ncap == 0)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002112 continue;
2113
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002114 res = nvme_get_features(dev, NVME_FEAT_LBA_RANGE, i,
Keith Busch08df1e02012-09-21 10:52:13 -06002115 dma_addr + 4096, NULL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002116 if (res)
Keith Busch12209032013-01-31 14:40:38 -07002117 memset(mem + 4096, 0, 4096);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002118
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002119 ns = nvme_alloc_ns(dev, i, mem, mem + 4096);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002120 if (ns)
2121 list_add_tail(&ns->list, &dev->namespaces);
2122 }
2123 list_for_each_entry(ns, &dev->namespaces, list)
2124 add_disk(ns->disk);
Matthew Wilcox422ef0c2013-04-16 11:22:36 -04002125 res = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002126
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04002127 out:
Matthew Wilcox684f5c22011-09-19 17:14:53 -04002128 dma_free_coherent(&dev->pci_dev->dev, 8192, mem, dma_addr);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002129 return res;
2130}
2131
Keith Busch0877cb02013-07-15 15:02:19 -06002132static int nvme_dev_map(struct nvme_dev *dev)
2133{
Keith Busch42f61422014-03-24 10:46:25 -06002134 u64 cap;
Keith Busch0877cb02013-07-15 15:02:19 -06002135 int bars, result = -ENOMEM;
2136 struct pci_dev *pdev = dev->pci_dev;
2137
2138 if (pci_enable_device_mem(pdev))
2139 return result;
2140
2141 dev->entry[0].vector = pdev->irq;
2142 pci_set_master(pdev);
2143 bars = pci_select_bars(pdev, IORESOURCE_MEM);
2144 if (pci_request_selected_regions(pdev, bars, "nvme"))
2145 goto disable_pci;
2146
Russell King052d0ef2013-06-26 23:49:11 +01002147 if (dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)) &&
2148 dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)))
2149 goto disable;
Keith Busch0877cb02013-07-15 15:02:19 -06002150
Keith Busch0877cb02013-07-15 15:02:19 -06002151 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
2152 if (!dev->bar)
2153 goto disable;
Keith Busch0e53d182013-12-10 13:10:39 -07002154 if (readl(&dev->bar->csts) == -1) {
2155 result = -ENODEV;
2156 goto unmap;
2157 }
Keith Busch42f61422014-03-24 10:46:25 -06002158 cap = readq(&dev->bar->cap);
2159 dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH);
2160 dev->db_stride = 1 << NVME_CAP_STRIDE(cap);
Keith Busch0877cb02013-07-15 15:02:19 -06002161 dev->dbs = ((void __iomem *)dev->bar) + 4096;
2162
2163 return 0;
2164
Keith Busch0e53d182013-12-10 13:10:39 -07002165 unmap:
2166 iounmap(dev->bar);
2167 dev->bar = NULL;
Keith Busch0877cb02013-07-15 15:02:19 -06002168 disable:
2169 pci_release_regions(pdev);
2170 disable_pci:
2171 pci_disable_device(pdev);
2172 return result;
2173}
2174
2175static void nvme_dev_unmap(struct nvme_dev *dev)
2176{
2177 if (dev->pci_dev->msi_enabled)
2178 pci_disable_msi(dev->pci_dev);
2179 else if (dev->pci_dev->msix_enabled)
2180 pci_disable_msix(dev->pci_dev);
2181
2182 if (dev->bar) {
2183 iounmap(dev->bar);
2184 dev->bar = NULL;
Keith Busch9a6b9452013-12-10 13:10:36 -07002185 pci_release_regions(dev->pci_dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002186 }
2187
Keith Busch0877cb02013-07-15 15:02:19 -06002188 if (pci_is_enabled(dev->pci_dev))
2189 pci_disable_device(dev->pci_dev);
2190}
2191
Keith Busch4d115422013-12-10 13:10:40 -07002192struct nvme_delq_ctx {
2193 struct task_struct *waiter;
2194 struct kthread_worker *worker;
2195 atomic_t refcount;
2196};
2197
2198static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev)
2199{
2200 dq->waiter = current;
2201 mb();
2202
2203 for (;;) {
2204 set_current_state(TASK_KILLABLE);
2205 if (!atomic_read(&dq->refcount))
2206 break;
2207 if (!schedule_timeout(ADMIN_TIMEOUT) ||
2208 fatal_signal_pending(current)) {
2209 set_current_state(TASK_RUNNING);
2210
2211 nvme_disable_ctrl(dev, readq(&dev->bar->cap));
2212 nvme_disable_queue(dev, 0);
2213
2214 send_sig(SIGKILL, dq->worker->task, 1);
2215 flush_kthread_worker(dq->worker);
2216 return;
2217 }
2218 }
2219 set_current_state(TASK_RUNNING);
2220}
2221
2222static void nvme_put_dq(struct nvme_delq_ctx *dq)
2223{
2224 atomic_dec(&dq->refcount);
2225 if (dq->waiter)
2226 wake_up_process(dq->waiter);
2227}
2228
2229static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq)
2230{
2231 atomic_inc(&dq->refcount);
2232 return dq;
2233}
2234
2235static void nvme_del_queue_end(struct nvme_queue *nvmeq)
2236{
2237 struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx;
2238
2239 nvme_clear_queue(nvmeq);
2240 nvme_put_dq(dq);
2241}
2242
2243static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode,
2244 kthread_work_func_t fn)
2245{
2246 struct nvme_command c;
2247
2248 memset(&c, 0, sizeof(c));
2249 c.delete_queue.opcode = opcode;
2250 c.delete_queue.qid = cpu_to_le16(nvmeq->qid);
2251
2252 init_kthread_work(&nvmeq->cmdinfo.work, fn);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002253 return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo,
2254 ADMIN_TIMEOUT);
Keith Busch4d115422013-12-10 13:10:40 -07002255}
2256
2257static void nvme_del_cq_work_handler(struct kthread_work *work)
2258{
2259 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2260 cmdinfo.work);
2261 nvme_del_queue_end(nvmeq);
2262}
2263
2264static int nvme_delete_cq(struct nvme_queue *nvmeq)
2265{
2266 return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq,
2267 nvme_del_cq_work_handler);
2268}
2269
2270static void nvme_del_sq_work_handler(struct kthread_work *work)
2271{
2272 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2273 cmdinfo.work);
2274 int status = nvmeq->cmdinfo.status;
2275
2276 if (!status)
2277 status = nvme_delete_cq(nvmeq);
2278 if (status)
2279 nvme_del_queue_end(nvmeq);
2280}
2281
2282static int nvme_delete_sq(struct nvme_queue *nvmeq)
2283{
2284 return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq,
2285 nvme_del_sq_work_handler);
2286}
2287
2288static void nvme_del_queue_start(struct kthread_work *work)
2289{
2290 struct nvme_queue *nvmeq = container_of(work, struct nvme_queue,
2291 cmdinfo.work);
2292 allow_signal(SIGKILL);
2293 if (nvme_delete_sq(nvmeq))
2294 nvme_del_queue_end(nvmeq);
2295}
2296
2297static void nvme_disable_io_queues(struct nvme_dev *dev)
2298{
2299 int i;
2300 DEFINE_KTHREAD_WORKER_ONSTACK(worker);
2301 struct nvme_delq_ctx dq;
2302 struct task_struct *kworker_task = kthread_run(kthread_worker_fn,
2303 &worker, "nvme%d", dev->instance);
2304
2305 if (IS_ERR(kworker_task)) {
2306 dev_err(&dev->pci_dev->dev,
2307 "Failed to create queue del task\n");
2308 for (i = dev->queue_count - 1; i > 0; i--)
2309 nvme_disable_queue(dev, i);
2310 return;
2311 }
2312
2313 dq.waiter = NULL;
2314 atomic_set(&dq.refcount, 0);
2315 dq.worker = &worker;
2316 for (i = dev->queue_count - 1; i > 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002317 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002318
2319 if (nvme_suspend_queue(nvmeq))
2320 continue;
2321 nvmeq->cmdinfo.ctx = nvme_get_dq(&dq);
2322 nvmeq->cmdinfo.worker = dq.worker;
2323 init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start);
2324 queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work);
2325 }
2326 nvme_wait_dq(&dq, dev);
2327 kthread_stop(kworker_task);
2328}
2329
Dan McLeranb9afca32014-04-07 17:10:11 -06002330/*
2331* Remove the node from the device list and check
2332* for whether or not we need to stop the nvme_thread.
2333*/
2334static void nvme_dev_list_remove(struct nvme_dev *dev)
2335{
2336 struct task_struct *tmp = NULL;
2337
2338 spin_lock(&dev_list_lock);
2339 list_del_init(&dev->node);
2340 if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) {
2341 tmp = nvme_thread;
2342 nvme_thread = NULL;
2343 }
2344 spin_unlock(&dev_list_lock);
2345
2346 if (tmp)
2347 kthread_stop(tmp);
2348}
2349
Keith Buschf0b50732013-07-15 15:02:21 -06002350static void nvme_dev_shutdown(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002351{
Keith Busch22404272013-07-15 15:02:20 -06002352 int i;
Keith Busch7c1b2452014-06-25 11:18:12 -06002353 u32 csts = -1;
Keith Busch22404272013-07-15 15:02:20 -06002354
Keith Buschd4b4ff82013-12-10 13:10:37 -07002355 dev->initialized = 0;
Dan McLeranb9afca32014-04-07 17:10:11 -06002356 nvme_dev_list_remove(dev);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002357
Keith Busch7c1b2452014-06-25 11:18:12 -06002358 if (dev->bar)
2359 csts = readl(&dev->bar->csts);
2360 if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) {
Keith Busch4d115422013-12-10 13:10:40 -07002361 for (i = dev->queue_count - 1; i >= 0; i--) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002362 struct nvme_queue *nvmeq = dev->queues[i];
Keith Busch4d115422013-12-10 13:10:40 -07002363 nvme_suspend_queue(nvmeq);
2364 nvme_clear_queue(nvmeq);
2365 }
2366 } else {
2367 nvme_disable_io_queues(dev);
Keith Busch1894d8f2013-07-15 15:02:22 -06002368 nvme_shutdown_ctrl(dev);
Keith Busch4d115422013-12-10 13:10:40 -07002369 nvme_disable_queue(dev, 0);
2370 }
Keith Buschf0b50732013-07-15 15:02:21 -06002371 nvme_dev_unmap(dev);
2372}
2373
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002374static void nvme_dev_remove_admin(struct nvme_dev *dev)
2375{
2376 if (dev->admin_q && !blk_queue_dying(dev->admin_q))
2377 blk_cleanup_queue(dev->admin_q);
2378}
2379
Keith Buschf0b50732013-07-15 15:02:21 -06002380static void nvme_dev_remove(struct nvme_dev *dev)
2381{
Keith Busch9ac27092014-01-31 16:53:39 -07002382 struct nvme_ns *ns;
Keith Buschf0b50732013-07-15 15:02:21 -06002383
Keith Busch9ac27092014-01-31 16:53:39 -07002384 list_for_each_entry(ns, &dev->namespaces, list) {
2385 if (ns->disk->flags & GENHD_FL_UP)
2386 del_gendisk(ns->disk);
2387 if (!blk_queue_dying(ns->queue))
2388 blk_cleanup_queue(ns->queue);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002389 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002390}
2391
Matthew Wilcox091b6092011-02-10 09:56:01 -05002392static int nvme_setup_prp_pools(struct nvme_dev *dev)
2393{
2394 struct device *dmadev = &dev->pci_dev->dev;
2395 dev->prp_page_pool = dma_pool_create("prp list page", dmadev,
2396 PAGE_SIZE, PAGE_SIZE, 0);
2397 if (!dev->prp_page_pool)
2398 return -ENOMEM;
2399
Matthew Wilcox99802a72011-02-10 10:30:34 -05002400 /* Optimisation for I/Os between 4k and 128k */
2401 dev->prp_small_pool = dma_pool_create("prp list 256", dmadev,
2402 256, 256, 0);
2403 if (!dev->prp_small_pool) {
2404 dma_pool_destroy(dev->prp_page_pool);
2405 return -ENOMEM;
2406 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05002407 return 0;
2408}
2409
2410static void nvme_release_prp_pools(struct nvme_dev *dev)
2411{
2412 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05002413 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002414}
2415
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002416static DEFINE_IDA(nvme_instance_ida);
2417
2418static int nvme_set_instance(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002419{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002420 int instance, error;
2421
2422 do {
2423 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
2424 return -ENODEV;
2425
2426 spin_lock(&dev_list_lock);
2427 error = ida_get_new(&nvme_instance_ida, &instance);
2428 spin_unlock(&dev_list_lock);
2429 } while (error == -EAGAIN);
2430
2431 if (error)
2432 return -ENODEV;
2433
2434 dev->instance = instance;
2435 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002436}
2437
2438static void nvme_release_instance(struct nvme_dev *dev)
2439{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002440 spin_lock(&dev_list_lock);
2441 ida_remove(&nvme_instance_ida, dev->instance);
2442 spin_unlock(&dev_list_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002443}
2444
Keith Busch9ac27092014-01-31 16:53:39 -07002445static void nvme_free_namespaces(struct nvme_dev *dev)
2446{
2447 struct nvme_ns *ns, *next;
2448
2449 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
2450 list_del(&ns->list);
Keith Busch9e603522014-10-03 11:15:47 -06002451
2452 spin_lock(&dev_list_lock);
2453 ns->disk->private_data = NULL;
2454 spin_unlock(&dev_list_lock);
2455
Keith Busch9ac27092014-01-31 16:53:39 -07002456 put_disk(ns->disk);
2457 kfree(ns);
2458 }
2459}
2460
Keith Busch5e82e952013-02-19 10:17:58 -07002461static void nvme_free_dev(struct kref *kref)
2462{
2463 struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref);
Keith Busch9ac27092014-01-31 16:53:39 -07002464
Keith Buscha96d4f52014-08-19 19:15:59 -06002465 pci_dev_put(dev->pci_dev);
Keith Busch9ac27092014-01-31 16:53:39 -07002466 nvme_free_namespaces(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002467 blk_mq_free_tag_set(&dev->tagset);
Keith Busch5e82e952013-02-19 10:17:58 -07002468 kfree(dev->queues);
2469 kfree(dev->entry);
2470 kfree(dev);
2471}
2472
2473static int nvme_dev_open(struct inode *inode, struct file *f)
2474{
2475 struct nvme_dev *dev = container_of(f->private_data, struct nvme_dev,
2476 miscdev);
2477 kref_get(&dev->kref);
2478 f->private_data = dev;
2479 return 0;
2480}
2481
2482static int nvme_dev_release(struct inode *inode, struct file *f)
2483{
2484 struct nvme_dev *dev = f->private_data;
2485 kref_put(&dev->kref, nvme_free_dev);
2486 return 0;
2487}
2488
2489static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
2490{
2491 struct nvme_dev *dev = f->private_data;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002492 struct nvme_ns *ns;
2493
Keith Busch5e82e952013-02-19 10:17:58 -07002494 switch (cmd) {
2495 case NVME_IOCTL_ADMIN_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002496 return nvme_user_cmd(dev, NULL, (void __user *)arg);
Keith Busch7963e522014-09-12 16:07:20 -06002497 case NVME_IOCTL_IO_CMD:
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002498 if (list_empty(&dev->namespaces))
2499 return -ENOTTY;
2500 ns = list_first_entry(&dev->namespaces, struct nvme_ns, list);
2501 return nvme_user_cmd(dev, ns, (void __user *)arg);
Keith Busch5e82e952013-02-19 10:17:58 -07002502 default:
2503 return -ENOTTY;
2504 }
2505}
2506
2507static const struct file_operations nvme_dev_fops = {
2508 .owner = THIS_MODULE,
2509 .open = nvme_dev_open,
2510 .release = nvme_dev_release,
2511 .unlocked_ioctl = nvme_dev_ioctl,
2512 .compat_ioctl = nvme_dev_ioctl,
2513};
2514
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002515static void nvme_set_irq_hints(struct nvme_dev *dev)
2516{
2517 struct nvme_queue *nvmeq;
2518 int i;
2519
2520 for (i = 0; i < dev->online_queues; i++) {
2521 nvmeq = dev->queues[i];
2522
2523 if (!nvmeq->hctx)
2524 continue;
2525
2526 irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector,
2527 nvmeq->hctx->cpumask);
2528 }
2529}
2530
Keith Buschf0b50732013-07-15 15:02:21 -06002531static int nvme_dev_start(struct nvme_dev *dev)
2532{
2533 int result;
Dan McLeranb9afca32014-04-07 17:10:11 -06002534 bool start_thread = false;
Keith Buschf0b50732013-07-15 15:02:21 -06002535
2536 result = nvme_dev_map(dev);
2537 if (result)
2538 return result;
2539
2540 result = nvme_configure_admin_queue(dev);
2541 if (result)
2542 goto unmap;
2543
2544 spin_lock(&dev_list_lock);
Dan McLeranb9afca32014-04-07 17:10:11 -06002545 if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) {
2546 start_thread = true;
2547 nvme_thread = NULL;
2548 }
Keith Buschf0b50732013-07-15 15:02:21 -06002549 list_add(&dev->node, &dev_list);
2550 spin_unlock(&dev_list_lock);
2551
Dan McLeranb9afca32014-04-07 17:10:11 -06002552 if (start_thread) {
2553 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
Keith Busch387caa52014-09-22 13:46:19 -06002554 wake_up_all(&nvme_kthread_wait);
Dan McLeranb9afca32014-04-07 17:10:11 -06002555 } else
2556 wait_event_killable(nvme_kthread_wait, nvme_thread);
2557
2558 if (IS_ERR_OR_NULL(nvme_thread)) {
2559 result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR;
2560 goto disable;
2561 }
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002562
2563 nvme_init_queue(dev->queues[0], 0);
Dan McLeranb9afca32014-04-07 17:10:11 -06002564
Keith Buschf0b50732013-07-15 15:02:21 -06002565 result = nvme_setup_io_queues(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06002566 if (result)
Keith Buschf0b50732013-07-15 15:02:21 -06002567 goto disable;
2568
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002569 nvme_set_irq_hints(dev);
2570
Keith Buschd82e8bf2013-09-05 14:45:07 -06002571 return result;
Keith Buschf0b50732013-07-15 15:02:21 -06002572
2573 disable:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002574 nvme_disable_queue(dev, 0);
Dan McLeranb9afca32014-04-07 17:10:11 -06002575 nvme_dev_list_remove(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06002576 unmap:
2577 nvme_dev_unmap(dev);
2578 return result;
2579}
2580
Keith Busch9a6b9452013-12-10 13:10:36 -07002581static int nvme_remove_dead_ctrl(void *arg)
2582{
2583 struct nvme_dev *dev = (struct nvme_dev *)arg;
2584 struct pci_dev *pdev = dev->pci_dev;
2585
2586 if (pci_get_drvdata(pdev))
Keith Buschc81f4972014-06-23 15:24:53 -06002587 pci_stop_and_remove_bus_device_locked(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002588 kref_put(&dev->kref, nvme_free_dev);
2589 return 0;
2590}
2591
2592static void nvme_remove_disks(struct work_struct *ws)
2593{
Keith Busch9a6b9452013-12-10 13:10:36 -07002594 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
2595
Keith Busch5a92e702014-02-21 14:13:44 -07002596 nvme_free_queues(dev, 1);
Keith Busch302c6722014-07-18 11:40:20 -06002597 nvme_dev_remove(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002598}
2599
2600static int nvme_dev_resume(struct nvme_dev *dev)
2601{
2602 int ret;
2603
2604 ret = nvme_dev_start(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06002605 if (ret)
Keith Busch9a6b9452013-12-10 13:10:36 -07002606 return ret;
Keith Buschbadc34d2014-06-23 14:25:35 -06002607 if (dev->online_queues < 2) {
Keith Busch9a6b9452013-12-10 13:10:36 -07002608 spin_lock(&dev_list_lock);
Tejun Heo9ca97372014-03-07 10:24:49 -05002609 dev->reset_workfn = nvme_remove_disks;
Keith Busch9a6b9452013-12-10 13:10:36 -07002610 queue_work(nvme_workq, &dev->reset_work);
2611 spin_unlock(&dev_list_lock);
2612 }
Keith Buschd4b4ff82013-12-10 13:10:37 -07002613 dev->initialized = 1;
Keith Busch9a6b9452013-12-10 13:10:36 -07002614 return 0;
2615}
2616
2617static void nvme_dev_reset(struct nvme_dev *dev)
2618{
2619 nvme_dev_shutdown(dev);
2620 if (nvme_dev_resume(dev)) {
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002621 dev_warn(&dev->pci_dev->dev, "Device failed to resume\n");
Keith Busch9a6b9452013-12-10 13:10:36 -07002622 kref_get(&dev->kref);
2623 if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d",
2624 dev->instance))) {
2625 dev_err(&dev->pci_dev->dev,
2626 "Failed to start controller remove task\n");
2627 kref_put(&dev->kref, nvme_free_dev);
2628 }
2629 }
2630}
2631
2632static void nvme_reset_failed_dev(struct work_struct *ws)
2633{
2634 struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work);
2635 nvme_dev_reset(dev);
2636}
2637
Tejun Heo9ca97372014-03-07 10:24:49 -05002638static void nvme_reset_workfn(struct work_struct *work)
2639{
2640 struct nvme_dev *dev = container_of(work, struct nvme_dev, reset_work);
2641 dev->reset_workfn(work);
2642}
2643
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002644static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002645{
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002646 int node, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002647 struct nvme_dev *dev;
2648
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002649 node = dev_to_node(&pdev->dev);
2650 if (node == NUMA_NO_NODE)
2651 set_dev_node(&pdev->dev, 0);
2652
2653 dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002654 if (!dev)
2655 return -ENOMEM;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002656 dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry),
2657 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002658 if (!dev->entry)
2659 goto free;
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002660 dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *),
2661 GFP_KERNEL, node);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002662 if (!dev->queues)
2663 goto free;
2664
2665 INIT_LIST_HEAD(&dev->namespaces);
Tejun Heo9ca97372014-03-07 10:24:49 -05002666 dev->reset_workfn = nvme_reset_failed_dev;
2667 INIT_WORK(&dev->reset_work, nvme_reset_workfn);
Keith Buscha96d4f52014-08-19 19:15:59 -06002668 dev->pci_dev = pci_dev_get(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002669 pci_set_drvdata(pdev, dev);
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07002670 result = nvme_set_instance(dev);
2671 if (result)
Keith Buscha96d4f52014-08-19 19:15:59 -06002672 goto put_pci;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002673
Matthew Wilcox091b6092011-02-10 09:56:01 -05002674 result = nvme_setup_prp_pools(dev);
2675 if (result)
Keith Busch0877cb02013-07-15 15:02:19 -06002676 goto release;
Matthew Wilcox091b6092011-02-10 09:56:01 -05002677
Keith Buschfb35e912014-03-03 11:09:47 -07002678 kref_init(&dev->kref);
Keith Buschf0b50732013-07-15 15:02:21 -06002679 result = nvme_dev_start(dev);
Keith Buschbadc34d2014-06-23 14:25:35 -06002680 if (result)
Keith Busch0877cb02013-07-15 15:02:19 -06002681 goto release_pools;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002682
Keith Buschbadc34d2014-06-23 14:25:35 -06002683 if (dev->online_queues > 1)
2684 result = nvme_dev_add(dev);
Keith Buschd82e8bf2013-09-05 14:45:07 -06002685 if (result)
Keith Buschf0b50732013-07-15 15:02:21 -06002686 goto shutdown;
Matthew Wilcox740216f2011-02-15 16:28:20 -05002687
Keith Busch5e82e952013-02-19 10:17:58 -07002688 scnprintf(dev->name, sizeof(dev->name), "nvme%d", dev->instance);
2689 dev->miscdev.minor = MISC_DYNAMIC_MINOR;
2690 dev->miscdev.parent = &pdev->dev;
2691 dev->miscdev.name = dev->name;
2692 dev->miscdev.fops = &nvme_dev_fops;
2693 result = misc_register(&dev->miscdev);
2694 if (result)
2695 goto remove;
2696
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002697 nvme_set_irq_hints(dev);
2698
Keith Buschd4b4ff82013-12-10 13:10:37 -07002699 dev->initialized = 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002700 return 0;
2701
Keith Busch5e82e952013-02-19 10:17:58 -07002702 remove:
2703 nvme_dev_remove(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002704 nvme_dev_remove_admin(dev);
Keith Busch9ac27092014-01-31 16:53:39 -07002705 nvme_free_namespaces(dev);
Keith Buschf0b50732013-07-15 15:02:21 -06002706 shutdown:
2707 nvme_dev_shutdown(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002708 release_pools:
Keith Buscha1a5ef92013-12-16 13:50:00 -05002709 nvme_free_queues(dev, 0);
Matthew Wilcox091b6092011-02-10 09:56:01 -05002710 nvme_release_prp_pools(dev);
Keith Busch0877cb02013-07-15 15:02:19 -06002711 release:
2712 nvme_release_instance(dev);
Keith Buscha96d4f52014-08-19 19:15:59 -06002713 put_pci:
2714 pci_dev_put(dev->pci_dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002715 free:
2716 kfree(dev->queues);
2717 kfree(dev->entry);
2718 kfree(dev);
2719 return result;
2720}
2721
Keith Buschf0d54a52014-05-02 10:40:43 -06002722static void nvme_reset_notify(struct pci_dev *pdev, bool prepare)
2723{
Keith Buscha6739472014-06-23 16:03:21 -06002724 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Buschf0d54a52014-05-02 10:40:43 -06002725
Keith Buscha6739472014-06-23 16:03:21 -06002726 if (prepare)
2727 nvme_dev_shutdown(dev);
2728 else
2729 nvme_dev_resume(dev);
Keith Buschf0d54a52014-05-02 10:40:43 -06002730}
2731
Keith Busch09ece142014-01-27 11:29:40 -05002732static void nvme_shutdown(struct pci_dev *pdev)
2733{
2734 struct nvme_dev *dev = pci_get_drvdata(pdev);
2735 nvme_dev_shutdown(dev);
2736}
2737
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002738static void nvme_remove(struct pci_dev *pdev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002739{
2740 struct nvme_dev *dev = pci_get_drvdata(pdev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002741
2742 spin_lock(&dev_list_lock);
2743 list_del_init(&dev->node);
2744 spin_unlock(&dev_list_lock);
2745
2746 pci_set_drvdata(pdev, NULL);
2747 flush_work(&dev->reset_work);
Keith Busch5e82e952013-02-19 10:17:58 -07002748 misc_deregister(&dev->miscdev);
Keith Busch302c6722014-07-18 11:40:20 -06002749 nvme_dev_remove(dev);
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002750 nvme_dev_shutdown(dev);
2751 nvme_dev_remove_admin(dev);
2752 nvme_free_queues(dev, 0);
2753 nvme_free_admin_tags(dev);
Keith Busch9a6b9452013-12-10 13:10:36 -07002754 nvme_release_instance(dev);
2755 nvme_release_prp_pools(dev);
Keith Busch5e82e952013-02-19 10:17:58 -07002756 kref_put(&dev->kref, nvme_free_dev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002757}
2758
2759/* These functions are yet to be implemented */
2760#define nvme_error_detected NULL
2761#define nvme_dump_registers NULL
2762#define nvme_link_reset NULL
2763#define nvme_slot_reset NULL
2764#define nvme_error_resume NULL
Keith Buschcd638942013-07-15 15:02:23 -06002765
Jingoo Han671a6012014-02-13 11:19:14 +09002766#ifdef CONFIG_PM_SLEEP
Keith Buschcd638942013-07-15 15:02:23 -06002767static int nvme_suspend(struct device *dev)
2768{
2769 struct pci_dev *pdev = to_pci_dev(dev);
2770 struct nvme_dev *ndev = pci_get_drvdata(pdev);
2771
2772 nvme_dev_shutdown(ndev);
2773 return 0;
2774}
2775
2776static int nvme_resume(struct device *dev)
2777{
2778 struct pci_dev *pdev = to_pci_dev(dev);
2779 struct nvme_dev *ndev = pci_get_drvdata(pdev);
Keith Buschcd638942013-07-15 15:02:23 -06002780
Keith Busch9a6b9452013-12-10 13:10:36 -07002781 if (nvme_dev_resume(ndev) && !work_busy(&ndev->reset_work)) {
Tejun Heo9ca97372014-03-07 10:24:49 -05002782 ndev->reset_workfn = nvme_reset_failed_dev;
Keith Busch9a6b9452013-12-10 13:10:36 -07002783 queue_work(nvme_workq, &ndev->reset_work);
2784 }
2785 return 0;
Keith Buschcd638942013-07-15 15:02:23 -06002786}
Jingoo Han671a6012014-02-13 11:19:14 +09002787#endif
Keith Buschcd638942013-07-15 15:02:23 -06002788
2789static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002790
Stephen Hemminger1d352032012-09-07 09:33:17 -07002791static const struct pci_error_handlers nvme_err_handler = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002792 .error_detected = nvme_error_detected,
2793 .mmio_enabled = nvme_dump_registers,
2794 .link_reset = nvme_link_reset,
2795 .slot_reset = nvme_slot_reset,
2796 .resume = nvme_error_resume,
Keith Buschf0d54a52014-05-02 10:40:43 -06002797 .reset_notify = nvme_reset_notify,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002798};
2799
2800/* Move to pci_ids.h later */
2801#define PCI_CLASS_STORAGE_EXPRESS 0x010802
2802
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04002803static const struct pci_device_id nvme_id_table[] = {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002804 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
2805 { 0, }
2806};
2807MODULE_DEVICE_TABLE(pci, nvme_id_table);
2808
2809static struct pci_driver nvme_driver = {
2810 .name = "nvme",
2811 .id_table = nvme_id_table,
2812 .probe = nvme_probe,
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -08002813 .remove = nvme_remove,
Keith Busch09ece142014-01-27 11:29:40 -05002814 .shutdown = nvme_shutdown,
Keith Buschcd638942013-07-15 15:02:23 -06002815 .driver = {
2816 .pm = &nvme_dev_pm_ops,
2817 },
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002818 .err_handler = &nvme_err_handler,
2819};
2820
2821static int __init nvme_init(void)
2822{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04002823 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002824
Dan McLeranb9afca32014-04-07 17:10:11 -06002825 init_waitqueue_head(&nvme_kthread_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002826
Keith Busch9a6b9452013-12-10 13:10:36 -07002827 nvme_workq = create_singlethread_workqueue("nvme");
2828 if (!nvme_workq)
Dan McLeranb9afca32014-04-07 17:10:11 -06002829 return -ENOMEM;
Keith Busch9a6b9452013-12-10 13:10:36 -07002830
Keith Busch5c42ea12012-07-25 16:05:18 -06002831 result = register_blkdev(nvme_major, "nvme");
2832 if (result < 0)
Keith Busch9a6b9452013-12-10 13:10:36 -07002833 goto kill_workq;
Keith Busch5c42ea12012-07-25 16:05:18 -06002834 else if (result > 0)
Matthew Wilcox0ac13142012-07-31 13:31:15 -04002835 nvme_major = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002836
Keith Buschf3db22f2014-06-11 11:51:35 -06002837 result = pci_register_driver(&nvme_driver);
2838 if (result)
Matias Bjørlinga4aea562014-11-04 08:20:14 -07002839 goto unregister_blkdev;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002840 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002841
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05002842 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002843 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07002844 kill_workq:
2845 destroy_workqueue(nvme_workq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002846 return result;
2847}
2848
2849static void __exit nvme_exit(void)
2850{
2851 pci_unregister_driver(&nvme_driver);
Keith Buschf3db22f2014-06-11 11:51:35 -06002852 unregister_hotcpu_notifier(&nvme_nb);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002853 unregister_blkdev(nvme_major, "nvme");
Keith Busch9a6b9452013-12-10 13:10:36 -07002854 destroy_workqueue(nvme_workq);
Dan McLeranb9afca32014-04-07 17:10:11 -06002855 BUG_ON(nvme_thread && !IS_ERR(nvme_thread));
Matthew Wilcox21bd78b2014-05-09 22:42:26 -04002856 _nvme_check_size();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002857}
2858
2859MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
2860MODULE_LICENSE("GPL");
Matthew Wilcox6eb0d692014-03-24 10:11:22 -04002861MODULE_VERSION("0.9");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05002862module_init(nvme_init);
2863module_exit(nvme_exit);