Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1 | /* |
| 2 | * NVM Express device driver |
Matthew Wilcox | 6eb0d69 | 2014-03-24 10:11:22 -0400 | [diff] [blame] | 3 | * Copyright (c) 2011-2014, Intel Corporation. |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 4 | * |
| 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 Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <linux/nvme.h> |
Matthew Wilcox | 8de0553 | 2011-05-12 13:50:28 -0400 | [diff] [blame] | 16 | #include <linux/bitops.h> |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 17 | #include <linux/blkdev.h> |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 18 | #include <linux/blk-mq.h> |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 19 | #include <linux/cpu.h> |
Matthew Wilcox | fd63e9ce | 2011-05-06 08:37:54 -0400 | [diff] [blame] | 20 | #include <linux/delay.h> |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 21 | #include <linux/errno.h> |
| 22 | #include <linux/fs.h> |
| 23 | #include <linux/genhd.h> |
Keith Busch | 4cc09e2 | 2014-04-02 15:45:37 -0600 | [diff] [blame] | 24 | #include <linux/hdreg.h> |
Matthew Wilcox | 5aff938 | 2011-05-06 08:45:47 -0400 | [diff] [blame] | 25 | #include <linux/idr.h> |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 26 | #include <linux/init.h> |
| 27 | #include <linux/interrupt.h> |
| 28 | #include <linux/io.h> |
| 29 | #include <linux/kdev_t.h> |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 30 | #include <linux/kthread.h> |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 31 | #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 Wilcox | be7b627 | 2011-02-06 07:53:23 -0500 | [diff] [blame] | 36 | #include <linux/poison.h> |
Matthew Wilcox | c3bfe71 | 2013-07-08 17:26:25 -0400 | [diff] [blame] | 37 | #include <linux/ptrace.h> |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 38 | #include <linux/sched.h> |
| 39 | #include <linux/slab.h> |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 40 | #include <linux/t10-pi.h> |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 41 | #include <linux/types.h> |
Vishal Verma | 5d0f613 | 2013-03-04 18:40:58 -0700 | [diff] [blame] | 42 | #include <scsi/sg.h> |
Hitoshi Mitake | 797a796 | 2012-02-07 11:45:33 +0900 | [diff] [blame] | 43 | #include <asm-generic/io-64-nonatomic-lo-hi.h> |
| 44 | |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 45 | #define NVME_MINORS (1U << MINORBITS) |
Keith Busch | 9d43cf6 | 2014-05-13 11:42:02 -0600 | [diff] [blame] | 46 | #define NVME_Q_DEPTH 1024 |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 47 | #define NVME_AQ_DEPTH 64 |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 48 | #define SQ_SIZE(depth) (depth * sizeof(struct nvme_command)) |
| 49 | #define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion)) |
Keith Busch | 9d43cf6 | 2014-05-13 11:42:02 -0600 | [diff] [blame] | 50 | #define ADMIN_TIMEOUT (admin_timeout * HZ) |
Dan McLeran | 2484f40 | 2014-07-01 09:33:32 -0600 | [diff] [blame] | 51 | #define SHUTDOWN_TIMEOUT (shutdown_timeout * HZ) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 52 | |
Keith Busch | 9d43cf6 | 2014-05-13 11:42:02 -0600 | [diff] [blame] | 53 | static unsigned char admin_timeout = 60; |
| 54 | module_param(admin_timeout, byte, 0644); |
| 55 | MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands"); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 56 | |
Matthew Wilcox | bd67608 | 2014-06-03 23:04:30 -0400 | [diff] [blame] | 57 | unsigned char nvme_io_timeout = 30; |
| 58 | module_param_named(io_timeout, nvme_io_timeout, byte, 0644); |
Keith Busch | b355084 | 2014-04-04 11:43:36 -0600 | [diff] [blame] | 59 | MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O"); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 60 | |
Dan McLeran | 2484f40 | 2014-07-01 09:33:32 -0600 | [diff] [blame] | 61 | static unsigned char shutdown_timeout = 5; |
| 62 | module_param(shutdown_timeout, byte, 0644); |
| 63 | MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown"); |
| 64 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 65 | static int nvme_major; |
| 66 | module_param(nvme_major, int, 0); |
| 67 | |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 68 | static int nvme_char_major; |
| 69 | module_param(nvme_char_major, int, 0); |
| 70 | |
Matthew Wilcox | 58ffacb | 2011-02-06 07:28:06 -0500 | [diff] [blame] | 71 | static int use_threaded_interrupts; |
| 72 | module_param(use_threaded_interrupts, int, 0); |
| 73 | |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 74 | static DEFINE_SPINLOCK(dev_list_lock); |
| 75 | static LIST_HEAD(dev_list); |
| 76 | static struct task_struct *nvme_thread; |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 77 | static struct workqueue_struct *nvme_workq; |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 78 | static wait_queue_head_t nvme_kthread_wait; |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 79 | |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 80 | static struct class *nvme_class; |
| 81 | |
Keith Busch | d4b4ff8 | 2013-12-10 13:10:37 -0700 | [diff] [blame] | 82 | static void nvme_reset_failed_dev(struct work_struct *ws); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 83 | static int nvme_process_cq(struct nvme_queue *nvmeq); |
Keith Busch | d4b4ff8 | 2013-12-10 13:10:37 -0700 | [diff] [blame] | 84 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 85 | struct async_cmd_info { |
| 86 | struct kthread_work work; |
| 87 | struct kthread_worker *worker; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 88 | struct request *req; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 89 | u32 result; |
| 90 | int status; |
| 91 | void *ctx; |
| 92 | }; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 93 | |
| 94 | /* |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 95 | * An NVM Express queue. Each device has at least two (one for admin |
| 96 | * commands and one for I/O commands). |
| 97 | */ |
| 98 | struct nvme_queue { |
| 99 | struct device *q_dmadev; |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 100 | struct nvme_dev *dev; |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 101 | char irqname[24]; /* nvme4294967295-65535\0 */ |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 102 | 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 Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 107 | u32 __iomem *q_db; |
| 108 | u16 q_depth; |
Jens Axboe | 6222d17 | 2015-01-15 15:19:10 -0700 | [diff] [blame] | 109 | s16 cq_vector; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 110 | u16 sq_head; |
| 111 | u16 sq_tail; |
| 112 | u16 cq_head; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 113 | u16 qid; |
Matthew Wilcox | e9539f4 | 2013-06-24 11:47:34 -0400 | [diff] [blame] | 114 | u8 cq_phase; |
| 115 | u8 cqe_seen; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 116 | struct async_cmd_info cmdinfo; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 117 | struct blk_mq_hw_ctx *hctx; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | /* |
| 121 | * Check we didin't inadvertently grow the command struct |
| 122 | */ |
| 123 | static 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 Verma | f8ebf84 | 2013-03-27 07:13:41 -0400 | [diff] [blame] | 130 | BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64); |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 131 | BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 132 | 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 Busch | 6ecec74 | 2012-09-26 12:49:27 -0600 | [diff] [blame] | 136 | BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 137 | } |
| 138 | |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 139 | typedef void (*nvme_completion_fn)(struct nvme_queue *, void *, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 140 | struct nvme_completion *); |
| 141 | |
Matthew Wilcox | e85248e | 2011-02-06 18:30:16 -0500 | [diff] [blame] | 142 | struct nvme_cmd_info { |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 143 | nvme_completion_fn fn; |
| 144 | void *ctx; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 145 | int aborted; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 146 | struct nvme_queue *nvmeq; |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 147 | struct nvme_iod iod[0]; |
Matthew Wilcox | e85248e | 2011-02-06 18:30:16 -0500 | [diff] [blame] | 148 | }; |
| 149 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 150 | /* |
| 151 | * Max size of iod being embedded in the request payload |
| 152 | */ |
| 153 | #define NVME_INT_PAGES 2 |
| 154 | #define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->page_size) |
| 155 | |
| 156 | /* |
| 157 | * Will slightly overestimate the number of pages needed. This is OK |
| 158 | * as it only leads to a small amount of wasted memory for the lifetime of |
| 159 | * the I/O. |
| 160 | */ |
| 161 | static int nvme_npages(unsigned size, struct nvme_dev *dev) |
| 162 | { |
| 163 | unsigned nprps = DIV_ROUND_UP(size + dev->page_size, dev->page_size); |
| 164 | return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8); |
| 165 | } |
| 166 | |
| 167 | static unsigned int nvme_cmd_size(struct nvme_dev *dev) |
| 168 | { |
| 169 | unsigned int ret = sizeof(struct nvme_cmd_info); |
| 170 | |
| 171 | ret += sizeof(struct nvme_iod); |
| 172 | ret += sizeof(__le64 *) * nvme_npages(NVME_INT_BYTES(dev), dev); |
| 173 | ret += sizeof(struct scatterlist) * NVME_INT_PAGES; |
| 174 | |
| 175 | return ret; |
| 176 | } |
| 177 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 178 | static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data, |
| 179 | unsigned int hctx_idx) |
Matthew Wilcox | e85248e | 2011-02-06 18:30:16 -0500 | [diff] [blame] | 180 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 181 | struct nvme_dev *dev = data; |
| 182 | struct nvme_queue *nvmeq = dev->queues[0]; |
| 183 | |
| 184 | WARN_ON(nvmeq->hctx); |
| 185 | nvmeq->hctx = hctx; |
| 186 | hctx->driver_data = nvmeq; |
| 187 | return 0; |
Matthew Wilcox | e85248e | 2011-02-06 18:30:16 -0500 | [diff] [blame] | 188 | } |
| 189 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 190 | static int nvme_admin_init_request(void *data, struct request *req, |
| 191 | unsigned int hctx_idx, unsigned int rq_idx, |
| 192 | unsigned int numa_node) |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 193 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 194 | struct nvme_dev *dev = data; |
| 195 | struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req); |
| 196 | struct nvme_queue *nvmeq = dev->queues[0]; |
| 197 | |
| 198 | BUG_ON(!nvmeq); |
| 199 | cmd->nvmeq = nvmeq; |
| 200 | return 0; |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 201 | } |
| 202 | |
Jens Axboe | 2c30540b | 2014-11-14 09:47:32 -0700 | [diff] [blame] | 203 | static void nvme_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx) |
| 204 | { |
| 205 | struct nvme_queue *nvmeq = hctx->driver_data; |
| 206 | |
| 207 | nvmeq->hctx = NULL; |
| 208 | } |
| 209 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 210 | static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data, |
| 211 | unsigned int hctx_idx) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 212 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 213 | struct nvme_dev *dev = data; |
| 214 | struct nvme_queue *nvmeq = dev->queues[ |
| 215 | (hctx_idx % dev->queue_count) + 1]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 216 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 217 | if (!nvmeq->hctx) |
| 218 | nvmeq->hctx = hctx; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 219 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 220 | /* nvmeq queues are shared between namespaces. We assume here that |
| 221 | * blk-mq map the tags so they match up with the nvme queue tags. */ |
| 222 | WARN_ON(nvmeq->hctx->tags != hctx->tags); |
| 223 | |
| 224 | hctx->driver_data = nvmeq; |
| 225 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 226 | } |
| 227 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 228 | static int nvme_init_request(void *data, struct request *req, |
| 229 | unsigned int hctx_idx, unsigned int rq_idx, |
| 230 | unsigned int numa_node) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 231 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 232 | struct nvme_dev *dev = data; |
| 233 | struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req); |
| 234 | struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1]; |
| 235 | |
| 236 | BUG_ON(!nvmeq); |
| 237 | cmd->nvmeq = nvmeq; |
| 238 | return 0; |
| 239 | } |
| 240 | |
| 241 | static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx, |
| 242 | nvme_completion_fn handler) |
| 243 | { |
| 244 | cmd->fn = handler; |
| 245 | cmd->ctx = ctx; |
| 246 | cmd->aborted = 0; |
Keith Busch | c917dfe | 2015-01-07 18:55:48 -0700 | [diff] [blame] | 247 | blk_mq_start_request(blk_mq_rq_from_pdu(cmd)); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 248 | } |
| 249 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 250 | static void *iod_get_private(struct nvme_iod *iod) |
| 251 | { |
| 252 | return (void *) (iod->private & ~0x1UL); |
| 253 | } |
| 254 | |
| 255 | /* |
| 256 | * If bit 0 is set, the iod is embedded in the request payload. |
| 257 | */ |
| 258 | static bool iod_should_kfree(struct nvme_iod *iod) |
| 259 | { |
| 260 | return (iod->private & 0x01) == 0; |
| 261 | } |
| 262 | |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 263 | /* Special values must be less than 0x1000 */ |
| 264 | #define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA) |
Matthew Wilcox | d2d8703 | 2011-02-07 15:55:59 -0500 | [diff] [blame] | 265 | #define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE) |
| 266 | #define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE) |
| 267 | #define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE) |
Matthew Wilcox | be7b627 | 2011-02-06 07:53:23 -0500 | [diff] [blame] | 268 | |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 269 | static void special_completion(struct nvme_queue *nvmeq, void *ctx, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 270 | struct nvme_completion *cqe) |
| 271 | { |
| 272 | if (ctx == CMD_CTX_CANCELLED) |
| 273 | return; |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 274 | if (ctx == CMD_CTX_COMPLETED) { |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 275 | dev_warn(nvmeq->q_dmadev, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 276 | "completed id %d twice on queue %d\n", |
| 277 | cqe->command_id, le16_to_cpup(&cqe->sq_id)); |
| 278 | return; |
| 279 | } |
| 280 | if (ctx == CMD_CTX_INVALID) { |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 281 | dev_warn(nvmeq->q_dmadev, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 282 | "invalid id %d completed on queue %d\n", |
| 283 | cqe->command_id, le16_to_cpup(&cqe->sq_id)); |
| 284 | return; |
| 285 | } |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 286 | dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx); |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 287 | } |
| 288 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 289 | static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn) |
| 290 | { |
| 291 | void *ctx; |
| 292 | |
| 293 | if (fn) |
| 294 | *fn = cmd->fn; |
| 295 | ctx = cmd->ctx; |
| 296 | cmd->fn = special_completion; |
| 297 | cmd->ctx = CMD_CTX_CANCELLED; |
| 298 | return ctx; |
| 299 | } |
| 300 | |
| 301 | static void async_req_completion(struct nvme_queue *nvmeq, void *ctx, |
| 302 | struct nvme_completion *cqe) |
| 303 | { |
| 304 | struct request *req = ctx; |
| 305 | |
| 306 | u32 result = le32_to_cpup(&cqe->result); |
| 307 | u16 status = le16_to_cpup(&cqe->status) >> 1; |
| 308 | |
| 309 | if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ) |
| 310 | ++nvmeq->dev->event_limit; |
| 311 | if (status == NVME_SC_SUCCESS) |
| 312 | dev_warn(nvmeq->q_dmadev, |
| 313 | "async event result %08x\n", result); |
| 314 | |
Jens Axboe | 9d135bb | 2014-11-17 10:43:42 -0700 | [diff] [blame] | 315 | blk_mq_free_hctx_request(nvmeq->hctx, req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | static void abort_completion(struct nvme_queue *nvmeq, void *ctx, |
| 319 | struct nvme_completion *cqe) |
| 320 | { |
| 321 | struct request *req = ctx; |
| 322 | |
| 323 | u16 status = le16_to_cpup(&cqe->status) >> 1; |
| 324 | u32 result = le32_to_cpup(&cqe->result); |
| 325 | |
Jens Axboe | 9d135bb | 2014-11-17 10:43:42 -0700 | [diff] [blame] | 326 | blk_mq_free_hctx_request(nvmeq->hctx, req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 327 | |
| 328 | dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result); |
| 329 | ++nvmeq->dev->abort_limit; |
| 330 | } |
| 331 | |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 332 | static void async_completion(struct nvme_queue *nvmeq, void *ctx, |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 333 | struct nvme_completion *cqe) |
| 334 | { |
| 335 | struct async_cmd_info *cmdinfo = ctx; |
| 336 | cmdinfo->result = le32_to_cpup(&cqe->result); |
| 337 | cmdinfo->status = le16_to_cpup(&cqe->status) >> 1; |
| 338 | queue_kthread_work(cmdinfo->worker, &cmdinfo->work); |
Jens Axboe | 9d135bb | 2014-11-17 10:43:42 -0700 | [diff] [blame] | 339 | blk_mq_free_hctx_request(nvmeq->hctx, cmdinfo->req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq, |
| 343 | unsigned int tag) |
| 344 | { |
| 345 | struct blk_mq_hw_ctx *hctx = nvmeq->hctx; |
| 346 | struct request *req = blk_mq_tag_to_rq(hctx->tags, tag); |
| 347 | |
| 348 | return blk_mq_rq_to_pdu(req); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 349 | } |
| 350 | |
Matthew Wilcox | 184d294 | 2011-05-11 21:36:38 -0400 | [diff] [blame] | 351 | /* |
| 352 | * Called with local interrupts disabled and the q_lock held. May not sleep. |
| 353 | */ |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 354 | static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 355 | nvme_completion_fn *fn) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 356 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 357 | struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag); |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 358 | void *ctx; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 359 | if (tag >= nvmeq->q_depth) { |
| 360 | *fn = special_completion; |
Matthew Wilcox | 48e3d39 | 2011-02-06 08:51:15 -0500 | [diff] [blame] | 361 | return CMD_CTX_INVALID; |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 362 | } |
Keith Busch | 859361a | 2012-08-02 14:05:59 -0600 | [diff] [blame] | 363 | if (fn) |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 364 | *fn = cmd->fn; |
| 365 | ctx = cmd->ctx; |
| 366 | cmd->fn = special_completion; |
| 367 | cmd->ctx = CMD_CTX_COMPLETED; |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 368 | return ctx; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 369 | } |
| 370 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 371 | /** |
Matthew Wilcox | 714a7a2 | 2011-03-16 16:28:24 -0400 | [diff] [blame] | 372 | * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 373 | * @nvmeq: The queue to use |
| 374 | * @cmd: The command to send |
| 375 | * |
| 376 | * Safe to use from interrupt context |
| 377 | */ |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 378 | static int __nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 379 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 380 | u16 tail = nvmeq->sq_tail; |
| 381 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 382 | memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd)); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 383 | if (++tail == nvmeq->q_depth) |
| 384 | tail = 0; |
Matthew Wilcox | 7547881 | 2011-02-16 09:59:59 -0500 | [diff] [blame] | 385 | writel(tail, nvmeq->q_db); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 386 | nvmeq->sq_tail = tail; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 387 | |
| 388 | return 0; |
| 389 | } |
| 390 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 391 | static int nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd) |
| 392 | { |
| 393 | unsigned long flags; |
| 394 | int ret; |
| 395 | spin_lock_irqsave(&nvmeq->q_lock, flags); |
| 396 | ret = __nvme_submit_cmd(nvmeq, cmd); |
| 397 | spin_unlock_irqrestore(&nvmeq->q_lock, flags); |
| 398 | return ret; |
| 399 | } |
| 400 | |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 401 | static __le64 **iod_list(struct nvme_iod *iod) |
| 402 | { |
| 403 | return ((void *)iod) + iod->offset; |
| 404 | } |
| 405 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 406 | static inline void iod_init(struct nvme_iod *iod, unsigned nbytes, |
| 407 | unsigned nseg, unsigned long private) |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 408 | { |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 409 | iod->private = private; |
| 410 | iod->offset = offsetof(struct nvme_iod, sg[nseg]); |
| 411 | iod->npages = -1; |
| 412 | iod->length = nbytes; |
| 413 | iod->nents = 0; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | static struct nvme_iod * |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 417 | __nvme_alloc_iod(unsigned nseg, unsigned bytes, struct nvme_dev *dev, |
| 418 | unsigned long priv, gfp_t gfp) |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 419 | { |
| 420 | struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) + |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 421 | sizeof(__le64 *) * nvme_npages(bytes, dev) + |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 422 | sizeof(struct scatterlist) * nseg, gfp); |
| 423 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 424 | if (iod) |
| 425 | iod_init(iod, bytes, nseg, priv); |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 426 | |
| 427 | return iod; |
| 428 | } |
| 429 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 430 | static struct nvme_iod *nvme_alloc_iod(struct request *rq, struct nvme_dev *dev, |
| 431 | gfp_t gfp) |
| 432 | { |
| 433 | unsigned size = !(rq->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(rq) : |
| 434 | sizeof(struct nvme_dsm_range); |
| 435 | unsigned long mask = 0; |
| 436 | struct nvme_iod *iod; |
| 437 | |
| 438 | if (rq->nr_phys_segments <= NVME_INT_PAGES && |
| 439 | size <= NVME_INT_BYTES(dev)) { |
| 440 | struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(rq); |
| 441 | |
| 442 | iod = cmd->iod; |
| 443 | mask = 0x01; |
| 444 | iod_init(iod, size, rq->nr_phys_segments, |
| 445 | (unsigned long) rq | 0x01); |
| 446 | return iod; |
| 447 | } |
| 448 | |
| 449 | return __nvme_alloc_iod(rq->nr_phys_segments, size, dev, |
| 450 | (unsigned long) rq, gfp); |
| 451 | } |
| 452 | |
Vishal Verma | 5d0f613 | 2013-03-04 18:40:58 -0700 | [diff] [blame] | 453 | void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod) |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 454 | { |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 455 | const int last_prp = dev->page_size / 8 - 1; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 456 | int i; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 457 | __le64 **list = iod_list(iod); |
| 458 | dma_addr_t prp_dma = iod->first_dma; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 459 | |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 460 | if (iod->npages == 0) |
| 461 | dma_pool_free(dev->prp_small_pool, list[0], prp_dma); |
| 462 | for (i = 0; i < iod->npages; i++) { |
| 463 | __le64 *prp_list = list[i]; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 464 | dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]); |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 465 | dma_pool_free(dev->prp_page_pool, prp_list, prp_dma); |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 466 | prp_dma = next_prp_dma; |
| 467 | } |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 468 | |
| 469 | if (iod_should_kfree(iod)) |
| 470 | kfree(iod); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 471 | } |
| 472 | |
Keith Busch | b4ff9c8 | 2014-08-29 09:06:12 -0600 | [diff] [blame] | 473 | static int nvme_error_status(u16 status) |
| 474 | { |
| 475 | switch (status & 0x7ff) { |
| 476 | case NVME_SC_SUCCESS: |
| 477 | return 0; |
| 478 | case NVME_SC_CAP_EXCEEDED: |
| 479 | return -ENOSPC; |
| 480 | default: |
| 481 | return -EIO; |
| 482 | } |
| 483 | } |
| 484 | |
Keith Busch | 52b68d7 | 2015-02-23 09:16:21 -0700 | [diff] [blame] | 485 | #ifdef CONFIG_BLK_DEV_INTEGRITY |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 486 | static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi) |
| 487 | { |
| 488 | if (be32_to_cpu(pi->ref_tag) == v) |
| 489 | pi->ref_tag = cpu_to_be32(p); |
| 490 | } |
| 491 | |
| 492 | static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi) |
| 493 | { |
| 494 | if (be32_to_cpu(pi->ref_tag) == p) |
| 495 | pi->ref_tag = cpu_to_be32(v); |
| 496 | } |
| 497 | |
| 498 | /** |
| 499 | * nvme_dif_remap - remaps ref tags to bip seed and physical lba |
| 500 | * |
| 501 | * The virtual start sector is the one that was originally submitted by the |
| 502 | * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical |
| 503 | * start sector may be different. Remap protection information to match the |
| 504 | * physical LBA on writes, and back to the original seed on reads. |
| 505 | * |
| 506 | * Type 0 and 3 do not have a ref tag, so no remapping required. |
| 507 | */ |
| 508 | static void nvme_dif_remap(struct request *req, |
| 509 | void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi)) |
| 510 | { |
| 511 | struct nvme_ns *ns = req->rq_disk->private_data; |
| 512 | struct bio_integrity_payload *bip; |
| 513 | struct t10_pi_tuple *pi; |
| 514 | void *p, *pmap; |
| 515 | u32 i, nlb, ts, phys, virt; |
| 516 | |
| 517 | if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3) |
| 518 | return; |
| 519 | |
| 520 | bip = bio_integrity(req->bio); |
| 521 | if (!bip) |
| 522 | return; |
| 523 | |
| 524 | pmap = kmap_atomic(bip->bip_vec->bv_page) + bip->bip_vec->bv_offset; |
| 525 | if (!pmap) |
| 526 | return; |
| 527 | |
| 528 | p = pmap; |
| 529 | virt = bip_get_seed(bip); |
| 530 | phys = nvme_block_nr(ns, blk_rq_pos(req)); |
| 531 | nlb = (blk_rq_bytes(req) >> ns->lba_shift); |
| 532 | ts = ns->disk->integrity->tuple_size; |
| 533 | |
| 534 | for (i = 0; i < nlb; i++, virt++, phys++) { |
| 535 | pi = (struct t10_pi_tuple *)p; |
| 536 | dif_swap(phys, virt, pi); |
| 537 | p += ts; |
| 538 | } |
| 539 | kunmap_atomic(pmap); |
| 540 | } |
| 541 | |
Keith Busch | 52b68d7 | 2015-02-23 09:16:21 -0700 | [diff] [blame] | 542 | static int nvme_noop_verify(struct blk_integrity_iter *iter) |
| 543 | { |
| 544 | return 0; |
| 545 | } |
| 546 | |
| 547 | static int nvme_noop_generate(struct blk_integrity_iter *iter) |
| 548 | { |
| 549 | return 0; |
| 550 | } |
| 551 | |
| 552 | struct blk_integrity nvme_meta_noop = { |
| 553 | .name = "NVME_META_NOOP", |
| 554 | .generate_fn = nvme_noop_generate, |
| 555 | .verify_fn = nvme_noop_verify, |
| 556 | }; |
| 557 | |
| 558 | static void nvme_init_integrity(struct nvme_ns *ns) |
| 559 | { |
| 560 | struct blk_integrity integrity; |
| 561 | |
| 562 | switch (ns->pi_type) { |
| 563 | case NVME_NS_DPS_PI_TYPE3: |
| 564 | integrity = t10_pi_type3_crc; |
| 565 | break; |
| 566 | case NVME_NS_DPS_PI_TYPE1: |
| 567 | case NVME_NS_DPS_PI_TYPE2: |
| 568 | integrity = t10_pi_type1_crc; |
| 569 | break; |
| 570 | default: |
| 571 | integrity = nvme_meta_noop; |
| 572 | break; |
| 573 | } |
| 574 | integrity.tuple_size = ns->ms; |
| 575 | blk_integrity_register(ns->disk, &integrity); |
| 576 | blk_queue_max_integrity_segments(ns->queue, 1); |
| 577 | } |
| 578 | #else /* CONFIG_BLK_DEV_INTEGRITY */ |
| 579 | static void nvme_dif_remap(struct request *req, |
| 580 | void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi)) |
| 581 | { |
| 582 | } |
| 583 | static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi) |
| 584 | { |
| 585 | } |
| 586 | static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi) |
| 587 | { |
| 588 | } |
| 589 | static void nvme_init_integrity(struct nvme_ns *ns) |
| 590 | { |
| 591 | } |
| 592 | #endif |
| 593 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 594 | static void req_completion(struct nvme_queue *nvmeq, void *ctx, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 595 | struct nvme_completion *cqe) |
| 596 | { |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 597 | struct nvme_iod *iod = ctx; |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 598 | struct request *req = iod_get_private(iod); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 599 | struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req); |
| 600 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 601 | u16 status = le16_to_cpup(&cqe->status) >> 1; |
| 602 | |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 603 | if (unlikely(status)) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 604 | if (!(status & NVME_SC_DNR || blk_noretry_request(req)) |
| 605 | && (jiffies - req->start_time) < req->timeout) { |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 606 | unsigned long flags; |
| 607 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 608 | blk_mq_requeue_request(req); |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 609 | spin_lock_irqsave(req->q->queue_lock, flags); |
| 610 | if (!blk_queue_stopped(req->q)) |
| 611 | blk_mq_kick_requeue_list(req->q); |
| 612 | spin_unlock_irqrestore(req->q->queue_lock, flags); |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 613 | return; |
| 614 | } |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 615 | req->errors = nvme_error_status(status); |
| 616 | } else |
| 617 | req->errors = 0; |
| 618 | |
| 619 | if (cmd_rq->aborted) |
| 620 | dev_warn(&nvmeq->dev->pci_dev->dev, |
| 621 | "completing aborted command with status:%04x\n", |
| 622 | status); |
| 623 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 624 | if (iod->nents) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 625 | dma_unmap_sg(&nvmeq->dev->pci_dev->dev, iod->sg, iod->nents, |
| 626 | rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE); |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 627 | if (blk_integrity_rq(req)) { |
| 628 | if (!rq_data_dir(req)) |
| 629 | nvme_dif_remap(req, nvme_dif_complete); |
| 630 | dma_unmap_sg(&nvmeq->dev->pci_dev->dev, iod->meta_sg, 1, |
| 631 | rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE); |
| 632 | } |
| 633 | } |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 634 | nvme_free_iod(nvmeq->dev, iod); |
Keith Busch | 3291fa5 | 2014-04-28 12:30:52 -0600 | [diff] [blame] | 635 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 636 | blk_mq_complete_request(req); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 637 | } |
| 638 | |
Matthew Wilcox | 184d294 | 2011-05-11 21:36:38 -0400 | [diff] [blame] | 639 | /* length is in bytes. gfp flags indicates whether we may sleep. */ |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 640 | int nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod, int total_len, |
| 641 | gfp_t gfp) |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 642 | { |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 643 | struct dma_pool *pool; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 644 | int length = total_len; |
| 645 | struct scatterlist *sg = iod->sg; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 646 | int dma_len = sg_dma_len(sg); |
| 647 | u64 dma_addr = sg_dma_address(sg); |
| 648 | int offset = offset_in_page(dma_addr); |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 649 | __le64 *prp_list; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 650 | __le64 **list = iod_list(iod); |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 651 | dma_addr_t prp_dma; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 652 | int nprps, i; |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 653 | u32 page_size = dev->page_size; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 654 | |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 655 | length -= (page_size - offset); |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 656 | if (length <= 0) |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 657 | return total_len; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 658 | |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 659 | dma_len -= (page_size - offset); |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 660 | if (dma_len) { |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 661 | dma_addr += (page_size - offset); |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 662 | } else { |
| 663 | sg = sg_next(sg); |
| 664 | dma_addr = sg_dma_address(sg); |
| 665 | dma_len = sg_dma_len(sg); |
| 666 | } |
| 667 | |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 668 | if (length <= page_size) { |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 669 | iod->first_dma = dma_addr; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 670 | return total_len; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 671 | } |
| 672 | |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 673 | nprps = DIV_ROUND_UP(length, page_size); |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 674 | if (nprps <= (256 / 8)) { |
| 675 | pool = dev->prp_small_pool; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 676 | iod->npages = 0; |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 677 | } else { |
| 678 | pool = dev->prp_page_pool; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 679 | iod->npages = 1; |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 680 | } |
| 681 | |
Matthew Wilcox | b77954c | 2011-05-12 13:51:41 -0400 | [diff] [blame] | 682 | prp_list = dma_pool_alloc(pool, gfp, &prp_dma); |
| 683 | if (!prp_list) { |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 684 | iod->first_dma = dma_addr; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 685 | iod->npages = -1; |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 686 | return (total_len - length) + page_size; |
Matthew Wilcox | b77954c | 2011-05-12 13:51:41 -0400 | [diff] [blame] | 687 | } |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 688 | list[0] = prp_list; |
| 689 | iod->first_dma = prp_dma; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 690 | i = 0; |
| 691 | for (;;) { |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 692 | if (i == page_size >> 3) { |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 693 | __le64 *old_prp_list = prp_list; |
Matthew Wilcox | b77954c | 2011-05-12 13:51:41 -0400 | [diff] [blame] | 694 | prp_list = dma_pool_alloc(pool, gfp, &prp_dma); |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 695 | if (!prp_list) |
| 696 | return total_len - length; |
| 697 | list[iod->npages++] = prp_list; |
Matthew Wilcox | 7523d83 | 2011-03-16 16:43:40 -0400 | [diff] [blame] | 698 | prp_list[0] = old_prp_list[i - 1]; |
| 699 | old_prp_list[i - 1] = cpu_to_le64(prp_dma); |
| 700 | i = 1; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 701 | } |
| 702 | prp_list[i++] = cpu_to_le64(dma_addr); |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 703 | dma_len -= page_size; |
| 704 | dma_addr += page_size; |
| 705 | length -= page_size; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 706 | if (length <= 0) |
| 707 | break; |
| 708 | if (dma_len > 0) |
| 709 | continue; |
| 710 | BUG_ON(dma_len < 0); |
| 711 | sg = sg_next(sg); |
| 712 | dma_addr = sg_dma_address(sg); |
| 713 | dma_len = sg_dma_len(sg); |
| 714 | } |
| 715 | |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 716 | return total_len; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 717 | } |
| 718 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 719 | /* |
| 720 | * We reuse the small pool to allocate the 16-byte range here as it is not |
| 721 | * worth having a special pool for these or additional cases to handle freeing |
| 722 | * the iod. |
| 723 | */ |
| 724 | static void nvme_submit_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns, |
| 725 | struct request *req, struct nvme_iod *iod) |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 726 | { |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 727 | struct nvme_dsm_range *range = |
| 728 | (struct nvme_dsm_range *)iod_list(iod)[0]; |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 729 | struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail]; |
| 730 | |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 731 | range->cattr = cpu_to_le32(0); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 732 | range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift); |
| 733 | range->slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req))); |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 734 | |
| 735 | memset(cmnd, 0, sizeof(*cmnd)); |
| 736 | cmnd->dsm.opcode = nvme_cmd_dsm; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 737 | cmnd->dsm.command_id = req->tag; |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 738 | cmnd->dsm.nsid = cpu_to_le32(ns->ns_id); |
| 739 | cmnd->dsm.prp1 = cpu_to_le64(iod->first_dma); |
| 740 | cmnd->dsm.nr = 0; |
| 741 | cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD); |
| 742 | |
| 743 | if (++nvmeq->sq_tail == nvmeq->q_depth) |
| 744 | nvmeq->sq_tail = 0; |
| 745 | writel(nvmeq->sq_tail, nvmeq->q_db); |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 746 | } |
| 747 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 748 | static void nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns, |
Matthew Wilcox | 00df5cb | 2011-02-22 14:18:30 -0500 | [diff] [blame] | 749 | int cmdid) |
| 750 | { |
| 751 | struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail]; |
| 752 | |
| 753 | memset(cmnd, 0, sizeof(*cmnd)); |
| 754 | cmnd->common.opcode = nvme_cmd_flush; |
| 755 | cmnd->common.command_id = cmdid; |
| 756 | cmnd->common.nsid = cpu_to_le32(ns->ns_id); |
| 757 | |
| 758 | if (++nvmeq->sq_tail == nvmeq->q_depth) |
| 759 | nvmeq->sq_tail = 0; |
| 760 | writel(nvmeq->sq_tail, nvmeq->q_db); |
Matthew Wilcox | 00df5cb | 2011-02-22 14:18:30 -0500 | [diff] [blame] | 761 | } |
| 762 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 763 | static int nvme_submit_iod(struct nvme_queue *nvmeq, struct nvme_iod *iod, |
| 764 | struct nvme_ns *ns) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 765 | { |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 766 | struct request *req = iod_get_private(iod); |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 767 | struct nvme_command *cmnd; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 768 | u16 control = 0; |
| 769 | u32 dsmgmt = 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 770 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 771 | if (req->cmd_flags & REQ_FUA) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 772 | control |= NVME_RW_FUA; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 773 | if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD)) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 774 | control |= NVME_RW_LR; |
| 775 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 776 | if (req->cmd_flags & REQ_RAHEAD) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 777 | dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH; |
| 778 | |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 779 | cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail]; |
Matthew Wilcox | b8deb62 | 2011-01-26 10:08:25 -0500 | [diff] [blame] | 780 | memset(cmnd, 0, sizeof(*cmnd)); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 781 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 782 | cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read); |
| 783 | cmnd->rw.command_id = req->tag; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 784 | cmnd->rw.nsid = cpu_to_le32(ns->ns_id); |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 785 | cmnd->rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg)); |
| 786 | cmnd->rw.prp2 = cpu_to_le64(iod->first_dma); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 787 | cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req))); |
| 788 | cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1); |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 789 | |
| 790 | if (blk_integrity_rq(req)) { |
| 791 | cmnd->rw.metadata = cpu_to_le64(sg_dma_address(iod->meta_sg)); |
| 792 | switch (ns->pi_type) { |
| 793 | case NVME_NS_DPS_PI_TYPE3: |
| 794 | control |= NVME_RW_PRINFO_PRCHK_GUARD; |
| 795 | break; |
| 796 | case NVME_NS_DPS_PI_TYPE1: |
| 797 | case NVME_NS_DPS_PI_TYPE2: |
| 798 | control |= NVME_RW_PRINFO_PRCHK_GUARD | |
| 799 | NVME_RW_PRINFO_PRCHK_REF; |
| 800 | cmnd->rw.reftag = cpu_to_le32( |
| 801 | nvme_block_nr(ns, blk_rq_pos(req))); |
| 802 | break; |
| 803 | } |
| 804 | } else if (ns->ms) |
| 805 | control |= NVME_RW_PRINFO_PRACT; |
| 806 | |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 807 | cmnd->rw.control = cpu_to_le16(control); |
| 808 | cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 809 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 810 | if (++nvmeq->sq_tail == nvmeq->q_depth) |
| 811 | nvmeq->sq_tail = 0; |
Matthew Wilcox | 7547881 | 2011-02-16 09:59:59 -0500 | [diff] [blame] | 812 | writel(nvmeq->sq_tail, nvmeq->q_db); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 813 | |
Matthew Wilcox | 1974b1a | 2011-02-10 12:01:09 -0500 | [diff] [blame] | 814 | return 0; |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 815 | } |
Matthew Wilcox | 1974b1a | 2011-02-10 12:01:09 -0500 | [diff] [blame] | 816 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 817 | static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx, |
| 818 | const struct blk_mq_queue_data *bd) |
Keith Busch | 53562be | 2014-04-29 11:41:29 -0600 | [diff] [blame] | 819 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 820 | struct nvme_ns *ns = hctx->queue->queuedata; |
| 821 | struct nvme_queue *nvmeq = hctx->driver_data; |
| 822 | struct request *req = bd->rq; |
| 823 | struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req); |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 824 | struct nvme_iod *iod; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 825 | enum dma_data_direction dma_dir; |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 826 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 827 | /* |
| 828 | * If formated with metadata, require the block layer provide a buffer |
| 829 | * unless this namespace is formated such that the metadata can be |
| 830 | * stripped/generated by the controller with PRACT=1. |
| 831 | */ |
| 832 | if (ns->ms && !blk_integrity_rq(req)) { |
| 833 | if (!(ns->pi_type && ns->ms == 8)) { |
| 834 | req->errors = -EFAULT; |
| 835 | blk_mq_complete_request(req); |
| 836 | return BLK_MQ_RQ_QUEUE_OK; |
| 837 | } |
| 838 | } |
| 839 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 840 | iod = nvme_alloc_iod(req, ns->dev, GFP_ATOMIC); |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 841 | if (!iod) |
Jens Axboe | fe54303 | 2014-12-11 13:58:39 -0700 | [diff] [blame] | 842 | return BLK_MQ_RQ_QUEUE_BUSY; |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 843 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 844 | if (req->cmd_flags & REQ_DISCARD) { |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 845 | void *range; |
| 846 | /* |
| 847 | * We reuse the small pool to allocate the 16-byte range here |
| 848 | * as it is not worth having a special pool for these or |
| 849 | * additional cases to handle freeing the iod. |
| 850 | */ |
| 851 | range = dma_pool_alloc(nvmeq->dev->prp_small_pool, |
| 852 | GFP_ATOMIC, |
| 853 | &iod->first_dma); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 854 | if (!range) |
Jens Axboe | fe54303 | 2014-12-11 13:58:39 -0700 | [diff] [blame] | 855 | goto retry_cmd; |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 856 | iod_list(iod)[0] = (__le64 *)range; |
| 857 | iod->npages = 0; |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 858 | } else if (req->nr_phys_segments) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 859 | dma_dir = rq_data_dir(req) ? DMA_TO_DEVICE : DMA_FROM_DEVICE; |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 860 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 861 | sg_init_table(iod->sg, req->nr_phys_segments); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 862 | iod->nents = blk_rq_map_sg(req->q, req, iod->sg); |
Jens Axboe | fe54303 | 2014-12-11 13:58:39 -0700 | [diff] [blame] | 863 | if (!iod->nents) |
| 864 | goto error_cmd; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 865 | |
| 866 | if (!dma_map_sg(nvmeq->q_dmadev, iod->sg, iod->nents, dma_dir)) |
Jens Axboe | fe54303 | 2014-12-11 13:58:39 -0700 | [diff] [blame] | 867 | goto retry_cmd; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 868 | |
Jens Axboe | fe54303 | 2014-12-11 13:58:39 -0700 | [diff] [blame] | 869 | if (blk_rq_bytes(req) != |
| 870 | nvme_setup_prps(nvmeq->dev, iod, blk_rq_bytes(req), GFP_ATOMIC)) { |
| 871 | dma_unmap_sg(&nvmeq->dev->pci_dev->dev, iod->sg, |
| 872 | iod->nents, dma_dir); |
| 873 | goto retry_cmd; |
| 874 | } |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 875 | if (blk_integrity_rq(req)) { |
| 876 | if (blk_rq_count_integrity_sg(req->q, req->bio) != 1) |
| 877 | goto error_cmd; |
| 878 | |
| 879 | sg_init_table(iod->meta_sg, 1); |
| 880 | if (blk_rq_map_integrity_sg( |
| 881 | req->q, req->bio, iod->meta_sg) != 1) |
| 882 | goto error_cmd; |
| 883 | |
| 884 | if (rq_data_dir(req)) |
| 885 | nvme_dif_remap(req, nvme_dif_prep); |
| 886 | |
| 887 | if (!dma_map_sg(nvmeq->q_dmadev, iod->meta_sg, 1, dma_dir)) |
| 888 | goto error_cmd; |
| 889 | } |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 890 | } |
| 891 | |
Keith Busch | 9af8785 | 2014-12-03 17:07:13 -0700 | [diff] [blame] | 892 | nvme_set_info(cmd, iod, req_completion); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 893 | spin_lock_irq(&nvmeq->q_lock); |
| 894 | if (req->cmd_flags & REQ_DISCARD) |
| 895 | nvme_submit_discard(nvmeq, ns, req, iod); |
| 896 | else if (req->cmd_flags & REQ_FLUSH) |
| 897 | nvme_submit_flush(nvmeq, ns, req->tag); |
| 898 | else |
| 899 | nvme_submit_iod(nvmeq, iod, ns); |
| 900 | |
| 901 | nvme_process_cq(nvmeq); |
| 902 | spin_unlock_irq(&nvmeq->q_lock); |
| 903 | return BLK_MQ_RQ_QUEUE_OK; |
| 904 | |
Jens Axboe | fe54303 | 2014-12-11 13:58:39 -0700 | [diff] [blame] | 905 | error_cmd: |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 906 | nvme_free_iod(nvmeq->dev, iod); |
Jens Axboe | fe54303 | 2014-12-11 13:58:39 -0700 | [diff] [blame] | 907 | return BLK_MQ_RQ_QUEUE_ERROR; |
| 908 | retry_cmd: |
| 909 | nvme_free_iod(nvmeq->dev, iod); |
| 910 | return BLK_MQ_RQ_QUEUE_BUSY; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 911 | } |
| 912 | |
Matthew Wilcox | e9539f4 | 2013-06-24 11:47:34 -0400 | [diff] [blame] | 913 | static int nvme_process_cq(struct nvme_queue *nvmeq) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 914 | { |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 915 | u16 head, phase; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 916 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 917 | head = nvmeq->cq_head; |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 918 | phase = nvmeq->cq_phase; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 919 | |
| 920 | for (;;) { |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 921 | void *ctx; |
| 922 | nvme_completion_fn fn; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 923 | struct nvme_completion cqe = nvmeq->cqes[head]; |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 924 | if ((le16_to_cpu(cqe.status) & 1) != phase) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 925 | break; |
| 926 | nvmeq->sq_head = le16_to_cpu(cqe.sq_head); |
| 927 | if (++head == nvmeq->q_depth) { |
| 928 | head = 0; |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 929 | phase = !phase; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 930 | } |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 931 | ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn); |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 932 | fn(nvmeq, ctx, &cqe); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 933 | } |
| 934 | |
| 935 | /* If the controller ignores the cq head doorbell and continuously |
| 936 | * writes to the queue, it is theoretically possible to wrap around |
| 937 | * the queue twice and mistakenly return IRQ_NONE. Linux only |
| 938 | * requires that 0.1% of your interrupts are handled, so this isn't |
| 939 | * a big problem. |
| 940 | */ |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 941 | if (head == nvmeq->cq_head && phase == nvmeq->cq_phase) |
Matthew Wilcox | e9539f4 | 2013-06-24 11:47:34 -0400 | [diff] [blame] | 942 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 943 | |
Haiyan Hu | b80d5cc | 2013-09-10 11:25:37 +0800 | [diff] [blame] | 944 | writel(head, nvmeq->q_db + nvmeq->dev->db_stride); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 945 | nvmeq->cq_head = head; |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 946 | nvmeq->cq_phase = phase; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 947 | |
Matthew Wilcox | e9539f4 | 2013-06-24 11:47:34 -0400 | [diff] [blame] | 948 | nvmeq->cqe_seen = 1; |
| 949 | return 1; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 950 | } |
| 951 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 952 | /* Admin queue isn't initialized as a request queue. If at some point this |
| 953 | * happens anyway, make sure to notify the user */ |
| 954 | static int nvme_admin_queue_rq(struct blk_mq_hw_ctx *hctx, |
| 955 | const struct blk_mq_queue_data *bd) |
Matthew Wilcox | 7d82245 | 2013-06-24 12:03:57 -0400 | [diff] [blame] | 956 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 957 | WARN_ON_ONCE(1); |
| 958 | return BLK_MQ_RQ_QUEUE_ERROR; |
Matthew Wilcox | 7d82245 | 2013-06-24 12:03:57 -0400 | [diff] [blame] | 959 | } |
| 960 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 961 | static irqreturn_t nvme_irq(int irq, void *data) |
| 962 | { |
Matthew Wilcox | 58ffacb | 2011-02-06 07:28:06 -0500 | [diff] [blame] | 963 | irqreturn_t result; |
| 964 | struct nvme_queue *nvmeq = data; |
| 965 | spin_lock(&nvmeq->q_lock); |
Matthew Wilcox | e9539f4 | 2013-06-24 11:47:34 -0400 | [diff] [blame] | 966 | nvme_process_cq(nvmeq); |
| 967 | result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE; |
| 968 | nvmeq->cqe_seen = 0; |
Matthew Wilcox | 58ffacb | 2011-02-06 07:28:06 -0500 | [diff] [blame] | 969 | spin_unlock(&nvmeq->q_lock); |
| 970 | return result; |
| 971 | } |
| 972 | |
| 973 | static irqreturn_t nvme_irq_check(int irq, void *data) |
| 974 | { |
| 975 | struct nvme_queue *nvmeq = data; |
| 976 | struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head]; |
| 977 | if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase) |
| 978 | return IRQ_NONE; |
| 979 | return IRQ_WAKE_THREAD; |
| 980 | } |
| 981 | |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 982 | struct sync_cmd_info { |
| 983 | struct task_struct *task; |
| 984 | u32 result; |
| 985 | int status; |
| 986 | }; |
| 987 | |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 988 | static void sync_completion(struct nvme_queue *nvmeq, void *ctx, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 989 | struct nvme_completion *cqe) |
| 990 | { |
| 991 | struct sync_cmd_info *cmdinfo = ctx; |
| 992 | cmdinfo->result = le32_to_cpup(&cqe->result); |
| 993 | cmdinfo->status = le16_to_cpup(&cqe->status) >> 1; |
| 994 | wake_up_process(cmdinfo->task); |
| 995 | } |
| 996 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 997 | /* |
| 998 | * Returns 0 on success. If the result is negative, it's a Linux error code; |
| 999 | * if the result is positive, it's an NVM Express status code |
| 1000 | */ |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1001 | static int nvme_submit_sync_cmd(struct request *req, struct nvme_command *cmd, |
Vishal Verma | 5d0f613 | 2013-03-04 18:40:58 -0700 | [diff] [blame] | 1002 | u32 *result, unsigned timeout) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1003 | { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1004 | struct sync_cmd_info cmdinfo; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1005 | struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req); |
| 1006 | struct nvme_queue *nvmeq = cmd_rq->nvmeq; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1007 | |
| 1008 | cmdinfo.task = current; |
| 1009 | cmdinfo.status = -EINTR; |
| 1010 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1011 | cmd->common.command_id = req->tag; |
| 1012 | |
| 1013 | nvme_set_info(cmd_rq, &cmdinfo, sync_completion); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1014 | |
Keith Busch | 0c0f9b9 | 2015-02-19 14:29:48 -0700 | [diff] [blame] | 1015 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 1016 | nvme_submit_cmd(nvmeq, cmd); |
| 1017 | schedule(); |
Matthew Wilcox | 3c0cf13 | 2011-02-04 16:03:56 -0500 | [diff] [blame] | 1018 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1019 | if (result) |
| 1020 | *result = cmdinfo.result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1021 | return cmdinfo.status; |
| 1022 | } |
| 1023 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1024 | static int nvme_submit_async_admin_req(struct nvme_dev *dev) |
| 1025 | { |
| 1026 | struct nvme_queue *nvmeq = dev->queues[0]; |
| 1027 | struct nvme_command c; |
| 1028 | struct nvme_cmd_info *cmd_info; |
| 1029 | struct request *req; |
| 1030 | |
Jens Axboe | 6dcc0cf | 2014-11-18 08:21:18 -0700 | [diff] [blame] | 1031 | req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC, false); |
Dan Carpenter | 9f173b3 | 2014-11-05 23:39:09 +0300 | [diff] [blame] | 1032 | if (IS_ERR(req)) |
| 1033 | return PTR_ERR(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1034 | |
Keith Busch | c917dfe | 2015-01-07 18:55:48 -0700 | [diff] [blame] | 1035 | req->cmd_flags |= REQ_NO_TIMEOUT; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1036 | cmd_info = blk_mq_rq_to_pdu(req); |
| 1037 | nvme_set_info(cmd_info, req, async_req_completion); |
| 1038 | |
| 1039 | memset(&c, 0, sizeof(c)); |
| 1040 | c.common.opcode = nvme_admin_async_event; |
| 1041 | c.common.command_id = req->tag; |
| 1042 | |
| 1043 | return __nvme_submit_cmd(nvmeq, &c); |
| 1044 | } |
| 1045 | |
| 1046 | static int nvme_submit_admin_async_cmd(struct nvme_dev *dev, |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1047 | struct nvme_command *cmd, |
| 1048 | struct async_cmd_info *cmdinfo, unsigned timeout) |
| 1049 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1050 | struct nvme_queue *nvmeq = dev->queues[0]; |
| 1051 | struct request *req; |
| 1052 | struct nvme_cmd_info *cmd_rq; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1053 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1054 | req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false); |
Dan Carpenter | 9f173b3 | 2014-11-05 23:39:09 +0300 | [diff] [blame] | 1055 | if (IS_ERR(req)) |
| 1056 | return PTR_ERR(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1057 | |
| 1058 | req->timeout = timeout; |
| 1059 | cmd_rq = blk_mq_rq_to_pdu(req); |
| 1060 | cmdinfo->req = req; |
| 1061 | nvme_set_info(cmd_rq, cmdinfo, async_completion); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1062 | cmdinfo->status = -EINTR; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1063 | |
| 1064 | cmd->common.command_id = req->tag; |
| 1065 | |
Keith Busch | 4f5099a | 2014-03-03 16:39:13 -0700 | [diff] [blame] | 1066 | return nvme_submit_cmd(nvmeq, cmd); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1067 | } |
| 1068 | |
kbuild test robot | a64e6bb | 2014-11-05 18:47:07 +0800 | [diff] [blame] | 1069 | static int __nvme_submit_admin_cmd(struct nvme_dev *dev, struct nvme_command *cmd, |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1070 | u32 *result, unsigned timeout) |
| 1071 | { |
| 1072 | int res; |
| 1073 | struct request *req; |
| 1074 | |
| 1075 | req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_KERNEL, false); |
Jens Axboe | 97fe383 | 2014-12-10 13:02:44 -0700 | [diff] [blame] | 1076 | if (IS_ERR(req)) |
| 1077 | return PTR_ERR(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1078 | res = nvme_submit_sync_cmd(req, cmd, result, timeout); |
Jens Axboe | 9d135bb | 2014-11-17 10:43:42 -0700 | [diff] [blame] | 1079 | blk_mq_free_request(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1080 | return res; |
| 1081 | } |
| 1082 | |
Vishal Verma | 5d0f613 | 2013-03-04 18:40:58 -0700 | [diff] [blame] | 1083 | int nvme_submit_admin_cmd(struct nvme_dev *dev, struct nvme_command *cmd, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1084 | u32 *result) |
| 1085 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1086 | return __nvme_submit_admin_cmd(dev, cmd, result, ADMIN_TIMEOUT); |
Keith Busch | 4f5099a | 2014-03-03 16:39:13 -0700 | [diff] [blame] | 1087 | } |
| 1088 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1089 | int nvme_submit_io_cmd(struct nvme_dev *dev, struct nvme_ns *ns, |
| 1090 | struct nvme_command *cmd, u32 *result) |
Keith Busch | 4f5099a | 2014-03-03 16:39:13 -0700 | [diff] [blame] | 1091 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1092 | int res; |
| 1093 | struct request *req; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1094 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1095 | req = blk_mq_alloc_request(ns->queue, WRITE, (GFP_KERNEL|__GFP_WAIT), |
| 1096 | false); |
Jens Axboe | 97fe383 | 2014-12-10 13:02:44 -0700 | [diff] [blame] | 1097 | if (IS_ERR(req)) |
| 1098 | return PTR_ERR(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1099 | res = nvme_submit_sync_cmd(req, cmd, result, NVME_IO_TIMEOUT); |
Jens Axboe | 9d135bb | 2014-11-17 10:43:42 -0700 | [diff] [blame] | 1100 | blk_mq_free_request(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1101 | return res; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1102 | } |
| 1103 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1104 | static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id) |
| 1105 | { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1106 | struct nvme_command c; |
| 1107 | |
| 1108 | memset(&c, 0, sizeof(c)); |
| 1109 | c.delete_queue.opcode = opcode; |
| 1110 | c.delete_queue.qid = cpu_to_le16(id); |
| 1111 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1112 | return nvme_submit_admin_cmd(dev, &c, NULL); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1113 | } |
| 1114 | |
| 1115 | static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid, |
| 1116 | struct nvme_queue *nvmeq) |
| 1117 | { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1118 | struct nvme_command c; |
| 1119 | int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED; |
| 1120 | |
| 1121 | memset(&c, 0, sizeof(c)); |
| 1122 | c.create_cq.opcode = nvme_admin_create_cq; |
| 1123 | c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr); |
| 1124 | c.create_cq.cqid = cpu_to_le16(qid); |
| 1125 | c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1); |
| 1126 | c.create_cq.cq_flags = cpu_to_le16(flags); |
| 1127 | c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector); |
| 1128 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1129 | return nvme_submit_admin_cmd(dev, &c, NULL); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1130 | } |
| 1131 | |
| 1132 | static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid, |
| 1133 | struct nvme_queue *nvmeq) |
| 1134 | { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1135 | struct nvme_command c; |
| 1136 | int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM; |
| 1137 | |
| 1138 | memset(&c, 0, sizeof(c)); |
| 1139 | c.create_sq.opcode = nvme_admin_create_sq; |
| 1140 | c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr); |
| 1141 | c.create_sq.sqid = cpu_to_le16(qid); |
| 1142 | c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1); |
| 1143 | c.create_sq.sq_flags = cpu_to_le16(flags); |
| 1144 | c.create_sq.cqid = cpu_to_le16(qid); |
| 1145 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1146 | return nvme_submit_admin_cmd(dev, &c, NULL); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1147 | } |
| 1148 | |
| 1149 | static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid) |
| 1150 | { |
| 1151 | return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid); |
| 1152 | } |
| 1153 | |
| 1154 | static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid) |
| 1155 | { |
| 1156 | return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid); |
| 1157 | } |
| 1158 | |
Vishal Verma | 5d0f613 | 2013-03-04 18:40:58 -0700 | [diff] [blame] | 1159 | int nvme_identify(struct nvme_dev *dev, unsigned nsid, unsigned cns, |
Matthew Wilcox | bc5fc7e | 2011-09-19 17:08:14 -0400 | [diff] [blame] | 1160 | dma_addr_t dma_addr) |
| 1161 | { |
| 1162 | struct nvme_command c; |
| 1163 | |
| 1164 | memset(&c, 0, sizeof(c)); |
| 1165 | c.identify.opcode = nvme_admin_identify; |
| 1166 | c.identify.nsid = cpu_to_le32(nsid); |
| 1167 | c.identify.prp1 = cpu_to_le64(dma_addr); |
| 1168 | c.identify.cns = cpu_to_le32(cns); |
| 1169 | |
| 1170 | return nvme_submit_admin_cmd(dev, &c, NULL); |
| 1171 | } |
| 1172 | |
Vishal Verma | 5d0f613 | 2013-03-04 18:40:58 -0700 | [diff] [blame] | 1173 | int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid, |
Keith Busch | 08df1e0 | 2012-09-21 10:52:13 -0600 | [diff] [blame] | 1174 | dma_addr_t dma_addr, u32 *result) |
Matthew Wilcox | bc5fc7e | 2011-09-19 17:08:14 -0400 | [diff] [blame] | 1175 | { |
| 1176 | struct nvme_command c; |
| 1177 | |
| 1178 | memset(&c, 0, sizeof(c)); |
| 1179 | c.features.opcode = nvme_admin_get_features; |
Keith Busch | a42cecc | 2012-07-25 16:06:38 -0600 | [diff] [blame] | 1180 | c.features.nsid = cpu_to_le32(nsid); |
Matthew Wilcox | bc5fc7e | 2011-09-19 17:08:14 -0400 | [diff] [blame] | 1181 | c.features.prp1 = cpu_to_le64(dma_addr); |
| 1182 | c.features.fid = cpu_to_le32(fid); |
Matthew Wilcox | bc5fc7e | 2011-09-19 17:08:14 -0400 | [diff] [blame] | 1183 | |
Keith Busch | 08df1e0 | 2012-09-21 10:52:13 -0600 | [diff] [blame] | 1184 | return nvme_submit_admin_cmd(dev, &c, result); |
Matthew Wilcox | df34813 | 2012-01-11 07:29:56 -0700 | [diff] [blame] | 1185 | } |
| 1186 | |
Vishal Verma | 5d0f613 | 2013-03-04 18:40:58 -0700 | [diff] [blame] | 1187 | int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11, |
| 1188 | dma_addr_t dma_addr, u32 *result) |
Matthew Wilcox | df34813 | 2012-01-11 07:29:56 -0700 | [diff] [blame] | 1189 | { |
| 1190 | struct nvme_command c; |
| 1191 | |
| 1192 | memset(&c, 0, sizeof(c)); |
| 1193 | c.features.opcode = nvme_admin_set_features; |
| 1194 | c.features.prp1 = cpu_to_le64(dma_addr); |
| 1195 | c.features.fid = cpu_to_le32(fid); |
| 1196 | c.features.dword11 = cpu_to_le32(dword11); |
| 1197 | |
Matthew Wilcox | bc5fc7e | 2011-09-19 17:08:14 -0400 | [diff] [blame] | 1198 | return nvme_submit_admin_cmd(dev, &c, result); |
| 1199 | } |
| 1200 | |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1201 | /** |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1202 | * nvme_abort_req - Attempt aborting a request |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1203 | * |
| 1204 | * Schedule controller reset if the command was already aborted once before and |
| 1205 | * still hasn't been returned to the driver, or if this is the admin queue. |
| 1206 | */ |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1207 | static void nvme_abort_req(struct request *req) |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1208 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1209 | struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req); |
| 1210 | struct nvme_queue *nvmeq = cmd_rq->nvmeq; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1211 | struct nvme_dev *dev = nvmeq->dev; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1212 | struct request *abort_req; |
| 1213 | struct nvme_cmd_info *abort_cmd; |
| 1214 | struct nvme_command cmd; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1215 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1216 | if (!nvmeq->qid || cmd_rq->aborted) { |
Keith Busch | 7a509a6 | 2015-01-07 18:55:53 -0700 | [diff] [blame] | 1217 | unsigned long flags; |
| 1218 | |
| 1219 | spin_lock_irqsave(&dev_list_lock, flags); |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1220 | if (work_busy(&dev->reset_work)) |
Keith Busch | 7a509a6 | 2015-01-07 18:55:53 -0700 | [diff] [blame] | 1221 | goto out; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1222 | list_del_init(&dev->node); |
| 1223 | dev_warn(&dev->pci_dev->dev, |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1224 | "I/O %d QID %d timeout, reset controller\n", |
| 1225 | req->tag, nvmeq->qid); |
Tejun Heo | 9ca9737 | 2014-03-07 10:24:49 -0500 | [diff] [blame] | 1226 | dev->reset_workfn = nvme_reset_failed_dev; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1227 | queue_work(nvme_workq, &dev->reset_work); |
Keith Busch | 7a509a6 | 2015-01-07 18:55:53 -0700 | [diff] [blame] | 1228 | out: |
| 1229 | spin_unlock_irqrestore(&dev_list_lock, flags); |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1230 | return; |
| 1231 | } |
| 1232 | |
| 1233 | if (!dev->abort_limit) |
| 1234 | return; |
| 1235 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1236 | abort_req = blk_mq_alloc_request(dev->admin_q, WRITE, GFP_ATOMIC, |
| 1237 | false); |
Dan Carpenter | 9f173b3 | 2014-11-05 23:39:09 +0300 | [diff] [blame] | 1238 | if (IS_ERR(abort_req)) |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1239 | return; |
| 1240 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1241 | abort_cmd = blk_mq_rq_to_pdu(abort_req); |
| 1242 | nvme_set_info(abort_cmd, abort_req, abort_completion); |
| 1243 | |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1244 | memset(&cmd, 0, sizeof(cmd)); |
| 1245 | cmd.abort.opcode = nvme_admin_abort_cmd; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1246 | cmd.abort.cid = req->tag; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1247 | cmd.abort.sqid = cpu_to_le16(nvmeq->qid); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1248 | cmd.abort.command_id = abort_req->tag; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1249 | |
| 1250 | --dev->abort_limit; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1251 | cmd_rq->aborted = 1; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1252 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1253 | dev_warn(nvmeq->q_dmadev, "Aborting I/O %d QID %d\n", req->tag, |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1254 | nvmeq->qid); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1255 | if (nvme_submit_cmd(dev->queues[0], &cmd) < 0) { |
| 1256 | dev_warn(nvmeq->q_dmadev, |
| 1257 | "Could not abort I/O %d QID %d", |
| 1258 | req->tag, nvmeq->qid); |
Sam Bradshaw | c87fd54 | 2014-12-10 13:00:31 -0700 | [diff] [blame] | 1259 | blk_mq_free_request(abort_req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1260 | } |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1261 | } |
| 1262 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1263 | static void nvme_cancel_queue_ios(struct blk_mq_hw_ctx *hctx, |
| 1264 | struct request *req, void *data, bool reserved) |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1265 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1266 | struct nvme_queue *nvmeq = data; |
| 1267 | void *ctx; |
| 1268 | nvme_completion_fn fn; |
| 1269 | struct nvme_cmd_info *cmd; |
Keith Busch | cef6a94 | 2015-01-07 18:55:51 -0700 | [diff] [blame] | 1270 | struct nvme_completion cqe; |
| 1271 | |
| 1272 | if (!blk_mq_request_started(req)) |
| 1273 | return; |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1274 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1275 | cmd = blk_mq_rq_to_pdu(req); |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1276 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1277 | if (cmd->ctx == CMD_CTX_CANCELLED) |
| 1278 | return; |
| 1279 | |
Keith Busch | cef6a94 | 2015-01-07 18:55:51 -0700 | [diff] [blame] | 1280 | if (blk_queue_dying(req->q)) |
| 1281 | cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1); |
| 1282 | else |
| 1283 | cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1); |
| 1284 | |
| 1285 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1286 | dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n", |
| 1287 | req->tag, nvmeq->qid); |
| 1288 | ctx = cancel_cmd_info(cmd, &fn); |
| 1289 | fn(nvmeq, ctx, &cqe); |
| 1290 | } |
| 1291 | |
| 1292 | static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved) |
| 1293 | { |
| 1294 | struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req); |
| 1295 | struct nvme_queue *nvmeq = cmd->nvmeq; |
| 1296 | |
Keith Busch | 07836e6 | 2015-02-19 10:34:48 -0700 | [diff] [blame] | 1297 | dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag, |
| 1298 | nvmeq->qid); |
| 1299 | spin_lock_irq(&nvmeq->q_lock); |
| 1300 | nvme_abort_req(req); |
| 1301 | spin_unlock_irq(&nvmeq->q_lock); |
| 1302 | |
Keith Busch | 7a509a6 | 2015-01-07 18:55:53 -0700 | [diff] [blame] | 1303 | /* |
| 1304 | * The aborted req will be completed on receiving the abort req. |
| 1305 | * We enable the timer again. If hit twice, it'll cause a device reset, |
| 1306 | * as the device then is in a faulty state. |
| 1307 | */ |
Keith Busch | 07836e6 | 2015-02-19 10:34:48 -0700 | [diff] [blame] | 1308 | return BLK_EH_RESET_TIMER; |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1309 | } |
| 1310 | |
Keith Busch | f435c28 | 2014-07-07 09:14:42 -0600 | [diff] [blame] | 1311 | static void nvme_free_queue(struct nvme_queue *nvmeq) |
Matthew Wilcox | 9e86677 | 2012-08-03 13:55:56 -0400 | [diff] [blame] | 1312 | { |
| 1313 | dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth), |
| 1314 | (void *)nvmeq->cqes, nvmeq->cq_dma_addr); |
| 1315 | dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth), |
| 1316 | nvmeq->sq_cmds, nvmeq->sq_dma_addr); |
| 1317 | kfree(nvmeq); |
| 1318 | } |
| 1319 | |
Keith Busch | a1a5ef9 | 2013-12-16 13:50:00 -0500 | [diff] [blame] | 1320 | static void nvme_free_queues(struct nvme_dev *dev, int lowest) |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1321 | { |
| 1322 | int i; |
| 1323 | |
Keith Busch | a1a5ef9 | 2013-12-16 13:50:00 -0500 | [diff] [blame] | 1324 | for (i = dev->queue_count - 1; i >= lowest; i--) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1325 | struct nvme_queue *nvmeq = dev->queues[i]; |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1326 | dev->queue_count--; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1327 | dev->queues[i] = NULL; |
Keith Busch | f435c28 | 2014-07-07 09:14:42 -0600 | [diff] [blame] | 1328 | nvme_free_queue(nvmeq); |
kaoudis | 121c7ad | 2015-01-14 21:01:58 -0700 | [diff] [blame] | 1329 | } |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1330 | } |
| 1331 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1332 | /** |
| 1333 | * nvme_suspend_queue - put queue into suspended state |
| 1334 | * @nvmeq - queue to suspend |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1335 | */ |
| 1336 | static int nvme_suspend_queue(struct nvme_queue *nvmeq) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1337 | { |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1338 | int vector; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1339 | |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1340 | spin_lock_irq(&nvmeq->q_lock); |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1341 | if (nvmeq->cq_vector == -1) { |
| 1342 | spin_unlock_irq(&nvmeq->q_lock); |
| 1343 | return 1; |
| 1344 | } |
| 1345 | vector = nvmeq->dev->entry[nvmeq->cq_vector].vector; |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1346 | nvmeq->dev->online_queues--; |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1347 | nvmeq->cq_vector = -1; |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1348 | spin_unlock_irq(&nvmeq->q_lock); |
| 1349 | |
Matthew Wilcox | aba2080 | 2011-03-27 08:52:06 -0400 | [diff] [blame] | 1350 | irq_set_affinity_hint(vector, NULL); |
| 1351 | free_irq(vector, nvmeq); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1352 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1353 | return 0; |
| 1354 | } |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1355 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1356 | static void nvme_clear_queue(struct nvme_queue *nvmeq) |
| 1357 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1358 | struct blk_mq_hw_ctx *hctx = nvmeq->hctx; |
| 1359 | |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1360 | spin_lock_irq(&nvmeq->q_lock); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1361 | if (hctx && hctx->tags) |
| 1362 | blk_mq_tag_busy_iter(hctx, nvme_cancel_queue_ios, nvmeq); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1363 | spin_unlock_irq(&nvmeq->q_lock); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1364 | } |
| 1365 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1366 | static void nvme_disable_queue(struct nvme_dev *dev, int qid) |
| 1367 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1368 | struct nvme_queue *nvmeq = dev->queues[qid]; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1369 | |
| 1370 | if (!nvmeq) |
| 1371 | return; |
| 1372 | if (nvme_suspend_queue(nvmeq)) |
| 1373 | return; |
| 1374 | |
Keith Busch | 0e53d18 | 2013-12-10 13:10:39 -0700 | [diff] [blame] | 1375 | /* Don't tell the adapter to delete the admin queue. |
| 1376 | * Don't tell a removed adapter to delete IO queues. */ |
| 1377 | if (qid && readl(&dev->bar->csts) != -1) { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1378 | adapter_delete_sq(dev, qid); |
| 1379 | adapter_delete_cq(dev, qid); |
| 1380 | } |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 1381 | if (!qid && dev->admin_q) |
| 1382 | blk_mq_freeze_queue_start(dev->admin_q); |
Keith Busch | 07836e6 | 2015-02-19 10:34:48 -0700 | [diff] [blame] | 1383 | |
| 1384 | spin_lock_irq(&nvmeq->q_lock); |
| 1385 | nvme_process_cq(nvmeq); |
| 1386 | spin_unlock_irq(&nvmeq->q_lock); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1387 | } |
| 1388 | |
| 1389 | static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid, |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1390 | int depth) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1391 | { |
| 1392 | struct device *dmadev = &dev->pci_dev->dev; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1393 | struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1394 | if (!nvmeq) |
| 1395 | return NULL; |
| 1396 | |
Joe Perches | 4d51abf | 2014-06-15 13:37:33 -0700 | [diff] [blame] | 1397 | nvmeq->cqes = dma_zalloc_coherent(dmadev, CQ_SIZE(depth), |
| 1398 | &nvmeq->cq_dma_addr, GFP_KERNEL); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1399 | if (!nvmeq->cqes) |
| 1400 | goto free_nvmeq; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1401 | |
| 1402 | nvmeq->sq_cmds = dma_alloc_coherent(dmadev, SQ_SIZE(depth), |
| 1403 | &nvmeq->sq_dma_addr, GFP_KERNEL); |
| 1404 | if (!nvmeq->sq_cmds) |
| 1405 | goto free_cqdma; |
| 1406 | |
| 1407 | nvmeq->q_dmadev = dmadev; |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 1408 | nvmeq->dev = dev; |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 1409 | snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d", |
| 1410 | dev->instance, qid); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1411 | spin_lock_init(&nvmeq->q_lock); |
| 1412 | nvmeq->cq_head = 0; |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 1413 | nvmeq->cq_phase = 1; |
Haiyan Hu | b80d5cc | 2013-09-10 11:25:37 +0800 | [diff] [blame] | 1414 | nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1415 | nvmeq->q_depth = depth; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1416 | nvmeq->qid = qid; |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1417 | dev->queue_count++; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1418 | dev->queues[qid] = nvmeq; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1419 | |
| 1420 | return nvmeq; |
| 1421 | |
| 1422 | free_cqdma: |
Keith Busch | 68b8eca | 2013-05-01 13:07:47 -0600 | [diff] [blame] | 1423 | dma_free_coherent(dmadev, CQ_SIZE(depth), (void *)nvmeq->cqes, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1424 | nvmeq->cq_dma_addr); |
| 1425 | free_nvmeq: |
| 1426 | kfree(nvmeq); |
| 1427 | return NULL; |
| 1428 | } |
| 1429 | |
Matthew Wilcox | 3001082 | 2011-01-20 09:10:15 -0500 | [diff] [blame] | 1430 | static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq, |
| 1431 | const char *name) |
| 1432 | { |
Matthew Wilcox | 58ffacb | 2011-02-06 07:28:06 -0500 | [diff] [blame] | 1433 | if (use_threaded_interrupts) |
| 1434 | return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector, |
Michael Opdenacker | 481e5ba | 2013-10-12 06:23:29 +0200 | [diff] [blame] | 1435 | nvme_irq_check, nvme_irq, IRQF_SHARED, |
Matthew Wilcox | 58ffacb | 2011-02-06 07:28:06 -0500 | [diff] [blame] | 1436 | name, nvmeq); |
Matthew Wilcox | 3001082 | 2011-01-20 09:10:15 -0500 | [diff] [blame] | 1437 | return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq, |
Michael Opdenacker | 481e5ba | 2013-10-12 06:23:29 +0200 | [diff] [blame] | 1438 | IRQF_SHARED, name, nvmeq); |
Matthew Wilcox | 3001082 | 2011-01-20 09:10:15 -0500 | [diff] [blame] | 1439 | } |
| 1440 | |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1441 | static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1442 | { |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1443 | struct nvme_dev *dev = nvmeq->dev; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1444 | |
Keith Busch | 7be50e9 | 2014-09-10 15:48:47 -0600 | [diff] [blame] | 1445 | spin_lock_irq(&nvmeq->q_lock); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1446 | nvmeq->sq_tail = 0; |
| 1447 | nvmeq->cq_head = 0; |
| 1448 | nvmeq->cq_phase = 1; |
Haiyan Hu | b80d5cc | 2013-09-10 11:25:37 +0800 | [diff] [blame] | 1449 | nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride]; |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1450 | memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth)); |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1451 | dev->online_queues++; |
Keith Busch | 7be50e9 | 2014-09-10 15:48:47 -0600 | [diff] [blame] | 1452 | spin_unlock_irq(&nvmeq->q_lock); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1453 | } |
| 1454 | |
| 1455 | static int nvme_create_queue(struct nvme_queue *nvmeq, int qid) |
| 1456 | { |
| 1457 | struct nvme_dev *dev = nvmeq->dev; |
| 1458 | int result; |
Matthew Wilcox | 3f85d50 | 2011-02-01 08:39:04 -0500 | [diff] [blame] | 1459 | |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1460 | nvmeq->cq_vector = qid - 1; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1461 | result = adapter_alloc_cq(dev, qid, nvmeq); |
| 1462 | if (result < 0) |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1463 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1464 | |
| 1465 | result = adapter_alloc_sq(dev, qid, nvmeq); |
| 1466 | if (result < 0) |
| 1467 | goto release_cq; |
| 1468 | |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 1469 | result = queue_request_irq(dev, nvmeq, nvmeq->irqname); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1470 | if (result < 0) |
| 1471 | goto release_sq; |
| 1472 | |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1473 | nvme_init_queue(nvmeq, qid); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1474 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1475 | |
| 1476 | release_sq: |
| 1477 | adapter_delete_sq(dev, qid); |
| 1478 | release_cq: |
| 1479 | adapter_delete_cq(dev, qid); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1480 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1481 | } |
| 1482 | |
Matthew Wilcox | ba47e38 | 2013-05-04 06:43:16 -0400 | [diff] [blame] | 1483 | static int nvme_wait_ready(struct nvme_dev *dev, u64 cap, bool enabled) |
| 1484 | { |
| 1485 | unsigned long timeout; |
| 1486 | u32 bit = enabled ? NVME_CSTS_RDY : 0; |
| 1487 | |
| 1488 | timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies; |
| 1489 | |
| 1490 | while ((readl(&dev->bar->csts) & NVME_CSTS_RDY) != bit) { |
| 1491 | msleep(100); |
| 1492 | if (fatal_signal_pending(current)) |
| 1493 | return -EINTR; |
| 1494 | if (time_after(jiffies, timeout)) { |
| 1495 | dev_err(&dev->pci_dev->dev, |
Matthew Wilcox | 27e8166 | 2014-04-11 11:58:45 -0400 | [diff] [blame] | 1496 | "Device not ready; aborting %s\n", enabled ? |
| 1497 | "initialisation" : "reset"); |
Matthew Wilcox | ba47e38 | 2013-05-04 06:43:16 -0400 | [diff] [blame] | 1498 | return -ENODEV; |
| 1499 | } |
| 1500 | } |
| 1501 | |
| 1502 | return 0; |
| 1503 | } |
| 1504 | |
| 1505 | /* |
| 1506 | * If the device has been passed off to us in an enabled state, just clear |
| 1507 | * the enabled bit. The spec says we should set the 'shutdown notification |
| 1508 | * bits', but doing so may cause the device to complete commands to the |
| 1509 | * admin queue ... and we don't know what memory that might be pointing at! |
| 1510 | */ |
| 1511 | static int nvme_disable_ctrl(struct nvme_dev *dev, u64 cap) |
| 1512 | { |
Dan McLeran | 0107952 | 2014-06-23 08:24:36 -0600 | [diff] [blame] | 1513 | dev->ctrl_config &= ~NVME_CC_SHN_MASK; |
| 1514 | dev->ctrl_config &= ~NVME_CC_ENABLE; |
| 1515 | writel(dev->ctrl_config, &dev->bar->cc); |
Matthew Wilcox | 44af146 | 2013-05-04 06:43:17 -0400 | [diff] [blame] | 1516 | |
Matthew Wilcox | ba47e38 | 2013-05-04 06:43:16 -0400 | [diff] [blame] | 1517 | return nvme_wait_ready(dev, cap, false); |
| 1518 | } |
| 1519 | |
| 1520 | static int nvme_enable_ctrl(struct nvme_dev *dev, u64 cap) |
| 1521 | { |
Dan McLeran | 0107952 | 2014-06-23 08:24:36 -0600 | [diff] [blame] | 1522 | dev->ctrl_config &= ~NVME_CC_SHN_MASK; |
| 1523 | dev->ctrl_config |= NVME_CC_ENABLE; |
| 1524 | writel(dev->ctrl_config, &dev->bar->cc); |
| 1525 | |
Matthew Wilcox | ba47e38 | 2013-05-04 06:43:16 -0400 | [diff] [blame] | 1526 | return nvme_wait_ready(dev, cap, true); |
| 1527 | } |
| 1528 | |
Keith Busch | 1894d8f | 2013-07-15 15:02:22 -0600 | [diff] [blame] | 1529 | static int nvme_shutdown_ctrl(struct nvme_dev *dev) |
| 1530 | { |
| 1531 | unsigned long timeout; |
Keith Busch | 1894d8f | 2013-07-15 15:02:22 -0600 | [diff] [blame] | 1532 | |
Dan McLeran | 0107952 | 2014-06-23 08:24:36 -0600 | [diff] [blame] | 1533 | dev->ctrl_config &= ~NVME_CC_SHN_MASK; |
| 1534 | dev->ctrl_config |= NVME_CC_SHN_NORMAL; |
| 1535 | |
| 1536 | writel(dev->ctrl_config, &dev->bar->cc); |
Keith Busch | 1894d8f | 2013-07-15 15:02:22 -0600 | [diff] [blame] | 1537 | |
Dan McLeran | 2484f40 | 2014-07-01 09:33:32 -0600 | [diff] [blame] | 1538 | timeout = SHUTDOWN_TIMEOUT + jiffies; |
Keith Busch | 1894d8f | 2013-07-15 15:02:22 -0600 | [diff] [blame] | 1539 | while ((readl(&dev->bar->csts) & NVME_CSTS_SHST_MASK) != |
| 1540 | NVME_CSTS_SHST_CMPLT) { |
| 1541 | msleep(100); |
| 1542 | if (fatal_signal_pending(current)) |
| 1543 | return -EINTR; |
| 1544 | if (time_after(jiffies, timeout)) { |
| 1545 | dev_err(&dev->pci_dev->dev, |
| 1546 | "Device shutdown incomplete; abort shutdown\n"); |
| 1547 | return -ENODEV; |
| 1548 | } |
| 1549 | } |
| 1550 | |
| 1551 | return 0; |
| 1552 | } |
| 1553 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1554 | static struct blk_mq_ops nvme_mq_admin_ops = { |
| 1555 | .queue_rq = nvme_admin_queue_rq, |
| 1556 | .map_queue = blk_mq_map_queue, |
| 1557 | .init_hctx = nvme_admin_init_hctx, |
Jens Axboe | 2c30540b | 2014-11-14 09:47:32 -0700 | [diff] [blame] | 1558 | .exit_hctx = nvme_exit_hctx, |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1559 | .init_request = nvme_admin_init_request, |
| 1560 | .timeout = nvme_timeout, |
| 1561 | }; |
| 1562 | |
| 1563 | static struct blk_mq_ops nvme_mq_ops = { |
| 1564 | .queue_rq = nvme_queue_rq, |
| 1565 | .map_queue = blk_mq_map_queue, |
| 1566 | .init_hctx = nvme_init_hctx, |
Jens Axboe | 2c30540b | 2014-11-14 09:47:32 -0700 | [diff] [blame] | 1567 | .exit_hctx = nvme_exit_hctx, |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1568 | .init_request = nvme_init_request, |
| 1569 | .timeout = nvme_timeout, |
| 1570 | }; |
| 1571 | |
Keith Busch | ea191d2 | 2015-01-07 18:55:49 -0700 | [diff] [blame] | 1572 | static void nvme_dev_remove_admin(struct nvme_dev *dev) |
| 1573 | { |
| 1574 | if (dev->admin_q && !blk_queue_dying(dev->admin_q)) { |
| 1575 | blk_cleanup_queue(dev->admin_q); |
| 1576 | blk_mq_free_tag_set(&dev->admin_tagset); |
| 1577 | } |
| 1578 | } |
| 1579 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1580 | static int nvme_alloc_admin_tags(struct nvme_dev *dev) |
| 1581 | { |
| 1582 | if (!dev->admin_q) { |
| 1583 | dev->admin_tagset.ops = &nvme_mq_admin_ops; |
| 1584 | dev->admin_tagset.nr_hw_queues = 1; |
| 1585 | dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1; |
| 1586 | dev->admin_tagset.timeout = ADMIN_TIMEOUT; |
| 1587 | dev->admin_tagset.numa_node = dev_to_node(&dev->pci_dev->dev); |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 1588 | dev->admin_tagset.cmd_size = nvme_cmd_size(dev); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1589 | dev->admin_tagset.driver_data = dev; |
| 1590 | |
| 1591 | if (blk_mq_alloc_tag_set(&dev->admin_tagset)) |
| 1592 | return -ENOMEM; |
| 1593 | |
| 1594 | dev->admin_q = blk_mq_init_queue(&dev->admin_tagset); |
Ming Lei | 35b489d | 2015-01-02 14:25:27 +0000 | [diff] [blame] | 1595 | if (IS_ERR(dev->admin_q)) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1596 | blk_mq_free_tag_set(&dev->admin_tagset); |
| 1597 | return -ENOMEM; |
| 1598 | } |
Keith Busch | ea191d2 | 2015-01-07 18:55:49 -0700 | [diff] [blame] | 1599 | if (!blk_get_queue(dev->admin_q)) { |
| 1600 | nvme_dev_remove_admin(dev); |
| 1601 | return -ENODEV; |
| 1602 | } |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 1603 | } else |
| 1604 | blk_mq_unfreeze_queue(dev->admin_q); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1605 | |
| 1606 | return 0; |
| 1607 | } |
| 1608 | |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 1609 | static int nvme_configure_admin_queue(struct nvme_dev *dev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1610 | { |
Matthew Wilcox | ba47e38 | 2013-05-04 06:43:16 -0400 | [diff] [blame] | 1611 | int result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1612 | u32 aqa; |
Matthew Wilcox | ba47e38 | 2013-05-04 06:43:16 -0400 | [diff] [blame] | 1613 | u64 cap = readq(&dev->bar->cap); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1614 | struct nvme_queue *nvmeq; |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 1615 | unsigned page_shift = PAGE_SHIFT; |
| 1616 | unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12; |
| 1617 | unsigned dev_page_max = NVME_CAP_MPSMAX(cap) + 12; |
| 1618 | |
| 1619 | if (page_shift < dev_page_min) { |
| 1620 | dev_err(&dev->pci_dev->dev, |
| 1621 | "Minimum device page size (%u) too large for " |
| 1622 | "host (%u)\n", 1 << dev_page_min, |
| 1623 | 1 << page_shift); |
| 1624 | return -ENODEV; |
| 1625 | } |
| 1626 | if (page_shift > dev_page_max) { |
| 1627 | dev_info(&dev->pci_dev->dev, |
| 1628 | "Device maximum page size (%u) smaller than " |
| 1629 | "host (%u); enabling work-around\n", |
| 1630 | 1 << dev_page_max, 1 << page_shift); |
| 1631 | page_shift = dev_page_max; |
| 1632 | } |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1633 | |
Matthew Wilcox | ba47e38 | 2013-05-04 06:43:16 -0400 | [diff] [blame] | 1634 | result = nvme_disable_ctrl(dev, cap); |
| 1635 | if (result < 0) |
| 1636 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1637 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1638 | nvmeq = dev->queues[0]; |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 1639 | if (!nvmeq) { |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1640 | nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH); |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 1641 | if (!nvmeq) |
| 1642 | return -ENOMEM; |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 1643 | } |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1644 | |
| 1645 | aqa = nvmeq->q_depth - 1; |
| 1646 | aqa |= aqa << 16; |
| 1647 | |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 1648 | dev->page_size = 1 << page_shift; |
| 1649 | |
Dan McLeran | 0107952 | 2014-06-23 08:24:36 -0600 | [diff] [blame] | 1650 | dev->ctrl_config = NVME_CC_CSS_NVM; |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 1651 | dev->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1652 | dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE; |
Matthew Wilcox | 7f53f9d | 2011-03-22 15:55:45 -0400 | [diff] [blame] | 1653 | dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1654 | |
| 1655 | writel(aqa, &dev->bar->aqa); |
| 1656 | writeq(nvmeq->sq_dma_addr, &dev->bar->asq); |
| 1657 | writeq(nvmeq->cq_dma_addr, &dev->bar->acq); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1658 | |
Matthew Wilcox | ba47e38 | 2013-05-04 06:43:16 -0400 | [diff] [blame] | 1659 | result = nvme_enable_ctrl(dev, cap); |
Keith Busch | 025c557 | 2013-05-01 13:07:51 -0600 | [diff] [blame] | 1660 | if (result) |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1661 | goto free_nvmeq; |
| 1662 | |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1663 | nvmeq->cq_vector = 0; |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 1664 | result = queue_request_irq(dev, nvmeq, nvmeq->irqname); |
Keith Busch | 025c557 | 2013-05-01 13:07:51 -0600 | [diff] [blame] | 1665 | if (result) |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 1666 | goto free_nvmeq; |
Keith Busch | 025c557 | 2013-05-01 13:07:51 -0600 | [diff] [blame] | 1667 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1668 | return result; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1669 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1670 | free_nvmeq: |
| 1671 | nvme_free_queues(dev, 0); |
| 1672 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1673 | } |
| 1674 | |
Vishal Verma | 5d0f613 | 2013-03-04 18:40:58 -0700 | [diff] [blame] | 1675 | struct nvme_iod *nvme_map_user_pages(struct nvme_dev *dev, int write, |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1676 | unsigned long addr, unsigned length) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1677 | { |
Matthew Wilcox | 36c14ed | 2011-01-24 07:52:07 -0500 | [diff] [blame] | 1678 | int i, err, count, nents, offset; |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1679 | struct scatterlist *sg; |
| 1680 | struct page **pages; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1681 | struct nvme_iod *iod; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1682 | |
Matthew Wilcox | 36c14ed | 2011-01-24 07:52:07 -0500 | [diff] [blame] | 1683 | if (addr & 3) |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1684 | return ERR_PTR(-EINVAL); |
Dan Carpenter | 5460fc0 | 2013-05-13 17:59:50 +0300 | [diff] [blame] | 1685 | if (!length || length > INT_MAX - PAGE_SIZE) |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1686 | return ERR_PTR(-EINVAL); |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1687 | |
Matthew Wilcox | 36c14ed | 2011-01-24 07:52:07 -0500 | [diff] [blame] | 1688 | offset = offset_in_page(addr); |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1689 | count = DIV_ROUND_UP(offset + length, PAGE_SIZE); |
| 1690 | pages = kcalloc(count, sizeof(*pages), GFP_KERNEL); |
Dan Carpenter | 22fff82 | 2012-01-20 07:55:30 -0500 | [diff] [blame] | 1691 | if (!pages) |
| 1692 | return ERR_PTR(-ENOMEM); |
Matthew Wilcox | 36c14ed | 2011-01-24 07:52:07 -0500 | [diff] [blame] | 1693 | |
| 1694 | err = get_user_pages_fast(addr, count, 1, pages); |
| 1695 | if (err < count) { |
| 1696 | count = err; |
| 1697 | err = -EFAULT; |
| 1698 | goto put_pages; |
| 1699 | } |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1700 | |
Santosh Y | 6808c5f | 2014-05-29 10:01:52 +0530 | [diff] [blame] | 1701 | err = -ENOMEM; |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 1702 | iod = __nvme_alloc_iod(count, length, dev, 0, GFP_KERNEL); |
Santosh Y | 6808c5f | 2014-05-29 10:01:52 +0530 | [diff] [blame] | 1703 | if (!iod) |
| 1704 | goto put_pages; |
| 1705 | |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1706 | sg = iod->sg; |
Matthew Wilcox | 36c14ed | 2011-01-24 07:52:07 -0500 | [diff] [blame] | 1707 | sg_init_table(sg, count); |
Matthew Wilcox | d0ba1e4 | 2011-09-13 17:01:39 -0400 | [diff] [blame] | 1708 | for (i = 0; i < count; i++) { |
| 1709 | sg_set_page(&sg[i], pages[i], |
Dan Carpenter | 5460fc0 | 2013-05-13 17:59:50 +0300 | [diff] [blame] | 1710 | min_t(unsigned, length, PAGE_SIZE - offset), |
| 1711 | offset); |
Matthew Wilcox | d0ba1e4 | 2011-09-13 17:01:39 -0400 | [diff] [blame] | 1712 | length -= (PAGE_SIZE - offset); |
| 1713 | offset = 0; |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1714 | } |
Matthew Wilcox | fe304c4 | 2012-01-06 13:49:25 -0700 | [diff] [blame] | 1715 | sg_mark_end(&sg[i - 1]); |
Matthew Wilcox | 1c2ad9f | 2012-01-06 13:52:56 -0700 | [diff] [blame] | 1716 | iod->nents = count; |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1717 | |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1718 | nents = dma_map_sg(&dev->pci_dev->dev, sg, count, |
| 1719 | write ? DMA_TO_DEVICE : DMA_FROM_DEVICE); |
Matthew Wilcox | 36c14ed | 2011-01-24 07:52:07 -0500 | [diff] [blame] | 1720 | if (!nents) |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1721 | goto free_iod; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1722 | |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1723 | kfree(pages); |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1724 | return iod; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1725 | |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1726 | free_iod: |
| 1727 | kfree(iod); |
Matthew Wilcox | 36c14ed | 2011-01-24 07:52:07 -0500 | [diff] [blame] | 1728 | put_pages: |
| 1729 | for (i = 0; i < count; i++) |
| 1730 | put_page(pages[i]); |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1731 | kfree(pages); |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1732 | return ERR_PTR(err); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1733 | } |
| 1734 | |
Vishal Verma | 5d0f613 | 2013-03-04 18:40:58 -0700 | [diff] [blame] | 1735 | void nvme_unmap_user_pages(struct nvme_dev *dev, int write, |
Matthew Wilcox | 1c2ad9f | 2012-01-06 13:52:56 -0700 | [diff] [blame] | 1736 | struct nvme_iod *iod) |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1737 | { |
Matthew Wilcox | 1c2ad9f | 2012-01-06 13:52:56 -0700 | [diff] [blame] | 1738 | int i; |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1739 | |
Matthew Wilcox | 1c2ad9f | 2012-01-06 13:52:56 -0700 | [diff] [blame] | 1740 | dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents, |
| 1741 | write ? DMA_TO_DEVICE : DMA_FROM_DEVICE); |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1742 | |
Matthew Wilcox | 1c2ad9f | 2012-01-06 13:52:56 -0700 | [diff] [blame] | 1743 | for (i = 0; i < iod->nents; i++) |
| 1744 | put_page(sg_page(&iod->sg[i])); |
Matthew Wilcox | 7fc3cda | 2011-01-26 17:05:50 -0500 | [diff] [blame] | 1745 | } |
| 1746 | |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 1747 | static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio) |
| 1748 | { |
| 1749 | struct nvme_dev *dev = ns->dev; |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 1750 | struct nvme_user_io io; |
| 1751 | struct nvme_command c; |
Keith Busch | f410c68 | 2013-04-23 17:23:59 -0600 | [diff] [blame] | 1752 | unsigned length, meta_len; |
| 1753 | int status, i; |
| 1754 | struct nvme_iod *iod, *meta_iod = NULL; |
| 1755 | dma_addr_t meta_dma_addr; |
| 1756 | void *meta, *uninitialized_var(meta_mem); |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 1757 | |
| 1758 | if (copy_from_user(&io, uio, sizeof(io))) |
| 1759 | return -EFAULT; |
Matthew Wilcox | 6c7d494 | 2011-03-21 09:48:57 -0400 | [diff] [blame] | 1760 | length = (io.nblocks + 1) << ns->lba_shift; |
Keith Busch | f410c68 | 2013-04-23 17:23:59 -0600 | [diff] [blame] | 1761 | meta_len = (io.nblocks + 1) * ns->ms; |
| 1762 | |
| 1763 | if (meta_len && ((io.metadata & 3) || !io.metadata)) |
| 1764 | return -EINVAL; |
Matthew Wilcox | 6c7d494 | 2011-03-21 09:48:57 -0400 | [diff] [blame] | 1765 | |
| 1766 | switch (io.opcode) { |
| 1767 | case nvme_cmd_write: |
| 1768 | case nvme_cmd_read: |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 1769 | case nvme_cmd_compare: |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1770 | iod = nvme_map_user_pages(dev, io.opcode & 1, io.addr, length); |
Matthew Wilcox | 6413214 | 2011-08-09 12:56:37 -0400 | [diff] [blame] | 1771 | break; |
Matthew Wilcox | 6c7d494 | 2011-03-21 09:48:57 -0400 | [diff] [blame] | 1772 | default: |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 1773 | return -EINVAL; |
Matthew Wilcox | 6c7d494 | 2011-03-21 09:48:57 -0400 | [diff] [blame] | 1774 | } |
| 1775 | |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1776 | if (IS_ERR(iod)) |
| 1777 | return PTR_ERR(iod); |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 1778 | |
| 1779 | memset(&c, 0, sizeof(c)); |
| 1780 | c.rw.opcode = io.opcode; |
| 1781 | c.rw.flags = io.flags; |
Matthew Wilcox | 6c7d494 | 2011-03-21 09:48:57 -0400 | [diff] [blame] | 1782 | c.rw.nsid = cpu_to_le32(ns->ns_id); |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 1783 | c.rw.slba = cpu_to_le64(io.slba); |
Matthew Wilcox | 6c7d494 | 2011-03-21 09:48:57 -0400 | [diff] [blame] | 1784 | c.rw.length = cpu_to_le16(io.nblocks); |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 1785 | c.rw.control = cpu_to_le16(io.control); |
Matthew Wilcox | 1c9b526 | 2013-04-16 15:21:06 -0400 | [diff] [blame] | 1786 | c.rw.dsmgmt = cpu_to_le32(io.dsmgmt); |
| 1787 | c.rw.reftag = cpu_to_le32(io.reftag); |
| 1788 | c.rw.apptag = cpu_to_le16(io.apptag); |
| 1789 | c.rw.appmask = cpu_to_le16(io.appmask); |
Keith Busch | f410c68 | 2013-04-23 17:23:59 -0600 | [diff] [blame] | 1790 | |
| 1791 | if (meta_len) { |
Keith Busch | 1b56749 | 2013-07-18 12:13:51 -0600 | [diff] [blame] | 1792 | meta_iod = nvme_map_user_pages(dev, io.opcode & 1, io.metadata, |
| 1793 | meta_len); |
Keith Busch | f410c68 | 2013-04-23 17:23:59 -0600 | [diff] [blame] | 1794 | if (IS_ERR(meta_iod)) { |
| 1795 | status = PTR_ERR(meta_iod); |
| 1796 | meta_iod = NULL; |
| 1797 | goto unmap; |
| 1798 | } |
| 1799 | |
| 1800 | meta_mem = dma_alloc_coherent(&dev->pci_dev->dev, meta_len, |
| 1801 | &meta_dma_addr, GFP_KERNEL); |
| 1802 | if (!meta_mem) { |
| 1803 | status = -ENOMEM; |
| 1804 | goto unmap; |
| 1805 | } |
| 1806 | |
| 1807 | if (io.opcode & 1) { |
| 1808 | int meta_offset = 0; |
| 1809 | |
| 1810 | for (i = 0; i < meta_iod->nents; i++) { |
| 1811 | meta = kmap_atomic(sg_page(&meta_iod->sg[i])) + |
| 1812 | meta_iod->sg[i].offset; |
| 1813 | memcpy(meta_mem + meta_offset, meta, |
| 1814 | meta_iod->sg[i].length); |
| 1815 | kunmap_atomic(meta); |
| 1816 | meta_offset += meta_iod->sg[i].length; |
| 1817 | } |
| 1818 | } |
| 1819 | |
| 1820 | c.rw.metadata = cpu_to_le64(meta_dma_addr); |
| 1821 | } |
| 1822 | |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 1823 | length = nvme_setup_prps(dev, iod, length, GFP_KERNEL); |
| 1824 | c.rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg)); |
| 1825 | c.rw.prp2 = cpu_to_le64(iod->first_dma); |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 1826 | |
Matthew Wilcox | b77954c | 2011-05-12 13:51:41 -0400 | [diff] [blame] | 1827 | if (length != (io.nblocks + 1) << ns->lba_shift) |
| 1828 | status = -ENOMEM; |
| 1829 | else |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1830 | status = nvme_submit_io_cmd(dev, ns, &c, NULL); |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 1831 | |
Keith Busch | f410c68 | 2013-04-23 17:23:59 -0600 | [diff] [blame] | 1832 | if (meta_len) { |
| 1833 | if (status == NVME_SC_SUCCESS && !(io.opcode & 1)) { |
| 1834 | int meta_offset = 0; |
| 1835 | |
| 1836 | for (i = 0; i < meta_iod->nents; i++) { |
| 1837 | meta = kmap_atomic(sg_page(&meta_iod->sg[i])) + |
| 1838 | meta_iod->sg[i].offset; |
| 1839 | memcpy(meta, meta_mem + meta_offset, |
| 1840 | meta_iod->sg[i].length); |
| 1841 | kunmap_atomic(meta); |
| 1842 | meta_offset += meta_iod->sg[i].length; |
| 1843 | } |
| 1844 | } |
| 1845 | |
| 1846 | dma_free_coherent(&dev->pci_dev->dev, meta_len, meta_mem, |
| 1847 | meta_dma_addr); |
| 1848 | } |
| 1849 | |
| 1850 | unmap: |
Matthew Wilcox | 1c2ad9f | 2012-01-06 13:52:56 -0700 | [diff] [blame] | 1851 | nvme_unmap_user_pages(dev, io.opcode & 1, iod); |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1852 | nvme_free_iod(dev, iod); |
Keith Busch | f410c68 | 2013-04-23 17:23:59 -0600 | [diff] [blame] | 1853 | |
| 1854 | if (meta_iod) { |
| 1855 | nvme_unmap_user_pages(dev, io.opcode & 1, meta_iod); |
| 1856 | nvme_free_iod(dev, meta_iod); |
| 1857 | } |
| 1858 | |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 1859 | return status; |
| 1860 | } |
| 1861 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1862 | static int nvme_user_cmd(struct nvme_dev *dev, struct nvme_ns *ns, |
| 1863 | struct nvme_passthru_cmd __user *ucmd) |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 1864 | { |
Keith Busch | 7963e52 | 2014-09-12 16:07:20 -0600 | [diff] [blame] | 1865 | struct nvme_passthru_cmd cmd; |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 1866 | struct nvme_command c; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1867 | int status, length; |
Keith Busch | c7d36ab | 2012-07-27 11:53:28 -0600 | [diff] [blame] | 1868 | struct nvme_iod *uninitialized_var(iod); |
Keith Busch | 94f370c | 2013-05-09 14:01:38 -0600 | [diff] [blame] | 1869 | unsigned timeout; |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 1870 | |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 1871 | if (!capable(CAP_SYS_ADMIN)) |
| 1872 | return -EACCES; |
| 1873 | if (copy_from_user(&cmd, ucmd, sizeof(cmd))) |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 1874 | return -EFAULT; |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 1875 | |
| 1876 | memset(&c, 0, sizeof(c)); |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 1877 | c.common.opcode = cmd.opcode; |
| 1878 | c.common.flags = cmd.flags; |
| 1879 | c.common.nsid = cpu_to_le32(cmd.nsid); |
| 1880 | c.common.cdw2[0] = cpu_to_le32(cmd.cdw2); |
| 1881 | c.common.cdw2[1] = cpu_to_le32(cmd.cdw3); |
| 1882 | c.common.cdw10[0] = cpu_to_le32(cmd.cdw10); |
| 1883 | c.common.cdw10[1] = cpu_to_le32(cmd.cdw11); |
| 1884 | c.common.cdw10[2] = cpu_to_le32(cmd.cdw12); |
| 1885 | c.common.cdw10[3] = cpu_to_le32(cmd.cdw13); |
| 1886 | c.common.cdw10[4] = cpu_to_le32(cmd.cdw14); |
| 1887 | c.common.cdw10[5] = cpu_to_le32(cmd.cdw15); |
| 1888 | |
| 1889 | length = cmd.data_len; |
| 1890 | if (cmd.data_len) { |
Matthew Wilcox | 4974218 | 2012-01-06 13:42:45 -0700 | [diff] [blame] | 1891 | iod = nvme_map_user_pages(dev, cmd.opcode & 1, cmd.addr, |
| 1892 | length); |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1893 | if (IS_ERR(iod)) |
| 1894 | return PTR_ERR(iod); |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 1895 | length = nvme_setup_prps(dev, iod, length, GFP_KERNEL); |
| 1896 | c.common.prp1 = cpu_to_le64(sg_dma_address(iod->sg)); |
| 1897 | c.common.prp2 = cpu_to_le64(iod->first_dma); |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 1898 | } |
| 1899 | |
Keith Busch | 94f370c | 2013-05-09 14:01:38 -0600 | [diff] [blame] | 1900 | timeout = cmd.timeout_ms ? msecs_to_jiffies(cmd.timeout_ms) : |
| 1901 | ADMIN_TIMEOUT; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1902 | |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 1903 | if (length != cmd.data_len) |
Matthew Wilcox | b77954c | 2011-05-12 13:51:41 -0400 | [diff] [blame] | 1904 | status = -ENOMEM; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1905 | else if (ns) { |
| 1906 | struct request *req; |
| 1907 | |
| 1908 | req = blk_mq_alloc_request(ns->queue, WRITE, |
| 1909 | (GFP_KERNEL|__GFP_WAIT), false); |
Jens Axboe | 97fe383 | 2014-12-10 13:02:44 -0700 | [diff] [blame] | 1910 | if (IS_ERR(req)) |
| 1911 | status = PTR_ERR(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1912 | else { |
| 1913 | status = nvme_submit_sync_cmd(req, &c, &cmd.result, |
| 1914 | timeout); |
Jens Axboe | 9d135bb | 2014-11-17 10:43:42 -0700 | [diff] [blame] | 1915 | blk_mq_free_request(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1916 | } |
| 1917 | } else |
| 1918 | status = __nvme_submit_admin_cmd(dev, &c, &cmd.result, timeout); |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1919 | |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 1920 | if (cmd.data_len) { |
Matthew Wilcox | 1c2ad9f | 2012-01-06 13:52:56 -0700 | [diff] [blame] | 1921 | nvme_unmap_user_pages(dev, cmd.opcode & 1, iod); |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 1922 | nvme_free_iod(dev, iod); |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 1923 | } |
Keith Busch | f4f117f | 2012-09-21 10:49:05 -0600 | [diff] [blame] | 1924 | |
Chayan Biswas | cf90bc4 | 2013-05-22 22:34:49 +0000 | [diff] [blame] | 1925 | if ((status >= 0) && copy_to_user(&ucmd->result, &cmd.result, |
Keith Busch | f4f117f | 2012-09-21 10:49:05 -0600 | [diff] [blame] | 1926 | sizeof(cmd.result))) |
| 1927 | status = -EFAULT; |
| 1928 | |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 1929 | return status; |
| 1930 | } |
| 1931 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1932 | static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd, |
| 1933 | unsigned long arg) |
| 1934 | { |
| 1935 | struct nvme_ns *ns = bdev->bd_disk->private_data; |
| 1936 | |
| 1937 | switch (cmd) { |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 1938 | case NVME_IOCTL_ID: |
Matthew Wilcox | c3bfe71 | 2013-07-08 17:26:25 -0400 | [diff] [blame] | 1939 | force_successful_syscall_return(); |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 1940 | return ns->ns_id; |
| 1941 | case NVME_IOCTL_ADMIN_CMD: |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1942 | return nvme_user_cmd(ns->dev, NULL, (void __user *)arg); |
Keith Busch | 7963e52 | 2014-09-12 16:07:20 -0600 | [diff] [blame] | 1943 | case NVME_IOCTL_IO_CMD: |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1944 | return nvme_user_cmd(ns->dev, ns, (void __user *)arg); |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 1945 | case NVME_IOCTL_SUBMIT_IO: |
| 1946 | return nvme_submit_io(ns, (void __user *)arg); |
Vishal Verma | 5d0f613 | 2013-03-04 18:40:58 -0700 | [diff] [blame] | 1947 | case SG_GET_VERSION_NUM: |
| 1948 | return nvme_sg_get_version_num((void __user *)arg); |
| 1949 | case SG_IO: |
| 1950 | return nvme_sg_io(ns, (void __user *)arg); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1951 | default: |
| 1952 | return -ENOTTY; |
| 1953 | } |
| 1954 | } |
| 1955 | |
Keith Busch | 320a382 | 2013-10-23 13:07:34 -0600 | [diff] [blame] | 1956 | #ifdef CONFIG_COMPAT |
| 1957 | static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode, |
| 1958 | unsigned int cmd, unsigned long arg) |
| 1959 | { |
Keith Busch | 320a382 | 2013-10-23 13:07:34 -0600 | [diff] [blame] | 1960 | switch (cmd) { |
| 1961 | case SG_IO: |
Keith Busch | e179729 | 2014-08-27 13:55:38 -0600 | [diff] [blame] | 1962 | return -ENOIOCTLCMD; |
Keith Busch | 320a382 | 2013-10-23 13:07:34 -0600 | [diff] [blame] | 1963 | } |
| 1964 | return nvme_ioctl(bdev, mode, cmd, arg); |
| 1965 | } |
| 1966 | #else |
| 1967 | #define nvme_compat_ioctl NULL |
| 1968 | #endif |
| 1969 | |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 1970 | static int nvme_open(struct block_device *bdev, fmode_t mode) |
| 1971 | { |
Keith Busch | 9e60352 | 2014-10-03 11:15:47 -0600 | [diff] [blame] | 1972 | int ret = 0; |
| 1973 | struct nvme_ns *ns; |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 1974 | |
Keith Busch | 9e60352 | 2014-10-03 11:15:47 -0600 | [diff] [blame] | 1975 | spin_lock(&dev_list_lock); |
| 1976 | ns = bdev->bd_disk->private_data; |
| 1977 | if (!ns) |
| 1978 | ret = -ENXIO; |
| 1979 | else if (!kref_get_unless_zero(&ns->dev->kref)) |
| 1980 | ret = -ENXIO; |
| 1981 | spin_unlock(&dev_list_lock); |
| 1982 | |
| 1983 | return ret; |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 1984 | } |
| 1985 | |
| 1986 | static void nvme_free_dev(struct kref *kref); |
| 1987 | |
| 1988 | static void nvme_release(struct gendisk *disk, fmode_t mode) |
| 1989 | { |
| 1990 | struct nvme_ns *ns = disk->private_data; |
| 1991 | struct nvme_dev *dev = ns->dev; |
| 1992 | |
| 1993 | kref_put(&dev->kref, nvme_free_dev); |
| 1994 | } |
| 1995 | |
Keith Busch | 4cc09e2 | 2014-04-02 15:45:37 -0600 | [diff] [blame] | 1996 | static int nvme_getgeo(struct block_device *bd, struct hd_geometry *geo) |
| 1997 | { |
| 1998 | /* some standard values */ |
| 1999 | geo->heads = 1 << 6; |
| 2000 | geo->sectors = 1 << 5; |
| 2001 | geo->cylinders = get_capacity(bd->bd_disk) >> 11; |
| 2002 | return 0; |
| 2003 | } |
| 2004 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2005 | static void nvme_config_discard(struct nvme_ns *ns) |
| 2006 | { |
| 2007 | u32 logical_block_size = queue_logical_block_size(ns->queue); |
| 2008 | ns->queue->limits.discard_zeroes_data = 0; |
| 2009 | ns->queue->limits.discard_alignment = logical_block_size; |
| 2010 | ns->queue->limits.discard_granularity = logical_block_size; |
| 2011 | ns->queue->limits.max_discard_sectors = 0xffffffff; |
| 2012 | queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue); |
| 2013 | } |
| 2014 | |
Keith Busch | 1b9dbf7 | 2014-09-10 17:21:14 -0600 | [diff] [blame] | 2015 | static int nvme_revalidate_disk(struct gendisk *disk) |
| 2016 | { |
| 2017 | struct nvme_ns *ns = disk->private_data; |
| 2018 | struct nvme_dev *dev = ns->dev; |
| 2019 | struct nvme_id_ns *id; |
| 2020 | dma_addr_t dma_addr; |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2021 | int lbaf, pi_type, old_ms; |
| 2022 | unsigned short bs; |
Keith Busch | 1b9dbf7 | 2014-09-10 17:21:14 -0600 | [diff] [blame] | 2023 | |
| 2024 | id = dma_alloc_coherent(&dev->pci_dev->dev, 4096, &dma_addr, |
| 2025 | GFP_KERNEL); |
| 2026 | if (!id) { |
| 2027 | dev_warn(&dev->pci_dev->dev, "%s: Memory alocation failure\n", |
| 2028 | __func__); |
| 2029 | return 0; |
| 2030 | } |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2031 | if (nvme_identify(dev, ns->ns_id, 0, dma_addr)) { |
| 2032 | dev_warn(&dev->pci_dev->dev, |
| 2033 | "identify failed ns:%d, setting capacity to 0\n", |
| 2034 | ns->ns_id); |
| 2035 | memset(id, 0, sizeof(*id)); |
| 2036 | } |
Keith Busch | 1b9dbf7 | 2014-09-10 17:21:14 -0600 | [diff] [blame] | 2037 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2038 | old_ms = ns->ms; |
| 2039 | lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK; |
Keith Busch | 1b9dbf7 | 2014-09-10 17:21:14 -0600 | [diff] [blame] | 2040 | ns->lba_shift = id->lbaf[lbaf].ds; |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2041 | ns->ms = le16_to_cpu(id->lbaf[lbaf].ms); |
Keith Busch | 1b9dbf7 | 2014-09-10 17:21:14 -0600 | [diff] [blame] | 2042 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2043 | /* |
| 2044 | * If identify namespace failed, use default 512 byte block size so |
| 2045 | * block layer can use before failing read/write for 0 capacity. |
| 2046 | */ |
| 2047 | if (ns->lba_shift == 0) |
| 2048 | ns->lba_shift = 9; |
| 2049 | bs = 1 << ns->lba_shift; |
| 2050 | |
| 2051 | /* XXX: PI implementation requires metadata equal t10 pi tuple size */ |
| 2052 | pi_type = ns->ms == sizeof(struct t10_pi_tuple) ? |
| 2053 | id->dps & NVME_NS_DPS_PI_MASK : 0; |
| 2054 | |
Keith Busch | 52b68d7 | 2015-02-23 09:16:21 -0700 | [diff] [blame] | 2055 | if (blk_get_integrity(disk) && (ns->pi_type != pi_type || |
| 2056 | ns->ms != old_ms || |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2057 | bs != queue_logical_block_size(disk->queue) || |
| 2058 | (ns->ms && id->flbas & NVME_NS_FLBAS_META_EXT))) |
| 2059 | blk_integrity_unregister(disk); |
| 2060 | |
| 2061 | ns->pi_type = pi_type; |
| 2062 | blk_queue_logical_block_size(ns->queue, bs); |
| 2063 | |
Keith Busch | 52b68d7 | 2015-02-23 09:16:21 -0700 | [diff] [blame] | 2064 | if (ns->ms && !blk_get_integrity(disk) && (disk->flags & GENHD_FL_UP) && |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2065 | !(id->flbas & NVME_NS_FLBAS_META_EXT)) |
| 2066 | nvme_init_integrity(ns); |
| 2067 | |
Keith Busch | 52b68d7 | 2015-02-23 09:16:21 -0700 | [diff] [blame] | 2068 | if (id->ncap == 0 || (ns->ms && !blk_get_integrity(disk))) |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2069 | set_capacity(disk, 0); |
| 2070 | else |
| 2071 | set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9)); |
| 2072 | |
| 2073 | if (dev->oncs & NVME_CTRL_ONCS_DSM) |
| 2074 | nvme_config_discard(ns); |
| 2075 | |
Keith Busch | 1b9dbf7 | 2014-09-10 17:21:14 -0600 | [diff] [blame] | 2076 | dma_free_coherent(&dev->pci_dev->dev, 4096, id, dma_addr); |
| 2077 | return 0; |
| 2078 | } |
| 2079 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2080 | static const struct block_device_operations nvme_fops = { |
| 2081 | .owner = THIS_MODULE, |
| 2082 | .ioctl = nvme_ioctl, |
Keith Busch | 320a382 | 2013-10-23 13:07:34 -0600 | [diff] [blame] | 2083 | .compat_ioctl = nvme_compat_ioctl, |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 2084 | .open = nvme_open, |
| 2085 | .release = nvme_release, |
Keith Busch | 4cc09e2 | 2014-04-02 15:45:37 -0600 | [diff] [blame] | 2086 | .getgeo = nvme_getgeo, |
Keith Busch | 1b9dbf7 | 2014-09-10 17:21:14 -0600 | [diff] [blame] | 2087 | .revalidate_disk= nvme_revalidate_disk, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2088 | }; |
| 2089 | |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2090 | static int nvme_kthread(void *data) |
| 2091 | { |
Keith Busch | d4b4ff8 | 2013-12-10 13:10:37 -0700 | [diff] [blame] | 2092 | struct nvme_dev *dev, *next; |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2093 | |
| 2094 | while (!kthread_should_stop()) { |
Arjan van de Ven | 564a232 | 2013-05-01 16:38:23 -0400 | [diff] [blame] | 2095 | set_current_state(TASK_INTERRUPTIBLE); |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2096 | spin_lock(&dev_list_lock); |
Keith Busch | d4b4ff8 | 2013-12-10 13:10:37 -0700 | [diff] [blame] | 2097 | list_for_each_entry_safe(dev, next, &dev_list, node) { |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2098 | int i; |
Keith Busch | 07836e6 | 2015-02-19 10:34:48 -0700 | [diff] [blame] | 2099 | if (readl(&dev->bar->csts) & NVME_CSTS_CFS) { |
Keith Busch | d4b4ff8 | 2013-12-10 13:10:37 -0700 | [diff] [blame] | 2100 | if (work_busy(&dev->reset_work)) |
| 2101 | continue; |
| 2102 | list_del_init(&dev->node); |
| 2103 | dev_warn(&dev->pci_dev->dev, |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2104 | "Failed status: %x, reset controller\n", |
| 2105 | readl(&dev->bar->csts)); |
Tejun Heo | 9ca9737 | 2014-03-07 10:24:49 -0500 | [diff] [blame] | 2106 | dev->reset_workfn = nvme_reset_failed_dev; |
Keith Busch | d4b4ff8 | 2013-12-10 13:10:37 -0700 | [diff] [blame] | 2107 | queue_work(nvme_workq, &dev->reset_work); |
| 2108 | continue; |
| 2109 | } |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2110 | for (i = 0; i < dev->queue_count; i++) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2111 | struct nvme_queue *nvmeq = dev->queues[i]; |
Matthew Wilcox | 740216f | 2011-02-15 16:28:20 -0500 | [diff] [blame] | 2112 | if (!nvmeq) |
| 2113 | continue; |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2114 | spin_lock_irq(&nvmeq->q_lock); |
Matthew Wilcox | bc57a0f | 2013-06-24 11:56:42 -0400 | [diff] [blame] | 2115 | nvme_process_cq(nvmeq); |
Keith Busch | 6fccf93 | 2014-06-18 13:58:57 -0600 | [diff] [blame] | 2116 | |
| 2117 | while ((i == 0) && (dev->event_limit > 0)) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2118 | if (nvme_submit_async_admin_req(dev)) |
Keith Busch | 6fccf93 | 2014-06-18 13:58:57 -0600 | [diff] [blame] | 2119 | break; |
| 2120 | dev->event_limit--; |
| 2121 | } |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2122 | spin_unlock_irq(&nvmeq->q_lock); |
| 2123 | } |
| 2124 | } |
| 2125 | spin_unlock(&dev_list_lock); |
Arjan van de Ven | acb7aa0 | 2013-02-04 14:44:33 -0800 | [diff] [blame] | 2126 | schedule_timeout(round_jiffies_relative(HZ)); |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2127 | } |
| 2128 | return 0; |
| 2129 | } |
| 2130 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2131 | static void nvme_alloc_ns(struct nvme_dev *dev, unsigned nsid) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2132 | { |
| 2133 | struct nvme_ns *ns; |
| 2134 | struct gendisk *disk; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2135 | int node = dev_to_node(&dev->pci_dev->dev); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2136 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2137 | ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2138 | if (!ns) |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2139 | return; |
| 2140 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2141 | ns->queue = blk_mq_init_queue(&dev->tagset); |
Dan Carpenter | 9f173b3 | 2014-11-05 23:39:09 +0300 | [diff] [blame] | 2142 | if (IS_ERR(ns->queue)) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2143 | goto out_free_ns; |
Matthew Wilcox | 4eeb921 | 2012-01-10 14:35:08 -0700 | [diff] [blame] | 2144 | queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue); |
| 2145 | queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2146 | queue_flag_set_unlocked(QUEUE_FLAG_SG_GAPS, ns->queue); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2147 | ns->dev = dev; |
| 2148 | ns->queue->queuedata = ns; |
| 2149 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2150 | disk = alloc_disk_node(0, node); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2151 | if (!disk) |
| 2152 | goto out_free_queue; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2153 | |
Matthew Wilcox | 5aff938 | 2011-05-06 08:45:47 -0400 | [diff] [blame] | 2154 | ns->ns_id = nsid; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2155 | ns->disk = disk; |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2156 | ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */ |
| 2157 | list_add_tail(&ns->list, &dev->namespaces); |
| 2158 | |
Keith Busch | e9ef463 | 2012-07-24 15:01:04 -0600 | [diff] [blame] | 2159 | blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift); |
Keith Busch | 8fc23e0 | 2012-07-26 11:29:57 -0600 | [diff] [blame] | 2160 | if (dev->max_hw_sectors) |
| 2161 | blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2162 | if (dev->stripe_size) |
| 2163 | blk_queue_chunk_sectors(ns->queue, dev->stripe_size >> 9); |
Keith Busch | a7d2ce2 | 2014-04-29 11:41:28 -0600 | [diff] [blame] | 2164 | if (dev->vwc & NVME_CTRL_VWC_PRESENT) |
| 2165 | blk_queue_flush(ns->queue, REQ_FLUSH | REQ_FUA); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2166 | |
| 2167 | disk->major = nvme_major; |
Matthew Wilcox | 469071a | 2013-12-09 12:58:46 -0500 | [diff] [blame] | 2168 | disk->first_minor = 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2169 | disk->fops = &nvme_fops; |
| 2170 | disk->private_data = ns; |
| 2171 | disk->queue = ns->queue; |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 2172 | disk->driverfs_dev = dev->device; |
Matthew Wilcox | 469071a | 2013-12-09 12:58:46 -0500 | [diff] [blame] | 2173 | disk->flags = GENHD_FL_EXT_DEVT; |
Matthew Wilcox | 5aff938 | 2011-05-06 08:45:47 -0400 | [diff] [blame] | 2174 | sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2175 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2176 | /* |
| 2177 | * Initialize capacity to 0 until we establish the namespace format and |
| 2178 | * setup integrity extentions if necessary. The revalidate_disk after |
| 2179 | * add_disk allows the driver to register with integrity if the format |
| 2180 | * requires it. |
| 2181 | */ |
| 2182 | set_capacity(disk, 0); |
| 2183 | nvme_revalidate_disk(ns->disk); |
| 2184 | add_disk(ns->disk); |
| 2185 | if (ns->ms) |
| 2186 | revalidate_disk(ns->disk); |
| 2187 | return; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2188 | out_free_queue: |
| 2189 | blk_cleanup_queue(ns->queue); |
| 2190 | out_free_ns: |
| 2191 | kfree(ns); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2192 | } |
| 2193 | |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 2194 | static void nvme_create_io_queues(struct nvme_dev *dev) |
| 2195 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2196 | unsigned i; |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 2197 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2198 | for (i = dev->queue_count; i <= dev->max_qid; i++) |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 2199 | if (!nvme_alloc_queue(dev, i, dev->q_depth)) |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 2200 | break; |
| 2201 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2202 | for (i = dev->online_queues; i <= dev->queue_count - 1; i++) |
| 2203 | if (nvme_create_queue(dev->queues[i], i)) |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 2204 | break; |
| 2205 | } |
| 2206 | |
Matthew Wilcox | b3b0681 | 2011-01-20 09:14:34 -0500 | [diff] [blame] | 2207 | static int set_queue_count(struct nvme_dev *dev, int count) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2208 | { |
| 2209 | int status; |
| 2210 | u32 result; |
Matthew Wilcox | b3b0681 | 2011-01-20 09:14:34 -0500 | [diff] [blame] | 2211 | u32 q_count = (count - 1) | ((count - 1) << 16); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2212 | |
Matthew Wilcox | df34813 | 2012-01-11 07:29:56 -0700 | [diff] [blame] | 2213 | status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0, |
Matthew Wilcox | bc5fc7e | 2011-09-19 17:08:14 -0400 | [diff] [blame] | 2214 | &result); |
Matthew Wilcox | 27e8166 | 2014-04-11 11:58:45 -0400 | [diff] [blame] | 2215 | if (status < 0) |
| 2216 | return status; |
| 2217 | if (status > 0) { |
| 2218 | dev_err(&dev->pci_dev->dev, "Could not set queue count (%d)\n", |
| 2219 | status); |
Keith Busch | badc34d | 2014-06-23 14:25:35 -0600 | [diff] [blame] | 2220 | return 0; |
Matthew Wilcox | 27e8166 | 2014-04-11 11:58:45 -0400 | [diff] [blame] | 2221 | } |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2222 | return min(result & 0xffff, result >> 16) + 1; |
| 2223 | } |
| 2224 | |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 2225 | static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues) |
| 2226 | { |
Haiyan Hu | b80d5cc | 2013-09-10 11:25:37 +0800 | [diff] [blame] | 2227 | return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride); |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 2228 | } |
| 2229 | |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 2230 | static int nvme_setup_io_queues(struct nvme_dev *dev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2231 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2232 | struct nvme_queue *adminq = dev->queues[0]; |
Ramachandra Rao Gajula | fa08a39 | 2013-05-11 15:19:31 -0700 | [diff] [blame] | 2233 | struct pci_dev *pdev = dev->pci_dev; |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 2234 | int result, i, vecs, nr_io_queues, size; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2235 | |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 2236 | nr_io_queues = num_possible_cpus(); |
Matthew Wilcox | b348b7d | 2011-02-15 16:16:02 -0500 | [diff] [blame] | 2237 | result = set_queue_count(dev, nr_io_queues); |
Keith Busch | badc34d | 2014-06-23 14:25:35 -0600 | [diff] [blame] | 2238 | if (result <= 0) |
Matthew Wilcox | 1b23484 | 2011-01-20 13:01:49 -0500 | [diff] [blame] | 2239 | return result; |
Matthew Wilcox | b348b7d | 2011-02-15 16:16:02 -0500 | [diff] [blame] | 2240 | if (result < nr_io_queues) |
| 2241 | nr_io_queues = result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2242 | |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 2243 | size = db_bar_size(dev, nr_io_queues); |
| 2244 | if (size > 8192) { |
Matthew Wilcox | f1938f6 | 2011-10-20 17:00:41 -0400 | [diff] [blame] | 2245 | iounmap(dev->bar); |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 2246 | do { |
| 2247 | dev->bar = ioremap(pci_resource_start(pdev, 0), size); |
| 2248 | if (dev->bar) |
| 2249 | break; |
| 2250 | if (!--nr_io_queues) |
| 2251 | return -ENOMEM; |
| 2252 | size = db_bar_size(dev, nr_io_queues); |
| 2253 | } while (1); |
Matthew Wilcox | f1938f6 | 2011-10-20 17:00:41 -0400 | [diff] [blame] | 2254 | dev->dbs = ((void __iomem *)dev->bar) + 4096; |
Keith Busch | 5a92e70 | 2014-02-21 14:13:44 -0700 | [diff] [blame] | 2255 | adminq->q_db = dev->dbs; |
Matthew Wilcox | f1938f6 | 2011-10-20 17:00:41 -0400 | [diff] [blame] | 2256 | } |
| 2257 | |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 2258 | /* Deregister the admin queue's interrupt */ |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 2259 | free_irq(dev->entry[0].vector, adminq); |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 2260 | |
Jens Axboe | e32efbf | 2014-11-14 09:49:26 -0700 | [diff] [blame] | 2261 | /* |
| 2262 | * If we enable msix early due to not intx, disable it again before |
| 2263 | * setting up the full range we need. |
| 2264 | */ |
| 2265 | if (!pdev->irq) |
| 2266 | pci_disable_msix(pdev); |
| 2267 | |
Alexander Gordeev | be577fa | 2014-03-04 16:22:00 +0100 | [diff] [blame] | 2268 | for (i = 0; i < nr_io_queues; i++) |
Matthew Wilcox | 1b23484 | 2011-01-20 13:01:49 -0500 | [diff] [blame] | 2269 | dev->entry[i].entry = i; |
Alexander Gordeev | be577fa | 2014-03-04 16:22:00 +0100 | [diff] [blame] | 2270 | vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues); |
| 2271 | if (vecs < 0) { |
| 2272 | vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32)); |
| 2273 | if (vecs < 0) { |
| 2274 | vecs = 1; |
| 2275 | } else { |
| 2276 | for (i = 0; i < vecs; i++) |
| 2277 | dev->entry[i].vector = i + pdev->irq; |
Matthew Wilcox | 1b23484 | 2011-01-20 13:01:49 -0500 | [diff] [blame] | 2278 | } |
| 2279 | } |
| 2280 | |
Matthew Wilcox | 063a809 | 2013-06-20 10:53:48 -0400 | [diff] [blame] | 2281 | /* |
| 2282 | * Should investigate if there's a performance win from allocating |
| 2283 | * more queues than interrupt vectors; it might allow the submission |
| 2284 | * path to scale better, even if the receive path is limited by the |
| 2285 | * number of interrupts. |
| 2286 | */ |
| 2287 | nr_io_queues = vecs; |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 2288 | dev->max_qid = nr_io_queues; |
Ramachandra Rao Gajula | fa08a39 | 2013-05-11 15:19:31 -0700 | [diff] [blame] | 2289 | |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 2290 | result = queue_request_irq(dev, adminq, adminq->irqname); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2291 | if (result) |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 2292 | goto free_queues; |
Matthew Wilcox | 1b23484 | 2011-01-20 13:01:49 -0500 | [diff] [blame] | 2293 | |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 2294 | /* Free previously allocated queues that are no longer usable */ |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 2295 | nvme_free_queues(dev, nr_io_queues + 1); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2296 | nvme_create_io_queues(dev); |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 2297 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2298 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2299 | |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 2300 | free_queues: |
Keith Busch | a1a5ef9 | 2013-12-16 13:50:00 -0500 | [diff] [blame] | 2301 | nvme_free_queues(dev, 1); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 2302 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2303 | } |
| 2304 | |
Matthew Wilcox | 422ef0c | 2013-04-16 11:22:36 -0400 | [diff] [blame] | 2305 | /* |
| 2306 | * Return: error value if an error occurred setting up the queues or calling |
| 2307 | * Identify Device. 0 if these succeeded, even if adding some of the |
| 2308 | * namespaces failed. At the moment, these failures are silent. TBD which |
| 2309 | * failures should be reported. |
| 2310 | */ |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 2311 | static int nvme_dev_add(struct nvme_dev *dev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2312 | { |
Matthew Wilcox | 68608c26 | 2013-06-21 14:36:34 -0400 | [diff] [blame] | 2313 | struct pci_dev *pdev = dev->pci_dev; |
Matthew Wilcox | c3bfe71 | 2013-07-08 17:26:25 -0400 | [diff] [blame] | 2314 | int res; |
| 2315 | unsigned nn, i; |
Matthew Wilcox | 5181423 | 2011-02-01 16:18:08 -0500 | [diff] [blame] | 2316 | struct nvme_id_ctrl *ctrl; |
Matthew Wilcox | bc5fc7e | 2011-09-19 17:08:14 -0400 | [diff] [blame] | 2317 | void *mem; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2318 | dma_addr_t dma_addr; |
Keith Busch | 159b67d | 2013-04-09 17:13:20 -0600 | [diff] [blame] | 2319 | int shift = NVME_CAP_MPSMIN(readq(&dev->bar->cap)) + 12; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2320 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2321 | mem = dma_alloc_coherent(&pdev->dev, 4096, &dma_addr, GFP_KERNEL); |
Keith Busch | a9ef434 | 2013-05-01 13:07:48 -0600 | [diff] [blame] | 2322 | if (!mem) |
| 2323 | return -ENOMEM; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2324 | |
Matthew Wilcox | bc5fc7e | 2011-09-19 17:08:14 -0400 | [diff] [blame] | 2325 | res = nvme_identify(dev, 0, 1, dma_addr); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2326 | if (res) { |
Matthew Wilcox | 27e8166 | 2014-04-11 11:58:45 -0400 | [diff] [blame] | 2327 | dev_err(&pdev->dev, "Identify Controller failed (%d)\n", res); |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2328 | dma_free_coherent(&dev->pci_dev->dev, 4096, mem, dma_addr); |
| 2329 | return -EIO; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2330 | } |
| 2331 | |
Matthew Wilcox | bc5fc7e | 2011-09-19 17:08:14 -0400 | [diff] [blame] | 2332 | ctrl = mem; |
Matthew Wilcox | 5181423 | 2011-02-01 16:18:08 -0500 | [diff] [blame] | 2333 | nn = le32_to_cpup(&ctrl->nn); |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 2334 | dev->oncs = le16_to_cpup(&ctrl->oncs); |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 2335 | dev->abort_limit = ctrl->acl + 1; |
Keith Busch | a7d2ce2 | 2014-04-29 11:41:28 -0600 | [diff] [blame] | 2336 | dev->vwc = ctrl->vwc; |
Keith Busch | 6fccf93 | 2014-06-18 13:58:57 -0600 | [diff] [blame] | 2337 | dev->event_limit = min(ctrl->aerl + 1, 8); |
Matthew Wilcox | 5181423 | 2011-02-01 16:18:08 -0500 | [diff] [blame] | 2338 | memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn)); |
| 2339 | memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn)); |
| 2340 | memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr)); |
Keith Busch | 159b67d | 2013-04-09 17:13:20 -0600 | [diff] [blame] | 2341 | if (ctrl->mdts) |
Keith Busch | 8fc23e0 | 2012-07-26 11:29:57 -0600 | [diff] [blame] | 2342 | dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9); |
Matthew Wilcox | 68608c26 | 2013-06-21 14:36:34 -0400 | [diff] [blame] | 2343 | if ((pdev->vendor == PCI_VENDOR_ID_INTEL) && |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2344 | (pdev->device == 0x0953) && ctrl->vs[3]) { |
| 2345 | unsigned int max_hw_sectors; |
| 2346 | |
Keith Busch | 159b67d | 2013-04-09 17:13:20 -0600 | [diff] [blame] | 2347 | dev->stripe_size = 1 << (ctrl->vs[3] + shift); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2348 | max_hw_sectors = dev->stripe_size >> (shift - 9); |
| 2349 | if (dev->max_hw_sectors) { |
| 2350 | dev->max_hw_sectors = min(max_hw_sectors, |
| 2351 | dev->max_hw_sectors); |
| 2352 | } else |
| 2353 | dev->max_hw_sectors = max_hw_sectors; |
| 2354 | } |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2355 | dma_free_coherent(&dev->pci_dev->dev, 4096, mem, dma_addr); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2356 | |
| 2357 | dev->tagset.ops = &nvme_mq_ops; |
| 2358 | dev->tagset.nr_hw_queues = dev->online_queues - 1; |
| 2359 | dev->tagset.timeout = NVME_IO_TIMEOUT; |
| 2360 | dev->tagset.numa_node = dev_to_node(&dev->pci_dev->dev); |
| 2361 | dev->tagset.queue_depth = |
| 2362 | min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1; |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 2363 | dev->tagset.cmd_size = nvme_cmd_size(dev); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2364 | dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE; |
| 2365 | dev->tagset.driver_data = dev; |
| 2366 | |
| 2367 | if (blk_mq_alloc_tag_set(&dev->tagset)) |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2368 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2369 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2370 | for (i = 1; i <= nn; i++) |
| 2371 | nvme_alloc_ns(dev, i); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2372 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2373 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2374 | } |
| 2375 | |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2376 | static int nvme_dev_map(struct nvme_dev *dev) |
| 2377 | { |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 2378 | u64 cap; |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2379 | int bars, result = -ENOMEM; |
| 2380 | struct pci_dev *pdev = dev->pci_dev; |
| 2381 | |
| 2382 | if (pci_enable_device_mem(pdev)) |
| 2383 | return result; |
| 2384 | |
| 2385 | dev->entry[0].vector = pdev->irq; |
| 2386 | pci_set_master(pdev); |
| 2387 | bars = pci_select_bars(pdev, IORESOURCE_MEM); |
Jens Axboe | be7837e | 2014-11-14 09:50:19 -0700 | [diff] [blame] | 2388 | if (!bars) |
| 2389 | goto disable_pci; |
| 2390 | |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2391 | if (pci_request_selected_regions(pdev, bars, "nvme")) |
| 2392 | goto disable_pci; |
| 2393 | |
Russell King | 052d0ef | 2013-06-26 23:49:11 +0100 | [diff] [blame] | 2394 | if (dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)) && |
| 2395 | dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32))) |
| 2396 | goto disable; |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2397 | |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2398 | dev->bar = ioremap(pci_resource_start(pdev, 0), 8192); |
| 2399 | if (!dev->bar) |
| 2400 | goto disable; |
Jens Axboe | e32efbf | 2014-11-14 09:49:26 -0700 | [diff] [blame] | 2401 | |
Keith Busch | 0e53d18 | 2013-12-10 13:10:39 -0700 | [diff] [blame] | 2402 | if (readl(&dev->bar->csts) == -1) { |
| 2403 | result = -ENODEV; |
| 2404 | goto unmap; |
| 2405 | } |
Jens Axboe | e32efbf | 2014-11-14 09:49:26 -0700 | [diff] [blame] | 2406 | |
| 2407 | /* |
| 2408 | * Some devices don't advertse INTx interrupts, pre-enable a single |
| 2409 | * MSIX vec for setup. We'll adjust this later. |
| 2410 | */ |
| 2411 | if (!pdev->irq) { |
| 2412 | result = pci_enable_msix(pdev, dev->entry, 1); |
| 2413 | if (result < 0) |
| 2414 | goto unmap; |
| 2415 | } |
| 2416 | |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 2417 | cap = readq(&dev->bar->cap); |
| 2418 | dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH); |
| 2419 | dev->db_stride = 1 << NVME_CAP_STRIDE(cap); |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2420 | dev->dbs = ((void __iomem *)dev->bar) + 4096; |
| 2421 | |
| 2422 | return 0; |
| 2423 | |
Keith Busch | 0e53d18 | 2013-12-10 13:10:39 -0700 | [diff] [blame] | 2424 | unmap: |
| 2425 | iounmap(dev->bar); |
| 2426 | dev->bar = NULL; |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2427 | disable: |
| 2428 | pci_release_regions(pdev); |
| 2429 | disable_pci: |
| 2430 | pci_disable_device(pdev); |
| 2431 | return result; |
| 2432 | } |
| 2433 | |
| 2434 | static void nvme_dev_unmap(struct nvme_dev *dev) |
| 2435 | { |
| 2436 | if (dev->pci_dev->msi_enabled) |
| 2437 | pci_disable_msi(dev->pci_dev); |
| 2438 | else if (dev->pci_dev->msix_enabled) |
| 2439 | pci_disable_msix(dev->pci_dev); |
| 2440 | |
| 2441 | if (dev->bar) { |
| 2442 | iounmap(dev->bar); |
| 2443 | dev->bar = NULL; |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2444 | pci_release_regions(dev->pci_dev); |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2445 | } |
| 2446 | |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2447 | if (pci_is_enabled(dev->pci_dev)) |
| 2448 | pci_disable_device(dev->pci_dev); |
| 2449 | } |
| 2450 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2451 | struct nvme_delq_ctx { |
| 2452 | struct task_struct *waiter; |
| 2453 | struct kthread_worker *worker; |
| 2454 | atomic_t refcount; |
| 2455 | }; |
| 2456 | |
| 2457 | static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev) |
| 2458 | { |
| 2459 | dq->waiter = current; |
| 2460 | mb(); |
| 2461 | |
| 2462 | for (;;) { |
| 2463 | set_current_state(TASK_KILLABLE); |
| 2464 | if (!atomic_read(&dq->refcount)) |
| 2465 | break; |
| 2466 | if (!schedule_timeout(ADMIN_TIMEOUT) || |
| 2467 | fatal_signal_pending(current)) { |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 2468 | /* |
| 2469 | * Disable the controller first since we can't trust it |
| 2470 | * at this point, but leave the admin queue enabled |
| 2471 | * until all queue deletion requests are flushed. |
| 2472 | * FIXME: This may take a while if there are more h/w |
| 2473 | * queues than admin tags. |
| 2474 | */ |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2475 | set_current_state(TASK_RUNNING); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2476 | nvme_disable_ctrl(dev, readq(&dev->bar->cap)); |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 2477 | nvme_clear_queue(dev->queues[0]); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2478 | flush_kthread_worker(dq->worker); |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 2479 | nvme_disable_queue(dev, 0); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2480 | return; |
| 2481 | } |
| 2482 | } |
| 2483 | set_current_state(TASK_RUNNING); |
| 2484 | } |
| 2485 | |
| 2486 | static void nvme_put_dq(struct nvme_delq_ctx *dq) |
| 2487 | { |
| 2488 | atomic_dec(&dq->refcount); |
| 2489 | if (dq->waiter) |
| 2490 | wake_up_process(dq->waiter); |
| 2491 | } |
| 2492 | |
| 2493 | static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq) |
| 2494 | { |
| 2495 | atomic_inc(&dq->refcount); |
| 2496 | return dq; |
| 2497 | } |
| 2498 | |
| 2499 | static void nvme_del_queue_end(struct nvme_queue *nvmeq) |
| 2500 | { |
| 2501 | struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2502 | nvme_put_dq(dq); |
| 2503 | } |
| 2504 | |
| 2505 | static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode, |
| 2506 | kthread_work_func_t fn) |
| 2507 | { |
| 2508 | struct nvme_command c; |
| 2509 | |
| 2510 | memset(&c, 0, sizeof(c)); |
| 2511 | c.delete_queue.opcode = opcode; |
| 2512 | c.delete_queue.qid = cpu_to_le16(nvmeq->qid); |
| 2513 | |
| 2514 | init_kthread_work(&nvmeq->cmdinfo.work, fn); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2515 | return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo, |
| 2516 | ADMIN_TIMEOUT); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2517 | } |
| 2518 | |
| 2519 | static void nvme_del_cq_work_handler(struct kthread_work *work) |
| 2520 | { |
| 2521 | struct nvme_queue *nvmeq = container_of(work, struct nvme_queue, |
| 2522 | cmdinfo.work); |
| 2523 | nvme_del_queue_end(nvmeq); |
| 2524 | } |
| 2525 | |
| 2526 | static int nvme_delete_cq(struct nvme_queue *nvmeq) |
| 2527 | { |
| 2528 | return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq, |
| 2529 | nvme_del_cq_work_handler); |
| 2530 | } |
| 2531 | |
| 2532 | static void nvme_del_sq_work_handler(struct kthread_work *work) |
| 2533 | { |
| 2534 | struct nvme_queue *nvmeq = container_of(work, struct nvme_queue, |
| 2535 | cmdinfo.work); |
| 2536 | int status = nvmeq->cmdinfo.status; |
| 2537 | |
| 2538 | if (!status) |
| 2539 | status = nvme_delete_cq(nvmeq); |
| 2540 | if (status) |
| 2541 | nvme_del_queue_end(nvmeq); |
| 2542 | } |
| 2543 | |
| 2544 | static int nvme_delete_sq(struct nvme_queue *nvmeq) |
| 2545 | { |
| 2546 | return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq, |
| 2547 | nvme_del_sq_work_handler); |
| 2548 | } |
| 2549 | |
| 2550 | static void nvme_del_queue_start(struct kthread_work *work) |
| 2551 | { |
| 2552 | struct nvme_queue *nvmeq = container_of(work, struct nvme_queue, |
| 2553 | cmdinfo.work); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2554 | if (nvme_delete_sq(nvmeq)) |
| 2555 | nvme_del_queue_end(nvmeq); |
| 2556 | } |
| 2557 | |
| 2558 | static void nvme_disable_io_queues(struct nvme_dev *dev) |
| 2559 | { |
| 2560 | int i; |
| 2561 | DEFINE_KTHREAD_WORKER_ONSTACK(worker); |
| 2562 | struct nvme_delq_ctx dq; |
| 2563 | struct task_struct *kworker_task = kthread_run(kthread_worker_fn, |
| 2564 | &worker, "nvme%d", dev->instance); |
| 2565 | |
| 2566 | if (IS_ERR(kworker_task)) { |
| 2567 | dev_err(&dev->pci_dev->dev, |
| 2568 | "Failed to create queue del task\n"); |
| 2569 | for (i = dev->queue_count - 1; i > 0; i--) |
| 2570 | nvme_disable_queue(dev, i); |
| 2571 | return; |
| 2572 | } |
| 2573 | |
| 2574 | dq.waiter = NULL; |
| 2575 | atomic_set(&dq.refcount, 0); |
| 2576 | dq.worker = &worker; |
| 2577 | for (i = dev->queue_count - 1; i > 0; i--) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2578 | struct nvme_queue *nvmeq = dev->queues[i]; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2579 | |
| 2580 | if (nvme_suspend_queue(nvmeq)) |
| 2581 | continue; |
| 2582 | nvmeq->cmdinfo.ctx = nvme_get_dq(&dq); |
| 2583 | nvmeq->cmdinfo.worker = dq.worker; |
| 2584 | init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start); |
| 2585 | queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work); |
| 2586 | } |
| 2587 | nvme_wait_dq(&dq, dev); |
| 2588 | kthread_stop(kworker_task); |
| 2589 | } |
| 2590 | |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2591 | /* |
| 2592 | * Remove the node from the device list and check |
| 2593 | * for whether or not we need to stop the nvme_thread. |
| 2594 | */ |
| 2595 | static void nvme_dev_list_remove(struct nvme_dev *dev) |
| 2596 | { |
| 2597 | struct task_struct *tmp = NULL; |
| 2598 | |
| 2599 | spin_lock(&dev_list_lock); |
| 2600 | list_del_init(&dev->node); |
| 2601 | if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) { |
| 2602 | tmp = nvme_thread; |
| 2603 | nvme_thread = NULL; |
| 2604 | } |
| 2605 | spin_unlock(&dev_list_lock); |
| 2606 | |
| 2607 | if (tmp) |
| 2608 | kthread_stop(tmp); |
| 2609 | } |
| 2610 | |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2611 | static void nvme_freeze_queues(struct nvme_dev *dev) |
| 2612 | { |
| 2613 | struct nvme_ns *ns; |
| 2614 | |
| 2615 | list_for_each_entry(ns, &dev->namespaces, list) { |
| 2616 | blk_mq_freeze_queue_start(ns->queue); |
| 2617 | |
| 2618 | spin_lock(ns->queue->queue_lock); |
| 2619 | queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue); |
| 2620 | spin_unlock(ns->queue->queue_lock); |
| 2621 | |
| 2622 | blk_mq_cancel_requeue_work(ns->queue); |
| 2623 | blk_mq_stop_hw_queues(ns->queue); |
| 2624 | } |
| 2625 | } |
| 2626 | |
| 2627 | static void nvme_unfreeze_queues(struct nvme_dev *dev) |
| 2628 | { |
| 2629 | struct nvme_ns *ns; |
| 2630 | |
| 2631 | list_for_each_entry(ns, &dev->namespaces, list) { |
| 2632 | queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue); |
| 2633 | blk_mq_unfreeze_queue(ns->queue); |
| 2634 | blk_mq_start_stopped_hw_queues(ns->queue, true); |
| 2635 | blk_mq_kick_requeue_list(ns->queue); |
| 2636 | } |
| 2637 | } |
| 2638 | |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2639 | static void nvme_dev_shutdown(struct nvme_dev *dev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2640 | { |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 2641 | int i; |
Keith Busch | 7c1b245 | 2014-06-25 11:18:12 -0600 | [diff] [blame] | 2642 | u32 csts = -1; |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 2643 | |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2644 | nvme_dev_list_remove(dev); |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2645 | |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2646 | if (dev->bar) { |
| 2647 | nvme_freeze_queues(dev); |
Keith Busch | 7c1b245 | 2014-06-25 11:18:12 -0600 | [diff] [blame] | 2648 | csts = readl(&dev->bar->csts); |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2649 | } |
Keith Busch | 7c1b245 | 2014-06-25 11:18:12 -0600 | [diff] [blame] | 2650 | if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) { |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2651 | for (i = dev->queue_count - 1; i >= 0; i--) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2652 | struct nvme_queue *nvmeq = dev->queues[i]; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2653 | nvme_suspend_queue(nvmeq); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2654 | } |
| 2655 | } else { |
| 2656 | nvme_disable_io_queues(dev); |
Keith Busch | 1894d8f | 2013-07-15 15:02:22 -0600 | [diff] [blame] | 2657 | nvme_shutdown_ctrl(dev); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2658 | nvme_disable_queue(dev, 0); |
| 2659 | } |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2660 | nvme_dev_unmap(dev); |
Keith Busch | 07836e6 | 2015-02-19 10:34:48 -0700 | [diff] [blame] | 2661 | |
| 2662 | for (i = dev->queue_count - 1; i >= 0; i--) |
| 2663 | nvme_clear_queue(dev->queues[i]); |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2664 | } |
| 2665 | |
| 2666 | static void nvme_dev_remove(struct nvme_dev *dev) |
| 2667 | { |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 2668 | struct nvme_ns *ns; |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2669 | |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 2670 | list_for_each_entry(ns, &dev->namespaces, list) { |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2671 | if (ns->disk->flags & GENHD_FL_UP) { |
Keith Busch | 52b68d7 | 2015-02-23 09:16:21 -0700 | [diff] [blame] | 2672 | if (blk_get_integrity(ns->disk)) |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2673 | blk_integrity_unregister(ns->disk); |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 2674 | del_gendisk(ns->disk); |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 2675 | } |
Keith Busch | cef6a94 | 2015-01-07 18:55:51 -0700 | [diff] [blame] | 2676 | if (!blk_queue_dying(ns->queue)) { |
| 2677 | blk_mq_abort_requeue_list(ns->queue); |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 2678 | blk_cleanup_queue(ns->queue); |
Keith Busch | cef6a94 | 2015-01-07 18:55:51 -0700 | [diff] [blame] | 2679 | } |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2680 | } |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2681 | } |
| 2682 | |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 2683 | static int nvme_setup_prp_pools(struct nvme_dev *dev) |
| 2684 | { |
| 2685 | struct device *dmadev = &dev->pci_dev->dev; |
| 2686 | dev->prp_page_pool = dma_pool_create("prp list page", dmadev, |
| 2687 | PAGE_SIZE, PAGE_SIZE, 0); |
| 2688 | if (!dev->prp_page_pool) |
| 2689 | return -ENOMEM; |
| 2690 | |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 2691 | /* Optimisation for I/Os between 4k and 128k */ |
| 2692 | dev->prp_small_pool = dma_pool_create("prp list 256", dmadev, |
| 2693 | 256, 256, 0); |
| 2694 | if (!dev->prp_small_pool) { |
| 2695 | dma_pool_destroy(dev->prp_page_pool); |
| 2696 | return -ENOMEM; |
| 2697 | } |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 2698 | return 0; |
| 2699 | } |
| 2700 | |
| 2701 | static void nvme_release_prp_pools(struct nvme_dev *dev) |
| 2702 | { |
| 2703 | dma_pool_destroy(dev->prp_page_pool); |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 2704 | dma_pool_destroy(dev->prp_small_pool); |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 2705 | } |
| 2706 | |
Quoc-Son Anh | cd58ad7 | 2012-02-21 16:50:53 -0700 | [diff] [blame] | 2707 | static DEFINE_IDA(nvme_instance_ida); |
| 2708 | |
| 2709 | static int nvme_set_instance(struct nvme_dev *dev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2710 | { |
Quoc-Son Anh | cd58ad7 | 2012-02-21 16:50:53 -0700 | [diff] [blame] | 2711 | int instance, error; |
| 2712 | |
| 2713 | do { |
| 2714 | if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL)) |
| 2715 | return -ENODEV; |
| 2716 | |
| 2717 | spin_lock(&dev_list_lock); |
| 2718 | error = ida_get_new(&nvme_instance_ida, &instance); |
| 2719 | spin_unlock(&dev_list_lock); |
| 2720 | } while (error == -EAGAIN); |
| 2721 | |
| 2722 | if (error) |
| 2723 | return -ENODEV; |
| 2724 | |
| 2725 | dev->instance = instance; |
| 2726 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2727 | } |
| 2728 | |
| 2729 | static void nvme_release_instance(struct nvme_dev *dev) |
| 2730 | { |
Quoc-Son Anh | cd58ad7 | 2012-02-21 16:50:53 -0700 | [diff] [blame] | 2731 | spin_lock(&dev_list_lock); |
| 2732 | ida_remove(&nvme_instance_ida, dev->instance); |
| 2733 | spin_unlock(&dev_list_lock); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2734 | } |
| 2735 | |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 2736 | static void nvme_free_namespaces(struct nvme_dev *dev) |
| 2737 | { |
| 2738 | struct nvme_ns *ns, *next; |
| 2739 | |
| 2740 | list_for_each_entry_safe(ns, next, &dev->namespaces, list) { |
| 2741 | list_del(&ns->list); |
Keith Busch | 9e60352 | 2014-10-03 11:15:47 -0600 | [diff] [blame] | 2742 | |
| 2743 | spin_lock(&dev_list_lock); |
| 2744 | ns->disk->private_data = NULL; |
| 2745 | spin_unlock(&dev_list_lock); |
| 2746 | |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 2747 | put_disk(ns->disk); |
| 2748 | kfree(ns); |
| 2749 | } |
| 2750 | } |
| 2751 | |
Keith Busch | 5e82e95 | 2013-02-19 10:17:58 -0700 | [diff] [blame] | 2752 | static void nvme_free_dev(struct kref *kref) |
| 2753 | { |
| 2754 | struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref); |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 2755 | |
Keith Busch | a96d4f5 | 2014-08-19 19:15:59 -0600 | [diff] [blame] | 2756 | pci_dev_put(dev->pci_dev); |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 2757 | put_device(dev->device); |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 2758 | nvme_free_namespaces(dev); |
Indraneel M | 285dffc | 2014-12-11 08:24:18 -0700 | [diff] [blame] | 2759 | nvme_release_instance(dev); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2760 | blk_mq_free_tag_set(&dev->tagset); |
Keith Busch | ea191d2 | 2015-01-07 18:55:49 -0700 | [diff] [blame] | 2761 | blk_put_queue(dev->admin_q); |
Keith Busch | 5e82e95 | 2013-02-19 10:17:58 -0700 | [diff] [blame] | 2762 | kfree(dev->queues); |
| 2763 | kfree(dev->entry); |
| 2764 | kfree(dev); |
| 2765 | } |
| 2766 | |
| 2767 | static int nvme_dev_open(struct inode *inode, struct file *f) |
| 2768 | { |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 2769 | struct nvme_dev *dev; |
| 2770 | int instance = iminor(inode); |
| 2771 | int ret = -ENODEV; |
| 2772 | |
| 2773 | spin_lock(&dev_list_lock); |
| 2774 | list_for_each_entry(dev, &dev_list, node) { |
| 2775 | if (dev->instance == instance) { |
Keith Busch | 2e1d844 | 2015-02-12 15:33:00 -0700 | [diff] [blame] | 2776 | if (!dev->admin_q) { |
| 2777 | ret = -EWOULDBLOCK; |
| 2778 | break; |
| 2779 | } |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 2780 | if (!kref_get_unless_zero(&dev->kref)) |
| 2781 | break; |
| 2782 | f->private_data = dev; |
| 2783 | ret = 0; |
| 2784 | break; |
| 2785 | } |
| 2786 | } |
| 2787 | spin_unlock(&dev_list_lock); |
| 2788 | |
| 2789 | return ret; |
Keith Busch | 5e82e95 | 2013-02-19 10:17:58 -0700 | [diff] [blame] | 2790 | } |
| 2791 | |
| 2792 | static int nvme_dev_release(struct inode *inode, struct file *f) |
| 2793 | { |
| 2794 | struct nvme_dev *dev = f->private_data; |
| 2795 | kref_put(&dev->kref, nvme_free_dev); |
| 2796 | return 0; |
| 2797 | } |
| 2798 | |
| 2799 | static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg) |
| 2800 | { |
| 2801 | struct nvme_dev *dev = f->private_data; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2802 | struct nvme_ns *ns; |
| 2803 | |
Keith Busch | 5e82e95 | 2013-02-19 10:17:58 -0700 | [diff] [blame] | 2804 | switch (cmd) { |
| 2805 | case NVME_IOCTL_ADMIN_CMD: |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2806 | return nvme_user_cmd(dev, NULL, (void __user *)arg); |
Keith Busch | 7963e52 | 2014-09-12 16:07:20 -0600 | [diff] [blame] | 2807 | case NVME_IOCTL_IO_CMD: |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2808 | if (list_empty(&dev->namespaces)) |
| 2809 | return -ENOTTY; |
| 2810 | ns = list_first_entry(&dev->namespaces, struct nvme_ns, list); |
| 2811 | return nvme_user_cmd(dev, ns, (void __user *)arg); |
Keith Busch | 5e82e95 | 2013-02-19 10:17:58 -0700 | [diff] [blame] | 2812 | default: |
| 2813 | return -ENOTTY; |
| 2814 | } |
| 2815 | } |
| 2816 | |
| 2817 | static const struct file_operations nvme_dev_fops = { |
| 2818 | .owner = THIS_MODULE, |
| 2819 | .open = nvme_dev_open, |
| 2820 | .release = nvme_dev_release, |
| 2821 | .unlocked_ioctl = nvme_dev_ioctl, |
| 2822 | .compat_ioctl = nvme_dev_ioctl, |
| 2823 | }; |
| 2824 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2825 | static void nvme_set_irq_hints(struct nvme_dev *dev) |
| 2826 | { |
| 2827 | struct nvme_queue *nvmeq; |
| 2828 | int i; |
| 2829 | |
| 2830 | for (i = 0; i < dev->online_queues; i++) { |
| 2831 | nvmeq = dev->queues[i]; |
| 2832 | |
| 2833 | if (!nvmeq->hctx) |
| 2834 | continue; |
| 2835 | |
| 2836 | irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector, |
| 2837 | nvmeq->hctx->cpumask); |
| 2838 | } |
| 2839 | } |
| 2840 | |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2841 | static int nvme_dev_start(struct nvme_dev *dev) |
| 2842 | { |
| 2843 | int result; |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2844 | bool start_thread = false; |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2845 | |
| 2846 | result = nvme_dev_map(dev); |
| 2847 | if (result) |
| 2848 | return result; |
| 2849 | |
| 2850 | result = nvme_configure_admin_queue(dev); |
| 2851 | if (result) |
| 2852 | goto unmap; |
| 2853 | |
| 2854 | spin_lock(&dev_list_lock); |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2855 | if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) { |
| 2856 | start_thread = true; |
| 2857 | nvme_thread = NULL; |
| 2858 | } |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2859 | list_add(&dev->node, &dev_list); |
| 2860 | spin_unlock(&dev_list_lock); |
| 2861 | |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2862 | if (start_thread) { |
| 2863 | nvme_thread = kthread_run(nvme_kthread, NULL, "nvme"); |
Keith Busch | 387caa5 | 2014-09-22 13:46:19 -0600 | [diff] [blame] | 2864 | wake_up_all(&nvme_kthread_wait); |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2865 | } else |
| 2866 | wait_event_killable(nvme_kthread_wait, nvme_thread); |
| 2867 | |
| 2868 | if (IS_ERR_OR_NULL(nvme_thread)) { |
| 2869 | result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR; |
| 2870 | goto disable; |
| 2871 | } |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2872 | |
| 2873 | nvme_init_queue(dev->queues[0], 0); |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 2874 | result = nvme_alloc_admin_tags(dev); |
| 2875 | if (result) |
| 2876 | goto disable; |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2877 | |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2878 | result = nvme_setup_io_queues(dev); |
Keith Busch | badc34d | 2014-06-23 14:25:35 -0600 | [diff] [blame] | 2879 | if (result) |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 2880 | goto free_tags; |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2881 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2882 | nvme_set_irq_hints(dev); |
| 2883 | |
Keith Busch | d82e8bf | 2013-09-05 14:45:07 -0600 | [diff] [blame] | 2884 | return result; |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2885 | |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 2886 | free_tags: |
| 2887 | nvme_dev_remove_admin(dev); |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2888 | disable: |
Keith Busch | a1a5ef9 | 2013-12-16 13:50:00 -0500 | [diff] [blame] | 2889 | nvme_disable_queue(dev, 0); |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2890 | nvme_dev_list_remove(dev); |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2891 | unmap: |
| 2892 | nvme_dev_unmap(dev); |
| 2893 | return result; |
| 2894 | } |
| 2895 | |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2896 | static int nvme_remove_dead_ctrl(void *arg) |
| 2897 | { |
| 2898 | struct nvme_dev *dev = (struct nvme_dev *)arg; |
| 2899 | struct pci_dev *pdev = dev->pci_dev; |
| 2900 | |
| 2901 | if (pci_get_drvdata(pdev)) |
Keith Busch | c81f497 | 2014-06-23 15:24:53 -0600 | [diff] [blame] | 2902 | pci_stop_and_remove_bus_device_locked(pdev); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2903 | kref_put(&dev->kref, nvme_free_dev); |
| 2904 | return 0; |
| 2905 | } |
| 2906 | |
| 2907 | static void nvme_remove_disks(struct work_struct *ws) |
| 2908 | { |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2909 | struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work); |
| 2910 | |
Keith Busch | 5a92e70 | 2014-02-21 14:13:44 -0700 | [diff] [blame] | 2911 | nvme_free_queues(dev, 1); |
Keith Busch | 302c672 | 2014-07-18 11:40:20 -0600 | [diff] [blame] | 2912 | nvme_dev_remove(dev); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2913 | } |
| 2914 | |
| 2915 | static int nvme_dev_resume(struct nvme_dev *dev) |
| 2916 | { |
| 2917 | int ret; |
| 2918 | |
| 2919 | ret = nvme_dev_start(dev); |
Keith Busch | badc34d | 2014-06-23 14:25:35 -0600 | [diff] [blame] | 2920 | if (ret) |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2921 | return ret; |
Keith Busch | badc34d | 2014-06-23 14:25:35 -0600 | [diff] [blame] | 2922 | if (dev->online_queues < 2) { |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2923 | spin_lock(&dev_list_lock); |
Tejun Heo | 9ca9737 | 2014-03-07 10:24:49 -0500 | [diff] [blame] | 2924 | dev->reset_workfn = nvme_remove_disks; |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2925 | queue_work(nvme_workq, &dev->reset_work); |
| 2926 | spin_unlock(&dev_list_lock); |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2927 | } else { |
| 2928 | nvme_unfreeze_queues(dev); |
| 2929 | nvme_set_irq_hints(dev); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2930 | } |
| 2931 | return 0; |
| 2932 | } |
| 2933 | |
| 2934 | static void nvme_dev_reset(struct nvme_dev *dev) |
| 2935 | { |
| 2936 | nvme_dev_shutdown(dev); |
| 2937 | if (nvme_dev_resume(dev)) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2938 | dev_warn(&dev->pci_dev->dev, "Device failed to resume\n"); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2939 | kref_get(&dev->kref); |
| 2940 | if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d", |
| 2941 | dev->instance))) { |
| 2942 | dev_err(&dev->pci_dev->dev, |
| 2943 | "Failed to start controller remove task\n"); |
| 2944 | kref_put(&dev->kref, nvme_free_dev); |
| 2945 | } |
| 2946 | } |
| 2947 | } |
| 2948 | |
| 2949 | static void nvme_reset_failed_dev(struct work_struct *ws) |
| 2950 | { |
| 2951 | struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work); |
| 2952 | nvme_dev_reset(dev); |
| 2953 | } |
| 2954 | |
Tejun Heo | 9ca9737 | 2014-03-07 10:24:49 -0500 | [diff] [blame] | 2955 | static void nvme_reset_workfn(struct work_struct *work) |
| 2956 | { |
| 2957 | struct nvme_dev *dev = container_of(work, struct nvme_dev, reset_work); |
| 2958 | dev->reset_workfn(work); |
| 2959 | } |
| 2960 | |
Keith Busch | 2e1d844 | 2015-02-12 15:33:00 -0700 | [diff] [blame] | 2961 | static void nvme_async_probe(struct work_struct *work); |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 2962 | static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2963 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2964 | int node, result = -ENOMEM; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2965 | struct nvme_dev *dev; |
| 2966 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2967 | node = dev_to_node(&pdev->dev); |
| 2968 | if (node == NUMA_NO_NODE) |
| 2969 | set_dev_node(&pdev->dev, 0); |
| 2970 | |
| 2971 | dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2972 | if (!dev) |
| 2973 | return -ENOMEM; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2974 | dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry), |
| 2975 | GFP_KERNEL, node); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2976 | if (!dev->entry) |
| 2977 | goto free; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2978 | dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *), |
| 2979 | GFP_KERNEL, node); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2980 | if (!dev->queues) |
| 2981 | goto free; |
| 2982 | |
| 2983 | INIT_LIST_HEAD(&dev->namespaces); |
Tejun Heo | 9ca9737 | 2014-03-07 10:24:49 -0500 | [diff] [blame] | 2984 | dev->reset_workfn = nvme_reset_failed_dev; |
| 2985 | INIT_WORK(&dev->reset_work, nvme_reset_workfn); |
Keith Busch | a96d4f5 | 2014-08-19 19:15:59 -0600 | [diff] [blame] | 2986 | dev->pci_dev = pci_dev_get(pdev); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2987 | pci_set_drvdata(pdev, dev); |
Quoc-Son Anh | cd58ad7 | 2012-02-21 16:50:53 -0700 | [diff] [blame] | 2988 | result = nvme_set_instance(dev); |
| 2989 | if (result) |
Keith Busch | a96d4f5 | 2014-08-19 19:15:59 -0600 | [diff] [blame] | 2990 | goto put_pci; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2991 | |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 2992 | result = nvme_setup_prp_pools(dev); |
| 2993 | if (result) |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2994 | goto release; |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 2995 | |
Keith Busch | fb35e91 | 2014-03-03 11:09:47 -0700 | [diff] [blame] | 2996 | kref_init(&dev->kref); |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 2997 | dev->device = device_create(nvme_class, &pdev->dev, |
| 2998 | MKDEV(nvme_char_major, dev->instance), |
| 2999 | dev, "nvme%d", dev->instance); |
| 3000 | if (IS_ERR(dev->device)) { |
| 3001 | result = PTR_ERR(dev->device); |
Keith Busch | 2e1d844 | 2015-02-12 15:33:00 -0700 | [diff] [blame] | 3002 | goto release_pools; |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 3003 | } |
| 3004 | get_device(dev->device); |
| 3005 | |
Keith Busch | e6e96d7 | 2015-03-23 09:32:37 -0600 | [diff] [blame^] | 3006 | INIT_LIST_HEAD(&dev->node); |
Keith Busch | 2e1d844 | 2015-02-12 15:33:00 -0700 | [diff] [blame] | 3007 | INIT_WORK(&dev->probe_work, nvme_async_probe); |
| 3008 | schedule_work(&dev->probe_work); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3009 | return 0; |
| 3010 | |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 3011 | release_pools: |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 3012 | nvme_release_prp_pools(dev); |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 3013 | release: |
| 3014 | nvme_release_instance(dev); |
Keith Busch | a96d4f5 | 2014-08-19 19:15:59 -0600 | [diff] [blame] | 3015 | put_pci: |
| 3016 | pci_dev_put(dev->pci_dev); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3017 | free: |
| 3018 | kfree(dev->queues); |
| 3019 | kfree(dev->entry); |
| 3020 | kfree(dev); |
| 3021 | return result; |
| 3022 | } |
| 3023 | |
Keith Busch | 2e1d844 | 2015-02-12 15:33:00 -0700 | [diff] [blame] | 3024 | static void nvme_async_probe(struct work_struct *work) |
| 3025 | { |
| 3026 | struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work); |
| 3027 | int result; |
| 3028 | |
| 3029 | result = nvme_dev_start(dev); |
| 3030 | if (result) |
| 3031 | goto reset; |
| 3032 | |
| 3033 | if (dev->online_queues > 1) |
| 3034 | result = nvme_dev_add(dev); |
| 3035 | if (result) |
| 3036 | goto reset; |
| 3037 | |
| 3038 | nvme_set_irq_hints(dev); |
Keith Busch | 2e1d844 | 2015-02-12 15:33:00 -0700 | [diff] [blame] | 3039 | return; |
| 3040 | reset: |
Keith Busch | 07836e6 | 2015-02-19 10:34:48 -0700 | [diff] [blame] | 3041 | if (!work_busy(&dev->reset_work)) { |
| 3042 | dev->reset_workfn = nvme_reset_failed_dev; |
| 3043 | queue_work(nvme_workq, &dev->reset_work); |
| 3044 | } |
Keith Busch | 2e1d844 | 2015-02-12 15:33:00 -0700 | [diff] [blame] | 3045 | } |
| 3046 | |
Keith Busch | f0d54a5 | 2014-05-02 10:40:43 -0600 | [diff] [blame] | 3047 | static void nvme_reset_notify(struct pci_dev *pdev, bool prepare) |
| 3048 | { |
Keith Busch | a673947 | 2014-06-23 16:03:21 -0600 | [diff] [blame] | 3049 | struct nvme_dev *dev = pci_get_drvdata(pdev); |
Keith Busch | f0d54a5 | 2014-05-02 10:40:43 -0600 | [diff] [blame] | 3050 | |
Keith Busch | a673947 | 2014-06-23 16:03:21 -0600 | [diff] [blame] | 3051 | if (prepare) |
| 3052 | nvme_dev_shutdown(dev); |
| 3053 | else |
| 3054 | nvme_dev_resume(dev); |
Keith Busch | f0d54a5 | 2014-05-02 10:40:43 -0600 | [diff] [blame] | 3055 | } |
| 3056 | |
Keith Busch | 09ece14 | 2014-01-27 11:29:40 -0500 | [diff] [blame] | 3057 | static void nvme_shutdown(struct pci_dev *pdev) |
| 3058 | { |
| 3059 | struct nvme_dev *dev = pci_get_drvdata(pdev); |
| 3060 | nvme_dev_shutdown(dev); |
| 3061 | } |
| 3062 | |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 3063 | static void nvme_remove(struct pci_dev *pdev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3064 | { |
| 3065 | struct nvme_dev *dev = pci_get_drvdata(pdev); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 3066 | |
| 3067 | spin_lock(&dev_list_lock); |
| 3068 | list_del_init(&dev->node); |
| 3069 | spin_unlock(&dev_list_lock); |
| 3070 | |
| 3071 | pci_set_drvdata(pdev, NULL); |
Keith Busch | 2e1d844 | 2015-02-12 15:33:00 -0700 | [diff] [blame] | 3072 | flush_work(&dev->probe_work); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 3073 | flush_work(&dev->reset_work); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 3074 | nvme_dev_shutdown(dev); |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 3075 | nvme_dev_remove(dev); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 3076 | nvme_dev_remove_admin(dev); |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 3077 | device_destroy(nvme_class, MKDEV(nvme_char_major, dev->instance)); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 3078 | nvme_free_queues(dev, 0); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 3079 | nvme_release_prp_pools(dev); |
Keith Busch | 5e82e95 | 2013-02-19 10:17:58 -0700 | [diff] [blame] | 3080 | kref_put(&dev->kref, nvme_free_dev); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3081 | } |
| 3082 | |
| 3083 | /* These functions are yet to be implemented */ |
| 3084 | #define nvme_error_detected NULL |
| 3085 | #define nvme_dump_registers NULL |
| 3086 | #define nvme_link_reset NULL |
| 3087 | #define nvme_slot_reset NULL |
| 3088 | #define nvme_error_resume NULL |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 3089 | |
Jingoo Han | 671a601 | 2014-02-13 11:19:14 +0900 | [diff] [blame] | 3090 | #ifdef CONFIG_PM_SLEEP |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 3091 | static int nvme_suspend(struct device *dev) |
| 3092 | { |
| 3093 | struct pci_dev *pdev = to_pci_dev(dev); |
| 3094 | struct nvme_dev *ndev = pci_get_drvdata(pdev); |
| 3095 | |
| 3096 | nvme_dev_shutdown(ndev); |
| 3097 | return 0; |
| 3098 | } |
| 3099 | |
| 3100 | static int nvme_resume(struct device *dev) |
| 3101 | { |
| 3102 | struct pci_dev *pdev = to_pci_dev(dev); |
| 3103 | struct nvme_dev *ndev = pci_get_drvdata(pdev); |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 3104 | |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 3105 | if (nvme_dev_resume(ndev) && !work_busy(&ndev->reset_work)) { |
Tejun Heo | 9ca9737 | 2014-03-07 10:24:49 -0500 | [diff] [blame] | 3106 | ndev->reset_workfn = nvme_reset_failed_dev; |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 3107 | queue_work(nvme_workq, &ndev->reset_work); |
| 3108 | } |
| 3109 | return 0; |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 3110 | } |
Jingoo Han | 671a601 | 2014-02-13 11:19:14 +0900 | [diff] [blame] | 3111 | #endif |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 3112 | |
| 3113 | static SIMPLE_DEV_PM_OPS(nvme_dev_pm_ops, nvme_suspend, nvme_resume); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3114 | |
Stephen Hemminger | 1d35203 | 2012-09-07 09:33:17 -0700 | [diff] [blame] | 3115 | static const struct pci_error_handlers nvme_err_handler = { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3116 | .error_detected = nvme_error_detected, |
| 3117 | .mmio_enabled = nvme_dump_registers, |
| 3118 | .link_reset = nvme_link_reset, |
| 3119 | .slot_reset = nvme_slot_reset, |
| 3120 | .resume = nvme_error_resume, |
Keith Busch | f0d54a5 | 2014-05-02 10:40:43 -0600 | [diff] [blame] | 3121 | .reset_notify = nvme_reset_notify, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3122 | }; |
| 3123 | |
| 3124 | /* Move to pci_ids.h later */ |
| 3125 | #define PCI_CLASS_STORAGE_EXPRESS 0x010802 |
| 3126 | |
Matthew Wilcox | 6eb0d69 | 2014-03-24 10:11:22 -0400 | [diff] [blame] | 3127 | static const struct pci_device_id nvme_id_table[] = { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3128 | { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) }, |
| 3129 | { 0, } |
| 3130 | }; |
| 3131 | MODULE_DEVICE_TABLE(pci, nvme_id_table); |
| 3132 | |
| 3133 | static struct pci_driver nvme_driver = { |
| 3134 | .name = "nvme", |
| 3135 | .id_table = nvme_id_table, |
| 3136 | .probe = nvme_probe, |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 3137 | .remove = nvme_remove, |
Keith Busch | 09ece14 | 2014-01-27 11:29:40 -0500 | [diff] [blame] | 3138 | .shutdown = nvme_shutdown, |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 3139 | .driver = { |
| 3140 | .pm = &nvme_dev_pm_ops, |
| 3141 | }, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3142 | .err_handler = &nvme_err_handler, |
| 3143 | }; |
| 3144 | |
| 3145 | static int __init nvme_init(void) |
| 3146 | { |
Matthew Wilcox | 0ac1314 | 2012-07-31 13:31:15 -0400 | [diff] [blame] | 3147 | int result; |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 3148 | |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 3149 | init_waitqueue_head(&nvme_kthread_wait); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3150 | |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 3151 | nvme_workq = create_singlethread_workqueue("nvme"); |
| 3152 | if (!nvme_workq) |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 3153 | return -ENOMEM; |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 3154 | |
Keith Busch | 5c42ea1 | 2012-07-25 16:05:18 -0600 | [diff] [blame] | 3155 | result = register_blkdev(nvme_major, "nvme"); |
| 3156 | if (result < 0) |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 3157 | goto kill_workq; |
Keith Busch | 5c42ea1 | 2012-07-25 16:05:18 -0600 | [diff] [blame] | 3158 | else if (result > 0) |
Matthew Wilcox | 0ac1314 | 2012-07-31 13:31:15 -0400 | [diff] [blame] | 3159 | nvme_major = result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3160 | |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 3161 | result = __register_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme", |
| 3162 | &nvme_dev_fops); |
| 3163 | if (result < 0) |
| 3164 | goto unregister_blkdev; |
| 3165 | else if (result > 0) |
| 3166 | nvme_char_major = result; |
| 3167 | |
| 3168 | nvme_class = class_create(THIS_MODULE, "nvme"); |
| 3169 | if (!nvme_class) |
| 3170 | goto unregister_chrdev; |
| 3171 | |
Keith Busch | f3db22f | 2014-06-11 11:51:35 -0600 | [diff] [blame] | 3172 | result = pci_register_driver(&nvme_driver); |
| 3173 | if (result) |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 3174 | goto destroy_class; |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 3175 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3176 | |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 3177 | destroy_class: |
| 3178 | class_destroy(nvme_class); |
| 3179 | unregister_chrdev: |
| 3180 | __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme"); |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 3181 | unregister_blkdev: |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3182 | unregister_blkdev(nvme_major, "nvme"); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 3183 | kill_workq: |
| 3184 | destroy_workqueue(nvme_workq); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3185 | return result; |
| 3186 | } |
| 3187 | |
| 3188 | static void __exit nvme_exit(void) |
| 3189 | { |
| 3190 | pci_unregister_driver(&nvme_driver); |
| 3191 | unregister_blkdev(nvme_major, "nvme"); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 3192 | destroy_workqueue(nvme_workq); |
Keith Busch | b3fffde | 2015-02-03 11:21:42 -0700 | [diff] [blame] | 3193 | class_destroy(nvme_class); |
| 3194 | __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme"); |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 3195 | BUG_ON(nvme_thread && !IS_ERR(nvme_thread)); |
Matthew Wilcox | 21bd78b | 2014-05-09 22:42:26 -0400 | [diff] [blame] | 3196 | _nvme_check_size(); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3197 | } |
| 3198 | |
| 3199 | MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>"); |
| 3200 | MODULE_LICENSE("GPL"); |
Keith Busch | c78b4713 | 2014-11-21 15:16:32 -0700 | [diff] [blame] | 3201 | MODULE_VERSION("1.0"); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 3202 | module_init(nvme_init); |
| 3203 | module_exit(nvme_exit); |