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> |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 29 | #include <linux/pm_qos.h> |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 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 | |
Marc Olson | 8ae4e44 | 2017-09-06 17:23:56 -0700 | [diff] [blame] | 37 | unsigned int admin_timeout = 60; |
| 38 | module_param(admin_timeout, uint, 0644); |
Ming Lin | ba0ba7d | 2016-02-10 10:03:30 -0800 | [diff] [blame] | 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 | |
Marc Olson | 8ae4e44 | 2017-09-06 17:23:56 -0700 | [diff] [blame] | 42 | unsigned int nvme_io_timeout = 30; |
| 43 | module_param_named(io_timeout, nvme_io_timeout, uint, 0644); |
Ming Lin | ba0ba7d | 2016-02-10 10:03:30 -0800 | [diff] [blame] | 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 | |
Christoph Hellwig | b3b1b0b | 2017-06-12 18:30:51 +0200 | [diff] [blame] | 47 | static unsigned char shutdown_timeout = 5; |
Ming Lin | ba0ba7d | 2016-02-10 10:03:30 -0800 | [diff] [blame] | 48 | module_param(shutdown_timeout, byte, 0644); |
| 49 | MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown"); |
| 50 | |
Christoph Hellwig | 44e44b2 | 2017-04-05 19:18:11 +0200 | [diff] [blame] | 51 | static u8 nvme_max_retries = 5; |
| 52 | module_param_named(max_retries, nvme_max_retries, byte, 0644); |
Keith Busch | f80ec96 | 2016-07-12 16:20:31 -0700 | [diff] [blame] | 53 | MODULE_PARM_DESC(max_retries, "max number of retries a command may have"); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 54 | |
Kai-Heng Feng | 9947d6a | 2017-06-07 15:25:43 +0800 | [diff] [blame] | 55 | static unsigned long default_ps_max_latency_us = 100000; |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 56 | module_param(default_ps_max_latency_us, ulong, 0644); |
| 57 | MODULE_PARM_DESC(default_ps_max_latency_us, |
| 58 | "max power saving latency for new devices; use PM QOS to change per device"); |
| 59 | |
Andy Lutomirski | c35e30b | 2017-04-21 16:19:24 -0700 | [diff] [blame] | 60 | static bool force_apst; |
| 61 | module_param(force_apst, bool, 0644); |
| 62 | MODULE_PARM_DESC(force_apst, "allow APST for newly enumerated devices even if quirked off"); |
| 63 | |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 64 | static bool streams; |
| 65 | module_param(streams, bool, 0644); |
| 66 | MODULE_PARM_DESC(streams, "turn on support for Streams write directives"); |
| 67 | |
Sagi Grimberg | 9a6327d | 2017-06-07 20:31:55 +0200 | [diff] [blame] | 68 | struct workqueue_struct *nvme_wq; |
| 69 | EXPORT_SYMBOL_GPL(nvme_wq); |
| 70 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 71 | static DEFINE_IDA(nvme_subsystems_ida); |
| 72 | static LIST_HEAD(nvme_subsystems); |
| 73 | static DEFINE_MUTEX(nvme_subsystems_lock); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 74 | |
Christoph Hellwig | 9843f68 | 2017-10-18 13:10:01 +0200 | [diff] [blame] | 75 | static DEFINE_IDA(nvme_instance_ida); |
Christoph Hellwig | a6a5149 | 2017-10-18 16:59:25 +0200 | [diff] [blame] | 76 | static dev_t nvme_chr_devt; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 77 | static struct class *nvme_class; |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 78 | static struct class *nvme_subsys_class; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 79 | |
Keith Busch | 84fef62 | 2017-11-07 10:28:32 -0700 | [diff] [blame] | 80 | static void nvme_ns_remove(struct nvme_ns *ns); |
| 81 | static int nvme_revalidate_disk(struct gendisk *disk); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 82 | |
Arnav Dawn | b6dccf7 | 2017-07-12 16:10:40 +0530 | [diff] [blame] | 83 | static __le32 nvme_get_log_dw10(u8 lid, size_t size) |
| 84 | { |
| 85 | return cpu_to_le32((((size / 4) - 1) << 16) | lid); |
| 86 | } |
| 87 | |
Christoph Hellwig | d86c4d8 | 2017-06-15 15:41:08 +0200 | [diff] [blame] | 88 | int nvme_reset_ctrl(struct nvme_ctrl *ctrl) |
| 89 | { |
| 90 | if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_RESETTING)) |
| 91 | return -EBUSY; |
| 92 | if (!queue_work(nvme_wq, &ctrl->reset_work)) |
| 93 | return -EBUSY; |
| 94 | return 0; |
| 95 | } |
| 96 | EXPORT_SYMBOL_GPL(nvme_reset_ctrl); |
| 97 | |
| 98 | static int nvme_reset_ctrl_sync(struct nvme_ctrl *ctrl) |
| 99 | { |
| 100 | int ret; |
| 101 | |
| 102 | ret = nvme_reset_ctrl(ctrl); |
| 103 | if (!ret) |
| 104 | flush_work(&ctrl->reset_work); |
| 105 | return ret; |
| 106 | } |
| 107 | |
Christoph Hellwig | c5017e8 | 2017-10-29 10:44:29 +0200 | [diff] [blame] | 108 | static void nvme_delete_ctrl_work(struct work_struct *work) |
| 109 | { |
| 110 | struct nvme_ctrl *ctrl = |
| 111 | container_of(work, struct nvme_ctrl, delete_work); |
| 112 | |
Sagi Grimberg | 4054637 | 2017-10-29 14:21:02 +0200 | [diff] [blame] | 113 | flush_work(&ctrl->reset_work); |
Christoph Hellwig | 6cd53d1 | 2017-10-29 10:44:31 +0200 | [diff] [blame] | 114 | nvme_stop_ctrl(ctrl); |
| 115 | nvme_remove_namespaces(ctrl); |
Christoph Hellwig | c5017e8 | 2017-10-29 10:44:29 +0200 | [diff] [blame] | 116 | ctrl->ops->delete_ctrl(ctrl); |
Christoph Hellwig | 6cd53d1 | 2017-10-29 10:44:31 +0200 | [diff] [blame] | 117 | nvme_uninit_ctrl(ctrl); |
| 118 | nvme_put_ctrl(ctrl); |
Christoph Hellwig | c5017e8 | 2017-10-29 10:44:29 +0200 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | int nvme_delete_ctrl(struct nvme_ctrl *ctrl) |
| 122 | { |
| 123 | if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING)) |
| 124 | return -EBUSY; |
| 125 | if (!queue_work(nvme_wq, &ctrl->delete_work)) |
| 126 | return -EBUSY; |
| 127 | return 0; |
| 128 | } |
| 129 | EXPORT_SYMBOL_GPL(nvme_delete_ctrl); |
| 130 | |
| 131 | int nvme_delete_ctrl_sync(struct nvme_ctrl *ctrl) |
| 132 | { |
| 133 | int ret = 0; |
| 134 | |
| 135 | /* |
| 136 | * Keep a reference until the work is flushed since ->delete_ctrl |
| 137 | * can free the controller. |
| 138 | */ |
| 139 | nvme_get_ctrl(ctrl); |
| 140 | ret = nvme_delete_ctrl(ctrl); |
| 141 | if (!ret) |
| 142 | flush_work(&ctrl->delete_work); |
| 143 | nvme_put_ctrl(ctrl); |
| 144 | return ret; |
| 145 | } |
| 146 | EXPORT_SYMBOL_GPL(nvme_delete_ctrl_sync); |
| 147 | |
Christoph Hellwig | 715ea9e | 2017-11-07 17:27:34 +0100 | [diff] [blame] | 148 | static inline bool nvme_ns_has_pi(struct nvme_ns *ns) |
| 149 | { |
| 150 | return ns->pi_type && ns->ms == sizeof(struct t10_pi_tuple); |
| 151 | } |
| 152 | |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 153 | static blk_status_t nvme_error_status(struct request *req) |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 154 | { |
| 155 | switch (nvme_req(req)->status & 0x7ff) { |
| 156 | case NVME_SC_SUCCESS: |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 157 | return BLK_STS_OK; |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 158 | case NVME_SC_CAP_EXCEEDED: |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 159 | return BLK_STS_NOSPC; |
Junxiong Guan | e02ab02 | 2017-04-21 12:59:07 +0200 | [diff] [blame] | 160 | case NVME_SC_ONCS_NOT_SUPPORTED: |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 161 | return BLK_STS_NOTSUPP; |
Junxiong Guan | e02ab02 | 2017-04-21 12:59:07 +0200 | [diff] [blame] | 162 | case NVME_SC_WRITE_FAULT: |
| 163 | case NVME_SC_READ_ERROR: |
| 164 | case NVME_SC_UNWRITTEN_BLOCK: |
Christoph Hellwig | a751da3 | 2017-08-22 10:17:03 +0200 | [diff] [blame] | 165 | case NVME_SC_ACCESS_DENIED: |
| 166 | case NVME_SC_READ_ONLY: |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 167 | return BLK_STS_MEDIUM; |
Christoph Hellwig | a751da3 | 2017-08-22 10:17:03 +0200 | [diff] [blame] | 168 | case NVME_SC_GUARD_CHECK: |
| 169 | case NVME_SC_APPTAG_CHECK: |
| 170 | case NVME_SC_REFTAG_CHECK: |
| 171 | case NVME_SC_INVALID_PI: |
| 172 | return BLK_STS_PROTECTION; |
| 173 | case NVME_SC_RESERVATION_CONFLICT: |
| 174 | return BLK_STS_NEXUS; |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 175 | default: |
| 176 | return BLK_STS_IOERR; |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 177 | } |
| 178 | } |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 179 | |
Christoph Hellwig | f6324b1 | 2017-04-05 19:18:09 +0200 | [diff] [blame] | 180 | static inline bool nvme_req_needs_retry(struct request *req) |
Christoph Hellwig | 77f02a7 | 2017-03-30 13:41:32 +0200 | [diff] [blame] | 181 | { |
Christoph Hellwig | f6324b1 | 2017-04-05 19:18:09 +0200 | [diff] [blame] | 182 | if (blk_noretry_request(req)) |
| 183 | return false; |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 184 | if (nvme_req(req)->status & NVME_SC_DNR) |
Christoph Hellwig | f6324b1 | 2017-04-05 19:18:09 +0200 | [diff] [blame] | 185 | return false; |
Christoph Hellwig | 44e44b2 | 2017-04-05 19:18:11 +0200 | [diff] [blame] | 186 | if (nvme_req(req)->retries >= nvme_max_retries) |
Christoph Hellwig | f6324b1 | 2017-04-05 19:18:09 +0200 | [diff] [blame] | 187 | return false; |
| 188 | return true; |
Christoph Hellwig | 77f02a7 | 2017-03-30 13:41:32 +0200 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | void nvme_complete_rq(struct request *req) |
| 192 | { |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 193 | if (unlikely(nvme_req(req)->status && nvme_req_needs_retry(req))) { |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 194 | if (nvme_req_needs_failover(req)) { |
| 195 | nvme_failover_req(req); |
| 196 | return; |
| 197 | } |
| 198 | |
| 199 | if (!blk_queue_dying(req->q)) { |
| 200 | nvme_req(req)->retries++; |
| 201 | blk_mq_requeue_request(req, true); |
| 202 | return; |
| 203 | } |
Christoph Hellwig | 77f02a7 | 2017-03-30 13:41:32 +0200 | [diff] [blame] | 204 | } |
| 205 | |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 206 | blk_mq_end_request(req, nvme_error_status(req)); |
Christoph Hellwig | 77f02a7 | 2017-03-30 13:41:32 +0200 | [diff] [blame] | 207 | } |
| 208 | EXPORT_SYMBOL_GPL(nvme_complete_rq); |
| 209 | |
Ming Lin | c55a2fd | 2016-05-18 14:05:02 -0700 | [diff] [blame] | 210 | void nvme_cancel_request(struct request *req, void *data, bool reserved) |
| 211 | { |
Ming Lin | c55a2fd | 2016-05-18 14:05:02 -0700 | [diff] [blame] | 212 | if (!blk_mq_request_started(req)) |
| 213 | return; |
| 214 | |
| 215 | dev_dbg_ratelimited(((struct nvme_ctrl *) data)->device, |
| 216 | "Cancelling I/O %d", req->tag); |
| 217 | |
Christoph Hellwig | e54b064 | 2017-11-02 21:28:51 +0300 | [diff] [blame] | 218 | nvme_req(req)->status = NVME_SC_ABORT_REQ; |
Christoph Hellwig | 08e0029 | 2017-04-20 16:03:09 +0200 | [diff] [blame] | 219 | blk_mq_complete_request(req); |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 220 | |
Ming Lin | c55a2fd | 2016-05-18 14:05:02 -0700 | [diff] [blame] | 221 | } |
| 222 | EXPORT_SYMBOL_GPL(nvme_cancel_request); |
| 223 | |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 224 | bool nvme_change_ctrl_state(struct nvme_ctrl *ctrl, |
| 225 | enum nvme_ctrl_state new_state) |
| 226 | { |
Gabriel Krisman Bertazi | f6b6a28 | 2016-07-29 16:15:18 -0300 | [diff] [blame] | 227 | enum nvme_ctrl_state old_state; |
Christoph Hellwig | 0a72bbb | 2017-08-22 11:42:24 +0200 | [diff] [blame] | 228 | unsigned long flags; |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 229 | bool changed = false; |
| 230 | |
Christoph Hellwig | 0a72bbb | 2017-08-22 11:42:24 +0200 | [diff] [blame] | 231 | spin_lock_irqsave(&ctrl->lock, flags); |
Gabriel Krisman Bertazi | f6b6a28 | 2016-07-29 16:15:18 -0300 | [diff] [blame] | 232 | |
| 233 | old_state = ctrl->state; |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 234 | switch (new_state) { |
Jianchao Wang | 2b1b7e7 | 2018-01-06 08:01:58 +0800 | [diff] [blame] | 235 | case NVME_CTRL_ADMIN_ONLY: |
| 236 | switch (old_state) { |
| 237 | case NVME_CTRL_RESETTING: |
| 238 | changed = true; |
| 239 | /* FALLTHRU */ |
| 240 | default: |
| 241 | break; |
| 242 | } |
| 243 | break; |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 244 | case NVME_CTRL_LIVE: |
| 245 | switch (old_state) { |
Christoph Hellwig | 7d2e800 | 2016-06-13 16:45:22 +0200 | [diff] [blame] | 246 | case NVME_CTRL_NEW: |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 247 | case NVME_CTRL_RESETTING: |
Christoph Hellwig | def61ec | 2016-07-06 21:55:49 +0900 | [diff] [blame] | 248 | case NVME_CTRL_RECONNECTING: |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 249 | changed = true; |
| 250 | /* FALLTHRU */ |
| 251 | default: |
| 252 | break; |
| 253 | } |
| 254 | break; |
| 255 | case NVME_CTRL_RESETTING: |
| 256 | switch (old_state) { |
| 257 | case NVME_CTRL_NEW: |
| 258 | case NVME_CTRL_LIVE: |
Jianchao Wang | 2b1b7e7 | 2018-01-06 08:01:58 +0800 | [diff] [blame] | 259 | case NVME_CTRL_ADMIN_ONLY: |
Christoph Hellwig | def61ec | 2016-07-06 21:55:49 +0900 | [diff] [blame] | 260 | changed = true; |
| 261 | /* FALLTHRU */ |
| 262 | default: |
| 263 | break; |
| 264 | } |
| 265 | break; |
| 266 | case NVME_CTRL_RECONNECTING: |
| 267 | switch (old_state) { |
| 268 | case NVME_CTRL_LIVE: |
James Smart | 3cec7f9 | 2017-10-25 16:43:13 -0700 | [diff] [blame] | 269 | case NVME_CTRL_RESETTING: |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 270 | changed = true; |
| 271 | /* FALLTHRU */ |
| 272 | default: |
| 273 | break; |
| 274 | } |
| 275 | break; |
| 276 | case NVME_CTRL_DELETING: |
| 277 | switch (old_state) { |
| 278 | case NVME_CTRL_LIVE: |
Jianchao Wang | 2b1b7e7 | 2018-01-06 08:01:58 +0800 | [diff] [blame] | 279 | case NVME_CTRL_ADMIN_ONLY: |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 280 | case NVME_CTRL_RESETTING: |
Christoph Hellwig | def61ec | 2016-07-06 21:55:49 +0900 | [diff] [blame] | 281 | case NVME_CTRL_RECONNECTING: |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 282 | changed = true; |
| 283 | /* FALLTHRU */ |
| 284 | default: |
| 285 | break; |
| 286 | } |
| 287 | break; |
Keith Busch | 0ff9d4e | 2016-05-12 08:37:14 -0600 | [diff] [blame] | 288 | case NVME_CTRL_DEAD: |
| 289 | switch (old_state) { |
| 290 | case NVME_CTRL_DELETING: |
| 291 | changed = true; |
| 292 | /* FALLTHRU */ |
| 293 | default: |
| 294 | break; |
| 295 | } |
| 296 | break; |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 297 | default: |
| 298 | break; |
| 299 | } |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 300 | |
| 301 | if (changed) |
| 302 | ctrl->state = new_state; |
| 303 | |
Christoph Hellwig | 0a72bbb | 2017-08-22 11:42:24 +0200 | [diff] [blame] | 304 | spin_unlock_irqrestore(&ctrl->lock, flags); |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 305 | if (changed && ctrl->state == NVME_CTRL_LIVE) |
| 306 | nvme_kick_requeue_lists(ctrl); |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 307 | return changed; |
| 308 | } |
| 309 | EXPORT_SYMBOL_GPL(nvme_change_ctrl_state); |
| 310 | |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 311 | static void nvme_free_ns_head(struct kref *ref) |
| 312 | { |
| 313 | struct nvme_ns_head *head = |
| 314 | container_of(ref, struct nvme_ns_head, ref); |
| 315 | |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 316 | nvme_mpath_remove_disk(head); |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 317 | ida_simple_remove(&head->subsys->ns_ida, head->instance); |
| 318 | list_del_init(&head->entry); |
| 319 | cleanup_srcu_struct(&head->srcu); |
| 320 | kfree(head); |
| 321 | } |
| 322 | |
| 323 | static void nvme_put_ns_head(struct nvme_ns_head *head) |
| 324 | { |
| 325 | kref_put(&head->ref, nvme_free_ns_head); |
| 326 | } |
| 327 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 328 | static void nvme_free_ns(struct kref *kref) |
| 329 | { |
| 330 | struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref); |
| 331 | |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 332 | if (ns->ndev) |
| 333 | nvme_nvm_unregister(ns); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 334 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 335 | put_disk(ns->disk); |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 336 | nvme_put_ns_head(ns->head); |
Keith Busch | 075790e | 2016-02-24 09:15:53 -0700 | [diff] [blame] | 337 | nvme_put_ctrl(ns->ctrl); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 338 | kfree(ns); |
| 339 | } |
| 340 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 341 | static void nvme_put_ns(struct nvme_ns *ns) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 342 | { |
| 343 | kref_put(&ns->kref, nvme_free_ns); |
| 344 | } |
| 345 | |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 346 | struct request *nvme_alloc_request(struct request_queue *q, |
Bart Van Assche | 9a95e4e | 2017-11-09 10:49:59 -0800 | [diff] [blame] | 347 | struct nvme_command *cmd, blk_mq_req_flags_t flags, int qid) |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 348 | { |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 349 | 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] | 350 | struct request *req; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 351 | |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 352 | if (qid == NVME_QID_ANY) { |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 353 | req = blk_mq_alloc_request(q, op, flags); |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 354 | } else { |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 355 | req = blk_mq_alloc_request_hctx(q, op, flags, |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 356 | qid ? qid - 1 : 0); |
| 357 | } |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 358 | if (IS_ERR(req)) |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 359 | return req; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 360 | |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 361 | req->cmd_flags |= REQ_FAILFAST_DRIVER; |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 362 | nvme_req(req)->cmd = cmd; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 363 | |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 364 | return req; |
| 365 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 366 | EXPORT_SYMBOL_GPL(nvme_alloc_request); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 367 | |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 368 | static int nvme_toggle_streams(struct nvme_ctrl *ctrl, bool enable) |
| 369 | { |
| 370 | struct nvme_command c; |
| 371 | |
| 372 | memset(&c, 0, sizeof(c)); |
| 373 | |
| 374 | c.directive.opcode = nvme_admin_directive_send; |
Arnav Dawn | 62346ea | 2017-07-12 16:11:53 +0530 | [diff] [blame] | 375 | c.directive.nsid = cpu_to_le32(NVME_NSID_ALL); |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 376 | c.directive.doper = NVME_DIR_SND_ID_OP_ENABLE; |
| 377 | c.directive.dtype = NVME_DIR_IDENTIFY; |
| 378 | c.directive.tdtype = NVME_DIR_STREAMS; |
| 379 | c.directive.endir = enable ? NVME_DIR_ENDIR : 0; |
| 380 | |
| 381 | return nvme_submit_sync_cmd(ctrl->admin_q, &c, NULL, 0); |
| 382 | } |
| 383 | |
| 384 | static int nvme_disable_streams(struct nvme_ctrl *ctrl) |
| 385 | { |
| 386 | return nvme_toggle_streams(ctrl, false); |
| 387 | } |
| 388 | |
| 389 | static int nvme_enable_streams(struct nvme_ctrl *ctrl) |
| 390 | { |
| 391 | return nvme_toggle_streams(ctrl, true); |
| 392 | } |
| 393 | |
| 394 | static int nvme_get_stream_params(struct nvme_ctrl *ctrl, |
| 395 | struct streams_directive_params *s, u32 nsid) |
| 396 | { |
| 397 | struct nvme_command c; |
| 398 | |
| 399 | memset(&c, 0, sizeof(c)); |
| 400 | memset(s, 0, sizeof(*s)); |
| 401 | |
| 402 | c.directive.opcode = nvme_admin_directive_recv; |
| 403 | c.directive.nsid = cpu_to_le32(nsid); |
Kwan (Hingkwan) Huen-SSI | a082b42 | 2017-08-09 11:26:29 -0700 | [diff] [blame] | 404 | c.directive.numd = cpu_to_le32((sizeof(*s) >> 2) - 1); |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 405 | c.directive.doper = NVME_DIR_RCV_ST_OP_PARAM; |
| 406 | c.directive.dtype = NVME_DIR_STREAMS; |
| 407 | |
| 408 | return nvme_submit_sync_cmd(ctrl->admin_q, &c, s, sizeof(*s)); |
| 409 | } |
| 410 | |
| 411 | static int nvme_configure_directives(struct nvme_ctrl *ctrl) |
| 412 | { |
| 413 | struct streams_directive_params s; |
| 414 | int ret; |
| 415 | |
| 416 | if (!(ctrl->oacs & NVME_CTRL_OACS_DIRECTIVES)) |
| 417 | return 0; |
| 418 | if (!streams) |
| 419 | return 0; |
| 420 | |
| 421 | ret = nvme_enable_streams(ctrl); |
| 422 | if (ret) |
| 423 | return ret; |
| 424 | |
Arnav Dawn | 62346ea | 2017-07-12 16:11:53 +0530 | [diff] [blame] | 425 | ret = nvme_get_stream_params(ctrl, &s, NVME_NSID_ALL); |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 426 | if (ret) |
| 427 | return ret; |
| 428 | |
| 429 | ctrl->nssa = le16_to_cpu(s.nssa); |
| 430 | if (ctrl->nssa < BLK_MAX_WRITE_HINTS - 1) { |
| 431 | dev_info(ctrl->device, "too few streams (%u) available\n", |
| 432 | ctrl->nssa); |
| 433 | nvme_disable_streams(ctrl); |
| 434 | return 0; |
| 435 | } |
| 436 | |
| 437 | ctrl->nr_streams = min_t(unsigned, ctrl->nssa, BLK_MAX_WRITE_HINTS - 1); |
| 438 | dev_info(ctrl->device, "Using %u streams\n", ctrl->nr_streams); |
| 439 | return 0; |
| 440 | } |
| 441 | |
| 442 | /* |
| 443 | * Check if 'req' has a write hint associated with it. If it does, assign |
| 444 | * a valid namespace stream to the write. |
| 445 | */ |
| 446 | static void nvme_assign_write_stream(struct nvme_ctrl *ctrl, |
| 447 | struct request *req, u16 *control, |
| 448 | u32 *dsmgmt) |
| 449 | { |
| 450 | enum rw_hint streamid = req->write_hint; |
| 451 | |
| 452 | if (streamid == WRITE_LIFE_NOT_SET || streamid == WRITE_LIFE_NONE) |
| 453 | streamid = 0; |
| 454 | else { |
| 455 | streamid--; |
| 456 | if (WARN_ON_ONCE(streamid > ctrl->nr_streams)) |
| 457 | return; |
| 458 | |
| 459 | *control |= NVME_RW_DTYPE_STREAMS; |
| 460 | *dsmgmt |= streamid << 16; |
| 461 | } |
| 462 | |
| 463 | if (streamid < ARRAY_SIZE(req->q->write_hints)) |
| 464 | req->q->write_hints[streamid] += blk_rq_bytes(req) >> 9; |
| 465 | } |
| 466 | |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 467 | static inline void nvme_setup_flush(struct nvme_ns *ns, |
| 468 | struct nvme_command *cmnd) |
| 469 | { |
| 470 | memset(cmnd, 0, sizeof(*cmnd)); |
| 471 | cmnd->common.opcode = nvme_cmd_flush; |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 472 | cmnd->common.nsid = cpu_to_le32(ns->head->ns_id); |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 473 | } |
| 474 | |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 475 | static blk_status_t nvme_setup_discard(struct nvme_ns *ns, struct request *req, |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 476 | struct nvme_command *cmnd) |
| 477 | { |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 478 | unsigned short segments = blk_rq_nr_discard_segments(req), n = 0; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 479 | struct nvme_dsm_range *range; |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 480 | struct bio *bio; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 481 | |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 482 | range = kmalloc_array(segments, sizeof(*range), GFP_ATOMIC); |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 483 | if (!range) |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 484 | return BLK_STS_RESOURCE; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 485 | |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 486 | __rq_for_each_bio(bio, req) { |
| 487 | u64 slba = nvme_block_nr(ns, bio->bi_iter.bi_sector); |
| 488 | u32 nlb = bio->bi_iter.bi_size >> ns->lba_shift; |
| 489 | |
| 490 | range[n].cattr = cpu_to_le32(0); |
| 491 | range[n].nlb = cpu_to_le32(nlb); |
| 492 | range[n].slba = cpu_to_le64(slba); |
| 493 | n++; |
| 494 | } |
| 495 | |
| 496 | if (WARN_ON_ONCE(n != segments)) { |
| 497 | kfree(range); |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 498 | return BLK_STS_IOERR; |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 499 | } |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 500 | |
| 501 | memset(cmnd, 0, sizeof(*cmnd)); |
| 502 | cmnd->dsm.opcode = nvme_cmd_dsm; |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 503 | cmnd->dsm.nsid = cpu_to_le32(ns->head->ns_id); |
Christoph Hellwig | f1dd03a | 2017-03-31 17:00:05 +0200 | [diff] [blame] | 504 | cmnd->dsm.nr = cpu_to_le32(segments - 1); |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 505 | cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD); |
| 506 | |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 507 | req->special_vec.bv_page = virt_to_page(range); |
| 508 | req->special_vec.bv_offset = offset_in_page(range); |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 509 | req->special_vec.bv_len = sizeof(*range) * segments; |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 510 | req->rq_flags |= RQF_SPECIAL_PAYLOAD; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 511 | |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 512 | return BLK_STS_OK; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 513 | } |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 514 | |
Christoph Hellwig | ebe6d87 | 2017-06-12 18:36:32 +0200 | [diff] [blame] | 515 | static inline blk_status_t nvme_setup_rw(struct nvme_ns *ns, |
| 516 | struct request *req, struct nvme_command *cmnd) |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 517 | { |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 518 | struct nvme_ctrl *ctrl = ns->ctrl; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 519 | u16 control = 0; |
| 520 | u32 dsmgmt = 0; |
| 521 | |
| 522 | if (req->cmd_flags & REQ_FUA) |
| 523 | control |= NVME_RW_FUA; |
| 524 | if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD)) |
| 525 | control |= NVME_RW_LR; |
| 526 | |
| 527 | if (req->cmd_flags & REQ_RAHEAD) |
| 528 | dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH; |
| 529 | |
| 530 | memset(cmnd, 0, sizeof(*cmnd)); |
| 531 | cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read); |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 532 | cmnd->rw.nsid = cpu_to_le32(ns->head->ns_id); |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 533 | cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req))); |
| 534 | cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1); |
| 535 | |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 536 | if (req_op(req) == REQ_OP_WRITE && ctrl->nr_streams) |
| 537 | nvme_assign_write_stream(ctrl, req, &control, &dsmgmt); |
| 538 | |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 539 | if (ns->ms) { |
Christoph Hellwig | 715ea9e | 2017-11-07 17:27:34 +0100 | [diff] [blame] | 540 | /* |
| 541 | * If formated with metadata, the block layer always provides a |
| 542 | * metadata buffer if CONFIG_BLK_DEV_INTEGRITY is enabled. Else |
| 543 | * we enable the PRACT bit for protection information or set the |
| 544 | * namespace capacity to zero to prevent any I/O. |
| 545 | */ |
| 546 | if (!blk_integrity_rq(req)) { |
| 547 | if (WARN_ON_ONCE(!nvme_ns_has_pi(ns))) |
| 548 | return BLK_STS_NOTSUPP; |
| 549 | control |= NVME_RW_PRINFO_PRACT; |
| 550 | } |
| 551 | |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 552 | switch (ns->pi_type) { |
| 553 | case NVME_NS_DPS_PI_TYPE3: |
| 554 | control |= NVME_RW_PRINFO_PRCHK_GUARD; |
| 555 | break; |
| 556 | case NVME_NS_DPS_PI_TYPE1: |
| 557 | case NVME_NS_DPS_PI_TYPE2: |
| 558 | control |= NVME_RW_PRINFO_PRCHK_GUARD | |
| 559 | NVME_RW_PRINFO_PRCHK_REF; |
| 560 | cmnd->rw.reftag = cpu_to_le32( |
| 561 | nvme_block_nr(ns, blk_rq_pos(req))); |
| 562 | break; |
| 563 | } |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | cmnd->rw.control = cpu_to_le16(control); |
| 567 | cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt); |
Christoph Hellwig | ebe6d87 | 2017-06-12 18:36:32 +0200 | [diff] [blame] | 568 | return 0; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 569 | } |
| 570 | |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 571 | blk_status_t nvme_setup_cmd(struct nvme_ns *ns, struct request *req, |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 572 | struct nvme_command *cmd) |
| 573 | { |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 574 | blk_status_t ret = BLK_STS_OK; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 575 | |
Christoph Hellwig | 987f699 | 2017-04-05 19:18:08 +0200 | [diff] [blame] | 576 | if (!(req->rq_flags & RQF_DONTPREP)) { |
Christoph Hellwig | 44e44b2 | 2017-04-05 19:18:11 +0200 | [diff] [blame] | 577 | nvme_req(req)->retries = 0; |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 578 | nvme_req(req)->flags = 0; |
Christoph Hellwig | 987f699 | 2017-04-05 19:18:08 +0200 | [diff] [blame] | 579 | req->rq_flags |= RQF_DONTPREP; |
| 580 | } |
| 581 | |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 582 | switch (req_op(req)) { |
| 583 | case REQ_OP_DRV_IN: |
| 584 | case REQ_OP_DRV_OUT: |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 585 | memcpy(cmd, nvme_req(req)->cmd, sizeof(*cmd)); |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 586 | break; |
| 587 | case REQ_OP_FLUSH: |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 588 | nvme_setup_flush(ns, cmd); |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 589 | break; |
Christoph Hellwig | e850fd1 | 2017-04-05 19:21:13 +0200 | [diff] [blame] | 590 | case REQ_OP_WRITE_ZEROES: |
| 591 | /* currently only aliased to deallocate for a few ctrls: */ |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 592 | case REQ_OP_DISCARD: |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 593 | ret = nvme_setup_discard(ns, req, cmd); |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 594 | break; |
| 595 | case REQ_OP_READ: |
| 596 | case REQ_OP_WRITE: |
Christoph Hellwig | ebe6d87 | 2017-06-12 18:36:32 +0200 | [diff] [blame] | 597 | ret = nvme_setup_rw(ns, req, cmd); |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 598 | break; |
| 599 | default: |
| 600 | WARN_ON_ONCE(1); |
Christoph Hellwig | fc17b65 | 2017-06-03 09:38:05 +0200 | [diff] [blame] | 601 | return BLK_STS_IOERR; |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 602 | } |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 603 | |
James Smart | 721b391 | 2016-10-21 23:33:34 +0300 | [diff] [blame] | 604 | cmd->common.command_id = req->tag; |
Ming Lin | 8093f7c | 2016-04-12 13:10:14 -0600 | [diff] [blame] | 605 | return ret; |
| 606 | } |
| 607 | EXPORT_SYMBOL_GPL(nvme_setup_cmd); |
| 608 | |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 609 | /* |
| 610 | * Returns 0 on success. If the result is negative, it's a Linux error code; |
| 611 | * if the result is positive, it's an NVM Express status code |
| 612 | */ |
| 613 | 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] | 614 | union nvme_result *result, void *buffer, unsigned bufflen, |
Bart Van Assche | 9a95e4e | 2017-11-09 10:49:59 -0800 | [diff] [blame] | 615 | unsigned timeout, int qid, int at_head, |
| 616 | blk_mq_req_flags_t flags) |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 617 | { |
| 618 | struct request *req; |
| 619 | int ret; |
| 620 | |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 621 | req = nvme_alloc_request(q, cmd, flags, qid); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 622 | if (IS_ERR(req)) |
| 623 | return PTR_ERR(req); |
| 624 | |
| 625 | req->timeout = timeout ? timeout : ADMIN_TIMEOUT; |
| 626 | |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 627 | if (buffer && bufflen) { |
| 628 | ret = blk_rq_map_kern(q, req, buffer, bufflen, GFP_KERNEL); |
| 629 | if (ret) |
| 630 | goto out; |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 631 | } |
| 632 | |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 633 | blk_execute_rq(req->q, NULL, req, at_head); |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 634 | if (result) |
| 635 | *result = nvme_req(req)->result; |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 636 | if (nvme_req(req)->flags & NVME_REQ_CANCELLED) |
| 637 | ret = -EINTR; |
| 638 | else |
| 639 | ret = nvme_req(req)->status; |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 640 | out: |
| 641 | blk_mq_free_request(req); |
| 642 | return ret; |
| 643 | } |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 644 | EXPORT_SYMBOL_GPL(__nvme_submit_sync_cmd); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 645 | |
| 646 | int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd, |
| 647 | void *buffer, unsigned bufflen) |
| 648 | { |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 649 | return __nvme_submit_sync_cmd(q, cmd, NULL, buffer, bufflen, 0, |
| 650 | NVME_QID_ANY, 0, 0); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 651 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 652 | EXPORT_SYMBOL_GPL(nvme_submit_sync_cmd); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 653 | |
Christoph Hellwig | 1cad656 | 2017-08-29 17:46:01 -0400 | [diff] [blame] | 654 | static void *nvme_add_user_metadata(struct bio *bio, void __user *ubuf, |
| 655 | unsigned len, u32 seed, bool write) |
| 656 | { |
| 657 | struct bio_integrity_payload *bip; |
| 658 | int ret = -ENOMEM; |
| 659 | void *buf; |
| 660 | |
| 661 | buf = kmalloc(len, GFP_KERNEL); |
| 662 | if (!buf) |
| 663 | goto out; |
| 664 | |
| 665 | ret = -EFAULT; |
| 666 | if (write && copy_from_user(buf, ubuf, len)) |
| 667 | goto out_free_meta; |
| 668 | |
| 669 | bip = bio_integrity_alloc(bio, GFP_KERNEL, 1); |
| 670 | if (IS_ERR(bip)) { |
| 671 | ret = PTR_ERR(bip); |
| 672 | goto out_free_meta; |
| 673 | } |
| 674 | |
| 675 | bip->bip_iter.bi_size = len; |
| 676 | bip->bip_iter.bi_sector = seed; |
| 677 | ret = bio_integrity_add_page(bio, virt_to_page(buf), len, |
| 678 | offset_in_page(buf)); |
| 679 | if (ret == len) |
| 680 | return buf; |
| 681 | ret = -ENOMEM; |
| 682 | out_free_meta: |
| 683 | kfree(buf); |
| 684 | out: |
| 685 | return ERR_PTR(ret); |
| 686 | } |
| 687 | |
Keith Busch | 63263d6 | 2017-08-29 17:46:04 -0400 | [diff] [blame] | 688 | static int nvme_submit_user_cmd(struct request_queue *q, |
Keith Busch | 485783c | 2017-08-29 17:46:03 -0400 | [diff] [blame] | 689 | struct nvme_command *cmd, void __user *ubuffer, |
| 690 | unsigned bufflen, void __user *meta_buffer, unsigned meta_len, |
| 691 | u32 meta_seed, u32 *result, unsigned timeout) |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 692 | { |
Christoph Hellwig | 7a5abb4 | 2016-06-06 23:20:49 +0200 | [diff] [blame] | 693 | bool write = nvme_is_write(cmd); |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 694 | struct nvme_ns *ns = q->queuedata; |
| 695 | struct gendisk *disk = ns ? ns->disk : NULL; |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 696 | struct request *req; |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 697 | struct bio *bio = NULL; |
| 698 | void *meta = NULL; |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 699 | int ret; |
| 700 | |
Christoph Hellwig | eb71f43 | 2016-06-13 16:45:23 +0200 | [diff] [blame] | 701 | req = nvme_alloc_request(q, cmd, 0, NVME_QID_ANY); |
Christoph Hellwig | 4160982 | 2015-11-20 09:00:02 +0100 | [diff] [blame] | 702 | if (IS_ERR(req)) |
| 703 | return PTR_ERR(req); |
| 704 | |
| 705 | req->timeout = timeout ? timeout : ADMIN_TIMEOUT; |
| 706 | |
| 707 | if (ubuffer && bufflen) { |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 708 | ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen, |
| 709 | GFP_KERNEL); |
| 710 | if (ret) |
| 711 | goto out; |
| 712 | bio = req->bio; |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 713 | bio->bi_disk = disk; |
Christoph Hellwig | 1cad656 | 2017-08-29 17:46:01 -0400 | [diff] [blame] | 714 | if (disk && meta_buffer && meta_len) { |
| 715 | meta = nvme_add_user_metadata(bio, meta_buffer, meta_len, |
| 716 | meta_seed, write); |
| 717 | if (IS_ERR(meta)) { |
| 718 | ret = PTR_ERR(meta); |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 719 | goto out_unmap; |
| 720 | } |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 721 | } |
| 722 | } |
Christoph Hellwig | 1cad656 | 2017-08-29 17:46:01 -0400 | [diff] [blame] | 723 | |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 724 | blk_execute_rq(req->q, disk, req, 0); |
Christoph Hellwig | 27fa9bc | 2017-04-20 16:02:57 +0200 | [diff] [blame] | 725 | if (nvme_req(req)->flags & NVME_REQ_CANCELLED) |
| 726 | ret = -EINTR; |
| 727 | else |
| 728 | ret = nvme_req(req)->status; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 729 | if (result) |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 730 | *result = le32_to_cpu(nvme_req(req)->result.u32); |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 731 | if (meta && !ret && !write) { |
| 732 | if (copy_to_user(meta_buffer, meta, meta_len)) |
| 733 | ret = -EFAULT; |
| 734 | } |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 735 | kfree(meta); |
| 736 | out_unmap: |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 737 | if (bio) |
Keith Busch | 0b7f1f2 | 2015-10-23 09:47:28 -0600 | [diff] [blame] | 738 | blk_rq_unmap_user(bio); |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 739 | out: |
| 740 | blk_mq_free_request(req); |
| 741 | return ret; |
| 742 | } |
| 743 | |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 744 | static void nvme_keep_alive_end_io(struct request *rq, blk_status_t status) |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 745 | { |
| 746 | struct nvme_ctrl *ctrl = rq->end_io_data; |
| 747 | |
| 748 | blk_mq_free_request(rq); |
| 749 | |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 750 | if (status) { |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 751 | dev_err(ctrl->device, |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 752 | "failed nvme_keep_alive_end_io error=%d\n", |
| 753 | status); |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 754 | return; |
| 755 | } |
| 756 | |
| 757 | schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ); |
| 758 | } |
| 759 | |
| 760 | static int nvme_keep_alive(struct nvme_ctrl *ctrl) |
| 761 | { |
| 762 | struct nvme_command c; |
| 763 | struct request *rq; |
| 764 | |
| 765 | memset(&c, 0, sizeof(c)); |
| 766 | c.common.opcode = nvme_admin_keep_alive; |
| 767 | |
| 768 | rq = nvme_alloc_request(ctrl->admin_q, &c, BLK_MQ_REQ_RESERVED, |
| 769 | NVME_QID_ANY); |
| 770 | if (IS_ERR(rq)) |
| 771 | return PTR_ERR(rq); |
| 772 | |
| 773 | rq->timeout = ctrl->kato * HZ; |
| 774 | rq->end_io_data = ctrl; |
| 775 | |
| 776 | blk_execute_rq_nowait(rq->q, NULL, rq, 0, nvme_keep_alive_end_io); |
| 777 | |
| 778 | return 0; |
| 779 | } |
| 780 | |
| 781 | static void nvme_keep_alive_work(struct work_struct *work) |
| 782 | { |
| 783 | struct nvme_ctrl *ctrl = container_of(to_delayed_work(work), |
| 784 | struct nvme_ctrl, ka_work); |
| 785 | |
| 786 | if (nvme_keep_alive(ctrl)) { |
| 787 | /* allocation failure, reset the controller */ |
| 788 | dev_err(ctrl->device, "keep-alive failed\n"); |
Christoph Hellwig | 39bdc59 | 2017-06-12 18:21:19 +0200 | [diff] [blame] | 789 | nvme_reset_ctrl(ctrl); |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 790 | return; |
| 791 | } |
| 792 | } |
| 793 | |
| 794 | void nvme_start_keep_alive(struct nvme_ctrl *ctrl) |
| 795 | { |
| 796 | if (unlikely(ctrl->kato == 0)) |
| 797 | return; |
| 798 | |
| 799 | INIT_DELAYED_WORK(&ctrl->ka_work, nvme_keep_alive_work); |
| 800 | schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ); |
| 801 | } |
| 802 | EXPORT_SYMBOL_GPL(nvme_start_keep_alive); |
| 803 | |
| 804 | void nvme_stop_keep_alive(struct nvme_ctrl *ctrl) |
| 805 | { |
| 806 | if (unlikely(ctrl->kato == 0)) |
| 807 | return; |
| 808 | |
| 809 | cancel_delayed_work_sync(&ctrl->ka_work); |
| 810 | } |
| 811 | EXPORT_SYMBOL_GPL(nvme_stop_keep_alive); |
| 812 | |
Keith Busch | 3f7f25a9 | 2017-06-20 15:09:56 -0400 | [diff] [blame] | 813 | static 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] | 814 | { |
| 815 | struct nvme_command c = { }; |
| 816 | int error; |
| 817 | |
| 818 | /* gcc-4.4.4 (at least) has issues with initializers and anon unions */ |
| 819 | c.identify.opcode = nvme_admin_identify; |
Parav Pandit | 986994a | 2017-01-26 17:17:28 +0200 | [diff] [blame] | 820 | c.identify.cns = NVME_ID_CNS_CTRL; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 821 | |
| 822 | *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL); |
| 823 | if (!*id) |
| 824 | return -ENOMEM; |
| 825 | |
| 826 | error = nvme_submit_sync_cmd(dev->admin_q, &c, *id, |
| 827 | sizeof(struct nvme_id_ctrl)); |
| 828 | if (error) |
| 829 | kfree(*id); |
| 830 | return error; |
| 831 | } |
| 832 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 833 | static int nvme_identify_ns_descs(struct nvme_ctrl *ctrl, unsigned nsid, |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 834 | struct nvme_ns_ids *ids) |
Johannes Thumshirn | 3b22ba2 | 2017-06-07 11:45:34 +0200 | [diff] [blame] | 835 | { |
| 836 | struct nvme_command c = { }; |
| 837 | int status; |
| 838 | void *data; |
| 839 | int pos; |
| 840 | int len; |
| 841 | |
| 842 | c.identify.opcode = nvme_admin_identify; |
| 843 | c.identify.nsid = cpu_to_le32(nsid); |
| 844 | c.identify.cns = NVME_ID_CNS_NS_DESC_LIST; |
| 845 | |
| 846 | data = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL); |
| 847 | if (!data) |
| 848 | return -ENOMEM; |
| 849 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 850 | status = nvme_submit_sync_cmd(ctrl->admin_q, &c, data, |
Johannes Thumshirn | 3b22ba2 | 2017-06-07 11:45:34 +0200 | [diff] [blame] | 851 | NVME_IDENTIFY_DATA_SIZE); |
| 852 | if (status) |
| 853 | goto free_data; |
| 854 | |
| 855 | for (pos = 0; pos < NVME_IDENTIFY_DATA_SIZE; pos += len) { |
| 856 | struct nvme_ns_id_desc *cur = data + pos; |
| 857 | |
| 858 | if (cur->nidl == 0) |
| 859 | break; |
| 860 | |
| 861 | switch (cur->nidt) { |
| 862 | case NVME_NIDT_EUI64: |
| 863 | if (cur->nidl != NVME_NIDT_EUI64_LEN) { |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 864 | dev_warn(ctrl->device, |
Johannes Thumshirn | 3b22ba2 | 2017-06-07 11:45:34 +0200 | [diff] [blame] | 865 | "ctrl returned bogus length: %d for NVME_NIDT_EUI64\n", |
| 866 | cur->nidl); |
| 867 | goto free_data; |
| 868 | } |
| 869 | len = NVME_NIDT_EUI64_LEN; |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 870 | memcpy(ids->eui64, data + pos + sizeof(*cur), len); |
Johannes Thumshirn | 3b22ba2 | 2017-06-07 11:45:34 +0200 | [diff] [blame] | 871 | break; |
| 872 | case NVME_NIDT_NGUID: |
| 873 | if (cur->nidl != NVME_NIDT_NGUID_LEN) { |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 874 | dev_warn(ctrl->device, |
Johannes Thumshirn | 3b22ba2 | 2017-06-07 11:45:34 +0200 | [diff] [blame] | 875 | "ctrl returned bogus length: %d for NVME_NIDT_NGUID\n", |
| 876 | cur->nidl); |
| 877 | goto free_data; |
| 878 | } |
| 879 | len = NVME_NIDT_NGUID_LEN; |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 880 | memcpy(ids->nguid, data + pos + sizeof(*cur), len); |
Johannes Thumshirn | 3b22ba2 | 2017-06-07 11:45:34 +0200 | [diff] [blame] | 881 | break; |
| 882 | case NVME_NIDT_UUID: |
| 883 | if (cur->nidl != NVME_NIDT_UUID_LEN) { |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 884 | dev_warn(ctrl->device, |
Johannes Thumshirn | 3b22ba2 | 2017-06-07 11:45:34 +0200 | [diff] [blame] | 885 | "ctrl returned bogus length: %d for NVME_NIDT_UUID\n", |
| 886 | cur->nidl); |
| 887 | goto free_data; |
| 888 | } |
| 889 | len = NVME_NIDT_UUID_LEN; |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 890 | uuid_copy(&ids->uuid, data + pos + sizeof(*cur)); |
Johannes Thumshirn | 3b22ba2 | 2017-06-07 11:45:34 +0200 | [diff] [blame] | 891 | break; |
| 892 | default: |
| 893 | /* Skip unnkown types */ |
| 894 | len = cur->nidl; |
| 895 | break; |
| 896 | } |
| 897 | |
| 898 | len += sizeof(*cur); |
| 899 | } |
| 900 | free_data: |
| 901 | kfree(data); |
| 902 | return status; |
| 903 | } |
| 904 | |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 905 | static int nvme_identify_ns_list(struct nvme_ctrl *dev, unsigned nsid, __le32 *ns_list) |
| 906 | { |
| 907 | struct nvme_command c = { }; |
| 908 | |
| 909 | c.identify.opcode = nvme_admin_identify; |
Parav Pandit | 986994a | 2017-01-26 17:17:28 +0200 | [diff] [blame] | 910 | c.identify.cns = NVME_ID_CNS_NS_ACTIVE_LIST; |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 911 | c.identify.nsid = cpu_to_le32(nsid); |
| 912 | return nvme_submit_sync_cmd(dev->admin_q, &c, ns_list, 0x1000); |
| 913 | } |
| 914 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 915 | static struct nvme_id_ns *nvme_identify_ns(struct nvme_ctrl *ctrl, |
| 916 | unsigned nsid) |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 917 | { |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 918 | struct nvme_id_ns *id; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 919 | struct nvme_command c = { }; |
| 920 | int error; |
| 921 | |
| 922 | /* 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] | 923 | c.identify.opcode = nvme_admin_identify; |
| 924 | c.identify.nsid = cpu_to_le32(nsid); |
Parav Pandit | 986994a | 2017-01-26 17:17:28 +0200 | [diff] [blame] | 925 | c.identify.cns = NVME_ID_CNS_NS; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 926 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 927 | id = kmalloc(sizeof(*id), GFP_KERNEL); |
| 928 | if (!id) |
| 929 | return NULL; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 930 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 931 | error = nvme_submit_sync_cmd(ctrl->admin_q, &c, id, sizeof(*id)); |
| 932 | if (error) { |
| 933 | dev_warn(ctrl->device, "Identify namespace failed\n"); |
| 934 | kfree(id); |
| 935 | return NULL; |
| 936 | } |
| 937 | |
| 938 | return id; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 939 | } |
| 940 | |
Keith Busch | 3f7f25a9 | 2017-06-20 15:09:56 -0400 | [diff] [blame] | 941 | static int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11, |
Andy Lutomirski | 1a6fe74 | 2016-09-16 11:16:10 -0700 | [diff] [blame] | 942 | void *buffer, size_t buflen, u32 *result) |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 943 | { |
| 944 | struct nvme_command c; |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 945 | union nvme_result res; |
Christoph Hellwig | 1cb3cce | 2016-02-29 15:59:47 +0100 | [diff] [blame] | 946 | int ret; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 947 | |
| 948 | memset(&c, 0, sizeof(c)); |
| 949 | c.features.opcode = nvme_admin_set_features; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 950 | c.features.fid = cpu_to_le32(fid); |
| 951 | c.features.dword11 = cpu_to_le32(dword11); |
| 952 | |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 953 | ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res, |
Andy Lutomirski | 1a6fe74 | 2016-09-16 11:16:10 -0700 | [diff] [blame] | 954 | buffer, buflen, 0, NVME_QID_ANY, 0, 0); |
Andy Lutomirski | 9b47f77a | 2016-08-24 03:52:12 -0700 | [diff] [blame] | 955 | if (ret >= 0 && result) |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 956 | *result = le32_to_cpu(res.u32); |
Christoph Hellwig | 1cb3cce | 2016-02-29 15:59:47 +0100 | [diff] [blame] | 957 | return ret; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 958 | } |
| 959 | |
Christoph Hellwig | 9a0be7a | 2015-11-26 11:09:06 +0100 | [diff] [blame] | 960 | int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count) |
| 961 | { |
| 962 | u32 q_count = (*count - 1) | ((*count - 1) << 16); |
| 963 | u32 result; |
| 964 | int status, nr_io_queues; |
| 965 | |
Andy Lutomirski | 1a6fe74 | 2016-09-16 11:16:10 -0700 | [diff] [blame] | 966 | 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] | 967 | &result); |
Christoph Hellwig | f5fa90d | 2016-06-06 23:20:50 +0200 | [diff] [blame] | 968 | if (status < 0) |
Christoph Hellwig | 9a0be7a | 2015-11-26 11:09:06 +0100 | [diff] [blame] | 969 | return status; |
| 970 | |
Christoph Hellwig | f5fa90d | 2016-06-06 23:20:50 +0200 | [diff] [blame] | 971 | /* |
| 972 | * Degraded controllers might return an error when setting the queue |
| 973 | * count. We still want to be able to bring them online and offer |
| 974 | * access to the admin queue, as that might be only way to fix them up. |
| 975 | */ |
| 976 | if (status > 0) { |
Johannes Thumshirn | f0425db | 2017-06-09 16:17:21 +0200 | [diff] [blame] | 977 | dev_err(ctrl->device, "Could not set queue count (%d)\n", status); |
Christoph Hellwig | f5fa90d | 2016-06-06 23:20:50 +0200 | [diff] [blame] | 978 | *count = 0; |
| 979 | } else { |
| 980 | nr_io_queues = min(result & 0xffff, result >> 16) + 1; |
| 981 | *count = min(*count, nr_io_queues); |
| 982 | } |
| 983 | |
Christoph Hellwig | 9a0be7a | 2015-11-26 11:09:06 +0100 | [diff] [blame] | 984 | return 0; |
| 985 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 986 | EXPORT_SYMBOL_GPL(nvme_set_queue_count); |
Christoph Hellwig | 9a0be7a | 2015-11-26 11:09:06 +0100 | [diff] [blame] | 987 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 988 | static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio) |
| 989 | { |
| 990 | struct nvme_user_io io; |
| 991 | struct nvme_command c; |
| 992 | unsigned length, meta_len; |
| 993 | void __user *metadata; |
| 994 | |
| 995 | if (copy_from_user(&io, uio, sizeof(io))) |
| 996 | return -EFAULT; |
Keith Busch | 63088ec | 2016-02-24 09:15:57 -0700 | [diff] [blame] | 997 | if (io.flags) |
| 998 | return -EINVAL; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 999 | |
| 1000 | switch (io.opcode) { |
| 1001 | case nvme_cmd_write: |
| 1002 | case nvme_cmd_read: |
| 1003 | case nvme_cmd_compare: |
| 1004 | break; |
| 1005 | default: |
| 1006 | return -EINVAL; |
| 1007 | } |
| 1008 | |
| 1009 | length = (io.nblocks + 1) << ns->lba_shift; |
| 1010 | meta_len = (io.nblocks + 1) * ns->ms; |
| 1011 | metadata = (void __user *)(uintptr_t)io.metadata; |
| 1012 | |
| 1013 | if (ns->ext) { |
| 1014 | length += meta_len; |
| 1015 | meta_len = 0; |
| 1016 | } else if (meta_len) { |
| 1017 | if ((io.metadata & 3) || !io.metadata) |
| 1018 | return -EINVAL; |
| 1019 | } |
| 1020 | |
| 1021 | memset(&c, 0, sizeof(c)); |
| 1022 | c.rw.opcode = io.opcode; |
| 1023 | c.rw.flags = io.flags; |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 1024 | c.rw.nsid = cpu_to_le32(ns->head->ns_id); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1025 | c.rw.slba = cpu_to_le64(io.slba); |
| 1026 | c.rw.length = cpu_to_le16(io.nblocks); |
| 1027 | c.rw.control = cpu_to_le16(io.control); |
| 1028 | c.rw.dsmgmt = cpu_to_le32(io.dsmgmt); |
| 1029 | c.rw.reftag = cpu_to_le32(io.reftag); |
| 1030 | c.rw.apptag = cpu_to_le16(io.apptag); |
| 1031 | c.rw.appmask = cpu_to_le16(io.appmask); |
| 1032 | |
Keith Busch | 63263d6 | 2017-08-29 17:46:04 -0400 | [diff] [blame] | 1033 | return nvme_submit_user_cmd(ns->queue, &c, |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1034 | (void __user *)(uintptr_t)io.addr, length, |
| 1035 | metadata, meta_len, io.slba, NULL, 0); |
| 1036 | } |
| 1037 | |
Keith Busch | 84fef62 | 2017-11-07 10:28:32 -0700 | [diff] [blame] | 1038 | static u32 nvme_known_admin_effects(u8 opcode) |
| 1039 | { |
| 1040 | switch (opcode) { |
| 1041 | case nvme_admin_format_nvm: |
| 1042 | return NVME_CMD_EFFECTS_CSUPP | NVME_CMD_EFFECTS_LBCC | |
| 1043 | NVME_CMD_EFFECTS_CSE_MASK; |
| 1044 | case nvme_admin_sanitize_nvm: |
| 1045 | return NVME_CMD_EFFECTS_CSE_MASK; |
| 1046 | default: |
| 1047 | break; |
| 1048 | } |
| 1049 | return 0; |
| 1050 | } |
| 1051 | |
| 1052 | static u32 nvme_passthru_start(struct nvme_ctrl *ctrl, struct nvme_ns *ns, |
| 1053 | u8 opcode) |
| 1054 | { |
| 1055 | u32 effects = 0; |
| 1056 | |
| 1057 | if (ns) { |
| 1058 | if (ctrl->effects) |
| 1059 | effects = le32_to_cpu(ctrl->effects->iocs[opcode]); |
| 1060 | if (effects & ~NVME_CMD_EFFECTS_CSUPP) |
| 1061 | dev_warn(ctrl->device, |
| 1062 | "IO command:%02x has unhandled effects:%08x\n", |
| 1063 | opcode, effects); |
| 1064 | return 0; |
| 1065 | } |
| 1066 | |
| 1067 | if (ctrl->effects) |
| 1068 | effects = le32_to_cpu(ctrl->effects->iocs[opcode]); |
| 1069 | else |
| 1070 | effects = nvme_known_admin_effects(opcode); |
| 1071 | |
| 1072 | /* |
| 1073 | * For simplicity, IO to all namespaces is quiesced even if the command |
| 1074 | * effects say only one namespace is affected. |
| 1075 | */ |
| 1076 | if (effects & (NVME_CMD_EFFECTS_LBCC | NVME_CMD_EFFECTS_CSE_MASK)) { |
| 1077 | nvme_start_freeze(ctrl); |
| 1078 | nvme_wait_freeze(ctrl); |
| 1079 | } |
| 1080 | return effects; |
| 1081 | } |
| 1082 | |
| 1083 | static void nvme_update_formats(struct nvme_ctrl *ctrl) |
| 1084 | { |
| 1085 | struct nvme_ns *ns; |
| 1086 | |
| 1087 | mutex_lock(&ctrl->namespaces_mutex); |
| 1088 | list_for_each_entry(ns, &ctrl->namespaces, list) { |
| 1089 | if (ns->disk && nvme_revalidate_disk(ns->disk)) |
| 1090 | nvme_ns_remove(ns); |
| 1091 | } |
| 1092 | mutex_unlock(&ctrl->namespaces_mutex); |
| 1093 | } |
| 1094 | |
| 1095 | static void nvme_passthru_end(struct nvme_ctrl *ctrl, u32 effects) |
| 1096 | { |
| 1097 | /* |
| 1098 | * Revalidate LBA changes prior to unfreezing. This is necessary to |
| 1099 | * prevent memory corruption if a logical block size was changed by |
| 1100 | * this command. |
| 1101 | */ |
| 1102 | if (effects & NVME_CMD_EFFECTS_LBCC) |
| 1103 | nvme_update_formats(ctrl); |
| 1104 | if (effects & (NVME_CMD_EFFECTS_LBCC | NVME_CMD_EFFECTS_CSE_MASK)) |
| 1105 | nvme_unfreeze(ctrl); |
| 1106 | if (effects & NVME_CMD_EFFECTS_CCC) |
| 1107 | nvme_init_identify(ctrl); |
| 1108 | if (effects & (NVME_CMD_EFFECTS_NIC | NVME_CMD_EFFECTS_NCC)) |
| 1109 | nvme_queue_scan(ctrl); |
| 1110 | } |
| 1111 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 1112 | 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] | 1113 | struct nvme_passthru_cmd __user *ucmd) |
| 1114 | { |
| 1115 | struct nvme_passthru_cmd cmd; |
| 1116 | struct nvme_command c; |
| 1117 | unsigned timeout = 0; |
Keith Busch | 84fef62 | 2017-11-07 10:28:32 -0700 | [diff] [blame] | 1118 | u32 effects; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1119 | int status; |
| 1120 | |
| 1121 | if (!capable(CAP_SYS_ADMIN)) |
| 1122 | return -EACCES; |
| 1123 | if (copy_from_user(&cmd, ucmd, sizeof(cmd))) |
| 1124 | return -EFAULT; |
Keith Busch | 63088ec | 2016-02-24 09:15:57 -0700 | [diff] [blame] | 1125 | if (cmd.flags) |
| 1126 | return -EINVAL; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1127 | |
| 1128 | memset(&c, 0, sizeof(c)); |
| 1129 | c.common.opcode = cmd.opcode; |
| 1130 | c.common.flags = cmd.flags; |
| 1131 | c.common.nsid = cpu_to_le32(cmd.nsid); |
| 1132 | c.common.cdw2[0] = cpu_to_le32(cmd.cdw2); |
| 1133 | c.common.cdw2[1] = cpu_to_le32(cmd.cdw3); |
| 1134 | c.common.cdw10[0] = cpu_to_le32(cmd.cdw10); |
| 1135 | c.common.cdw10[1] = cpu_to_le32(cmd.cdw11); |
| 1136 | c.common.cdw10[2] = cpu_to_le32(cmd.cdw12); |
| 1137 | c.common.cdw10[3] = cpu_to_le32(cmd.cdw13); |
| 1138 | c.common.cdw10[4] = cpu_to_le32(cmd.cdw14); |
| 1139 | c.common.cdw10[5] = cpu_to_le32(cmd.cdw15); |
| 1140 | |
| 1141 | if (cmd.timeout_ms) |
| 1142 | timeout = msecs_to_jiffies(cmd.timeout_ms); |
| 1143 | |
Keith Busch | 84fef62 | 2017-11-07 10:28:32 -0700 | [diff] [blame] | 1144 | effects = nvme_passthru_start(ctrl, ns, cmd.opcode); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1145 | status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c, |
Arnd Bergmann | d1ea7be | 2015-12-08 16:22:17 +0100 | [diff] [blame] | 1146 | (void __user *)(uintptr_t)cmd.addr, cmd.data_len, |
Keith Busch | 63263d6 | 2017-08-29 17:46:04 -0400 | [diff] [blame] | 1147 | (void __user *)(uintptr_t)cmd.metadata, cmd.metadata, |
| 1148 | 0, &cmd.result, timeout); |
Keith Busch | 84fef62 | 2017-11-07 10:28:32 -0700 | [diff] [blame] | 1149 | nvme_passthru_end(ctrl, effects); |
| 1150 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1151 | if (status >= 0) { |
| 1152 | if (put_user(cmd.result, &ucmd->result)) |
| 1153 | return -EFAULT; |
| 1154 | } |
| 1155 | |
| 1156 | return status; |
| 1157 | } |
| 1158 | |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1159 | /* |
| 1160 | * Issue ioctl requests on the first available path. Note that unlike normal |
| 1161 | * block layer requests we will not retry failed request on another controller. |
| 1162 | */ |
| 1163 | static struct nvme_ns *nvme_get_ns_from_disk(struct gendisk *disk, |
| 1164 | struct nvme_ns_head **head, int *srcu_idx) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1165 | { |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1166 | #ifdef CONFIG_NVME_MULTIPATH |
| 1167 | if (disk->fops == &nvme_ns_head_ops) { |
| 1168 | *head = disk->private_data; |
| 1169 | *srcu_idx = srcu_read_lock(&(*head)->srcu); |
| 1170 | return nvme_find_path(*head); |
| 1171 | } |
| 1172 | #endif |
| 1173 | *head = NULL; |
| 1174 | *srcu_idx = -1; |
| 1175 | return disk->private_data; |
| 1176 | } |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1177 | |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1178 | static void nvme_put_ns_from_disk(struct nvme_ns_head *head, int idx) |
| 1179 | { |
| 1180 | if (head) |
| 1181 | srcu_read_unlock(&head->srcu, idx); |
| 1182 | } |
| 1183 | |
| 1184 | static int nvme_ns_ioctl(struct nvme_ns *ns, unsigned cmd, unsigned long arg) |
| 1185 | { |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1186 | switch (cmd) { |
| 1187 | case NVME_IOCTL_ID: |
| 1188 | force_successful_syscall_return(); |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 1189 | return ns->head->ns_id; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1190 | case NVME_IOCTL_ADMIN_CMD: |
| 1191 | return nvme_user_cmd(ns->ctrl, NULL, (void __user *)arg); |
| 1192 | case NVME_IOCTL_IO_CMD: |
| 1193 | return nvme_user_cmd(ns->ctrl, ns, (void __user *)arg); |
| 1194 | case NVME_IOCTL_SUBMIT_IO: |
| 1195 | return nvme_submit_io(ns, (void __user *)arg); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1196 | default: |
Matias Bjørling | 84d4add | 2017-01-31 13:17:16 +0100 | [diff] [blame] | 1197 | #ifdef CONFIG_NVM |
| 1198 | if (ns->ndev) |
| 1199 | return nvme_nvm_ioctl(ns, cmd, arg); |
| 1200 | #endif |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1201 | if (is_sed_ioctl(cmd)) |
Christoph Hellwig | 4f1244c | 2017-02-17 13:59:39 +0100 | [diff] [blame] | 1202 | return sed_ioctl(ns->ctrl->opal_dev, cmd, |
Scott Bauer | e225c20 | 2017-02-14 17:29:36 -0700 | [diff] [blame] | 1203 | (void __user *) arg); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1204 | return -ENOTTY; |
| 1205 | } |
| 1206 | } |
| 1207 | |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1208 | static int nvme_ioctl(struct block_device *bdev, fmode_t mode, |
| 1209 | unsigned int cmd, unsigned long arg) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1210 | { |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1211 | struct nvme_ns_head *head = NULL; |
| 1212 | struct nvme_ns *ns; |
| 1213 | int srcu_idx, ret; |
| 1214 | |
| 1215 | ns = nvme_get_ns_from_disk(bdev->bd_disk, &head, &srcu_idx); |
| 1216 | if (unlikely(!ns)) |
| 1217 | ret = -EWOULDBLOCK; |
| 1218 | else |
| 1219 | ret = nvme_ns_ioctl(ns, cmd, arg); |
| 1220 | nvme_put_ns_from_disk(head, srcu_idx); |
| 1221 | return ret; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1222 | } |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1223 | |
| 1224 | static int nvme_open(struct block_device *bdev, fmode_t mode) |
| 1225 | { |
Christoph Hellwig | c6424a9 | 2017-10-18 13:22:00 +0200 | [diff] [blame] | 1226 | struct nvme_ns *ns = bdev->bd_disk->private_data; |
| 1227 | |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1228 | #ifdef CONFIG_NVME_MULTIPATH |
| 1229 | /* should never be called due to GENHD_FL_HIDDEN */ |
| 1230 | if (WARN_ON_ONCE(ns->head->disk)) |
Nitzan Carmi | 85088c4 | 2018-01-04 17:56:13 +0200 | [diff] [blame] | 1231 | goto fail; |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1232 | #endif |
Christoph Hellwig | c6424a9 | 2017-10-18 13:22:00 +0200 | [diff] [blame] | 1233 | if (!kref_get_unless_zero(&ns->kref)) |
Nitzan Carmi | 85088c4 | 2018-01-04 17:56:13 +0200 | [diff] [blame] | 1234 | goto fail; |
| 1235 | if (!try_module_get(ns->ctrl->ops->module)) |
| 1236 | goto fail_put_ns; |
| 1237 | |
Christoph Hellwig | c6424a9 | 2017-10-18 13:22:00 +0200 | [diff] [blame] | 1238 | return 0; |
Nitzan Carmi | 85088c4 | 2018-01-04 17:56:13 +0200 | [diff] [blame] | 1239 | |
| 1240 | fail_put_ns: |
| 1241 | nvme_put_ns(ns); |
| 1242 | fail: |
| 1243 | return -ENXIO; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1244 | } |
| 1245 | |
| 1246 | static void nvme_release(struct gendisk *disk, fmode_t mode) |
| 1247 | { |
Nitzan Carmi | 85088c4 | 2018-01-04 17:56:13 +0200 | [diff] [blame] | 1248 | struct nvme_ns *ns = disk->private_data; |
| 1249 | |
| 1250 | module_put(ns->ctrl->ops->module); |
| 1251 | nvme_put_ns(ns); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1252 | } |
| 1253 | |
| 1254 | static int nvme_getgeo(struct block_device *bdev, struct hd_geometry *geo) |
| 1255 | { |
| 1256 | /* some standard values */ |
| 1257 | geo->heads = 1 << 6; |
| 1258 | geo->sectors = 1 << 5; |
| 1259 | geo->cylinders = get_capacity(bdev->bd_disk) >> 11; |
| 1260 | return 0; |
| 1261 | } |
| 1262 | |
| 1263 | #ifdef CONFIG_BLK_DEV_INTEGRITY |
Christoph Hellwig | 39b7baa | 2017-11-02 21:28:53 +0300 | [diff] [blame] | 1264 | static void nvme_init_integrity(struct gendisk *disk, u16 ms, u8 pi_type) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1265 | { |
| 1266 | struct blk_integrity integrity; |
| 1267 | |
Jay Freyensee | fa9a89f | 2016-07-20 21:26:16 -0600 | [diff] [blame] | 1268 | memset(&integrity, 0, sizeof(integrity)); |
Christoph Hellwig | 39b7baa | 2017-11-02 21:28:53 +0300 | [diff] [blame] | 1269 | switch (pi_type) { |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1270 | case NVME_NS_DPS_PI_TYPE3: |
| 1271 | integrity.profile = &t10_pi_type3_crc; |
Nicholas Bellinger | ba36c21 | 2016-04-09 03:04:42 +0000 | [diff] [blame] | 1272 | integrity.tag_size = sizeof(u16) + sizeof(u32); |
| 1273 | integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1274 | break; |
| 1275 | case NVME_NS_DPS_PI_TYPE1: |
| 1276 | case NVME_NS_DPS_PI_TYPE2: |
| 1277 | integrity.profile = &t10_pi_type1_crc; |
Nicholas Bellinger | ba36c21 | 2016-04-09 03:04:42 +0000 | [diff] [blame] | 1278 | integrity.tag_size = sizeof(u16); |
| 1279 | integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1280 | break; |
| 1281 | default: |
| 1282 | integrity.profile = NULL; |
| 1283 | break; |
| 1284 | } |
Christoph Hellwig | 39b7baa | 2017-11-02 21:28:53 +0300 | [diff] [blame] | 1285 | integrity.tuple_size = ms; |
| 1286 | blk_integrity_register(disk, &integrity); |
| 1287 | blk_queue_max_integrity_segments(disk->queue, 1); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1288 | } |
| 1289 | #else |
Christoph Hellwig | 39b7baa | 2017-11-02 21:28:53 +0300 | [diff] [blame] | 1290 | static void nvme_init_integrity(struct gendisk *disk, u16 ms, u8 pi_type) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1291 | { |
| 1292 | } |
| 1293 | #endif /* CONFIG_BLK_DEV_INTEGRITY */ |
| 1294 | |
Scott Bauer | 6b8190d | 2017-06-15 10:44:30 -0600 | [diff] [blame] | 1295 | static void nvme_set_chunk_size(struct nvme_ns *ns) |
| 1296 | { |
| 1297 | u32 chunk_size = (((u32)ns->noiob) << (ns->lba_shift - 9)); |
| 1298 | blk_queue_chunk_sectors(ns->queue, rounddown_pow_of_two(chunk_size)); |
| 1299 | } |
| 1300 | |
Christoph Hellwig | 30e5e92 | 2017-11-02 21:28:54 +0300 | [diff] [blame] | 1301 | static void nvme_config_discard(struct nvme_ctrl *ctrl, |
| 1302 | unsigned stream_alignment, struct request_queue *queue) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1303 | { |
Christoph Hellwig | 30e5e92 | 2017-11-02 21:28:54 +0300 | [diff] [blame] | 1304 | u32 size = queue_logical_block_size(queue); |
| 1305 | |
| 1306 | if (stream_alignment) |
| 1307 | size *= stream_alignment; |
Keith Busch | 08095e7 | 2016-03-04 13:15:17 -0700 | [diff] [blame] | 1308 | |
Christoph Hellwig | b35ba01 | 2017-02-08 14:46:50 +0100 | [diff] [blame] | 1309 | BUILD_BUG_ON(PAGE_SIZE / sizeof(struct nvme_dsm_range) < |
| 1310 | NVME_DSM_MAX_RANGES); |
| 1311 | |
Christoph Hellwig | 30e5e92 | 2017-11-02 21:28:54 +0300 | [diff] [blame] | 1312 | queue->limits.discard_alignment = size; |
| 1313 | queue->limits.discard_granularity = size; |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 1314 | |
Christoph Hellwig | 30e5e92 | 2017-11-02 21:28:54 +0300 | [diff] [blame] | 1315 | blk_queue_max_discard_sectors(queue, UINT_MAX); |
| 1316 | blk_queue_max_discard_segments(queue, NVME_DSM_MAX_RANGES); |
| 1317 | queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, queue); |
Christoph Hellwig | e850fd1 | 2017-04-05 19:21:13 +0200 | [diff] [blame] | 1318 | |
| 1319 | if (ctrl->quirks & NVME_QUIRK_DEALLOCATE_ZEROES) |
Christoph Hellwig | 30e5e92 | 2017-11-02 21:28:54 +0300 | [diff] [blame] | 1320 | blk_queue_max_write_zeroes_sectors(queue, UINT_MAX); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1321 | } |
| 1322 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1323 | static void nvme_report_ns_ids(struct nvme_ctrl *ctrl, unsigned int nsid, |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 1324 | struct nvme_id_ns *id, struct nvme_ns_ids *ids) |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1325 | { |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 1326 | memset(ids, 0, sizeof(*ids)); |
| 1327 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1328 | if (ctrl->vs >= NVME_VS(1, 1, 0)) |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 1329 | memcpy(ids->eui64, id->eui64, sizeof(id->eui64)); |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1330 | if (ctrl->vs >= NVME_VS(1, 2, 0)) |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 1331 | memcpy(ids->nguid, id->nguid, sizeof(id->nguid)); |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1332 | if (ctrl->vs >= NVME_VS(1, 3, 0)) { |
Johannes Thumshirn | 3b22ba2 | 2017-06-07 11:45:34 +0200 | [diff] [blame] | 1333 | /* Don't treat error as fatal we potentially |
| 1334 | * already have a NGUID or EUI-64 |
| 1335 | */ |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 1336 | if (nvme_identify_ns_descs(ctrl, nsid, ids)) |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1337 | dev_warn(ctrl->device, |
Johannes Thumshirn | 3b22ba2 | 2017-06-07 11:45:34 +0200 | [diff] [blame] | 1338 | "%s: Identify Descriptors failed\n", __func__); |
| 1339 | } |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1340 | } |
| 1341 | |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 1342 | static bool nvme_ns_ids_valid(struct nvme_ns_ids *ids) |
| 1343 | { |
| 1344 | return !uuid_is_null(&ids->uuid) || |
| 1345 | memchr_inv(ids->nguid, 0, sizeof(ids->nguid)) || |
| 1346 | memchr_inv(ids->eui64, 0, sizeof(ids->eui64)); |
| 1347 | } |
| 1348 | |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 1349 | static bool nvme_ns_ids_equal(struct nvme_ns_ids *a, struct nvme_ns_ids *b) |
| 1350 | { |
| 1351 | return uuid_equal(&a->uuid, &b->uuid) && |
| 1352 | memcmp(&a->nguid, &b->nguid, sizeof(a->nguid)) == 0 && |
| 1353 | memcmp(&a->eui64, &b->eui64, sizeof(a->eui64)) == 0; |
| 1354 | } |
| 1355 | |
Christoph Hellwig | 24b0b58 | 2017-11-02 21:28:56 +0300 | [diff] [blame] | 1356 | static void nvme_update_disk_info(struct gendisk *disk, |
| 1357 | struct nvme_ns *ns, struct nvme_id_ns *id) |
| 1358 | { |
| 1359 | sector_t capacity = le64_to_cpup(&id->nsze) << (ns->lba_shift - 9); |
| 1360 | unsigned stream_alignment = 0; |
| 1361 | |
| 1362 | if (ns->ctrl->nr_streams && ns->sws && ns->sgs) |
| 1363 | stream_alignment = ns->sws * ns->sgs; |
| 1364 | |
| 1365 | blk_mq_freeze_queue(disk->queue); |
| 1366 | blk_integrity_unregister(disk); |
| 1367 | |
| 1368 | blk_queue_logical_block_size(disk->queue, 1 << ns->lba_shift); |
| 1369 | if (ns->ms && !ns->ext && |
| 1370 | (ns->ctrl->ops->flags & NVME_F_METADATA_SUPPORTED)) |
| 1371 | nvme_init_integrity(disk, ns->ms, ns->pi_type); |
Christoph Hellwig | 715ea9e | 2017-11-07 17:27:34 +0100 | [diff] [blame] | 1372 | if (ns->ms && !nvme_ns_has_pi(ns) && !blk_get_integrity(disk)) |
Christoph Hellwig | 24b0b58 | 2017-11-02 21:28:56 +0300 | [diff] [blame] | 1373 | capacity = 0; |
| 1374 | set_capacity(disk, capacity); |
| 1375 | |
| 1376 | if (ns->ctrl->oncs & NVME_CTRL_ONCS_DSM) |
| 1377 | nvme_config_discard(ns->ctrl, stream_alignment, disk->queue); |
| 1378 | blk_mq_unfreeze_queue(disk->queue); |
| 1379 | } |
| 1380 | |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1381 | static void __nvme_revalidate_disk(struct gendisk *disk, struct nvme_id_ns *id) |
| 1382 | { |
| 1383 | struct nvme_ns *ns = disk->private_data; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1384 | |
| 1385 | /* |
| 1386 | * If identify namespace failed, use default 512 byte block size so |
| 1387 | * block layer can use before failing read/write for 0 capacity. |
| 1388 | */ |
Christoph Hellwig | c81bfba | 2017-05-20 15:14:45 +0200 | [diff] [blame] | 1389 | ns->lba_shift = id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ds; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1390 | if (ns->lba_shift == 0) |
| 1391 | ns->lba_shift = 9; |
Scott Bauer | 6b8190d | 2017-06-15 10:44:30 -0600 | [diff] [blame] | 1392 | ns->noiob = le16_to_cpu(id->noiob); |
Christoph Hellwig | b5be3b3 | 2017-11-02 21:28:52 +0300 | [diff] [blame] | 1393 | ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT); |
| 1394 | ns->ms = le16_to_cpu(id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ms); |
| 1395 | /* the PI implementation requires metadata equal t10 pi tuple size */ |
| 1396 | if (ns->ms == sizeof(struct t10_pi_tuple)) |
| 1397 | ns->pi_type = id->dps & NVME_NS_DPS_PI_MASK; |
| 1398 | else |
| 1399 | ns->pi_type = 0; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1400 | |
Scott Bauer | 6b8190d | 2017-06-15 10:44:30 -0600 | [diff] [blame] | 1401 | if (ns->noiob) |
| 1402 | nvme_set_chunk_size(ns); |
Christoph Hellwig | 24b0b58 | 2017-11-02 21:28:56 +0300 | [diff] [blame] | 1403 | nvme_update_disk_info(disk, ns, id); |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1404 | #ifdef CONFIG_NVME_MULTIPATH |
| 1405 | if (ns->head->disk) |
| 1406 | nvme_update_disk_info(ns->head->disk, ns, id); |
| 1407 | #endif |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1408 | } |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1409 | |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1410 | static int nvme_revalidate_disk(struct gendisk *disk) |
| 1411 | { |
| 1412 | struct nvme_ns *ns = disk->private_data; |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1413 | struct nvme_ctrl *ctrl = ns->ctrl; |
| 1414 | struct nvme_id_ns *id; |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 1415 | struct nvme_ns_ids ids; |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1416 | int ret = 0; |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1417 | |
| 1418 | if (test_bit(NVME_NS_DEAD, &ns->flags)) { |
| 1419 | set_capacity(disk, 0); |
| 1420 | return -ENODEV; |
| 1421 | } |
| 1422 | |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 1423 | id = nvme_identify_ns(ctrl, ns->head->ns_id); |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1424 | if (!id) |
| 1425 | return -ENODEV; |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 1426 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1427 | if (id->ncap == 0) { |
| 1428 | ret = -ENODEV; |
| 1429 | goto out; |
| 1430 | } |
| 1431 | |
Keith Busch | 5e0fab5 | 2017-10-27 13:51:22 -0600 | [diff] [blame] | 1432 | __nvme_revalidate_disk(disk, id); |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 1433 | nvme_report_ns_ids(ctrl, ns->head->ns_id, id, &ids); |
| 1434 | if (!nvme_ns_ids_equal(&ns->head->ids, &ids)) { |
Christoph Hellwig | 1d5df6a | 2017-08-17 14:10:00 +0200 | [diff] [blame] | 1435 | dev_err(ctrl->device, |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 1436 | "identifiers changed for nsid %d\n", ns->head->ns_id); |
Christoph Hellwig | 1d5df6a | 2017-08-17 14:10:00 +0200 | [diff] [blame] | 1437 | ret = -ENODEV; |
| 1438 | } |
| 1439 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1440 | out: |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1441 | kfree(id); |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 1442 | return ret; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1443 | } |
| 1444 | |
| 1445 | static char nvme_pr_type(enum pr_type type) |
| 1446 | { |
| 1447 | switch (type) { |
| 1448 | case PR_WRITE_EXCLUSIVE: |
| 1449 | return 1; |
| 1450 | case PR_EXCLUSIVE_ACCESS: |
| 1451 | return 2; |
| 1452 | case PR_WRITE_EXCLUSIVE_REG_ONLY: |
| 1453 | return 3; |
| 1454 | case PR_EXCLUSIVE_ACCESS_REG_ONLY: |
| 1455 | return 4; |
| 1456 | case PR_WRITE_EXCLUSIVE_ALL_REGS: |
| 1457 | return 5; |
| 1458 | case PR_EXCLUSIVE_ACCESS_ALL_REGS: |
| 1459 | return 6; |
| 1460 | default: |
| 1461 | return 0; |
| 1462 | } |
| 1463 | }; |
| 1464 | |
| 1465 | static int nvme_pr_command(struct block_device *bdev, u32 cdw10, |
| 1466 | u64 key, u64 sa_key, u8 op) |
| 1467 | { |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1468 | struct nvme_ns_head *head = NULL; |
| 1469 | struct nvme_ns *ns; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1470 | struct nvme_command c; |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1471 | int srcu_idx, ret; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1472 | u8 data[16] = { 0, }; |
| 1473 | |
Keith Busch | b0d61d5 | 2017-11-16 13:36:49 -0700 | [diff] [blame] | 1474 | ns = nvme_get_ns_from_disk(bdev->bd_disk, &head, &srcu_idx); |
| 1475 | if (unlikely(!ns)) |
| 1476 | return -EWOULDBLOCK; |
| 1477 | |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1478 | put_unaligned_le64(key, &data[0]); |
| 1479 | put_unaligned_le64(sa_key, &data[8]); |
| 1480 | |
| 1481 | memset(&c, 0, sizeof(c)); |
| 1482 | c.common.opcode = op; |
Keith Busch | b0d61d5 | 2017-11-16 13:36:49 -0700 | [diff] [blame] | 1483 | c.common.nsid = cpu_to_le32(ns->head->ns_id); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1484 | c.common.cdw10[0] = cpu_to_le32(cdw10); |
| 1485 | |
Keith Busch | b0d61d5 | 2017-11-16 13:36:49 -0700 | [diff] [blame] | 1486 | ret = nvme_submit_sync_cmd(ns->queue, &c, data, 16); |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1487 | nvme_put_ns_from_disk(head, srcu_idx); |
| 1488 | return ret; |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1489 | } |
| 1490 | |
| 1491 | static int nvme_pr_register(struct block_device *bdev, u64 old, |
| 1492 | u64 new, unsigned flags) |
| 1493 | { |
| 1494 | u32 cdw10; |
| 1495 | |
| 1496 | if (flags & ~PR_FL_IGNORE_KEY) |
| 1497 | return -EOPNOTSUPP; |
| 1498 | |
| 1499 | cdw10 = old ? 2 : 0; |
| 1500 | cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0; |
| 1501 | cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */ |
| 1502 | return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register); |
| 1503 | } |
| 1504 | |
| 1505 | static int nvme_pr_reserve(struct block_device *bdev, u64 key, |
| 1506 | enum pr_type type, unsigned flags) |
| 1507 | { |
| 1508 | u32 cdw10; |
| 1509 | |
| 1510 | if (flags & ~PR_FL_IGNORE_KEY) |
| 1511 | return -EOPNOTSUPP; |
| 1512 | |
| 1513 | cdw10 = nvme_pr_type(type) << 8; |
| 1514 | cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0); |
| 1515 | return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire); |
| 1516 | } |
| 1517 | |
| 1518 | static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new, |
| 1519 | enum pr_type type, bool abort) |
| 1520 | { |
| 1521 | u32 cdw10 = nvme_pr_type(type) << 8 | abort ? 2 : 1; |
| 1522 | return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire); |
| 1523 | } |
| 1524 | |
| 1525 | static int nvme_pr_clear(struct block_device *bdev, u64 key) |
| 1526 | { |
Dan Carpenter | 8c0b391 | 2015-12-09 13:24:06 +0300 | [diff] [blame] | 1527 | u32 cdw10 = 1 | (key ? 1 << 3 : 0); |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1528 | return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register); |
| 1529 | } |
| 1530 | |
| 1531 | static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type) |
| 1532 | { |
| 1533 | u32 cdw10 = nvme_pr_type(type) << 8 | key ? 1 << 3 : 0; |
| 1534 | return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release); |
| 1535 | } |
| 1536 | |
| 1537 | static const struct pr_ops nvme_pr_ops = { |
| 1538 | .pr_register = nvme_pr_register, |
| 1539 | .pr_reserve = nvme_pr_reserve, |
| 1540 | .pr_release = nvme_pr_release, |
| 1541 | .pr_preempt = nvme_pr_preempt, |
| 1542 | .pr_clear = nvme_pr_clear, |
| 1543 | }; |
| 1544 | |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1545 | #ifdef CONFIG_BLK_SED_OPAL |
Christoph Hellwig | 4f1244c | 2017-02-17 13:59:39 +0100 | [diff] [blame] | 1546 | int nvme_sec_submit(void *data, u16 spsp, u8 secp, void *buffer, size_t len, |
| 1547 | bool send) |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1548 | { |
Christoph Hellwig | 4f1244c | 2017-02-17 13:59:39 +0100 | [diff] [blame] | 1549 | struct nvme_ctrl *ctrl = data; |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1550 | struct nvme_command cmd; |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1551 | |
| 1552 | memset(&cmd, 0, sizeof(cmd)); |
| 1553 | if (send) |
| 1554 | cmd.common.opcode = nvme_admin_security_send; |
| 1555 | else |
| 1556 | cmd.common.opcode = nvme_admin_security_recv; |
Scott Bauer | a98e58e5 | 2017-02-03 12:50:32 -0700 | [diff] [blame] | 1557 | cmd.common.nsid = 0; |
| 1558 | cmd.common.cdw10[0] = cpu_to_le32(((u32)secp) << 24 | ((u32)spsp) << 8); |
| 1559 | cmd.common.cdw10[1] = cpu_to_le32(len); |
| 1560 | |
| 1561 | return __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, NULL, buffer, len, |
| 1562 | ADMIN_TIMEOUT, NVME_QID_ANY, 1, 0); |
| 1563 | } |
| 1564 | EXPORT_SYMBOL_GPL(nvme_sec_submit); |
| 1565 | #endif /* CONFIG_BLK_SED_OPAL */ |
| 1566 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 1567 | static const struct block_device_operations nvme_fops = { |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1568 | .owner = THIS_MODULE, |
| 1569 | .ioctl = nvme_ioctl, |
Christoph Hellwig | 761f2e1 | 2017-10-05 18:46:46 +0200 | [diff] [blame] | 1570 | .compat_ioctl = nvme_ioctl, |
Christoph Hellwig | 1673f1f | 2015-11-26 10:54:19 +0100 | [diff] [blame] | 1571 | .open = nvme_open, |
| 1572 | .release = nvme_release, |
| 1573 | .getgeo = nvme_getgeo, |
| 1574 | .revalidate_disk= nvme_revalidate_disk, |
| 1575 | .pr_ops = &nvme_pr_ops, |
| 1576 | }; |
| 1577 | |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 1578 | #ifdef CONFIG_NVME_MULTIPATH |
| 1579 | static int nvme_ns_head_open(struct block_device *bdev, fmode_t mode) |
| 1580 | { |
| 1581 | struct nvme_ns_head *head = bdev->bd_disk->private_data; |
| 1582 | |
| 1583 | if (!kref_get_unless_zero(&head->ref)) |
| 1584 | return -ENXIO; |
| 1585 | return 0; |
| 1586 | } |
| 1587 | |
| 1588 | static void nvme_ns_head_release(struct gendisk *disk, fmode_t mode) |
| 1589 | { |
| 1590 | nvme_put_ns_head(disk->private_data); |
| 1591 | } |
| 1592 | |
| 1593 | const struct block_device_operations nvme_ns_head_ops = { |
| 1594 | .owner = THIS_MODULE, |
| 1595 | .open = nvme_ns_head_open, |
| 1596 | .release = nvme_ns_head_release, |
| 1597 | .ioctl = nvme_ioctl, |
| 1598 | .compat_ioctl = nvme_ioctl, |
| 1599 | .getgeo = nvme_getgeo, |
| 1600 | .pr_ops = &nvme_pr_ops, |
| 1601 | }; |
| 1602 | #endif /* CONFIG_NVME_MULTIPATH */ |
| 1603 | |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1604 | static int nvme_wait_ready(struct nvme_ctrl *ctrl, u64 cap, bool enabled) |
| 1605 | { |
| 1606 | unsigned long timeout = |
| 1607 | ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies; |
| 1608 | u32 csts, bit = enabled ? NVME_CSTS_RDY : 0; |
| 1609 | int ret; |
| 1610 | |
| 1611 | while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) { |
Keith Busch | 0df1e4f | 2016-10-11 13:31:58 -0400 | [diff] [blame] | 1612 | if (csts == ~0) |
| 1613 | return -ENODEV; |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1614 | if ((csts & NVME_CSTS_RDY) == bit) |
| 1615 | break; |
| 1616 | |
| 1617 | msleep(100); |
| 1618 | if (fatal_signal_pending(current)) |
| 1619 | return -EINTR; |
| 1620 | if (time_after(jiffies, timeout)) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1621 | dev_err(ctrl->device, |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1622 | "Device not ready; aborting %s\n", enabled ? |
| 1623 | "initialisation" : "reset"); |
| 1624 | return -ENODEV; |
| 1625 | } |
| 1626 | } |
| 1627 | |
| 1628 | return ret; |
| 1629 | } |
| 1630 | |
| 1631 | /* |
| 1632 | * If the device has been passed off to us in an enabled state, just clear |
| 1633 | * the enabled bit. The spec says we should set the 'shutdown notification |
| 1634 | * bits', but doing so may cause the device to complete commands to the |
| 1635 | * admin queue ... and we don't know what memory that might be pointing at! |
| 1636 | */ |
| 1637 | int nvme_disable_ctrl(struct nvme_ctrl *ctrl, u64 cap) |
| 1638 | { |
| 1639 | int ret; |
| 1640 | |
| 1641 | ctrl->ctrl_config &= ~NVME_CC_SHN_MASK; |
| 1642 | ctrl->ctrl_config &= ~NVME_CC_ENABLE; |
| 1643 | |
| 1644 | ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config); |
| 1645 | if (ret) |
| 1646 | return ret; |
Guilherme G. Piccoli | 54adc01 | 2016-06-14 18:22:41 -0300 | [diff] [blame] | 1647 | |
Guilherme G. Piccoli | b5a10c5 | 2016-12-28 22:13:15 -0200 | [diff] [blame] | 1648 | if (ctrl->quirks & NVME_QUIRK_DELAY_BEFORE_CHK_RDY) |
Guilherme G. Piccoli | 54adc01 | 2016-06-14 18:22:41 -0300 | [diff] [blame] | 1649 | msleep(NVME_QUIRK_DELAY_AMOUNT); |
| 1650 | |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1651 | return nvme_wait_ready(ctrl, cap, false); |
| 1652 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 1653 | EXPORT_SYMBOL_GPL(nvme_disable_ctrl); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1654 | |
| 1655 | int nvme_enable_ctrl(struct nvme_ctrl *ctrl, u64 cap) |
| 1656 | { |
| 1657 | /* |
| 1658 | * Default to a 4K page size, with the intention to update this |
| 1659 | * path in the future to accomodate architectures with differing |
| 1660 | * kernel and IO page sizes. |
| 1661 | */ |
| 1662 | unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12, page_shift = 12; |
| 1663 | int ret; |
| 1664 | |
| 1665 | if (page_shift < dev_page_min) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1666 | dev_err(ctrl->device, |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1667 | "Minimum device page size %u too large for host (%u)\n", |
| 1668 | 1 << dev_page_min, 1 << page_shift); |
| 1669 | return -ENODEV; |
| 1670 | } |
| 1671 | |
| 1672 | ctrl->page_size = 1 << page_shift; |
| 1673 | |
| 1674 | ctrl->ctrl_config = NVME_CC_CSS_NVM; |
| 1675 | ctrl->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT; |
Max Gurtovoy | 60b43f6 | 2017-08-13 19:21:07 +0300 | [diff] [blame] | 1676 | ctrl->ctrl_config |= NVME_CC_AMS_RR | NVME_CC_SHN_NONE; |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1677 | ctrl->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES; |
| 1678 | ctrl->ctrl_config |= NVME_CC_ENABLE; |
| 1679 | |
| 1680 | ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config); |
| 1681 | if (ret) |
| 1682 | return ret; |
| 1683 | return nvme_wait_ready(ctrl, cap, true); |
| 1684 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 1685 | EXPORT_SYMBOL_GPL(nvme_enable_ctrl); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1686 | |
| 1687 | int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl) |
| 1688 | { |
Martin K. Petersen | 07fbd32 | 2017-08-25 19:14:50 -0400 | [diff] [blame] | 1689 | unsigned long timeout = jiffies + (ctrl->shutdown_timeout * HZ); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1690 | u32 csts; |
| 1691 | int ret; |
| 1692 | |
| 1693 | ctrl->ctrl_config &= ~NVME_CC_SHN_MASK; |
| 1694 | ctrl->ctrl_config |= NVME_CC_SHN_NORMAL; |
| 1695 | |
| 1696 | ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config); |
| 1697 | if (ret) |
| 1698 | return ret; |
| 1699 | |
| 1700 | while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) { |
| 1701 | if ((csts & NVME_CSTS_SHST_MASK) == NVME_CSTS_SHST_CMPLT) |
| 1702 | break; |
| 1703 | |
| 1704 | msleep(100); |
| 1705 | if (fatal_signal_pending(current)) |
| 1706 | return -EINTR; |
| 1707 | if (time_after(jiffies, timeout)) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 1708 | dev_err(ctrl->device, |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1709 | "Device shutdown incomplete; abort shutdown\n"); |
| 1710 | return -ENODEV; |
| 1711 | } |
| 1712 | } |
| 1713 | |
| 1714 | return ret; |
| 1715 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 1716 | EXPORT_SYMBOL_GPL(nvme_shutdown_ctrl); |
Christoph Hellwig | 5fd4ce1 | 2015-11-28 15:03:49 +0100 | [diff] [blame] | 1717 | |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1718 | static void nvme_set_queue_limits(struct nvme_ctrl *ctrl, |
| 1719 | struct request_queue *q) |
| 1720 | { |
Jens Axboe | 7c88cb0 | 2016-04-12 15:43:09 -0600 | [diff] [blame] | 1721 | bool vwc = false; |
| 1722 | |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1723 | if (ctrl->max_hw_sectors) { |
Christoph Hellwig | 45686b6 | 2016-03-02 18:07:12 +0100 | [diff] [blame] | 1724 | u32 max_segments = |
| 1725 | (ctrl->max_hw_sectors / (ctrl->page_size >> 9)) + 1; |
| 1726 | |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1727 | blk_queue_max_hw_sectors(q, ctrl->max_hw_sectors); |
Christoph Hellwig | 45686b6 | 2016-03-02 18:07:12 +0100 | [diff] [blame] | 1728 | blk_queue_max_segments(q, min_t(u32, max_segments, USHRT_MAX)); |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1729 | } |
Keith Busch | e6282ae | 2016-12-19 11:37:50 -0500 | [diff] [blame] | 1730 | if (ctrl->quirks & NVME_QUIRK_STRIPE_SIZE) |
| 1731 | blk_queue_chunk_sectors(q, ctrl->max_hw_sectors); |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1732 | blk_queue_virt_boundary(q, ctrl->page_size - 1); |
Jens Axboe | 7c88cb0 | 2016-04-12 15:43:09 -0600 | [diff] [blame] | 1733 | if (ctrl->vwc & NVME_CTRL_VWC_PRESENT) |
| 1734 | vwc = true; |
| 1735 | blk_queue_write_cache(q, vwc, vwc); |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 1736 | } |
| 1737 | |
Jon Derrick | dbf86b3 | 2017-08-16 09:51:29 +0200 | [diff] [blame] | 1738 | static int nvme_configure_timestamp(struct nvme_ctrl *ctrl) |
| 1739 | { |
| 1740 | __le64 ts; |
| 1741 | int ret; |
| 1742 | |
| 1743 | if (!(ctrl->oncs & NVME_CTRL_ONCS_TIMESTAMP)) |
| 1744 | return 0; |
| 1745 | |
| 1746 | ts = cpu_to_le64(ktime_to_ms(ktime_get_real())); |
| 1747 | ret = nvme_set_features(ctrl, NVME_FEAT_TIMESTAMP, 0, &ts, sizeof(ts), |
| 1748 | NULL); |
| 1749 | if (ret) |
| 1750 | dev_warn_once(ctrl->device, |
| 1751 | "could not set timestamp (%d)\n", ret); |
| 1752 | return ret; |
| 1753 | } |
| 1754 | |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 1755 | static int nvme_configure_apst(struct nvme_ctrl *ctrl) |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1756 | { |
| 1757 | /* |
| 1758 | * APST (Autonomous Power State Transition) lets us program a |
| 1759 | * table of power state transitions that the controller will |
| 1760 | * perform automatically. We configure it with a simple |
| 1761 | * heuristic: we are willing to spend at most 2% of the time |
| 1762 | * transitioning between power states. Therefore, when running |
| 1763 | * in any given state, we will enter the next lower-power |
Andy Lutomirski | 76e4ad0 | 2017-04-21 16:19:22 -0700 | [diff] [blame] | 1764 | * non-operational state after waiting 50 * (enlat + exlat) |
Kai-Heng Feng | da87591 | 2017-06-07 15:25:42 +0800 | [diff] [blame] | 1765 | * microseconds, as long as that state's exit latency is under |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1766 | * the requested maximum latency. |
| 1767 | * |
| 1768 | * We will not autonomously enter any non-operational state for |
| 1769 | * which the total latency exceeds ps_max_latency_us. Users |
| 1770 | * can set ps_max_latency_us to zero to turn off APST. |
| 1771 | */ |
| 1772 | |
| 1773 | unsigned apste; |
| 1774 | struct nvme_feat_auto_pst *table; |
Andy Lutomirski | fb0dc39 | 2017-04-21 16:19:23 -0700 | [diff] [blame] | 1775 | u64 max_lat_us = 0; |
| 1776 | int max_ps = -1; |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1777 | int ret; |
| 1778 | |
| 1779 | /* |
| 1780 | * If APST isn't supported or if we haven't been initialized yet, |
| 1781 | * then don't do anything. |
| 1782 | */ |
| 1783 | if (!ctrl->apsta) |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 1784 | return 0; |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1785 | |
| 1786 | if (ctrl->npss > 31) { |
| 1787 | dev_warn(ctrl->device, "NPSS is invalid; not using APST\n"); |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 1788 | return 0; |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1789 | } |
| 1790 | |
| 1791 | table = kzalloc(sizeof(*table), GFP_KERNEL); |
| 1792 | if (!table) |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 1793 | return 0; |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1794 | |
Kai-Heng Feng | 76a5af8 | 2017-06-26 16:39:54 -0400 | [diff] [blame] | 1795 | if (!ctrl->apst_enabled || ctrl->ps_max_latency_us == 0) { |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1796 | /* Turn off APST. */ |
| 1797 | apste = 0; |
Andy Lutomirski | fb0dc39 | 2017-04-21 16:19:23 -0700 | [diff] [blame] | 1798 | dev_dbg(ctrl->device, "APST disabled\n"); |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1799 | } else { |
| 1800 | __le64 target = cpu_to_le64(0); |
| 1801 | int state; |
| 1802 | |
| 1803 | /* |
| 1804 | * Walk through all states from lowest- to highest-power. |
| 1805 | * According to the spec, lower-numbered states use more |
| 1806 | * power. NPSS, despite the name, is the index of the |
| 1807 | * lowest-power state, not the number of states. |
| 1808 | */ |
| 1809 | for (state = (int)ctrl->npss; state >= 0; state--) { |
Kai-Heng Feng | da87591 | 2017-06-07 15:25:42 +0800 | [diff] [blame] | 1810 | u64 total_latency_us, exit_latency_us, transition_ms; |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1811 | |
| 1812 | if (target) |
| 1813 | table->entries[state] = target; |
| 1814 | |
| 1815 | /* |
Andy Lutomirski | ff5350a | 2017-04-20 13:37:55 -0700 | [diff] [blame] | 1816 | * Don't allow transitions to the deepest state |
| 1817 | * if it's quirked off. |
| 1818 | */ |
| 1819 | if (state == ctrl->npss && |
| 1820 | (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS)) |
| 1821 | continue; |
| 1822 | |
| 1823 | /* |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1824 | * Is this state a useful non-operational state for |
| 1825 | * higher-power states to autonomously transition to? |
| 1826 | */ |
| 1827 | if (!(ctrl->psd[state].flags & |
| 1828 | NVME_PS_FLAGS_NON_OP_STATE)) |
| 1829 | continue; |
| 1830 | |
Kai-Heng Feng | da87591 | 2017-06-07 15:25:42 +0800 | [diff] [blame] | 1831 | exit_latency_us = |
| 1832 | (u64)le32_to_cpu(ctrl->psd[state].exit_lat); |
| 1833 | if (exit_latency_us > ctrl->ps_max_latency_us) |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1834 | continue; |
| 1835 | |
Kai-Heng Feng | da87591 | 2017-06-07 15:25:42 +0800 | [diff] [blame] | 1836 | total_latency_us = |
| 1837 | exit_latency_us + |
| 1838 | le32_to_cpu(ctrl->psd[state].entry_lat); |
| 1839 | |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1840 | /* |
| 1841 | * This state is good. Use it as the APST idle |
| 1842 | * target for higher power states. |
| 1843 | */ |
| 1844 | transition_ms = total_latency_us + 19; |
| 1845 | do_div(transition_ms, 20); |
| 1846 | if (transition_ms > (1 << 24) - 1) |
| 1847 | transition_ms = (1 << 24) - 1; |
| 1848 | |
| 1849 | target = cpu_to_le64((state << 3) | |
| 1850 | (transition_ms << 8)); |
Andy Lutomirski | fb0dc39 | 2017-04-21 16:19:23 -0700 | [diff] [blame] | 1851 | |
| 1852 | if (max_ps == -1) |
| 1853 | max_ps = state; |
| 1854 | |
| 1855 | if (total_latency_us > max_lat_us) |
| 1856 | max_lat_us = total_latency_us; |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1857 | } |
| 1858 | |
| 1859 | apste = 1; |
Andy Lutomirski | fb0dc39 | 2017-04-21 16:19:23 -0700 | [diff] [blame] | 1860 | |
| 1861 | if (max_ps == -1) { |
| 1862 | dev_dbg(ctrl->device, "APST enabled but no non-operational states are available\n"); |
| 1863 | } else { |
| 1864 | dev_dbg(ctrl->device, "APST enabled: max PS = %d, max round-trip latency = %lluus, table = %*phN\n", |
| 1865 | max_ps, max_lat_us, (int)sizeof(*table), table); |
| 1866 | } |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1867 | } |
| 1868 | |
| 1869 | ret = nvme_set_features(ctrl, NVME_FEAT_AUTO_PST, apste, |
| 1870 | table, sizeof(*table), NULL); |
| 1871 | if (ret) |
| 1872 | dev_err(ctrl->device, "failed to set APST feature (%d)\n", ret); |
| 1873 | |
| 1874 | kfree(table); |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 1875 | return ret; |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1876 | } |
| 1877 | |
| 1878 | static void nvme_set_latency_tolerance(struct device *dev, s32 val) |
| 1879 | { |
| 1880 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 1881 | u64 latency; |
| 1882 | |
| 1883 | switch (val) { |
| 1884 | case PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT: |
| 1885 | case PM_QOS_LATENCY_ANY: |
| 1886 | latency = U64_MAX; |
| 1887 | break; |
| 1888 | |
| 1889 | default: |
| 1890 | latency = val; |
| 1891 | } |
| 1892 | |
| 1893 | if (ctrl->ps_max_latency_us != latency) { |
| 1894 | ctrl->ps_max_latency_us = latency; |
| 1895 | nvme_configure_apst(ctrl); |
| 1896 | } |
| 1897 | } |
| 1898 | |
Andy Lutomirski | bd4da3a | 2017-02-22 13:32:36 -0700 | [diff] [blame] | 1899 | struct nvme_core_quirk_entry { |
| 1900 | /* |
| 1901 | * NVMe model and firmware strings are padded with spaces. For |
| 1902 | * simplicity, strings in the quirk table are padded with NULLs |
| 1903 | * instead. |
| 1904 | */ |
| 1905 | u16 vid; |
| 1906 | const char *mn; |
| 1907 | const char *fr; |
| 1908 | unsigned long quirks; |
| 1909 | }; |
| 1910 | |
| 1911 | static const struct nvme_core_quirk_entry core_quirks[] = { |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1912 | { |
Andy Lutomirski | be56945 | 2017-04-20 13:37:56 -0700 | [diff] [blame] | 1913 | /* |
| 1914 | * This Toshiba device seems to die using any APST states. See: |
| 1915 | * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1678184/comments/11 |
| 1916 | */ |
| 1917 | .vid = 0x1179, |
| 1918 | .mn = "THNSF5256GPUK TOSHIBA", |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 1919 | .quirks = NVME_QUIRK_NO_APST, |
Andy Lutomirski | be56945 | 2017-04-20 13:37:56 -0700 | [diff] [blame] | 1920 | } |
Andy Lutomirski | bd4da3a | 2017-02-22 13:32:36 -0700 | [diff] [blame] | 1921 | }; |
| 1922 | |
| 1923 | /* match is null-terminated but idstr is space-padded. */ |
| 1924 | static bool string_matches(const char *idstr, const char *match, size_t len) |
| 1925 | { |
| 1926 | size_t matchlen; |
| 1927 | |
| 1928 | if (!match) |
| 1929 | return true; |
| 1930 | |
| 1931 | matchlen = strlen(match); |
| 1932 | WARN_ON_ONCE(matchlen > len); |
| 1933 | |
| 1934 | if (memcmp(idstr, match, matchlen)) |
| 1935 | return false; |
| 1936 | |
| 1937 | for (; matchlen < len; matchlen++) |
| 1938 | if (idstr[matchlen] != ' ') |
| 1939 | return false; |
| 1940 | |
| 1941 | return true; |
| 1942 | } |
| 1943 | |
| 1944 | static bool quirk_matches(const struct nvme_id_ctrl *id, |
| 1945 | const struct nvme_core_quirk_entry *q) |
| 1946 | { |
| 1947 | return q->vid == le16_to_cpu(id->vid) && |
| 1948 | string_matches(id->mn, q->mn, sizeof(id->mn)) && |
| 1949 | string_matches(id->fr, q->fr, sizeof(id->fr)); |
| 1950 | } |
| 1951 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 1952 | static void nvme_init_subnqn(struct nvme_subsystem *subsys, struct nvme_ctrl *ctrl, |
| 1953 | struct nvme_id_ctrl *id) |
Christoph Hellwig | 180de007 | 2017-06-26 12:39:02 +0200 | [diff] [blame] | 1954 | { |
| 1955 | size_t nqnlen; |
| 1956 | int off; |
| 1957 | |
| 1958 | nqnlen = strnlen(id->subnqn, NVMF_NQN_SIZE); |
| 1959 | if (nqnlen > 0 && nqnlen < NVMF_NQN_SIZE) { |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 1960 | strncpy(subsys->subnqn, id->subnqn, NVMF_NQN_SIZE); |
Christoph Hellwig | 180de007 | 2017-06-26 12:39:02 +0200 | [diff] [blame] | 1961 | return; |
| 1962 | } |
| 1963 | |
| 1964 | if (ctrl->vs >= NVME_VS(1, 2, 1)) |
| 1965 | dev_warn(ctrl->device, "missing or invalid SUBNQN field.\n"); |
| 1966 | |
| 1967 | /* Generate a "fake" NQN per Figure 254 in NVMe 1.3 + ECN 001 */ |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 1968 | off = snprintf(subsys->subnqn, NVMF_NQN_SIZE, |
Christoph Hellwig | 180de007 | 2017-06-26 12:39:02 +0200 | [diff] [blame] | 1969 | "nqn.2014.08.org.nvmexpress:%4x%4x", |
| 1970 | le16_to_cpu(id->vid), le16_to_cpu(id->ssvid)); |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 1971 | memcpy(subsys->subnqn + off, id->sn, sizeof(id->sn)); |
Christoph Hellwig | 180de007 | 2017-06-26 12:39:02 +0200 | [diff] [blame] | 1972 | off += sizeof(id->sn); |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 1973 | memcpy(subsys->subnqn + off, id->mn, sizeof(id->mn)); |
Christoph Hellwig | 180de007 | 2017-06-26 12:39:02 +0200 | [diff] [blame] | 1974 | off += sizeof(id->mn); |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 1975 | memset(subsys->subnqn + off, 0, sizeof(subsys->subnqn) - off); |
| 1976 | } |
| 1977 | |
| 1978 | static void __nvme_release_subsystem(struct nvme_subsystem *subsys) |
| 1979 | { |
| 1980 | ida_simple_remove(&nvme_subsystems_ida, subsys->instance); |
| 1981 | kfree(subsys); |
| 1982 | } |
| 1983 | |
| 1984 | static void nvme_release_subsystem(struct device *dev) |
| 1985 | { |
| 1986 | __nvme_release_subsystem(container_of(dev, struct nvme_subsystem, dev)); |
| 1987 | } |
| 1988 | |
| 1989 | static void nvme_destroy_subsystem(struct kref *ref) |
| 1990 | { |
| 1991 | struct nvme_subsystem *subsys = |
| 1992 | container_of(ref, struct nvme_subsystem, ref); |
| 1993 | |
| 1994 | mutex_lock(&nvme_subsystems_lock); |
| 1995 | list_del(&subsys->entry); |
| 1996 | mutex_unlock(&nvme_subsystems_lock); |
| 1997 | |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 1998 | ida_destroy(&subsys->ns_ida); |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 1999 | device_del(&subsys->dev); |
| 2000 | put_device(&subsys->dev); |
| 2001 | } |
| 2002 | |
| 2003 | static void nvme_put_subsystem(struct nvme_subsystem *subsys) |
| 2004 | { |
| 2005 | kref_put(&subsys->ref, nvme_destroy_subsystem); |
| 2006 | } |
| 2007 | |
| 2008 | static struct nvme_subsystem *__nvme_find_get_subsystem(const char *subsysnqn) |
| 2009 | { |
| 2010 | struct nvme_subsystem *subsys; |
| 2011 | |
| 2012 | lockdep_assert_held(&nvme_subsystems_lock); |
| 2013 | |
| 2014 | list_for_each_entry(subsys, &nvme_subsystems, entry) { |
| 2015 | if (strcmp(subsys->subnqn, subsysnqn)) |
| 2016 | continue; |
| 2017 | if (!kref_get_unless_zero(&subsys->ref)) |
| 2018 | continue; |
| 2019 | return subsys; |
| 2020 | } |
| 2021 | |
| 2022 | return NULL; |
| 2023 | } |
| 2024 | |
Hannes Reinecke | 1e49693 | 2017-11-10 10:58:23 +0100 | [diff] [blame] | 2025 | #define SUBSYS_ATTR_RO(_name, _mode, _show) \ |
| 2026 | struct device_attribute subsys_attr_##_name = \ |
| 2027 | __ATTR(_name, _mode, _show, NULL) |
| 2028 | |
| 2029 | static ssize_t nvme_subsys_show_nqn(struct device *dev, |
| 2030 | struct device_attribute *attr, |
| 2031 | char *buf) |
| 2032 | { |
| 2033 | struct nvme_subsystem *subsys = |
| 2034 | container_of(dev, struct nvme_subsystem, dev); |
| 2035 | |
| 2036 | return snprintf(buf, PAGE_SIZE, "%s\n", subsys->subnqn); |
| 2037 | } |
| 2038 | static SUBSYS_ATTR_RO(subsysnqn, S_IRUGO, nvme_subsys_show_nqn); |
| 2039 | |
| 2040 | #define nvme_subsys_show_str_function(field) \ |
| 2041 | static ssize_t subsys_##field##_show(struct device *dev, \ |
| 2042 | struct device_attribute *attr, char *buf) \ |
| 2043 | { \ |
| 2044 | struct nvme_subsystem *subsys = \ |
| 2045 | container_of(dev, struct nvme_subsystem, dev); \ |
| 2046 | return sprintf(buf, "%.*s\n", \ |
| 2047 | (int)sizeof(subsys->field), subsys->field); \ |
| 2048 | } \ |
| 2049 | static SUBSYS_ATTR_RO(field, S_IRUGO, subsys_##field##_show); |
| 2050 | |
| 2051 | nvme_subsys_show_str_function(model); |
| 2052 | nvme_subsys_show_str_function(serial); |
| 2053 | nvme_subsys_show_str_function(firmware_rev); |
| 2054 | |
| 2055 | static struct attribute *nvme_subsys_attrs[] = { |
| 2056 | &subsys_attr_model.attr, |
| 2057 | &subsys_attr_serial.attr, |
| 2058 | &subsys_attr_firmware_rev.attr, |
| 2059 | &subsys_attr_subsysnqn.attr, |
| 2060 | NULL, |
| 2061 | }; |
| 2062 | |
| 2063 | static struct attribute_group nvme_subsys_attrs_group = { |
| 2064 | .attrs = nvme_subsys_attrs, |
| 2065 | }; |
| 2066 | |
| 2067 | static const struct attribute_group *nvme_subsys_attrs_groups[] = { |
| 2068 | &nvme_subsys_attrs_group, |
| 2069 | NULL, |
| 2070 | }; |
| 2071 | |
Israel Rukshin | b837b28 | 2018-01-04 17:56:14 +0200 | [diff] [blame^] | 2072 | static int nvme_active_ctrls(struct nvme_subsystem *subsys) |
| 2073 | { |
| 2074 | int count = 0; |
| 2075 | struct nvme_ctrl *ctrl; |
| 2076 | |
| 2077 | mutex_lock(&subsys->lock); |
| 2078 | list_for_each_entry(ctrl, &subsys->ctrls, subsys_entry) { |
| 2079 | if (ctrl->state != NVME_CTRL_DELETING && |
| 2080 | ctrl->state != NVME_CTRL_DEAD) |
| 2081 | count++; |
| 2082 | } |
| 2083 | mutex_unlock(&subsys->lock); |
| 2084 | |
| 2085 | return count; |
| 2086 | } |
| 2087 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2088 | static int nvme_init_subsystem(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id) |
| 2089 | { |
| 2090 | struct nvme_subsystem *subsys, *found; |
| 2091 | int ret; |
| 2092 | |
| 2093 | subsys = kzalloc(sizeof(*subsys), GFP_KERNEL); |
| 2094 | if (!subsys) |
| 2095 | return -ENOMEM; |
| 2096 | ret = ida_simple_get(&nvme_subsystems_ida, 0, 0, GFP_KERNEL); |
| 2097 | if (ret < 0) { |
| 2098 | kfree(subsys); |
| 2099 | return ret; |
| 2100 | } |
| 2101 | subsys->instance = ret; |
| 2102 | mutex_init(&subsys->lock); |
| 2103 | kref_init(&subsys->ref); |
| 2104 | INIT_LIST_HEAD(&subsys->ctrls); |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2105 | INIT_LIST_HEAD(&subsys->nsheads); |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2106 | nvme_init_subnqn(subsys, ctrl, id); |
| 2107 | memcpy(subsys->serial, id->sn, sizeof(subsys->serial)); |
| 2108 | memcpy(subsys->model, id->mn, sizeof(subsys->model)); |
| 2109 | memcpy(subsys->firmware_rev, id->fr, sizeof(subsys->firmware_rev)); |
| 2110 | subsys->vendor_id = le16_to_cpu(id->vid); |
| 2111 | subsys->cmic = id->cmic; |
| 2112 | |
| 2113 | subsys->dev.class = nvme_subsys_class; |
| 2114 | subsys->dev.release = nvme_release_subsystem; |
Hannes Reinecke | 1e49693 | 2017-11-10 10:58:23 +0100 | [diff] [blame] | 2115 | subsys->dev.groups = nvme_subsys_attrs_groups; |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2116 | dev_set_name(&subsys->dev, "nvme-subsys%d", subsys->instance); |
| 2117 | device_initialize(&subsys->dev); |
| 2118 | |
| 2119 | mutex_lock(&nvme_subsystems_lock); |
| 2120 | found = __nvme_find_get_subsystem(subsys->subnqn); |
| 2121 | if (found) { |
| 2122 | /* |
| 2123 | * Verify that the subsystem actually supports multiple |
| 2124 | * controllers, else bail out. |
| 2125 | */ |
Israel Rukshin | b837b28 | 2018-01-04 17:56:14 +0200 | [diff] [blame^] | 2126 | if (nvme_active_ctrls(found) && !(id->cmic & (1 << 1))) { |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2127 | dev_err(ctrl->device, |
| 2128 | "ignoring ctrl due to duplicate subnqn (%s).\n", |
| 2129 | found->subnqn); |
| 2130 | nvme_put_subsystem(found); |
| 2131 | ret = -EINVAL; |
| 2132 | goto out_unlock; |
| 2133 | } |
| 2134 | |
| 2135 | __nvme_release_subsystem(subsys); |
| 2136 | subsys = found; |
| 2137 | } else { |
| 2138 | ret = device_add(&subsys->dev); |
| 2139 | if (ret) { |
| 2140 | dev_err(ctrl->device, |
| 2141 | "failed to register subsystem device.\n"); |
| 2142 | goto out_unlock; |
| 2143 | } |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2144 | ida_init(&subsys->ns_ida); |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2145 | list_add_tail(&subsys->entry, &nvme_subsystems); |
| 2146 | } |
| 2147 | |
| 2148 | ctrl->subsys = subsys; |
| 2149 | mutex_unlock(&nvme_subsystems_lock); |
| 2150 | |
| 2151 | if (sysfs_create_link(&subsys->dev.kobj, &ctrl->device->kobj, |
| 2152 | dev_name(ctrl->device))) { |
| 2153 | dev_err(ctrl->device, |
| 2154 | "failed to create sysfs link from subsystem.\n"); |
| 2155 | /* the transport driver will eventually put the subsystem */ |
| 2156 | return -EINVAL; |
| 2157 | } |
| 2158 | |
| 2159 | mutex_lock(&subsys->lock); |
| 2160 | list_add_tail(&ctrl->subsys_entry, &subsys->ctrls); |
| 2161 | mutex_unlock(&subsys->lock); |
| 2162 | |
| 2163 | return 0; |
| 2164 | |
| 2165 | out_unlock: |
| 2166 | mutex_unlock(&nvme_subsystems_lock); |
| 2167 | put_device(&subsys->dev); |
| 2168 | return ret; |
Christoph Hellwig | 180de007 | 2017-06-26 12:39:02 +0200 | [diff] [blame] | 2169 | } |
| 2170 | |
Keith Busch | c627c48 | 2017-11-07 10:28:31 -0700 | [diff] [blame] | 2171 | static int nvme_get_log(struct nvme_ctrl *ctrl, u8 log_page, void *log, |
| 2172 | size_t size) |
| 2173 | { |
| 2174 | struct nvme_command c = { }; |
| 2175 | |
| 2176 | c.common.opcode = nvme_admin_get_log_page; |
| 2177 | c.common.nsid = cpu_to_le32(NVME_NSID_ALL); |
| 2178 | c.common.cdw10[0] = nvme_get_log_dw10(log_page, size); |
| 2179 | |
| 2180 | return nvme_submit_sync_cmd(ctrl->admin_q, &c, log, size); |
| 2181 | } |
| 2182 | |
Keith Busch | 84fef62 | 2017-11-07 10:28:32 -0700 | [diff] [blame] | 2183 | static int nvme_get_effects_log(struct nvme_ctrl *ctrl) |
| 2184 | { |
| 2185 | int ret; |
| 2186 | |
| 2187 | if (!ctrl->effects) |
| 2188 | ctrl->effects = kzalloc(sizeof(*ctrl->effects), GFP_KERNEL); |
| 2189 | |
| 2190 | if (!ctrl->effects) |
| 2191 | return 0; |
| 2192 | |
| 2193 | ret = nvme_get_log(ctrl, NVME_LOG_CMD_EFFECTS, ctrl->effects, |
| 2194 | sizeof(*ctrl->effects)); |
| 2195 | if (ret) { |
| 2196 | kfree(ctrl->effects); |
| 2197 | ctrl->effects = NULL; |
| 2198 | } |
| 2199 | return ret; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 2200 | } |
| 2201 | |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2202 | /* |
| 2203 | * Initialize the cached copies of the Identify data and various controller |
| 2204 | * register in our nvme_ctrl structure. This should be called as soon as |
| 2205 | * the admin queue is fully up and running. |
| 2206 | */ |
| 2207 | int nvme_init_identify(struct nvme_ctrl *ctrl) |
| 2208 | { |
| 2209 | struct nvme_id_ctrl *id; |
| 2210 | u64 cap; |
| 2211 | int ret, page_shift; |
Christoph Hellwig | a229dbf | 2016-06-06 23:20:48 +0200 | [diff] [blame] | 2212 | u32 max_hw_sectors; |
Kai-Heng Feng | 76a5af8 | 2017-06-26 16:39:54 -0400 | [diff] [blame] | 2213 | bool prev_apst_enabled; |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2214 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2215 | ret = ctrl->ops->reg_read32(ctrl, NVME_REG_VS, &ctrl->vs); |
| 2216 | if (ret) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 2217 | dev_err(ctrl->device, "Reading VS failed (%d)\n", ret); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2218 | return ret; |
| 2219 | } |
| 2220 | |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2221 | ret = ctrl->ops->reg_read64(ctrl, NVME_REG_CAP, &cap); |
| 2222 | if (ret) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 2223 | dev_err(ctrl->device, "Reading CAP failed (%d)\n", ret); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2224 | return ret; |
| 2225 | } |
| 2226 | page_shift = NVME_CAP_MPSMIN(cap) + 12; |
| 2227 | |
Gabriel Krisman Bertazi | 8ef2074 | 2016-10-19 09:51:05 -0600 | [diff] [blame] | 2228 | if (ctrl->vs >= NVME_VS(1, 1, 0)) |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2229 | ctrl->subsystem = NVME_CAP_NSSRC(cap); |
| 2230 | |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2231 | ret = nvme_identify_ctrl(ctrl, &id); |
| 2232 | if (ret) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 2233 | dev_err(ctrl->device, "Identify Controller failed (%d)\n", ret); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2234 | return -EIO; |
| 2235 | } |
| 2236 | |
Keith Busch | 84fef62 | 2017-11-07 10:28:32 -0700 | [diff] [blame] | 2237 | if (id->lpa & NVME_CTRL_LPA_CMD_EFFECTS_LOG) { |
| 2238 | ret = nvme_get_effects_log(ctrl); |
| 2239 | if (ret < 0) |
| 2240 | return ret; |
| 2241 | } |
Christoph Hellwig | 180de007 | 2017-06-26 12:39:02 +0200 | [diff] [blame] | 2242 | |
Andy Lutomirski | bd4da3a | 2017-02-22 13:32:36 -0700 | [diff] [blame] | 2243 | if (!ctrl->identified) { |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2244 | int i; |
| 2245 | |
| 2246 | ret = nvme_init_subsystem(ctrl, id); |
| 2247 | if (ret) |
| 2248 | goto out_free; |
| 2249 | |
Andy Lutomirski | bd4da3a | 2017-02-22 13:32:36 -0700 | [diff] [blame] | 2250 | /* |
| 2251 | * Check for quirks. Quirk can depend on firmware version, |
| 2252 | * so, in principle, the set of quirks present can change |
| 2253 | * across a reset. As a possible future enhancement, we |
| 2254 | * could re-scan for quirks every time we reinitialize |
| 2255 | * the device, but we'd have to make sure that the driver |
| 2256 | * behaves intelligently if the quirks change. |
| 2257 | */ |
Andy Lutomirski | bd4da3a | 2017-02-22 13:32:36 -0700 | [diff] [blame] | 2258 | for (i = 0; i < ARRAY_SIZE(core_quirks); i++) { |
| 2259 | if (quirk_matches(id, &core_quirks[i])) |
| 2260 | ctrl->quirks |= core_quirks[i].quirks; |
| 2261 | } |
| 2262 | } |
| 2263 | |
Andy Lutomirski | c35e30b | 2017-04-21 16:19:24 -0700 | [diff] [blame] | 2264 | if (force_apst && (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS)) { |
Johannes Thumshirn | f0425db | 2017-06-09 16:17:21 +0200 | [diff] [blame] | 2265 | dev_warn(ctrl->device, "forcibly allowing all power states due to nvme_core.force_apst -- use at your own risk\n"); |
Andy Lutomirski | c35e30b | 2017-04-21 16:19:24 -0700 | [diff] [blame] | 2266 | ctrl->quirks &= ~NVME_QUIRK_NO_DEEPEST_PS; |
| 2267 | } |
| 2268 | |
Scott Bauer | 8a9ae52 | 2017-02-17 13:59:40 +0100 | [diff] [blame] | 2269 | ctrl->oacs = le16_to_cpu(id->oacs); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2270 | ctrl->oncs = le16_to_cpup(&id->oncs); |
Christoph Hellwig | 6bf25d1 | 2015-11-20 09:36:44 +0100 | [diff] [blame] | 2271 | atomic_set(&ctrl->abort_limit, id->acl + 1); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2272 | ctrl->vwc = id->vwc; |
Ming Lin | 931e1c2 | 2016-02-26 13:24:19 -0800 | [diff] [blame] | 2273 | ctrl->cntlid = le16_to_cpup(&id->cntlid); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2274 | if (id->mdts) |
Christoph Hellwig | a229dbf | 2016-06-06 23:20:48 +0200 | [diff] [blame] | 2275 | max_hw_sectors = 1 << (id->mdts + page_shift - 9); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2276 | else |
Christoph Hellwig | a229dbf | 2016-06-06 23:20:48 +0200 | [diff] [blame] | 2277 | max_hw_sectors = UINT_MAX; |
| 2278 | ctrl->max_hw_sectors = |
| 2279 | min_not_zero(ctrl->max_hw_sectors, max_hw_sectors); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2280 | |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 2281 | nvme_set_queue_limits(ctrl, ctrl->admin_q); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 2282 | ctrl->sgls = le32_to_cpu(id->sgls); |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 2283 | ctrl->kas = le16_to_cpu(id->kas); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 2284 | |
Martin K. Petersen | 07fbd32 | 2017-08-25 19:14:50 -0400 | [diff] [blame] | 2285 | if (id->rtd3e) { |
| 2286 | /* us -> s */ |
| 2287 | u32 transition_time = le32_to_cpu(id->rtd3e) / 1000000; |
| 2288 | |
| 2289 | ctrl->shutdown_timeout = clamp_t(unsigned int, transition_time, |
| 2290 | shutdown_timeout, 60); |
| 2291 | |
| 2292 | if (ctrl->shutdown_timeout != shutdown_timeout) |
Max Gurtovoy | 1a3838d | 2017-12-31 15:33:27 +0200 | [diff] [blame] | 2293 | dev_info(ctrl->device, |
Martin K. Petersen | 07fbd32 | 2017-08-25 19:14:50 -0400 | [diff] [blame] | 2294 | "Shutdown timeout set to %u seconds\n", |
| 2295 | ctrl->shutdown_timeout); |
| 2296 | } else |
| 2297 | ctrl->shutdown_timeout = shutdown_timeout; |
| 2298 | |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 2299 | ctrl->npss = id->npss; |
Kai-Heng Feng | 76a5af8 | 2017-06-26 16:39:54 -0400 | [diff] [blame] | 2300 | ctrl->apsta = id->apsta; |
| 2301 | prev_apst_enabled = ctrl->apst_enabled; |
Andy Lutomirski | c35e30b | 2017-04-21 16:19:24 -0700 | [diff] [blame] | 2302 | if (ctrl->quirks & NVME_QUIRK_NO_APST) { |
| 2303 | if (force_apst && id->apsta) { |
Johannes Thumshirn | f0425db | 2017-06-09 16:17:21 +0200 | [diff] [blame] | 2304 | dev_warn(ctrl->device, "forcibly allowing APST due to nvme_core.force_apst -- use at your own risk\n"); |
Kai-Heng Feng | 76a5af8 | 2017-06-26 16:39:54 -0400 | [diff] [blame] | 2305 | ctrl->apst_enabled = true; |
Andy Lutomirski | c35e30b | 2017-04-21 16:19:24 -0700 | [diff] [blame] | 2306 | } else { |
Kai-Heng Feng | 76a5af8 | 2017-06-26 16:39:54 -0400 | [diff] [blame] | 2307 | ctrl->apst_enabled = false; |
Andy Lutomirski | c35e30b | 2017-04-21 16:19:24 -0700 | [diff] [blame] | 2308 | } |
| 2309 | } else { |
Kai-Heng Feng | 76a5af8 | 2017-06-26 16:39:54 -0400 | [diff] [blame] | 2310 | ctrl->apst_enabled = id->apsta; |
Andy Lutomirski | c35e30b | 2017-04-21 16:19:24 -0700 | [diff] [blame] | 2311 | } |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 2312 | memcpy(ctrl->psd, id->psd, sizeof(ctrl->psd)); |
| 2313 | |
Christoph Hellwig | d3d5b87 | 2017-05-20 15:14:44 +0200 | [diff] [blame] | 2314 | if (ctrl->ops->flags & NVME_F_FABRICS) { |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 2315 | ctrl->icdoff = le16_to_cpu(id->icdoff); |
| 2316 | ctrl->ioccsz = le32_to_cpu(id->ioccsz); |
| 2317 | ctrl->iorcsz = le32_to_cpu(id->iorcsz); |
| 2318 | ctrl->maxcmd = le16_to_cpu(id->maxcmd); |
| 2319 | |
| 2320 | /* |
| 2321 | * In fabrics we need to verify the cntlid matches the |
| 2322 | * admin connect |
| 2323 | */ |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 2324 | if (ctrl->cntlid != le16_to_cpu(id->cntlid)) { |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 2325 | ret = -EINVAL; |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 2326 | goto out_free; |
| 2327 | } |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 2328 | |
| 2329 | if (!ctrl->opts->discovery_nqn && !ctrl->kas) { |
Johannes Thumshirn | f0425db | 2017-06-09 16:17:21 +0200 | [diff] [blame] | 2330 | dev_err(ctrl->device, |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 2331 | "keep-alive support is mandatory for fabrics\n"); |
| 2332 | ret = -EINVAL; |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 2333 | goto out_free; |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 2334 | } |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 2335 | } else { |
| 2336 | ctrl->cntlid = le16_to_cpu(id->cntlid); |
Christoph Hellwig | fe6d53c | 2017-05-12 17:16:10 +0200 | [diff] [blame] | 2337 | ctrl->hmpre = le32_to_cpu(id->hmpre); |
| 2338 | ctrl->hmmin = le32_to_cpu(id->hmmin); |
Christoph Hellwig | 044a9df | 2017-09-11 12:09:28 -0400 | [diff] [blame] | 2339 | ctrl->hmminds = le32_to_cpu(id->hmminds); |
| 2340 | ctrl->hmmaxd = le16_to_cpu(id->hmmaxd); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 2341 | } |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 2342 | |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2343 | kfree(id); |
Andy Lutomirski | bd4da3a | 2017-02-22 13:32:36 -0700 | [diff] [blame] | 2344 | |
Kai-Heng Feng | 76a5af8 | 2017-06-26 16:39:54 -0400 | [diff] [blame] | 2345 | if (ctrl->apst_enabled && !prev_apst_enabled) |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 2346 | dev_pm_qos_expose_latency_tolerance(ctrl->device); |
Kai-Heng Feng | 76a5af8 | 2017-06-26 16:39:54 -0400 | [diff] [blame] | 2347 | else if (!ctrl->apst_enabled && prev_apst_enabled) |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 2348 | dev_pm_qos_hide_latency_tolerance(ctrl->device); |
| 2349 | |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 2350 | ret = nvme_configure_apst(ctrl); |
| 2351 | if (ret < 0) |
| 2352 | return ret; |
Jon Derrick | dbf86b3 | 2017-08-16 09:51:29 +0200 | [diff] [blame] | 2353 | |
| 2354 | ret = nvme_configure_timestamp(ctrl); |
| 2355 | if (ret < 0) |
| 2356 | return ret; |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 2357 | |
| 2358 | ret = nvme_configure_directives(ctrl); |
| 2359 | if (ret < 0) |
| 2360 | return ret; |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 2361 | |
Andy Lutomirski | bd4da3a | 2017-02-22 13:32:36 -0700 | [diff] [blame] | 2362 | ctrl->identified = true; |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 2363 | |
Keith Busch | 634b832 | 2017-08-10 11:23:31 +0200 | [diff] [blame] | 2364 | return 0; |
| 2365 | |
| 2366 | out_free: |
| 2367 | kfree(id); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 2368 | return ret; |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2369 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 2370 | EXPORT_SYMBOL_GPL(nvme_init_identify); |
Christoph Hellwig | 7fd8930 | 2015-11-28 15:37:52 +0100 | [diff] [blame] | 2371 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2372 | static int nvme_dev_open(struct inode *inode, struct file *file) |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 2373 | { |
Christoph Hellwig | a6a5149 | 2017-10-18 16:59:25 +0200 | [diff] [blame] | 2374 | struct nvme_ctrl *ctrl = |
| 2375 | container_of(inode->i_cdev, struct nvme_ctrl, cdev); |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 2376 | |
Jianchao Wang | 2b1b7e7 | 2018-01-06 08:01:58 +0800 | [diff] [blame] | 2377 | switch (ctrl->state) { |
| 2378 | case NVME_CTRL_LIVE: |
| 2379 | case NVME_CTRL_ADMIN_ONLY: |
| 2380 | break; |
| 2381 | default: |
Christoph Hellwig | a6a5149 | 2017-10-18 16:59:25 +0200 | [diff] [blame] | 2382 | return -EWOULDBLOCK; |
Jianchao Wang | 2b1b7e7 | 2018-01-06 08:01:58 +0800 | [diff] [blame] | 2383 | } |
| 2384 | |
Christoph Hellwig | a6a5149 | 2017-10-18 16:59:25 +0200 | [diff] [blame] | 2385 | file->private_data = ctrl; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2386 | return 0; |
Christoph Hellwig | 21d3471 | 2015-11-26 09:08:36 +0100 | [diff] [blame] | 2387 | } |
| 2388 | |
Christoph Hellwig | bfd8947 | 2015-12-24 15:27:01 +0100 | [diff] [blame] | 2389 | static int nvme_dev_user_cmd(struct nvme_ctrl *ctrl, void __user *argp) |
| 2390 | { |
| 2391 | struct nvme_ns *ns; |
| 2392 | int ret; |
| 2393 | |
| 2394 | mutex_lock(&ctrl->namespaces_mutex); |
| 2395 | if (list_empty(&ctrl->namespaces)) { |
| 2396 | ret = -ENOTTY; |
| 2397 | goto out_unlock; |
| 2398 | } |
| 2399 | |
| 2400 | ns = list_first_entry(&ctrl->namespaces, struct nvme_ns, list); |
| 2401 | if (ns != list_last_entry(&ctrl->namespaces, struct nvme_ns, list)) { |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 2402 | dev_warn(ctrl->device, |
Christoph Hellwig | bfd8947 | 2015-12-24 15:27:01 +0100 | [diff] [blame] | 2403 | "NVME_IOCTL_IO_CMD not supported when multiple namespaces present!\n"); |
| 2404 | ret = -EINVAL; |
| 2405 | goto out_unlock; |
| 2406 | } |
| 2407 | |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 2408 | dev_warn(ctrl->device, |
Christoph Hellwig | bfd8947 | 2015-12-24 15:27:01 +0100 | [diff] [blame] | 2409 | "using deprecated NVME_IOCTL_IO_CMD ioctl on the char device!\n"); |
| 2410 | kref_get(&ns->kref); |
| 2411 | mutex_unlock(&ctrl->namespaces_mutex); |
| 2412 | |
| 2413 | ret = nvme_user_cmd(ctrl, ns, argp); |
| 2414 | nvme_put_ns(ns); |
| 2415 | return ret; |
| 2416 | |
| 2417 | out_unlock: |
| 2418 | mutex_unlock(&ctrl->namespaces_mutex); |
| 2419 | return ret; |
| 2420 | } |
| 2421 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2422 | static long nvme_dev_ioctl(struct file *file, unsigned int cmd, |
| 2423 | unsigned long arg) |
| 2424 | { |
| 2425 | struct nvme_ctrl *ctrl = file->private_data; |
| 2426 | void __user *argp = (void __user *)arg; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2427 | |
| 2428 | switch (cmd) { |
| 2429 | case NVME_IOCTL_ADMIN_CMD: |
| 2430 | return nvme_user_cmd(ctrl, NULL, argp); |
| 2431 | case NVME_IOCTL_IO_CMD: |
Christoph Hellwig | bfd8947 | 2015-12-24 15:27:01 +0100 | [diff] [blame] | 2432 | return nvme_dev_user_cmd(ctrl, argp); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2433 | case NVME_IOCTL_RESET: |
Sagi Grimberg | 1b3c47c | 2016-02-10 08:51:15 -0700 | [diff] [blame] | 2434 | dev_warn(ctrl->device, "resetting controller\n"); |
Christoph Hellwig | d86c4d8 | 2017-06-15 15:41:08 +0200 | [diff] [blame] | 2435 | return nvme_reset_ctrl_sync(ctrl); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2436 | case NVME_IOCTL_SUBSYS_RESET: |
| 2437 | return nvme_reset_subsystem(ctrl); |
Keith Busch | 9ec3bb2 | 2016-04-29 15:45:18 -0600 | [diff] [blame] | 2438 | case NVME_IOCTL_RESCAN: |
| 2439 | nvme_queue_scan(ctrl); |
| 2440 | return 0; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2441 | default: |
| 2442 | return -ENOTTY; |
| 2443 | } |
| 2444 | } |
| 2445 | |
| 2446 | static const struct file_operations nvme_dev_fops = { |
| 2447 | .owner = THIS_MODULE, |
| 2448 | .open = nvme_dev_open, |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2449 | .unlocked_ioctl = nvme_dev_ioctl, |
| 2450 | .compat_ioctl = nvme_dev_ioctl, |
| 2451 | }; |
| 2452 | |
| 2453 | static ssize_t nvme_sysfs_reset(struct device *dev, |
| 2454 | struct device_attribute *attr, const char *buf, |
| 2455 | size_t count) |
| 2456 | { |
| 2457 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 2458 | int ret; |
| 2459 | |
Christoph Hellwig | d86c4d8 | 2017-06-15 15:41:08 +0200 | [diff] [blame] | 2460 | ret = nvme_reset_ctrl_sync(ctrl); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 2461 | if (ret < 0) |
| 2462 | return ret; |
| 2463 | return count; |
| 2464 | } |
| 2465 | static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset); |
| 2466 | |
Keith Busch | 9ec3bb2 | 2016-04-29 15:45:18 -0600 | [diff] [blame] | 2467 | static ssize_t nvme_sysfs_rescan(struct device *dev, |
| 2468 | struct device_attribute *attr, const char *buf, |
| 2469 | size_t count) |
| 2470 | { |
| 2471 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 2472 | |
| 2473 | nvme_queue_scan(ctrl); |
| 2474 | return count; |
| 2475 | } |
| 2476 | static DEVICE_ATTR(rescan_controller, S_IWUSR, NULL, nvme_sysfs_rescan); |
| 2477 | |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2478 | static inline struct nvme_ns_head *dev_to_ns_head(struct device *dev) |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 2479 | { |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2480 | struct gendisk *disk = dev_to_disk(dev); |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 2481 | |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2482 | if (disk->fops == &nvme_fops) |
| 2483 | return nvme_get_ns_from_dev(dev)->head; |
| 2484 | else |
| 2485 | return disk->private_data; |
| 2486 | } |
Johannes Thumshirn | 6484f5d | 2017-07-12 15:38:56 +0200 | [diff] [blame] | 2487 | |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2488 | static ssize_t wwid_show(struct device *dev, struct device_attribute *attr, |
| 2489 | char *buf) |
| 2490 | { |
| 2491 | struct nvme_ns_head *head = dev_to_ns_head(dev); |
| 2492 | struct nvme_ns_ids *ids = &head->ids; |
| 2493 | struct nvme_subsystem *subsys = head->subsys; |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2494 | int serial_len = sizeof(subsys->serial); |
| 2495 | int model_len = sizeof(subsys->model); |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 2496 | |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 2497 | if (!uuid_is_null(&ids->uuid)) |
| 2498 | return sprintf(buf, "uuid.%pU\n", &ids->uuid); |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 2499 | |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 2500 | if (memchr_inv(ids->nguid, 0, sizeof(ids->nguid))) |
| 2501 | return sprintf(buf, "eui.%16phN\n", ids->nguid); |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 2502 | |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 2503 | if (memchr_inv(ids->eui64, 0, sizeof(ids->eui64))) |
| 2504 | return sprintf(buf, "eui.%8phN\n", ids->eui64); |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 2505 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2506 | while (serial_len > 0 && (subsys->serial[serial_len - 1] == ' ' || |
| 2507 | subsys->serial[serial_len - 1] == '\0')) |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 2508 | serial_len--; |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2509 | while (model_len > 0 && (subsys->model[model_len - 1] == ' ' || |
| 2510 | subsys->model[model_len - 1] == '\0')) |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 2511 | model_len--; |
| 2512 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2513 | return sprintf(buf, "nvme.%04x-%*phN-%*phN-%08x\n", subsys->vendor_id, |
| 2514 | serial_len, subsys->serial, model_len, subsys->model, |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2515 | head->ns_id); |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 2516 | } |
| 2517 | static DEVICE_ATTR(wwid, S_IRUGO, wwid_show, NULL); |
| 2518 | |
Johannes Thumshirn | d934f98 | 2017-06-07 11:45:35 +0200 | [diff] [blame] | 2519 | static ssize_t nguid_show(struct device *dev, struct device_attribute *attr, |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2520 | char *buf) |
Johannes Thumshirn | d934f98 | 2017-06-07 11:45:35 +0200 | [diff] [blame] | 2521 | { |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2522 | return sprintf(buf, "%pU\n", dev_to_ns_head(dev)->ids.nguid); |
Johannes Thumshirn | d934f98 | 2017-06-07 11:45:35 +0200 | [diff] [blame] | 2523 | } |
| 2524 | static DEVICE_ATTR(nguid, S_IRUGO, nguid_show, NULL); |
| 2525 | |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2526 | static ssize_t uuid_show(struct device *dev, struct device_attribute *attr, |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2527 | char *buf) |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2528 | { |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2529 | struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids; |
Johannes Thumshirn | d934f98 | 2017-06-07 11:45:35 +0200 | [diff] [blame] | 2530 | |
| 2531 | /* For backward compatibility expose the NGUID to userspace if |
| 2532 | * we have no UUID set |
| 2533 | */ |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 2534 | if (uuid_is_null(&ids->uuid)) { |
Johannes Thumshirn | d934f98 | 2017-06-07 11:45:35 +0200 | [diff] [blame] | 2535 | printk_ratelimited(KERN_WARNING |
| 2536 | "No UUID available providing old NGUID\n"); |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 2537 | return sprintf(buf, "%pU\n", ids->nguid); |
Johannes Thumshirn | d934f98 | 2017-06-07 11:45:35 +0200 | [diff] [blame] | 2538 | } |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 2539 | return sprintf(buf, "%pU\n", &ids->uuid); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2540 | } |
| 2541 | static DEVICE_ATTR(uuid, S_IRUGO, uuid_show, NULL); |
| 2542 | |
| 2543 | static ssize_t eui_show(struct device *dev, struct device_attribute *attr, |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2544 | char *buf) |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2545 | { |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2546 | return sprintf(buf, "%8ph\n", dev_to_ns_head(dev)->ids.eui64); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2547 | } |
| 2548 | static DEVICE_ATTR(eui, S_IRUGO, eui_show, NULL); |
| 2549 | |
| 2550 | static ssize_t nsid_show(struct device *dev, struct device_attribute *attr, |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2551 | char *buf) |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2552 | { |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2553 | return sprintf(buf, "%d\n", dev_to_ns_head(dev)->ns_id); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2554 | } |
| 2555 | static DEVICE_ATTR(nsid, S_IRUGO, nsid_show, NULL); |
| 2556 | |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2557 | static struct attribute *nvme_ns_id_attrs[] = { |
Keith Busch | 118472a | 2016-02-18 09:57:48 -0700 | [diff] [blame] | 2558 | &dev_attr_wwid.attr, |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2559 | &dev_attr_uuid.attr, |
Johannes Thumshirn | d934f98 | 2017-06-07 11:45:35 +0200 | [diff] [blame] | 2560 | &dev_attr_nguid.attr, |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2561 | &dev_attr_eui.attr, |
| 2562 | &dev_attr_nsid.attr, |
| 2563 | NULL, |
| 2564 | }; |
| 2565 | |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2566 | static umode_t nvme_ns_id_attrs_are_visible(struct kobject *kobj, |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2567 | struct attribute *a, int n) |
| 2568 | { |
| 2569 | struct device *dev = container_of(kobj, struct device, kobj); |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2570 | struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids; |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2571 | |
| 2572 | if (a == &dev_attr_uuid.attr) { |
Martin Wilck | a04b5de | 2017-09-28 21:33:23 +0200 | [diff] [blame] | 2573 | if (uuid_is_null(&ids->uuid) && |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 2574 | !memchr_inv(ids->nguid, 0, sizeof(ids->nguid))) |
Johannes Thumshirn | d934f98 | 2017-06-07 11:45:35 +0200 | [diff] [blame] | 2575 | return 0; |
| 2576 | } |
| 2577 | if (a == &dev_attr_nguid.attr) { |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 2578 | if (!memchr_inv(ids->nguid, 0, sizeof(ids->nguid))) |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2579 | return 0; |
| 2580 | } |
| 2581 | if (a == &dev_attr_eui.attr) { |
Christoph Hellwig | 002fab0 | 2017-11-09 13:50:16 +0100 | [diff] [blame] | 2582 | if (!memchr_inv(ids->eui64, 0, sizeof(ids->eui64))) |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2583 | return 0; |
| 2584 | } |
| 2585 | return a->mode; |
| 2586 | } |
| 2587 | |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2588 | const struct attribute_group nvme_ns_id_attr_group = { |
| 2589 | .attrs = nvme_ns_id_attrs, |
| 2590 | .is_visible = nvme_ns_id_attrs_are_visible, |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2591 | }; |
| 2592 | |
Ming Lin | 931e1c2 | 2016-02-26 13:24:19 -0800 | [diff] [blame] | 2593 | #define nvme_show_str_function(field) \ |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 2594 | static ssize_t field##_show(struct device *dev, \ |
| 2595 | struct device_attribute *attr, char *buf) \ |
| 2596 | { \ |
| 2597 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \ |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2598 | return sprintf(buf, "%.*s\n", \ |
| 2599 | (int)sizeof(ctrl->subsys->field), ctrl->subsys->field); \ |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 2600 | } \ |
| 2601 | static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL); |
| 2602 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2603 | nvme_show_str_function(model); |
| 2604 | nvme_show_str_function(serial); |
| 2605 | nvme_show_str_function(firmware_rev); |
| 2606 | |
Ming Lin | 931e1c2 | 2016-02-26 13:24:19 -0800 | [diff] [blame] | 2607 | #define nvme_show_int_function(field) \ |
| 2608 | static ssize_t field##_show(struct device *dev, \ |
| 2609 | struct device_attribute *attr, char *buf) \ |
| 2610 | { \ |
| 2611 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \ |
| 2612 | return sprintf(buf, "%d\n", ctrl->field); \ |
| 2613 | } \ |
| 2614 | static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL); |
| 2615 | |
Ming Lin | 931e1c2 | 2016-02-26 13:24:19 -0800 | [diff] [blame] | 2616 | nvme_show_int_function(cntlid); |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 2617 | |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 2618 | static ssize_t nvme_sysfs_delete(struct device *dev, |
| 2619 | struct device_attribute *attr, const char *buf, |
| 2620 | size_t count) |
| 2621 | { |
| 2622 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 2623 | |
| 2624 | if (device_remove_file_self(dev, attr)) |
Christoph Hellwig | c5017e8 | 2017-10-29 10:44:29 +0200 | [diff] [blame] | 2625 | nvme_delete_ctrl_sync(ctrl); |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 2626 | return count; |
| 2627 | } |
| 2628 | static DEVICE_ATTR(delete_controller, S_IWUSR, NULL, nvme_sysfs_delete); |
| 2629 | |
| 2630 | static ssize_t nvme_sysfs_show_transport(struct device *dev, |
| 2631 | struct device_attribute *attr, |
| 2632 | char *buf) |
| 2633 | { |
| 2634 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 2635 | |
| 2636 | return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->ops->name); |
| 2637 | } |
| 2638 | static DEVICE_ATTR(transport, S_IRUGO, nvme_sysfs_show_transport, NULL); |
| 2639 | |
Sagi Grimberg | 8432bdb2 | 2016-11-28 01:47:40 +0200 | [diff] [blame] | 2640 | static ssize_t nvme_sysfs_show_state(struct device *dev, |
| 2641 | struct device_attribute *attr, |
| 2642 | char *buf) |
| 2643 | { |
| 2644 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 2645 | static const char *const state_name[] = { |
| 2646 | [NVME_CTRL_NEW] = "new", |
| 2647 | [NVME_CTRL_LIVE] = "live", |
Jianchao Wang | 2b1b7e7 | 2018-01-06 08:01:58 +0800 | [diff] [blame] | 2648 | [NVME_CTRL_ADMIN_ONLY] = "only-admin", |
Sagi Grimberg | 8432bdb2 | 2016-11-28 01:47:40 +0200 | [diff] [blame] | 2649 | [NVME_CTRL_RESETTING] = "resetting", |
| 2650 | [NVME_CTRL_RECONNECTING]= "reconnecting", |
| 2651 | [NVME_CTRL_DELETING] = "deleting", |
| 2652 | [NVME_CTRL_DEAD] = "dead", |
| 2653 | }; |
| 2654 | |
| 2655 | if ((unsigned)ctrl->state < ARRAY_SIZE(state_name) && |
| 2656 | state_name[ctrl->state]) |
| 2657 | return sprintf(buf, "%s\n", state_name[ctrl->state]); |
| 2658 | |
| 2659 | return sprintf(buf, "unknown state\n"); |
| 2660 | } |
| 2661 | |
| 2662 | static DEVICE_ATTR(state, S_IRUGO, nvme_sysfs_show_state, NULL); |
| 2663 | |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 2664 | static ssize_t nvme_sysfs_show_subsysnqn(struct device *dev, |
| 2665 | struct device_attribute *attr, |
| 2666 | char *buf) |
| 2667 | { |
| 2668 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 2669 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 2670 | return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->subsys->subnqn); |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 2671 | } |
| 2672 | static DEVICE_ATTR(subsysnqn, S_IRUGO, nvme_sysfs_show_subsysnqn, NULL); |
| 2673 | |
| 2674 | static ssize_t nvme_sysfs_show_address(struct device *dev, |
| 2675 | struct device_attribute *attr, |
| 2676 | char *buf) |
| 2677 | { |
| 2678 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 2679 | |
| 2680 | return ctrl->ops->get_address(ctrl, buf, PAGE_SIZE); |
| 2681 | } |
| 2682 | static DEVICE_ATTR(address, S_IRUGO, nvme_sysfs_show_address, NULL); |
| 2683 | |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 2684 | static struct attribute *nvme_dev_attrs[] = { |
| 2685 | &dev_attr_reset_controller.attr, |
Keith Busch | 9ec3bb2 | 2016-04-29 15:45:18 -0600 | [diff] [blame] | 2686 | &dev_attr_rescan_controller.attr, |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 2687 | &dev_attr_model.attr, |
| 2688 | &dev_attr_serial.attr, |
| 2689 | &dev_attr_firmware_rev.attr, |
Ming Lin | 931e1c2 | 2016-02-26 13:24:19 -0800 | [diff] [blame] | 2690 | &dev_attr_cntlid.attr, |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 2691 | &dev_attr_delete_controller.attr, |
| 2692 | &dev_attr_transport.attr, |
| 2693 | &dev_attr_subsysnqn.attr, |
| 2694 | &dev_attr_address.attr, |
Sagi Grimberg | 8432bdb2 | 2016-11-28 01:47:40 +0200 | [diff] [blame] | 2695 | &dev_attr_state.attr, |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 2696 | NULL |
| 2697 | }; |
| 2698 | |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 2699 | static umode_t nvme_dev_attrs_are_visible(struct kobject *kobj, |
| 2700 | struct attribute *a, int n) |
| 2701 | { |
| 2702 | struct device *dev = container_of(kobj, struct device, kobj); |
| 2703 | struct nvme_ctrl *ctrl = dev_get_drvdata(dev); |
| 2704 | |
Christoph Hellwig | 49d3d50 | 2017-06-26 12:39:03 +0200 | [diff] [blame] | 2705 | if (a == &dev_attr_delete_controller.attr && !ctrl->ops->delete_ctrl) |
| 2706 | return 0; |
| 2707 | if (a == &dev_attr_address.attr && !ctrl->ops->get_address) |
| 2708 | return 0; |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 2709 | |
| 2710 | return a->mode; |
| 2711 | } |
| 2712 | |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 2713 | static struct attribute_group nvme_dev_attrs_group = { |
Ming Lin | 1a353d8 | 2016-06-13 16:45:24 +0200 | [diff] [blame] | 2714 | .attrs = nvme_dev_attrs, |
| 2715 | .is_visible = nvme_dev_attrs_are_visible, |
Keith Busch | 779ff756 | 2016-01-12 15:09:31 -0700 | [diff] [blame] | 2716 | }; |
| 2717 | |
| 2718 | static const struct attribute_group *nvme_dev_attr_groups[] = { |
| 2719 | &nvme_dev_attrs_group, |
| 2720 | NULL, |
| 2721 | }; |
| 2722 | |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2723 | static struct nvme_ns_head *__nvme_find_ns_head(struct nvme_subsystem *subsys, |
| 2724 | unsigned nsid) |
| 2725 | { |
| 2726 | struct nvme_ns_head *h; |
| 2727 | |
| 2728 | lockdep_assert_held(&subsys->lock); |
| 2729 | |
| 2730 | list_for_each_entry(h, &subsys->nsheads, entry) { |
| 2731 | if (h->ns_id == nsid && kref_get_unless_zero(&h->ref)) |
| 2732 | return h; |
| 2733 | } |
| 2734 | |
| 2735 | return NULL; |
| 2736 | } |
| 2737 | |
| 2738 | static int __nvme_check_ids(struct nvme_subsystem *subsys, |
| 2739 | struct nvme_ns_head *new) |
| 2740 | { |
| 2741 | struct nvme_ns_head *h; |
| 2742 | |
| 2743 | lockdep_assert_held(&subsys->lock); |
| 2744 | |
| 2745 | list_for_each_entry(h, &subsys->nsheads, entry) { |
| 2746 | if (nvme_ns_ids_valid(&new->ids) && |
| 2747 | nvme_ns_ids_equal(&new->ids, &h->ids)) |
| 2748 | return -EINVAL; |
| 2749 | } |
| 2750 | |
| 2751 | return 0; |
| 2752 | } |
| 2753 | |
| 2754 | static struct nvme_ns_head *nvme_alloc_ns_head(struct nvme_ctrl *ctrl, |
| 2755 | unsigned nsid, struct nvme_id_ns *id) |
| 2756 | { |
| 2757 | struct nvme_ns_head *head; |
| 2758 | int ret = -ENOMEM; |
| 2759 | |
| 2760 | head = kzalloc(sizeof(*head), GFP_KERNEL); |
| 2761 | if (!head) |
| 2762 | goto out; |
| 2763 | ret = ida_simple_get(&ctrl->subsys->ns_ida, 1, 0, GFP_KERNEL); |
| 2764 | if (ret < 0) |
| 2765 | goto out_free_head; |
| 2766 | head->instance = ret; |
| 2767 | INIT_LIST_HEAD(&head->list); |
| 2768 | init_srcu_struct(&head->srcu); |
| 2769 | head->subsys = ctrl->subsys; |
| 2770 | head->ns_id = nsid; |
| 2771 | kref_init(&head->ref); |
| 2772 | |
| 2773 | nvme_report_ns_ids(ctrl, nsid, id, &head->ids); |
| 2774 | |
| 2775 | ret = __nvme_check_ids(ctrl->subsys, head); |
| 2776 | if (ret) { |
| 2777 | dev_err(ctrl->device, |
| 2778 | "duplicate IDs for nsid %d\n", nsid); |
| 2779 | goto out_cleanup_srcu; |
| 2780 | } |
| 2781 | |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 2782 | ret = nvme_mpath_alloc_disk(ctrl, head); |
| 2783 | if (ret) |
| 2784 | goto out_cleanup_srcu; |
| 2785 | |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2786 | list_add_tail(&head->entry, &ctrl->subsys->nsheads); |
| 2787 | return head; |
| 2788 | out_cleanup_srcu: |
| 2789 | cleanup_srcu_struct(&head->srcu); |
| 2790 | ida_simple_remove(&ctrl->subsys->ns_ida, head->instance); |
| 2791 | out_free_head: |
| 2792 | kfree(head); |
| 2793 | out: |
| 2794 | return ERR_PTR(ret); |
| 2795 | } |
| 2796 | |
| 2797 | static int nvme_init_ns_head(struct nvme_ns *ns, unsigned nsid, |
| 2798 | struct nvme_id_ns *id, bool *new) |
| 2799 | { |
| 2800 | struct nvme_ctrl *ctrl = ns->ctrl; |
| 2801 | bool is_shared = id->nmic & (1 << 0); |
| 2802 | struct nvme_ns_head *head = NULL; |
| 2803 | int ret = 0; |
| 2804 | |
| 2805 | mutex_lock(&ctrl->subsys->lock); |
| 2806 | if (is_shared) |
| 2807 | head = __nvme_find_ns_head(ctrl->subsys, nsid); |
| 2808 | if (!head) { |
| 2809 | head = nvme_alloc_ns_head(ctrl, nsid, id); |
| 2810 | if (IS_ERR(head)) { |
| 2811 | ret = PTR_ERR(head); |
| 2812 | goto out_unlock; |
| 2813 | } |
| 2814 | |
| 2815 | *new = true; |
| 2816 | } else { |
| 2817 | struct nvme_ns_ids ids; |
| 2818 | |
| 2819 | nvme_report_ns_ids(ctrl, nsid, id, &ids); |
| 2820 | if (!nvme_ns_ids_equal(&head->ids, &ids)) { |
| 2821 | dev_err(ctrl->device, |
| 2822 | "IDs don't match for shared namespace %d\n", |
| 2823 | nsid); |
| 2824 | ret = -EINVAL; |
| 2825 | goto out_unlock; |
| 2826 | } |
| 2827 | |
| 2828 | *new = false; |
| 2829 | } |
| 2830 | |
| 2831 | list_add_tail(&ns->siblings, &head->list); |
| 2832 | ns->head = head; |
| 2833 | |
| 2834 | out_unlock: |
| 2835 | mutex_unlock(&ctrl->subsys->lock); |
| 2836 | return ret; |
| 2837 | } |
| 2838 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2839 | static int ns_cmp(void *priv, struct list_head *a, struct list_head *b) |
| 2840 | { |
| 2841 | struct nvme_ns *nsa = container_of(a, struct nvme_ns, list); |
| 2842 | struct nvme_ns *nsb = container_of(b, struct nvme_ns, list); |
| 2843 | |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2844 | return nsa->head->ns_id - nsb->head->ns_id; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2845 | } |
| 2846 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2847 | 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] | 2848 | { |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2849 | struct nvme_ns *ns, *ret = NULL; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2850 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2851 | mutex_lock(&ctrl->namespaces_mutex); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2852 | list_for_each_entry(ns, &ctrl->namespaces, list) { |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2853 | if (ns->head->ns_id == nsid) { |
Christoph Hellwig | 2dd4122 | 2017-10-18 13:20:01 +0200 | [diff] [blame] | 2854 | if (!kref_get_unless_zero(&ns->kref)) |
| 2855 | continue; |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2856 | ret = ns; |
| 2857 | break; |
| 2858 | } |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2859 | if (ns->head->ns_id > nsid) |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2860 | break; |
| 2861 | } |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2862 | mutex_unlock(&ctrl->namespaces_mutex); |
| 2863 | return ret; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2864 | } |
| 2865 | |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 2866 | static int nvme_setup_streams_ns(struct nvme_ctrl *ctrl, struct nvme_ns *ns) |
| 2867 | { |
| 2868 | struct streams_directive_params s; |
| 2869 | int ret; |
| 2870 | |
| 2871 | if (!ctrl->nr_streams) |
| 2872 | return 0; |
| 2873 | |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2874 | ret = nvme_get_stream_params(ctrl, &s, ns->head->ns_id); |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 2875 | if (ret) |
| 2876 | return ret; |
| 2877 | |
| 2878 | ns->sws = le32_to_cpu(s.sws); |
| 2879 | ns->sgs = le16_to_cpu(s.sgs); |
| 2880 | |
| 2881 | if (ns->sws) { |
| 2882 | unsigned int bs = 1 << ns->lba_shift; |
| 2883 | |
| 2884 | blk_queue_io_min(ns->queue, bs * ns->sws); |
| 2885 | if (ns->sgs) |
| 2886 | blk_queue_io_opt(ns->queue, bs * ns->sws * ns->sgs); |
| 2887 | } |
| 2888 | |
| 2889 | return 0; |
| 2890 | } |
| 2891 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2892 | static void nvme_alloc_ns(struct nvme_ctrl *ctrl, unsigned nsid) |
| 2893 | { |
| 2894 | struct nvme_ns *ns; |
| 2895 | struct gendisk *disk; |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 2896 | struct nvme_id_ns *id; |
| 2897 | char disk_name[DISK_NAME_LEN]; |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 2898 | int node = dev_to_node(ctrl->dev), flags = GENHD_FL_EXT_DEVT; |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2899 | bool new = true; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2900 | |
| 2901 | ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node); |
| 2902 | if (!ns) |
| 2903 | return; |
| 2904 | |
| 2905 | ns->queue = blk_mq_init_queue(ctrl->tagset); |
| 2906 | if (IS_ERR(ns->queue)) |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2907 | goto out_free_ns; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2908 | queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue); |
| 2909 | ns->queue->queuedata = ns; |
| 2910 | ns->ctrl = ctrl; |
| 2911 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2912 | kref_init(&ns->kref); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2913 | 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] | 2914 | |
| 2915 | blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift); |
Christoph Hellwig | da35825 | 2016-03-02 18:07:11 +0100 | [diff] [blame] | 2916 | nvme_set_queue_limits(ctrl, ns->queue); |
Jens Axboe | f5d1184 | 2017-06-27 12:03:06 -0600 | [diff] [blame] | 2917 | nvme_setup_streams_ns(ctrl, ns); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2918 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 2919 | id = nvme_identify_ns(ctrl, nsid); |
| 2920 | if (!id) |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 2921 | goto out_free_queue; |
| 2922 | |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 2923 | if (id->ncap == 0) |
| 2924 | goto out_free_id; |
| 2925 | |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2926 | if (nvme_init_ns_head(ns, nsid, id, &new)) |
| 2927 | goto out_free_id; |
| 2928 | |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 2929 | #ifdef CONFIG_NVME_MULTIPATH |
| 2930 | /* |
| 2931 | * If multipathing is enabled we need to always use the subsystem |
| 2932 | * instance number for numbering our devices to avoid conflicts |
| 2933 | * between subsystems that have multiple controllers and thus use |
| 2934 | * the multipath-aware subsystem node and those that have a single |
| 2935 | * controller and use the controller node directly. |
| 2936 | */ |
| 2937 | if (ns->head->disk) { |
| 2938 | sprintf(disk_name, "nvme%dc%dn%d", ctrl->subsys->instance, |
| 2939 | ctrl->cntlid, ns->head->instance); |
| 2940 | flags = GENHD_FL_HIDDEN; |
| 2941 | } else { |
| 2942 | sprintf(disk_name, "nvme%dn%d", ctrl->subsys->instance, |
| 2943 | ns->head->instance); |
| 2944 | } |
| 2945 | #else |
| 2946 | /* |
| 2947 | * But without the multipath code enabled, multiple controller per |
| 2948 | * subsystems are visible as devices and thus we cannot use the |
| 2949 | * subsystem instance. |
| 2950 | */ |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2951 | sprintf(disk_name, "nvme%dn%d", ctrl->instance, ns->head->instance); |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 2952 | #endif |
Christoph Hellwig | cdbff4f | 2017-08-16 16:14:47 +0200 | [diff] [blame] | 2953 | |
Christoph Hellwig | 608cc4b | 2017-09-06 11:45:24 +0200 | [diff] [blame] | 2954 | if ((ctrl->quirks & NVME_QUIRK_LIGHTNVM) && id->vs[0] == 0x1) { |
| 2955 | if (nvme_nvm_register(ns, disk_name, node)) { |
| 2956 | dev_warn(ctrl->device, "LightNVM init failure\n"); |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2957 | goto out_unlink_ns; |
Christoph Hellwig | 608cc4b | 2017-09-06 11:45:24 +0200 | [diff] [blame] | 2958 | } |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 2959 | } |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2960 | |
Matias Bjørling | 3dc87dd | 2016-11-28 22:38:53 +0100 | [diff] [blame] | 2961 | disk = alloc_disk_node(0, node); |
| 2962 | if (!disk) |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2963 | goto out_unlink_ns; |
Matias Bjørling | 3dc87dd | 2016-11-28 22:38:53 +0100 | [diff] [blame] | 2964 | |
| 2965 | disk->fops = &nvme_fops; |
| 2966 | disk->private_data = ns; |
| 2967 | disk->queue = ns->queue; |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 2968 | disk->flags = flags; |
Matias Bjørling | 3dc87dd | 2016-11-28 22:38:53 +0100 | [diff] [blame] | 2969 | memcpy(disk->disk_name, disk_name, DISK_NAME_LEN); |
| 2970 | ns->disk = disk; |
| 2971 | |
| 2972 | __nvme_revalidate_disk(disk, id); |
| 2973 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 2974 | mutex_lock(&ctrl->namespaces_mutex); |
| 2975 | list_add_tail(&ns->list, &ctrl->namespaces); |
| 2976 | mutex_unlock(&ctrl->namespaces_mutex); |
| 2977 | |
Christoph Hellwig | d22524a | 2017-10-18 13:25:42 +0200 | [diff] [blame] | 2978 | nvme_get_ctrl(ctrl); |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 2979 | |
| 2980 | kfree(id); |
| 2981 | |
Dan Williams | 0d52c756 | 2016-06-15 19:44:20 -0700 | [diff] [blame] | 2982 | device_add_disk(ctrl->device, ns->disk); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2983 | if (sysfs_create_group(&disk_to_dev(ns->disk)->kobj, |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 2984 | &nvme_ns_id_attr_group)) |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 2985 | pr_warn("%s: failed to create sysfs group for identification\n", |
| 2986 | ns->disk->disk_name); |
Matias Bjørling | 3dc87dd | 2016-11-28 22:38:53 +0100 | [diff] [blame] | 2987 | if (ns->ndev && nvme_nvm_register_sysfs(ns)) |
| 2988 | pr_warn("%s: failed to register lightnvm sysfs group for identification\n", |
| 2989 | ns->disk->disk_name); |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 2990 | |
| 2991 | if (new) |
| 2992 | nvme_mpath_add_disk(ns->head); |
Hannes Reinecke | e9a4803 | 2017-11-09 17:57:06 +0100 | [diff] [blame] | 2993 | nvme_mpath_add_disk_links(ns); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 2994 | return; |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 2995 | out_unlink_ns: |
| 2996 | mutex_lock(&ctrl->subsys->lock); |
| 2997 | list_del_rcu(&ns->siblings); |
| 2998 | mutex_unlock(&ctrl->subsys->lock); |
Matias Bjørling | ac81bfa9 | 2016-09-16 14:25:04 +0200 | [diff] [blame] | 2999 | out_free_id: |
| 3000 | kfree(id); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3001 | out_free_queue: |
| 3002 | blk_cleanup_queue(ns->queue); |
| 3003 | out_free_ns: |
| 3004 | kfree(ns); |
| 3005 | } |
| 3006 | |
| 3007 | static void nvme_ns_remove(struct nvme_ns *ns) |
| 3008 | { |
Keith Busch | 646017a | 2016-02-24 09:15:54 -0700 | [diff] [blame] | 3009 | if (test_and_set_bit(NVME_NS_REMOVING, &ns->flags)) |
| 3010 | return; |
| 3011 | |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 3012 | if (ns->disk && ns->disk->flags & GENHD_FL_UP) { |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3013 | if (blk_get_integrity(ns->disk)) |
| 3014 | blk_integrity_unregister(ns->disk); |
Hannes Reinecke | e9a4803 | 2017-11-09 17:57:06 +0100 | [diff] [blame] | 3015 | nvme_mpath_remove_disk_links(ns); |
Keith Busch | 2b9b6e8 | 2015-12-22 10:10:45 -0700 | [diff] [blame] | 3016 | sysfs_remove_group(&disk_to_dev(ns->disk)->kobj, |
Christoph Hellwig | 5b85b82 | 2017-11-09 13:51:03 +0100 | [diff] [blame] | 3017 | &nvme_ns_id_attr_group); |
Matias Bjørling | 3dc87dd | 2016-11-28 22:38:53 +0100 | [diff] [blame] | 3018 | if (ns->ndev) |
| 3019 | nvme_nvm_unregister_sysfs(ns); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3020 | del_gendisk(ns->disk); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3021 | blk_cleanup_queue(ns->queue); |
| 3022 | } |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3023 | |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 3024 | mutex_lock(&ns->ctrl->subsys->lock); |
Christoph Hellwig | 32acab3 | 2017-11-02 12:59:30 +0100 | [diff] [blame] | 3025 | nvme_mpath_clear_current_path(ns); |
Keith Busch | 9941a86 | 2017-11-16 13:36:50 -0700 | [diff] [blame] | 3026 | list_del_rcu(&ns->siblings); |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 3027 | mutex_unlock(&ns->ctrl->subsys->lock); |
| 3028 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3029 | mutex_lock(&ns->ctrl->namespaces_mutex); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3030 | list_del_init(&ns->list); |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3031 | mutex_unlock(&ns->ctrl->namespaces_mutex); |
| 3032 | |
Keith Busch | 9941a86 | 2017-11-16 13:36:50 -0700 | [diff] [blame] | 3033 | synchronize_srcu(&ns->head->srcu); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3034 | nvme_put_ns(ns); |
| 3035 | } |
| 3036 | |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3037 | static void nvme_validate_ns(struct nvme_ctrl *ctrl, unsigned nsid) |
| 3038 | { |
| 3039 | struct nvme_ns *ns; |
| 3040 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3041 | ns = nvme_find_get_ns(ctrl, nsid); |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3042 | if (ns) { |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 3043 | if (ns->disk && revalidate_disk(ns->disk)) |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3044 | nvme_ns_remove(ns); |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3045 | nvme_put_ns(ns); |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3046 | } else |
| 3047 | nvme_alloc_ns(ctrl, nsid); |
| 3048 | } |
| 3049 | |
Sunad Bhandary | 47b0e50 | 2016-05-27 15:59:43 +0530 | [diff] [blame] | 3050 | static void nvme_remove_invalid_namespaces(struct nvme_ctrl *ctrl, |
| 3051 | unsigned nsid) |
| 3052 | { |
| 3053 | struct nvme_ns *ns, *next; |
| 3054 | |
| 3055 | list_for_each_entry_safe(ns, next, &ctrl->namespaces, list) { |
Christoph Hellwig | ed754e5 | 2017-11-09 13:50:43 +0100 | [diff] [blame] | 3056 | if (ns->head->ns_id > nsid) |
Sunad Bhandary | 47b0e50 | 2016-05-27 15:59:43 +0530 | [diff] [blame] | 3057 | nvme_ns_remove(ns); |
| 3058 | } |
| 3059 | } |
| 3060 | |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3061 | static int nvme_scan_ns_list(struct nvme_ctrl *ctrl, unsigned nn) |
| 3062 | { |
| 3063 | struct nvme_ns *ns; |
| 3064 | __le32 *ns_list; |
| 3065 | unsigned i, j, nsid, prev = 0, num_lists = DIV_ROUND_UP(nn, 1024); |
| 3066 | int ret = 0; |
| 3067 | |
| 3068 | ns_list = kzalloc(0x1000, GFP_KERNEL); |
| 3069 | if (!ns_list) |
| 3070 | return -ENOMEM; |
| 3071 | |
| 3072 | for (i = 0; i < num_lists; i++) { |
| 3073 | ret = nvme_identify_ns_list(ctrl, prev, ns_list); |
| 3074 | if (ret) |
Sunad Bhandary | 47b0e50 | 2016-05-27 15:59:43 +0530 | [diff] [blame] | 3075 | goto free; |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3076 | |
| 3077 | for (j = 0; j < min(nn, 1024U); j++) { |
| 3078 | nsid = le32_to_cpu(ns_list[j]); |
| 3079 | if (!nsid) |
| 3080 | goto out; |
| 3081 | |
| 3082 | nvme_validate_ns(ctrl, nsid); |
| 3083 | |
| 3084 | while (++prev < nsid) { |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3085 | ns = nvme_find_get_ns(ctrl, prev); |
| 3086 | if (ns) { |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3087 | nvme_ns_remove(ns); |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3088 | nvme_put_ns(ns); |
| 3089 | } |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3090 | } |
| 3091 | } |
| 3092 | nn -= j; |
| 3093 | } |
| 3094 | out: |
Sunad Bhandary | 47b0e50 | 2016-05-27 15:59:43 +0530 | [diff] [blame] | 3095 | nvme_remove_invalid_namespaces(ctrl, prev); |
| 3096 | free: |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3097 | kfree(ns_list); |
| 3098 | return ret; |
| 3099 | } |
| 3100 | |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3101 | static void nvme_scan_ns_sequential(struct nvme_ctrl *ctrl, unsigned nn) |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3102 | { |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3103 | unsigned i; |
| 3104 | |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3105 | for (i = 1; i <= nn; i++) |
| 3106 | nvme_validate_ns(ctrl, i); |
| 3107 | |
Sunad Bhandary | 47b0e50 | 2016-05-27 15:59:43 +0530 | [diff] [blame] | 3108 | nvme_remove_invalid_namespaces(ctrl, nn); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3109 | } |
| 3110 | |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3111 | static void nvme_scan_work(struct work_struct *work) |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3112 | { |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3113 | struct nvme_ctrl *ctrl = |
| 3114 | container_of(work, struct nvme_ctrl, scan_work); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3115 | struct nvme_id_ctrl *id; |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3116 | unsigned nn; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3117 | |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3118 | if (ctrl->state != NVME_CTRL_LIVE) |
| 3119 | return; |
| 3120 | |
Jianchao Wang | 2b1b7e7 | 2018-01-06 08:01:58 +0800 | [diff] [blame] | 3121 | WARN_ON_ONCE(!ctrl->tagset); |
| 3122 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3123 | if (nvme_identify_ctrl(ctrl, &id)) |
| 3124 | return; |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3125 | |
| 3126 | nn = le32_to_cpu(id->nn); |
Gabriel Krisman Bertazi | 8ef2074 | 2016-10-19 09:51:05 -0600 | [diff] [blame] | 3127 | if (ctrl->vs >= NVME_VS(1, 1, 0) && |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3128 | !(ctrl->quirks & NVME_QUIRK_IDENTIFY_CNS)) { |
| 3129 | if (!nvme_scan_ns_list(ctrl, nn)) |
| 3130 | goto done; |
| 3131 | } |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3132 | nvme_scan_ns_sequential(ctrl, nn); |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3133 | done: |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3134 | mutex_lock(&ctrl->namespaces_mutex); |
Keith Busch | 540c801 | 2015-10-22 15:45:06 -0600 | [diff] [blame] | 3135 | list_sort(NULL, &ctrl->namespaces, ns_cmp); |
Christoph Hellwig | 69d3b8a | 2015-12-24 15:27:00 +0100 | [diff] [blame] | 3136 | mutex_unlock(&ctrl->namespaces_mutex); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3137 | kfree(id); |
| 3138 | } |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3139 | |
| 3140 | void nvme_queue_scan(struct nvme_ctrl *ctrl) |
| 3141 | { |
| 3142 | /* |
Jianchao Wang | 2b1b7e7 | 2018-01-06 08:01:58 +0800 | [diff] [blame] | 3143 | * Only new queue scan work when admin and IO queues are both alive |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3144 | */ |
| 3145 | if (ctrl->state == NVME_CTRL_LIVE) |
Sagi Grimberg | c669ccd | 2017-05-04 13:33:14 +0300 | [diff] [blame] | 3146 | queue_work(nvme_wq, &ctrl->scan_work); |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3147 | } |
| 3148 | EXPORT_SYMBOL_GPL(nvme_queue_scan); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3149 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3150 | /* |
| 3151 | * This function iterates the namespace list unlocked to allow recovery from |
| 3152 | * controller failure. It is up to the caller to ensure the namespace list is |
| 3153 | * not modified by scan work while this function is executing. |
| 3154 | */ |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3155 | void nvme_remove_namespaces(struct nvme_ctrl *ctrl) |
| 3156 | { |
| 3157 | struct nvme_ns *ns, *next; |
| 3158 | |
Keith Busch | 0ff9d4e | 2016-05-12 08:37:14 -0600 | [diff] [blame] | 3159 | /* |
| 3160 | * The dead states indicates the controller was not gracefully |
| 3161 | * disconnected. In that case, we won't be able to flush any data while |
| 3162 | * removing the namespaces' disks; fail all the queues now to avoid |
| 3163 | * potentially having to clean up the failed sync later. |
| 3164 | */ |
| 3165 | if (ctrl->state == NVME_CTRL_DEAD) |
| 3166 | nvme_kill_queues(ctrl); |
| 3167 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3168 | list_for_each_entry_safe(ns, next, &ctrl->namespaces, list) |
| 3169 | nvme_ns_remove(ns); |
| 3170 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 3171 | EXPORT_SYMBOL_GPL(nvme_remove_namespaces); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3172 | |
Keith Busch | e3d7874 | 2017-11-07 15:13:14 -0700 | [diff] [blame] | 3173 | static void nvme_aen_uevent(struct nvme_ctrl *ctrl) |
| 3174 | { |
| 3175 | char *envp[2] = { NULL, NULL }; |
| 3176 | u32 aen_result = ctrl->aen_result; |
| 3177 | |
| 3178 | ctrl->aen_result = 0; |
| 3179 | if (!aen_result) |
| 3180 | return; |
| 3181 | |
| 3182 | envp[0] = kasprintf(GFP_KERNEL, "NVME_AEN=%#08x", aen_result); |
| 3183 | if (!envp[0]) |
| 3184 | return; |
| 3185 | kobject_uevent_env(&ctrl->device->kobj, KOBJ_CHANGE, envp); |
| 3186 | kfree(envp[0]); |
| 3187 | } |
| 3188 | |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3189 | static void nvme_async_event_work(struct work_struct *work) |
| 3190 | { |
| 3191 | struct nvme_ctrl *ctrl = |
| 3192 | container_of(work, struct nvme_ctrl, async_event_work); |
| 3193 | |
Keith Busch | e3d7874 | 2017-11-07 15:13:14 -0700 | [diff] [blame] | 3194 | nvme_aen_uevent(ctrl); |
Keith Busch | ad22c35 | 2017-11-07 15:13:12 -0700 | [diff] [blame] | 3195 | ctrl->ops->submit_async_event(ctrl); |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3196 | } |
| 3197 | |
Arnav Dawn | b6dccf7 | 2017-07-12 16:10:40 +0530 | [diff] [blame] | 3198 | static bool nvme_ctrl_pp_status(struct nvme_ctrl *ctrl) |
| 3199 | { |
| 3200 | |
| 3201 | u32 csts; |
| 3202 | |
| 3203 | if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) |
| 3204 | return false; |
| 3205 | |
| 3206 | if (csts == ~0) |
| 3207 | return false; |
| 3208 | |
| 3209 | return ((ctrl->ctrl_config & NVME_CC_ENABLE) && (csts & NVME_CSTS_PP)); |
| 3210 | } |
| 3211 | |
| 3212 | static void nvme_get_fw_slot_info(struct nvme_ctrl *ctrl) |
| 3213 | { |
Arnav Dawn | b6dccf7 | 2017-07-12 16:10:40 +0530 | [diff] [blame] | 3214 | struct nvme_fw_slot_info_log *log; |
| 3215 | |
| 3216 | log = kmalloc(sizeof(*log), GFP_KERNEL); |
| 3217 | if (!log) |
| 3218 | return; |
| 3219 | |
Keith Busch | c627c48 | 2017-11-07 10:28:31 -0700 | [diff] [blame] | 3220 | if (nvme_get_log(ctrl, NVME_LOG_FW_SLOT, log, sizeof(*log))) |
Arnav Dawn | b6dccf7 | 2017-07-12 16:10:40 +0530 | [diff] [blame] | 3221 | dev_warn(ctrl->device, |
| 3222 | "Get FW SLOT INFO log error\n"); |
| 3223 | kfree(log); |
| 3224 | } |
| 3225 | |
| 3226 | static void nvme_fw_act_work(struct work_struct *work) |
| 3227 | { |
| 3228 | struct nvme_ctrl *ctrl = container_of(work, |
| 3229 | struct nvme_ctrl, fw_act_work); |
| 3230 | unsigned long fw_act_timeout; |
| 3231 | |
| 3232 | if (ctrl->mtfa) |
| 3233 | fw_act_timeout = jiffies + |
| 3234 | msecs_to_jiffies(ctrl->mtfa * 100); |
| 3235 | else |
| 3236 | fw_act_timeout = jiffies + |
| 3237 | msecs_to_jiffies(admin_timeout * 1000); |
| 3238 | |
| 3239 | nvme_stop_queues(ctrl); |
| 3240 | while (nvme_ctrl_pp_status(ctrl)) { |
| 3241 | if (time_after(jiffies, fw_act_timeout)) { |
| 3242 | dev_warn(ctrl->device, |
| 3243 | "Fw activation timeout, reset controller\n"); |
| 3244 | nvme_reset_ctrl(ctrl); |
| 3245 | break; |
| 3246 | } |
| 3247 | msleep(100); |
| 3248 | } |
| 3249 | |
| 3250 | if (ctrl->state != NVME_CTRL_LIVE) |
| 3251 | return; |
| 3252 | |
| 3253 | nvme_start_queues(ctrl); |
Minwoo Im | a806c6c | 2017-11-02 18:07:44 +0900 | [diff] [blame] | 3254 | /* read FW slot information to clear the AER */ |
Arnav Dawn | b6dccf7 | 2017-07-12 16:10:40 +0530 | [diff] [blame] | 3255 | nvme_get_fw_slot_info(ctrl); |
| 3256 | } |
| 3257 | |
Christoph Hellwig | 7bf5853 | 2016-11-10 07:32:34 -0800 | [diff] [blame] | 3258 | void nvme_complete_async_event(struct nvme_ctrl *ctrl, __le16 status, |
| 3259 | union nvme_result *res) |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3260 | { |
Christoph Hellwig | 7bf5853 | 2016-11-10 07:32:34 -0800 | [diff] [blame] | 3261 | u32 result = le32_to_cpu(res->u32); |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3262 | |
Keith Busch | ad22c35 | 2017-11-07 15:13:12 -0700 | [diff] [blame] | 3263 | if (le16_to_cpu(status) >> 1 != NVME_SC_SUCCESS) |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3264 | return; |
| 3265 | |
Keith Busch | e3d7874 | 2017-11-07 15:13:14 -0700 | [diff] [blame] | 3266 | switch (result & 0x7) { |
| 3267 | case NVME_AER_ERROR: |
| 3268 | case NVME_AER_SMART: |
| 3269 | case NVME_AER_CSS: |
| 3270 | case NVME_AER_VS: |
| 3271 | ctrl->aen_result = result; |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3272 | break; |
| 3273 | default: |
| 3274 | break; |
| 3275 | } |
| 3276 | |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3277 | switch (result & 0xff07) { |
| 3278 | case NVME_AER_NOTICE_NS_CHANGED: |
| 3279 | dev_info(ctrl->device, "rescanning\n"); |
| 3280 | nvme_queue_scan(ctrl); |
| 3281 | break; |
Arnav Dawn | b6dccf7 | 2017-07-12 16:10:40 +0530 | [diff] [blame] | 3282 | case NVME_AER_NOTICE_FW_ACT_STARTING: |
Sagi Grimberg | 1a40d97 | 2017-09-21 17:01:36 +0300 | [diff] [blame] | 3283 | queue_work(nvme_wq, &ctrl->fw_act_work); |
Arnav Dawn | b6dccf7 | 2017-07-12 16:10:40 +0530 | [diff] [blame] | 3284 | break; |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3285 | default: |
| 3286 | dev_warn(ctrl->device, "async event result %08x\n", result); |
| 3287 | } |
Sagi Grimberg | c669ccd | 2017-05-04 13:33:14 +0300 | [diff] [blame] | 3288 | queue_work(nvme_wq, &ctrl->async_event_work); |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3289 | } |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3290 | EXPORT_SYMBOL_GPL(nvme_complete_async_event); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3291 | |
Sagi Grimberg | d09f2b4 | 2017-07-02 10:56:43 +0300 | [diff] [blame] | 3292 | void nvme_stop_ctrl(struct nvme_ctrl *ctrl) |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 3293 | { |
Sagi Grimberg | d09f2b4 | 2017-07-02 10:56:43 +0300 | [diff] [blame] | 3294 | nvme_stop_keep_alive(ctrl); |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3295 | flush_work(&ctrl->async_event_work); |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3296 | flush_work(&ctrl->scan_work); |
Arnav Dawn | b6dccf7 | 2017-07-12 16:10:40 +0530 | [diff] [blame] | 3297 | cancel_work_sync(&ctrl->fw_act_work); |
Sagi Grimberg | d09f2b4 | 2017-07-02 10:56:43 +0300 | [diff] [blame] | 3298 | } |
| 3299 | EXPORT_SYMBOL_GPL(nvme_stop_ctrl); |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3300 | |
Sagi Grimberg | d09f2b4 | 2017-07-02 10:56:43 +0300 | [diff] [blame] | 3301 | void nvme_start_ctrl(struct nvme_ctrl *ctrl) |
| 3302 | { |
| 3303 | if (ctrl->kato) |
| 3304 | nvme_start_keep_alive(ctrl); |
| 3305 | |
| 3306 | if (ctrl->queue_count > 1) { |
| 3307 | nvme_queue_scan(ctrl); |
Keith Busch | d99ca60 | 2017-11-07 15:13:13 -0700 | [diff] [blame] | 3308 | queue_work(nvme_wq, &ctrl->async_event_work); |
Sagi Grimberg | d09f2b4 | 2017-07-02 10:56:43 +0300 | [diff] [blame] | 3309 | nvme_start_queues(ctrl); |
| 3310 | } |
| 3311 | } |
| 3312 | EXPORT_SYMBOL_GPL(nvme_start_ctrl); |
| 3313 | |
| 3314 | void nvme_uninit_ctrl(struct nvme_ctrl *ctrl) |
| 3315 | { |
Christoph Hellwig | a6a5149 | 2017-10-18 16:59:25 +0200 | [diff] [blame] | 3316 | cdev_device_del(&ctrl->cdev, ctrl->device); |
Keith Busch | 53029b0 | 2015-11-28 15:41:02 +0100 | [diff] [blame] | 3317 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 3318 | EXPORT_SYMBOL_GPL(nvme_uninit_ctrl); |
Keith Busch | 53029b0 | 2015-11-28 15:41:02 +0100 | [diff] [blame] | 3319 | |
Christoph Hellwig | d22524a | 2017-10-18 13:25:42 +0200 | [diff] [blame] | 3320 | static void nvme_free_ctrl(struct device *dev) |
Keith Busch | 53029b0 | 2015-11-28 15:41:02 +0100 | [diff] [blame] | 3321 | { |
Christoph Hellwig | d22524a | 2017-10-18 13:25:42 +0200 | [diff] [blame] | 3322 | struct nvme_ctrl *ctrl = |
| 3323 | container_of(dev, struct nvme_ctrl, ctrl_device); |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 3324 | struct nvme_subsystem *subsys = ctrl->subsys; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3325 | |
Christoph Hellwig | 9843f68 | 2017-10-18 13:10:01 +0200 | [diff] [blame] | 3326 | ida_simple_remove(&nvme_instance_ida, ctrl->instance); |
Keith Busch | 84fef62 | 2017-11-07 10:28:32 -0700 | [diff] [blame] | 3327 | kfree(ctrl->effects); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3328 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 3329 | if (subsys) { |
| 3330 | mutex_lock(&subsys->lock); |
| 3331 | list_del(&ctrl->subsys_entry); |
| 3332 | mutex_unlock(&subsys->lock); |
| 3333 | sysfs_remove_link(&subsys->dev.kobj, dev_name(ctrl->device)); |
| 3334 | } |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3335 | |
| 3336 | ctrl->ops->free_ctrl(ctrl); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3337 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 3338 | if (subsys) |
| 3339 | nvme_put_subsystem(subsys); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3340 | } |
| 3341 | |
| 3342 | /* |
| 3343 | * Initialize a NVMe controller structures. This needs to be called during |
| 3344 | * earliest initialization so that we have the initialized structured around |
| 3345 | * during probing. |
| 3346 | */ |
| 3347 | int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev, |
| 3348 | const struct nvme_ctrl_ops *ops, unsigned long quirks) |
| 3349 | { |
| 3350 | int ret; |
| 3351 | |
Christoph Hellwig | bb8d261 | 2016-04-26 13:51:57 +0200 | [diff] [blame] | 3352 | ctrl->state = NVME_CTRL_NEW; |
| 3353 | spin_lock_init(&ctrl->lock); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3354 | INIT_LIST_HEAD(&ctrl->namespaces); |
Christoph Hellwig | 69d3b8a | 2015-12-24 15:27:00 +0100 | [diff] [blame] | 3355 | mutex_init(&ctrl->namespaces_mutex); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3356 | ctrl->dev = dev; |
| 3357 | ctrl->ops = ops; |
| 3358 | ctrl->quirks = quirks; |
Christoph Hellwig | 5955be2 | 2016-04-26 13:51:59 +0200 | [diff] [blame] | 3359 | INIT_WORK(&ctrl->scan_work, nvme_scan_work); |
Christoph Hellwig | f866fc42 | 2016-04-26 13:52:00 +0200 | [diff] [blame] | 3360 | INIT_WORK(&ctrl->async_event_work, nvme_async_event_work); |
Arnav Dawn | b6dccf7 | 2017-07-12 16:10:40 +0530 | [diff] [blame] | 3361 | INIT_WORK(&ctrl->fw_act_work, nvme_fw_act_work); |
Christoph Hellwig | c5017e8 | 2017-10-29 10:44:29 +0200 | [diff] [blame] | 3362 | INIT_WORK(&ctrl->delete_work, nvme_delete_ctrl_work); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3363 | |
Christoph Hellwig | 9843f68 | 2017-10-18 13:10:01 +0200 | [diff] [blame] | 3364 | ret = ida_simple_get(&nvme_instance_ida, 0, 0, GFP_KERNEL); |
| 3365 | if (ret < 0) |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3366 | goto out; |
Christoph Hellwig | 9843f68 | 2017-10-18 13:10:01 +0200 | [diff] [blame] | 3367 | ctrl->instance = ret; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3368 | |
Christoph Hellwig | d22524a | 2017-10-18 13:25:42 +0200 | [diff] [blame] | 3369 | device_initialize(&ctrl->ctrl_device); |
| 3370 | ctrl->device = &ctrl->ctrl_device; |
Christoph Hellwig | a6a5149 | 2017-10-18 16:59:25 +0200 | [diff] [blame] | 3371 | ctrl->device->devt = MKDEV(MAJOR(nvme_chr_devt), ctrl->instance); |
Christoph Hellwig | d22524a | 2017-10-18 13:25:42 +0200 | [diff] [blame] | 3372 | ctrl->device->class = nvme_class; |
| 3373 | ctrl->device->parent = ctrl->dev; |
| 3374 | ctrl->device->groups = nvme_dev_attr_groups; |
| 3375 | ctrl->device->release = nvme_free_ctrl; |
| 3376 | dev_set_drvdata(ctrl->device, ctrl); |
| 3377 | ret = dev_set_name(ctrl->device, "nvme%d", ctrl->instance); |
| 3378 | if (ret) |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3379 | goto out_release_instance; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3380 | |
Christoph Hellwig | a6a5149 | 2017-10-18 16:59:25 +0200 | [diff] [blame] | 3381 | cdev_init(&ctrl->cdev, &nvme_dev_fops); |
| 3382 | ctrl->cdev.owner = ops->module; |
| 3383 | ret = cdev_device_add(&ctrl->cdev, ctrl->device); |
Christoph Hellwig | d22524a | 2017-10-18 13:25:42 +0200 | [diff] [blame] | 3384 | if (ret) |
| 3385 | goto out_free_name; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3386 | |
Andy Lutomirski | c5552fd | 2017-02-07 10:08:45 -0800 | [diff] [blame] | 3387 | /* |
| 3388 | * Initialize latency tolerance controls. The sysfs files won't |
| 3389 | * be visible to userspace unless the device actually supports APST. |
| 3390 | */ |
| 3391 | ctrl->device->power.set_latency_tolerance = nvme_set_latency_tolerance; |
| 3392 | dev_pm_qos_update_user_latency_tolerance(ctrl->device, |
| 3393 | min(default_ps_max_latency_us, (unsigned long)S32_MAX)); |
| 3394 | |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3395 | return 0; |
Christoph Hellwig | d22524a | 2017-10-18 13:25:42 +0200 | [diff] [blame] | 3396 | out_free_name: |
| 3397 | kfree_const(dev->kobj.name); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3398 | out_release_instance: |
Christoph Hellwig | 9843f68 | 2017-10-18 13:10:01 +0200 | [diff] [blame] | 3399 | ida_simple_remove(&nvme_instance_ida, ctrl->instance); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3400 | out: |
| 3401 | return ret; |
| 3402 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 3403 | EXPORT_SYMBOL_GPL(nvme_init_ctrl); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3404 | |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 3405 | /** |
| 3406 | * nvme_kill_queues(): Ends all namespace queues |
| 3407 | * @ctrl: the dead controller that needs to end |
| 3408 | * |
| 3409 | * Call this function when the driver determines it is unable to get the |
| 3410 | * controller in a state capable of servicing IO. |
| 3411 | */ |
| 3412 | void nvme_kill_queues(struct nvme_ctrl *ctrl) |
| 3413 | { |
| 3414 | struct nvme_ns *ns; |
| 3415 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3416 | mutex_lock(&ctrl->namespaces_mutex); |
Ming Lei | 82654b6 | 2017-06-02 16:32:08 +0800 | [diff] [blame] | 3417 | |
Ming Lei | 443bd90 | 2017-06-19 10:21:08 +0800 | [diff] [blame] | 3418 | /* Forcibly unquiesce queues to avoid blocking dispatch */ |
Scott Bauer | 7dd1ab1 | 2017-07-25 10:27:06 -0600 | [diff] [blame] | 3419 | if (ctrl->admin_q) |
| 3420 | blk_mq_unquiesce_queue(ctrl->admin_q); |
Ming Lei | 443bd90 | 2017-06-19 10:21:08 +0800 | [diff] [blame] | 3421 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3422 | list_for_each_entry(ns, &ctrl->namespaces, list) { |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 3423 | /* |
| 3424 | * Revalidating a dead namespace sets capacity to 0. This will |
| 3425 | * end buffered writers dirtying pages that can't be synced. |
| 3426 | */ |
Keith Busch | f33447b | 2017-02-10 18:15:51 -0500 | [diff] [blame] | 3427 | if (!ns->disk || test_and_set_bit(NVME_NS_DEAD, &ns->flags)) |
| 3428 | continue; |
| 3429 | revalidate_disk(ns->disk); |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 3430 | blk_set_queue_dying(ns->queue); |
Ming Lei | 806f026 | 2017-05-22 23:05:03 +0800 | [diff] [blame] | 3431 | |
Ming Lei | 443bd90 | 2017-06-19 10:21:08 +0800 | [diff] [blame] | 3432 | /* Forcibly unquiesce queues to avoid blocking dispatch */ |
| 3433 | blk_mq_unquiesce_queue(ns->queue); |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 3434 | } |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3435 | mutex_unlock(&ctrl->namespaces_mutex); |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 3436 | } |
Linus Torvalds | 237045f | 2016-03-18 17:13:31 -0700 | [diff] [blame] | 3437 | EXPORT_SYMBOL_GPL(nvme_kill_queues); |
Keith Busch | 69d9a99 | 2016-02-24 09:15:56 -0700 | [diff] [blame] | 3438 | |
Keith Busch | 302ad8c | 2017-03-01 14:22:12 -0500 | [diff] [blame] | 3439 | void nvme_unfreeze(struct nvme_ctrl *ctrl) |
| 3440 | { |
| 3441 | struct nvme_ns *ns; |
| 3442 | |
| 3443 | mutex_lock(&ctrl->namespaces_mutex); |
| 3444 | list_for_each_entry(ns, &ctrl->namespaces, list) |
| 3445 | blk_mq_unfreeze_queue(ns->queue); |
| 3446 | mutex_unlock(&ctrl->namespaces_mutex); |
| 3447 | } |
| 3448 | EXPORT_SYMBOL_GPL(nvme_unfreeze); |
| 3449 | |
| 3450 | void nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout) |
| 3451 | { |
| 3452 | struct nvme_ns *ns; |
| 3453 | |
| 3454 | mutex_lock(&ctrl->namespaces_mutex); |
| 3455 | list_for_each_entry(ns, &ctrl->namespaces, list) { |
| 3456 | timeout = blk_mq_freeze_queue_wait_timeout(ns->queue, timeout); |
| 3457 | if (timeout <= 0) |
| 3458 | break; |
| 3459 | } |
| 3460 | mutex_unlock(&ctrl->namespaces_mutex); |
| 3461 | } |
| 3462 | EXPORT_SYMBOL_GPL(nvme_wait_freeze_timeout); |
| 3463 | |
| 3464 | void nvme_wait_freeze(struct nvme_ctrl *ctrl) |
| 3465 | { |
| 3466 | struct nvme_ns *ns; |
| 3467 | |
| 3468 | mutex_lock(&ctrl->namespaces_mutex); |
| 3469 | list_for_each_entry(ns, &ctrl->namespaces, list) |
| 3470 | blk_mq_freeze_queue_wait(ns->queue); |
| 3471 | mutex_unlock(&ctrl->namespaces_mutex); |
| 3472 | } |
| 3473 | EXPORT_SYMBOL_GPL(nvme_wait_freeze); |
| 3474 | |
| 3475 | void nvme_start_freeze(struct nvme_ctrl *ctrl) |
| 3476 | { |
| 3477 | struct nvme_ns *ns; |
| 3478 | |
| 3479 | mutex_lock(&ctrl->namespaces_mutex); |
| 3480 | list_for_each_entry(ns, &ctrl->namespaces, list) |
Ming Lei | 1671d52 | 2017-03-27 20:06:57 +0800 | [diff] [blame] | 3481 | blk_freeze_queue_start(ns->queue); |
Keith Busch | 302ad8c | 2017-03-01 14:22:12 -0500 | [diff] [blame] | 3482 | mutex_unlock(&ctrl->namespaces_mutex); |
| 3483 | } |
| 3484 | EXPORT_SYMBOL_GPL(nvme_start_freeze); |
| 3485 | |
Keith Busch | 2564626 | 2016-01-04 09:10:57 -0700 | [diff] [blame] | 3486 | void nvme_stop_queues(struct nvme_ctrl *ctrl) |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 3487 | { |
| 3488 | struct nvme_ns *ns; |
| 3489 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3490 | mutex_lock(&ctrl->namespaces_mutex); |
Bart Van Assche | a6eaa88 | 2016-10-28 17:23:40 -0700 | [diff] [blame] | 3491 | list_for_each_entry(ns, &ctrl->namespaces, list) |
Bart Van Assche | 3174dd3 | 2016-10-28 17:23:19 -0700 | [diff] [blame] | 3492 | blk_mq_quiesce_queue(ns->queue); |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3493 | mutex_unlock(&ctrl->namespaces_mutex); |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 3494 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 3495 | EXPORT_SYMBOL_GPL(nvme_stop_queues); |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 3496 | |
Keith Busch | 2564626 | 2016-01-04 09:10:57 -0700 | [diff] [blame] | 3497 | void nvme_start_queues(struct nvme_ctrl *ctrl) |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 3498 | { |
| 3499 | struct nvme_ns *ns; |
| 3500 | |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3501 | mutex_lock(&ctrl->namespaces_mutex); |
Sagi Grimberg | 8d7b8fa | 2017-07-04 18:16:58 +0300 | [diff] [blame] | 3502 | list_for_each_entry(ns, &ctrl->namespaces, list) |
Ming Lei | f660174 | 2017-06-06 23:22:04 +0800 | [diff] [blame] | 3503 | blk_mq_unquiesce_queue(ns->queue); |
Keith Busch | 32f0c4a | 2016-07-13 11:45:02 -0600 | [diff] [blame] | 3504 | mutex_unlock(&ctrl->namespaces_mutex); |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 3505 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 3506 | EXPORT_SYMBOL_GPL(nvme_start_queues); |
Sagi Grimberg | 363c9aa | 2015-12-24 15:26:59 +0100 | [diff] [blame] | 3507 | |
Sagi Grimberg | 31b8446 | 2017-10-11 12:53:07 +0300 | [diff] [blame] | 3508 | int nvme_reinit_tagset(struct nvme_ctrl *ctrl, struct blk_mq_tag_set *set) |
| 3509 | { |
| 3510 | if (!ctrl->ops->reinit_request) |
| 3511 | return 0; |
| 3512 | |
| 3513 | return blk_mq_tagset_iter(set, set->driver_data, |
| 3514 | ctrl->ops->reinit_request); |
| 3515 | } |
| 3516 | EXPORT_SYMBOL_GPL(nvme_reinit_tagset); |
| 3517 | |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3518 | int __init nvme_core_init(void) |
| 3519 | { |
| 3520 | int result; |
| 3521 | |
Sagi Grimberg | 9a6327d | 2017-06-07 20:31:55 +0200 | [diff] [blame] | 3522 | nvme_wq = alloc_workqueue("nvme-wq", |
| 3523 | WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0); |
| 3524 | if (!nvme_wq) |
| 3525 | return -ENOMEM; |
| 3526 | |
Christoph Hellwig | a6a5149 | 2017-10-18 16:59:25 +0200 | [diff] [blame] | 3527 | result = alloc_chrdev_region(&nvme_chr_devt, 0, NVME_MINORS, "nvme"); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3528 | if (result < 0) |
Sagi Grimberg | 9a6327d | 2017-06-07 20:31:55 +0200 | [diff] [blame] | 3529 | goto destroy_wq; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3530 | |
| 3531 | nvme_class = class_create(THIS_MODULE, "nvme"); |
| 3532 | if (IS_ERR(nvme_class)) { |
| 3533 | result = PTR_ERR(nvme_class); |
| 3534 | goto unregister_chrdev; |
| 3535 | } |
| 3536 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 3537 | nvme_subsys_class = class_create(THIS_MODULE, "nvme-subsystem"); |
| 3538 | if (IS_ERR(nvme_subsys_class)) { |
| 3539 | result = PTR_ERR(nvme_subsys_class); |
| 3540 | goto destroy_class; |
| 3541 | } |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3542 | return 0; |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3543 | |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 3544 | destroy_class: |
| 3545 | class_destroy(nvme_class); |
Sagi Grimberg | 9a6327d | 2017-06-07 20:31:55 +0200 | [diff] [blame] | 3546 | unregister_chrdev: |
Christoph Hellwig | a6a5149 | 2017-10-18 16:59:25 +0200 | [diff] [blame] | 3547 | unregister_chrdev_region(nvme_chr_devt, NVME_MINORS); |
Sagi Grimberg | 9a6327d | 2017-06-07 20:31:55 +0200 | [diff] [blame] | 3548 | destroy_wq: |
| 3549 | destroy_workqueue(nvme_wq); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3550 | return result; |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3551 | } |
| 3552 | |
| 3553 | void nvme_core_exit(void) |
| 3554 | { |
Christoph Hellwig | ab9e00c | 2017-11-09 13:48:55 +0100 | [diff] [blame] | 3555 | ida_destroy(&nvme_subsystems_ida); |
| 3556 | class_destroy(nvme_subsys_class); |
Christoph Hellwig | f3ca80f | 2015-11-28 15:40:19 +0100 | [diff] [blame] | 3557 | class_destroy(nvme_class); |
Christoph Hellwig | a6a5149 | 2017-10-18 16:59:25 +0200 | [diff] [blame] | 3558 | unregister_chrdev_region(nvme_chr_devt, NVME_MINORS); |
Sagi Grimberg | 9a6327d | 2017-06-07 20:31:55 +0200 | [diff] [blame] | 3559 | destroy_workqueue(nvme_wq); |
Christoph Hellwig | 5bae7f7 | 2015-11-28 15:39:07 +0100 | [diff] [blame] | 3560 | } |
Ming Lin | 576d55d | 2016-02-10 10:03:32 -0800 | [diff] [blame] | 3561 | |
| 3562 | MODULE_LICENSE("GPL"); |
| 3563 | MODULE_VERSION("1.0"); |
| 3564 | module_init(nvme_core_init); |
| 3565 | module_exit(nvme_core_exit); |