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> |
| 31 | #include <linux/mm.h> |
| 32 | #include <linux/module.h> |
| 33 | #include <linux/moduleparam.h> |
| 34 | #include <linux/pci.h> |
Matthew Wilcox | be7b627 | 2011-02-06 07:53:23 -0500 | [diff] [blame] | 35 | #include <linux/poison.h> |
Matthew Wilcox | c3bfe71 | 2013-07-08 17:26:25 -0400 | [diff] [blame] | 36 | #include <linux/ptrace.h> |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 37 | #include <linux/sched.h> |
| 38 | #include <linux/slab.h> |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 39 | #include <linux/t10-pi.h> |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 40 | #include <linux/types.h> |
Linus Torvalds | 9cf5c09 | 2015-11-06 14:22:15 -0800 | [diff] [blame] | 41 | #include <linux/io-64-nonatomic-lo-hi.h> |
Keith Busch | 1d277a6 | 2015-10-15 14:10:52 +0200 | [diff] [blame] | 42 | #include <asm/unaligned.h> |
Hitoshi Mitake | 797a796 | 2012-02-07 11:45:33 +0900 | [diff] [blame] | 43 | |
Christoph Hellwig | f11bb3e | 2015-10-03 15:46:41 +0200 | [diff] [blame] | 44 | #include "nvme.h" |
| 45 | |
Keith Busch | 9d43cf6 | 2014-05-13 11:42:02 -0600 | [diff] [blame] | 46 | #define NVME_Q_DEPTH 1024 |
Jens Axboe | d31af0a | 2015-03-06 12:56:13 -0700 | [diff] [blame] | 47 | #define NVME_AQ_DEPTH 256 |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 48 | #define SQ_SIZE(depth) (depth * sizeof(struct nvme_command)) |
| 49 | #define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion)) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 50 | |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 51 | unsigned char admin_timeout = 60; |
Keith Busch | 9d43cf6 | 2014-05-13 11:42:02 -0600 | [diff] [blame] | 52 | module_param(admin_timeout, byte, 0644); |
| 53 | MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands"); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 54 | |
Matthew Wilcox | bd67608 | 2014-06-03 23:04:30 -0400 | [diff] [blame] | 55 | unsigned char nvme_io_timeout = 30; |
| 56 | module_param_named(io_timeout, nvme_io_timeout, byte, 0644); |
Keith Busch | b355084 | 2014-04-04 11:43:36 -0600 | [diff] [blame] | 57 | MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O"); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 58 | |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 59 | unsigned char shutdown_timeout = 5; |
Dan McLeran | 2484f40 | 2014-07-01 09:33:32 -0600 | [diff] [blame] | 60 | module_param(shutdown_timeout, byte, 0644); |
| 61 | MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown"); |
| 62 | |
Matthew Wilcox | 58ffacb | 2011-02-06 07:28:06 -0500 | [diff] [blame] | 63 | static int use_threaded_interrupts; |
| 64 | module_param(use_threaded_interrupts, int, 0); |
| 65 | |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 66 | static bool use_cmb_sqes = true; |
| 67 | module_param(use_cmb_sqes, bool, 0644); |
| 68 | MODULE_PARM_DESC(use_cmb_sqes, "use controller's memory buffer for I/O SQes"); |
| 69 | |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 70 | static LIST_HEAD(dev_list); |
| 71 | static struct task_struct *nvme_thread; |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 72 | static struct workqueue_struct *nvme_workq; |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 73 | static wait_queue_head_t nvme_kthread_wait; |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 74 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 75 | struct nvme_dev; |
| 76 | struct nvme_queue; |
Christoph Hellwig | d4f6c3a | 2015-11-26 10:51:23 +0100 | [diff] [blame] | 77 | struct nvme_iod; |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 78 | |
Christoph Hellwig | 90667892 | 2015-10-02 18:49:23 +0200 | [diff] [blame] | 79 | static int __nvme_reset(struct nvme_dev *dev); |
Keith Busch | 4cc0652 | 2015-06-05 10:30:08 -0600 | [diff] [blame] | 80 | static int nvme_reset(struct nvme_dev *dev); |
Jens Axboe | a0fa964 | 2015-11-03 20:37:26 -0700 | [diff] [blame] | 81 | static void nvme_process_cq(struct nvme_queue *nvmeq); |
Christoph Hellwig | d4f6c3a | 2015-11-26 10:51:23 +0100 | [diff] [blame] | 82 | static void nvme_unmap_data(struct nvme_dev *dev, struct nvme_iod *iod); |
Christoph Hellwig | 3cf519b | 2015-10-03 09:49:23 +0200 | [diff] [blame] | 83 | static void nvme_dead_ctrl(struct nvme_dev *dev); |
Keith Busch | d4b4ff8 | 2013-12-10 13:10:37 -0700 | [diff] [blame] | 84 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 85 | struct async_cmd_info { |
| 86 | struct kthread_work work; |
| 87 | struct kthread_worker *worker; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 88 | struct request *req; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 89 | u32 result; |
| 90 | int status; |
| 91 | void *ctx; |
| 92 | }; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 93 | |
| 94 | /* |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 95 | * Represents an NVM Express device. Each nvme_dev is a PCI function. |
| 96 | */ |
| 97 | struct nvme_dev { |
| 98 | struct list_head node; |
| 99 | struct nvme_queue **queues; |
| 100 | struct blk_mq_tag_set tagset; |
| 101 | struct blk_mq_tag_set admin_tagset; |
| 102 | u32 __iomem *dbs; |
| 103 | struct device *dev; |
| 104 | struct dma_pool *prp_page_pool; |
| 105 | struct dma_pool *prp_small_pool; |
| 106 | unsigned queue_count; |
| 107 | unsigned online_queues; |
| 108 | unsigned max_qid; |
| 109 | int q_depth; |
| 110 | u32 db_stride; |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 111 | struct msix_entry *entry; |
| 112 | void __iomem *bar; |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 113 | struct work_struct reset_work; |
| 114 | struct work_struct probe_work; |
| 115 | struct work_struct scan_work; |
| 116 | bool subsystem; |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 117 | void __iomem *cmb; |
| 118 | dma_addr_t cmb_dma_addr; |
| 119 | u64 cmb_size; |
| 120 | u32 cmbsz; |
| 121 | |
| 122 | struct nvme_ctrl ctrl; |
| 123 | }; |
| 124 | |
| 125 | static inline struct nvme_dev *to_nvme_dev(struct nvme_ctrl *ctrl) |
| 126 | { |
| 127 | return container_of(ctrl, struct nvme_dev, ctrl); |
| 128 | } |
| 129 | |
| 130 | /* |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 131 | * An NVM Express queue. Each device has at least two (one for admin |
| 132 | * commands and one for I/O commands). |
| 133 | */ |
| 134 | struct nvme_queue { |
| 135 | struct device *q_dmadev; |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 136 | struct nvme_dev *dev; |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 137 | char irqname[24]; /* nvme4294967295-65535\0 */ |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 138 | spinlock_t q_lock; |
| 139 | struct nvme_command *sq_cmds; |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 140 | struct nvme_command __iomem *sq_cmds_io; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 141 | volatile struct nvme_completion *cqes; |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 142 | struct blk_mq_tags **tags; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 143 | dma_addr_t sq_dma_addr; |
| 144 | dma_addr_t cq_dma_addr; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 145 | u32 __iomem *q_db; |
| 146 | u16 q_depth; |
Jens Axboe | 6222d17 | 2015-01-15 15:19:10 -0700 | [diff] [blame] | 147 | s16 cq_vector; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 148 | u16 sq_head; |
| 149 | u16 sq_tail; |
| 150 | u16 cq_head; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 151 | u16 qid; |
Matthew Wilcox | e9539f4 | 2013-06-24 11:47:34 -0400 | [diff] [blame] | 152 | u8 cq_phase; |
| 153 | u8 cqe_seen; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 154 | struct async_cmd_info cmdinfo; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | /* |
Christoph Hellwig | 71bd150 | 2015-10-16 07:58:32 +0200 | [diff] [blame] | 158 | * The nvme_iod describes the data in an I/O, including the list of PRP |
| 159 | * entries. You can't see it in this data structure because C doesn't let |
| 160 | * me express that. Use nvme_alloc_iod to ensure there's enough space |
| 161 | * allocated to store the PRP list. |
| 162 | */ |
| 163 | struct nvme_iod { |
| 164 | unsigned long private; /* For the use of the submitter of the I/O */ |
| 165 | int npages; /* In the PRP list. 0 means small pool in use */ |
| 166 | int offset; /* Of PRP list */ |
| 167 | int nents; /* Used in scatterlist */ |
| 168 | int length; /* Of data, in bytes */ |
| 169 | dma_addr_t first_dma; |
| 170 | struct scatterlist meta_sg[1]; /* metadata requires single contiguous buffer */ |
| 171 | struct scatterlist sg[0]; |
| 172 | }; |
| 173 | |
| 174 | /* |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 175 | * Check we didin't inadvertently grow the command struct |
| 176 | */ |
| 177 | static inline void _nvme_check_size(void) |
| 178 | { |
| 179 | BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64); |
| 180 | BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64); |
| 181 | BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64); |
| 182 | BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64); |
| 183 | BUILD_BUG_ON(sizeof(struct nvme_features) != 64); |
Vishal Verma | f8ebf84 | 2013-03-27 07:13:41 -0400 | [diff] [blame] | 184 | BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64); |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 185 | BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 186 | BUILD_BUG_ON(sizeof(struct nvme_command) != 64); |
| 187 | BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096); |
| 188 | BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096); |
| 189 | BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64); |
Keith Busch | 6ecec74 | 2012-09-26 12:49:27 -0600 | [diff] [blame] | 190 | BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 191 | } |
| 192 | |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 193 | typedef void (*nvme_completion_fn)(struct nvme_queue *, void *, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 194 | struct nvme_completion *); |
| 195 | |
Matthew Wilcox | e85248e | 2011-02-06 18:30:16 -0500 | [diff] [blame] | 196 | struct nvme_cmd_info { |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 197 | nvme_completion_fn fn; |
| 198 | void *ctx; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 199 | int aborted; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 200 | struct nvme_queue *nvmeq; |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 201 | struct nvme_iod iod[0]; |
Matthew Wilcox | e85248e | 2011-02-06 18:30:16 -0500 | [diff] [blame] | 202 | }; |
| 203 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 204 | /* |
| 205 | * Max size of iod being embedded in the request payload |
| 206 | */ |
| 207 | #define NVME_INT_PAGES 2 |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 208 | #define NVME_INT_BYTES(dev) (NVME_INT_PAGES * (dev)->ctrl.page_size) |
Chong Yuan | fda631f | 2015-03-27 09:21:32 +0800 | [diff] [blame] | 209 | #define NVME_INT_MASK 0x01 |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 210 | |
| 211 | /* |
| 212 | * Will slightly overestimate the number of pages needed. This is OK |
| 213 | * as it only leads to a small amount of wasted memory for the lifetime of |
| 214 | * the I/O. |
| 215 | */ |
| 216 | static int nvme_npages(unsigned size, struct nvme_dev *dev) |
| 217 | { |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 218 | unsigned nprps = DIV_ROUND_UP(size + dev->ctrl.page_size, |
| 219 | dev->ctrl.page_size); |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 220 | return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8); |
| 221 | } |
| 222 | |
| 223 | static unsigned int nvme_cmd_size(struct nvme_dev *dev) |
| 224 | { |
| 225 | unsigned int ret = sizeof(struct nvme_cmd_info); |
| 226 | |
| 227 | ret += sizeof(struct nvme_iod); |
| 228 | ret += sizeof(__le64 *) * nvme_npages(NVME_INT_BYTES(dev), dev); |
| 229 | ret += sizeof(struct scatterlist) * NVME_INT_PAGES; |
| 230 | |
| 231 | return ret; |
| 232 | } |
| 233 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 234 | static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data, |
| 235 | unsigned int hctx_idx) |
Matthew Wilcox | e85248e | 2011-02-06 18:30:16 -0500 | [diff] [blame] | 236 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 237 | struct nvme_dev *dev = data; |
| 238 | struct nvme_queue *nvmeq = dev->queues[0]; |
| 239 | |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 240 | WARN_ON(hctx_idx != 0); |
| 241 | WARN_ON(dev->admin_tagset.tags[0] != hctx->tags); |
| 242 | WARN_ON(nvmeq->tags); |
| 243 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 244 | hctx->driver_data = nvmeq; |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 245 | nvmeq->tags = &dev->admin_tagset.tags[0]; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 246 | return 0; |
Matthew Wilcox | e85248e | 2011-02-06 18:30:16 -0500 | [diff] [blame] | 247 | } |
| 248 | |
Keith Busch | 4af0e21 | 2015-06-08 10:08:13 -0600 | [diff] [blame] | 249 | static void nvme_admin_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx) |
| 250 | { |
| 251 | struct nvme_queue *nvmeq = hctx->driver_data; |
| 252 | |
| 253 | nvmeq->tags = NULL; |
| 254 | } |
| 255 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 256 | static int nvme_admin_init_request(void *data, struct request *req, |
| 257 | unsigned int hctx_idx, unsigned int rq_idx, |
| 258 | unsigned int numa_node) |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 259 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 260 | struct nvme_dev *dev = data; |
| 261 | struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req); |
| 262 | struct nvme_queue *nvmeq = dev->queues[0]; |
| 263 | |
| 264 | BUG_ON(!nvmeq); |
| 265 | cmd->nvmeq = nvmeq; |
| 266 | return 0; |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 267 | } |
| 268 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 269 | static int nvme_init_hctx(struct blk_mq_hw_ctx *hctx, void *data, |
| 270 | unsigned int hctx_idx) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 271 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 272 | struct nvme_dev *dev = data; |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 273 | struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 274 | |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 275 | if (!nvmeq->tags) |
| 276 | nvmeq->tags = &dev->tagset.tags[hctx_idx]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 277 | |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 278 | WARN_ON(dev->tagset.tags[hctx_idx] != hctx->tags); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 279 | hctx->driver_data = nvmeq; |
| 280 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 281 | } |
| 282 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 283 | static int nvme_init_request(void *data, struct request *req, |
| 284 | unsigned int hctx_idx, unsigned int rq_idx, |
| 285 | unsigned int numa_node) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 286 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 287 | struct nvme_dev *dev = data; |
| 288 | struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req); |
| 289 | struct nvme_queue *nvmeq = dev->queues[hctx_idx + 1]; |
| 290 | |
| 291 | BUG_ON(!nvmeq); |
| 292 | cmd->nvmeq = nvmeq; |
| 293 | return 0; |
| 294 | } |
| 295 | |
| 296 | static void nvme_set_info(struct nvme_cmd_info *cmd, void *ctx, |
| 297 | nvme_completion_fn handler) |
| 298 | { |
| 299 | cmd->fn = handler; |
| 300 | cmd->ctx = ctx; |
| 301 | cmd->aborted = 0; |
Keith Busch | c917dfe | 2015-01-07 18:55:48 -0700 | [diff] [blame] | 302 | blk_mq_start_request(blk_mq_rq_from_pdu(cmd)); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 303 | } |
| 304 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 305 | static void *iod_get_private(struct nvme_iod *iod) |
| 306 | { |
| 307 | return (void *) (iod->private & ~0x1UL); |
| 308 | } |
| 309 | |
| 310 | /* |
| 311 | * If bit 0 is set, the iod is embedded in the request payload. |
| 312 | */ |
| 313 | static bool iod_should_kfree(struct nvme_iod *iod) |
| 314 | { |
Chong Yuan | fda631f | 2015-03-27 09:21:32 +0800 | [diff] [blame] | 315 | return (iod->private & NVME_INT_MASK) == 0; |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 318 | /* Special values must be less than 0x1000 */ |
| 319 | #define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA) |
Matthew Wilcox | d2d8703 | 2011-02-07 15:55:59 -0500 | [diff] [blame] | 320 | #define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE) |
| 321 | #define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE) |
| 322 | #define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE) |
Matthew Wilcox | be7b627 | 2011-02-06 07:53:23 -0500 | [diff] [blame] | 323 | |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 324 | static void special_completion(struct nvme_queue *nvmeq, void *ctx, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 325 | struct nvme_completion *cqe) |
| 326 | { |
| 327 | if (ctx == CMD_CTX_CANCELLED) |
| 328 | return; |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 329 | if (ctx == CMD_CTX_COMPLETED) { |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 330 | dev_warn(nvmeq->q_dmadev, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 331 | "completed id %d twice on queue %d\n", |
| 332 | cqe->command_id, le16_to_cpup(&cqe->sq_id)); |
| 333 | return; |
| 334 | } |
| 335 | if (ctx == CMD_CTX_INVALID) { |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 336 | dev_warn(nvmeq->q_dmadev, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 337 | "invalid id %d completed on queue %d\n", |
| 338 | cqe->command_id, le16_to_cpup(&cqe->sq_id)); |
| 339 | return; |
| 340 | } |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 341 | dev_warn(nvmeq->q_dmadev, "Unknown special completion %p\n", ctx); |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 342 | } |
| 343 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 344 | static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn) |
| 345 | { |
| 346 | void *ctx; |
| 347 | |
| 348 | if (fn) |
| 349 | *fn = cmd->fn; |
| 350 | ctx = cmd->ctx; |
| 351 | cmd->fn = special_completion; |
| 352 | cmd->ctx = CMD_CTX_CANCELLED; |
| 353 | return ctx; |
| 354 | } |
| 355 | |
| 356 | static void async_req_completion(struct nvme_queue *nvmeq, void *ctx, |
| 357 | struct nvme_completion *cqe) |
| 358 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 359 | u32 result = le32_to_cpup(&cqe->result); |
| 360 | u16 status = le16_to_cpup(&cqe->status) >> 1; |
| 361 | |
| 362 | if (status == NVME_SC_SUCCESS || status == NVME_SC_ABORT_REQ) |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 363 | ++nvmeq->dev->ctrl.event_limit; |
Keith Busch | a5768aa | 2015-06-01 14:28:14 -0600 | [diff] [blame] | 364 | if (status != NVME_SC_SUCCESS) |
| 365 | return; |
| 366 | |
| 367 | switch (result & 0xff07) { |
| 368 | case NVME_AER_NOTICE_NS_CHANGED: |
| 369 | dev_info(nvmeq->q_dmadev, "rescanning\n"); |
| 370 | schedule_work(&nvmeq->dev->scan_work); |
| 371 | default: |
| 372 | dev_warn(nvmeq->q_dmadev, "async event result %08x\n", result); |
| 373 | } |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | static void abort_completion(struct nvme_queue *nvmeq, void *ctx, |
| 377 | struct nvme_completion *cqe) |
| 378 | { |
| 379 | struct request *req = ctx; |
| 380 | |
| 381 | u16 status = le16_to_cpup(&cqe->status) >> 1; |
| 382 | u32 result = le32_to_cpup(&cqe->result); |
| 383 | |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 384 | blk_mq_free_request(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 385 | |
| 386 | dev_warn(nvmeq->q_dmadev, "Abort status:%x result:%x", status, result); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 387 | ++nvmeq->dev->ctrl.abort_limit; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 388 | } |
| 389 | |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 390 | static void async_completion(struct nvme_queue *nvmeq, void *ctx, |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 391 | struct nvme_completion *cqe) |
| 392 | { |
| 393 | struct async_cmd_info *cmdinfo = ctx; |
| 394 | cmdinfo->result = le32_to_cpup(&cqe->result); |
| 395 | cmdinfo->status = le16_to_cpup(&cqe->status) >> 1; |
| 396 | queue_kthread_work(cmdinfo->worker, &cmdinfo->work); |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 397 | blk_mq_free_request(cmdinfo->req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | static inline struct nvme_cmd_info *get_cmd_from_tag(struct nvme_queue *nvmeq, |
| 401 | unsigned int tag) |
| 402 | { |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 403 | struct request *req = blk_mq_tag_to_rq(*nvmeq->tags, tag); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 404 | |
| 405 | return blk_mq_rq_to_pdu(req); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 406 | } |
| 407 | |
Matthew Wilcox | 184d294 | 2011-05-11 21:36:38 -0400 | [diff] [blame] | 408 | /* |
| 409 | * Called with local interrupts disabled and the q_lock held. May not sleep. |
| 410 | */ |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 411 | static void *nvme_finish_cmd(struct nvme_queue *nvmeq, int tag, |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 412 | nvme_completion_fn *fn) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 413 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 414 | struct nvme_cmd_info *cmd = get_cmd_from_tag(nvmeq, tag); |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 415 | void *ctx; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 416 | if (tag >= nvmeq->q_depth) { |
| 417 | *fn = special_completion; |
Matthew Wilcox | 48e3d39 | 2011-02-06 08:51:15 -0500 | [diff] [blame] | 418 | return CMD_CTX_INVALID; |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 419 | } |
Keith Busch | 859361a | 2012-08-02 14:05:59 -0600 | [diff] [blame] | 420 | if (fn) |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 421 | *fn = cmd->fn; |
| 422 | ctx = cmd->ctx; |
| 423 | cmd->fn = special_completion; |
| 424 | cmd->ctx = CMD_CTX_COMPLETED; |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 425 | return ctx; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 426 | } |
| 427 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 428 | /** |
Matthew Wilcox | 714a7a2 | 2011-03-16 16:28:24 -0400 | [diff] [blame] | 429 | * 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] | 430 | * @nvmeq: The queue to use |
| 431 | * @cmd: The command to send |
| 432 | * |
| 433 | * Safe to use from interrupt context |
| 434 | */ |
Sunad Bhandary | e3f879b | 2015-07-31 18:56:58 +0530 | [diff] [blame] | 435 | static void __nvme_submit_cmd(struct nvme_queue *nvmeq, |
| 436 | struct nvme_command *cmd) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 437 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 438 | u16 tail = nvmeq->sq_tail; |
| 439 | |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 440 | if (nvmeq->sq_cmds_io) |
| 441 | memcpy_toio(&nvmeq->sq_cmds_io[tail], cmd, sizeof(*cmd)); |
| 442 | else |
| 443 | memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd)); |
| 444 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 445 | if (++tail == nvmeq->q_depth) |
| 446 | tail = 0; |
Matthew Wilcox | 7547881 | 2011-02-16 09:59:59 -0500 | [diff] [blame] | 447 | writel(tail, nvmeq->q_db); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 448 | nvmeq->sq_tail = tail; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 449 | } |
| 450 | |
Sunad Bhandary | e3f879b | 2015-07-31 18:56:58 +0530 | [diff] [blame] | 451 | 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] | 452 | { |
| 453 | unsigned long flags; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 454 | spin_lock_irqsave(&nvmeq->q_lock, flags); |
Sunad Bhandary | e3f879b | 2015-07-31 18:56:58 +0530 | [diff] [blame] | 455 | __nvme_submit_cmd(nvmeq, cmd); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 456 | spin_unlock_irqrestore(&nvmeq->q_lock, flags); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 457 | } |
| 458 | |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 459 | static __le64 **iod_list(struct nvme_iod *iod) |
| 460 | { |
| 461 | return ((void *)iod) + iod->offset; |
| 462 | } |
| 463 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 464 | static inline void iod_init(struct nvme_iod *iod, unsigned nbytes, |
| 465 | unsigned nseg, unsigned long private) |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 466 | { |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 467 | iod->private = private; |
| 468 | iod->offset = offsetof(struct nvme_iod, sg[nseg]); |
| 469 | iod->npages = -1; |
| 470 | iod->length = nbytes; |
| 471 | iod->nents = 0; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | static struct nvme_iod * |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 475 | __nvme_alloc_iod(unsigned nseg, unsigned bytes, struct nvme_dev *dev, |
| 476 | unsigned long priv, gfp_t gfp) |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 477 | { |
| 478 | struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) + |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 479 | sizeof(__le64 *) * nvme_npages(bytes, dev) + |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 480 | sizeof(struct scatterlist) * nseg, gfp); |
| 481 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 482 | if (iod) |
| 483 | iod_init(iod, bytes, nseg, priv); |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 484 | |
| 485 | return iod; |
| 486 | } |
| 487 | |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 488 | static struct nvme_iod *nvme_alloc_iod(struct request *rq, struct nvme_dev *dev, |
| 489 | gfp_t gfp) |
| 490 | { |
| 491 | unsigned size = !(rq->cmd_flags & REQ_DISCARD) ? blk_rq_bytes(rq) : |
| 492 | sizeof(struct nvme_dsm_range); |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 493 | struct nvme_iod *iod; |
| 494 | |
| 495 | if (rq->nr_phys_segments <= NVME_INT_PAGES && |
| 496 | size <= NVME_INT_BYTES(dev)) { |
| 497 | struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(rq); |
| 498 | |
| 499 | iod = cmd->iod; |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 500 | iod_init(iod, size, rq->nr_phys_segments, |
Chong Yuan | fda631f | 2015-03-27 09:21:32 +0800 | [diff] [blame] | 501 | (unsigned long) rq | NVME_INT_MASK); |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 502 | return iod; |
| 503 | } |
| 504 | |
| 505 | return __nvme_alloc_iod(rq->nr_phys_segments, size, dev, |
| 506 | (unsigned long) rq, gfp); |
| 507 | } |
| 508 | |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 509 | 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] | 510 | { |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 511 | const int last_prp = dev->ctrl.page_size / 8 - 1; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 512 | int i; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 513 | __le64 **list = iod_list(iod); |
| 514 | dma_addr_t prp_dma = iod->first_dma; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 515 | |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 516 | if (iod->npages == 0) |
| 517 | dma_pool_free(dev->prp_small_pool, list[0], prp_dma); |
| 518 | for (i = 0; i < iod->npages; i++) { |
| 519 | __le64 *prp_list = list[i]; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 520 | 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] | 521 | dma_pool_free(dev->prp_page_pool, prp_list, prp_dma); |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 522 | prp_dma = next_prp_dma; |
| 523 | } |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 524 | |
| 525 | if (iod_should_kfree(iod)) |
| 526 | kfree(iod); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 527 | } |
| 528 | |
Keith Busch | 52b68d7 | 2015-02-23 09:16:21 -0700 | [diff] [blame] | 529 | #ifdef CONFIG_BLK_DEV_INTEGRITY |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 530 | static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi) |
| 531 | { |
| 532 | if (be32_to_cpu(pi->ref_tag) == v) |
| 533 | pi->ref_tag = cpu_to_be32(p); |
| 534 | } |
| 535 | |
| 536 | static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi) |
| 537 | { |
| 538 | if (be32_to_cpu(pi->ref_tag) == p) |
| 539 | pi->ref_tag = cpu_to_be32(v); |
| 540 | } |
| 541 | |
| 542 | /** |
| 543 | * nvme_dif_remap - remaps ref tags to bip seed and physical lba |
| 544 | * |
| 545 | * The virtual start sector is the one that was originally submitted by the |
| 546 | * block layer. Due to partitioning, MD/DM cloning, etc. the actual physical |
| 547 | * start sector may be different. Remap protection information to match the |
| 548 | * physical LBA on writes, and back to the original seed on reads. |
| 549 | * |
| 550 | * Type 0 and 3 do not have a ref tag, so no remapping required. |
| 551 | */ |
| 552 | static void nvme_dif_remap(struct request *req, |
| 553 | void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi)) |
| 554 | { |
| 555 | struct nvme_ns *ns = req->rq_disk->private_data; |
| 556 | struct bio_integrity_payload *bip; |
| 557 | struct t10_pi_tuple *pi; |
| 558 | void *p, *pmap; |
| 559 | u32 i, nlb, ts, phys, virt; |
| 560 | |
| 561 | if (!ns->pi_type || ns->pi_type == NVME_NS_DPS_PI_TYPE3) |
| 562 | return; |
| 563 | |
| 564 | bip = bio_integrity(req->bio); |
| 565 | if (!bip) |
| 566 | return; |
| 567 | |
| 568 | 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] | 569 | |
| 570 | p = pmap; |
| 571 | virt = bip_get_seed(bip); |
| 572 | phys = nvme_block_nr(ns, blk_rq_pos(req)); |
| 573 | nlb = (blk_rq_bytes(req) >> ns->lba_shift); |
Dan Williams | ac6fc48 | 2015-10-21 13:20:18 -0400 | [diff] [blame] | 574 | ts = ns->disk->queue->integrity.tuple_size; |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 575 | |
| 576 | for (i = 0; i < nlb; i++, virt++, phys++) { |
| 577 | pi = (struct t10_pi_tuple *)p; |
| 578 | dif_swap(phys, virt, pi); |
| 579 | p += ts; |
| 580 | } |
| 581 | kunmap_atomic(pmap); |
| 582 | } |
Keith Busch | 52b68d7 | 2015-02-23 09:16:21 -0700 | [diff] [blame] | 583 | #else /* CONFIG_BLK_DEV_INTEGRITY */ |
| 584 | static void nvme_dif_remap(struct request *req, |
| 585 | void (*dif_swap)(u32 p, u32 v, struct t10_pi_tuple *pi)) |
| 586 | { |
| 587 | } |
| 588 | static void nvme_dif_prep(u32 p, u32 v, struct t10_pi_tuple *pi) |
| 589 | { |
| 590 | } |
| 591 | static void nvme_dif_complete(u32 p, u32 v, struct t10_pi_tuple *pi) |
| 592 | { |
| 593 | } |
Keith Busch | 52b68d7 | 2015-02-23 09:16:21 -0700 | [diff] [blame] | 594 | #endif |
| 595 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 596 | static void req_completion(struct nvme_queue *nvmeq, void *ctx, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 597 | struct nvme_completion *cqe) |
| 598 | { |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 599 | struct nvme_iod *iod = ctx; |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 600 | struct request *req = iod_get_private(iod); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 601 | struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 602 | u16 status = le16_to_cpup(&cqe->status) >> 1; |
Christoph Hellwig | 81c04b9 | 2015-10-12 21:23:39 +0200 | [diff] [blame] | 603 | int error = 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 604 | |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 605 | if (unlikely(status)) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 606 | if (!(status & NVME_SC_DNR || blk_noretry_request(req)) |
| 607 | && (jiffies - req->start_time) < req->timeout) { |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 608 | unsigned long flags; |
| 609 | |
Christoph Hellwig | d4f6c3a | 2015-11-26 10:51:23 +0100 | [diff] [blame] | 610 | nvme_unmap_data(nvmeq->dev, iod); |
| 611 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 612 | blk_mq_requeue_request(req); |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 613 | spin_lock_irqsave(req->q->queue_lock, flags); |
| 614 | if (!blk_queue_stopped(req->q)) |
| 615 | blk_mq_kick_requeue_list(req->q); |
| 616 | spin_unlock_irqrestore(req->q->queue_lock, flags); |
Christoph Hellwig | d4f6c3a | 2015-11-26 10:51:23 +0100 | [diff] [blame] | 617 | return; |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 618 | } |
Christoph Hellwig | f4829a9 | 2015-09-27 21:01:50 +0200 | [diff] [blame] | 619 | |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 620 | if (req->cmd_type == REQ_TYPE_DRV_PRIV) { |
Keith Busch | 17188bb | 2015-06-08 10:08:14 -0600 | [diff] [blame] | 621 | if (cmd_rq->ctx == CMD_CTX_CANCELLED) |
Christoph Hellwig | 81c04b9 | 2015-10-12 21:23:39 +0200 | [diff] [blame] | 622 | error = -EINTR; |
| 623 | else |
| 624 | error = status; |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 625 | } else { |
Christoph Hellwig | 81c04b9 | 2015-10-12 21:23:39 +0200 | [diff] [blame] | 626 | error = nvme_error_status(status); |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 627 | } |
Christoph Hellwig | f4829a9 | 2015-09-27 21:01:50 +0200 | [diff] [blame] | 628 | } |
| 629 | |
Keith Busch | a0a931d | 2015-05-22 12:28:31 -0600 | [diff] [blame] | 630 | if (req->cmd_type == REQ_TYPE_DRV_PRIV) { |
| 631 | u32 result = le32_to_cpup(&cqe->result); |
| 632 | req->special = (void *)(uintptr_t)result; |
| 633 | } |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 634 | |
| 635 | if (cmd_rq->aborted) |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 636 | dev_warn(nvmeq->dev->dev, |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 637 | "completing aborted command with status:%04x\n", |
Christoph Hellwig | 81c04b9 | 2015-10-12 21:23:39 +0200 | [diff] [blame] | 638 | error); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 639 | |
Christoph Hellwig | d4f6c3a | 2015-11-26 10:51:23 +0100 | [diff] [blame] | 640 | nvme_unmap_data(nvmeq->dev, iod); |
| 641 | blk_mq_complete_request(req, error); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 642 | } |
| 643 | |
Christoph Hellwig | 69d2b57 | 2015-10-16 07:58:37 +0200 | [diff] [blame] | 644 | static bool nvme_setup_prps(struct nvme_dev *dev, struct nvme_iod *iod, |
| 645 | int total_len) |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 646 | { |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 647 | struct dma_pool *pool; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 648 | int length = total_len; |
| 649 | struct scatterlist *sg = iod->sg; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 650 | int dma_len = sg_dma_len(sg); |
| 651 | u64 dma_addr = sg_dma_address(sg); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 652 | u32 page_size = dev->ctrl.page_size; |
Murali Iyer | f137e0f | 2015-03-26 11:07:51 -0500 | [diff] [blame] | 653 | int offset = dma_addr & (page_size - 1); |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 654 | __le64 *prp_list; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 655 | __le64 **list = iod_list(iod); |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 656 | dma_addr_t prp_dma; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 657 | int nprps, i; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 658 | |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 659 | length -= (page_size - offset); |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 660 | if (length <= 0) |
Christoph Hellwig | 69d2b57 | 2015-10-16 07:58:37 +0200 | [diff] [blame] | 661 | return true; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 662 | |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 663 | dma_len -= (page_size - offset); |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 664 | if (dma_len) { |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 665 | dma_addr += (page_size - offset); |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 666 | } else { |
| 667 | sg = sg_next(sg); |
| 668 | dma_addr = sg_dma_address(sg); |
| 669 | dma_len = sg_dma_len(sg); |
| 670 | } |
| 671 | |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 672 | if (length <= page_size) { |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 673 | iod->first_dma = dma_addr; |
Christoph Hellwig | 69d2b57 | 2015-10-16 07:58:37 +0200 | [diff] [blame] | 674 | return true; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 675 | } |
| 676 | |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 677 | nprps = DIV_ROUND_UP(length, page_size); |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 678 | if (nprps <= (256 / 8)) { |
| 679 | pool = dev->prp_small_pool; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 680 | iod->npages = 0; |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 681 | } else { |
| 682 | pool = dev->prp_page_pool; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 683 | iod->npages = 1; |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 684 | } |
| 685 | |
Christoph Hellwig | 69d2b57 | 2015-10-16 07:58:37 +0200 | [diff] [blame] | 686 | prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma); |
Matthew Wilcox | b77954c | 2011-05-12 13:51:41 -0400 | [diff] [blame] | 687 | if (!prp_list) { |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 688 | iod->first_dma = dma_addr; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 689 | iod->npages = -1; |
Christoph Hellwig | 69d2b57 | 2015-10-16 07:58:37 +0200 | [diff] [blame] | 690 | return false; |
Matthew Wilcox | b77954c | 2011-05-12 13:51:41 -0400 | [diff] [blame] | 691 | } |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 692 | list[0] = prp_list; |
| 693 | iod->first_dma = prp_dma; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 694 | i = 0; |
| 695 | for (;;) { |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 696 | if (i == page_size >> 3) { |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 697 | __le64 *old_prp_list = prp_list; |
Christoph Hellwig | 69d2b57 | 2015-10-16 07:58:37 +0200 | [diff] [blame] | 698 | prp_list = dma_pool_alloc(pool, GFP_ATOMIC, &prp_dma); |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 699 | if (!prp_list) |
Christoph Hellwig | 69d2b57 | 2015-10-16 07:58:37 +0200 | [diff] [blame] | 700 | return false; |
Matthew Wilcox | eca18b2 | 2011-12-20 13:34:52 -0500 | [diff] [blame] | 701 | list[iod->npages++] = prp_list; |
Matthew Wilcox | 7523d83 | 2011-03-16 16:43:40 -0400 | [diff] [blame] | 702 | prp_list[0] = old_prp_list[i - 1]; |
| 703 | old_prp_list[i - 1] = cpu_to_le64(prp_dma); |
| 704 | i = 1; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 705 | } |
| 706 | prp_list[i++] = cpu_to_le64(dma_addr); |
Keith Busch | 1d09062 | 2014-06-23 11:34:01 -0600 | [diff] [blame] | 707 | dma_len -= page_size; |
| 708 | dma_addr += page_size; |
| 709 | length -= page_size; |
Shane Michael Matthews | e025344c | 2011-02-10 08:51:24 -0500 | [diff] [blame] | 710 | if (length <= 0) |
| 711 | break; |
| 712 | if (dma_len > 0) |
| 713 | continue; |
| 714 | BUG_ON(dma_len < 0); |
| 715 | sg = sg_next(sg); |
| 716 | dma_addr = sg_dma_address(sg); |
| 717 | dma_len = sg_dma_len(sg); |
| 718 | } |
| 719 | |
Christoph Hellwig | 69d2b57 | 2015-10-16 07:58:37 +0200 | [diff] [blame] | 720 | return true; |
Matthew Wilcox | ff22b54 | 2011-01-26 10:02:29 -0500 | [diff] [blame] | 721 | } |
| 722 | |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 723 | static int nvme_map_data(struct nvme_dev *dev, struct nvme_iod *iod, |
| 724 | struct nvme_command *cmnd) |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 725 | { |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 726 | struct request *req = iod_get_private(iod); |
| 727 | struct request_queue *q = req->q; |
| 728 | enum dma_data_direction dma_dir = rq_data_dir(req) ? |
| 729 | DMA_TO_DEVICE : DMA_FROM_DEVICE; |
| 730 | int ret = BLK_MQ_RQ_QUEUE_ERROR; |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 731 | |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 732 | sg_init_table(iod->sg, req->nr_phys_segments); |
| 733 | iod->nents = blk_rq_map_sg(q, req, iod->sg); |
| 734 | if (!iod->nents) |
| 735 | goto out; |
| 736 | |
| 737 | ret = BLK_MQ_RQ_QUEUE_BUSY; |
| 738 | if (!dma_map_sg(dev->dev, iod->sg, iod->nents, dma_dir)) |
| 739 | goto out; |
| 740 | |
| 741 | if (!nvme_setup_prps(dev, iod, blk_rq_bytes(req))) |
| 742 | goto out_unmap; |
| 743 | |
| 744 | ret = BLK_MQ_RQ_QUEUE_ERROR; |
| 745 | if (blk_integrity_rq(req)) { |
| 746 | if (blk_rq_count_integrity_sg(q, req->bio) != 1) |
| 747 | goto out_unmap; |
| 748 | |
| 749 | sg_init_table(iod->meta_sg, 1); |
| 750 | if (blk_rq_map_integrity_sg(q, req->bio, iod->meta_sg) != 1) |
| 751 | goto out_unmap; |
| 752 | |
| 753 | if (rq_data_dir(req)) |
| 754 | nvme_dif_remap(req, nvme_dif_prep); |
| 755 | |
| 756 | if (!dma_map_sg(dev->dev, iod->meta_sg, 1, dma_dir)) |
| 757 | goto out_unmap; |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 758 | } |
| 759 | |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 760 | cmnd->rw.prp1 = cpu_to_le64(sg_dma_address(iod->sg)); |
| 761 | cmnd->rw.prp2 = cpu_to_le64(iod->first_dma); |
| 762 | if (blk_integrity_rq(req)) |
| 763 | cmnd->rw.metadata = cpu_to_le64(sg_dma_address(iod->meta_sg)); |
| 764 | return BLK_MQ_RQ_QUEUE_OK; |
| 765 | |
| 766 | out_unmap: |
| 767 | dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir); |
| 768 | out: |
| 769 | return ret; |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 770 | } |
| 771 | |
Christoph Hellwig | d4f6c3a | 2015-11-26 10:51:23 +0100 | [diff] [blame] | 772 | static void nvme_unmap_data(struct nvme_dev *dev, struct nvme_iod *iod) |
| 773 | { |
| 774 | struct request *req = iod_get_private(iod); |
| 775 | enum dma_data_direction dma_dir = rq_data_dir(req) ? |
| 776 | DMA_TO_DEVICE : DMA_FROM_DEVICE; |
| 777 | |
| 778 | if (iod->nents) { |
| 779 | dma_unmap_sg(dev->dev, iod->sg, iod->nents, dma_dir); |
| 780 | if (blk_integrity_rq(req)) { |
| 781 | if (!rq_data_dir(req)) |
| 782 | nvme_dif_remap(req, nvme_dif_complete); |
| 783 | dma_unmap_sg(dev->dev, iod->meta_sg, 1, dma_dir); |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | nvme_free_iod(dev, iod); |
| 788 | } |
| 789 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 790 | /* |
| 791 | * We reuse the small pool to allocate the 16-byte range here as it is not |
| 792 | * worth having a special pool for these or additional cases to handle freeing |
| 793 | * the iod. |
| 794 | */ |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 795 | static int nvme_setup_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns, |
| 796 | struct nvme_iod *iod, struct nvme_command *cmnd) |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 797 | { |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 798 | struct request *req = iod_get_private(iod); |
| 799 | struct nvme_dsm_range *range; |
| 800 | |
| 801 | range = dma_pool_alloc(nvmeq->dev->prp_small_pool, GFP_ATOMIC, |
| 802 | &iod->first_dma); |
| 803 | if (!range) |
| 804 | return BLK_MQ_RQ_QUEUE_BUSY; |
| 805 | iod_list(iod)[0] = (__le64 *)range; |
| 806 | iod->npages = 0; |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 807 | |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 808 | range->cattr = cpu_to_le32(0); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 809 | range->nlb = cpu_to_le32(blk_rq_bytes(req) >> ns->lba_shift); |
| 810 | 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] | 811 | |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 812 | memset(cmnd, 0, sizeof(*cmnd)); |
| 813 | cmnd->dsm.opcode = nvme_cmd_dsm; |
| 814 | cmnd->dsm.nsid = cpu_to_le32(ns->ns_id); |
| 815 | cmnd->dsm.prp1 = cpu_to_le64(iod->first_dma); |
| 816 | cmnd->dsm.nr = 0; |
| 817 | cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD); |
| 818 | return BLK_MQ_RQ_QUEUE_OK; |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 819 | } |
| 820 | |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 821 | /* |
| 822 | * NOTE: ns is NULL when called on the admin queue. |
| 823 | */ |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 824 | static int nvme_queue_rq(struct blk_mq_hw_ctx *hctx, |
| 825 | const struct blk_mq_queue_data *bd) |
Keith Busch | 53562be | 2014-04-29 11:41:29 -0600 | [diff] [blame] | 826 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 827 | struct nvme_ns *ns = hctx->queue->queuedata; |
| 828 | struct nvme_queue *nvmeq = hctx->driver_data; |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 829 | struct nvme_dev *dev = nvmeq->dev; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 830 | struct request *req = bd->rq; |
| 831 | struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req); |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 832 | struct nvme_iod *iod; |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 833 | struct nvme_command cmnd; |
| 834 | int ret = BLK_MQ_RQ_QUEUE_OK; |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 835 | |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 836 | /* |
| 837 | * If formated with metadata, require the block layer provide a buffer |
| 838 | * unless this namespace is formated such that the metadata can be |
| 839 | * stripped/generated by the controller with PRACT=1. |
| 840 | */ |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 841 | if (ns && ns->ms && !blk_integrity_rq(req)) { |
Keith Busch | 71feb36 | 2015-06-19 11:07:30 -0600 | [diff] [blame] | 842 | if (!(ns->pi_type && ns->ms == 8) && |
| 843 | req->cmd_type != REQ_TYPE_DRV_PRIV) { |
Christoph Hellwig | f4829a9 | 2015-09-27 21:01:50 +0200 | [diff] [blame] | 844 | blk_mq_complete_request(req, -EFAULT); |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 845 | return BLK_MQ_RQ_QUEUE_OK; |
| 846 | } |
| 847 | } |
| 848 | |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 849 | iod = nvme_alloc_iod(req, dev, GFP_ATOMIC); |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 850 | if (!iod) |
Jens Axboe | fe54303 | 2014-12-11 13:58:39 -0700 | [diff] [blame] | 851 | return BLK_MQ_RQ_QUEUE_BUSY; |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 852 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 853 | if (req->cmd_flags & REQ_DISCARD) { |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 854 | ret = nvme_setup_discard(nvmeq, ns, iod, &cmnd); |
| 855 | } else { |
| 856 | if (req->cmd_type == REQ_TYPE_DRV_PRIV) |
| 857 | memcpy(&cmnd, req->cmd, sizeof(cmnd)); |
| 858 | else if (req->cmd_flags & REQ_FLUSH) |
| 859 | nvme_setup_flush(ns, &cmnd); |
| 860 | else |
| 861 | nvme_setup_rw(ns, req, &cmnd); |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 862 | |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 863 | if (req->nr_phys_segments) |
| 864 | ret = nvme_map_data(dev, iod, &cmnd); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 865 | } |
| 866 | |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 867 | if (ret) |
| 868 | goto out; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 869 | |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 870 | cmnd.common.command_id = req->tag; |
| 871 | nvme_set_info(cmd, iod, req_completion); |
| 872 | |
| 873 | spin_lock_irq(&nvmeq->q_lock); |
| 874 | __nvme_submit_cmd(nvmeq, &cmnd); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 875 | nvme_process_cq(nvmeq); |
| 876 | spin_unlock_irq(&nvmeq->q_lock); |
| 877 | return BLK_MQ_RQ_QUEUE_OK; |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 878 | out: |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 879 | nvme_free_iod(dev, iod); |
Christoph Hellwig | ba1ca37 | 2015-10-16 07:58:38 +0200 | [diff] [blame] | 880 | return ret; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 881 | } |
| 882 | |
Jens Axboe | a0fa964 | 2015-11-03 20:37:26 -0700 | [diff] [blame] | 883 | static void __nvme_process_cq(struct nvme_queue *nvmeq, unsigned int *tag) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 884 | { |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 885 | u16 head, phase; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 886 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 887 | head = nvmeq->cq_head; |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 888 | phase = nvmeq->cq_phase; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 889 | |
| 890 | for (;;) { |
Matthew Wilcox | c2f5b65 | 2011-10-15 07:33:46 -0400 | [diff] [blame] | 891 | void *ctx; |
| 892 | nvme_completion_fn fn; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 893 | struct nvme_completion cqe = nvmeq->cqes[head]; |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 894 | if ((le16_to_cpu(cqe.status) & 1) != phase) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 895 | break; |
| 896 | nvmeq->sq_head = le16_to_cpu(cqe.sq_head); |
| 897 | if (++head == nvmeq->q_depth) { |
| 898 | head = 0; |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 899 | phase = !phase; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 900 | } |
Jens Axboe | a0fa964 | 2015-11-03 20:37:26 -0700 | [diff] [blame] | 901 | if (tag && *tag == cqe.command_id) |
| 902 | *tag = -1; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 903 | ctx = nvme_finish_cmd(nvmeq, cqe.command_id, &fn); |
Keith Busch | edd10d3 | 2014-04-03 16:45:23 -0600 | [diff] [blame] | 904 | fn(nvmeq, ctx, &cqe); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | /* If the controller ignores the cq head doorbell and continuously |
| 908 | * writes to the queue, it is theoretically possible to wrap around |
| 909 | * the queue twice and mistakenly return IRQ_NONE. Linux only |
| 910 | * requires that 0.1% of your interrupts are handled, so this isn't |
| 911 | * a big problem. |
| 912 | */ |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 913 | if (head == nvmeq->cq_head && phase == nvmeq->cq_phase) |
Jens Axboe | a0fa964 | 2015-11-03 20:37:26 -0700 | [diff] [blame] | 914 | return; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 915 | |
Keith Busch | 604e8c8 | 2015-11-20 08:38:13 -0700 | [diff] [blame] | 916 | if (likely(nvmeq->cq_vector >= 0)) |
| 917 | writel(head, nvmeq->q_db + nvmeq->dev->db_stride); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 918 | nvmeq->cq_head = head; |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 919 | nvmeq->cq_phase = phase; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 920 | |
Matthew Wilcox | e9539f4 | 2013-06-24 11:47:34 -0400 | [diff] [blame] | 921 | nvmeq->cqe_seen = 1; |
Jens Axboe | a0fa964 | 2015-11-03 20:37:26 -0700 | [diff] [blame] | 922 | } |
| 923 | |
| 924 | static void nvme_process_cq(struct nvme_queue *nvmeq) |
| 925 | { |
| 926 | __nvme_process_cq(nvmeq, NULL); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 927 | } |
| 928 | |
| 929 | static irqreturn_t nvme_irq(int irq, void *data) |
| 930 | { |
Matthew Wilcox | 58ffacb | 2011-02-06 07:28:06 -0500 | [diff] [blame] | 931 | irqreturn_t result; |
| 932 | struct nvme_queue *nvmeq = data; |
| 933 | spin_lock(&nvmeq->q_lock); |
Matthew Wilcox | e9539f4 | 2013-06-24 11:47:34 -0400 | [diff] [blame] | 934 | nvme_process_cq(nvmeq); |
| 935 | result = nvmeq->cqe_seen ? IRQ_HANDLED : IRQ_NONE; |
| 936 | nvmeq->cqe_seen = 0; |
Matthew Wilcox | 58ffacb | 2011-02-06 07:28:06 -0500 | [diff] [blame] | 937 | spin_unlock(&nvmeq->q_lock); |
| 938 | return result; |
| 939 | } |
| 940 | |
| 941 | static irqreturn_t nvme_irq_check(int irq, void *data) |
| 942 | { |
| 943 | struct nvme_queue *nvmeq = data; |
| 944 | struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head]; |
| 945 | if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase) |
| 946 | return IRQ_NONE; |
| 947 | return IRQ_WAKE_THREAD; |
| 948 | } |
| 949 | |
Jens Axboe | a0fa964 | 2015-11-03 20:37:26 -0700 | [diff] [blame] | 950 | static int nvme_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag) |
| 951 | { |
| 952 | struct nvme_queue *nvmeq = hctx->driver_data; |
| 953 | |
| 954 | if ((le16_to_cpu(nvmeq->cqes[nvmeq->cq_head].status) & 1) == |
| 955 | nvmeq->cq_phase) { |
| 956 | spin_lock_irq(&nvmeq->q_lock); |
| 957 | __nvme_process_cq(nvmeq, &tag); |
| 958 | spin_unlock_irq(&nvmeq->q_lock); |
| 959 | |
| 960 | if (tag == -1) |
| 961 | return 1; |
| 962 | } |
| 963 | |
| 964 | return 0; |
| 965 | } |
| 966 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 967 | static int nvme_submit_async_admin_req(struct nvme_dev *dev) |
| 968 | { |
| 969 | struct nvme_queue *nvmeq = dev->queues[0]; |
| 970 | struct nvme_command c; |
| 971 | struct nvme_cmd_info *cmd_info; |
| 972 | struct request *req; |
| 973 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 974 | req = blk_mq_alloc_request(dev->ctrl.admin_q, WRITE, |
Christoph Hellwig | 6f3b0e8 | 2015-11-26 09:13:05 +0100 | [diff] [blame] | 975 | BLK_MQ_REQ_NOWAIT | BLK_MQ_REQ_RESERVED); |
Dan Carpenter | 9f173b3 | 2014-11-05 23:39:09 +0300 | [diff] [blame] | 976 | if (IS_ERR(req)) |
| 977 | return PTR_ERR(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 978 | |
Keith Busch | c917dfe | 2015-01-07 18:55:48 -0700 | [diff] [blame] | 979 | req->cmd_flags |= REQ_NO_TIMEOUT; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 980 | cmd_info = blk_mq_rq_to_pdu(req); |
Keith Busch | 1efccc9 | 2015-03-31 10:37:17 -0600 | [diff] [blame] | 981 | nvme_set_info(cmd_info, NULL, async_req_completion); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 982 | |
| 983 | memset(&c, 0, sizeof(c)); |
| 984 | c.common.opcode = nvme_admin_async_event; |
| 985 | c.common.command_id = req->tag; |
| 986 | |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 987 | blk_mq_free_request(req); |
Sunad Bhandary | e3f879b | 2015-07-31 18:56:58 +0530 | [diff] [blame] | 988 | __nvme_submit_cmd(nvmeq, &c); |
| 989 | return 0; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | static int nvme_submit_admin_async_cmd(struct nvme_dev *dev, |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 993 | struct nvme_command *cmd, |
| 994 | struct async_cmd_info *cmdinfo, unsigned timeout) |
| 995 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 996 | struct nvme_queue *nvmeq = dev->queues[0]; |
| 997 | struct request *req; |
| 998 | struct nvme_cmd_info *cmd_rq; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 999 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1000 | req = blk_mq_alloc_request(dev->ctrl.admin_q, WRITE, 0); |
Dan Carpenter | 9f173b3 | 2014-11-05 23:39:09 +0300 | [diff] [blame] | 1001 | if (IS_ERR(req)) |
| 1002 | return PTR_ERR(req); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1003 | |
| 1004 | req->timeout = timeout; |
| 1005 | cmd_rq = blk_mq_rq_to_pdu(req); |
| 1006 | cmdinfo->req = req; |
| 1007 | nvme_set_info(cmd_rq, cmdinfo, async_completion); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1008 | cmdinfo->status = -EINTR; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1009 | |
| 1010 | cmd->common.command_id = req->tag; |
| 1011 | |
Sunad Bhandary | e3f879b | 2015-07-31 18:56:58 +0530 | [diff] [blame] | 1012 | nvme_submit_cmd(nvmeq, cmd); |
| 1013 | return 0; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1014 | } |
| 1015 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1016 | static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id) |
| 1017 | { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1018 | struct nvme_command c; |
| 1019 | |
| 1020 | memset(&c, 0, sizeof(c)); |
| 1021 | c.delete_queue.opcode = opcode; |
| 1022 | c.delete_queue.qid = cpu_to_le16(id); |
| 1023 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1024 | return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1025 | } |
| 1026 | |
| 1027 | static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid, |
| 1028 | struct nvme_queue *nvmeq) |
| 1029 | { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1030 | struct nvme_command c; |
| 1031 | int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED; |
| 1032 | |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 1033 | /* |
| 1034 | * Note: we (ab)use the fact the the prp fields survive if no data |
| 1035 | * is attached to the request. |
| 1036 | */ |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1037 | memset(&c, 0, sizeof(c)); |
| 1038 | c.create_cq.opcode = nvme_admin_create_cq; |
| 1039 | c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr); |
| 1040 | c.create_cq.cqid = cpu_to_le16(qid); |
| 1041 | c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1); |
| 1042 | c.create_cq.cq_flags = cpu_to_le16(flags); |
| 1043 | c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector); |
| 1044 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1045 | return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1046 | } |
| 1047 | |
| 1048 | static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid, |
| 1049 | struct nvme_queue *nvmeq) |
| 1050 | { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1051 | struct nvme_command c; |
| 1052 | int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM; |
| 1053 | |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 1054 | /* |
| 1055 | * Note: we (ab)use the fact the the prp fields survive if no data |
| 1056 | * is attached to the request. |
| 1057 | */ |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1058 | memset(&c, 0, sizeof(c)); |
| 1059 | c.create_sq.opcode = nvme_admin_create_sq; |
| 1060 | c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr); |
| 1061 | c.create_sq.sqid = cpu_to_le16(qid); |
| 1062 | c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1); |
| 1063 | c.create_sq.sq_flags = cpu_to_le16(flags); |
| 1064 | c.create_sq.cqid = cpu_to_le16(qid); |
| 1065 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1066 | return nvme_submit_sync_cmd(dev->ctrl.admin_q, &c, NULL, 0); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1067 | } |
| 1068 | |
| 1069 | static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid) |
| 1070 | { |
| 1071 | return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid); |
| 1072 | } |
| 1073 | |
| 1074 | static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid) |
| 1075 | { |
| 1076 | return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid); |
| 1077 | } |
| 1078 | |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1079 | /** |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1080 | * nvme_abort_req - Attempt aborting a request |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1081 | * |
| 1082 | * Schedule controller reset if the command was already aborted once before and |
| 1083 | * still hasn't been returned to the driver, or if this is the admin queue. |
| 1084 | */ |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1085 | static void nvme_abort_req(struct request *req) |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1086 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1087 | struct nvme_cmd_info *cmd_rq = blk_mq_rq_to_pdu(req); |
| 1088 | struct nvme_queue *nvmeq = cmd_rq->nvmeq; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1089 | struct nvme_dev *dev = nvmeq->dev; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1090 | struct request *abort_req; |
| 1091 | struct nvme_cmd_info *abort_cmd; |
| 1092 | struct nvme_command cmd; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1093 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1094 | if (!nvmeq->qid || cmd_rq->aborted) { |
Christoph Hellwig | 90667892 | 2015-10-02 18:49:23 +0200 | [diff] [blame] | 1095 | spin_lock(&dev_list_lock); |
| 1096 | if (!__nvme_reset(dev)) { |
| 1097 | dev_warn(dev->dev, |
| 1098 | "I/O %d QID %d timeout, reset controller\n", |
| 1099 | req->tag, nvmeq->qid); |
| 1100 | } |
| 1101 | spin_unlock(&dev_list_lock); |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1102 | return; |
| 1103 | } |
| 1104 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1105 | if (!dev->ctrl.abort_limit) |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1106 | return; |
| 1107 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1108 | abort_req = blk_mq_alloc_request(dev->ctrl.admin_q, WRITE, |
Christoph Hellwig | 6f3b0e8 | 2015-11-26 09:13:05 +0100 | [diff] [blame] | 1109 | BLK_MQ_REQ_NOWAIT); |
Dan Carpenter | 9f173b3 | 2014-11-05 23:39:09 +0300 | [diff] [blame] | 1110 | if (IS_ERR(abort_req)) |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1111 | return; |
| 1112 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1113 | abort_cmd = blk_mq_rq_to_pdu(abort_req); |
| 1114 | nvme_set_info(abort_cmd, abort_req, abort_completion); |
| 1115 | |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1116 | memset(&cmd, 0, sizeof(cmd)); |
| 1117 | cmd.abort.opcode = nvme_admin_abort_cmd; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1118 | cmd.abort.cid = req->tag; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1119 | cmd.abort.sqid = cpu_to_le16(nvmeq->qid); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1120 | cmd.abort.command_id = abort_req->tag; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1121 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1122 | --dev->ctrl.abort_limit; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1123 | cmd_rq->aborted = 1; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1124 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1125 | 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] | 1126 | nvmeq->qid); |
Sunad Bhandary | e3f879b | 2015-07-31 18:56:58 +0530 | [diff] [blame] | 1127 | nvme_submit_cmd(dev->queues[0], &cmd); |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1128 | } |
| 1129 | |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 1130 | 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] | 1131 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1132 | struct nvme_queue *nvmeq = data; |
| 1133 | void *ctx; |
| 1134 | nvme_completion_fn fn; |
| 1135 | struct nvme_cmd_info *cmd; |
Keith Busch | cef6a94 | 2015-01-07 18:55:51 -0700 | [diff] [blame] | 1136 | struct nvme_completion cqe; |
| 1137 | |
| 1138 | if (!blk_mq_request_started(req)) |
| 1139 | return; |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1140 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1141 | cmd = blk_mq_rq_to_pdu(req); |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1142 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1143 | if (cmd->ctx == CMD_CTX_CANCELLED) |
| 1144 | return; |
| 1145 | |
Keith Busch | cef6a94 | 2015-01-07 18:55:51 -0700 | [diff] [blame] | 1146 | if (blk_queue_dying(req->q)) |
| 1147 | cqe.status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1); |
| 1148 | else |
| 1149 | cqe.status = cpu_to_le16(NVME_SC_ABORT_REQ << 1); |
| 1150 | |
| 1151 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1152 | dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d QID %d\n", |
| 1153 | req->tag, nvmeq->qid); |
| 1154 | ctx = cancel_cmd_info(cmd, &fn); |
| 1155 | fn(nvmeq, ctx, &cqe); |
| 1156 | } |
| 1157 | |
| 1158 | static enum blk_eh_timer_return nvme_timeout(struct request *req, bool reserved) |
| 1159 | { |
| 1160 | struct nvme_cmd_info *cmd = blk_mq_rq_to_pdu(req); |
| 1161 | struct nvme_queue *nvmeq = cmd->nvmeq; |
| 1162 | |
Keith Busch | 07836e6 | 2015-02-19 10:34:48 -0700 | [diff] [blame] | 1163 | dev_warn(nvmeq->q_dmadev, "Timeout I/O %d QID %d\n", req->tag, |
| 1164 | nvmeq->qid); |
| 1165 | spin_lock_irq(&nvmeq->q_lock); |
| 1166 | nvme_abort_req(req); |
| 1167 | spin_unlock_irq(&nvmeq->q_lock); |
| 1168 | |
Keith Busch | 7a509a6 | 2015-01-07 18:55:53 -0700 | [diff] [blame] | 1169 | /* |
| 1170 | * The aborted req will be completed on receiving the abort req. |
| 1171 | * We enable the timer again. If hit twice, it'll cause a device reset, |
| 1172 | * as the device then is in a faulty state. |
| 1173 | */ |
Keith Busch | 07836e6 | 2015-02-19 10:34:48 -0700 | [diff] [blame] | 1174 | return BLK_EH_RESET_TIMER; |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1175 | } |
| 1176 | |
Keith Busch | f435c28 | 2014-07-07 09:14:42 -0600 | [diff] [blame] | 1177 | static void nvme_free_queue(struct nvme_queue *nvmeq) |
Matthew Wilcox | 9e86677 | 2012-08-03 13:55:56 -0400 | [diff] [blame] | 1178 | { |
| 1179 | dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth), |
| 1180 | (void *)nvmeq->cqes, nvmeq->cq_dma_addr); |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1181 | if (nvmeq->sq_cmds) |
| 1182 | dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth), |
Matthew Wilcox | 9e86677 | 2012-08-03 13:55:56 -0400 | [diff] [blame] | 1183 | nvmeq->sq_cmds, nvmeq->sq_dma_addr); |
| 1184 | kfree(nvmeq); |
| 1185 | } |
| 1186 | |
Keith Busch | a1a5ef9 | 2013-12-16 13:50:00 -0500 | [diff] [blame] | 1187 | static void nvme_free_queues(struct nvme_dev *dev, int lowest) |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1188 | { |
| 1189 | int i; |
| 1190 | |
Keith Busch | a1a5ef9 | 2013-12-16 13:50:00 -0500 | [diff] [blame] | 1191 | for (i = dev->queue_count - 1; i >= lowest; i--) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1192 | struct nvme_queue *nvmeq = dev->queues[i]; |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1193 | dev->queue_count--; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1194 | dev->queues[i] = NULL; |
Keith Busch | f435c28 | 2014-07-07 09:14:42 -0600 | [diff] [blame] | 1195 | nvme_free_queue(nvmeq); |
kaoudis | 121c7ad | 2015-01-14 21:01:58 -0700 | [diff] [blame] | 1196 | } |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1197 | } |
| 1198 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1199 | /** |
| 1200 | * nvme_suspend_queue - put queue into suspended state |
| 1201 | * @nvmeq - queue to suspend |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1202 | */ |
| 1203 | static int nvme_suspend_queue(struct nvme_queue *nvmeq) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1204 | { |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1205 | int vector; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1206 | |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1207 | spin_lock_irq(&nvmeq->q_lock); |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1208 | if (nvmeq->cq_vector == -1) { |
| 1209 | spin_unlock_irq(&nvmeq->q_lock); |
| 1210 | return 1; |
| 1211 | } |
| 1212 | vector = nvmeq->dev->entry[nvmeq->cq_vector].vector; |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1213 | nvmeq->dev->online_queues--; |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1214 | nvmeq->cq_vector = -1; |
Matthew Wilcox | a09115b | 2012-08-07 15:56:23 -0400 | [diff] [blame] | 1215 | spin_unlock_irq(&nvmeq->q_lock); |
| 1216 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1217 | if (!nvmeq->qid && nvmeq->dev->ctrl.admin_q) |
| 1218 | blk_mq_freeze_queue_start(nvmeq->dev->ctrl.admin_q); |
Keith Busch | 6df3dbc | 2015-03-26 13:49:33 -0600 | [diff] [blame] | 1219 | |
Matthew Wilcox | aba2080 | 2011-03-27 08:52:06 -0400 | [diff] [blame] | 1220 | irq_set_affinity_hint(vector, NULL); |
| 1221 | free_irq(vector, nvmeq); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1222 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1223 | return 0; |
| 1224 | } |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1225 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1226 | static void nvme_clear_queue(struct nvme_queue *nvmeq) |
| 1227 | { |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1228 | spin_lock_irq(&nvmeq->q_lock); |
Keith Busch | 4248322 | 2015-06-01 09:29:54 -0600 | [diff] [blame] | 1229 | if (nvmeq->tags && *nvmeq->tags) |
| 1230 | 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] | 1231 | spin_unlock_irq(&nvmeq->q_lock); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1232 | } |
| 1233 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1234 | static void nvme_disable_queue(struct nvme_dev *dev, int qid) |
| 1235 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1236 | struct nvme_queue *nvmeq = dev->queues[qid]; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1237 | |
| 1238 | if (!nvmeq) |
| 1239 | return; |
| 1240 | if (nvme_suspend_queue(nvmeq)) |
| 1241 | return; |
| 1242 | |
Keith Busch | 0e53d18 | 2013-12-10 13:10:39 -0700 | [diff] [blame] | 1243 | /* Don't tell the adapter to delete the admin queue. |
| 1244 | * Don't tell a removed adapter to delete IO queues. */ |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1245 | if (qid && readl(dev->bar + NVME_REG_CSTS) != -1) { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1246 | adapter_delete_sq(dev, qid); |
| 1247 | adapter_delete_cq(dev, qid); |
| 1248 | } |
Keith Busch | 07836e6 | 2015-02-19 10:34:48 -0700 | [diff] [blame] | 1249 | |
| 1250 | spin_lock_irq(&nvmeq->q_lock); |
| 1251 | nvme_process_cq(nvmeq); |
| 1252 | spin_unlock_irq(&nvmeq->q_lock); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1253 | } |
| 1254 | |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1255 | static int nvme_cmb_qdepth(struct nvme_dev *dev, int nr_io_queues, |
| 1256 | int entry_size) |
| 1257 | { |
| 1258 | int q_depth = dev->q_depth; |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1259 | unsigned q_size_aligned = roundup(q_depth * entry_size, |
| 1260 | dev->ctrl.page_size); |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1261 | |
| 1262 | if (q_size_aligned * nr_io_queues > dev->cmb_size) { |
Jon Derrick | c45f5c9 | 2015-07-21 15:08:13 -0600 | [diff] [blame] | 1263 | u64 mem_per_q = div_u64(dev->cmb_size, nr_io_queues); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1264 | mem_per_q = round_down(mem_per_q, dev->ctrl.page_size); |
Jon Derrick | c45f5c9 | 2015-07-21 15:08:13 -0600 | [diff] [blame] | 1265 | q_depth = div_u64(mem_per_q, entry_size); |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1266 | |
| 1267 | /* |
| 1268 | * Ensure the reduced q_depth is above some threshold where it |
| 1269 | * would be better to map queues in system memory with the |
| 1270 | * original depth |
| 1271 | */ |
| 1272 | if (q_depth < 64) |
| 1273 | return -ENOMEM; |
| 1274 | } |
| 1275 | |
| 1276 | return q_depth; |
| 1277 | } |
| 1278 | |
| 1279 | static int nvme_alloc_sq_cmds(struct nvme_dev *dev, struct nvme_queue *nvmeq, |
| 1280 | int qid, int depth) |
| 1281 | { |
| 1282 | if (qid && dev->cmb && use_cmb_sqes && NVME_CMB_SQS(dev->cmbsz)) { |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1283 | unsigned offset = (qid - 1) * roundup(SQ_SIZE(depth), |
| 1284 | dev->ctrl.page_size); |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1285 | nvmeq->sq_dma_addr = dev->cmb_dma_addr + offset; |
| 1286 | nvmeq->sq_cmds_io = dev->cmb + offset; |
| 1287 | } else { |
| 1288 | nvmeq->sq_cmds = dma_alloc_coherent(dev->dev, SQ_SIZE(depth), |
| 1289 | &nvmeq->sq_dma_addr, GFP_KERNEL); |
| 1290 | if (!nvmeq->sq_cmds) |
| 1291 | return -ENOMEM; |
| 1292 | } |
| 1293 | |
| 1294 | return 0; |
| 1295 | } |
| 1296 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1297 | 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] | 1298 | int depth) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1299 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1300 | struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq), GFP_KERNEL); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1301 | if (!nvmeq) |
| 1302 | return NULL; |
| 1303 | |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1304 | nvmeq->cqes = dma_zalloc_coherent(dev->dev, CQ_SIZE(depth), |
Joe Perches | 4d51abf | 2014-06-15 13:37:33 -0700 | [diff] [blame] | 1305 | &nvmeq->cq_dma_addr, GFP_KERNEL); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1306 | if (!nvmeq->cqes) |
| 1307 | goto free_nvmeq; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1308 | |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1309 | if (nvme_alloc_sq_cmds(dev, nvmeq, qid, depth)) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1310 | goto free_cqdma; |
| 1311 | |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1312 | nvmeq->q_dmadev = dev->dev; |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 1313 | nvmeq->dev = dev; |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 1314 | snprintf(nvmeq->irqname, sizeof(nvmeq->irqname), "nvme%dq%d", |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1315 | dev->ctrl.instance, qid); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1316 | spin_lock_init(&nvmeq->q_lock); |
| 1317 | nvmeq->cq_head = 0; |
Matthew Wilcox | 8212346 | 2011-01-20 13:24:06 -0500 | [diff] [blame] | 1318 | nvmeq->cq_phase = 1; |
Haiyan Hu | b80d5cc | 2013-09-10 11:25:37 +0800 | [diff] [blame] | 1319 | nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1320 | nvmeq->q_depth = depth; |
Keith Busch | c30341d | 2013-12-10 13:10:38 -0700 | [diff] [blame] | 1321 | nvmeq->qid = qid; |
Jon Derrick | 758dd7f | 2015-06-30 11:22:52 -0600 | [diff] [blame] | 1322 | nvmeq->cq_vector = -1; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1323 | dev->queues[qid] = nvmeq; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1324 | |
Jon Derrick | 36a7e99 | 2015-05-27 12:26:23 -0600 | [diff] [blame] | 1325 | /* make sure queue descriptor is set before queue count, for kthread */ |
| 1326 | mb(); |
| 1327 | dev->queue_count++; |
| 1328 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1329 | return nvmeq; |
| 1330 | |
| 1331 | free_cqdma: |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1332 | dma_free_coherent(dev->dev, CQ_SIZE(depth), (void *)nvmeq->cqes, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1333 | nvmeq->cq_dma_addr); |
| 1334 | free_nvmeq: |
| 1335 | kfree(nvmeq); |
| 1336 | return NULL; |
| 1337 | } |
| 1338 | |
Matthew Wilcox | 3001082 | 2011-01-20 09:10:15 -0500 | [diff] [blame] | 1339 | static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq, |
| 1340 | const char *name) |
| 1341 | { |
Matthew Wilcox | 58ffacb | 2011-02-06 07:28:06 -0500 | [diff] [blame] | 1342 | if (use_threaded_interrupts) |
| 1343 | return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector, |
Michael Opdenacker | 481e5ba | 2013-10-12 06:23:29 +0200 | [diff] [blame] | 1344 | nvme_irq_check, nvme_irq, IRQF_SHARED, |
Matthew Wilcox | 58ffacb | 2011-02-06 07:28:06 -0500 | [diff] [blame] | 1345 | name, nvmeq); |
Matthew Wilcox | 3001082 | 2011-01-20 09:10:15 -0500 | [diff] [blame] | 1346 | return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq, |
Michael Opdenacker | 481e5ba | 2013-10-12 06:23:29 +0200 | [diff] [blame] | 1347 | IRQF_SHARED, name, nvmeq); |
Matthew Wilcox | 3001082 | 2011-01-20 09:10:15 -0500 | [diff] [blame] | 1348 | } |
| 1349 | |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1350 | static void nvme_init_queue(struct nvme_queue *nvmeq, u16 qid) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1351 | { |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1352 | struct nvme_dev *dev = nvmeq->dev; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1353 | |
Keith Busch | 7be50e9 | 2014-09-10 15:48:47 -0600 | [diff] [blame] | 1354 | spin_lock_irq(&nvmeq->q_lock); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1355 | nvmeq->sq_tail = 0; |
| 1356 | nvmeq->cq_head = 0; |
| 1357 | nvmeq->cq_phase = 1; |
Haiyan Hu | b80d5cc | 2013-09-10 11:25:37 +0800 | [diff] [blame] | 1358 | nvmeq->q_db = &dev->dbs[qid * 2 * dev->db_stride]; |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1359 | memset((void *)nvmeq->cqes, 0, CQ_SIZE(nvmeq->q_depth)); |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1360 | dev->online_queues++; |
Keith Busch | 7be50e9 | 2014-09-10 15:48:47 -0600 | [diff] [blame] | 1361 | spin_unlock_irq(&nvmeq->q_lock); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1362 | } |
| 1363 | |
| 1364 | static int nvme_create_queue(struct nvme_queue *nvmeq, int qid) |
| 1365 | { |
| 1366 | struct nvme_dev *dev = nvmeq->dev; |
| 1367 | int result; |
Matthew Wilcox | 3f85d50 | 2011-02-01 08:39:04 -0500 | [diff] [blame] | 1368 | |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1369 | nvmeq->cq_vector = qid - 1; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1370 | result = adapter_alloc_cq(dev, qid, nvmeq); |
| 1371 | if (result < 0) |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1372 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1373 | |
| 1374 | result = adapter_alloc_sq(dev, qid, nvmeq); |
| 1375 | if (result < 0) |
| 1376 | goto release_cq; |
| 1377 | |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 1378 | result = queue_request_irq(dev, nvmeq, nvmeq->irqname); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1379 | if (result < 0) |
| 1380 | goto release_sq; |
| 1381 | |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1382 | nvme_init_queue(nvmeq, qid); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1383 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1384 | |
| 1385 | release_sq: |
| 1386 | adapter_delete_sq(dev, qid); |
| 1387 | release_cq: |
| 1388 | adapter_delete_cq(dev, qid); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1389 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1390 | } |
| 1391 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1392 | static struct blk_mq_ops nvme_mq_admin_ops = { |
Christoph Hellwig | d29ec82 | 2015-05-22 11:12:46 +0200 | [diff] [blame] | 1393 | .queue_rq = nvme_queue_rq, |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1394 | .map_queue = blk_mq_map_queue, |
| 1395 | .init_hctx = nvme_admin_init_hctx, |
Keith Busch | 4af0e21 | 2015-06-08 10:08:13 -0600 | [diff] [blame] | 1396 | .exit_hctx = nvme_admin_exit_hctx, |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1397 | .init_request = nvme_admin_init_request, |
| 1398 | .timeout = nvme_timeout, |
| 1399 | }; |
| 1400 | |
| 1401 | static struct blk_mq_ops nvme_mq_ops = { |
| 1402 | .queue_rq = nvme_queue_rq, |
| 1403 | .map_queue = blk_mq_map_queue, |
| 1404 | .init_hctx = nvme_init_hctx, |
| 1405 | .init_request = nvme_init_request, |
| 1406 | .timeout = nvme_timeout, |
Jens Axboe | a0fa964 | 2015-11-03 20:37:26 -0700 | [diff] [blame] | 1407 | .poll = nvme_poll, |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1408 | }; |
| 1409 | |
Keith Busch | ea191d2 | 2015-01-07 18:55:49 -0700 | [diff] [blame] | 1410 | static void nvme_dev_remove_admin(struct nvme_dev *dev) |
| 1411 | { |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1412 | if (dev->ctrl.admin_q && !blk_queue_dying(dev->ctrl.admin_q)) { |
| 1413 | blk_cleanup_queue(dev->ctrl.admin_q); |
Keith Busch | ea191d2 | 2015-01-07 18:55:49 -0700 | [diff] [blame] | 1414 | blk_mq_free_tag_set(&dev->admin_tagset); |
| 1415 | } |
| 1416 | } |
| 1417 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1418 | static int nvme_alloc_admin_tags(struct nvme_dev *dev) |
| 1419 | { |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1420 | if (!dev->ctrl.admin_q) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1421 | dev->admin_tagset.ops = &nvme_mq_admin_ops; |
| 1422 | dev->admin_tagset.nr_hw_queues = 1; |
| 1423 | dev->admin_tagset.queue_depth = NVME_AQ_DEPTH - 1; |
Keith Busch | 1efccc9 | 2015-03-31 10:37:17 -0600 | [diff] [blame] | 1424 | dev->admin_tagset.reserved_tags = 1; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1425 | dev->admin_tagset.timeout = ADMIN_TIMEOUT; |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1426 | dev->admin_tagset.numa_node = dev_to_node(dev->dev); |
Jens Axboe | ac3dd5b | 2015-01-22 12:07:58 -0700 | [diff] [blame] | 1427 | dev->admin_tagset.cmd_size = nvme_cmd_size(dev); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1428 | dev->admin_tagset.driver_data = dev; |
| 1429 | |
| 1430 | if (blk_mq_alloc_tag_set(&dev->admin_tagset)) |
| 1431 | return -ENOMEM; |
| 1432 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1433 | dev->ctrl.admin_q = blk_mq_init_queue(&dev->admin_tagset); |
| 1434 | if (IS_ERR(dev->ctrl.admin_q)) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1435 | blk_mq_free_tag_set(&dev->admin_tagset); |
| 1436 | return -ENOMEM; |
| 1437 | } |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1438 | if (!blk_get_queue(dev->ctrl.admin_q)) { |
Keith Busch | ea191d2 | 2015-01-07 18:55:49 -0700 | [diff] [blame] | 1439 | nvme_dev_remove_admin(dev); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1440 | dev->ctrl.admin_q = NULL; |
Keith Busch | ea191d2 | 2015-01-07 18:55:49 -0700 | [diff] [blame] | 1441 | return -ENODEV; |
| 1442 | } |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 1443 | } else |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1444 | blk_mq_unfreeze_queue(dev->ctrl.admin_q); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1445 | |
| 1446 | return 0; |
| 1447 | } |
| 1448 | |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 1449 | static int nvme_configure_admin_queue(struct nvme_dev *dev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1450 | { |
Matthew Wilcox | ba47e38 | 2013-05-04 06:43:16 -0400 | [diff] [blame] | 1451 | int result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1452 | u32 aqa; |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1453 | u64 cap = lo_hi_readq(dev->bar + NVME_REG_CAP); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1454 | struct nvme_queue *nvmeq; |
| 1455 | |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1456 | dev->subsystem = readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 1) ? |
Keith Busch | dfbac8c | 2015-08-10 15:20:40 -0600 | [diff] [blame] | 1457 | NVME_CAP_NSSRC(cap) : 0; |
| 1458 | |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1459 | if (dev->subsystem && |
| 1460 | (readl(dev->bar + NVME_REG_CSTS) & NVME_CSTS_NSSRO)) |
| 1461 | writel(NVME_CSTS_NSSRO, dev->bar + NVME_REG_CSTS); |
Keith Busch | dfbac8c | 2015-08-10 15:20:40 -0600 | [diff] [blame] | 1462 | |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1463 | result = nvme_disable_ctrl(&dev->ctrl, cap); |
Matthew Wilcox | ba47e38 | 2013-05-04 06:43:16 -0400 | [diff] [blame] | 1464 | if (result < 0) |
| 1465 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1466 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1467 | nvmeq = dev->queues[0]; |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 1468 | if (!nvmeq) { |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1469 | nvmeq = nvme_alloc_queue(dev, 0, NVME_AQ_DEPTH); |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 1470 | if (!nvmeq) |
| 1471 | return -ENOMEM; |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 1472 | } |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1473 | |
| 1474 | aqa = nvmeq->q_depth - 1; |
| 1475 | aqa |= aqa << 16; |
| 1476 | |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1477 | writel(aqa, dev->bar + NVME_REG_AQA); |
| 1478 | lo_hi_writeq(nvmeq->sq_dma_addr, dev->bar + NVME_REG_ASQ); |
| 1479 | lo_hi_writeq(nvmeq->cq_dma_addr, dev->bar + NVME_REG_ACQ); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1480 | |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1481 | result = nvme_enable_ctrl(&dev->ctrl, cap); |
Keith Busch | 025c557 | 2013-05-01 13:07:51 -0600 | [diff] [blame] | 1482 | if (result) |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1483 | goto free_nvmeq; |
| 1484 | |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1485 | nvmeq->cq_vector = 0; |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 1486 | result = queue_request_irq(dev, nvmeq, nvmeq->irqname); |
Jon Derrick | 758dd7f | 2015-06-30 11:22:52 -0600 | [diff] [blame] | 1487 | if (result) { |
| 1488 | nvmeq->cq_vector = -1; |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 1489 | goto free_nvmeq; |
Jon Derrick | 758dd7f | 2015-06-30 11:22:52 -0600 | [diff] [blame] | 1490 | } |
Keith Busch | 025c557 | 2013-05-01 13:07:51 -0600 | [diff] [blame] | 1491 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1492 | return result; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1493 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1494 | free_nvmeq: |
| 1495 | nvme_free_queues(dev, 0); |
| 1496 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1497 | } |
| 1498 | |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 1499 | static int nvme_kthread(void *data) |
| 1500 | { |
Keith Busch | d4b4ff8 | 2013-12-10 13:10:37 -0700 | [diff] [blame] | 1501 | struct nvme_dev *dev, *next; |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 1502 | |
| 1503 | while (!kthread_should_stop()) { |
Arjan van de Ven | 564a232 | 2013-05-01 16:38:23 -0400 | [diff] [blame] | 1504 | set_current_state(TASK_INTERRUPTIBLE); |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 1505 | spin_lock(&dev_list_lock); |
Keith Busch | d4b4ff8 | 2013-12-10 13:10:37 -0700 | [diff] [blame] | 1506 | list_for_each_entry_safe(dev, next, &dev_list, node) { |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 1507 | int i; |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1508 | u32 csts = readl(dev->bar + NVME_REG_CSTS); |
Keith Busch | dfbac8c | 2015-08-10 15:20:40 -0600 | [diff] [blame] | 1509 | |
| 1510 | if ((dev->subsystem && (csts & NVME_CSTS_NSSRO)) || |
| 1511 | csts & NVME_CSTS_CFS) { |
Christoph Hellwig | 90667892 | 2015-10-02 18:49:23 +0200 | [diff] [blame] | 1512 | if (!__nvme_reset(dev)) { |
| 1513 | dev_warn(dev->dev, |
| 1514 | "Failed status: %x, reset controller\n", |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1515 | readl(dev->bar + NVME_REG_CSTS)); |
Christoph Hellwig | 90667892 | 2015-10-02 18:49:23 +0200 | [diff] [blame] | 1516 | } |
Keith Busch | d4b4ff8 | 2013-12-10 13:10:37 -0700 | [diff] [blame] | 1517 | continue; |
| 1518 | } |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 1519 | for (i = 0; i < dev->queue_count; i++) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1520 | struct nvme_queue *nvmeq = dev->queues[i]; |
Matthew Wilcox | 740216f | 2011-02-15 16:28:20 -0500 | [diff] [blame] | 1521 | if (!nvmeq) |
| 1522 | continue; |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 1523 | spin_lock_irq(&nvmeq->q_lock); |
Matthew Wilcox | bc57a0f | 2013-06-24 11:56:42 -0400 | [diff] [blame] | 1524 | nvme_process_cq(nvmeq); |
Keith Busch | 6fccf93 | 2014-06-18 13:58:57 -0600 | [diff] [blame] | 1525 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1526 | while (i == 0 && dev->ctrl.event_limit > 0) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1527 | if (nvme_submit_async_admin_req(dev)) |
Keith Busch | 6fccf93 | 2014-06-18 13:58:57 -0600 | [diff] [blame] | 1528 | break; |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1529 | dev->ctrl.event_limit--; |
Keith Busch | 6fccf93 | 2014-06-18 13:58:57 -0600 | [diff] [blame] | 1530 | } |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 1531 | spin_unlock_irq(&nvmeq->q_lock); |
| 1532 | } |
| 1533 | } |
| 1534 | spin_unlock(&dev_list_lock); |
Arjan van de Ven | acb7aa0 | 2013-02-04 14:44:33 -0800 | [diff] [blame] | 1535 | schedule_timeout(round_jiffies_relative(HZ)); |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 1536 | } |
| 1537 | return 0; |
| 1538 | } |
| 1539 | |
Christoph Hellwig | 2659e57 | 2015-10-02 18:51:31 +0200 | [diff] [blame] | 1540 | /* |
| 1541 | * Create I/O queues. Failing to create an I/O queue is not an issue, |
| 1542 | * we can continue with less than the desired amount of queues, and |
| 1543 | * even a controller without I/O queues an still be used to issue |
| 1544 | * admin commands. This might be useful to upgrade a buggy firmware |
| 1545 | * for example. |
| 1546 | */ |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1547 | static void nvme_create_io_queues(struct nvme_dev *dev) |
| 1548 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1549 | unsigned i; |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1550 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1551 | for (i = dev->queue_count; i <= dev->max_qid; i++) |
Keith Busch | 2b25d98 | 2014-12-22 12:59:04 -0700 | [diff] [blame] | 1552 | if (!nvme_alloc_queue(dev, i, dev->q_depth)) |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1553 | break; |
| 1554 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1555 | for (i = dev->online_queues; i <= dev->queue_count - 1; i++) |
Christoph Hellwig | 2659e57 | 2015-10-02 18:51:31 +0200 | [diff] [blame] | 1556 | if (nvme_create_queue(dev->queues[i], i)) { |
| 1557 | nvme_free_queues(dev, i); |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1558 | break; |
Christoph Hellwig | 2659e57 | 2015-10-02 18:51:31 +0200 | [diff] [blame] | 1559 | } |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1560 | } |
| 1561 | |
Matthew Wilcox | b3b0681 | 2011-01-20 09:14:34 -0500 | [diff] [blame] | 1562 | static int set_queue_count(struct nvme_dev *dev, int count) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1563 | { |
| 1564 | int status; |
| 1565 | u32 result; |
Matthew Wilcox | b3b0681 | 2011-01-20 09:14:34 -0500 | [diff] [blame] | 1566 | u32 q_count = (count - 1) | ((count - 1) << 16); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1567 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1568 | status = nvme_set_features(&dev->ctrl, NVME_FEAT_NUM_QUEUES, q_count, 0, |
Matthew Wilcox | bc5fc7e | 2011-09-19 17:08:14 -0400 | [diff] [blame] | 1569 | &result); |
Matthew Wilcox | 27e8166 | 2014-04-11 11:58:45 -0400 | [diff] [blame] | 1570 | if (status < 0) |
| 1571 | return status; |
| 1572 | if (status > 0) { |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1573 | dev_err(dev->dev, "Could not set queue count (%d)\n", status); |
Keith Busch | badc34d | 2014-06-23 14:25:35 -0600 | [diff] [blame] | 1574 | return 0; |
Matthew Wilcox | 27e8166 | 2014-04-11 11:58:45 -0400 | [diff] [blame] | 1575 | } |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1576 | return min(result & 0xffff, result >> 16) + 1; |
| 1577 | } |
| 1578 | |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1579 | static void __iomem *nvme_map_cmb(struct nvme_dev *dev) |
| 1580 | { |
| 1581 | u64 szu, size, offset; |
| 1582 | u32 cmbloc; |
| 1583 | resource_size_t bar_size; |
| 1584 | struct pci_dev *pdev = to_pci_dev(dev->dev); |
| 1585 | void __iomem *cmb; |
| 1586 | dma_addr_t dma_addr; |
| 1587 | |
| 1588 | if (!use_cmb_sqes) |
| 1589 | return NULL; |
| 1590 | |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1591 | dev->cmbsz = readl(dev->bar + NVME_REG_CMBSZ); |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1592 | if (!(NVME_CMB_SZ(dev->cmbsz))) |
| 1593 | return NULL; |
| 1594 | |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1595 | cmbloc = readl(dev->bar + NVME_REG_CMBLOC); |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1596 | |
| 1597 | szu = (u64)1 << (12 + 4 * NVME_CMB_SZU(dev->cmbsz)); |
| 1598 | size = szu * NVME_CMB_SZ(dev->cmbsz); |
| 1599 | offset = szu * NVME_CMB_OFST(cmbloc); |
| 1600 | bar_size = pci_resource_len(pdev, NVME_CMB_BIR(cmbloc)); |
| 1601 | |
| 1602 | if (offset > bar_size) |
| 1603 | return NULL; |
| 1604 | |
| 1605 | /* |
| 1606 | * Controllers may support a CMB size larger than their BAR, |
| 1607 | * for example, due to being behind a bridge. Reduce the CMB to |
| 1608 | * the reported size of the BAR |
| 1609 | */ |
| 1610 | if (size > bar_size - offset) |
| 1611 | size = bar_size - offset; |
| 1612 | |
| 1613 | dma_addr = pci_resource_start(pdev, NVME_CMB_BIR(cmbloc)) + offset; |
| 1614 | cmb = ioremap_wc(dma_addr, size); |
| 1615 | if (!cmb) |
| 1616 | return NULL; |
| 1617 | |
| 1618 | dev->cmb_dma_addr = dma_addr; |
| 1619 | dev->cmb_size = size; |
| 1620 | return cmb; |
| 1621 | } |
| 1622 | |
| 1623 | static inline void nvme_release_cmb(struct nvme_dev *dev) |
| 1624 | { |
| 1625 | if (dev->cmb) { |
| 1626 | iounmap(dev->cmb); |
| 1627 | dev->cmb = NULL; |
| 1628 | } |
| 1629 | } |
| 1630 | |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 1631 | static size_t db_bar_size(struct nvme_dev *dev, unsigned nr_io_queues) |
| 1632 | { |
Haiyan Hu | b80d5cc | 2013-09-10 11:25:37 +0800 | [diff] [blame] | 1633 | return 4096 + ((nr_io_queues + 1) * 8 * dev->db_stride); |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 1634 | } |
| 1635 | |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 1636 | static int nvme_setup_io_queues(struct nvme_dev *dev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1637 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1638 | struct nvme_queue *adminq = dev->queues[0]; |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1639 | struct pci_dev *pdev = to_pci_dev(dev->dev); |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1640 | int result, i, vecs, nr_io_queues, size; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1641 | |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1642 | nr_io_queues = num_possible_cpus(); |
Matthew Wilcox | b348b7d | 2011-02-15 16:16:02 -0500 | [diff] [blame] | 1643 | result = set_queue_count(dev, nr_io_queues); |
Keith Busch | badc34d | 2014-06-23 14:25:35 -0600 | [diff] [blame] | 1644 | if (result <= 0) |
Matthew Wilcox | 1b23484 | 2011-01-20 13:01:49 -0500 | [diff] [blame] | 1645 | return result; |
Matthew Wilcox | b348b7d | 2011-02-15 16:16:02 -0500 | [diff] [blame] | 1646 | if (result < nr_io_queues) |
| 1647 | nr_io_queues = result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1648 | |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1649 | if (dev->cmb && NVME_CMB_SQS(dev->cmbsz)) { |
| 1650 | result = nvme_cmb_qdepth(dev, nr_io_queues, |
| 1651 | sizeof(struct nvme_command)); |
| 1652 | if (result > 0) |
| 1653 | dev->q_depth = result; |
| 1654 | else |
| 1655 | nvme_release_cmb(dev); |
| 1656 | } |
| 1657 | |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 1658 | size = db_bar_size(dev, nr_io_queues); |
| 1659 | if (size > 8192) { |
Matthew Wilcox | f1938f6 | 2011-10-20 17:00:41 -0400 | [diff] [blame] | 1660 | iounmap(dev->bar); |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 1661 | do { |
| 1662 | dev->bar = ioremap(pci_resource_start(pdev, 0), size); |
| 1663 | if (dev->bar) |
| 1664 | break; |
| 1665 | if (!--nr_io_queues) |
| 1666 | return -ENOMEM; |
| 1667 | size = db_bar_size(dev, nr_io_queues); |
| 1668 | } while (1); |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1669 | dev->dbs = dev->bar + 4096; |
Keith Busch | 5a92e70 | 2014-02-21 14:13:44 -0700 | [diff] [blame] | 1670 | adminq->q_db = dev->dbs; |
Matthew Wilcox | f1938f6 | 2011-10-20 17:00:41 -0400 | [diff] [blame] | 1671 | } |
| 1672 | |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 1673 | /* Deregister the admin queue's interrupt */ |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 1674 | free_irq(dev->entry[0].vector, adminq); |
Keith Busch | 9d713c2 | 2013-07-15 15:02:24 -0600 | [diff] [blame] | 1675 | |
Jens Axboe | e32efbf | 2014-11-14 09:49:26 -0700 | [diff] [blame] | 1676 | /* |
| 1677 | * If we enable msix early due to not intx, disable it again before |
| 1678 | * setting up the full range we need. |
| 1679 | */ |
| 1680 | if (!pdev->irq) |
| 1681 | pci_disable_msix(pdev); |
| 1682 | |
Alexander Gordeev | be577fa | 2014-03-04 16:22:00 +0100 | [diff] [blame] | 1683 | for (i = 0; i < nr_io_queues; i++) |
Matthew Wilcox | 1b23484 | 2011-01-20 13:01:49 -0500 | [diff] [blame] | 1684 | dev->entry[i].entry = i; |
Alexander Gordeev | be577fa | 2014-03-04 16:22:00 +0100 | [diff] [blame] | 1685 | vecs = pci_enable_msix_range(pdev, dev->entry, 1, nr_io_queues); |
| 1686 | if (vecs < 0) { |
| 1687 | vecs = pci_enable_msi_range(pdev, 1, min(nr_io_queues, 32)); |
| 1688 | if (vecs < 0) { |
| 1689 | vecs = 1; |
| 1690 | } else { |
| 1691 | for (i = 0; i < vecs; i++) |
| 1692 | dev->entry[i].vector = i + pdev->irq; |
Matthew Wilcox | 1b23484 | 2011-01-20 13:01:49 -0500 | [diff] [blame] | 1693 | } |
| 1694 | } |
| 1695 | |
Matthew Wilcox | 063a809 | 2013-06-20 10:53:48 -0400 | [diff] [blame] | 1696 | /* |
| 1697 | * Should investigate if there's a performance win from allocating |
| 1698 | * more queues than interrupt vectors; it might allow the submission |
| 1699 | * path to scale better, even if the receive path is limited by the |
| 1700 | * number of interrupts. |
| 1701 | */ |
| 1702 | nr_io_queues = vecs; |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1703 | dev->max_qid = nr_io_queues; |
Ramachandra Rao Gajula | fa08a39 | 2013-05-11 15:19:31 -0700 | [diff] [blame] | 1704 | |
Matthew Wilcox | 3193f07 | 2014-01-27 15:57:22 -0500 | [diff] [blame] | 1705 | result = queue_request_irq(dev, adminq, adminq->irqname); |
Jon Derrick | 758dd7f | 2015-06-30 11:22:52 -0600 | [diff] [blame] | 1706 | if (result) { |
| 1707 | adminq->cq_vector = -1; |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1708 | goto free_queues; |
Jon Derrick | 758dd7f | 2015-06-30 11:22:52 -0600 | [diff] [blame] | 1709 | } |
Matthew Wilcox | 1b23484 | 2011-01-20 13:01:49 -0500 | [diff] [blame] | 1710 | |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 1711 | /* Free previously allocated queues that are no longer usable */ |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1712 | nvme_free_queues(dev, nr_io_queues + 1); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1713 | nvme_create_io_queues(dev); |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 1714 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1715 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1716 | |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1717 | free_queues: |
Keith Busch | a1a5ef9 | 2013-12-16 13:50:00 -0500 | [diff] [blame] | 1718 | nvme_free_queues(dev, 1); |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 1719 | return result; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1720 | } |
| 1721 | |
Keith Busch | bda4e0f | 2015-09-03 08:18:17 -0600 | [diff] [blame] | 1722 | static void nvme_set_irq_hints(struct nvme_dev *dev) |
| 1723 | { |
| 1724 | struct nvme_queue *nvmeq; |
| 1725 | int i; |
| 1726 | |
| 1727 | for (i = 0; i < dev->online_queues; i++) { |
| 1728 | nvmeq = dev->queues[i]; |
| 1729 | |
| 1730 | if (!nvmeq->tags || !(*nvmeq->tags)) |
| 1731 | continue; |
| 1732 | |
| 1733 | irq_set_affinity_hint(dev->entry[nvmeq->cq_vector].vector, |
| 1734 | blk_mq_tags_cpumask(*nvmeq->tags)); |
| 1735 | } |
| 1736 | } |
| 1737 | |
Keith Busch | a5768aa | 2015-06-01 14:28:14 -0600 | [diff] [blame] | 1738 | static void nvme_dev_scan(struct work_struct *work) |
| 1739 | { |
| 1740 | struct nvme_dev *dev = container_of(work, struct nvme_dev, scan_work); |
Keith Busch | a5768aa | 2015-06-01 14:28:14 -0600 | [diff] [blame] | 1741 | |
| 1742 | if (!dev->tagset.tags) |
| 1743 | return; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1744 | nvme_scan_namespaces(&dev->ctrl); |
Keith Busch | bda4e0f | 2015-09-03 08:18:17 -0600 | [diff] [blame] | 1745 | nvme_set_irq_hints(dev); |
Keith Busch | a5768aa | 2015-06-01 14:28:14 -0600 | [diff] [blame] | 1746 | } |
| 1747 | |
Matthew Wilcox | 422ef0c | 2013-04-16 11:22:36 -0400 | [diff] [blame] | 1748 | /* |
| 1749 | * Return: error value if an error occurred setting up the queues or calling |
| 1750 | * Identify Device. 0 if these succeeded, even if adding some of the |
| 1751 | * namespaces failed. At the moment, these failures are silent. TBD which |
| 1752 | * failures should be reported. |
| 1753 | */ |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 1754 | static int nvme_dev_add(struct nvme_dev *dev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1755 | { |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1756 | if (!dev->ctrl.tagset) { |
Keith Busch | ffe7704 | 2015-06-08 10:08:15 -0600 | [diff] [blame] | 1757 | dev->tagset.ops = &nvme_mq_ops; |
| 1758 | dev->tagset.nr_hw_queues = dev->online_queues - 1; |
| 1759 | dev->tagset.timeout = NVME_IO_TIMEOUT; |
| 1760 | dev->tagset.numa_node = dev_to_node(dev->dev); |
| 1761 | dev->tagset.queue_depth = |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1762 | min_t(int, dev->q_depth, BLK_MQ_MAX_DEPTH) - 1; |
Keith Busch | ffe7704 | 2015-06-08 10:08:15 -0600 | [diff] [blame] | 1763 | dev->tagset.cmd_size = nvme_cmd_size(dev); |
| 1764 | dev->tagset.flags = BLK_MQ_F_SHOULD_MERGE; |
| 1765 | dev->tagset.driver_data = dev; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1766 | |
Keith Busch | ffe7704 | 2015-06-08 10:08:15 -0600 | [diff] [blame] | 1767 | if (blk_mq_alloc_tag_set(&dev->tagset)) |
| 1768 | return 0; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1769 | dev->ctrl.tagset = &dev->tagset; |
Keith Busch | ffe7704 | 2015-06-08 10:08:15 -0600 | [diff] [blame] | 1770 | } |
Keith Busch | a5768aa | 2015-06-01 14:28:14 -0600 | [diff] [blame] | 1771 | schedule_work(&dev->scan_work); |
Keith Busch | e1e5e56 | 2015-02-19 13:39:03 -0700 | [diff] [blame] | 1772 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 1773 | } |
| 1774 | |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1775 | static int nvme_dev_map(struct nvme_dev *dev) |
| 1776 | { |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1777 | u64 cap; |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1778 | int bars, result = -ENOMEM; |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1779 | struct pci_dev *pdev = to_pci_dev(dev->dev); |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1780 | |
| 1781 | if (pci_enable_device_mem(pdev)) |
| 1782 | return result; |
| 1783 | |
| 1784 | dev->entry[0].vector = pdev->irq; |
| 1785 | pci_set_master(pdev); |
| 1786 | bars = pci_select_bars(pdev, IORESOURCE_MEM); |
Jens Axboe | be7837e | 2014-11-14 09:50:19 -0700 | [diff] [blame] | 1787 | if (!bars) |
| 1788 | goto disable_pci; |
| 1789 | |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1790 | if (pci_request_selected_regions(pdev, bars, "nvme")) |
| 1791 | goto disable_pci; |
| 1792 | |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1793 | if (dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(64)) && |
| 1794 | dma_set_mask_and_coherent(dev->dev, DMA_BIT_MASK(32))) |
Russell King | 052d0ef | 2013-06-26 23:49:11 +0100 | [diff] [blame] | 1795 | goto disable; |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1796 | |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1797 | dev->bar = ioremap(pci_resource_start(pdev, 0), 8192); |
| 1798 | if (!dev->bar) |
| 1799 | goto disable; |
Jens Axboe | e32efbf | 2014-11-14 09:49:26 -0700 | [diff] [blame] | 1800 | |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1801 | if (readl(dev->bar + NVME_REG_CSTS) == -1) { |
Keith Busch | 0e53d18 | 2013-12-10 13:10:39 -0700 | [diff] [blame] | 1802 | result = -ENODEV; |
| 1803 | goto unmap; |
| 1804 | } |
Jens Axboe | e32efbf | 2014-11-14 09:49:26 -0700 | [diff] [blame] | 1805 | |
| 1806 | /* |
| 1807 | * Some devices don't advertse INTx interrupts, pre-enable a single |
| 1808 | * MSIX vec for setup. We'll adjust this later. |
| 1809 | */ |
| 1810 | if (!pdev->irq) { |
| 1811 | result = pci_enable_msix(pdev, dev->entry, 1); |
| 1812 | if (result < 0) |
| 1813 | goto unmap; |
| 1814 | } |
| 1815 | |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1816 | cap = lo_hi_readq(dev->bar + NVME_REG_CAP); |
| 1817 | |
Keith Busch | 42f6142 | 2014-03-24 10:46:25 -0600 | [diff] [blame] | 1818 | dev->q_depth = min_t(int, NVME_CAP_MQES(cap) + 1, NVME_Q_DEPTH); |
| 1819 | dev->db_stride = 1 << NVME_CAP_STRIDE(cap); |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1820 | dev->dbs = dev->bar + 4096; |
| 1821 | if (readl(dev->bar + NVME_REG_VS) >= NVME_VS(1, 2)) |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 1822 | dev->cmb = nvme_map_cmb(dev); |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1823 | |
| 1824 | return 0; |
| 1825 | |
Keith Busch | 0e53d18 | 2013-12-10 13:10:39 -0700 | [diff] [blame] | 1826 | unmap: |
| 1827 | iounmap(dev->bar); |
| 1828 | dev->bar = NULL; |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1829 | disable: |
| 1830 | pci_release_regions(pdev); |
| 1831 | disable_pci: |
| 1832 | pci_disable_device(pdev); |
| 1833 | return result; |
| 1834 | } |
| 1835 | |
| 1836 | static void nvme_dev_unmap(struct nvme_dev *dev) |
| 1837 | { |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1838 | struct pci_dev *pdev = to_pci_dev(dev->dev); |
| 1839 | |
| 1840 | if (pdev->msi_enabled) |
| 1841 | pci_disable_msi(pdev); |
| 1842 | else if (pdev->msix_enabled) |
| 1843 | pci_disable_msix(pdev); |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1844 | |
| 1845 | if (dev->bar) { |
| 1846 | iounmap(dev->bar); |
| 1847 | dev->bar = NULL; |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1848 | pci_release_regions(pdev); |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1849 | } |
| 1850 | |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1851 | if (pci_is_enabled(pdev)) |
| 1852 | pci_disable_device(pdev); |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 1853 | } |
| 1854 | |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1855 | struct nvme_delq_ctx { |
| 1856 | struct task_struct *waiter; |
| 1857 | struct kthread_worker *worker; |
| 1858 | atomic_t refcount; |
| 1859 | }; |
| 1860 | |
| 1861 | static void nvme_wait_dq(struct nvme_delq_ctx *dq, struct nvme_dev *dev) |
| 1862 | { |
| 1863 | dq->waiter = current; |
| 1864 | mb(); |
| 1865 | |
| 1866 | for (;;) { |
| 1867 | set_current_state(TASK_KILLABLE); |
| 1868 | if (!atomic_read(&dq->refcount)) |
| 1869 | break; |
| 1870 | if (!schedule_timeout(ADMIN_TIMEOUT) || |
| 1871 | fatal_signal_pending(current)) { |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 1872 | /* |
| 1873 | * Disable the controller first since we can't trust it |
| 1874 | * at this point, but leave the admin queue enabled |
| 1875 | * until all queue deletion requests are flushed. |
| 1876 | * FIXME: This may take a while if there are more h/w |
| 1877 | * queues than admin tags. |
| 1878 | */ |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1879 | set_current_state(TASK_RUNNING); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1880 | nvme_disable_ctrl(&dev->ctrl, |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 1881 | lo_hi_readq(dev->bar + NVME_REG_CAP)); |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 1882 | nvme_clear_queue(dev->queues[0]); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1883 | flush_kthread_worker(dq->worker); |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 1884 | nvme_disable_queue(dev, 0); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1885 | return; |
| 1886 | } |
| 1887 | } |
| 1888 | set_current_state(TASK_RUNNING); |
| 1889 | } |
| 1890 | |
| 1891 | static void nvme_put_dq(struct nvme_delq_ctx *dq) |
| 1892 | { |
| 1893 | atomic_dec(&dq->refcount); |
| 1894 | if (dq->waiter) |
| 1895 | wake_up_process(dq->waiter); |
| 1896 | } |
| 1897 | |
| 1898 | static struct nvme_delq_ctx *nvme_get_dq(struct nvme_delq_ctx *dq) |
| 1899 | { |
| 1900 | atomic_inc(&dq->refcount); |
| 1901 | return dq; |
| 1902 | } |
| 1903 | |
| 1904 | static void nvme_del_queue_end(struct nvme_queue *nvmeq) |
| 1905 | { |
| 1906 | struct nvme_delq_ctx *dq = nvmeq->cmdinfo.ctx; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1907 | nvme_put_dq(dq); |
Keith Busch | 604e8c8 | 2015-11-20 08:38:13 -0700 | [diff] [blame] | 1908 | |
| 1909 | spin_lock_irq(&nvmeq->q_lock); |
| 1910 | nvme_process_cq(nvmeq); |
| 1911 | spin_unlock_irq(&nvmeq->q_lock); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1912 | } |
| 1913 | |
| 1914 | static int adapter_async_del_queue(struct nvme_queue *nvmeq, u8 opcode, |
| 1915 | kthread_work_func_t fn) |
| 1916 | { |
| 1917 | struct nvme_command c; |
| 1918 | |
| 1919 | memset(&c, 0, sizeof(c)); |
| 1920 | c.delete_queue.opcode = opcode; |
| 1921 | c.delete_queue.qid = cpu_to_le16(nvmeq->qid); |
| 1922 | |
| 1923 | init_kthread_work(&nvmeq->cmdinfo.work, fn); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1924 | return nvme_submit_admin_async_cmd(nvmeq->dev, &c, &nvmeq->cmdinfo, |
| 1925 | ADMIN_TIMEOUT); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1926 | } |
| 1927 | |
| 1928 | static void nvme_del_cq_work_handler(struct kthread_work *work) |
| 1929 | { |
| 1930 | struct nvme_queue *nvmeq = container_of(work, struct nvme_queue, |
| 1931 | cmdinfo.work); |
| 1932 | nvme_del_queue_end(nvmeq); |
| 1933 | } |
| 1934 | |
| 1935 | static int nvme_delete_cq(struct nvme_queue *nvmeq) |
| 1936 | { |
| 1937 | return adapter_async_del_queue(nvmeq, nvme_admin_delete_cq, |
| 1938 | nvme_del_cq_work_handler); |
| 1939 | } |
| 1940 | |
| 1941 | static void nvme_del_sq_work_handler(struct kthread_work *work) |
| 1942 | { |
| 1943 | struct nvme_queue *nvmeq = container_of(work, struct nvme_queue, |
| 1944 | cmdinfo.work); |
| 1945 | int status = nvmeq->cmdinfo.status; |
| 1946 | |
| 1947 | if (!status) |
| 1948 | status = nvme_delete_cq(nvmeq); |
| 1949 | if (status) |
| 1950 | nvme_del_queue_end(nvmeq); |
| 1951 | } |
| 1952 | |
| 1953 | static int nvme_delete_sq(struct nvme_queue *nvmeq) |
| 1954 | { |
| 1955 | return adapter_async_del_queue(nvmeq, nvme_admin_delete_sq, |
| 1956 | nvme_del_sq_work_handler); |
| 1957 | } |
| 1958 | |
| 1959 | static void nvme_del_queue_start(struct kthread_work *work) |
| 1960 | { |
| 1961 | struct nvme_queue *nvmeq = container_of(work, struct nvme_queue, |
| 1962 | cmdinfo.work); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1963 | if (nvme_delete_sq(nvmeq)) |
| 1964 | nvme_del_queue_end(nvmeq); |
| 1965 | } |
| 1966 | |
| 1967 | static void nvme_disable_io_queues(struct nvme_dev *dev) |
| 1968 | { |
| 1969 | int i; |
| 1970 | DEFINE_KTHREAD_WORKER_ONSTACK(worker); |
| 1971 | struct nvme_delq_ctx dq; |
| 1972 | struct task_struct *kworker_task = kthread_run(kthread_worker_fn, |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 1973 | &worker, "nvme%d", dev->ctrl.instance); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1974 | |
| 1975 | if (IS_ERR(kworker_task)) { |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 1976 | dev_err(dev->dev, |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1977 | "Failed to create queue del task\n"); |
| 1978 | for (i = dev->queue_count - 1; i > 0; i--) |
| 1979 | nvme_disable_queue(dev, i); |
| 1980 | return; |
| 1981 | } |
| 1982 | |
| 1983 | dq.waiter = NULL; |
| 1984 | atomic_set(&dq.refcount, 0); |
| 1985 | dq.worker = &worker; |
| 1986 | for (i = dev->queue_count - 1; i > 0; i--) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 1987 | struct nvme_queue *nvmeq = dev->queues[i]; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 1988 | |
| 1989 | if (nvme_suspend_queue(nvmeq)) |
| 1990 | continue; |
| 1991 | nvmeq->cmdinfo.ctx = nvme_get_dq(&dq); |
| 1992 | nvmeq->cmdinfo.worker = dq.worker; |
| 1993 | init_kthread_work(&nvmeq->cmdinfo.work, nvme_del_queue_start); |
| 1994 | queue_kthread_work(dq.worker, &nvmeq->cmdinfo.work); |
| 1995 | } |
| 1996 | nvme_wait_dq(&dq, dev); |
| 1997 | kthread_stop(kworker_task); |
| 1998 | } |
| 1999 | |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2000 | /* |
| 2001 | * Remove the node from the device list and check |
| 2002 | * for whether or not we need to stop the nvme_thread. |
| 2003 | */ |
| 2004 | static void nvme_dev_list_remove(struct nvme_dev *dev) |
| 2005 | { |
| 2006 | struct task_struct *tmp = NULL; |
| 2007 | |
| 2008 | spin_lock(&dev_list_lock); |
| 2009 | list_del_init(&dev->node); |
| 2010 | if (list_empty(&dev_list) && !IS_ERR_OR_NULL(nvme_thread)) { |
| 2011 | tmp = nvme_thread; |
| 2012 | nvme_thread = NULL; |
| 2013 | } |
| 2014 | spin_unlock(&dev_list_lock); |
| 2015 | |
| 2016 | if (tmp) |
| 2017 | kthread_stop(tmp); |
| 2018 | } |
| 2019 | |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2020 | static void nvme_freeze_queues(struct nvme_dev *dev) |
| 2021 | { |
| 2022 | struct nvme_ns *ns; |
| 2023 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2024 | list_for_each_entry(ns, &dev->ctrl.namespaces, list) { |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2025 | blk_mq_freeze_queue_start(ns->queue); |
| 2026 | |
Christoph Hellwig | cddcd72 | 2015-05-07 09:38:14 +0200 | [diff] [blame] | 2027 | spin_lock_irq(ns->queue->queue_lock); |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2028 | queue_flag_set(QUEUE_FLAG_STOPPED, ns->queue); |
Christoph Hellwig | cddcd72 | 2015-05-07 09:38:14 +0200 | [diff] [blame] | 2029 | spin_unlock_irq(ns->queue->queue_lock); |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2030 | |
| 2031 | blk_mq_cancel_requeue_work(ns->queue); |
| 2032 | blk_mq_stop_hw_queues(ns->queue); |
| 2033 | } |
| 2034 | } |
| 2035 | |
| 2036 | static void nvme_unfreeze_queues(struct nvme_dev *dev) |
| 2037 | { |
| 2038 | struct nvme_ns *ns; |
| 2039 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2040 | list_for_each_entry(ns, &dev->ctrl.namespaces, list) { |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2041 | queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, ns->queue); |
| 2042 | blk_mq_unfreeze_queue(ns->queue); |
| 2043 | blk_mq_start_stopped_hw_queues(ns->queue, true); |
| 2044 | blk_mq_kick_requeue_list(ns->queue); |
| 2045 | } |
| 2046 | } |
| 2047 | |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2048 | static void nvme_dev_shutdown(struct nvme_dev *dev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2049 | { |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 2050 | int i; |
Keith Busch | 7c1b245 | 2014-06-25 11:18:12 -0600 | [diff] [blame] | 2051 | u32 csts = -1; |
Keith Busch | 2240427 | 2013-07-15 15:02:20 -0600 | [diff] [blame] | 2052 | |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2053 | nvme_dev_list_remove(dev); |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2054 | |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2055 | if (dev->bar) { |
| 2056 | nvme_freeze_queues(dev); |
Christoph Hellwig | 7a67cbe | 2015-11-20 08:58:10 +0100 | [diff] [blame] | 2057 | csts = readl(dev->bar + NVME_REG_CSTS); |
Keith Busch | c9d3bf8 | 2015-01-07 18:55:52 -0700 | [diff] [blame] | 2058 | } |
Keith Busch | 7c1b245 | 2014-06-25 11:18:12 -0600 | [diff] [blame] | 2059 | if (csts & NVME_CSTS_CFS || !(csts & NVME_CSTS_RDY)) { |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2060 | for (i = dev->queue_count - 1; i >= 0; i--) { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2061 | struct nvme_queue *nvmeq = dev->queues[i]; |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2062 | nvme_suspend_queue(nvmeq); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2063 | } |
| 2064 | } else { |
| 2065 | nvme_disable_io_queues(dev); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 2066 | nvme_shutdown_ctrl(&dev->ctrl); |
Keith Busch | 4d11542 | 2013-12-10 13:10:40 -0700 | [diff] [blame] | 2067 | nvme_disable_queue(dev, 0); |
| 2068 | } |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2069 | nvme_dev_unmap(dev); |
Keith Busch | 07836e6 | 2015-02-19 10:34:48 -0700 | [diff] [blame] | 2070 | |
| 2071 | for (i = dev->queue_count - 1; i >= 0; i--) |
| 2072 | nvme_clear_queue(dev->queues[i]); |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2073 | } |
| 2074 | |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 2075 | static int nvme_setup_prp_pools(struct nvme_dev *dev) |
| 2076 | { |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 2077 | dev->prp_page_pool = dma_pool_create("prp list page", dev->dev, |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 2078 | PAGE_SIZE, PAGE_SIZE, 0); |
| 2079 | if (!dev->prp_page_pool) |
| 2080 | return -ENOMEM; |
| 2081 | |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 2082 | /* Optimisation for I/Os between 4k and 128k */ |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 2083 | dev->prp_small_pool = dma_pool_create("prp list 256", dev->dev, |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 2084 | 256, 256, 0); |
| 2085 | if (!dev->prp_small_pool) { |
| 2086 | dma_pool_destroy(dev->prp_page_pool); |
| 2087 | return -ENOMEM; |
| 2088 | } |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 2089 | return 0; |
| 2090 | } |
| 2091 | |
| 2092 | static void nvme_release_prp_pools(struct nvme_dev *dev) |
| 2093 | { |
| 2094 | dma_pool_destroy(dev->prp_page_pool); |
Matthew Wilcox | 99802a7 | 2011-02-10 10:30:34 -0500 | [diff] [blame] | 2095 | dma_pool_destroy(dev->prp_small_pool); |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 2096 | } |
| 2097 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 2098 | static void nvme_pci_free_ctrl(struct nvme_ctrl *ctrl) |
Keith Busch | 5e82e95 | 2013-02-19 10:17:58 -0700 | [diff] [blame] | 2099 | { |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 2100 | struct nvme_dev *dev = to_nvme_dev(ctrl); |
Keith Busch | 9ac2709 | 2014-01-31 16:53:39 -0700 | [diff] [blame] | 2101 | |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 2102 | put_device(dev->dev); |
Keith Busch | 4af0e21 | 2015-06-08 10:08:13 -0600 | [diff] [blame] | 2103 | if (dev->tagset.tags) |
| 2104 | blk_mq_free_tag_set(&dev->tagset); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 2105 | if (dev->ctrl.admin_q) |
| 2106 | blk_put_queue(dev->ctrl.admin_q); |
Keith Busch | 5e82e95 | 2013-02-19 10:17:58 -0700 | [diff] [blame] | 2107 | kfree(dev->queues); |
| 2108 | kfree(dev->entry); |
| 2109 | kfree(dev); |
| 2110 | } |
| 2111 | |
Christoph Hellwig | 3cf519b | 2015-10-03 09:49:23 +0200 | [diff] [blame] | 2112 | static void nvme_probe_work(struct work_struct *work) |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2113 | { |
Christoph Hellwig | 3cf519b | 2015-10-03 09:49:23 +0200 | [diff] [blame] | 2114 | struct nvme_dev *dev = container_of(work, struct nvme_dev, probe_work); |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2115 | bool start_thread = false; |
Christoph Hellwig | 3cf519b | 2015-10-03 09:49:23 +0200 | [diff] [blame] | 2116 | int result; |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2117 | |
| 2118 | result = nvme_dev_map(dev); |
| 2119 | if (result) |
Christoph Hellwig | 3cf519b | 2015-10-03 09:49:23 +0200 | [diff] [blame] | 2120 | goto out; |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2121 | |
| 2122 | result = nvme_configure_admin_queue(dev); |
| 2123 | if (result) |
| 2124 | goto unmap; |
| 2125 | |
| 2126 | spin_lock(&dev_list_lock); |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2127 | if (list_empty(&dev_list) && IS_ERR_OR_NULL(nvme_thread)) { |
| 2128 | start_thread = true; |
| 2129 | nvme_thread = NULL; |
| 2130 | } |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2131 | list_add(&dev->node, &dev_list); |
| 2132 | spin_unlock(&dev_list_lock); |
| 2133 | |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2134 | if (start_thread) { |
| 2135 | nvme_thread = kthread_run(nvme_kthread, NULL, "nvme"); |
Keith Busch | 387caa5 | 2014-09-22 13:46:19 -0600 | [diff] [blame] | 2136 | wake_up_all(&nvme_kthread_wait); |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2137 | } else |
| 2138 | wait_event_killable(nvme_kthread_wait, nvme_thread); |
| 2139 | |
| 2140 | if (IS_ERR_OR_NULL(nvme_thread)) { |
| 2141 | result = nvme_thread ? PTR_ERR(nvme_thread) : -EINTR; |
| 2142 | goto disable; |
| 2143 | } |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2144 | |
| 2145 | nvme_init_queue(dev->queues[0], 0); |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 2146 | result = nvme_alloc_admin_tags(dev); |
| 2147 | if (result) |
| 2148 | goto disable; |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2149 | |
Christoph Hellwig | ce4541f | 2015-10-16 07:58:46 +0200 | [diff] [blame] | 2150 | result = nvme_init_identify(&dev->ctrl); |
| 2151 | if (result) |
| 2152 | goto free_tags; |
| 2153 | |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2154 | result = nvme_setup_io_queues(dev); |
Keith Busch | badc34d | 2014-06-23 14:25:35 -0600 | [diff] [blame] | 2155 | if (result) |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 2156 | goto free_tags; |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2157 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 2158 | dev->ctrl.event_limit = 1; |
Christoph Hellwig | 3cf519b | 2015-10-03 09:49:23 +0200 | [diff] [blame] | 2159 | |
Christoph Hellwig | 2659e57 | 2015-10-02 18:51:31 +0200 | [diff] [blame] | 2160 | /* |
| 2161 | * Keep the controller around but remove all namespaces if we don't have |
| 2162 | * any working I/O queue. |
| 2163 | */ |
Christoph Hellwig | 3cf519b | 2015-10-03 09:49:23 +0200 | [diff] [blame] | 2164 | if (dev->online_queues < 2) { |
| 2165 | dev_warn(dev->dev, "IO queues not created\n"); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2166 | nvme_remove_namespaces(&dev->ctrl); |
Christoph Hellwig | 3cf519b | 2015-10-03 09:49:23 +0200 | [diff] [blame] | 2167 | } else { |
| 2168 | nvme_unfreeze_queues(dev); |
| 2169 | nvme_dev_add(dev); |
| 2170 | } |
| 2171 | |
| 2172 | return; |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2173 | |
Keith Busch | 0fb59cb | 2015-01-07 18:55:50 -0700 | [diff] [blame] | 2174 | free_tags: |
| 2175 | nvme_dev_remove_admin(dev); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 2176 | blk_put_queue(dev->ctrl.admin_q); |
| 2177 | dev->ctrl.admin_q = NULL; |
Keith Busch | 4af0e21 | 2015-06-08 10:08:13 -0600 | [diff] [blame] | 2178 | dev->queues[0]->tags = NULL; |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2179 | disable: |
Keith Busch | a1a5ef9 | 2013-12-16 13:50:00 -0500 | [diff] [blame] | 2180 | nvme_disable_queue(dev, 0); |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2181 | nvme_dev_list_remove(dev); |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2182 | unmap: |
| 2183 | nvme_dev_unmap(dev); |
Christoph Hellwig | 3cf519b | 2015-10-03 09:49:23 +0200 | [diff] [blame] | 2184 | out: |
| 2185 | if (!work_busy(&dev->reset_work)) |
| 2186 | nvme_dead_ctrl(dev); |
Keith Busch | f0b5073 | 2013-07-15 15:02:21 -0600 | [diff] [blame] | 2187 | } |
| 2188 | |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2189 | static int nvme_remove_dead_ctrl(void *arg) |
| 2190 | { |
| 2191 | struct nvme_dev *dev = (struct nvme_dev *)arg; |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 2192 | struct pci_dev *pdev = to_pci_dev(dev->dev); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2193 | |
| 2194 | if (pci_get_drvdata(pdev)) |
Keith Busch | c81f497 | 2014-06-23 15:24:53 -0600 | [diff] [blame] | 2195 | pci_stop_and_remove_bus_device_locked(pdev); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 2196 | nvme_put_ctrl(&dev->ctrl); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2197 | return 0; |
| 2198 | } |
| 2199 | |
Keith Busch | de3eff2 | 2015-06-18 13:36:39 -0600 | [diff] [blame] | 2200 | static void nvme_dead_ctrl(struct nvme_dev *dev) |
| 2201 | { |
| 2202 | dev_warn(dev->dev, "Device failed to resume\n"); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 2203 | kref_get(&dev->ctrl.kref); |
Keith Busch | de3eff2 | 2015-06-18 13:36:39 -0600 | [diff] [blame] | 2204 | if (IS_ERR(kthread_run(nvme_remove_dead_ctrl, dev, "nvme%d", |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 2205 | dev->ctrl.instance))) { |
Keith Busch | de3eff2 | 2015-06-18 13:36:39 -0600 | [diff] [blame] | 2206 | dev_err(dev->dev, |
| 2207 | "Failed to start controller remove task\n"); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 2208 | nvme_put_ctrl(&dev->ctrl); |
Keith Busch | de3eff2 | 2015-06-18 13:36:39 -0600 | [diff] [blame] | 2209 | } |
| 2210 | } |
| 2211 | |
Christoph Hellwig | 77b50d9 | 2015-10-02 17:41:18 +0200 | [diff] [blame] | 2212 | static void nvme_reset_work(struct work_struct *ws) |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2213 | { |
Christoph Hellwig | 77b50d9 | 2015-10-02 17:41:18 +0200 | [diff] [blame] | 2214 | struct nvme_dev *dev = container_of(ws, struct nvme_dev, reset_work); |
Keith Busch | ffe7704 | 2015-06-08 10:08:15 -0600 | [diff] [blame] | 2215 | bool in_probe = work_busy(&dev->probe_work); |
| 2216 | |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2217 | nvme_dev_shutdown(dev); |
Keith Busch | ffe7704 | 2015-06-08 10:08:15 -0600 | [diff] [blame] | 2218 | |
| 2219 | /* Synchronize with device probe so that work will see failure status |
| 2220 | * and exit gracefully without trying to schedule another reset */ |
| 2221 | flush_work(&dev->probe_work); |
| 2222 | |
| 2223 | /* Fail this device if reset occured during probe to avoid |
| 2224 | * infinite initialization loops. */ |
| 2225 | if (in_probe) { |
Keith Busch | de3eff2 | 2015-06-18 13:36:39 -0600 | [diff] [blame] | 2226 | nvme_dead_ctrl(dev); |
Keith Busch | ffe7704 | 2015-06-08 10:08:15 -0600 | [diff] [blame] | 2227 | return; |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2228 | } |
Keith Busch | ffe7704 | 2015-06-08 10:08:15 -0600 | [diff] [blame] | 2229 | /* Schedule device resume asynchronously so the reset work is available |
| 2230 | * to cleanup errors that may occur during reinitialization */ |
| 2231 | schedule_work(&dev->probe_work); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2232 | } |
| 2233 | |
Christoph Hellwig | 90667892 | 2015-10-02 18:49:23 +0200 | [diff] [blame] | 2234 | static int __nvme_reset(struct nvme_dev *dev) |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2235 | { |
Christoph Hellwig | 90667892 | 2015-10-02 18:49:23 +0200 | [diff] [blame] | 2236 | if (work_pending(&dev->reset_work)) |
| 2237 | return -EBUSY; |
| 2238 | list_del_init(&dev->node); |
| 2239 | queue_work(nvme_workq, &dev->reset_work); |
| 2240 | return 0; |
Tejun Heo | 9ca9737 | 2014-03-07 10:24:49 -0500 | [diff] [blame] | 2241 | } |
| 2242 | |
Keith Busch | 4cc0652 | 2015-06-05 10:30:08 -0600 | [diff] [blame] | 2243 | static int nvme_reset(struct nvme_dev *dev) |
| 2244 | { |
Christoph Hellwig | 90667892 | 2015-10-02 18:49:23 +0200 | [diff] [blame] | 2245 | int ret; |
Keith Busch | 4cc0652 | 2015-06-05 10:30:08 -0600 | [diff] [blame] | 2246 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 2247 | if (!dev->ctrl.admin_q || blk_queue_dying(dev->ctrl.admin_q)) |
Keith Busch | 4cc0652 | 2015-06-05 10:30:08 -0600 | [diff] [blame] | 2248 | return -ENODEV; |
| 2249 | |
| 2250 | spin_lock(&dev_list_lock); |
Christoph Hellwig | 90667892 | 2015-10-02 18:49:23 +0200 | [diff] [blame] | 2251 | ret = __nvme_reset(dev); |
Keith Busch | 4cc0652 | 2015-06-05 10:30:08 -0600 | [diff] [blame] | 2252 | spin_unlock(&dev_list_lock); |
| 2253 | |
| 2254 | if (!ret) { |
| 2255 | flush_work(&dev->reset_work); |
Keith Busch | ffe7704 | 2015-06-08 10:08:15 -0600 | [diff] [blame] | 2256 | flush_work(&dev->probe_work); |
Keith Busch | 4cc0652 | 2015-06-05 10:30:08 -0600 | [diff] [blame] | 2257 | return 0; |
| 2258 | } |
| 2259 | |
| 2260 | return ret; |
| 2261 | } |
| 2262 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 2263 | static int nvme_pci_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val) |
| 2264 | { |
| 2265 | *val = readl(to_nvme_dev(ctrl)->bar + off); |
| 2266 | return 0; |
| 2267 | } |
| 2268 | |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 2269 | static int nvme_pci_reg_write32(struct nvme_ctrl *ctrl, u32 off, u32 val) |
| 2270 | { |
| 2271 | writel(val, to_nvme_dev(ctrl)->bar + off); |
| 2272 | return 0; |
| 2273 | } |
| 2274 | |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2275 | static int nvme_pci_reg_read64(struct nvme_ctrl *ctrl, u32 off, u64 *val) |
| 2276 | { |
| 2277 | *val = readq(to_nvme_dev(ctrl)->bar + off); |
| 2278 | return 0; |
| 2279 | } |
| 2280 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2281 | static bool nvme_pci_io_incapable(struct nvme_ctrl *ctrl) |
| 2282 | { |
| 2283 | struct nvme_dev *dev = to_nvme_dev(ctrl); |
| 2284 | |
| 2285 | return !dev->bar || dev->online_queues < 2; |
| 2286 | } |
| 2287 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame^] | 2288 | static int nvme_pci_reset_ctrl(struct nvme_ctrl *ctrl) |
| 2289 | { |
| 2290 | return nvme_reset(to_nvme_dev(ctrl)); |
| 2291 | } |
| 2292 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 2293 | static const struct nvme_ctrl_ops nvme_pci_ctrl_ops = { |
| 2294 | .reg_read32 = nvme_pci_reg_read32, |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 2295 | .reg_write32 = nvme_pci_reg_write32, |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2296 | .reg_read64 = nvme_pci_reg_read64, |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2297 | .io_incapable = nvme_pci_io_incapable, |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame^] | 2298 | .reset_ctrl = nvme_pci_reset_ctrl, |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 2299 | .free_ctrl = nvme_pci_free_ctrl, |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 2300 | }; |
| 2301 | |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 2302 | 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] | 2303 | { |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2304 | int node, result = -ENOMEM; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2305 | struct nvme_dev *dev; |
| 2306 | |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2307 | node = dev_to_node(&pdev->dev); |
| 2308 | if (node == NUMA_NO_NODE) |
| 2309 | set_dev_node(&pdev->dev, 0); |
| 2310 | |
| 2311 | dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2312 | if (!dev) |
| 2313 | return -ENOMEM; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2314 | dev->entry = kzalloc_node(num_possible_cpus() * sizeof(*dev->entry), |
| 2315 | GFP_KERNEL, node); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2316 | if (!dev->entry) |
| 2317 | goto free; |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2318 | dev->queues = kzalloc_node((num_possible_cpus() + 1) * sizeof(void *), |
| 2319 | GFP_KERNEL, node); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2320 | if (!dev->queues) |
| 2321 | goto free; |
| 2322 | |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 2323 | dev->dev = get_device(&pdev->dev); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2324 | pci_set_drvdata(pdev, dev); |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 2325 | |
Keith Busch | e6e96d7 | 2015-03-23 09:32:37 -0600 | [diff] [blame] | 2326 | INIT_LIST_HEAD(&dev->node); |
Keith Busch | a5768aa | 2015-06-01 14:28:14 -0600 | [diff] [blame] | 2327 | INIT_WORK(&dev->scan_work, nvme_dev_scan); |
Christoph Hellwig | 3cf519b | 2015-10-03 09:49:23 +0200 | [diff] [blame] | 2328 | INIT_WORK(&dev->probe_work, nvme_probe_work); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame^] | 2329 | INIT_WORK(&dev->reset_work, nvme_reset_work); |
| 2330 | |
| 2331 | result = nvme_setup_prp_pools(dev); |
| 2332 | if (result) |
| 2333 | goto put_pci; |
| 2334 | |
| 2335 | result = nvme_init_ctrl(&dev->ctrl, &pdev->dev, &nvme_pci_ctrl_ops, |
| 2336 | id->driver_data); |
| 2337 | if (result) |
| 2338 | goto release_pools; |
| 2339 | |
Keith Busch | 2e1d844 | 2015-02-12 15:33:00 -0700 | [diff] [blame] | 2340 | schedule_work(&dev->probe_work); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2341 | return 0; |
| 2342 | |
Keith Busch | 0877cb0 | 2013-07-15 15:02:19 -0600 | [diff] [blame] | 2343 | release_pools: |
Matthew Wilcox | 091b609 | 2011-02-10 09:56:01 -0500 | [diff] [blame] | 2344 | nvme_release_prp_pools(dev); |
Keith Busch | a96d4f5 | 2014-08-19 19:15:59 -0600 | [diff] [blame] | 2345 | put_pci: |
Christoph Hellwig | e75ec75 | 2015-05-22 11:12:39 +0200 | [diff] [blame] | 2346 | put_device(dev->dev); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2347 | free: |
| 2348 | kfree(dev->queues); |
| 2349 | kfree(dev->entry); |
| 2350 | kfree(dev); |
| 2351 | return result; |
| 2352 | } |
| 2353 | |
Keith Busch | f0d54a5 | 2014-05-02 10:40:43 -0600 | [diff] [blame] | 2354 | static void nvme_reset_notify(struct pci_dev *pdev, bool prepare) |
| 2355 | { |
Keith Busch | a673947 | 2014-06-23 16:03:21 -0600 | [diff] [blame] | 2356 | struct nvme_dev *dev = pci_get_drvdata(pdev); |
Keith Busch | f0d54a5 | 2014-05-02 10:40:43 -0600 | [diff] [blame] | 2357 | |
Keith Busch | a673947 | 2014-06-23 16:03:21 -0600 | [diff] [blame] | 2358 | if (prepare) |
| 2359 | nvme_dev_shutdown(dev); |
| 2360 | else |
Keith Busch | 0a7385a | 2015-10-02 10:37:29 -0600 | [diff] [blame] | 2361 | schedule_work(&dev->probe_work); |
Keith Busch | f0d54a5 | 2014-05-02 10:40:43 -0600 | [diff] [blame] | 2362 | } |
| 2363 | |
Keith Busch | 09ece14 | 2014-01-27 11:29:40 -0500 | [diff] [blame] | 2364 | static void nvme_shutdown(struct pci_dev *pdev) |
| 2365 | { |
| 2366 | struct nvme_dev *dev = pci_get_drvdata(pdev); |
| 2367 | nvme_dev_shutdown(dev); |
| 2368 | } |
| 2369 | |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 2370 | static void nvme_remove(struct pci_dev *pdev) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2371 | { |
| 2372 | struct nvme_dev *dev = pci_get_drvdata(pdev); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2373 | |
| 2374 | spin_lock(&dev_list_lock); |
| 2375 | list_del_init(&dev->node); |
| 2376 | spin_unlock(&dev_list_lock); |
| 2377 | |
| 2378 | pci_set_drvdata(pdev, NULL); |
Keith Busch | 2e1d844 | 2015-02-12 15:33:00 -0700 | [diff] [blame] | 2379 | flush_work(&dev->probe_work); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2380 | flush_work(&dev->reset_work); |
Keith Busch | a5768aa | 2015-06-01 14:28:14 -0600 | [diff] [blame] | 2381 | flush_work(&dev->scan_work); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2382 | nvme_remove_namespaces(&dev->ctrl); |
Keith Busch | 3399a3f | 2015-06-18 13:36:40 -0600 | [diff] [blame] | 2383 | nvme_dev_shutdown(dev); |
Matias Bjørling | a4aea56 | 2014-11-04 08:20:14 -0700 | [diff] [blame] | 2384 | nvme_dev_remove_admin(dev); |
| 2385 | nvme_free_queues(dev, 0); |
Jon Derrick | 8ffaadf | 2015-07-20 10:14:09 -0600 | [diff] [blame] | 2386 | nvme_release_cmb(dev); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2387 | nvme_release_prp_pools(dev); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 2388 | nvme_put_ctrl(&dev->ctrl); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2389 | } |
| 2390 | |
| 2391 | /* These functions are yet to be implemented */ |
| 2392 | #define nvme_error_detected NULL |
| 2393 | #define nvme_dump_registers NULL |
| 2394 | #define nvme_link_reset NULL |
| 2395 | #define nvme_slot_reset NULL |
| 2396 | #define nvme_error_resume NULL |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 2397 | |
Jingoo Han | 671a601 | 2014-02-13 11:19:14 +0900 | [diff] [blame] | 2398 | #ifdef CONFIG_PM_SLEEP |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 2399 | static int nvme_suspend(struct device *dev) |
| 2400 | { |
| 2401 | struct pci_dev *pdev = to_pci_dev(dev); |
| 2402 | struct nvme_dev *ndev = pci_get_drvdata(pdev); |
| 2403 | |
| 2404 | nvme_dev_shutdown(ndev); |
| 2405 | return 0; |
| 2406 | } |
| 2407 | |
| 2408 | static int nvme_resume(struct device *dev) |
| 2409 | { |
| 2410 | struct pci_dev *pdev = to_pci_dev(dev); |
| 2411 | struct nvme_dev *ndev = pci_get_drvdata(pdev); |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 2412 | |
Keith Busch | 0a7385a | 2015-10-02 10:37:29 -0600 | [diff] [blame] | 2413 | schedule_work(&ndev->probe_work); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2414 | return 0; |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 2415 | } |
Jingoo Han | 671a601 | 2014-02-13 11:19:14 +0900 | [diff] [blame] | 2416 | #endif |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 2417 | |
| 2418 | 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] | 2419 | |
Stephen Hemminger | 1d35203 | 2012-09-07 09:33:17 -0700 | [diff] [blame] | 2420 | static const struct pci_error_handlers nvme_err_handler = { |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2421 | .error_detected = nvme_error_detected, |
| 2422 | .mmio_enabled = nvme_dump_registers, |
| 2423 | .link_reset = nvme_link_reset, |
| 2424 | .slot_reset = nvme_slot_reset, |
| 2425 | .resume = nvme_error_resume, |
Keith Busch | f0d54a5 | 2014-05-02 10:40:43 -0600 | [diff] [blame] | 2426 | .reset_notify = nvme_reset_notify, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2427 | }; |
| 2428 | |
| 2429 | /* Move to pci_ids.h later */ |
| 2430 | #define PCI_CLASS_STORAGE_EXPRESS 0x010802 |
| 2431 | |
Matthew Wilcox | 6eb0d69 | 2014-03-24 10:11:22 -0400 | [diff] [blame] | 2432 | static const struct pci_device_id nvme_id_table[] = { |
Christoph Hellwig | 106198e | 2015-11-26 10:07:41 +0100 | [diff] [blame] | 2433 | { PCI_VDEVICE(INTEL, 0x0953), |
| 2434 | .driver_data = NVME_QUIRK_STRIPE_SIZE, }, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2435 | { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) }, |
Stephan Günther | c74dc78 | 2015-11-04 00:49:45 +0100 | [diff] [blame] | 2436 | { PCI_DEVICE(PCI_VENDOR_ID_APPLE, 0x2001) }, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2437 | { 0, } |
| 2438 | }; |
| 2439 | MODULE_DEVICE_TABLE(pci, nvme_id_table); |
| 2440 | |
| 2441 | static struct pci_driver nvme_driver = { |
| 2442 | .name = "nvme", |
| 2443 | .id_table = nvme_id_table, |
| 2444 | .probe = nvme_probe, |
Greg Kroah-Hartman | 8d85fce | 2012-12-21 15:13:49 -0800 | [diff] [blame] | 2445 | .remove = nvme_remove, |
Keith Busch | 09ece14 | 2014-01-27 11:29:40 -0500 | [diff] [blame] | 2446 | .shutdown = nvme_shutdown, |
Keith Busch | cd63894 | 2013-07-15 15:02:23 -0600 | [diff] [blame] | 2447 | .driver = { |
| 2448 | .pm = &nvme_dev_pm_ops, |
| 2449 | }, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2450 | .err_handler = &nvme_err_handler, |
| 2451 | }; |
| 2452 | |
| 2453 | static int __init nvme_init(void) |
| 2454 | { |
Matthew Wilcox | 0ac1314 | 2012-07-31 13:31:15 -0400 | [diff] [blame] | 2455 | int result; |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2456 | |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2457 | init_waitqueue_head(&nvme_kthread_wait); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2458 | |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2459 | nvme_workq = create_singlethread_workqueue("nvme"); |
| 2460 | if (!nvme_workq) |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2461 | return -ENOMEM; |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2462 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2463 | result = nvme_core_init(); |
Keith Busch | 5c42ea1 | 2012-07-25 16:05:18 -0600 | [diff] [blame] | 2464 | if (result < 0) |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2465 | goto kill_workq; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2466 | |
Keith Busch | f3db22f | 2014-06-11 11:51:35 -0600 | [diff] [blame] | 2467 | result = pci_register_driver(&nvme_driver); |
| 2468 | if (result) |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame^] | 2469 | goto core_exit; |
Matthew Wilcox | 1fa6aea | 2011-03-02 18:37:18 -0500 | [diff] [blame] | 2470 | return 0; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2471 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame^] | 2472 | core_exit: |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2473 | nvme_core_exit(); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2474 | kill_workq: |
| 2475 | destroy_workqueue(nvme_workq); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2476 | return result; |
| 2477 | } |
| 2478 | |
| 2479 | static void __exit nvme_exit(void) |
| 2480 | { |
| 2481 | pci_unregister_driver(&nvme_driver); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2482 | nvme_core_exit(); |
Keith Busch | 9a6b945 | 2013-12-10 13:10:36 -0700 | [diff] [blame] | 2483 | destroy_workqueue(nvme_workq); |
Dan McLeran | b9afca3 | 2014-04-07 17:10:11 -0600 | [diff] [blame] | 2484 | BUG_ON(nvme_thread && !IS_ERR(nvme_thread)); |
Matthew Wilcox | 21bd78b | 2014-05-09 22:42:26 -0400 | [diff] [blame] | 2485 | _nvme_check_size(); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2486 | } |
| 2487 | |
| 2488 | MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>"); |
| 2489 | MODULE_LICENSE("GPL"); |
Keith Busch | c78b4713 | 2014-11-21 15:16:32 -0700 | [diff] [blame] | 2490 | MODULE_VERSION("1.0"); |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 2491 | module_init(nvme_init); |
| 2492 | module_exit(nvme_exit); |