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