Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 1 | /* |
| 2 | * NVM Express device driver |
| 3 | * Copyright (c) 2011-2014, Intel Corporation. |
| 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. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/blkdev.h> |
| 16 | #include <linux/blk-mq.h> |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 17 | #include <linux/delay.h> |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 18 | #include <linux/errno.h> |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 19 | #include <linux/hdreg.h> |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 20 | #include <linux/kernel.h> |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 21 | #include <linux/module.h> |
| 22 | #include <linux/list_sort.h> |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 23 | #include <linux/slab.h> |
| 24 | #include <linux/types.h> |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 25 | #include <linux/pr.h> |
| 26 | #include <linux/ptrace.h> |
| 27 | #include <linux/nvme_ioctl.h> |
| 28 | #include <linux/t10-pi.h> |
| 29 | #include <scsi/sg.h> |
| 30 | #include <asm/unaligned.h> |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 31 | |
| 32 | #include "nvme.h" |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 33 | #include "fabrics.h" |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 34 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 35 | #define NVME_MINORS (1U << MINORBITS) |
| 36 | |
Ming Lin | ba0ba7d | 2016-02-10 10:03:30 -0800 | [diff] [blame] | 37 | unsigned char admin_timeout = 60; |
| 38 | module_param(admin_timeout, byte, 0644); |
| 39 | MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands"); |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 40 | EXPORT_SYMBOL_GPL(admin_timeout); |
Ming Lin | ba0ba7d | 2016-02-10 10:03:30 -0800 | [diff] [blame] | 41 | |
| 42 | unsigned char nvme_io_timeout = 30; |
| 43 | module_param_named(io_timeout, nvme_io_timeout, byte, 0644); |
| 44 | MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O"); |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 45 | EXPORT_SYMBOL_GPL(nvme_io_timeout); |
Ming Lin | ba0ba7d | 2016-02-10 10:03:30 -0800 | [diff] [blame] | 46 | |
| 47 | unsigned char shutdown_timeout = 5; |
| 48 | module_param(shutdown_timeout, byte, 0644); |
| 49 | MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown"); |
| 50 | |
Keith Busch | f80ec96 | 2016-07-12 16:20:31 -0700 | [diff] [blame] | 51 | unsigned int nvme_max_retries = 5; |
| 52 | module_param_named(max_retries, nvme_max_retries, uint, 0644); |
| 53 | MODULE_PARM_DESC(max_retries, "max number of retries a command may have"); |
| 54 | EXPORT_SYMBOL_GPL(nvme_max_retries); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 55 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 56 | static int nvme_char_major; |
| 57 | module_param(nvme_char_major, int, 0); |
| 58 | |
| 59 | static LIST_HEAD(nvme_ctrl_list); |
Ming Lin | 9f2482b | 2016-02-10 10:03:31 -0800 | [diff] [blame] | 60 | static DEFINE_SPINLOCK(dev_list_lock); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 61 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 62 | static struct class *nvme_class; |
| 63 | |
Ming Lin | c55a2fd | 2016-05-18 14:05:02 -0700 | [diff] [blame] | 64 | void nvme_cancel_request(struct request *req, void *data, bool reserved) |
| 65 | { |
| 66 | int status; |
| 67 | |
| 68 | if (!blk_mq_request_started(req)) |
| 69 | return; |
| 70 | |
| 71 | dev_dbg_ratelimited(((struct nvme_ctrl *) data)->device, |
| 72 | "Cancelling I/O %d", req->tag); |
| 73 | |
| 74 | status = NVME_SC_ABORT_REQ; |
| 75 | if (blk_queue_dying(req->q)) |
| 76 | status |= NVME_SC_DNR; |
| 77 | blk_mq_complete_request(req, status); |
| 78 | } |
| 79 | EXPORT_SYMBOL_GPL(nvme_cancel_request); |
| 80 | |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 81 | bool nvme_change_ctrl_state(struct nvme_ctrl *ctrl, |
| 82 | enum nvme_ctrl_state new_state) |
| 83 | { |
Gabriel Krisman Bertazi | f6b6a28 | 2016-07-29 16:15:18 -0300 | [diff] [blame] | 84 | enum nvme_ctrl_state old_state; |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 85 | bool changed = false; |
| 86 | |
| 87 | spin_lock_irq(&ctrl->lock); |
Gabriel Krisman Bertazi | f6b6a28 | 2016-07-29 16:15:18 -0300 | [diff] [blame] | 88 | |
| 89 | old_state = ctrl->state; |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 90 | switch (new_state) { |
| 91 | case NVME_CTRL_LIVE: |
| 92 | switch (old_state) { |
Christoph Hellwig | 7d2e800 | 2016-06-13 16:45:22 +0200 | [diff] [blame] | 93 | case NVME_CTRL_NEW: |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 94 | case NVME_CTRL_RESETTING: |
Christoph Hellwig | def61ec | 2016-07-06 21:55:49 +0900 | [diff] [blame] | 95 | case NVME_CTRL_RECONNECTING: |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 96 | changed = true; |
| 97 | /* FALLTHRU */ |
| 98 | default: |
| 99 | break; |
| 100 | } |
| 101 | break; |
| 102 | case NVME_CTRL_RESETTING: |
| 103 | switch (old_state) { |
| 104 | case NVME_CTRL_NEW: |
| 105 | case NVME_CTRL_LIVE: |
Christoph Hellwig | def61ec | 2016-07-06 21:55:49 +0900 | [diff] [blame] | 106 | case NVME_CTRL_RECONNECTING: |
| 107 | changed = true; |
| 108 | /* FALLTHRU */ |
| 109 | default: |
| 110 | break; |
| 111 | } |
| 112 | break; |
| 113 | case NVME_CTRL_RECONNECTING: |
| 114 | switch (old_state) { |
| 115 | case NVME_CTRL_LIVE: |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 116 | changed = true; |
| 117 | /* FALLTHRU */ |
| 118 | default: |
| 119 | break; |
| 120 | } |
| 121 | break; |
| 122 | case NVME_CTRL_DELETING: |
| 123 | switch (old_state) { |
| 124 | case NVME_CTRL_LIVE: |
| 125 | case NVME_CTRL_RESETTING: |
Christoph Hellwig | def61ec | 2016-07-06 21:55:49 +0900 | [diff] [blame] | 126 | case NVME_CTRL_RECONNECTING: |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 127 | changed = true; |
| 128 | /* FALLTHRU */ |
| 129 | default: |
| 130 | break; |
| 131 | } |
| 132 | break; |
Keith Busch | 0ff9d4e | 2016-05-12 08:37:14 -0600 | [diff] [blame] | 133 | case NVME_CTRL_DEAD: |
| 134 | switch (old_state) { |
| 135 | case NVME_CTRL_DELETING: |
| 136 | changed = true; |
| 137 | /* FALLTHRU */ |
| 138 | default: |
| 139 | break; |
| 140 | } |
| 141 | break; |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 142 | default: |
| 143 | break; |
| 144 | } |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 145 | |
| 146 | if (changed) |
| 147 | ctrl->state = new_state; |
| 148 | |
Gabriel Krisman Bertazi | f6b6a28 | 2016-07-29 16:15:18 -0300 | [diff] [blame] | 149 | spin_unlock_irq(&ctrl->lock); |
| 150 | |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 151 | return changed; |
| 152 | } |
| 153 | EXPORT_SYMBOL_GPL(nvme_change_ctrl_state); |
| 154 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 155 | static void nvme_free_ns(struct kref *kref) |
| 156 | { |
| 157 | struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref); |
| 158 | |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 159 | if (ns->ndev) |
| 160 | nvme_nvm_unregister(ns); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 161 | |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 162 | if (ns->disk) { |
| 163 | spin_lock(&dev_list_lock); |
| 164 | ns->disk->private_data = NULL; |
| 165 | spin_unlock(&dev_list_lock); |
| 166 | } |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 167 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 168 | put_disk(ns->disk); |
Keith Busch | 075790e | 2016-02-24 09:15:53 -0700 | [diff] [blame] | 169 | ida_simple_remove(&ns->ctrl->ns_ida, ns->instance); |
| 170 | nvme_put_ctrl(ns->ctrl); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 171 | kfree(ns); |
| 172 | } |
| 173 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 174 | static void nvme_put_ns(struct nvme_ns *ns) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 175 | { |
| 176 | kref_put(&ns->kref, nvme_free_ns); |
| 177 | } |
| 178 | |
| 179 | static struct nvme_ns *nvme_get_ns_from_disk(struct gendisk *disk) |
| 180 | { |
| 181 | struct nvme_ns *ns; |
| 182 | |
| 183 | spin_lock(&dev_list_lock); |
| 184 | ns = disk->private_data; |
Sagi Grimberg | e439bb1 | 2016-02-10 10:03:29 -0800 | [diff] [blame] | 185 | if (ns) { |
| 186 | if (!kref_get_unless_zero(&ns->kref)) |
| 187 | goto fail; |
| 188 | if (!try_module_get(ns->ctrl->ops->module)) |
| 189 | goto fail_put_ns; |
| 190 | } |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 191 | spin_unlock(&dev_list_lock); |
| 192 | |
| 193 | return ns; |
Sagi Grimberg | e439bb1 | 2016-02-10 10:03:29 -0800 | [diff] [blame] | 194 | |
| 195 | fail_put_ns: |
| 196 | kref_put(&ns->kref, nvme_free_ns); |
| 197 | fail: |
| 198 | spin_unlock(&dev_list_lock); |
| 199 | return NULL; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 200 | } |
| 201 | |
Christoph Hellwig | 7688faa | 2015-11-28 15:41:58 +0100 | [diff] [blame] | 202 | void nvme_requeue_req(struct request *req) |
| 203 | { |
Bart Van Assche | a6eaa88 | 2016-10-28 17:23:40 -0700 | [diff] [blame] | 204 | blk_mq_requeue_request(req, !blk_mq_queue_stopped(req->q)); |
Christoph Hellwig | 7688faa | 2015-11-28 15:41:58 +0100 | [diff] [blame] | 205 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 206 | EXPORT_SYMBOL_GPL(nvme_requeue_req); |
Christoph Hellwig | 7688faa | 2015-11-28 15:41:58 +0100 | [diff] [blame] | 207 | |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 208 | struct request *nvme_alloc_request(struct request_queue *q, |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 209 | struct nvme_command *cmd, unsigned int flags, int qid) |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 210 | { |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 211 | unsigned op = nvme_is_write(cmd) ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 212 | struct request *req; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 213 | |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 214 | if (qid == NVME_QID_ANY) { |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 215 | req = blk_mq_alloc_request(q, op, flags); |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 216 | } else { |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 217 | req = blk_mq_alloc_request_hctx(q, op, flags, |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 218 | qid ? qid - 1 : 0); |
| 219 | } |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 220 | if (IS_ERR(req)) |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 221 | return req; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 222 | |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 223 | req->cmd_flags |= REQ_FAILFAST_DRIVER; |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 224 | nvme_req(req)->cmd = cmd; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 225 | |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 226 | return req; |
| 227 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 228 | EXPORT_SYMBOL_GPL(nvme_alloc_request); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 229 | |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 230 | static inline void nvme_setup_flush(struct nvme_ns *ns, |
| 231 | struct nvme_command *cmnd) |
| 232 | { |
| 233 | memset(cmnd, 0, sizeof(*cmnd)); |
| 234 | cmnd->common.opcode = nvme_cmd_flush; |
| 235 | cmnd->common.nsid = cpu_to_le32(ns->ns_id); |
| 236 | } |
| 237 | |
| 238 | static inline int nvme_setup_discard(struct nvme_ns *ns, struct request *req, |
| 239 | struct nvme_command *cmnd) |
| 240 | { |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 241 | unsigned short segments = blk_rq_nr_discard_segments(req), n = 0; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 242 | struct nvme_dsm_range *range; |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 243 | struct bio *bio; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 244 | |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 245 | range = kmalloc_array(segments, sizeof(*range), GFP_ATOMIC); |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 246 | if (!range) |
| 247 | return BLK_MQ_RQ_QUEUE_BUSY; |
| 248 | |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 249 | __rq_for_each_bio(bio, req) { |
| 250 | u64 slba = nvme_block_nr(ns, bio->bi_iter.bi_sector); |
| 251 | u32 nlb = bio->bi_iter.bi_size >> ns->lba_shift; |
| 252 | |
| 253 | range[n].cattr = cpu_to_le32(0); |
| 254 | range[n].nlb = cpu_to_le32(nlb); |
| 255 | range[n].slba = cpu_to_le64(slba); |
| 256 | n++; |
| 257 | } |
| 258 | |
| 259 | if (WARN_ON_ONCE(n != segments)) { |
| 260 | kfree(range); |
| 261 | return BLK_MQ_RQ_QUEUE_ERROR; |
| 262 | } |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 263 | |
| 264 | memset(cmnd, 0, sizeof(*cmnd)); |
| 265 | cmnd->dsm.opcode = nvme_cmd_dsm; |
| 266 | cmnd->dsm.nsid = cpu_to_le32(ns->ns_id); |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 267 | cmnd->dsm.nr = segments - 1; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 268 | cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD); |
| 269 | |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 270 | req->special_vec.bv_page = virt_to_page(range); |
| 271 | req->special_vec.bv_offset = offset_in_page(range); |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 272 | req->special_vec.bv_len = sizeof(*range) * segments; |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 273 | req->rq_flags |= RQF_SPECIAL_PAYLOAD; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 274 | |
Omar Sandoval | bac0000 | 2016-11-15 11:11:58 -0800 | [diff] [blame] | 275 | return BLK_MQ_RQ_QUEUE_OK; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 276 | } |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 277 | |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 278 | static inline void nvme_setup_rw(struct nvme_ns *ns, struct request *req, |
| 279 | struct nvme_command *cmnd) |
| 280 | { |
| 281 | u16 control = 0; |
| 282 | u32 dsmgmt = 0; |
| 283 | |
| 284 | if (req->cmd_flags & REQ_FUA) |
| 285 | control |= NVME_RW_FUA; |
| 286 | if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD)) |
| 287 | control |= NVME_RW_LR; |
| 288 | |
| 289 | if (req->cmd_flags & REQ_RAHEAD) |
| 290 | dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH; |
| 291 | |
| 292 | memset(cmnd, 0, sizeof(*cmnd)); |
| 293 | cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read); |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 294 | cmnd->rw.nsid = cpu_to_le32(ns->ns_id); |
| 295 | cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req))); |
| 296 | cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1); |
| 297 | |
| 298 | if (ns->ms) { |
| 299 | switch (ns->pi_type) { |
| 300 | case NVME_NS_DPS_PI_TYPE3: |
| 301 | control |= NVME_RW_PRINFO_PRCHK_GUARD; |
| 302 | break; |
| 303 | case NVME_NS_DPS_PI_TYPE1: |
| 304 | case NVME_NS_DPS_PI_TYPE2: |
| 305 | control |= NVME_RW_PRINFO_PRCHK_GUARD | |
| 306 | NVME_RW_PRINFO_PRCHK_REF; |
| 307 | cmnd->rw.reftag = cpu_to_le32( |
| 308 | nvme_block_nr(ns, blk_rq_pos(req))); |
| 309 | break; |
| 310 | } |
| 311 | if (!blk_integrity_rq(req)) |
| 312 | control |= NVME_RW_PRINFO_PRACT; |
| 313 | } |
| 314 | |
| 315 | cmnd->rw.control = cpu_to_le16(control); |
| 316 | cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt); |
| 317 | } |
| 318 | |
| 319 | int nvme_setup_cmd(struct nvme_ns *ns, struct request *req, |
| 320 | struct nvme_command *cmd) |
| 321 | { |
Omar Sandoval | bac0000 | 2016-11-15 11:11:58 -0800 | [diff] [blame] | 322 | int ret = BLK_MQ_RQ_QUEUE_OK; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 323 | |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 324 | switch (req_op(req)) { |
| 325 | case REQ_OP_DRV_IN: |
| 326 | case REQ_OP_DRV_OUT: |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 327 | memcpy(cmd, nvme_req(req)->cmd, sizeof(*cmd)); |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 328 | break; |
| 329 | case REQ_OP_FLUSH: |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 330 | nvme_setup_flush(ns, cmd); |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 331 | break; |
| 332 | case REQ_OP_DISCARD: |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 333 | ret = nvme_setup_discard(ns, req, cmd); |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 334 | break; |
| 335 | case REQ_OP_READ: |
| 336 | case REQ_OP_WRITE: |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 337 | nvme_setup_rw(ns, req, cmd); |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 338 | break; |
| 339 | default: |
| 340 | WARN_ON_ONCE(1); |
| 341 | return BLK_MQ_RQ_QUEUE_ERROR; |
| 342 | } |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 343 | |
James Smart | 721b391 | 2016-10-21 23:33:34 +0300 | [diff] [blame] | 344 | cmd->common.command_id = req->tag; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 345 | return ret; |
| 346 | } |
| 347 | EXPORT_SYMBOL_GPL(nvme_setup_cmd); |
| 348 | |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 349 | /* |
| 350 | * Returns 0 on success. If the result is negative, it's a Linux error code; |
| 351 | * if the result is positive, it's an NVM Express status code |
| 352 | */ |
| 353 | int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd, |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 354 | union nvme_result *result, void *buffer, unsigned bufflen, |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 355 | unsigned timeout, int qid, int at_head, int flags) |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 356 | { |
| 357 | struct request *req; |
| 358 | int ret; |
| 359 | |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 360 | req = nvme_alloc_request(q, cmd, flags, qid); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 361 | if (IS_ERR(req)) |
| 362 | return PTR_ERR(req); |
| 363 | |
| 364 | req->timeout = timeout ? timeout : ADMIN_TIMEOUT; |
| 365 | |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 366 | if (buffer && bufflen) { |
| 367 | ret = blk_rq_map_kern(q, req, buffer, bufflen, GFP_KERNEL); |
| 368 | if (ret) |
| 369 | goto out; |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 370 | } |
| 371 | |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 372 | blk_execute_rq(req->q, NULL, req, at_head); |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 373 | if (result) |
| 374 | *result = nvme_req(req)->result; |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 375 | ret = req->errors; |
| 376 | out: |
| 377 | blk_mq_free_request(req); |
| 378 | return ret; |
| 379 | } |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 380 | EXPORT_SYMBOL_GPL(__nvme_submit_sync_cmd); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 381 | |
| 382 | int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd, |
| 383 | void *buffer, unsigned bufflen) |
| 384 | { |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 385 | return __nvme_submit_sync_cmd(q, cmd, NULL, buffer, bufflen, 0, |
| 386 | NVME_QID_ANY, 0, 0); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 387 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 388 | EXPORT_SYMBOL_GPL(nvme_submit_sync_cmd); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 389 | |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 390 | int __nvme_submit_user_cmd(struct request_queue *q, struct nvme_command *cmd, |
| 391 | void __user *ubuffer, unsigned bufflen, |
| 392 | void __user *meta_buffer, unsigned meta_len, u32 meta_seed, |
| 393 | u32 *result, unsigned timeout) |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 394 | { |
Christoph Hellwig | 7a5abb4 | 2016-06-06 23:20:49 +0200 | [diff] [blame] | 395 | bool write = nvme_is_write(cmd); |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 396 | struct nvme_ns *ns = q->queuedata; |
| 397 | struct gendisk *disk = ns ? ns->disk : NULL; |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 398 | struct request *req; |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 399 | struct bio *bio = NULL; |
| 400 | void *meta = NULL; |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 401 | int ret; |
| 402 | |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 403 | req = nvme_alloc_request(q, cmd, 0, NVME_QID_ANY); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 404 | if (IS_ERR(req)) |
| 405 | return PTR_ERR(req); |
| 406 | |
| 407 | req->timeout = timeout ? timeout : ADMIN_TIMEOUT; |
| 408 | |
| 409 | if (ubuffer && bufflen) { |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 410 | ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen, |
| 411 | GFP_KERNEL); |
| 412 | if (ret) |
| 413 | goto out; |
| 414 | bio = req->bio; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 415 | |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 416 | if (!disk) |
| 417 | goto submit; |
| 418 | bio->bi_bdev = bdget_disk(disk, 0); |
| 419 | if (!bio->bi_bdev) { |
| 420 | ret = -ENODEV; |
| 421 | goto out_unmap; |
| 422 | } |
| 423 | |
Keith Busch | e9fc63d | 2016-02-24 09:15:58 -0700 | [diff] [blame] | 424 | if (meta_buffer && meta_len) { |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 425 | struct bio_integrity_payload *bip; |
| 426 | |
| 427 | meta = kmalloc(meta_len, GFP_KERNEL); |
| 428 | if (!meta) { |
| 429 | ret = -ENOMEM; |
| 430 | goto out_unmap; |
| 431 | } |
| 432 | |
| 433 | if (write) { |
| 434 | if (copy_from_user(meta, meta_buffer, |
| 435 | meta_len)) { |
| 436 | ret = -EFAULT; |
| 437 | goto out_free_meta; |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | bip = bio_integrity_alloc(bio, GFP_KERNEL, 1); |
Keith Busch | 06c1e39 | 2015-12-03 09:32:21 -0700 | [diff] [blame] | 442 | if (IS_ERR(bip)) { |
| 443 | ret = PTR_ERR(bip); |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 444 | goto out_free_meta; |
| 445 | } |
| 446 | |
| 447 | bip->bip_iter.bi_size = meta_len; |
| 448 | bip->bip_iter.bi_sector = meta_seed; |
| 449 | |
| 450 | ret = bio_integrity_add_page(bio, virt_to_page(meta), |
| 451 | meta_len, offset_in_page(meta)); |
| 452 | if (ret != meta_len) { |
| 453 | ret = -ENOMEM; |
| 454 | goto out_free_meta; |
| 455 | } |
| 456 | } |
| 457 | } |
| 458 | submit: |
| 459 | blk_execute_rq(req->q, disk, req, 0); |
| 460 | ret = req->errors; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 461 | if (result) |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 462 | *result = le32_to_cpu(nvme_req(req)->result.u32); |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 463 | if (meta && !ret && !write) { |
| 464 | if (copy_to_user(meta_buffer, meta, meta_len)) |
| 465 | ret = -EFAULT; |
| 466 | } |
| 467 | out_free_meta: |
| 468 | kfree(meta); |
| 469 | out_unmap: |
| 470 | if (bio) { |
| 471 | if (disk && bio->bi_bdev) |
| 472 | bdput(bio->bi_bdev); |
| 473 | blk_rq_unmap_user(bio); |
| 474 | } |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 475 | out: |
| 476 | blk_mq_free_request(req); |
| 477 | return ret; |
| 478 | } |
| 479 | |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 480 | int nvme_submit_user_cmd(struct request_queue *q, struct nvme_command *cmd, |
| 481 | void __user *ubuffer, unsigned bufflen, u32 *result, |
| 482 | unsigned timeout) |
| 483 | { |
| 484 | return __nvme_submit_user_cmd(q, cmd, ubuffer, bufflen, NULL, 0, 0, |
| 485 | result, timeout); |
| 486 | } |
| 487 | |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 488 | static void nvme_keep_alive_end_io(struct request *rq, int error) |
| 489 | { |
| 490 | struct nvme_ctrl *ctrl = rq->end_io_data; |
| 491 | |
| 492 | blk_mq_free_request(rq); |
| 493 | |
| 494 | if (error) { |
| 495 | dev_err(ctrl->device, |
| 496 | "failed nvme_keep_alive_end_io error=%d\n", error); |
| 497 | return; |
| 498 | } |
| 499 | |
| 500 | schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ); |
| 501 | } |
| 502 | |
| 503 | static int nvme_keep_alive(struct nvme_ctrl *ctrl) |
| 504 | { |
| 505 | struct nvme_command c; |
| 506 | struct request *rq; |
| 507 | |
| 508 | memset(&c, 0, sizeof(c)); |
| 509 | c.common.opcode = nvme_admin_keep_alive; |
| 510 | |
| 511 | rq = nvme_alloc_request(ctrl->admin_q, &c, BLK_MQ_REQ_RESERVED, |
| 512 | NVME_QID_ANY); |
| 513 | if (IS_ERR(rq)) |
| 514 | return PTR_ERR(rq); |
| 515 | |
| 516 | rq->timeout = ctrl->kato * HZ; |
| 517 | rq->end_io_data = ctrl; |
| 518 | |
| 519 | blk_execute_rq_nowait(rq->q, NULL, rq, 0, nvme_keep_alive_end_io); |
| 520 | |
| 521 | return 0; |
| 522 | } |
| 523 | |
| 524 | static void nvme_keep_alive_work(struct work_struct *work) |
| 525 | { |
| 526 | struct nvme_ctrl *ctrl = container_of(to_delayed_work(work), |
| 527 | struct nvme_ctrl, ka_work); |
| 528 | |
| 529 | if (nvme_keep_alive(ctrl)) { |
| 530 | /* allocation failure, reset the controller */ |
| 531 | dev_err(ctrl->device, "keep-alive failed\n"); |
| 532 | ctrl->ops->reset_ctrl(ctrl); |
| 533 | return; |
| 534 | } |
| 535 | } |
| 536 | |
| 537 | void nvme_start_keep_alive(struct nvme_ctrl *ctrl) |
| 538 | { |
| 539 | if (unlikely(ctrl->kato == 0)) |
| 540 | return; |
| 541 | |
| 542 | INIT_DELAYED_WORK(&ctrl->ka_work, nvme_keep_alive_work); |
| 543 | schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ); |
| 544 | } |
| 545 | EXPORT_SYMBOL_GPL(nvme_start_keep_alive); |
| 546 | |
| 547 | void nvme_stop_keep_alive(struct nvme_ctrl *ctrl) |
| 548 | { |
| 549 | if (unlikely(ctrl->kato == 0)) |
| 550 | return; |
| 551 | |
| 552 | cancel_delayed_work_sync(&ctrl->ka_work); |
| 553 | } |
| 554 | EXPORT_SYMBOL_GPL(nvme_stop_keep_alive); |
| 555 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 556 | int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id) |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 557 | { |
| 558 | struct nvme_command c = { }; |
| 559 | int error; |
| 560 | |
| 561 | /* gcc-4.4.4 (at least) has issues with initializers and anon unions */ |
| 562 | c.identify.opcode = nvme_admin_identify; |
Parav Pandit | 986994a | 2017-01-26 17:17:28 +0200 | [diff] [blame] | 563 | c.identify.cns = NVME_ID_CNS_CTRL; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 564 | |
| 565 | *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL); |
| 566 | if (!*id) |
| 567 | return -ENOMEM; |
| 568 | |
| 569 | error = nvme_submit_sync_cmd(dev->admin_q, &c, *id, |
| 570 | sizeof(struct nvme_id_ctrl)); |
| 571 | if (error) |
| 572 | kfree(*id); |
| 573 | return error; |
| 574 | } |
| 575 | |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 576 | static int nvme_identify_ns_list(struct nvme_ctrl *dev, unsigned nsid, __le32 *ns_list) |
| 577 | { |
| 578 | struct nvme_command c = { }; |
| 579 | |
| 580 | c.identify.opcode = nvme_admin_identify; |
Parav Pandit | 986994a | 2017-01-26 17:17:28 +0200 | [diff] [blame] | 581 | c.identify.cns = NVME_ID_CNS_NS_ACTIVE_LIST; |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 582 | c.identify.nsid = cpu_to_le32(nsid); |
| 583 | return nvme_submit_sync_cmd(dev->admin_q, &c, ns_list, 0x1000); |
| 584 | } |
| 585 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 586 | int nvme_identify_ns(struct nvme_ctrl *dev, unsigned nsid, |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 587 | struct nvme_id_ns **id) |
| 588 | { |
| 589 | struct nvme_command c = { }; |
| 590 | int error; |
| 591 | |
| 592 | /* gcc-4.4.4 (at least) has issues with initializers and anon unions */ |
Max Gurtovoy | 778f067 | 2017-01-26 17:17:27 +0200 | [diff] [blame] | 593 | c.identify.opcode = nvme_admin_identify; |
| 594 | c.identify.nsid = cpu_to_le32(nsid); |
Parav Pandit | 986994a | 2017-01-26 17:17:28 +0200 | [diff] [blame] | 595 | c.identify.cns = NVME_ID_CNS_NS; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 596 | |
| 597 | *id = kmalloc(sizeof(struct nvme_id_ns), GFP_KERNEL); |
| 598 | if (!*id) |
| 599 | return -ENOMEM; |
| 600 | |
| 601 | error = nvme_submit_sync_cmd(dev->admin_q, &c, *id, |
| 602 | sizeof(struct nvme_id_ns)); |
| 603 | if (error) |
| 604 | kfree(*id); |
| 605 | return error; |
| 606 | } |
| 607 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 608 | int nvme_get_features(struct nvme_ctrl *dev, unsigned fid, unsigned nsid, |
Andy Lutomirski | 1a6fe74 | 2016-09-16 11:16:10 -0700 | [diff] [blame] | 609 | void *buffer, size_t buflen, u32 *result) |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 610 | { |
| 611 | struct nvme_command c; |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 612 | union nvme_result res; |
Christoph Hellwig | 1cb3cce | 2016-02-29 15:59:47 +0100 | [diff] [blame] | 613 | int ret; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 614 | |
| 615 | memset(&c, 0, sizeof(c)); |
| 616 | c.features.opcode = nvme_admin_get_features; |
| 617 | c.features.nsid = cpu_to_le32(nsid); |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 618 | c.features.fid = cpu_to_le32(fid); |
| 619 | |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 620 | ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res, buffer, buflen, 0, |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 621 | NVME_QID_ANY, 0, 0); |
Andy Lutomirski | 9b47f77a | 2016-08-24 03:52:12 -0700 | [diff] [blame] | 622 | if (ret >= 0 && result) |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 623 | *result = le32_to_cpu(res.u32); |
Christoph Hellwig | 1cb3cce | 2016-02-29 15:59:47 +0100 | [diff] [blame] | 624 | return ret; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 625 | } |
| 626 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 627 | int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11, |
Andy Lutomirski | 1a6fe74 | 2016-09-16 11:16:10 -0700 | [diff] [blame] | 628 | void *buffer, size_t buflen, u32 *result) |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 629 | { |
| 630 | struct nvme_command c; |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 631 | union nvme_result res; |
Christoph Hellwig | 1cb3cce | 2016-02-29 15:59:47 +0100 | [diff] [blame] | 632 | int ret; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 633 | |
| 634 | memset(&c, 0, sizeof(c)); |
| 635 | c.features.opcode = nvme_admin_set_features; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 636 | c.features.fid = cpu_to_le32(fid); |
| 637 | c.features.dword11 = cpu_to_le32(dword11); |
| 638 | |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 639 | ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res, |
Andy Lutomirski | 1a6fe74 | 2016-09-16 11:16:10 -0700 | [diff] [blame] | 640 | buffer, buflen, 0, NVME_QID_ANY, 0, 0); |
Andy Lutomirski | 9b47f77a | 2016-08-24 03:52:12 -0700 | [diff] [blame] | 641 | if (ret >= 0 && result) |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 642 | *result = le32_to_cpu(res.u32); |
Christoph Hellwig | 1cb3cce | 2016-02-29 15:59:47 +0100 | [diff] [blame] | 643 | return ret; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 644 | } |
| 645 | |
Christoph Hellwig | 1c63dc6 | 2015-11-26 10:06:56 +0100 | [diff] [blame] | 646 | int nvme_get_log_page(struct nvme_ctrl *dev, struct nvme_smart_log **log) |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 647 | { |
| 648 | struct nvme_command c = { }; |
| 649 | int error; |
| 650 | |
| 651 | c.common.opcode = nvme_admin_get_log_page, |
| 652 | c.common.nsid = cpu_to_le32(0xFFFFFFFF), |
| 653 | c.common.cdw10[0] = cpu_to_le32( |
| 654 | (((sizeof(struct nvme_smart_log) / 4) - 1) << 16) | |
| 655 | NVME_LOG_SMART), |
| 656 | |
| 657 | *log = kmalloc(sizeof(struct nvme_smart_log), GFP_KERNEL); |
| 658 | if (!*log) |
| 659 | return -ENOMEM; |
| 660 | |
| 661 | error = nvme_submit_sync_cmd(dev->admin_q, &c, *log, |
| 662 | sizeof(struct nvme_smart_log)); |
| 663 | if (error) |
| 664 | kfree(*log); |
| 665 | return error; |
| 666 | } |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 667 | |
Christoph Hellwig | 9a0be7a | 2015-11-26 11:09:06 +0100 | [diff] [blame] | 668 | int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count) |
| 669 | { |
| 670 | u32 q_count = (*count - 1) | ((*count - 1) << 16); |
| 671 | u32 result; |
| 672 | int status, nr_io_queues; |
| 673 | |
Andy Lutomirski | 1a6fe74 | 2016-09-16 11:16:10 -0700 | [diff] [blame] | 674 | status = nvme_set_features(ctrl, NVME_FEAT_NUM_QUEUES, q_count, NULL, 0, |
Christoph Hellwig | 9a0be7a | 2015-11-26 11:09:06 +0100 | [diff] [blame] | 675 | &result); |
Christoph Hellwig | f5fa90d | 2016-06-06 23:20:50 +0200 | [diff] [blame] | 676 | if (status < 0) |
Christoph Hellwig | 9a0be7a | 2015-11-26 11:09:06 +0100 | [diff] [blame] | 677 | return status; |
| 678 | |
Christoph Hellwig | f5fa90d | 2016-06-06 23:20:50 +0200 | [diff] [blame] | 679 | /* |
| 680 | * Degraded controllers might return an error when setting the queue |
| 681 | * count. We still want to be able to bring them online and offer |
| 682 | * access to the admin queue, as that might be only way to fix them up. |
| 683 | */ |
| 684 | if (status > 0) { |
| 685 | dev_err(ctrl->dev, "Could not set queue count (%d)\n", status); |
| 686 | *count = 0; |
| 687 | } else { |
| 688 | nr_io_queues = min(result & 0xffff, result >> 16) + 1; |
| 689 | *count = min(*count, nr_io_queues); |
| 690 | } |
| 691 | |
Christoph Hellwig | 9a0be7a | 2015-11-26 11:09:06 +0100 | [diff] [blame] | 692 | return 0; |
| 693 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 694 | EXPORT_SYMBOL_GPL(nvme_set_queue_count); |
Christoph Hellwig | 9a0be7a | 2015-11-26 11:09:06 +0100 | [diff] [blame] | 695 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 696 | static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio) |
| 697 | { |
| 698 | struct nvme_user_io io; |
| 699 | struct nvme_command c; |
| 700 | unsigned length, meta_len; |
| 701 | void __user *metadata; |
| 702 | |
| 703 | if (copy_from_user(&io, uio, sizeof(io))) |
| 704 | return -EFAULT; |
Keith Busch | 63088ec | 2016-02-24 09:15:57 -0700 | [diff] [blame] | 705 | if (io.flags) |
| 706 | return -EINVAL; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 707 | |
| 708 | switch (io.opcode) { |
| 709 | case nvme_cmd_write: |
| 710 | case nvme_cmd_read: |
| 711 | case nvme_cmd_compare: |
| 712 | break; |
| 713 | default: |
| 714 | return -EINVAL; |
| 715 | } |
| 716 | |
| 717 | length = (io.nblocks + 1) << ns->lba_shift; |
| 718 | meta_len = (io.nblocks + 1) * ns->ms; |
| 719 | metadata = (void __user *)(uintptr_t)io.metadata; |
| 720 | |
| 721 | if (ns->ext) { |
| 722 | length += meta_len; |
| 723 | meta_len = 0; |
| 724 | } else if (meta_len) { |
| 725 | if ((io.metadata & 3) || !io.metadata) |
| 726 | return -EINVAL; |
| 727 | } |
| 728 | |
| 729 | memset(&c, 0, sizeof(c)); |
| 730 | c.rw.opcode = io.opcode; |
| 731 | c.rw.flags = io.flags; |
| 732 | c.rw.nsid = cpu_to_le32(ns->ns_id); |
| 733 | c.rw.slba = cpu_to_le64(io.slba); |
| 734 | c.rw.length = cpu_to_le16(io.nblocks); |
| 735 | c.rw.control = cpu_to_le16(io.control); |
| 736 | c.rw.dsmgmt = cpu_to_le32(io.dsmgmt); |
| 737 | c.rw.reftag = cpu_to_le32(io.reftag); |
| 738 | c.rw.apptag = cpu_to_le16(io.apptag); |
| 739 | c.rw.appmask = cpu_to_le16(io.appmask); |
| 740 | |
| 741 | return __nvme_submit_user_cmd(ns->queue, &c, |
| 742 | (void __user *)(uintptr_t)io.addr, length, |
| 743 | metadata, meta_len, io.slba, NULL, 0); |
| 744 | } |
| 745 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 746 | static int nvme_user_cmd(struct nvme_ctrl *ctrl, struct nvme_ns *ns, |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 747 | struct nvme_passthru_cmd __user *ucmd) |
| 748 | { |
| 749 | struct nvme_passthru_cmd cmd; |
| 750 | struct nvme_command c; |
| 751 | unsigned timeout = 0; |
| 752 | int status; |
| 753 | |
| 754 | if (!capable(CAP_SYS_ADMIN)) |
| 755 | return -EACCES; |
| 756 | if (copy_from_user(&cmd, ucmd, sizeof(cmd))) |
| 757 | return -EFAULT; |
Keith Busch | 63088ec | 2016-02-24 09:15:57 -0700 | [diff] [blame] | 758 | if (cmd.flags) |
| 759 | return -EINVAL; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 760 | |
| 761 | memset(&c, 0, sizeof(c)); |
| 762 | c.common.opcode = cmd.opcode; |
| 763 | c.common.flags = cmd.flags; |
| 764 | c.common.nsid = cpu_to_le32(cmd.nsid); |
| 765 | c.common.cdw2[0] = cpu_to_le32(cmd.cdw2); |
| 766 | c.common.cdw2[1] = cpu_to_le32(cmd.cdw3); |
| 767 | c.common.cdw10[0] = cpu_to_le32(cmd.cdw10); |
| 768 | c.common.cdw10[1] = cpu_to_le32(cmd.cdw11); |
| 769 | c.common.cdw10[2] = cpu_to_le32(cmd.cdw12); |
| 770 | c.common.cdw10[3] = cpu_to_le32(cmd.cdw13); |
| 771 | c.common.cdw10[4] = cpu_to_le32(cmd.cdw14); |
| 772 | c.common.cdw10[5] = cpu_to_le32(cmd.cdw15); |
| 773 | |
| 774 | if (cmd.timeout_ms) |
| 775 | timeout = msecs_to_jiffies(cmd.timeout_ms); |
| 776 | |
| 777 | status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c, |
Arnd Bergmann | d1ea7be | 2015-12-08 16:22:17 +0100 | [diff] [blame] | 778 | (void __user *)(uintptr_t)cmd.addr, cmd.data_len, |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 779 | &cmd.result, timeout); |
| 780 | if (status >= 0) { |
| 781 | if (put_user(cmd.result, &ucmd->result)) |
| 782 | return -EFAULT; |
| 783 | } |
| 784 | |
| 785 | return status; |
| 786 | } |
| 787 | |
| 788 | static int nvme_ioctl(struct block_device *bdev, fmode_t mode, |
| 789 | unsigned int cmd, unsigned long arg) |
| 790 | { |
| 791 | struct nvme_ns *ns = bdev->bd_disk->private_data; |
| 792 | |
| 793 | switch (cmd) { |
| 794 | case NVME_IOCTL_ID: |
| 795 | force_successful_syscall_return(); |
| 796 | return ns->ns_id; |
| 797 | case NVME_IOCTL_ADMIN_CMD: |
| 798 | return nvme_user_cmd(ns->ctrl, NULL, (void __user *)arg); |
| 799 | case NVME_IOCTL_IO_CMD: |
| 800 | return nvme_user_cmd(ns->ctrl, ns, (void __user *)arg); |
| 801 | case NVME_IOCTL_SUBMIT_IO: |
| 802 | return nvme_submit_io(ns, (void __user *)arg); |
Christoph Hellwig | 4490733 | 2015-12-24 15:27:02 +0100 | [diff] [blame] | 803 | #ifdef CONFIG_BLK_DEV_NVME_SCSI |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 804 | case SG_GET_VERSION_NUM: |
| 805 | return nvme_sg_get_version_num((void __user *)arg); |
| 806 | case SG_IO: |
| 807 | return nvme_sg_io(ns, (void __user *)arg); |
Christoph Hellwig | 4490733 | 2015-12-24 15:27:02 +0100 | [diff] [blame] | 808 | #endif |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 809 | default: |
Matias Bjørling | 84d4add | 2017-01-31 13:17:16 +0100 | [diff] [blame] | 810 | #ifdef CONFIG_NVM |
| 811 | if (ns->ndev) |
| 812 | return nvme_nvm_ioctl(ns, cmd, arg); |
| 813 | #endif |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 814 | if (is_sed_ioctl(cmd)) |
Christoph Hellwig | 4f1244c | 2017-02-17 13:59:39 +0100 | [diff] [blame] | 815 | return sed_ioctl(ns->ctrl->opal_dev, cmd, |
Scott Bauer | e225c20 | 2017-02-14 17:29:36 -0700 | [diff] [blame] | 816 | (void __user *) arg); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 817 | return -ENOTTY; |
| 818 | } |
| 819 | } |
| 820 | |
| 821 | #ifdef CONFIG_COMPAT |
| 822 | static int nvme_compat_ioctl(struct block_device *bdev, fmode_t mode, |
| 823 | unsigned int cmd, unsigned long arg) |
| 824 | { |
| 825 | switch (cmd) { |
| 826 | case SG_IO: |
| 827 | return -ENOIOCTLCMD; |
| 828 | } |
| 829 | return nvme_ioctl(bdev, mode, cmd, arg); |
| 830 | } |
| 831 | #else |
| 832 | #define nvme_compat_ioctl NULL |
| 833 | #endif |
| 834 | |
| 835 | static int nvme_open(struct block_device *bdev, fmode_t mode) |
| 836 | { |
| 837 | return nvme_get_ns_from_disk(bdev->bd_disk) ? 0 : -ENXIO; |
| 838 | } |
| 839 | |
| 840 | static void nvme_release(struct gendisk *disk, fmode_t mode) |
| 841 | { |
Sagi Grimberg | e439bb1 | 2016-02-10 10:03:29 -0800 | [diff] [blame] | 842 | struct nvme_ns *ns = disk->private_data; |
| 843 | |
| 844 | module_put(ns->ctrl->ops->module); |
| 845 | nvme_put_ns(ns); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 846 | } |
| 847 | |
| 848 | static int nvme_getgeo(struct block_device *bdev, struct hd_geometry *geo) |
| 849 | { |
| 850 | /* some standard values */ |
| 851 | geo->heads = 1 << 6; |
| 852 | geo->sectors = 1 << 5; |
| 853 | geo->cylinders = get_capacity(bdev->bd_disk) >> 11; |
| 854 | return 0; |
| 855 | } |
| 856 | |
| 857 | #ifdef CONFIG_BLK_DEV_INTEGRITY |
| 858 | static void nvme_init_integrity(struct nvme_ns *ns) |
| 859 | { |
| 860 | struct blk_integrity integrity; |
| 861 | |
Jay Freyensee | fa9a89f | 2016-07-20 21:26:16 -0600 | [diff] [blame] | 862 | memset(&integrity, 0, sizeof(integrity)); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 863 | switch (ns->pi_type) { |
| 864 | case NVME_NS_DPS_PI_TYPE3: |
| 865 | integrity.profile = &t10_pi_type3_crc; |
Nicholas Bellinger | ba36c21 | 2016-04-09 03:04:42 +0000 | [diff] [blame] | 866 | integrity.tag_size = sizeof(u16) + sizeof(u32); |
| 867 | integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 868 | break; |
| 869 | case NVME_NS_DPS_PI_TYPE1: |
| 870 | case NVME_NS_DPS_PI_TYPE2: |
| 871 | integrity.profile = &t10_pi_type1_crc; |
Nicholas Bellinger | ba36c21 | 2016-04-09 03:04:42 +0000 | [diff] [blame] | 872 | integrity.tag_size = sizeof(u16); |
| 873 | integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 874 | break; |
| 875 | default: |
| 876 | integrity.profile = NULL; |
| 877 | break; |
| 878 | } |
| 879 | integrity.tuple_size = ns->ms; |
| 880 | blk_integrity_register(ns->disk, &integrity); |
| 881 | blk_queue_max_integrity_segments(ns->queue, 1); |
| 882 | } |
| 883 | #else |
| 884 | static void nvme_init_integrity(struct nvme_ns *ns) |
| 885 | { |
| 886 | } |
| 887 | #endif /* CONFIG_BLK_DEV_INTEGRITY */ |
| 888 | |
| 889 | static void nvme_config_discard(struct nvme_ns *ns) |
| 890 | { |
Keith Busch | 08095e7 | 2016-03-04 13:15:17 -0700 | [diff] [blame] | 891 | struct nvme_ctrl *ctrl = ns->ctrl; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 892 | u32 logical_block_size = queue_logical_block_size(ns->queue); |
Keith Busch | 08095e7 | 2016-03-04 13:15:17 -0700 | [diff] [blame] | 893 | |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 894 | BUILD_BUG_ON(PAGE_SIZE / sizeof(struct nvme_dsm_range) < |
| 895 | NVME_DSM_MAX_RANGES); |
| 896 | |
Keith Busch | 08095e7 | 2016-03-04 13:15:17 -0700 | [diff] [blame] | 897 | if (ctrl->quirks & NVME_QUIRK_DISCARD_ZEROES) |
| 898 | ns->queue->limits.discard_zeroes_data = 1; |
| 899 | else |
| 900 | ns->queue->limits.discard_zeroes_data = 0; |
| 901 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 902 | ns->queue->limits.discard_alignment = logical_block_size; |
| 903 | ns->queue->limits.discard_granularity = logical_block_size; |
Minfei Huang | bd0fc28 | 2016-05-17 15:58:41 +0800 | [diff] [blame] | 904 | blk_queue_max_discard_sectors(ns->queue, UINT_MAX); |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 905 | blk_queue_max_discard_segments(ns->queue, NVME_DSM_MAX_RANGES); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 906 | queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue); |
| 907 | } |
| 908 | |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 909 | static int nvme_revalidate_ns(struct nvme_ns *ns, struct nvme_id_ns **id) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 910 | { |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 911 | if (nvme_identify_ns(ns->ctrl, ns->ns_id, id)) { |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 912 | dev_warn(ns->ctrl->dev, "%s: Identify failure\n", __func__); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 913 | return -ENODEV; |
| 914 | } |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 915 | |
| 916 | if ((*id)->ncap == 0) { |
| 917 | kfree(*id); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 918 | return -ENODEV; |
| 919 | } |
| 920 | |
Gabriel Krisman Bertazi | 8ef2074 | 2016-10-19 09:51:05 -0600 | [diff] [blame] | 921 | if (ns->ctrl->vs >= NVME_VS(1, 1, 0)) |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 922 | memcpy(ns->eui, (*id)->eui64, sizeof(ns->eui)); |
Gabriel Krisman Bertazi | 8ef2074 | 2016-10-19 09:51:05 -0600 | [diff] [blame] | 923 | if (ns->ctrl->vs >= NVME_VS(1, 2, 0)) |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 924 | memcpy(ns->uuid, (*id)->nguid, sizeof(ns->uuid)); |
| 925 | |
| 926 | return 0; |
| 927 | } |
| 928 | |
| 929 | static void __nvme_revalidate_disk(struct gendisk *disk, struct nvme_id_ns *id) |
| 930 | { |
| 931 | struct nvme_ns *ns = disk->private_data; |
| 932 | u8 lbaf, pi_type; |
| 933 | u16 old_ms; |
| 934 | unsigned short bs; |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 935 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 936 | old_ms = ns->ms; |
| 937 | lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK; |
| 938 | ns->lba_shift = id->lbaf[lbaf].ds; |
| 939 | ns->ms = le16_to_cpu(id->lbaf[lbaf].ms); |
| 940 | ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT); |
| 941 | |
| 942 | /* |
| 943 | * If identify namespace failed, use default 512 byte block size so |
| 944 | * block layer can use before failing read/write for 0 capacity. |
| 945 | */ |
| 946 | if (ns->lba_shift == 0) |
| 947 | ns->lba_shift = 9; |
| 948 | bs = 1 << ns->lba_shift; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 949 | /* XXX: PI implementation requires metadata equal t10 pi tuple size */ |
| 950 | pi_type = ns->ms == sizeof(struct t10_pi_tuple) ? |
| 951 | id->dps & NVME_NS_DPS_PI_MASK : 0; |
| 952 | |
| 953 | blk_mq_freeze_queue(disk->queue); |
| 954 | if (blk_get_integrity(disk) && (ns->pi_type != pi_type || |
| 955 | ns->ms != old_ms || |
| 956 | bs != queue_logical_block_size(disk->queue) || |
| 957 | (ns->ms && ns->ext))) |
| 958 | blk_integrity_unregister(disk); |
| 959 | |
| 960 | ns->pi_type = pi_type; |
| 961 | blk_queue_logical_block_size(ns->queue, bs); |
| 962 | |
Keith Busch | 4b9d5b1 | 2015-11-20 09:13:30 +0100 | [diff] [blame] | 963 | if (ns->ms && !blk_get_integrity(disk) && !ns->ext) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 964 | nvme_init_integrity(ns); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 965 | if (ns->ms && !(ns->ms == 8 && ns->pi_type) && !blk_get_integrity(disk)) |
| 966 | set_capacity(disk, 0); |
| 967 | else |
| 968 | set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9)); |
| 969 | |
| 970 | if (ns->ctrl->oncs & NVME_CTRL_ONCS_DSM) |
| 971 | nvme_config_discard(ns); |
| 972 | blk_mq_unfreeze_queue(disk->queue); |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 973 | } |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 974 | |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 975 | static int nvme_revalidate_disk(struct gendisk *disk) |
| 976 | { |
| 977 | struct nvme_ns *ns = disk->private_data; |
| 978 | struct nvme_id_ns *id = NULL; |
| 979 | int ret; |
| 980 | |
| 981 | if (test_bit(NVME_NS_DEAD, &ns->flags)) { |
| 982 | set_capacity(disk, 0); |
| 983 | return -ENODEV; |
| 984 | } |
| 985 | |
| 986 | ret = nvme_revalidate_ns(ns, &id); |
| 987 | if (ret) |
| 988 | return ret; |
| 989 | |
| 990 | __nvme_revalidate_disk(disk, id); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 991 | kfree(id); |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 992 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 993 | return 0; |
| 994 | } |
| 995 | |
| 996 | static char nvme_pr_type(enum pr_type type) |
| 997 | { |
| 998 | switch (type) { |
| 999 | case PR_WRITE_EXCLUSIVE: |
| 1000 | return 1; |
| 1001 | case PR_EXCLUSIVE_ACCESS: |
| 1002 | return 2; |
| 1003 | case PR_WRITE_EXCLUSIVE_REG_ONLY: |
| 1004 | return 3; |
| 1005 | case PR_EXCLUSIVE_ACCESS_REG_ONLY: |
| 1006 | return 4; |
| 1007 | case PR_WRITE_EXCLUSIVE_ALL_REGS: |
| 1008 | return 5; |
| 1009 | case PR_EXCLUSIVE_ACCESS_ALL_REGS: |
| 1010 | return 6; |
| 1011 | default: |
| 1012 | return 0; |
| 1013 | } |
| 1014 | }; |
| 1015 | |
| 1016 | static int nvme_pr_command(struct block_device *bdev, u32 cdw10, |
| 1017 | u64 key, u64 sa_key, u8 op) |
| 1018 | { |
| 1019 | struct nvme_ns *ns = bdev->bd_disk->private_data; |
| 1020 | struct nvme_command c; |
| 1021 | u8 data[16] = { 0, }; |
| 1022 | |
| 1023 | put_unaligned_le64(key, &data[0]); |
| 1024 | put_unaligned_le64(sa_key, &data[8]); |
| 1025 | |
| 1026 | memset(&c, 0, sizeof(c)); |
| 1027 | c.common.opcode = op; |
| 1028 | c.common.nsid = cpu_to_le32(ns->ns_id); |
| 1029 | c.common.cdw10[0] = cpu_to_le32(cdw10); |
| 1030 | |
| 1031 | return nvme_submit_sync_cmd(ns->queue, &c, data, 16); |
| 1032 | } |
| 1033 | |
| 1034 | static int nvme_pr_register(struct block_device *bdev, u64 old, |
| 1035 | u64 new, unsigned flags) |
| 1036 | { |
| 1037 | u32 cdw10; |
| 1038 | |
| 1039 | if (flags & ~PR_FL_IGNORE_KEY) |
| 1040 | return -EOPNOTSUPP; |
| 1041 | |
| 1042 | cdw10 = old ? 2 : 0; |
| 1043 | cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0; |
| 1044 | cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */ |
| 1045 | return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register); |
| 1046 | } |
| 1047 | |
| 1048 | static int nvme_pr_reserve(struct block_device *bdev, u64 key, |
| 1049 | enum pr_type type, unsigned flags) |
| 1050 | { |
| 1051 | u32 cdw10; |
| 1052 | |
| 1053 | if (flags & ~PR_FL_IGNORE_KEY) |
| 1054 | return -EOPNOTSUPP; |
| 1055 | |
| 1056 | cdw10 = nvme_pr_type(type) << 8; |
| 1057 | cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0); |
| 1058 | return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire); |
| 1059 | } |
| 1060 | |
| 1061 | static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new, |
| 1062 | enum pr_type type, bool abort) |
| 1063 | { |
| 1064 | u32 cdw10 = nvme_pr_type(type) << 8 | abort ? 2 : 1; |
| 1065 | return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire); |
| 1066 | } |
| 1067 | |
| 1068 | static int nvme_pr_clear(struct block_device *bdev, u64 key) |
| 1069 | { |
Dan Carpenter | 8c0b391 | 2015-12-09 13:24:06 +0300 | [diff] [blame] | 1070 | u32 cdw10 = 1 | (key ? 1 << 3 : 0); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1071 | return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register); |
| 1072 | } |
| 1073 | |
| 1074 | static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type) |
| 1075 | { |
| 1076 | u32 cdw10 = nvme_pr_type(type) << 8 | key ? 1 << 3 : 0; |
| 1077 | return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release); |
| 1078 | } |
| 1079 | |
| 1080 | static const struct pr_ops nvme_pr_ops = { |
| 1081 | .pr_register = nvme_pr_register, |
| 1082 | .pr_reserve = nvme_pr_reserve, |
| 1083 | .pr_release = nvme_pr_release, |
| 1084 | .pr_preempt = nvme_pr_preempt, |
| 1085 | .pr_clear = nvme_pr_clear, |
| 1086 | }; |
| 1087 | |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1088 | #ifdef CONFIG_BLK_SED_OPAL |
Christoph Hellwig | 4f1244c | 2017-02-17 13:59:39 +0100 | [diff] [blame] | 1089 | int nvme_sec_submit(void *data, u16 spsp, u8 secp, void *buffer, size_t len, |
| 1090 | bool send) |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1091 | { |
Christoph Hellwig | 4f1244c | 2017-02-17 13:59:39 +0100 | [diff] [blame] | 1092 | struct nvme_ctrl *ctrl = data; |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1093 | struct nvme_command cmd; |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1094 | |
| 1095 | memset(&cmd, 0, sizeof(cmd)); |
| 1096 | if (send) |
| 1097 | cmd.common.opcode = nvme_admin_security_send; |
| 1098 | else |
| 1099 | cmd.common.opcode = nvme_admin_security_recv; |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1100 | cmd.common.nsid = 0; |
| 1101 | cmd.common.cdw10[0] = cpu_to_le32(((u32)secp) << 24 | ((u32)spsp) << 8); |
| 1102 | cmd.common.cdw10[1] = cpu_to_le32(len); |
| 1103 | |
| 1104 | return __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, NULL, buffer, len, |
| 1105 | ADMIN_TIMEOUT, NVME_QID_ANY, 1, 0); |
| 1106 | } |
| 1107 | EXPORT_SYMBOL_GPL(nvme_sec_submit); |
| 1108 | #endif /* CONFIG_BLK_SED_OPAL */ |
| 1109 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1110 | static const struct block_device_operations nvme_fops = { |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1111 | .owner = THIS_MODULE, |
| 1112 | .ioctl = nvme_ioctl, |
| 1113 | .compat_ioctl = nvme_compat_ioctl, |
| 1114 | .open = nvme_open, |
| 1115 | .release = nvme_release, |
| 1116 | .getgeo = nvme_getgeo, |
| 1117 | .revalidate_disk= nvme_revalidate_disk, |
| 1118 | .pr_ops = &nvme_pr_ops, |
| 1119 | }; |
| 1120 | |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1121 | static int nvme_wait_ready(struct nvme_ctrl *ctrl, u64 cap, bool enabled) |
| 1122 | { |
| 1123 | unsigned long timeout = |
| 1124 | ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies; |
| 1125 | u32 csts, bit = enabled ? NVME_CSTS_RDY : 0; |
| 1126 | int ret; |
| 1127 | |
| 1128 | while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) { |
Keith Busch | 0df1e4f | 2016-10-11 13:31:58 -0400 | [diff] [blame] | 1129 | if (csts == ~0) |
| 1130 | return -ENODEV; |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1131 | if ((csts & NVME_CSTS_RDY) == bit) |
| 1132 | break; |
| 1133 | |
| 1134 | msleep(100); |
| 1135 | if (fatal_signal_pending(current)) |
| 1136 | return -EINTR; |
| 1137 | if (time_after(jiffies, timeout)) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1138 | dev_err(ctrl->device, |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1139 | "Device not ready; aborting %s\n", enabled ? |
| 1140 | "initialisation" : "reset"); |
| 1141 | return -ENODEV; |
| 1142 | } |
| 1143 | } |
| 1144 | |
| 1145 | return ret; |
| 1146 | } |
| 1147 | |
| 1148 | /* |
| 1149 | * If the device has been passed off to us in an enabled state, just clear |
| 1150 | * the enabled bit. The spec says we should set the 'shutdown notification |
| 1151 | * bits', but doing so may cause the device to complete commands to the |
| 1152 | * admin queue ... and we don't know what memory that might be pointing at! |
| 1153 | */ |
| 1154 | int nvme_disable_ctrl(struct nvme_ctrl *ctrl, u64 cap) |
| 1155 | { |
| 1156 | int ret; |
| 1157 | |
| 1158 | ctrl->ctrl_config &= ~NVME_CC_SHN_MASK; |
| 1159 | ctrl->ctrl_config &= ~NVME_CC_ENABLE; |
| 1160 | |
| 1161 | ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config); |
| 1162 | if (ret) |
| 1163 | return ret; |
Guilherme G. Piccoli | 54adc01 | 2016-06-14 18:22:41 -0300 | [diff] [blame] | 1164 | |
Guilherme G. Piccoli | b5a10c5 | 2016-12-28 22:13:15 -0200 | [diff] [blame] | 1165 | if (ctrl->quirks & NVME_QUIRK_DELAY_BEFORE_CHK_RDY) |
Guilherme G. Piccoli | 54adc01 | 2016-06-14 18:22:41 -0300 | [diff] [blame] | 1166 | msleep(NVME_QUIRK_DELAY_AMOUNT); |
| 1167 | |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1168 | return nvme_wait_ready(ctrl, cap, false); |
| 1169 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 1170 | EXPORT_SYMBOL_GPL(nvme_disable_ctrl); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1171 | |
| 1172 | int nvme_enable_ctrl(struct nvme_ctrl *ctrl, u64 cap) |
| 1173 | { |
| 1174 | /* |
| 1175 | * Default to a 4K page size, with the intention to update this |
| 1176 | * path in the future to accomodate architectures with differing |
| 1177 | * kernel and IO page sizes. |
| 1178 | */ |
| 1179 | unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12, page_shift = 12; |
| 1180 | int ret; |
| 1181 | |
| 1182 | if (page_shift < dev_page_min) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1183 | dev_err(ctrl->device, |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1184 | "Minimum device page size %u too large for host (%u)\n", |
| 1185 | 1 << dev_page_min, 1 << page_shift); |
| 1186 | return -ENODEV; |
| 1187 | } |
| 1188 | |
| 1189 | ctrl->page_size = 1 << page_shift; |
| 1190 | |
| 1191 | ctrl->ctrl_config = NVME_CC_CSS_NVM; |
| 1192 | ctrl->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT; |
| 1193 | ctrl->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE; |
| 1194 | ctrl->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES; |
| 1195 | ctrl->ctrl_config |= NVME_CC_ENABLE; |
| 1196 | |
| 1197 | ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config); |
| 1198 | if (ret) |
| 1199 | return ret; |
| 1200 | return nvme_wait_ready(ctrl, cap, true); |
| 1201 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 1202 | EXPORT_SYMBOL_GPL(nvme_enable_ctrl); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1203 | |
| 1204 | int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl) |
| 1205 | { |
| 1206 | unsigned long timeout = SHUTDOWN_TIMEOUT + jiffies; |
| 1207 | u32 csts; |
| 1208 | int ret; |
| 1209 | |
| 1210 | ctrl->ctrl_config &= ~NVME_CC_SHN_MASK; |
| 1211 | ctrl->ctrl_config |= NVME_CC_SHN_NORMAL; |
| 1212 | |
| 1213 | ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config); |
| 1214 | if (ret) |
| 1215 | return ret; |
| 1216 | |
| 1217 | while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) { |
| 1218 | if ((csts & NVME_CSTS_SHST_MASK) == NVME_CSTS_SHST_CMPLT) |
| 1219 | break; |
| 1220 | |
| 1221 | msleep(100); |
| 1222 | if (fatal_signal_pending(current)) |
| 1223 | return -EINTR; |
| 1224 | if (time_after(jiffies, timeout)) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1225 | dev_err(ctrl->device, |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1226 | "Device shutdown incomplete; abort shutdown\n"); |
| 1227 | return -ENODEV; |
| 1228 | } |
| 1229 | } |
| 1230 | |
| 1231 | return ret; |
| 1232 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 1233 | EXPORT_SYMBOL_GPL(nvme_shutdown_ctrl); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1234 | |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1235 | static void nvme_set_queue_limits(struct nvme_ctrl *ctrl, |
| 1236 | struct request_queue *q) |
| 1237 | { |
Jens Axboe | 7c88cb0 | 2016-04-12 15:43:09 -0600 | [diff] [blame] | 1238 | bool vwc = false; |
| 1239 | |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1240 | if (ctrl->max_hw_sectors) { |
Christoph Hellwig | 45686b6 | 2016-03-02 18:07:12 +0100 | [diff] [blame] | 1241 | u32 max_segments = |
| 1242 | (ctrl->max_hw_sectors / (ctrl->page_size >> 9)) + 1; |
| 1243 | |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1244 | blk_queue_max_hw_sectors(q, ctrl->max_hw_sectors); |
Christoph Hellwig | 45686b6 | 2016-03-02 18:07:12 +0100 | [diff] [blame] | 1245 | blk_queue_max_segments(q, min_t(u32, max_segments, USHRT_MAX)); |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1246 | } |
Keith Busch | e6282ae | 2016-12-19 11:37:50 -0500 | [diff] [blame] | 1247 | if (ctrl->quirks & NVME_QUIRK_STRIPE_SIZE) |
| 1248 | blk_queue_chunk_sectors(q, ctrl->max_hw_sectors); |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1249 | blk_queue_virt_boundary(q, ctrl->page_size - 1); |
Jens Axboe | 7c88cb0 | 2016-04-12 15:43:09 -0600 | [diff] [blame] | 1250 | if (ctrl->vwc & NVME_CTRL_VWC_PRESENT) |
| 1251 | vwc = true; |
| 1252 | blk_queue_write_cache(q, vwc, vwc); |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1253 | } |
| 1254 | |
Andy Lutomirski | bd4da3a | 2017-02-22 13:32:36 -0700 | [diff] [blame^] | 1255 | struct nvme_core_quirk_entry { |
| 1256 | /* |
| 1257 | * NVMe model and firmware strings are padded with spaces. For |
| 1258 | * simplicity, strings in the quirk table are padded with NULLs |
| 1259 | * instead. |
| 1260 | */ |
| 1261 | u16 vid; |
| 1262 | const char *mn; |
| 1263 | const char *fr; |
| 1264 | unsigned long quirks; |
| 1265 | }; |
| 1266 | |
| 1267 | static const struct nvme_core_quirk_entry core_quirks[] = { |
| 1268 | }; |
| 1269 | |
| 1270 | /* match is null-terminated but idstr is space-padded. */ |
| 1271 | static bool string_matches(const char *idstr, const char *match, size_t len) |
| 1272 | { |
| 1273 | size_t matchlen; |
| 1274 | |
| 1275 | if (!match) |
| 1276 | return true; |
| 1277 | |
| 1278 | matchlen = strlen(match); |
| 1279 | WARN_ON_ONCE(matchlen > len); |
| 1280 | |
| 1281 | if (memcmp(idstr, match, matchlen)) |
| 1282 | return false; |
| 1283 | |
| 1284 | for (; matchlen < len; matchlen++) |
| 1285 | if (idstr[matchlen] != ' ') |
| 1286 | return false; |
| 1287 | |
| 1288 | return true; |
| 1289 | } |
| 1290 | |
| 1291 | static bool quirk_matches(const struct nvme_id_ctrl *id, |
| 1292 | const struct nvme_core_quirk_entry *q) |
| 1293 | { |
| 1294 | return q->vid == le16_to_cpu(id->vid) && |
| 1295 | string_matches(id->mn, q->mn, sizeof(id->mn)) && |
| 1296 | string_matches(id->fr, q->fr, sizeof(id->fr)); |
| 1297 | } |
| 1298 | |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1299 | /* |
| 1300 | * Initialize the cached copies of the Identify data and various controller |
| 1301 | * register in our nvme_ctrl structure. This should be called as soon as |
| 1302 | * the admin queue is fully up and running. |
| 1303 | */ |
| 1304 | int nvme_init_identify(struct nvme_ctrl *ctrl) |
| 1305 | { |
| 1306 | struct nvme_id_ctrl *id; |
| 1307 | u64 cap; |
| 1308 | int ret, page_shift; |
Christoph Hellwig | a229dbf | 2016-06-06 23:20:48 +0200 | [diff] [blame] | 1309 | u32 max_hw_sectors; |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1310 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1311 | ret = ctrl->ops->reg_read32(ctrl, NVME_REG_VS, &ctrl->vs); |
| 1312 | if (ret) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1313 | dev_err(ctrl->device, "Reading VS failed (%d)\n", ret); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1314 | return ret; |
| 1315 | } |
| 1316 | |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1317 | ret = ctrl->ops->reg_read64(ctrl, NVME_REG_CAP, &cap); |
| 1318 | if (ret) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1319 | dev_err(ctrl->device, "Reading CAP failed (%d)\n", ret); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1320 | return ret; |
| 1321 | } |
| 1322 | page_shift = NVME_CAP_MPSMIN(cap) + 12; |
| 1323 | |
Gabriel Krisman Bertazi | 8ef2074 | 2016-10-19 09:51:05 -0600 | [diff] [blame] | 1324 | if (ctrl->vs >= NVME_VS(1, 1, 0)) |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1325 | ctrl->subsystem = NVME_CAP_NSSRC(cap); |
| 1326 | |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1327 | ret = nvme_identify_ctrl(ctrl, &id); |
| 1328 | if (ret) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1329 | dev_err(ctrl->device, "Identify Controller failed (%d)\n", ret); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1330 | return -EIO; |
| 1331 | } |
| 1332 | |
Andy Lutomirski | bd4da3a | 2017-02-22 13:32:36 -0700 | [diff] [blame^] | 1333 | if (!ctrl->identified) { |
| 1334 | /* |
| 1335 | * Check for quirks. Quirk can depend on firmware version, |
| 1336 | * so, in principle, the set of quirks present can change |
| 1337 | * across a reset. As a possible future enhancement, we |
| 1338 | * could re-scan for quirks every time we reinitialize |
| 1339 | * the device, but we'd have to make sure that the driver |
| 1340 | * behaves intelligently if the quirks change. |
| 1341 | */ |
| 1342 | |
| 1343 | int i; |
| 1344 | |
| 1345 | for (i = 0; i < ARRAY_SIZE(core_quirks); i++) { |
| 1346 | if (quirk_matches(id, &core_quirks[i])) |
| 1347 | ctrl->quirks |= core_quirks[i].quirks; |
| 1348 | } |
| 1349 | } |
| 1350 | |
Scott Bauer | 8a9ae52 | 2017-02-17 13:59:40 +0100 | [diff] [blame] | 1351 | ctrl->oacs = le16_to_cpu(id->oacs); |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 1352 | ctrl->vid = le16_to_cpu(id->vid); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1353 | ctrl->oncs = le16_to_cpup(&id->oncs); |
Christoph Hellwig | 6bf25d1 | 2015-11-20 09:36:44 +0100 | [diff] [blame] | 1354 | atomic_set(&ctrl->abort_limit, id->acl + 1); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1355 | ctrl->vwc = id->vwc; |
Ming Lin | 931e1c2 | 2016-02-26 13:24:19 -0800 | [diff] [blame] | 1356 | ctrl->cntlid = le16_to_cpup(&id->cntlid); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1357 | memcpy(ctrl->serial, id->sn, sizeof(id->sn)); |
| 1358 | memcpy(ctrl->model, id->mn, sizeof(id->mn)); |
| 1359 | memcpy(ctrl->firmware_rev, id->fr, sizeof(id->fr)); |
| 1360 | if (id->mdts) |
Christoph Hellwig | a229dbf | 2016-06-06 23:20:48 +0200 | [diff] [blame] | 1361 | max_hw_sectors = 1 << (id->mdts + page_shift - 9); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1362 | else |
Christoph Hellwig | a229dbf | 2016-06-06 23:20:48 +0200 | [diff] [blame] | 1363 | max_hw_sectors = UINT_MAX; |
| 1364 | ctrl->max_hw_sectors = |
| 1365 | min_not_zero(ctrl->max_hw_sectors, max_hw_sectors); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1366 | |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1367 | nvme_set_queue_limits(ctrl, ctrl->admin_q); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1368 | ctrl->sgls = le32_to_cpu(id->sgls); |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 1369 | ctrl->kas = le16_to_cpu(id->kas); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1370 | |
| 1371 | if (ctrl->ops->is_fabrics) { |
| 1372 | ctrl->icdoff = le16_to_cpu(id->icdoff); |
| 1373 | ctrl->ioccsz = le32_to_cpu(id->ioccsz); |
| 1374 | ctrl->iorcsz = le32_to_cpu(id->iorcsz); |
| 1375 | ctrl->maxcmd = le16_to_cpu(id->maxcmd); |
| 1376 | |
| 1377 | /* |
| 1378 | * In fabrics we need to verify the cntlid matches the |
| 1379 | * admin connect |
| 1380 | */ |
| 1381 | if (ctrl->cntlid != le16_to_cpu(id->cntlid)) |
| 1382 | ret = -EINVAL; |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 1383 | |
| 1384 | if (!ctrl->opts->discovery_nqn && !ctrl->kas) { |
| 1385 | dev_err(ctrl->dev, |
| 1386 | "keep-alive support is mandatory for fabrics\n"); |
| 1387 | ret = -EINVAL; |
| 1388 | } |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1389 | } else { |
| 1390 | ctrl->cntlid = le16_to_cpu(id->cntlid); |
| 1391 | } |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1392 | |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1393 | kfree(id); |
Andy Lutomirski | bd4da3a | 2017-02-22 13:32:36 -0700 | [diff] [blame^] | 1394 | |
| 1395 | ctrl->identified = true; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1396 | return ret; |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1397 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 1398 | EXPORT_SYMBOL_GPL(nvme_init_identify); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 1399 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1400 | static int nvme_dev_open(struct inode *inode, struct file *file) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1401 | { |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1402 | struct nvme_ctrl *ctrl; |
| 1403 | int instance = iminor(inode); |
| 1404 | int ret = -ENODEV; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1405 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1406 | spin_lock(&dev_list_lock); |
| 1407 | list_for_each_entry(ctrl, &nvme_ctrl_list, node) { |
| 1408 | if (ctrl->instance != instance) |
| 1409 | continue; |
| 1410 | |
| 1411 | if (!ctrl->admin_q) { |
| 1412 | ret = -EWOULDBLOCK; |
| 1413 | break; |
| 1414 | } |
| 1415 | if (!kref_get_unless_zero(&ctrl->kref)) |
| 1416 | break; |
| 1417 | file->private_data = ctrl; |
| 1418 | ret = 0; |
| 1419 | break; |
| 1420 | } |
| 1421 | spin_unlock(&dev_list_lock); |
| 1422 | |
| 1423 | return ret; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1424 | } |
| 1425 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1426 | static int nvme_dev_release(struct inode *inode, struct file *file) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1427 | { |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1428 | nvme_put_ctrl(file->private_data); |
| 1429 | return 0; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1430 | } |
| 1431 | |
Christoph Hellwig | bfd8947 | 2015-12-24 15:27:01 +0100 | [diff] [blame] | 1432 | static int nvme_dev_user_cmd(struct nvme_ctrl *ctrl, void __user *argp) |
| 1433 | { |
| 1434 | struct nvme_ns *ns; |
| 1435 | int ret; |
| 1436 | |
| 1437 | mutex_lock(&ctrl->namespaces_mutex); |
| 1438 | if (list_empty(&ctrl->namespaces)) { |
| 1439 | ret = -ENOTTY; |
| 1440 | goto out_unlock; |
| 1441 | } |
| 1442 | |
| 1443 | ns = list_first_entry(&ctrl->namespaces, struct nvme_ns, list); |
| 1444 | if (ns != list_last_entry(&ctrl->namespaces, struct nvme_ns, list)) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1445 | dev_warn(ctrl->device, |
Christoph Hellwig | bfd8947 | 2015-12-24 15:27:01 +0100 | [diff] [blame] | 1446 | "NVME_IOCTL_IO_CMD not supported when multiple namespaces present!\n"); |
| 1447 | ret = -EINVAL; |
| 1448 | goto out_unlock; |
| 1449 | } |
| 1450 | |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1451 | dev_warn(ctrl->device, |
Christoph Hellwig | bfd8947 | 2015-12-24 15:27:01 +0100 | [diff] [blame] | 1452 | "using deprecated NVME_IOCTL_IO_CMD ioctl on the char device!\n"); |
| 1453 | kref_get(&ns->kref); |
| 1454 | mutex_unlock(&ctrl->namespaces_mutex); |
| 1455 | |
| 1456 | ret = nvme_user_cmd(ctrl, ns, argp); |
| 1457 | nvme_put_ns(ns); |
| 1458 | return ret; |
| 1459 | |
| 1460 | out_unlock: |
| 1461 | mutex_unlock(&ctrl->namespaces_mutex); |
| 1462 | return ret; |
| 1463 | } |
| 1464 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1465 | static long nvme_dev_ioctl(struct file *file, unsigned int cmd, |
| 1466 | unsigned long arg) |
| 1467 | { |
| 1468 | struct nvme_ctrl *ctrl = file->private_data; |
| 1469 | void __user *argp = (void __user *)arg; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1470 | |
| 1471 | switch (cmd) { |
| 1472 | case NVME_IOCTL_ADMIN_CMD: |
| 1473 | return nvme_user_cmd(ctrl, NULL, argp); |
| 1474 | case NVME_IOCTL_IO_CMD: |
Christoph Hellwig | bfd8947 | 2015-12-24 15:27:01 +0100 | [diff] [blame] | 1475 | return nvme_dev_user_cmd(ctrl, argp); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1476 | case NVME_IOCTL_RESET: |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1477 | dev_warn(ctrl->device, "resetting controller\n"); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1478 | return ctrl->ops->reset_ctrl(ctrl); |
| 1479 | case NVME_IOCTL_SUBSYS_RESET: |
| 1480 | return nvme_reset_subsystem(ctrl); |
Keith Busch | 9ec3bb2 | 2016-04-29 15:45:18 -0600 | [diff] [blame] | 1481 | case NVME_IOCTL_RESCAN: |
| 1482 | nvme_queue_scan(ctrl); |
| 1483 | return 0; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1484 | default: |
| 1485 | return -ENOTTY; |
| 1486 | } |
| 1487 | } |
| 1488 | |
| 1489 | static const struct file_operations nvme_dev_fops = { |
| 1490 | .owner = THIS_MODULE, |
| 1491 | .open = nvme_dev_open, |
| 1492 | .release = nvme_dev_release, |
| 1493 | .unlocked_ioctl = nvme_dev_ioctl, |
| 1494 | .compat_ioctl = nvme_dev_ioctl, |
| 1495 | }; |
| 1496 | |
| 1497 | static ssize_t nvme_sysfs_reset(struct device *dev, |
| 1498 | struct device_attribute *attr, const char *buf, |
| 1499 | size_t count) |
| 1500 | { |
| 1501 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 1502 | int ret; |
| 1503 | |
| 1504 | ret = ctrl->ops->reset_ctrl(ctrl); |
| 1505 | if (ret < 0) |
| 1506 | return ret; |
| 1507 | return count; |
| 1508 | } |
| 1509 | static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset); |
| 1510 | |
Keith Busch | 9ec3bb2 | 2016-04-29 15:45:18 -0600 | [diff] [blame] | 1511 | static ssize_t nvme_sysfs_rescan(struct device *dev, |
| 1512 | struct device_attribute *attr, const char *buf, |
| 1513 | size_t count) |
| 1514 | { |
| 1515 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 1516 | |
| 1517 | nvme_queue_scan(ctrl); |
| 1518 | return count; |
| 1519 | } |
| 1520 | static DEVICE_ATTR(rescan_controller, S_IWUSR, NULL, nvme_sysfs_rescan); |
| 1521 | |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 1522 | static ssize_t wwid_show(struct device *dev, struct device_attribute *attr, |
| 1523 | char *buf) |
| 1524 | { |
Simon A. F. Lund | 40267ef | 2016-09-16 14:25:08 +0200 | [diff] [blame] | 1525 | struct nvme_ns *ns = nvme_get_ns_from_dev(dev); |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 1526 | struct nvme_ctrl *ctrl = ns->ctrl; |
| 1527 | int serial_len = sizeof(ctrl->serial); |
| 1528 | int model_len = sizeof(ctrl->model); |
| 1529 | |
| 1530 | if (memchr_inv(ns->uuid, 0, sizeof(ns->uuid))) |
| 1531 | return sprintf(buf, "eui.%16phN\n", ns->uuid); |
| 1532 | |
| 1533 | if (memchr_inv(ns->eui, 0, sizeof(ns->eui))) |
| 1534 | return sprintf(buf, "eui.%8phN\n", ns->eui); |
| 1535 | |
| 1536 | while (ctrl->serial[serial_len - 1] == ' ') |
| 1537 | serial_len--; |
| 1538 | while (ctrl->model[model_len - 1] == ' ') |
| 1539 | model_len--; |
| 1540 | |
| 1541 | return sprintf(buf, "nvme.%04x-%*phN-%*phN-%08x\n", ctrl->vid, |
| 1542 | serial_len, ctrl->serial, model_len, ctrl->model, ns->ns_id); |
| 1543 | } |
| 1544 | static DEVICE_ATTR(wwid, S_IRUGO, wwid_show, NULL); |
| 1545 | |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 1546 | static ssize_t uuid_show(struct device *dev, struct device_attribute *attr, |
| 1547 | char *buf) |
| 1548 | { |
Simon A. F. Lund | 40267ef | 2016-09-16 14:25:08 +0200 | [diff] [blame] | 1549 | struct nvme_ns *ns = nvme_get_ns_from_dev(dev); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 1550 | return sprintf(buf, "%pU\n", ns->uuid); |
| 1551 | } |
| 1552 | static DEVICE_ATTR(uuid, S_IRUGO, uuid_show, NULL); |
| 1553 | |
| 1554 | static ssize_t eui_show(struct device *dev, struct device_attribute *attr, |
| 1555 | char *buf) |
| 1556 | { |
Simon A. F. Lund | 40267ef | 2016-09-16 14:25:08 +0200 | [diff] [blame] | 1557 | struct nvme_ns *ns = nvme_get_ns_from_dev(dev); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 1558 | return sprintf(buf, "%8phd\n", ns->eui); |
| 1559 | } |
| 1560 | static DEVICE_ATTR(eui, S_IRUGO, eui_show, NULL); |
| 1561 | |
| 1562 | static ssize_t nsid_show(struct device *dev, struct device_attribute *attr, |
| 1563 | char *buf) |
| 1564 | { |
Simon A. F. Lund | 40267ef | 2016-09-16 14:25:08 +0200 | [diff] [blame] | 1565 | struct nvme_ns *ns = nvme_get_ns_from_dev(dev); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 1566 | return sprintf(buf, "%d\n", ns->ns_id); |
| 1567 | } |
| 1568 | static DEVICE_ATTR(nsid, S_IRUGO, nsid_show, NULL); |
| 1569 | |
| 1570 | static struct attribute *nvme_ns_attrs[] = { |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 1571 | &dev_attr_wwid.attr, |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 1572 | &dev_attr_uuid.attr, |
| 1573 | &dev_attr_eui.attr, |
| 1574 | &dev_attr_nsid.attr, |
| 1575 | NULL, |
| 1576 | }; |
| 1577 | |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 1578 | static umode_t nvme_ns_attrs_are_visible(struct kobject *kobj, |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 1579 | struct attribute *a, int n) |
| 1580 | { |
| 1581 | struct device *dev = container_of(kobj, struct device, kobj); |
Simon A. F. Lund | 40267ef | 2016-09-16 14:25:08 +0200 | [diff] [blame] | 1582 | struct nvme_ns *ns = nvme_get_ns_from_dev(dev); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 1583 | |
| 1584 | if (a == &dev_attr_uuid.attr) { |
| 1585 | if (!memchr_inv(ns->uuid, 0, sizeof(ns->uuid))) |
| 1586 | return 0; |
| 1587 | } |
| 1588 | if (a == &dev_attr_eui.attr) { |
| 1589 | if (!memchr_inv(ns->eui, 0, sizeof(ns->eui))) |
| 1590 | return 0; |
| 1591 | } |
| 1592 | return a->mode; |
| 1593 | } |
| 1594 | |
| 1595 | static const struct attribute_group nvme_ns_attr_group = { |
| 1596 | .attrs = nvme_ns_attrs, |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 1597 | .is_visible = nvme_ns_attrs_are_visible, |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 1598 | }; |
| 1599 | |
Ming Lin | 931e1c2 | 2016-02-26 13:24:19 -0800 | [diff] [blame] | 1600 | #define nvme_show_str_function(field) \ |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 1601 | static ssize_t field##_show(struct device *dev, \ |
| 1602 | struct device_attribute *attr, char *buf) \ |
| 1603 | { \ |
| 1604 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \ |
| 1605 | return sprintf(buf, "%.*s\n", (int)sizeof(ctrl->field), ctrl->field); \ |
| 1606 | } \ |
| 1607 | static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL); |
| 1608 | |
Ming Lin | 931e1c2 | 2016-02-26 13:24:19 -0800 | [diff] [blame] | 1609 | #define nvme_show_int_function(field) \ |
| 1610 | static ssize_t field##_show(struct device *dev, \ |
| 1611 | struct device_attribute *attr, char *buf) \ |
| 1612 | { \ |
| 1613 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \ |
| 1614 | return sprintf(buf, "%d\n", ctrl->field); \ |
| 1615 | } \ |
| 1616 | static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL); |
| 1617 | |
| 1618 | nvme_show_str_function(model); |
| 1619 | nvme_show_str_function(serial); |
| 1620 | nvme_show_str_function(firmware_rev); |
| 1621 | nvme_show_int_function(cntlid); |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 1622 | |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 1623 | static ssize_t nvme_sysfs_delete(struct device *dev, |
| 1624 | struct device_attribute *attr, const char *buf, |
| 1625 | size_t count) |
| 1626 | { |
| 1627 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 1628 | |
| 1629 | if (device_remove_file_self(dev, attr)) |
| 1630 | ctrl->ops->delete_ctrl(ctrl); |
| 1631 | return count; |
| 1632 | } |
| 1633 | static DEVICE_ATTR(delete_controller, S_IWUSR, NULL, nvme_sysfs_delete); |
| 1634 | |
| 1635 | static ssize_t nvme_sysfs_show_transport(struct device *dev, |
| 1636 | struct device_attribute *attr, |
| 1637 | char *buf) |
| 1638 | { |
| 1639 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 1640 | |
| 1641 | return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->ops->name); |
| 1642 | } |
| 1643 | static DEVICE_ATTR(transport, S_IRUGO, nvme_sysfs_show_transport, NULL); |
| 1644 | |
Sagi Grimberg | 8432bdb2 | 2016-11-28 01:47:40 +0200 | [diff] [blame] | 1645 | static ssize_t nvme_sysfs_show_state(struct device *dev, |
| 1646 | struct device_attribute *attr, |
| 1647 | char *buf) |
| 1648 | { |
| 1649 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 1650 | static const char *const state_name[] = { |
| 1651 | [NVME_CTRL_NEW] = "new", |
| 1652 | [NVME_CTRL_LIVE] = "live", |
| 1653 | [NVME_CTRL_RESETTING] = "resetting", |
| 1654 | [NVME_CTRL_RECONNECTING]= "reconnecting", |
| 1655 | [NVME_CTRL_DELETING] = "deleting", |
| 1656 | [NVME_CTRL_DEAD] = "dead", |
| 1657 | }; |
| 1658 | |
| 1659 | if ((unsigned)ctrl->state < ARRAY_SIZE(state_name) && |
| 1660 | state_name[ctrl->state]) |
| 1661 | return sprintf(buf, "%s\n", state_name[ctrl->state]); |
| 1662 | |
| 1663 | return sprintf(buf, "unknown state\n"); |
| 1664 | } |
| 1665 | |
| 1666 | static DEVICE_ATTR(state, S_IRUGO, nvme_sysfs_show_state, NULL); |
| 1667 | |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 1668 | static ssize_t nvme_sysfs_show_subsysnqn(struct device *dev, |
| 1669 | struct device_attribute *attr, |
| 1670 | char *buf) |
| 1671 | { |
| 1672 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 1673 | |
| 1674 | return snprintf(buf, PAGE_SIZE, "%s\n", |
| 1675 | ctrl->ops->get_subsysnqn(ctrl)); |
| 1676 | } |
| 1677 | static DEVICE_ATTR(subsysnqn, S_IRUGO, nvme_sysfs_show_subsysnqn, NULL); |
| 1678 | |
| 1679 | static ssize_t nvme_sysfs_show_address(struct device *dev, |
| 1680 | struct device_attribute *attr, |
| 1681 | char *buf) |
| 1682 | { |
| 1683 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 1684 | |
| 1685 | return ctrl->ops->get_address(ctrl, buf, PAGE_SIZE); |
| 1686 | } |
| 1687 | static DEVICE_ATTR(address, S_IRUGO, nvme_sysfs_show_address, NULL); |
| 1688 | |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 1689 | static struct attribute *nvme_dev_attrs[] = { |
| 1690 | &dev_attr_reset_controller.attr, |
Keith Busch | 9ec3bb2 | 2016-04-29 15:45:18 -0600 | [diff] [blame] | 1691 | &dev_attr_rescan_controller.attr, |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 1692 | &dev_attr_model.attr, |
| 1693 | &dev_attr_serial.attr, |
| 1694 | &dev_attr_firmware_rev.attr, |
Ming Lin | 931e1c2 | 2016-02-26 13:24:19 -0800 | [diff] [blame] | 1695 | &dev_attr_cntlid.attr, |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 1696 | &dev_attr_delete_controller.attr, |
| 1697 | &dev_attr_transport.attr, |
| 1698 | &dev_attr_subsysnqn.attr, |
| 1699 | &dev_attr_address.attr, |
Sagi Grimberg | 8432bdb2 | 2016-11-28 01:47:40 +0200 | [diff] [blame] | 1700 | &dev_attr_state.attr, |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 1701 | NULL |
| 1702 | }; |
| 1703 | |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 1704 | #define CHECK_ATTR(ctrl, a, name) \ |
| 1705 | if ((a) == &dev_attr_##name.attr && \ |
| 1706 | !(ctrl)->ops->get_##name) \ |
| 1707 | return 0 |
| 1708 | |
| 1709 | static umode_t nvme_dev_attrs_are_visible(struct kobject *kobj, |
| 1710 | struct attribute *a, int n) |
| 1711 | { |
| 1712 | struct device *dev = container_of(kobj, struct device, kobj); |
| 1713 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 1714 | |
| 1715 | if (a == &dev_attr_delete_controller.attr) { |
| 1716 | if (!ctrl->ops->delete_ctrl) |
| 1717 | return 0; |
| 1718 | } |
| 1719 | |
| 1720 | CHECK_ATTR(ctrl, a, subsysnqn); |
| 1721 | CHECK_ATTR(ctrl, a, address); |
| 1722 | |
| 1723 | return a->mode; |
| 1724 | } |
| 1725 | |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 1726 | static struct attribute_group nvme_dev_attrs_group = { |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 1727 | .attrs = nvme_dev_attrs, |
| 1728 | .is_visible = nvme_dev_attrs_are_visible, |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 1729 | }; |
| 1730 | |
| 1731 | static const struct attribute_group *nvme_dev_attr_groups[] = { |
| 1732 | &nvme_dev_attrs_group, |
| 1733 | NULL, |
| 1734 | }; |
| 1735 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1736 | static int ns_cmp(void *priv, struct list_head *a, struct list_head *b) |
| 1737 | { |
| 1738 | struct nvme_ns *nsa = container_of(a, struct nvme_ns, list); |
| 1739 | struct nvme_ns *nsb = container_of(b, struct nvme_ns, list); |
| 1740 | |
| 1741 | return nsa->ns_id - nsb->ns_id; |
| 1742 | } |
| 1743 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1744 | static struct nvme_ns *nvme_find_get_ns(struct nvme_ctrl *ctrl, unsigned nsid) |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1745 | { |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1746 | struct nvme_ns *ns, *ret = NULL; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1747 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1748 | mutex_lock(&ctrl->namespaces_mutex); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1749 | list_for_each_entry(ns, &ctrl->namespaces, list) { |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1750 | if (ns->ns_id == nsid) { |
| 1751 | kref_get(&ns->kref); |
| 1752 | ret = ns; |
| 1753 | break; |
| 1754 | } |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1755 | if (ns->ns_id > nsid) |
| 1756 | break; |
| 1757 | } |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1758 | mutex_unlock(&ctrl->namespaces_mutex); |
| 1759 | return ret; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1760 | } |
| 1761 | |
| 1762 | static void nvme_alloc_ns(struct nvme_ctrl *ctrl, unsigned nsid) |
| 1763 | { |
| 1764 | struct nvme_ns *ns; |
| 1765 | struct gendisk *disk; |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1766 | struct nvme_id_ns *id; |
| 1767 | char disk_name[DISK_NAME_LEN]; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1768 | int node = dev_to_node(ctrl->dev); |
| 1769 | |
| 1770 | ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node); |
| 1771 | if (!ns) |
| 1772 | return; |
| 1773 | |
Keith Busch | 075790e | 2016-02-24 09:15:53 -0700 | [diff] [blame] | 1774 | ns->instance = ida_simple_get(&ctrl->ns_ida, 1, 0, GFP_KERNEL); |
| 1775 | if (ns->instance < 0) |
| 1776 | goto out_free_ns; |
| 1777 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1778 | ns->queue = blk_mq_init_queue(ctrl->tagset); |
| 1779 | if (IS_ERR(ns->queue)) |
Keith Busch | 075790e | 2016-02-24 09:15:53 -0700 | [diff] [blame] | 1780 | goto out_release_instance; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1781 | queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue); |
| 1782 | ns->queue->queuedata = ns; |
| 1783 | ns->ctrl = ctrl; |
| 1784 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1785 | kref_init(&ns->kref); |
| 1786 | ns->ns_id = nsid; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1787 | ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */ |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1788 | |
| 1789 | blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift); |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1790 | nvme_set_queue_limits(ctrl, ns->queue); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1791 | |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1792 | sprintf(disk_name, "nvme%dn%d", ctrl->instance, ns->instance); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1793 | |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1794 | if (nvme_revalidate_ns(ns, &id)) |
| 1795 | goto out_free_queue; |
| 1796 | |
Matias Bjørling | 3dc87dd | 2016-11-28 22:38:53 +0100 | [diff] [blame] | 1797 | if (nvme_nvm_ns_supported(ns, id) && |
| 1798 | nvme_nvm_register(ns, disk_name, node)) { |
| 1799 | dev_warn(ctrl->dev, "%s: LightNVM init failure\n", __func__); |
| 1800 | goto out_free_id; |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1801 | } |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1802 | |
Matias Bjørling | 3dc87dd | 2016-11-28 22:38:53 +0100 | [diff] [blame] | 1803 | disk = alloc_disk_node(0, node); |
| 1804 | if (!disk) |
| 1805 | goto out_free_id; |
| 1806 | |
| 1807 | disk->fops = &nvme_fops; |
| 1808 | disk->private_data = ns; |
| 1809 | disk->queue = ns->queue; |
| 1810 | disk->flags = GENHD_FL_EXT_DEVT; |
| 1811 | memcpy(disk->disk_name, disk_name, DISK_NAME_LEN); |
| 1812 | ns->disk = disk; |
| 1813 | |
| 1814 | __nvme_revalidate_disk(disk, id); |
| 1815 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1816 | mutex_lock(&ctrl->namespaces_mutex); |
| 1817 | list_add_tail(&ns->list, &ctrl->namespaces); |
| 1818 | mutex_unlock(&ctrl->namespaces_mutex); |
| 1819 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1820 | kref_get(&ctrl->kref); |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1821 | |
| 1822 | kfree(id); |
| 1823 | |
Dan Williams | 0d52c756 | 2016-06-15 19:44:20 -0700 | [diff] [blame] | 1824 | device_add_disk(ctrl->device, ns->disk); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 1825 | if (sysfs_create_group(&disk_to_dev(ns->disk)->kobj, |
| 1826 | &nvme_ns_attr_group)) |
| 1827 | pr_warn("%s: failed to create sysfs group for identification\n", |
| 1828 | ns->disk->disk_name); |
Matias Bjørling | 3dc87dd | 2016-11-28 22:38:53 +0100 | [diff] [blame] | 1829 | if (ns->ndev && nvme_nvm_register_sysfs(ns)) |
| 1830 | pr_warn("%s: failed to register lightnvm sysfs group for identification\n", |
| 1831 | ns->disk->disk_name); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1832 | return; |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1833 | out_free_id: |
| 1834 | kfree(id); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1835 | out_free_queue: |
| 1836 | blk_cleanup_queue(ns->queue); |
Keith Busch | 075790e | 2016-02-24 09:15:53 -0700 | [diff] [blame] | 1837 | out_release_instance: |
| 1838 | ida_simple_remove(&ctrl->ns_ida, ns->instance); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1839 | out_free_ns: |
| 1840 | kfree(ns); |
| 1841 | } |
| 1842 | |
| 1843 | static void nvme_ns_remove(struct nvme_ns *ns) |
| 1844 | { |
Keith Busch | 646017a | 2016-02-24 09:15:54 -0700 | [diff] [blame] | 1845 | if (test_and_set_bit(NVME_NS_REMOVING, &ns->flags)) |
| 1846 | return; |
| 1847 | |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 1848 | if (ns->disk && ns->disk->flags & GENHD_FL_UP) { |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1849 | if (blk_get_integrity(ns->disk)) |
| 1850 | blk_integrity_unregister(ns->disk); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 1851 | sysfs_remove_group(&disk_to_dev(ns->disk)->kobj, |
| 1852 | &nvme_ns_attr_group); |
Matias Bjørling | 3dc87dd | 2016-11-28 22:38:53 +0100 | [diff] [blame] | 1853 | if (ns->ndev) |
| 1854 | nvme_nvm_unregister_sysfs(ns); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1855 | del_gendisk(ns->disk); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1856 | blk_mq_abort_requeue_list(ns->queue); |
| 1857 | blk_cleanup_queue(ns->queue); |
| 1858 | } |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1859 | |
| 1860 | mutex_lock(&ns->ctrl->namespaces_mutex); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1861 | list_del_init(&ns->list); |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1862 | mutex_unlock(&ns->ctrl->namespaces_mutex); |
| 1863 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1864 | nvme_put_ns(ns); |
| 1865 | } |
| 1866 | |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1867 | static void nvme_validate_ns(struct nvme_ctrl *ctrl, unsigned nsid) |
| 1868 | { |
| 1869 | struct nvme_ns *ns; |
| 1870 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1871 | ns = nvme_find_get_ns(ctrl, nsid); |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1872 | if (ns) { |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 1873 | if (ns->disk && revalidate_disk(ns->disk)) |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1874 | nvme_ns_remove(ns); |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1875 | nvme_put_ns(ns); |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1876 | } else |
| 1877 | nvme_alloc_ns(ctrl, nsid); |
| 1878 | } |
| 1879 | |
Sunad Bhandary | 47b0e50 | 2016-05-27 15:59:43 +0530 | [diff] [blame] | 1880 | static void nvme_remove_invalid_namespaces(struct nvme_ctrl *ctrl, |
| 1881 | unsigned nsid) |
| 1882 | { |
| 1883 | struct nvme_ns *ns, *next; |
| 1884 | |
| 1885 | list_for_each_entry_safe(ns, next, &ctrl->namespaces, list) { |
| 1886 | if (ns->ns_id > nsid) |
| 1887 | nvme_ns_remove(ns); |
| 1888 | } |
| 1889 | } |
| 1890 | |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1891 | static int nvme_scan_ns_list(struct nvme_ctrl *ctrl, unsigned nn) |
| 1892 | { |
| 1893 | struct nvme_ns *ns; |
| 1894 | __le32 *ns_list; |
| 1895 | unsigned i, j, nsid, prev = 0, num_lists = DIV_ROUND_UP(nn, 1024); |
| 1896 | int ret = 0; |
| 1897 | |
| 1898 | ns_list = kzalloc(0x1000, GFP_KERNEL); |
| 1899 | if (!ns_list) |
| 1900 | return -ENOMEM; |
| 1901 | |
| 1902 | for (i = 0; i < num_lists; i++) { |
| 1903 | ret = nvme_identify_ns_list(ctrl, prev, ns_list); |
| 1904 | if (ret) |
Sunad Bhandary | 47b0e50 | 2016-05-27 15:59:43 +0530 | [diff] [blame] | 1905 | goto free; |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1906 | |
| 1907 | for (j = 0; j < min(nn, 1024U); j++) { |
| 1908 | nsid = le32_to_cpu(ns_list[j]); |
| 1909 | if (!nsid) |
| 1910 | goto out; |
| 1911 | |
| 1912 | nvme_validate_ns(ctrl, nsid); |
| 1913 | |
| 1914 | while (++prev < nsid) { |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1915 | ns = nvme_find_get_ns(ctrl, prev); |
| 1916 | if (ns) { |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1917 | nvme_ns_remove(ns); |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1918 | nvme_put_ns(ns); |
| 1919 | } |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1920 | } |
| 1921 | } |
| 1922 | nn -= j; |
| 1923 | } |
| 1924 | out: |
Sunad Bhandary | 47b0e50 | 2016-05-27 15:59:43 +0530 | [diff] [blame] | 1925 | nvme_remove_invalid_namespaces(ctrl, prev); |
| 1926 | free: |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1927 | kfree(ns_list); |
| 1928 | return ret; |
| 1929 | } |
| 1930 | |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 1931 | static void nvme_scan_ns_sequential(struct nvme_ctrl *ctrl, unsigned nn) |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1932 | { |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1933 | unsigned i; |
| 1934 | |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1935 | for (i = 1; i <= nn; i++) |
| 1936 | nvme_validate_ns(ctrl, i); |
| 1937 | |
Sunad Bhandary | 47b0e50 | 2016-05-27 15:59:43 +0530 | [diff] [blame] | 1938 | nvme_remove_invalid_namespaces(ctrl, nn); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1939 | } |
| 1940 | |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 1941 | static void nvme_scan_work(struct work_struct *work) |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1942 | { |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 1943 | struct nvme_ctrl *ctrl = |
| 1944 | container_of(work, struct nvme_ctrl, scan_work); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1945 | struct nvme_id_ctrl *id; |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1946 | unsigned nn; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1947 | |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 1948 | if (ctrl->state != NVME_CTRL_LIVE) |
| 1949 | return; |
| 1950 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1951 | if (nvme_identify_ctrl(ctrl, &id)) |
| 1952 | return; |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1953 | |
| 1954 | nn = le32_to_cpu(id->nn); |
Gabriel Krisman Bertazi | 8ef2074 | 2016-10-19 09:51:05 -0600 | [diff] [blame] | 1955 | if (ctrl->vs >= NVME_VS(1, 1, 0) && |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1956 | !(ctrl->quirks & NVME_QUIRK_IDENTIFY_CNS)) { |
| 1957 | if (!nvme_scan_ns_list(ctrl, nn)) |
| 1958 | goto done; |
| 1959 | } |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 1960 | nvme_scan_ns_sequential(ctrl, nn); |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1961 | done: |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1962 | mutex_lock(&ctrl->namespaces_mutex); |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 1963 | list_sort(NULL, &ctrl->namespaces, ns_cmp); |
Christoph Hellwig | 69d3b8a | 2015-12-24 15:27:00 +0100 | [diff] [blame] | 1964 | mutex_unlock(&ctrl->namespaces_mutex); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1965 | kfree(id); |
| 1966 | } |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 1967 | |
| 1968 | void nvme_queue_scan(struct nvme_ctrl *ctrl) |
| 1969 | { |
| 1970 | /* |
| 1971 | * Do not queue new scan work when a controller is reset during |
| 1972 | * removal. |
| 1973 | */ |
| 1974 | if (ctrl->state == NVME_CTRL_LIVE) |
| 1975 | schedule_work(&ctrl->scan_work); |
| 1976 | } |
| 1977 | EXPORT_SYMBOL_GPL(nvme_queue_scan); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1978 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 1979 | /* |
| 1980 | * This function iterates the namespace list unlocked to allow recovery from |
| 1981 | * controller failure. It is up to the caller to ensure the namespace list is |
| 1982 | * not modified by scan work while this function is executing. |
| 1983 | */ |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1984 | void nvme_remove_namespaces(struct nvme_ctrl *ctrl) |
| 1985 | { |
| 1986 | struct nvme_ns *ns, *next; |
| 1987 | |
Keith Busch | 0ff9d4e | 2016-05-12 08:37:14 -0600 | [diff] [blame] | 1988 | /* |
| 1989 | * The dead states indicates the controller was not gracefully |
| 1990 | * disconnected. In that case, we won't be able to flush any data while |
| 1991 | * removing the namespaces' disks; fail all the queues now to avoid |
| 1992 | * potentially having to clean up the failed sync later. |
| 1993 | */ |
| 1994 | if (ctrl->state == NVME_CTRL_DEAD) |
| 1995 | nvme_kill_queues(ctrl); |
| 1996 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1997 | list_for_each_entry_safe(ns, next, &ctrl->namespaces, list) |
| 1998 | nvme_ns_remove(ns); |
| 1999 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 2000 | EXPORT_SYMBOL_GPL(nvme_remove_namespaces); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2001 | |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 2002 | static void nvme_async_event_work(struct work_struct *work) |
| 2003 | { |
| 2004 | struct nvme_ctrl *ctrl = |
| 2005 | container_of(work, struct nvme_ctrl, async_event_work); |
| 2006 | |
| 2007 | spin_lock_irq(&ctrl->lock); |
| 2008 | while (ctrl->event_limit > 0) { |
| 2009 | int aer_idx = --ctrl->event_limit; |
| 2010 | |
| 2011 | spin_unlock_irq(&ctrl->lock); |
| 2012 | ctrl->ops->submit_async_event(ctrl, aer_idx); |
| 2013 | spin_lock_irq(&ctrl->lock); |
| 2014 | } |
| 2015 | spin_unlock_irq(&ctrl->lock); |
| 2016 | } |
| 2017 | |
Christoph Hellwig | 7bf5853 | 2016-11-10 07:32:34 -0800 | [diff] [blame] | 2018 | void nvme_complete_async_event(struct nvme_ctrl *ctrl, __le16 status, |
| 2019 | union nvme_result *res) |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 2020 | { |
Christoph Hellwig | 7bf5853 | 2016-11-10 07:32:34 -0800 | [diff] [blame] | 2021 | u32 result = le32_to_cpu(res->u32); |
| 2022 | bool done = true; |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 2023 | |
Christoph Hellwig | 7bf5853 | 2016-11-10 07:32:34 -0800 | [diff] [blame] | 2024 | switch (le16_to_cpu(status) >> 1) { |
| 2025 | case NVME_SC_SUCCESS: |
| 2026 | done = false; |
| 2027 | /*FALLTHRU*/ |
| 2028 | case NVME_SC_ABORT_REQ: |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 2029 | ++ctrl->event_limit; |
| 2030 | schedule_work(&ctrl->async_event_work); |
Christoph Hellwig | 7bf5853 | 2016-11-10 07:32:34 -0800 | [diff] [blame] | 2031 | break; |
| 2032 | default: |
| 2033 | break; |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 2034 | } |
| 2035 | |
Christoph Hellwig | 7bf5853 | 2016-11-10 07:32:34 -0800 | [diff] [blame] | 2036 | if (done) |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 2037 | return; |
| 2038 | |
| 2039 | switch (result & 0xff07) { |
| 2040 | case NVME_AER_NOTICE_NS_CHANGED: |
| 2041 | dev_info(ctrl->device, "rescanning\n"); |
| 2042 | nvme_queue_scan(ctrl); |
| 2043 | break; |
| 2044 | default: |
| 2045 | dev_warn(ctrl->device, "async event result %08x\n", result); |
| 2046 | } |
| 2047 | } |
| 2048 | EXPORT_SYMBOL_GPL(nvme_complete_async_event); |
| 2049 | |
| 2050 | void nvme_queue_async_events(struct nvme_ctrl *ctrl) |
| 2051 | { |
| 2052 | ctrl->event_limit = NVME_NR_AERS; |
| 2053 | schedule_work(&ctrl->async_event_work); |
| 2054 | } |
| 2055 | EXPORT_SYMBOL_GPL(nvme_queue_async_events); |
| 2056 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2057 | static DEFINE_IDA(nvme_instance_ida); |
| 2058 | |
| 2059 | static int nvme_set_instance(struct nvme_ctrl *ctrl) |
| 2060 | { |
| 2061 | int instance, error; |
| 2062 | |
| 2063 | do { |
| 2064 | if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL)) |
| 2065 | return -ENODEV; |
| 2066 | |
| 2067 | spin_lock(&dev_list_lock); |
| 2068 | error = ida_get_new(&nvme_instance_ida, &instance); |
| 2069 | spin_unlock(&dev_list_lock); |
| 2070 | } while (error == -EAGAIN); |
| 2071 | |
| 2072 | if (error) |
| 2073 | return -ENODEV; |
| 2074 | |
| 2075 | ctrl->instance = instance; |
| 2076 | return 0; |
| 2077 | } |
| 2078 | |
| 2079 | static void nvme_release_instance(struct nvme_ctrl *ctrl) |
| 2080 | { |
| 2081 | spin_lock(&dev_list_lock); |
| 2082 | ida_remove(&nvme_instance_ida, ctrl->instance); |
| 2083 | spin_unlock(&dev_list_lock); |
| 2084 | } |
| 2085 | |
Keith Busch | 53029b0 | 2015-11-28 15:41:02 +0100 | [diff] [blame] | 2086 | void nvme_uninit_ctrl(struct nvme_ctrl *ctrl) |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 2087 | { |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 2088 | flush_work(&ctrl->async_event_work); |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 2089 | flush_work(&ctrl->scan_work); |
| 2090 | nvme_remove_namespaces(ctrl); |
| 2091 | |
Keith Busch | 53029b0 | 2015-11-28 15:41:02 +0100 | [diff] [blame] | 2092 | device_destroy(nvme_class, MKDEV(nvme_char_major, ctrl->instance)); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2093 | |
| 2094 | spin_lock(&dev_list_lock); |
| 2095 | list_del(&ctrl->node); |
| 2096 | spin_unlock(&dev_list_lock); |
Keith Busch | 53029b0 | 2015-11-28 15:41:02 +0100 | [diff] [blame] | 2097 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 2098 | EXPORT_SYMBOL_GPL(nvme_uninit_ctrl); |
Keith Busch | 53029b0 | 2015-11-28 15:41:02 +0100 | [diff] [blame] | 2099 | |
| 2100 | static void nvme_free_ctrl(struct kref *kref) |
| 2101 | { |
| 2102 | struct nvme_ctrl *ctrl = container_of(kref, struct nvme_ctrl, kref); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2103 | |
| 2104 | put_device(ctrl->device); |
| 2105 | nvme_release_instance(ctrl); |
Keith Busch | 075790e | 2016-02-24 09:15:53 -0700 | [diff] [blame] | 2106 | ida_destroy(&ctrl->ns_ida); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2107 | |
| 2108 | ctrl->ops->free_ctrl(ctrl); |
| 2109 | } |
| 2110 | |
| 2111 | void nvme_put_ctrl(struct nvme_ctrl *ctrl) |
| 2112 | { |
| 2113 | kref_put(&ctrl->kref, nvme_free_ctrl); |
| 2114 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 2115 | EXPORT_SYMBOL_GPL(nvme_put_ctrl); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2116 | |
| 2117 | /* |
| 2118 | * Initialize a NVMe controller structures. This needs to be called during |
| 2119 | * earliest initialization so that we have the initialized structured around |
| 2120 | * during probing. |
| 2121 | */ |
| 2122 | int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev, |
| 2123 | const struct nvme_ctrl_ops *ops, unsigned long quirks) |
| 2124 | { |
| 2125 | int ret; |
| 2126 | |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 2127 | ctrl->state = NVME_CTRL_NEW; |
| 2128 | spin_lock_init(&ctrl->lock); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2129 | INIT_LIST_HEAD(&ctrl->namespaces); |
Christoph Hellwig | 69d3b8a | 2015-12-24 15:27:00 +0100 | [diff] [blame] | 2130 | mutex_init(&ctrl->namespaces_mutex); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2131 | kref_init(&ctrl->kref); |
| 2132 | ctrl->dev = dev; |
| 2133 | ctrl->ops = ops; |
| 2134 | ctrl->quirks = quirks; |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 2135 | INIT_WORK(&ctrl->scan_work, nvme_scan_work); |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 2136 | INIT_WORK(&ctrl->async_event_work, nvme_async_event_work); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2137 | |
| 2138 | ret = nvme_set_instance(ctrl); |
| 2139 | if (ret) |
| 2140 | goto out; |
| 2141 | |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 2142 | ctrl->device = device_create_with_groups(nvme_class, ctrl->dev, |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2143 | MKDEV(nvme_char_major, ctrl->instance), |
Christoph Hellwig | f4f0f63 | 2016-02-09 12:44:03 -0700 | [diff] [blame] | 2144 | ctrl, nvme_dev_attr_groups, |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 2145 | "nvme%d", ctrl->instance); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2146 | if (IS_ERR(ctrl->device)) { |
| 2147 | ret = PTR_ERR(ctrl->device); |
| 2148 | goto out_release_instance; |
| 2149 | } |
| 2150 | get_device(ctrl->device); |
Keith Busch | 075790e | 2016-02-24 09:15:53 -0700 | [diff] [blame] | 2151 | ida_init(&ctrl->ns_ida); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2152 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2153 | spin_lock(&dev_list_lock); |
| 2154 | list_add_tail(&ctrl->node, &nvme_ctrl_list); |
| 2155 | spin_unlock(&dev_list_lock); |
| 2156 | |
| 2157 | return 0; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2158 | out_release_instance: |
| 2159 | nvme_release_instance(ctrl); |
| 2160 | out: |
| 2161 | return ret; |
| 2162 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 2163 | EXPORT_SYMBOL_GPL(nvme_init_ctrl); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2164 | |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 2165 | /** |
| 2166 | * nvme_kill_queues(): Ends all namespace queues |
| 2167 | * @ctrl: the dead controller that needs to end |
| 2168 | * |
| 2169 | * Call this function when the driver determines it is unable to get the |
| 2170 | * controller in a state capable of servicing IO. |
| 2171 | */ |
| 2172 | void nvme_kill_queues(struct nvme_ctrl *ctrl) |
| 2173 | { |
| 2174 | struct nvme_ns *ns; |
| 2175 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2176 | mutex_lock(&ctrl->namespaces_mutex); |
| 2177 | list_for_each_entry(ns, &ctrl->namespaces, list) { |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 2178 | /* |
| 2179 | * Revalidating a dead namespace sets capacity to 0. This will |
| 2180 | * end buffered writers dirtying pages that can't be synced. |
| 2181 | */ |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 2182 | if (ns->disk && !test_and_set_bit(NVME_NS_DEAD, &ns->flags)) |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 2183 | revalidate_disk(ns->disk); |
| 2184 | |
| 2185 | blk_set_queue_dying(ns->queue); |
| 2186 | blk_mq_abort_requeue_list(ns->queue); |
| 2187 | blk_mq_start_stopped_hw_queues(ns->queue, true); |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 2188 | } |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2189 | mutex_unlock(&ctrl->namespaces_mutex); |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 2190 | } |
Linus Torvalds | 237045f | 2016-03-18 17:13:31 -0700 | [diff] [blame] | 2191 | EXPORT_SYMBOL_GPL(nvme_kill_queues); |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 2192 | |
Keith Busch | 2564626 | 2016-01-04 09:10:57 -0700 | [diff] [blame] | 2193 | void nvme_stop_queues(struct nvme_ctrl *ctrl) |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 2194 | { |
| 2195 | struct nvme_ns *ns; |
| 2196 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2197 | mutex_lock(&ctrl->namespaces_mutex); |
Bart Van Assche | a6eaa88 | 2016-10-28 17:23:40 -0700 | [diff] [blame] | 2198 | list_for_each_entry(ns, &ctrl->namespaces, list) |
Bart Van Assche | 3174dd3 | 2016-10-28 17:23:19 -0700 | [diff] [blame] | 2199 | blk_mq_quiesce_queue(ns->queue); |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2200 | mutex_unlock(&ctrl->namespaces_mutex); |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 2201 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 2202 | EXPORT_SYMBOL_GPL(nvme_stop_queues); |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 2203 | |
Keith Busch | 2564626 | 2016-01-04 09:10:57 -0700 | [diff] [blame] | 2204 | void nvme_start_queues(struct nvme_ctrl *ctrl) |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 2205 | { |
| 2206 | struct nvme_ns *ns; |
| 2207 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2208 | mutex_lock(&ctrl->namespaces_mutex); |
| 2209 | list_for_each_entry(ns, &ctrl->namespaces, list) { |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 2210 | blk_mq_start_stopped_hw_queues(ns->queue, true); |
| 2211 | blk_mq_kick_requeue_list(ns->queue); |
| 2212 | } |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2213 | mutex_unlock(&ctrl->namespaces_mutex); |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 2214 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 2215 | EXPORT_SYMBOL_GPL(nvme_start_queues); |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 2216 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2217 | int __init nvme_core_init(void) |
| 2218 | { |
| 2219 | int result; |
| 2220 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2221 | result = __register_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme", |
| 2222 | &nvme_dev_fops); |
| 2223 | if (result < 0) |
NeilBrown | b09dcf5 | 2016-07-13 11:03:58 -0700 | [diff] [blame] | 2224 | return result; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2225 | else if (result > 0) |
| 2226 | nvme_char_major = result; |
| 2227 | |
| 2228 | nvme_class = class_create(THIS_MODULE, "nvme"); |
| 2229 | if (IS_ERR(nvme_class)) { |
| 2230 | result = PTR_ERR(nvme_class); |
| 2231 | goto unregister_chrdev; |
| 2232 | } |
| 2233 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2234 | return 0; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2235 | |
| 2236 | unregister_chrdev: |
| 2237 | __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme"); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2238 | return result; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2239 | } |
| 2240 | |
| 2241 | void nvme_core_exit(void) |
| 2242 | { |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2243 | class_destroy(nvme_class); |
| 2244 | __unregister_chrdev(nvme_char_major, 0, NVME_MINORS, "nvme"); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2245 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 2246 | |
| 2247 | MODULE_LICENSE("GPL"); |
| 2248 | MODULE_VERSION("1.0"); |
| 2249 | module_init(nvme_core_init); |
| 2250 | module_exit(nvme_core_exit); |