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