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