blob: ad99dd76dcd2903ab5464143a55aee820303067f [file] [log] [blame]
Christoph Hellwig21d34712015-11-26 09:08:36 +01001/*
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 Hellwig5fd4ce12015-11-28 15:03:49 +010017#include <linux/delay.h>
Christoph Hellwig21d34712015-11-26 09:08:36 +010018#include <linux/errno.h>
Christoph Hellwig1673f1f2015-11-26 10:54:19 +010019#include <linux/hdreg.h>
Christoph Hellwig21d34712015-11-26 09:08:36 +010020#include <linux/kernel.h>
Christoph Hellwig5bae7f72015-11-28 15:39:07 +010021#include <linux/module.h>
22#include <linux/list_sort.h>
Christoph Hellwig21d34712015-11-26 09:08:36 +010023#include <linux/slab.h>
24#include <linux/types.h>
Christoph Hellwig1673f1f2015-11-26 10:54:19 +010025#include <linux/pr.h>
26#include <linux/ptrace.h>
27#include <linux/nvme_ioctl.h>
28#include <linux/t10-pi.h>
Andy Lutomirskic5552fd2017-02-07 10:08:45 -080029#include <linux/pm_qos.h>
Christoph Hellwig1673f1f2015-11-26 10:54:19 +010030#include <asm/unaligned.h>
Christoph Hellwig21d34712015-11-26 09:08:36 +010031
Johannes Thumshirn3d030e42018-01-26 11:21:37 +010032#define CREATE_TRACE_POINTS
33#include "trace.h"
34
Christoph Hellwig21d34712015-11-26 09:08:36 +010035#include "nvme.h"
Sagi Grimberg038bd4c2016-06-13 16:45:28 +020036#include "fabrics.h"
Christoph Hellwig21d34712015-11-26 09:08:36 +010037
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +010038#define NVME_MINORS (1U << MINORBITS)
39
Marc Olson8ae4e442017-09-06 17:23:56 -070040unsigned int admin_timeout = 60;
41module_param(admin_timeout, uint, 0644);
Ming Linba0ba7d2016-02-10 10:03:30 -080042MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Ming Lin576d55d2016-02-10 10:03:32 -080043EXPORT_SYMBOL_GPL(admin_timeout);
Ming Linba0ba7d2016-02-10 10:03:30 -080044
Marc Olson8ae4e442017-09-06 17:23:56 -070045unsigned int nvme_io_timeout = 30;
46module_param_named(io_timeout, nvme_io_timeout, uint, 0644);
Ming Linba0ba7d2016-02-10 10:03:30 -080047MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Ming Lin576d55d2016-02-10 10:03:32 -080048EXPORT_SYMBOL_GPL(nvme_io_timeout);
Ming Linba0ba7d2016-02-10 10:03:30 -080049
Christoph Hellwigb3b1b0b2017-06-12 18:30:51 +020050static unsigned char shutdown_timeout = 5;
Ming Linba0ba7d2016-02-10 10:03:30 -080051module_param(shutdown_timeout, byte, 0644);
52MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
53
Christoph Hellwig44e44b22017-04-05 19:18:11 +020054static u8 nvme_max_retries = 5;
55module_param_named(max_retries, nvme_max_retries, byte, 0644);
Keith Buschf80ec962016-07-12 16:20:31 -070056MODULE_PARM_DESC(max_retries, "max number of retries a command may have");
Christoph Hellwig5bae7f72015-11-28 15:39:07 +010057
Kai-Heng Feng9947d6a2017-06-07 15:25:43 +080058static unsigned long default_ps_max_latency_us = 100000;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -080059module_param(default_ps_max_latency_us, ulong, 0644);
60MODULE_PARM_DESC(default_ps_max_latency_us,
61 "max power saving latency for new devices; use PM QOS to change per device");
62
Andy Lutomirskic35e30b2017-04-21 16:19:24 -070063static bool force_apst;
64module_param(force_apst, bool, 0644);
65MODULE_PARM_DESC(force_apst, "allow APST for newly enumerated devices even if quirked off");
66
Jens Axboef5d11842017-06-27 12:03:06 -060067static bool streams;
68module_param(streams, bool, 0644);
69MODULE_PARM_DESC(streams, "turn on support for Streams write directives");
70
Roy Shtermanb227c592018-01-14 12:39:02 +020071/*
72 * nvme_wq - hosts nvme related works that are not reset or delete
73 * nvme_reset_wq - hosts nvme reset works
74 * nvme_delete_wq - hosts nvme delete works
75 *
76 * nvme_wq will host works such are scan, aen handling, fw activation,
77 * keep-alive error recovery, periodic reconnects etc. nvme_reset_wq
78 * runs reset works which also flush works hosted on nvme_wq for
79 * serialization purposes. nvme_delete_wq host controller deletion
80 * works which flush reset works for serialization.
81 */
Sagi Grimberg9a6327d2017-06-07 20:31:55 +020082struct workqueue_struct *nvme_wq;
83EXPORT_SYMBOL_GPL(nvme_wq);
84
Roy Shtermanb227c592018-01-14 12:39:02 +020085struct workqueue_struct *nvme_reset_wq;
86EXPORT_SYMBOL_GPL(nvme_reset_wq);
87
88struct workqueue_struct *nvme_delete_wq;
89EXPORT_SYMBOL_GPL(nvme_delete_wq);
90
Christoph Hellwigab9e00c2017-11-09 13:48:55 +010091static DEFINE_IDA(nvme_subsystems_ida);
92static LIST_HEAD(nvme_subsystems);
93static DEFINE_MUTEX(nvme_subsystems_lock);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +010094
Christoph Hellwig9843f682017-10-18 13:10:01 +020095static DEFINE_IDA(nvme_instance_ida);
Christoph Hellwiga6a51492017-10-18 16:59:25 +020096static dev_t nvme_chr_devt;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +010097static struct class *nvme_class;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +010098static struct class *nvme_subsys_class;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +010099
Keith Busch84fef622017-11-07 10:28:32 -0700100static void nvme_ns_remove(struct nvme_ns *ns);
101static int nvme_revalidate_disk(struct gendisk *disk);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100102
Christoph Hellwigd86c4d82017-06-15 15:41:08 +0200103int nvme_reset_ctrl(struct nvme_ctrl *ctrl)
104{
105 if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_RESETTING))
106 return -EBUSY;
Roy Shtermanb227c592018-01-14 12:39:02 +0200107 if (!queue_work(nvme_reset_wq, &ctrl->reset_work))
Christoph Hellwigd86c4d82017-06-15 15:41:08 +0200108 return -EBUSY;
109 return 0;
110}
111EXPORT_SYMBOL_GPL(nvme_reset_ctrl);
112
Sagi Grimberg79c48cc2018-01-14 12:39:00 +0200113int nvme_reset_ctrl_sync(struct nvme_ctrl *ctrl)
Christoph Hellwigd86c4d82017-06-15 15:41:08 +0200114{
115 int ret;
116
117 ret = nvme_reset_ctrl(ctrl);
Nitzan Carmi8000d1f2018-01-17 11:01:14 +0000118 if (!ret) {
Christoph Hellwigd86c4d82017-06-15 15:41:08 +0200119 flush_work(&ctrl->reset_work);
Nitzan Carmi8000d1f2018-01-17 11:01:14 +0000120 if (ctrl->state != NVME_CTRL_LIVE)
121 ret = -ENETRESET;
122 }
123
Christoph Hellwigd86c4d82017-06-15 15:41:08 +0200124 return ret;
125}
Sagi Grimberg79c48cc2018-01-14 12:39:00 +0200126EXPORT_SYMBOL_GPL(nvme_reset_ctrl_sync);
Christoph Hellwigd86c4d82017-06-15 15:41:08 +0200127
Christoph Hellwigc5017e82017-10-29 10:44:29 +0200128static void nvme_delete_ctrl_work(struct work_struct *work)
129{
130 struct nvme_ctrl *ctrl =
131 container_of(work, struct nvme_ctrl, delete_work);
132
Max Gurtovoy77d06122018-03-11 17:46:06 +0200133 dev_info(ctrl->device,
134 "Removing ctrl: NQN \"%s\"\n", ctrl->opts->subsysnqn);
135
Sagi Grimberg40546372017-10-29 14:21:02 +0200136 flush_work(&ctrl->reset_work);
Christoph Hellwig6cd53d12017-10-29 10:44:31 +0200137 nvme_stop_ctrl(ctrl);
138 nvme_remove_namespaces(ctrl);
Christoph Hellwigc5017e82017-10-29 10:44:29 +0200139 ctrl->ops->delete_ctrl(ctrl);
Christoph Hellwig6cd53d12017-10-29 10:44:31 +0200140 nvme_uninit_ctrl(ctrl);
141 nvme_put_ctrl(ctrl);
Christoph Hellwigc5017e82017-10-29 10:44:29 +0200142}
143
144int nvme_delete_ctrl(struct nvme_ctrl *ctrl)
145{
146 if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING))
147 return -EBUSY;
Roy Shtermanb227c592018-01-14 12:39:02 +0200148 if (!queue_work(nvme_delete_wq, &ctrl->delete_work))
Christoph Hellwigc5017e82017-10-29 10:44:29 +0200149 return -EBUSY;
150 return 0;
151}
152EXPORT_SYMBOL_GPL(nvme_delete_ctrl);
153
154int nvme_delete_ctrl_sync(struct nvme_ctrl *ctrl)
155{
156 int ret = 0;
157
158 /*
159 * Keep a reference until the work is flushed since ->delete_ctrl
160 * can free the controller.
161 */
162 nvme_get_ctrl(ctrl);
163 ret = nvme_delete_ctrl(ctrl);
164 if (!ret)
165 flush_work(&ctrl->delete_work);
166 nvme_put_ctrl(ctrl);
167 return ret;
168}
169EXPORT_SYMBOL_GPL(nvme_delete_ctrl_sync);
170
Christoph Hellwig715ea9e2017-11-07 17:27:34 +0100171static inline bool nvme_ns_has_pi(struct nvme_ns *ns)
172{
173 return ns->pi_type && ns->ms == sizeof(struct t10_pi_tuple);
174}
175
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200176static blk_status_t nvme_error_status(struct request *req)
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200177{
178 switch (nvme_req(req)->status & 0x7ff) {
179 case NVME_SC_SUCCESS:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200180 return BLK_STS_OK;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200181 case NVME_SC_CAP_EXCEEDED:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200182 return BLK_STS_NOSPC;
Keith Busche96fef22018-01-09 12:04:14 -0700183 case NVME_SC_LBA_RANGE:
184 return BLK_STS_TARGET;
185 case NVME_SC_BAD_ATTRIBUTES:
Junxiong Guane02ab022017-04-21 12:59:07 +0200186 case NVME_SC_ONCS_NOT_SUPPORTED:
Keith Busche96fef22018-01-09 12:04:14 -0700187 case NVME_SC_INVALID_OPCODE:
188 case NVME_SC_INVALID_FIELD:
189 case NVME_SC_INVALID_NS:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200190 return BLK_STS_NOTSUPP;
Junxiong Guane02ab022017-04-21 12:59:07 +0200191 case NVME_SC_WRITE_FAULT:
192 case NVME_SC_READ_ERROR:
193 case NVME_SC_UNWRITTEN_BLOCK:
Christoph Hellwiga751da32017-08-22 10:17:03 +0200194 case NVME_SC_ACCESS_DENIED:
195 case NVME_SC_READ_ONLY:
Keith Busche96fef22018-01-09 12:04:14 -0700196 case NVME_SC_COMPARE_FAILED:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200197 return BLK_STS_MEDIUM;
Christoph Hellwiga751da32017-08-22 10:17:03 +0200198 case NVME_SC_GUARD_CHECK:
199 case NVME_SC_APPTAG_CHECK:
200 case NVME_SC_REFTAG_CHECK:
201 case NVME_SC_INVALID_PI:
202 return BLK_STS_PROTECTION;
203 case NVME_SC_RESERVATION_CONFLICT:
204 return BLK_STS_NEXUS;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200205 default:
206 return BLK_STS_IOERR;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200207 }
208}
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200209
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200210static inline bool nvme_req_needs_retry(struct request *req)
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200211{
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200212 if (blk_noretry_request(req))
213 return false;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200214 if (nvme_req(req)->status & NVME_SC_DNR)
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200215 return false;
Christoph Hellwig44e44b22017-04-05 19:18:11 +0200216 if (nvme_req(req)->retries >= nvme_max_retries)
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200217 return false;
218 return true;
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200219}
220
221void nvme_complete_rq(struct request *req)
222{
Keith Busch908e4562018-01-09 12:04:15 -0700223 blk_status_t status = nvme_error_status(req);
224
Johannes Thumshirnca5554a2018-01-26 11:21:38 +0100225 trace_nvme_complete_rq(req);
226
Keith Busch908e4562018-01-09 12:04:15 -0700227 if (unlikely(status != BLK_STS_OK && nvme_req_needs_retry(req))) {
228 if (nvme_req_needs_failover(req, status)) {
Christoph Hellwig32acab32017-11-02 12:59:30 +0100229 nvme_failover_req(req);
230 return;
231 }
232
233 if (!blk_queue_dying(req->q)) {
234 nvme_req(req)->retries++;
235 blk_mq_requeue_request(req, true);
236 return;
237 }
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200238 }
Keith Busch908e4562018-01-09 12:04:15 -0700239 blk_mq_end_request(req, status);
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200240}
241EXPORT_SYMBOL_GPL(nvme_complete_rq);
242
Ming Linc55a2fd2016-05-18 14:05:02 -0700243void nvme_cancel_request(struct request *req, void *data, bool reserved)
244{
Ming Linc55a2fd2016-05-18 14:05:02 -0700245 if (!blk_mq_request_started(req))
246 return;
247
248 dev_dbg_ratelimited(((struct nvme_ctrl *) data)->device,
249 "Cancelling I/O %d", req->tag);
250
Christoph Hellwige54b0642017-11-02 21:28:51 +0300251 nvme_req(req)->status = NVME_SC_ABORT_REQ;
Christoph Hellwig08e00292017-04-20 16:03:09 +0200252 blk_mq_complete_request(req);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200253
Ming Linc55a2fd2016-05-18 14:05:02 -0700254}
255EXPORT_SYMBOL_GPL(nvme_cancel_request);
256
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200257bool nvme_change_ctrl_state(struct nvme_ctrl *ctrl,
258 enum nvme_ctrl_state new_state)
259{
Gabriel Krisman Bertazif6b6a282016-07-29 16:15:18 -0300260 enum nvme_ctrl_state old_state;
Christoph Hellwig0a72bbb2017-08-22 11:42:24 +0200261 unsigned long flags;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200262 bool changed = false;
263
Christoph Hellwig0a72bbb2017-08-22 11:42:24 +0200264 spin_lock_irqsave(&ctrl->lock, flags);
Gabriel Krisman Bertazif6b6a282016-07-29 16:15:18 -0300265
266 old_state = ctrl->state;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200267 switch (new_state) {
Jianchao Wang2b1b7e72018-01-06 08:01:58 +0800268 case NVME_CTRL_ADMIN_ONLY:
269 switch (old_state) {
Max Gurtovoyad6a0a52018-01-31 18:31:24 +0200270 case NVME_CTRL_CONNECTING:
Jianchao Wang2b1b7e72018-01-06 08:01:58 +0800271 changed = true;
272 /* FALLTHRU */
273 default:
274 break;
275 }
276 break;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200277 case NVME_CTRL_LIVE:
278 switch (old_state) {
Christoph Hellwig7d2e8002016-06-13 16:45:22 +0200279 case NVME_CTRL_NEW:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200280 case NVME_CTRL_RESETTING:
Max Gurtovoyad6a0a52018-01-31 18:31:24 +0200281 case NVME_CTRL_CONNECTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200282 changed = true;
283 /* FALLTHRU */
284 default:
285 break;
286 }
287 break;
288 case NVME_CTRL_RESETTING:
289 switch (old_state) {
290 case NVME_CTRL_NEW:
291 case NVME_CTRL_LIVE:
Jianchao Wang2b1b7e72018-01-06 08:01:58 +0800292 case NVME_CTRL_ADMIN_ONLY:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900293 changed = true;
294 /* FALLTHRU */
295 default:
296 break;
297 }
298 break;
Max Gurtovoyad6a0a52018-01-31 18:31:24 +0200299 case NVME_CTRL_CONNECTING:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900300 switch (old_state) {
Max Gurtovoyb754a322018-01-31 18:31:25 +0200301 case NVME_CTRL_NEW:
James Smart3cec7f92017-10-25 16:43:13 -0700302 case NVME_CTRL_RESETTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200303 changed = true;
304 /* FALLTHRU */
305 default:
306 break;
307 }
308 break;
309 case NVME_CTRL_DELETING:
310 switch (old_state) {
311 case NVME_CTRL_LIVE:
Jianchao Wang2b1b7e72018-01-06 08:01:58 +0800312 case NVME_CTRL_ADMIN_ONLY:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200313 case NVME_CTRL_RESETTING:
Max Gurtovoyad6a0a52018-01-31 18:31:24 +0200314 case NVME_CTRL_CONNECTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200315 changed = true;
316 /* FALLTHRU */
317 default:
318 break;
319 }
320 break;
Keith Busch0ff9d4e2016-05-12 08:37:14 -0600321 case NVME_CTRL_DEAD:
322 switch (old_state) {
323 case NVME_CTRL_DELETING:
324 changed = true;
325 /* FALLTHRU */
326 default:
327 break;
328 }
329 break;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200330 default:
331 break;
332 }
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200333
334 if (changed)
335 ctrl->state = new_state;
336
Christoph Hellwig0a72bbb2017-08-22 11:42:24 +0200337 spin_unlock_irqrestore(&ctrl->lock, flags);
Christoph Hellwig32acab32017-11-02 12:59:30 +0100338 if (changed && ctrl->state == NVME_CTRL_LIVE)
339 nvme_kick_requeue_lists(ctrl);
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200340 return changed;
341}
342EXPORT_SYMBOL_GPL(nvme_change_ctrl_state);
343
Christoph Hellwiged754e52017-11-09 13:50:43 +0100344static void nvme_free_ns_head(struct kref *ref)
345{
346 struct nvme_ns_head *head =
347 container_of(ref, struct nvme_ns_head, ref);
348
Christoph Hellwig32acab32017-11-02 12:59:30 +0100349 nvme_mpath_remove_disk(head);
Christoph Hellwiged754e52017-11-09 13:50:43 +0100350 ida_simple_remove(&head->subsys->ns_ida, head->instance);
351 list_del_init(&head->entry);
352 cleanup_srcu_struct(&head->srcu);
353 kfree(head);
354}
355
356static void nvme_put_ns_head(struct nvme_ns_head *head)
357{
358 kref_put(&head->ref, nvme_free_ns_head);
359}
360
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100361static void nvme_free_ns(struct kref *kref)
362{
363 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
364
Matias Bjørlingb0b4e092016-09-16 14:25:07 +0200365 if (ns->ndev)
366 nvme_nvm_unregister(ns);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100367
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100368 put_disk(ns->disk);
Christoph Hellwiged754e52017-11-09 13:50:43 +0100369 nvme_put_ns_head(ns->head);
Keith Busch075790e2016-02-24 09:15:53 -0700370 nvme_put_ctrl(ns->ctrl);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100371 kfree(ns);
372}
373
Christoph Hellwig5bae7f72015-11-28 15:39:07 +0100374static void nvme_put_ns(struct nvme_ns *ns)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100375{
376 kref_put(&ns->kref, nvme_free_ns);
377}
378
Christoph Hellwig41609822015-11-20 09:00:02 +0100379struct request *nvme_alloc_request(struct request_queue *q,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800380 struct nvme_command *cmd, blk_mq_req_flags_t flags, int qid)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100381{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100382 unsigned op = nvme_is_write(cmd) ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100383 struct request *req;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100384
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200385 if (qid == NVME_QID_ANY) {
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100386 req = blk_mq_alloc_request(q, op, flags);
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200387 } else {
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100388 req = blk_mq_alloc_request_hctx(q, op, flags,
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200389 qid ? qid - 1 : 0);
390 }
Christoph Hellwig21d34712015-11-26 09:08:36 +0100391 if (IS_ERR(req))
Christoph Hellwig41609822015-11-20 09:00:02 +0100392 return req;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100393
Christoph Hellwig21d34712015-11-26 09:08:36 +0100394 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800395 nvme_req(req)->cmd = cmd;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100396
Christoph Hellwig41609822015-11-20 09:00:02 +0100397 return req;
398}
Ming Lin576d55d2016-02-10 10:03:32 -0800399EXPORT_SYMBOL_GPL(nvme_alloc_request);
Christoph Hellwig41609822015-11-20 09:00:02 +0100400
Jens Axboef5d11842017-06-27 12:03:06 -0600401static int nvme_toggle_streams(struct nvme_ctrl *ctrl, bool enable)
402{
403 struct nvme_command c;
404
405 memset(&c, 0, sizeof(c));
406
407 c.directive.opcode = nvme_admin_directive_send;
Arnav Dawn62346ea2017-07-12 16:11:53 +0530408 c.directive.nsid = cpu_to_le32(NVME_NSID_ALL);
Jens Axboef5d11842017-06-27 12:03:06 -0600409 c.directive.doper = NVME_DIR_SND_ID_OP_ENABLE;
410 c.directive.dtype = NVME_DIR_IDENTIFY;
411 c.directive.tdtype = NVME_DIR_STREAMS;
412 c.directive.endir = enable ? NVME_DIR_ENDIR : 0;
413
414 return nvme_submit_sync_cmd(ctrl->admin_q, &c, NULL, 0);
415}
416
417static int nvme_disable_streams(struct nvme_ctrl *ctrl)
418{
419 return nvme_toggle_streams(ctrl, false);
420}
421
422static int nvme_enable_streams(struct nvme_ctrl *ctrl)
423{
424 return nvme_toggle_streams(ctrl, true);
425}
426
427static int nvme_get_stream_params(struct nvme_ctrl *ctrl,
428 struct streams_directive_params *s, u32 nsid)
429{
430 struct nvme_command c;
431
432 memset(&c, 0, sizeof(c));
433 memset(s, 0, sizeof(*s));
434
435 c.directive.opcode = nvme_admin_directive_recv;
436 c.directive.nsid = cpu_to_le32(nsid);
Kwan (Hingkwan) Huen-SSIa082b422017-08-09 11:26:29 -0700437 c.directive.numd = cpu_to_le32((sizeof(*s) >> 2) - 1);
Jens Axboef5d11842017-06-27 12:03:06 -0600438 c.directive.doper = NVME_DIR_RCV_ST_OP_PARAM;
439 c.directive.dtype = NVME_DIR_STREAMS;
440
441 return nvme_submit_sync_cmd(ctrl->admin_q, &c, s, sizeof(*s));
442}
443
444static int nvme_configure_directives(struct nvme_ctrl *ctrl)
445{
446 struct streams_directive_params s;
447 int ret;
448
449 if (!(ctrl->oacs & NVME_CTRL_OACS_DIRECTIVES))
450 return 0;
451 if (!streams)
452 return 0;
453
454 ret = nvme_enable_streams(ctrl);
455 if (ret)
456 return ret;
457
Arnav Dawn62346ea2017-07-12 16:11:53 +0530458 ret = nvme_get_stream_params(ctrl, &s, NVME_NSID_ALL);
Jens Axboef5d11842017-06-27 12:03:06 -0600459 if (ret)
460 return ret;
461
462 ctrl->nssa = le16_to_cpu(s.nssa);
463 if (ctrl->nssa < BLK_MAX_WRITE_HINTS - 1) {
464 dev_info(ctrl->device, "too few streams (%u) available\n",
465 ctrl->nssa);
466 nvme_disable_streams(ctrl);
467 return 0;
468 }
469
470 ctrl->nr_streams = min_t(unsigned, ctrl->nssa, BLK_MAX_WRITE_HINTS - 1);
471 dev_info(ctrl->device, "Using %u streams\n", ctrl->nr_streams);
472 return 0;
473}
474
475/*
476 * Check if 'req' has a write hint associated with it. If it does, assign
477 * a valid namespace stream to the write.
478 */
479static void nvme_assign_write_stream(struct nvme_ctrl *ctrl,
480 struct request *req, u16 *control,
481 u32 *dsmgmt)
482{
483 enum rw_hint streamid = req->write_hint;
484
485 if (streamid == WRITE_LIFE_NOT_SET || streamid == WRITE_LIFE_NONE)
486 streamid = 0;
487 else {
488 streamid--;
489 if (WARN_ON_ONCE(streamid > ctrl->nr_streams))
490 return;
491
492 *control |= NVME_RW_DTYPE_STREAMS;
493 *dsmgmt |= streamid << 16;
494 }
495
496 if (streamid < ARRAY_SIZE(req->q->write_hints))
497 req->q->write_hints[streamid] += blk_rq_bytes(req) >> 9;
498}
499
Ming Lin8093f7c2016-04-12 13:10:14 -0600500static inline void nvme_setup_flush(struct nvme_ns *ns,
501 struct nvme_command *cmnd)
502{
503 memset(cmnd, 0, sizeof(*cmnd));
504 cmnd->common.opcode = nvme_cmd_flush;
Christoph Hellwiged754e52017-11-09 13:50:43 +0100505 cmnd->common.nsid = cpu_to_le32(ns->head->ns_id);
Ming Lin8093f7c2016-04-12 13:10:14 -0600506}
507
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200508static blk_status_t nvme_setup_discard(struct nvme_ns *ns, struct request *req,
Ming Lin8093f7c2016-04-12 13:10:14 -0600509 struct nvme_command *cmnd)
510{
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100511 unsigned short segments = blk_rq_nr_discard_segments(req), n = 0;
Ming Lin8093f7c2016-04-12 13:10:14 -0600512 struct nvme_dsm_range *range;
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100513 struct bio *bio;
Ming Lin8093f7c2016-04-12 13:10:14 -0600514
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100515 range = kmalloc_array(segments, sizeof(*range), GFP_ATOMIC);
Ming Lin8093f7c2016-04-12 13:10:14 -0600516 if (!range)
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200517 return BLK_STS_RESOURCE;
Ming Lin8093f7c2016-04-12 13:10:14 -0600518
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100519 __rq_for_each_bio(bio, req) {
520 u64 slba = nvme_block_nr(ns, bio->bi_iter.bi_sector);
521 u32 nlb = bio->bi_iter.bi_size >> ns->lba_shift;
522
Keith Busch8cb6af72018-01-31 17:01:58 -0700523 if (n < segments) {
524 range[n].cattr = cpu_to_le32(0);
525 range[n].nlb = cpu_to_le32(nlb);
526 range[n].slba = cpu_to_le64(slba);
527 }
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100528 n++;
529 }
530
531 if (WARN_ON_ONCE(n != segments)) {
532 kfree(range);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200533 return BLK_STS_IOERR;
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100534 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600535
536 memset(cmnd, 0, sizeof(*cmnd));
537 cmnd->dsm.opcode = nvme_cmd_dsm;
Christoph Hellwiged754e52017-11-09 13:50:43 +0100538 cmnd->dsm.nsid = cpu_to_le32(ns->head->ns_id);
Christoph Hellwigf1dd03a2017-03-31 17:00:05 +0200539 cmnd->dsm.nr = cpu_to_le32(segments - 1);
Ming Lin8093f7c2016-04-12 13:10:14 -0600540 cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
541
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700542 req->special_vec.bv_page = virt_to_page(range);
543 req->special_vec.bv_offset = offset_in_page(range);
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100544 req->special_vec.bv_len = sizeof(*range) * segments;
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700545 req->rq_flags |= RQF_SPECIAL_PAYLOAD;
Ming Lin8093f7c2016-04-12 13:10:14 -0600546
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200547 return BLK_STS_OK;
Ming Lin8093f7c2016-04-12 13:10:14 -0600548}
Ming Lin8093f7c2016-04-12 13:10:14 -0600549
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200550static inline blk_status_t nvme_setup_rw(struct nvme_ns *ns,
551 struct request *req, struct nvme_command *cmnd)
Ming Lin8093f7c2016-04-12 13:10:14 -0600552{
Jens Axboef5d11842017-06-27 12:03:06 -0600553 struct nvme_ctrl *ctrl = ns->ctrl;
Ming Lin8093f7c2016-04-12 13:10:14 -0600554 u16 control = 0;
555 u32 dsmgmt = 0;
556
557 if (req->cmd_flags & REQ_FUA)
558 control |= NVME_RW_FUA;
559 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
560 control |= NVME_RW_LR;
561
562 if (req->cmd_flags & REQ_RAHEAD)
563 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
564
565 memset(cmnd, 0, sizeof(*cmnd));
566 cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
Christoph Hellwiged754e52017-11-09 13:50:43 +0100567 cmnd->rw.nsid = cpu_to_le32(ns->head->ns_id);
Ming Lin8093f7c2016-04-12 13:10:14 -0600568 cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
569 cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
570
Jens Axboef5d11842017-06-27 12:03:06 -0600571 if (req_op(req) == REQ_OP_WRITE && ctrl->nr_streams)
572 nvme_assign_write_stream(ctrl, req, &control, &dsmgmt);
573
Ming Lin8093f7c2016-04-12 13:10:14 -0600574 if (ns->ms) {
Christoph Hellwig715ea9e2017-11-07 17:27:34 +0100575 /*
576 * If formated with metadata, the block layer always provides a
577 * metadata buffer if CONFIG_BLK_DEV_INTEGRITY is enabled. Else
578 * we enable the PRACT bit for protection information or set the
579 * namespace capacity to zero to prevent any I/O.
580 */
581 if (!blk_integrity_rq(req)) {
582 if (WARN_ON_ONCE(!nvme_ns_has_pi(ns)))
583 return BLK_STS_NOTSUPP;
584 control |= NVME_RW_PRINFO_PRACT;
585 }
586
Ming Lin8093f7c2016-04-12 13:10:14 -0600587 switch (ns->pi_type) {
588 case NVME_NS_DPS_PI_TYPE3:
589 control |= NVME_RW_PRINFO_PRCHK_GUARD;
590 break;
591 case NVME_NS_DPS_PI_TYPE1:
592 case NVME_NS_DPS_PI_TYPE2:
593 control |= NVME_RW_PRINFO_PRCHK_GUARD |
594 NVME_RW_PRINFO_PRCHK_REF;
595 cmnd->rw.reftag = cpu_to_le32(
596 nvme_block_nr(ns, blk_rq_pos(req)));
597 break;
598 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600599 }
600
601 cmnd->rw.control = cpu_to_le16(control);
602 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200603 return 0;
Ming Lin8093f7c2016-04-12 13:10:14 -0600604}
605
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200606blk_status_t nvme_setup_cmd(struct nvme_ns *ns, struct request *req,
Ming Lin8093f7c2016-04-12 13:10:14 -0600607 struct nvme_command *cmd)
608{
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200609 blk_status_t ret = BLK_STS_OK;
Ming Lin8093f7c2016-04-12 13:10:14 -0600610
Christoph Hellwig987f6992017-04-05 19:18:08 +0200611 if (!(req->rq_flags & RQF_DONTPREP)) {
Christoph Hellwig44e44b22017-04-05 19:18:11 +0200612 nvme_req(req)->retries = 0;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200613 nvme_req(req)->flags = 0;
Christoph Hellwig987f6992017-04-05 19:18:08 +0200614 req->rq_flags |= RQF_DONTPREP;
615 }
616
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100617 switch (req_op(req)) {
618 case REQ_OP_DRV_IN:
619 case REQ_OP_DRV_OUT:
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800620 memcpy(cmd, nvme_req(req)->cmd, sizeof(*cmd));
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100621 break;
622 case REQ_OP_FLUSH:
Ming Lin8093f7c2016-04-12 13:10:14 -0600623 nvme_setup_flush(ns, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100624 break;
Christoph Hellwige850fd12017-04-05 19:21:13 +0200625 case REQ_OP_WRITE_ZEROES:
626 /* currently only aliased to deallocate for a few ctrls: */
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100627 case REQ_OP_DISCARD:
Ming Lin8093f7c2016-04-12 13:10:14 -0600628 ret = nvme_setup_discard(ns, req, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100629 break;
630 case REQ_OP_READ:
631 case REQ_OP_WRITE:
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200632 ret = nvme_setup_rw(ns, req, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100633 break;
634 default:
635 WARN_ON_ONCE(1);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200636 return BLK_STS_IOERR;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100637 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600638
James Smart721b3912016-10-21 23:33:34 +0300639 cmd->common.command_id = req->tag;
Johannes Thumshirn3d030e42018-01-26 11:21:37 +0100640 if (ns)
641 trace_nvme_setup_nvm_cmd(req->q->id, cmd);
642 else
643 trace_nvme_setup_admin_cmd(cmd);
Ming Lin8093f7c2016-04-12 13:10:14 -0600644 return ret;
645}
646EXPORT_SYMBOL_GPL(nvme_setup_cmd);
647
Christoph Hellwig41609822015-11-20 09:00:02 +0100648/*
649 * Returns 0 on success. If the result is negative, it's a Linux error code;
650 * if the result is positive, it's an NVM Express status code
651 */
652int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800653 union nvme_result *result, void *buffer, unsigned bufflen,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800654 unsigned timeout, int qid, int at_head,
655 blk_mq_req_flags_t flags)
Christoph Hellwig41609822015-11-20 09:00:02 +0100656{
657 struct request *req;
658 int ret;
659
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200660 req = nvme_alloc_request(q, cmd, flags, qid);
Christoph Hellwig41609822015-11-20 09:00:02 +0100661 if (IS_ERR(req))
662 return PTR_ERR(req);
663
664 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
665
Christoph Hellwig21d34712015-11-26 09:08:36 +0100666 if (buffer && bufflen) {
667 ret = blk_rq_map_kern(q, req, buffer, bufflen, GFP_KERNEL);
668 if (ret)
669 goto out;
Christoph Hellwig41609822015-11-20 09:00:02 +0100670 }
671
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200672 blk_execute_rq(req->q, NULL, req, at_head);
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800673 if (result)
674 *result = nvme_req(req)->result;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200675 if (nvme_req(req)->flags & NVME_REQ_CANCELLED)
676 ret = -EINTR;
677 else
678 ret = nvme_req(req)->status;
Christoph Hellwig41609822015-11-20 09:00:02 +0100679 out:
680 blk_mq_free_request(req);
681 return ret;
682}
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200683EXPORT_SYMBOL_GPL(__nvme_submit_sync_cmd);
Christoph Hellwig41609822015-11-20 09:00:02 +0100684
685int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
686 void *buffer, unsigned bufflen)
687{
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200688 return __nvme_submit_sync_cmd(q, cmd, NULL, buffer, bufflen, 0,
689 NVME_QID_ANY, 0, 0);
Christoph Hellwig41609822015-11-20 09:00:02 +0100690}
Ming Lin576d55d2016-02-10 10:03:32 -0800691EXPORT_SYMBOL_GPL(nvme_submit_sync_cmd);
Christoph Hellwig41609822015-11-20 09:00:02 +0100692
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400693static void *nvme_add_user_metadata(struct bio *bio, void __user *ubuf,
694 unsigned len, u32 seed, bool write)
695{
696 struct bio_integrity_payload *bip;
697 int ret = -ENOMEM;
698 void *buf;
699
700 buf = kmalloc(len, GFP_KERNEL);
701 if (!buf)
702 goto out;
703
704 ret = -EFAULT;
705 if (write && copy_from_user(buf, ubuf, len))
706 goto out_free_meta;
707
708 bip = bio_integrity_alloc(bio, GFP_KERNEL, 1);
709 if (IS_ERR(bip)) {
710 ret = PTR_ERR(bip);
711 goto out_free_meta;
712 }
713
714 bip->bip_iter.bi_size = len;
715 bip->bip_iter.bi_sector = seed;
716 ret = bio_integrity_add_page(bio, virt_to_page(buf), len,
717 offset_in_page(buf));
718 if (ret == len)
719 return buf;
720 ret = -ENOMEM;
721out_free_meta:
722 kfree(buf);
723out:
724 return ERR_PTR(ret);
725}
726
Keith Busch63263d62017-08-29 17:46:04 -0400727static int nvme_submit_user_cmd(struct request_queue *q,
Keith Busch485783c2017-08-29 17:46:03 -0400728 struct nvme_command *cmd, void __user *ubuffer,
729 unsigned bufflen, void __user *meta_buffer, unsigned meta_len,
730 u32 meta_seed, u32 *result, unsigned timeout)
Christoph Hellwig41609822015-11-20 09:00:02 +0100731{
Christoph Hellwig7a5abb42016-06-06 23:20:49 +0200732 bool write = nvme_is_write(cmd);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600733 struct nvme_ns *ns = q->queuedata;
734 struct gendisk *disk = ns ? ns->disk : NULL;
Christoph Hellwig41609822015-11-20 09:00:02 +0100735 struct request *req;
Keith Busch0b7f1f22015-10-23 09:47:28 -0600736 struct bio *bio = NULL;
737 void *meta = NULL;
Christoph Hellwig41609822015-11-20 09:00:02 +0100738 int ret;
739
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200740 req = nvme_alloc_request(q, cmd, 0, NVME_QID_ANY);
Christoph Hellwig41609822015-11-20 09:00:02 +0100741 if (IS_ERR(req))
742 return PTR_ERR(req);
743
744 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
745
746 if (ubuffer && bufflen) {
Christoph Hellwig21d34712015-11-26 09:08:36 +0100747 ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen,
748 GFP_KERNEL);
749 if (ret)
750 goto out;
751 bio = req->bio;
Christoph Hellwig74d46992017-08-23 19:10:32 +0200752 bio->bi_disk = disk;
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400753 if (disk && meta_buffer && meta_len) {
754 meta = nvme_add_user_metadata(bio, meta_buffer, meta_len,
755 meta_seed, write);
756 if (IS_ERR(meta)) {
757 ret = PTR_ERR(meta);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600758 goto out_unmap;
759 }
Keith Busch0b7f1f22015-10-23 09:47:28 -0600760 }
761 }
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400762
Keith Busch0b7f1f22015-10-23 09:47:28 -0600763 blk_execute_rq(req->q, disk, req, 0);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200764 if (nvme_req(req)->flags & NVME_REQ_CANCELLED)
765 ret = -EINTR;
766 else
767 ret = nvme_req(req)->status;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100768 if (result)
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800769 *result = le32_to_cpu(nvme_req(req)->result.u32);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600770 if (meta && !ret && !write) {
771 if (copy_to_user(meta_buffer, meta, meta_len))
772 ret = -EFAULT;
773 }
Keith Busch0b7f1f22015-10-23 09:47:28 -0600774 kfree(meta);
775 out_unmap:
Christoph Hellwig74d46992017-08-23 19:10:32 +0200776 if (bio)
Keith Busch0b7f1f22015-10-23 09:47:28 -0600777 blk_rq_unmap_user(bio);
Christoph Hellwig21d34712015-11-26 09:08:36 +0100778 out:
779 blk_mq_free_request(req);
780 return ret;
781}
782
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200783static void nvme_keep_alive_end_io(struct request *rq, blk_status_t status)
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200784{
785 struct nvme_ctrl *ctrl = rq->end_io_data;
786
787 blk_mq_free_request(rq);
788
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200789 if (status) {
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200790 dev_err(ctrl->device,
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200791 "failed nvme_keep_alive_end_io error=%d\n",
792 status);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200793 return;
794 }
795
796 schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ);
797}
798
799static int nvme_keep_alive(struct nvme_ctrl *ctrl)
800{
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200801 struct request *rq;
802
Roland Dreier0a34e462018-01-11 13:38:15 -0800803 rq = nvme_alloc_request(ctrl->admin_q, &ctrl->ka_cmd, BLK_MQ_REQ_RESERVED,
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200804 NVME_QID_ANY);
805 if (IS_ERR(rq))
806 return PTR_ERR(rq);
807
808 rq->timeout = ctrl->kato * HZ;
809 rq->end_io_data = ctrl;
810
811 blk_execute_rq_nowait(rq->q, NULL, rq, 0, nvme_keep_alive_end_io);
812
813 return 0;
814}
815
816static void nvme_keep_alive_work(struct work_struct *work)
817{
818 struct nvme_ctrl *ctrl = container_of(to_delayed_work(work),
819 struct nvme_ctrl, ka_work);
820
821 if (nvme_keep_alive(ctrl)) {
822 /* allocation failure, reset the controller */
823 dev_err(ctrl->device, "keep-alive failed\n");
Christoph Hellwig39bdc592017-06-12 18:21:19 +0200824 nvme_reset_ctrl(ctrl);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200825 return;
826 }
827}
828
829void nvme_start_keep_alive(struct nvme_ctrl *ctrl)
830{
831 if (unlikely(ctrl->kato == 0))
832 return;
833
834 INIT_DELAYED_WORK(&ctrl->ka_work, nvme_keep_alive_work);
Roland Dreier0a34e462018-01-11 13:38:15 -0800835 memset(&ctrl->ka_cmd, 0, sizeof(ctrl->ka_cmd));
836 ctrl->ka_cmd.common.opcode = nvme_admin_keep_alive;
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200837 schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ);
838}
839EXPORT_SYMBOL_GPL(nvme_start_keep_alive);
840
841void nvme_stop_keep_alive(struct nvme_ctrl *ctrl)
842{
843 if (unlikely(ctrl->kato == 0))
844 return;
845
846 cancel_delayed_work_sync(&ctrl->ka_work);
847}
848EXPORT_SYMBOL_GPL(nvme_stop_keep_alive);
849
Keith Busch3f7f25a92017-06-20 15:09:56 -0400850static int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100851{
852 struct nvme_command c = { };
853 int error;
854
855 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
856 c.identify.opcode = nvme_admin_identify;
Parav Pandit986994a2017-01-26 17:17:28 +0200857 c.identify.cns = NVME_ID_CNS_CTRL;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100858
859 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
860 if (!*id)
861 return -ENOMEM;
862
863 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
864 sizeof(struct nvme_id_ctrl));
865 if (error)
866 kfree(*id);
867 return error;
868}
869
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200870static int nvme_identify_ns_descs(struct nvme_ctrl *ctrl, unsigned nsid,
Christoph Hellwig002fab02017-11-09 13:50:16 +0100871 struct nvme_ns_ids *ids)
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200872{
873 struct nvme_command c = { };
874 int status;
875 void *data;
876 int pos;
877 int len;
878
879 c.identify.opcode = nvme_admin_identify;
880 c.identify.nsid = cpu_to_le32(nsid);
881 c.identify.cns = NVME_ID_CNS_NS_DESC_LIST;
882
883 data = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL);
884 if (!data)
885 return -ENOMEM;
886
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200887 status = nvme_submit_sync_cmd(ctrl->admin_q, &c, data,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200888 NVME_IDENTIFY_DATA_SIZE);
889 if (status)
890 goto free_data;
891
892 for (pos = 0; pos < NVME_IDENTIFY_DATA_SIZE; pos += len) {
893 struct nvme_ns_id_desc *cur = data + pos;
894
895 if (cur->nidl == 0)
896 break;
897
898 switch (cur->nidt) {
899 case NVME_NIDT_EUI64:
900 if (cur->nidl != NVME_NIDT_EUI64_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200901 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200902 "ctrl returned bogus length: %d for NVME_NIDT_EUI64\n",
903 cur->nidl);
904 goto free_data;
905 }
906 len = NVME_NIDT_EUI64_LEN;
Christoph Hellwig002fab02017-11-09 13:50:16 +0100907 memcpy(ids->eui64, data + pos + sizeof(*cur), len);
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200908 break;
909 case NVME_NIDT_NGUID:
910 if (cur->nidl != NVME_NIDT_NGUID_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200911 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200912 "ctrl returned bogus length: %d for NVME_NIDT_NGUID\n",
913 cur->nidl);
914 goto free_data;
915 }
916 len = NVME_NIDT_NGUID_LEN;
Christoph Hellwig002fab02017-11-09 13:50:16 +0100917 memcpy(ids->nguid, data + pos + sizeof(*cur), len);
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200918 break;
919 case NVME_NIDT_UUID:
920 if (cur->nidl != NVME_NIDT_UUID_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200921 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200922 "ctrl returned bogus length: %d for NVME_NIDT_UUID\n",
923 cur->nidl);
924 goto free_data;
925 }
926 len = NVME_NIDT_UUID_LEN;
Christoph Hellwig002fab02017-11-09 13:50:16 +0100927 uuid_copy(&ids->uuid, data + pos + sizeof(*cur));
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200928 break;
929 default:
930 /* Skip unnkown types */
931 len = cur->nidl;
932 break;
933 }
934
935 len += sizeof(*cur);
936 }
937free_data:
938 kfree(data);
939 return status;
940}
941
Keith Busch540c8012015-10-22 15:45:06 -0600942static int nvme_identify_ns_list(struct nvme_ctrl *dev, unsigned nsid, __le32 *ns_list)
943{
944 struct nvme_command c = { };
945
946 c.identify.opcode = nvme_admin_identify;
Parav Pandit986994a2017-01-26 17:17:28 +0200947 c.identify.cns = NVME_ID_CNS_NS_ACTIVE_LIST;
Keith Busch540c8012015-10-22 15:45:06 -0600948 c.identify.nsid = cpu_to_le32(nsid);
Minwoo Im42595eb2018-02-08 22:56:31 +0900949 return nvme_submit_sync_cmd(dev->admin_q, &c, ns_list,
950 NVME_IDENTIFY_DATA_SIZE);
Keith Busch540c8012015-10-22 15:45:06 -0600951}
952
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200953static struct nvme_id_ns *nvme_identify_ns(struct nvme_ctrl *ctrl,
954 unsigned nsid)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100955{
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200956 struct nvme_id_ns *id;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100957 struct nvme_command c = { };
958 int error;
959
960 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
Max Gurtovoy778f0672017-01-26 17:17:27 +0200961 c.identify.opcode = nvme_admin_identify;
962 c.identify.nsid = cpu_to_le32(nsid);
Parav Pandit986994a2017-01-26 17:17:28 +0200963 c.identify.cns = NVME_ID_CNS_NS;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100964
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200965 id = kmalloc(sizeof(*id), GFP_KERNEL);
966 if (!id)
967 return NULL;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100968
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200969 error = nvme_submit_sync_cmd(ctrl->admin_q, &c, id, sizeof(*id));
970 if (error) {
971 dev_warn(ctrl->device, "Identify namespace failed\n");
972 kfree(id);
973 return NULL;
974 }
975
976 return id;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100977}
978
Keith Busch3f7f25a92017-06-20 15:09:56 -0400979static int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11,
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700980 void *buffer, size_t buflen, u32 *result)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100981{
982 struct nvme_command c;
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800983 union nvme_result res;
Christoph Hellwig1cb3cce2016-02-29 15:59:47 +0100984 int ret;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100985
986 memset(&c, 0, sizeof(c));
987 c.features.opcode = nvme_admin_set_features;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100988 c.features.fid = cpu_to_le32(fid);
989 c.features.dword11 = cpu_to_le32(dword11);
990
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800991 ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res,
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700992 buffer, buflen, 0, NVME_QID_ANY, 0, 0);
Andy Lutomirski9b47f77a2016-08-24 03:52:12 -0700993 if (ret >= 0 && result)
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800994 *result = le32_to_cpu(res.u32);
Christoph Hellwig1cb3cce2016-02-29 15:59:47 +0100995 return ret;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100996}
997
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100998int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count)
999{
1000 u32 q_count = (*count - 1) | ((*count - 1) << 16);
1001 u32 result;
1002 int status, nr_io_queues;
1003
Andy Lutomirski1a6fe742016-09-16 11:16:10 -07001004 status = nvme_set_features(ctrl, NVME_FEAT_NUM_QUEUES, q_count, NULL, 0,
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +01001005 &result);
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +02001006 if (status < 0)
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +01001007 return status;
1008
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +02001009 /*
1010 * Degraded controllers might return an error when setting the queue
1011 * count. We still want to be able to bring them online and offer
1012 * access to the admin queue, as that might be only way to fix them up.
1013 */
1014 if (status > 0) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02001015 dev_err(ctrl->device, "Could not set queue count (%d)\n", status);
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +02001016 *count = 0;
1017 } else {
1018 nr_io_queues = min(result & 0xffff, result >> 16) + 1;
1019 *count = min(*count, nr_io_queues);
1020 }
1021
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +01001022 return 0;
1023}
Ming Lin576d55d2016-02-10 10:03:32 -08001024EXPORT_SYMBOL_GPL(nvme_set_queue_count);
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +01001025
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001026static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1027{
1028 struct nvme_user_io io;
1029 struct nvme_command c;
1030 unsigned length, meta_len;
1031 void __user *metadata;
1032
1033 if (copy_from_user(&io, uio, sizeof(io)))
1034 return -EFAULT;
Keith Busch63088ec2016-02-24 09:15:57 -07001035 if (io.flags)
1036 return -EINVAL;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001037
1038 switch (io.opcode) {
1039 case nvme_cmd_write:
1040 case nvme_cmd_read:
1041 case nvme_cmd_compare:
1042 break;
1043 default:
1044 return -EINVAL;
1045 }
1046
1047 length = (io.nblocks + 1) << ns->lba_shift;
1048 meta_len = (io.nblocks + 1) * ns->ms;
1049 metadata = (void __user *)(uintptr_t)io.metadata;
1050
1051 if (ns->ext) {
1052 length += meta_len;
1053 meta_len = 0;
1054 } else if (meta_len) {
1055 if ((io.metadata & 3) || !io.metadata)
1056 return -EINVAL;
1057 }
1058
1059 memset(&c, 0, sizeof(c));
1060 c.rw.opcode = io.opcode;
1061 c.rw.flags = io.flags;
Christoph Hellwiged754e52017-11-09 13:50:43 +01001062 c.rw.nsid = cpu_to_le32(ns->head->ns_id);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001063 c.rw.slba = cpu_to_le64(io.slba);
1064 c.rw.length = cpu_to_le16(io.nblocks);
1065 c.rw.control = cpu_to_le16(io.control);
1066 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1067 c.rw.reftag = cpu_to_le32(io.reftag);
1068 c.rw.apptag = cpu_to_le16(io.apptag);
1069 c.rw.appmask = cpu_to_le16(io.appmask);
1070
Keith Busch63263d62017-08-29 17:46:04 -04001071 return nvme_submit_user_cmd(ns->queue, &c,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001072 (void __user *)(uintptr_t)io.addr, length,
1073 metadata, meta_len, io.slba, NULL, 0);
1074}
1075
Keith Busch84fef622017-11-07 10:28:32 -07001076static u32 nvme_known_admin_effects(u8 opcode)
1077{
1078 switch (opcode) {
1079 case nvme_admin_format_nvm:
1080 return NVME_CMD_EFFECTS_CSUPP | NVME_CMD_EFFECTS_LBCC |
1081 NVME_CMD_EFFECTS_CSE_MASK;
1082 case nvme_admin_sanitize_nvm:
1083 return NVME_CMD_EFFECTS_CSE_MASK;
1084 default:
1085 break;
1086 }
1087 return 0;
1088}
1089
1090static u32 nvme_passthru_start(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
1091 u8 opcode)
1092{
1093 u32 effects = 0;
1094
1095 if (ns) {
1096 if (ctrl->effects)
1097 effects = le32_to_cpu(ctrl->effects->iocs[opcode]);
1098 if (effects & ~NVME_CMD_EFFECTS_CSUPP)
1099 dev_warn(ctrl->device,
1100 "IO command:%02x has unhandled effects:%08x\n",
1101 opcode, effects);
1102 return 0;
1103 }
1104
1105 if (ctrl->effects)
1106 effects = le32_to_cpu(ctrl->effects->iocs[opcode]);
1107 else
1108 effects = nvme_known_admin_effects(opcode);
1109
1110 /*
1111 * For simplicity, IO to all namespaces is quiesced even if the command
1112 * effects say only one namespace is affected.
1113 */
1114 if (effects & (NVME_CMD_EFFECTS_LBCC | NVME_CMD_EFFECTS_CSE_MASK)) {
1115 nvme_start_freeze(ctrl);
1116 nvme_wait_freeze(ctrl);
1117 }
1118 return effects;
1119}
1120
1121static void nvme_update_formats(struct nvme_ctrl *ctrl)
1122{
Jianchao Wang3fd176b2018-02-12 20:54:45 +08001123 struct nvme_ns *ns, *next;
1124 LIST_HEAD(rm_list);
Keith Busch84fef622017-11-07 10:28:32 -07001125
Jianchao Wang765cc032018-02-12 20:54:46 +08001126 down_write(&ctrl->namespaces_rwsem);
Keith Busch84fef622017-11-07 10:28:32 -07001127 list_for_each_entry(ns, &ctrl->namespaces, list) {
Jianchao Wang3fd176b2018-02-12 20:54:45 +08001128 if (ns->disk && nvme_revalidate_disk(ns->disk)) {
1129 list_move_tail(&ns->list, &rm_list);
1130 }
Keith Busch84fef622017-11-07 10:28:32 -07001131 }
Jianchao Wang765cc032018-02-12 20:54:46 +08001132 up_write(&ctrl->namespaces_rwsem);
Jianchao Wang3fd176b2018-02-12 20:54:45 +08001133
1134 list_for_each_entry_safe(ns, next, &rm_list, list)
1135 nvme_ns_remove(ns);
Keith Busch84fef622017-11-07 10:28:32 -07001136}
1137
1138static void nvme_passthru_end(struct nvme_ctrl *ctrl, u32 effects)
1139{
1140 /*
1141 * Revalidate LBA changes prior to unfreezing. This is necessary to
1142 * prevent memory corruption if a logical block size was changed by
1143 * this command.
1144 */
1145 if (effects & NVME_CMD_EFFECTS_LBCC)
1146 nvme_update_formats(ctrl);
1147 if (effects & (NVME_CMD_EFFECTS_LBCC | NVME_CMD_EFFECTS_CSE_MASK))
1148 nvme_unfreeze(ctrl);
1149 if (effects & NVME_CMD_EFFECTS_CCC)
1150 nvme_init_identify(ctrl);
1151 if (effects & (NVME_CMD_EFFECTS_NIC | NVME_CMD_EFFECTS_NCC))
1152 nvme_queue_scan(ctrl);
1153}
1154
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001155static int nvme_user_cmd(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001156 struct nvme_passthru_cmd __user *ucmd)
1157{
1158 struct nvme_passthru_cmd cmd;
1159 struct nvme_command c;
1160 unsigned timeout = 0;
Keith Busch84fef622017-11-07 10:28:32 -07001161 u32 effects;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001162 int status;
1163
1164 if (!capable(CAP_SYS_ADMIN))
1165 return -EACCES;
1166 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
1167 return -EFAULT;
Keith Busch63088ec2016-02-24 09:15:57 -07001168 if (cmd.flags)
1169 return -EINVAL;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001170
1171 memset(&c, 0, sizeof(c));
1172 c.common.opcode = cmd.opcode;
1173 c.common.flags = cmd.flags;
1174 c.common.nsid = cpu_to_le32(cmd.nsid);
1175 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1176 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1177 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1178 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1179 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1180 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1181 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1182 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1183
1184 if (cmd.timeout_ms)
1185 timeout = msecs_to_jiffies(cmd.timeout_ms);
1186
Keith Busch84fef622017-11-07 10:28:32 -07001187 effects = nvme_passthru_start(ctrl, ns, cmd.opcode);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001188 status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c,
Arnd Bergmannd1ea7be2015-12-08 16:22:17 +01001189 (void __user *)(uintptr_t)cmd.addr, cmd.data_len,
Keith Busch63263d62017-08-29 17:46:04 -04001190 (void __user *)(uintptr_t)cmd.metadata, cmd.metadata,
1191 0, &cmd.result, timeout);
Keith Busch84fef622017-11-07 10:28:32 -07001192 nvme_passthru_end(ctrl, effects);
1193
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001194 if (status >= 0) {
1195 if (put_user(cmd.result, &ucmd->result))
1196 return -EFAULT;
1197 }
1198
1199 return status;
1200}
1201
Christoph Hellwig32acab32017-11-02 12:59:30 +01001202/*
1203 * Issue ioctl requests on the first available path. Note that unlike normal
1204 * block layer requests we will not retry failed request on another controller.
1205 */
1206static struct nvme_ns *nvme_get_ns_from_disk(struct gendisk *disk,
1207 struct nvme_ns_head **head, int *srcu_idx)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001208{
Christoph Hellwig32acab32017-11-02 12:59:30 +01001209#ifdef CONFIG_NVME_MULTIPATH
1210 if (disk->fops == &nvme_ns_head_ops) {
1211 *head = disk->private_data;
1212 *srcu_idx = srcu_read_lock(&(*head)->srcu);
1213 return nvme_find_path(*head);
1214 }
1215#endif
1216 *head = NULL;
1217 *srcu_idx = -1;
1218 return disk->private_data;
1219}
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001220
Christoph Hellwig32acab32017-11-02 12:59:30 +01001221static void nvme_put_ns_from_disk(struct nvme_ns_head *head, int idx)
1222{
1223 if (head)
1224 srcu_read_unlock(&head->srcu, idx);
1225}
1226
1227static int nvme_ns_ioctl(struct nvme_ns *ns, unsigned cmd, unsigned long arg)
1228{
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001229 switch (cmd) {
1230 case NVME_IOCTL_ID:
1231 force_successful_syscall_return();
Christoph Hellwiged754e52017-11-09 13:50:43 +01001232 return ns->head->ns_id;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001233 case NVME_IOCTL_ADMIN_CMD:
1234 return nvme_user_cmd(ns->ctrl, NULL, (void __user *)arg);
1235 case NVME_IOCTL_IO_CMD:
1236 return nvme_user_cmd(ns->ctrl, ns, (void __user *)arg);
1237 case NVME_IOCTL_SUBMIT_IO:
1238 return nvme_submit_io(ns, (void __user *)arg);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001239 default:
Matias Bjørling84d4add2017-01-31 13:17:16 +01001240#ifdef CONFIG_NVM
1241 if (ns->ndev)
1242 return nvme_nvm_ioctl(ns, cmd, arg);
1243#endif
Scott Bauera98e58e52017-02-03 12:50:32 -07001244 if (is_sed_ioctl(cmd))
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001245 return sed_ioctl(ns->ctrl->opal_dev, cmd,
Scott Bauere225c202017-02-14 17:29:36 -07001246 (void __user *) arg);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001247 return -ENOTTY;
1248 }
1249}
1250
Christoph Hellwig32acab32017-11-02 12:59:30 +01001251static int nvme_ioctl(struct block_device *bdev, fmode_t mode,
1252 unsigned int cmd, unsigned long arg)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001253{
Christoph Hellwig32acab32017-11-02 12:59:30 +01001254 struct nvme_ns_head *head = NULL;
1255 struct nvme_ns *ns;
1256 int srcu_idx, ret;
1257
1258 ns = nvme_get_ns_from_disk(bdev->bd_disk, &head, &srcu_idx);
1259 if (unlikely(!ns))
1260 ret = -EWOULDBLOCK;
1261 else
1262 ret = nvme_ns_ioctl(ns, cmd, arg);
1263 nvme_put_ns_from_disk(head, srcu_idx);
1264 return ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001265}
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001266
1267static int nvme_open(struct block_device *bdev, fmode_t mode)
1268{
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001269 struct nvme_ns *ns = bdev->bd_disk->private_data;
1270
Christoph Hellwig32acab32017-11-02 12:59:30 +01001271#ifdef CONFIG_NVME_MULTIPATH
1272 /* should never be called due to GENHD_FL_HIDDEN */
1273 if (WARN_ON_ONCE(ns->head->disk))
Nitzan Carmi85088c42018-01-04 17:56:13 +02001274 goto fail;
Christoph Hellwig32acab32017-11-02 12:59:30 +01001275#endif
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001276 if (!kref_get_unless_zero(&ns->kref))
Nitzan Carmi85088c42018-01-04 17:56:13 +02001277 goto fail;
1278 if (!try_module_get(ns->ctrl->ops->module))
1279 goto fail_put_ns;
1280
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001281 return 0;
Nitzan Carmi85088c42018-01-04 17:56:13 +02001282
1283fail_put_ns:
1284 nvme_put_ns(ns);
1285fail:
1286 return -ENXIO;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001287}
1288
1289static void nvme_release(struct gendisk *disk, fmode_t mode)
1290{
Nitzan Carmi85088c42018-01-04 17:56:13 +02001291 struct nvme_ns *ns = disk->private_data;
1292
1293 module_put(ns->ctrl->ops->module);
1294 nvme_put_ns(ns);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001295}
1296
1297static int nvme_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1298{
1299 /* some standard values */
1300 geo->heads = 1 << 6;
1301 geo->sectors = 1 << 5;
1302 geo->cylinders = get_capacity(bdev->bd_disk) >> 11;
1303 return 0;
1304}
1305
1306#ifdef CONFIG_BLK_DEV_INTEGRITY
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001307static void nvme_init_integrity(struct gendisk *disk, u16 ms, u8 pi_type)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001308{
1309 struct blk_integrity integrity;
1310
Jay Freyenseefa9a89f2016-07-20 21:26:16 -06001311 memset(&integrity, 0, sizeof(integrity));
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001312 switch (pi_type) {
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001313 case NVME_NS_DPS_PI_TYPE3:
1314 integrity.profile = &t10_pi_type3_crc;
Nicholas Bellingerba36c212016-04-09 03:04:42 +00001315 integrity.tag_size = sizeof(u16) + sizeof(u32);
1316 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001317 break;
1318 case NVME_NS_DPS_PI_TYPE1:
1319 case NVME_NS_DPS_PI_TYPE2:
1320 integrity.profile = &t10_pi_type1_crc;
Nicholas Bellingerba36c212016-04-09 03:04:42 +00001321 integrity.tag_size = sizeof(u16);
1322 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001323 break;
1324 default:
1325 integrity.profile = NULL;
1326 break;
1327 }
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001328 integrity.tuple_size = ms;
1329 blk_integrity_register(disk, &integrity);
1330 blk_queue_max_integrity_segments(disk->queue, 1);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001331}
1332#else
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001333static void nvme_init_integrity(struct gendisk *disk, u16 ms, u8 pi_type)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001334{
1335}
1336#endif /* CONFIG_BLK_DEV_INTEGRITY */
1337
Scott Bauer6b8190d2017-06-15 10:44:30 -06001338static void nvme_set_chunk_size(struct nvme_ns *ns)
1339{
1340 u32 chunk_size = (((u32)ns->noiob) << (ns->lba_shift - 9));
1341 blk_queue_chunk_sectors(ns->queue, rounddown_pow_of_two(chunk_size));
1342}
1343
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001344static void nvme_config_discard(struct nvme_ctrl *ctrl,
1345 unsigned stream_alignment, struct request_queue *queue)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001346{
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001347 u32 size = queue_logical_block_size(queue);
1348
1349 if (stream_alignment)
1350 size *= stream_alignment;
Keith Busch08095e72016-03-04 13:15:17 -07001351
Christoph Hellwigb35ba012017-02-08 14:46:50 +01001352 BUILD_BUG_ON(PAGE_SIZE / sizeof(struct nvme_dsm_range) <
1353 NVME_DSM_MAX_RANGES);
1354
David Disseldorpb224f612017-11-24 16:30:53 +01001355 queue->limits.discard_alignment = 0;
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001356 queue->limits.discard_granularity = size;
Jens Axboef5d11842017-06-27 12:03:06 -06001357
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001358 blk_queue_max_discard_sectors(queue, UINT_MAX);
1359 blk_queue_max_discard_segments(queue, NVME_DSM_MAX_RANGES);
Bart Van Assche8b904b52018-03-07 17:10:10 -08001360 blk_queue_flag_set(QUEUE_FLAG_DISCARD, queue);
Christoph Hellwige850fd12017-04-05 19:21:13 +02001361
1362 if (ctrl->quirks & NVME_QUIRK_DEALLOCATE_ZEROES)
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001363 blk_queue_max_write_zeroes_sectors(queue, UINT_MAX);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001364}
1365
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001366static void nvme_report_ns_ids(struct nvme_ctrl *ctrl, unsigned int nsid,
Christoph Hellwig002fab02017-11-09 13:50:16 +01001367 struct nvme_id_ns *id, struct nvme_ns_ids *ids)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001368{
Christoph Hellwig002fab02017-11-09 13:50:16 +01001369 memset(ids, 0, sizeof(*ids));
1370
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001371 if (ctrl->vs >= NVME_VS(1, 1, 0))
Christoph Hellwig002fab02017-11-09 13:50:16 +01001372 memcpy(ids->eui64, id->eui64, sizeof(id->eui64));
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001373 if (ctrl->vs >= NVME_VS(1, 2, 0))
Christoph Hellwig002fab02017-11-09 13:50:16 +01001374 memcpy(ids->nguid, id->nguid, sizeof(id->nguid));
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001375 if (ctrl->vs >= NVME_VS(1, 3, 0)) {
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +02001376 /* Don't treat error as fatal we potentially
1377 * already have a NGUID or EUI-64
1378 */
Christoph Hellwig002fab02017-11-09 13:50:16 +01001379 if (nvme_identify_ns_descs(ctrl, nsid, ids))
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001380 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +02001381 "%s: Identify Descriptors failed\n", __func__);
1382 }
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001383}
1384
Christoph Hellwiged754e52017-11-09 13:50:43 +01001385static bool nvme_ns_ids_valid(struct nvme_ns_ids *ids)
1386{
1387 return !uuid_is_null(&ids->uuid) ||
1388 memchr_inv(ids->nguid, 0, sizeof(ids->nguid)) ||
1389 memchr_inv(ids->eui64, 0, sizeof(ids->eui64));
1390}
1391
Christoph Hellwig002fab02017-11-09 13:50:16 +01001392static bool nvme_ns_ids_equal(struct nvme_ns_ids *a, struct nvme_ns_ids *b)
1393{
1394 return uuid_equal(&a->uuid, &b->uuid) &&
1395 memcmp(&a->nguid, &b->nguid, sizeof(a->nguid)) == 0 &&
1396 memcmp(&a->eui64, &b->eui64, sizeof(a->eui64)) == 0;
1397}
1398
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001399static void nvme_update_disk_info(struct gendisk *disk,
1400 struct nvme_ns *ns, struct nvme_id_ns *id)
1401{
1402 sector_t capacity = le64_to_cpup(&id->nsze) << (ns->lba_shift - 9);
Jeff Liencee160f2017-12-19 13:24:15 -06001403 unsigned short bs = 1 << ns->lba_shift;
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001404 unsigned stream_alignment = 0;
1405
1406 if (ns->ctrl->nr_streams && ns->sws && ns->sgs)
1407 stream_alignment = ns->sws * ns->sgs;
1408
1409 blk_mq_freeze_queue(disk->queue);
1410 blk_integrity_unregister(disk);
1411
Jeff Liencee160f2017-12-19 13:24:15 -06001412 blk_queue_logical_block_size(disk->queue, bs);
1413 blk_queue_physical_block_size(disk->queue, bs);
1414 blk_queue_io_min(disk->queue, bs);
1415
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001416 if (ns->ms && !ns->ext &&
1417 (ns->ctrl->ops->flags & NVME_F_METADATA_SUPPORTED))
1418 nvme_init_integrity(disk, ns->ms, ns->pi_type);
Christoph Hellwig715ea9e2017-11-07 17:27:34 +01001419 if (ns->ms && !nvme_ns_has_pi(ns) && !blk_get_integrity(disk))
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001420 capacity = 0;
1421 set_capacity(disk, capacity);
1422
1423 if (ns->ctrl->oncs & NVME_CTRL_ONCS_DSM)
1424 nvme_config_discard(ns->ctrl, stream_alignment, disk->queue);
1425 blk_mq_unfreeze_queue(disk->queue);
1426}
1427
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001428static void __nvme_revalidate_disk(struct gendisk *disk, struct nvme_id_ns *id)
1429{
1430 struct nvme_ns *ns = disk->private_data;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001431
1432 /*
1433 * If identify namespace failed, use default 512 byte block size so
1434 * block layer can use before failing read/write for 0 capacity.
1435 */
Christoph Hellwigc81bfba2017-05-20 15:14:45 +02001436 ns->lba_shift = id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ds;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001437 if (ns->lba_shift == 0)
1438 ns->lba_shift = 9;
Scott Bauer6b8190d2017-06-15 10:44:30 -06001439 ns->noiob = le16_to_cpu(id->noiob);
Christoph Hellwigb5be3b32017-11-02 21:28:52 +03001440 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
1441 ns->ms = le16_to_cpu(id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ms);
1442 /* the PI implementation requires metadata equal t10 pi tuple size */
1443 if (ns->ms == sizeof(struct t10_pi_tuple))
1444 ns->pi_type = id->dps & NVME_NS_DPS_PI_MASK;
1445 else
1446 ns->pi_type = 0;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001447
Scott Bauer6b8190d2017-06-15 10:44:30 -06001448 if (ns->noiob)
1449 nvme_set_chunk_size(ns);
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001450 nvme_update_disk_info(disk, ns, id);
Christoph Hellwig32acab32017-11-02 12:59:30 +01001451#ifdef CONFIG_NVME_MULTIPATH
1452 if (ns->head->disk)
1453 nvme_update_disk_info(ns->head->disk, ns, id);
1454#endif
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001455}
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001456
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001457static int nvme_revalidate_disk(struct gendisk *disk)
1458{
1459 struct nvme_ns *ns = disk->private_data;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001460 struct nvme_ctrl *ctrl = ns->ctrl;
1461 struct nvme_id_ns *id;
Christoph Hellwig002fab02017-11-09 13:50:16 +01001462 struct nvme_ns_ids ids;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001463 int ret = 0;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001464
1465 if (test_bit(NVME_NS_DEAD, &ns->flags)) {
1466 set_capacity(disk, 0);
1467 return -ENODEV;
1468 }
1469
Christoph Hellwiged754e52017-11-09 13:50:43 +01001470 id = nvme_identify_ns(ctrl, ns->head->ns_id);
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001471 if (!id)
1472 return -ENODEV;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001473
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001474 if (id->ncap == 0) {
1475 ret = -ENODEV;
1476 goto out;
1477 }
1478
Keith Busch5e0fab52017-10-27 13:51:22 -06001479 __nvme_revalidate_disk(disk, id);
Christoph Hellwiged754e52017-11-09 13:50:43 +01001480 nvme_report_ns_ids(ctrl, ns->head->ns_id, id, &ids);
1481 if (!nvme_ns_ids_equal(&ns->head->ids, &ids)) {
Christoph Hellwig1d5df6a2017-08-17 14:10:00 +02001482 dev_err(ctrl->device,
Christoph Hellwiged754e52017-11-09 13:50:43 +01001483 "identifiers changed for nsid %d\n", ns->head->ns_id);
Christoph Hellwig1d5df6a2017-08-17 14:10:00 +02001484 ret = -ENODEV;
1485 }
1486
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001487out:
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001488 kfree(id);
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001489 return ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001490}
1491
1492static char nvme_pr_type(enum pr_type type)
1493{
1494 switch (type) {
1495 case PR_WRITE_EXCLUSIVE:
1496 return 1;
1497 case PR_EXCLUSIVE_ACCESS:
1498 return 2;
1499 case PR_WRITE_EXCLUSIVE_REG_ONLY:
1500 return 3;
1501 case PR_EXCLUSIVE_ACCESS_REG_ONLY:
1502 return 4;
1503 case PR_WRITE_EXCLUSIVE_ALL_REGS:
1504 return 5;
1505 case PR_EXCLUSIVE_ACCESS_ALL_REGS:
1506 return 6;
1507 default:
1508 return 0;
1509 }
1510};
1511
1512static int nvme_pr_command(struct block_device *bdev, u32 cdw10,
1513 u64 key, u64 sa_key, u8 op)
1514{
Christoph Hellwig32acab32017-11-02 12:59:30 +01001515 struct nvme_ns_head *head = NULL;
1516 struct nvme_ns *ns;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001517 struct nvme_command c;
Christoph Hellwig32acab32017-11-02 12:59:30 +01001518 int srcu_idx, ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001519 u8 data[16] = { 0, };
1520
Keith Buschb0d61d52017-11-16 13:36:49 -07001521 ns = nvme_get_ns_from_disk(bdev->bd_disk, &head, &srcu_idx);
1522 if (unlikely(!ns))
1523 return -EWOULDBLOCK;
1524
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001525 put_unaligned_le64(key, &data[0]);
1526 put_unaligned_le64(sa_key, &data[8]);
1527
1528 memset(&c, 0, sizeof(c));
1529 c.common.opcode = op;
Keith Buschb0d61d52017-11-16 13:36:49 -07001530 c.common.nsid = cpu_to_le32(ns->head->ns_id);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001531 c.common.cdw10[0] = cpu_to_le32(cdw10);
1532
Keith Buschb0d61d52017-11-16 13:36:49 -07001533 ret = nvme_submit_sync_cmd(ns->queue, &c, data, 16);
Christoph Hellwig32acab32017-11-02 12:59:30 +01001534 nvme_put_ns_from_disk(head, srcu_idx);
1535 return ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001536}
1537
1538static int nvme_pr_register(struct block_device *bdev, u64 old,
1539 u64 new, unsigned flags)
1540{
1541 u32 cdw10;
1542
1543 if (flags & ~PR_FL_IGNORE_KEY)
1544 return -EOPNOTSUPP;
1545
1546 cdw10 = old ? 2 : 0;
1547 cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0;
1548 cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */
1549 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register);
1550}
1551
1552static int nvme_pr_reserve(struct block_device *bdev, u64 key,
1553 enum pr_type type, unsigned flags)
1554{
1555 u32 cdw10;
1556
1557 if (flags & ~PR_FL_IGNORE_KEY)
1558 return -EOPNOTSUPP;
1559
1560 cdw10 = nvme_pr_type(type) << 8;
1561 cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0);
1562 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire);
1563}
1564
1565static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new,
1566 enum pr_type type, bool abort)
1567{
1568 u32 cdw10 = nvme_pr_type(type) << 8 | abort ? 2 : 1;
1569 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire);
1570}
1571
1572static int nvme_pr_clear(struct block_device *bdev, u64 key)
1573{
Dan Carpenter8c0b3912015-12-09 13:24:06 +03001574 u32 cdw10 = 1 | (key ? 1 << 3 : 0);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001575 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register);
1576}
1577
1578static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
1579{
1580 u32 cdw10 = nvme_pr_type(type) << 8 | key ? 1 << 3 : 0;
1581 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release);
1582}
1583
1584static const struct pr_ops nvme_pr_ops = {
1585 .pr_register = nvme_pr_register,
1586 .pr_reserve = nvme_pr_reserve,
1587 .pr_release = nvme_pr_release,
1588 .pr_preempt = nvme_pr_preempt,
1589 .pr_clear = nvme_pr_clear,
1590};
1591
Scott Bauera98e58e52017-02-03 12:50:32 -07001592#ifdef CONFIG_BLK_SED_OPAL
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001593int nvme_sec_submit(void *data, u16 spsp, u8 secp, void *buffer, size_t len,
1594 bool send)
Scott Bauera98e58e52017-02-03 12:50:32 -07001595{
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001596 struct nvme_ctrl *ctrl = data;
Scott Bauera98e58e52017-02-03 12:50:32 -07001597 struct nvme_command cmd;
Scott Bauera98e58e52017-02-03 12:50:32 -07001598
1599 memset(&cmd, 0, sizeof(cmd));
1600 if (send)
1601 cmd.common.opcode = nvme_admin_security_send;
1602 else
1603 cmd.common.opcode = nvme_admin_security_recv;
Scott Bauera98e58e52017-02-03 12:50:32 -07001604 cmd.common.nsid = 0;
1605 cmd.common.cdw10[0] = cpu_to_le32(((u32)secp) << 24 | ((u32)spsp) << 8);
1606 cmd.common.cdw10[1] = cpu_to_le32(len);
1607
1608 return __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, NULL, buffer, len,
1609 ADMIN_TIMEOUT, NVME_QID_ANY, 1, 0);
1610}
1611EXPORT_SYMBOL_GPL(nvme_sec_submit);
1612#endif /* CONFIG_BLK_SED_OPAL */
1613
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01001614static const struct block_device_operations nvme_fops = {
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001615 .owner = THIS_MODULE,
1616 .ioctl = nvme_ioctl,
Christoph Hellwig761f2e12017-10-05 18:46:46 +02001617 .compat_ioctl = nvme_ioctl,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001618 .open = nvme_open,
1619 .release = nvme_release,
1620 .getgeo = nvme_getgeo,
1621 .revalidate_disk= nvme_revalidate_disk,
1622 .pr_ops = &nvme_pr_ops,
1623};
1624
Christoph Hellwig32acab32017-11-02 12:59:30 +01001625#ifdef CONFIG_NVME_MULTIPATH
1626static int nvme_ns_head_open(struct block_device *bdev, fmode_t mode)
1627{
1628 struct nvme_ns_head *head = bdev->bd_disk->private_data;
1629
1630 if (!kref_get_unless_zero(&head->ref))
1631 return -ENXIO;
1632 return 0;
1633}
1634
1635static void nvme_ns_head_release(struct gendisk *disk, fmode_t mode)
1636{
1637 nvme_put_ns_head(disk->private_data);
1638}
1639
1640const struct block_device_operations nvme_ns_head_ops = {
1641 .owner = THIS_MODULE,
1642 .open = nvme_ns_head_open,
1643 .release = nvme_ns_head_release,
1644 .ioctl = nvme_ioctl,
1645 .compat_ioctl = nvme_ioctl,
1646 .getgeo = nvme_getgeo,
1647 .pr_ops = &nvme_pr_ops,
1648};
1649#endif /* CONFIG_NVME_MULTIPATH */
1650
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001651static int nvme_wait_ready(struct nvme_ctrl *ctrl, u64 cap, bool enabled)
1652{
1653 unsigned long timeout =
1654 ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1655 u32 csts, bit = enabled ? NVME_CSTS_RDY : 0;
1656 int ret;
1657
1658 while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
Keith Busch0df1e4f2016-10-11 13:31:58 -04001659 if (csts == ~0)
1660 return -ENODEV;
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001661 if ((csts & NVME_CSTS_RDY) == bit)
1662 break;
1663
1664 msleep(100);
1665 if (fatal_signal_pending(current))
1666 return -EINTR;
1667 if (time_after(jiffies, timeout)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001668 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001669 "Device not ready; aborting %s\n", enabled ?
1670 "initialisation" : "reset");
1671 return -ENODEV;
1672 }
1673 }
1674
1675 return ret;
1676}
1677
1678/*
1679 * If the device has been passed off to us in an enabled state, just clear
1680 * the enabled bit. The spec says we should set the 'shutdown notification
1681 * bits', but doing so may cause the device to complete commands to the
1682 * admin queue ... and we don't know what memory that might be pointing at!
1683 */
1684int nvme_disable_ctrl(struct nvme_ctrl *ctrl, u64 cap)
1685{
1686 int ret;
1687
1688 ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
1689 ctrl->ctrl_config &= ~NVME_CC_ENABLE;
1690
1691 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1692 if (ret)
1693 return ret;
Guilherme G. Piccoli54adc012016-06-14 18:22:41 -03001694
Guilherme G. Piccolib5a10c52016-12-28 22:13:15 -02001695 if (ctrl->quirks & NVME_QUIRK_DELAY_BEFORE_CHK_RDY)
Guilherme G. Piccoli54adc012016-06-14 18:22:41 -03001696 msleep(NVME_QUIRK_DELAY_AMOUNT);
1697
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001698 return nvme_wait_ready(ctrl, cap, false);
1699}
Ming Lin576d55d2016-02-10 10:03:32 -08001700EXPORT_SYMBOL_GPL(nvme_disable_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001701
1702int nvme_enable_ctrl(struct nvme_ctrl *ctrl, u64 cap)
1703{
1704 /*
1705 * Default to a 4K page size, with the intention to update this
1706 * path in the future to accomodate architectures with differing
1707 * kernel and IO page sizes.
1708 */
1709 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12, page_shift = 12;
1710 int ret;
1711
1712 if (page_shift < dev_page_min) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001713 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001714 "Minimum device page size %u too large for host (%u)\n",
1715 1 << dev_page_min, 1 << page_shift);
1716 return -ENODEV;
1717 }
1718
1719 ctrl->page_size = 1 << page_shift;
1720
1721 ctrl->ctrl_config = NVME_CC_CSS_NVM;
1722 ctrl->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Max Gurtovoy60b43f62017-08-13 19:21:07 +03001723 ctrl->ctrl_config |= NVME_CC_AMS_RR | NVME_CC_SHN_NONE;
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001724 ctrl->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
1725 ctrl->ctrl_config |= NVME_CC_ENABLE;
1726
1727 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1728 if (ret)
1729 return ret;
1730 return nvme_wait_ready(ctrl, cap, true);
1731}
Ming Lin576d55d2016-02-10 10:03:32 -08001732EXPORT_SYMBOL_GPL(nvme_enable_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001733
1734int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl)
1735{
Martin K. Petersen07fbd322017-08-25 19:14:50 -04001736 unsigned long timeout = jiffies + (ctrl->shutdown_timeout * HZ);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001737 u32 csts;
1738 int ret;
1739
1740 ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
1741 ctrl->ctrl_config |= NVME_CC_SHN_NORMAL;
1742
1743 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1744 if (ret)
1745 return ret;
1746
1747 while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
1748 if ((csts & NVME_CSTS_SHST_MASK) == NVME_CSTS_SHST_CMPLT)
1749 break;
1750
1751 msleep(100);
1752 if (fatal_signal_pending(current))
1753 return -EINTR;
1754 if (time_after(jiffies, timeout)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001755 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001756 "Device shutdown incomplete; abort shutdown\n");
1757 return -ENODEV;
1758 }
1759 }
1760
1761 return ret;
1762}
Ming Lin576d55d2016-02-10 10:03:32 -08001763EXPORT_SYMBOL_GPL(nvme_shutdown_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001764
Christoph Hellwigda358252016-03-02 18:07:11 +01001765static void nvme_set_queue_limits(struct nvme_ctrl *ctrl,
1766 struct request_queue *q)
1767{
Jens Axboe7c88cb02016-04-12 15:43:09 -06001768 bool vwc = false;
1769
Christoph Hellwigda358252016-03-02 18:07:11 +01001770 if (ctrl->max_hw_sectors) {
Christoph Hellwig45686b62016-03-02 18:07:12 +01001771 u32 max_segments =
1772 (ctrl->max_hw_sectors / (ctrl->page_size >> 9)) + 1;
1773
Christoph Hellwigda358252016-03-02 18:07:11 +01001774 blk_queue_max_hw_sectors(q, ctrl->max_hw_sectors);
Christoph Hellwig45686b62016-03-02 18:07:12 +01001775 blk_queue_max_segments(q, min_t(u32, max_segments, USHRT_MAX));
Christoph Hellwigda358252016-03-02 18:07:11 +01001776 }
Keith Busch249159c2017-12-14 11:20:14 -07001777 if ((ctrl->quirks & NVME_QUIRK_STRIPE_SIZE) &&
1778 is_power_of_2(ctrl->max_hw_sectors))
Keith Busche6282ae2016-12-19 11:37:50 -05001779 blk_queue_chunk_sectors(q, ctrl->max_hw_sectors);
Christoph Hellwigda358252016-03-02 18:07:11 +01001780 blk_queue_virt_boundary(q, ctrl->page_size - 1);
Jens Axboe7c88cb02016-04-12 15:43:09 -06001781 if (ctrl->vwc & NVME_CTRL_VWC_PRESENT)
1782 vwc = true;
1783 blk_queue_write_cache(q, vwc, vwc);
Christoph Hellwigda358252016-03-02 18:07:11 +01001784}
1785
Jon Derrickdbf86b32017-08-16 09:51:29 +02001786static int nvme_configure_timestamp(struct nvme_ctrl *ctrl)
1787{
1788 __le64 ts;
1789 int ret;
1790
1791 if (!(ctrl->oncs & NVME_CTRL_ONCS_TIMESTAMP))
1792 return 0;
1793
1794 ts = cpu_to_le64(ktime_to_ms(ktime_get_real()));
1795 ret = nvme_set_features(ctrl, NVME_FEAT_TIMESTAMP, 0, &ts, sizeof(ts),
1796 NULL);
1797 if (ret)
1798 dev_warn_once(ctrl->device,
1799 "could not set timestamp (%d)\n", ret);
1800 return ret;
1801}
1802
Keith Busch634b8322017-08-10 11:23:31 +02001803static int nvme_configure_apst(struct nvme_ctrl *ctrl)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001804{
1805 /*
1806 * APST (Autonomous Power State Transition) lets us program a
1807 * table of power state transitions that the controller will
1808 * perform automatically. We configure it with a simple
1809 * heuristic: we are willing to spend at most 2% of the time
1810 * transitioning between power states. Therefore, when running
1811 * in any given state, we will enter the next lower-power
Andy Lutomirski76e4ad02017-04-21 16:19:22 -07001812 * non-operational state after waiting 50 * (enlat + exlat)
Kai-Heng Fengda875912017-06-07 15:25:42 +08001813 * microseconds, as long as that state's exit latency is under
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001814 * the requested maximum latency.
1815 *
1816 * We will not autonomously enter any non-operational state for
1817 * which the total latency exceeds ps_max_latency_us. Users
1818 * can set ps_max_latency_us to zero to turn off APST.
1819 */
1820
1821 unsigned apste;
1822 struct nvme_feat_auto_pst *table;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001823 u64 max_lat_us = 0;
1824 int max_ps = -1;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001825 int ret;
1826
1827 /*
1828 * If APST isn't supported or if we haven't been initialized yet,
1829 * then don't do anything.
1830 */
1831 if (!ctrl->apsta)
Keith Busch634b8322017-08-10 11:23:31 +02001832 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001833
1834 if (ctrl->npss > 31) {
1835 dev_warn(ctrl->device, "NPSS is invalid; not using APST\n");
Keith Busch634b8322017-08-10 11:23:31 +02001836 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001837 }
1838
1839 table = kzalloc(sizeof(*table), GFP_KERNEL);
1840 if (!table)
Keith Busch634b8322017-08-10 11:23:31 +02001841 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001842
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04001843 if (!ctrl->apst_enabled || ctrl->ps_max_latency_us == 0) {
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001844 /* Turn off APST. */
1845 apste = 0;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001846 dev_dbg(ctrl->device, "APST disabled\n");
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001847 } else {
1848 __le64 target = cpu_to_le64(0);
1849 int state;
1850
1851 /*
1852 * Walk through all states from lowest- to highest-power.
1853 * According to the spec, lower-numbered states use more
1854 * power. NPSS, despite the name, is the index of the
1855 * lowest-power state, not the number of states.
1856 */
1857 for (state = (int)ctrl->npss; state >= 0; state--) {
Kai-Heng Fengda875912017-06-07 15:25:42 +08001858 u64 total_latency_us, exit_latency_us, transition_ms;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001859
1860 if (target)
1861 table->entries[state] = target;
1862
1863 /*
Andy Lutomirskiff5350a2017-04-20 13:37:55 -07001864 * Don't allow transitions to the deepest state
1865 * if it's quirked off.
1866 */
1867 if (state == ctrl->npss &&
1868 (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS))
1869 continue;
1870
1871 /*
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001872 * Is this state a useful non-operational state for
1873 * higher-power states to autonomously transition to?
1874 */
1875 if (!(ctrl->psd[state].flags &
1876 NVME_PS_FLAGS_NON_OP_STATE))
1877 continue;
1878
Kai-Heng Fengda875912017-06-07 15:25:42 +08001879 exit_latency_us =
1880 (u64)le32_to_cpu(ctrl->psd[state].exit_lat);
1881 if (exit_latency_us > ctrl->ps_max_latency_us)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001882 continue;
1883
Kai-Heng Fengda875912017-06-07 15:25:42 +08001884 total_latency_us =
1885 exit_latency_us +
1886 le32_to_cpu(ctrl->psd[state].entry_lat);
1887
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001888 /*
1889 * This state is good. Use it as the APST idle
1890 * target for higher power states.
1891 */
1892 transition_ms = total_latency_us + 19;
1893 do_div(transition_ms, 20);
1894 if (transition_ms > (1 << 24) - 1)
1895 transition_ms = (1 << 24) - 1;
1896
1897 target = cpu_to_le64((state << 3) |
1898 (transition_ms << 8));
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001899
1900 if (max_ps == -1)
1901 max_ps = state;
1902
1903 if (total_latency_us > max_lat_us)
1904 max_lat_us = total_latency_us;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001905 }
1906
1907 apste = 1;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001908
1909 if (max_ps == -1) {
1910 dev_dbg(ctrl->device, "APST enabled but no non-operational states are available\n");
1911 } else {
1912 dev_dbg(ctrl->device, "APST enabled: max PS = %d, max round-trip latency = %lluus, table = %*phN\n",
1913 max_ps, max_lat_us, (int)sizeof(*table), table);
1914 }
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001915 }
1916
1917 ret = nvme_set_features(ctrl, NVME_FEAT_AUTO_PST, apste,
1918 table, sizeof(*table), NULL);
1919 if (ret)
1920 dev_err(ctrl->device, "failed to set APST feature (%d)\n", ret);
1921
1922 kfree(table);
Keith Busch634b8322017-08-10 11:23:31 +02001923 return ret;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001924}
1925
1926static void nvme_set_latency_tolerance(struct device *dev, s32 val)
1927{
1928 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
1929 u64 latency;
1930
1931 switch (val) {
1932 case PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT:
1933 case PM_QOS_LATENCY_ANY:
1934 latency = U64_MAX;
1935 break;
1936
1937 default:
1938 latency = val;
1939 }
1940
1941 if (ctrl->ps_max_latency_us != latency) {
1942 ctrl->ps_max_latency_us = latency;
1943 nvme_configure_apst(ctrl);
1944 }
1945}
1946
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001947struct nvme_core_quirk_entry {
1948 /*
1949 * NVMe model and firmware strings are padded with spaces. For
1950 * simplicity, strings in the quirk table are padded with NULLs
1951 * instead.
1952 */
1953 u16 vid;
1954 const char *mn;
1955 const char *fr;
1956 unsigned long quirks;
1957};
1958
1959static const struct nvme_core_quirk_entry core_quirks[] = {
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001960 {
Andy Lutomirskibe569452017-04-20 13:37:56 -07001961 /*
1962 * This Toshiba device seems to die using any APST states. See:
1963 * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1678184/comments/11
1964 */
1965 .vid = 0x1179,
1966 .mn = "THNSF5256GPUK TOSHIBA",
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001967 .quirks = NVME_QUIRK_NO_APST,
Andy Lutomirskibe569452017-04-20 13:37:56 -07001968 }
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001969};
1970
1971/* match is null-terminated but idstr is space-padded. */
1972static bool string_matches(const char *idstr, const char *match, size_t len)
1973{
1974 size_t matchlen;
1975
1976 if (!match)
1977 return true;
1978
1979 matchlen = strlen(match);
1980 WARN_ON_ONCE(matchlen > len);
1981
1982 if (memcmp(idstr, match, matchlen))
1983 return false;
1984
1985 for (; matchlen < len; matchlen++)
1986 if (idstr[matchlen] != ' ')
1987 return false;
1988
1989 return true;
1990}
1991
1992static bool quirk_matches(const struct nvme_id_ctrl *id,
1993 const struct nvme_core_quirk_entry *q)
1994{
1995 return q->vid == le16_to_cpu(id->vid) &&
1996 string_matches(id->mn, q->mn, sizeof(id->mn)) &&
1997 string_matches(id->fr, q->fr, sizeof(id->fr));
1998}
1999
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002000static void nvme_init_subnqn(struct nvme_subsystem *subsys, struct nvme_ctrl *ctrl,
2001 struct nvme_id_ctrl *id)
Christoph Hellwig180de0072017-06-26 12:39:02 +02002002{
2003 size_t nqnlen;
2004 int off;
2005
2006 nqnlen = strnlen(id->subnqn, NVMF_NQN_SIZE);
2007 if (nqnlen > 0 && nqnlen < NVMF_NQN_SIZE) {
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002008 strncpy(subsys->subnqn, id->subnqn, NVMF_NQN_SIZE);
Christoph Hellwig180de0072017-06-26 12:39:02 +02002009 return;
2010 }
2011
2012 if (ctrl->vs >= NVME_VS(1, 2, 1))
2013 dev_warn(ctrl->device, "missing or invalid SUBNQN field.\n");
2014
2015 /* Generate a "fake" NQN per Figure 254 in NVMe 1.3 + ECN 001 */
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002016 off = snprintf(subsys->subnqn, NVMF_NQN_SIZE,
Christoph Hellwig180de0072017-06-26 12:39:02 +02002017 "nqn.2014.08.org.nvmexpress:%4x%4x",
2018 le16_to_cpu(id->vid), le16_to_cpu(id->ssvid));
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002019 memcpy(subsys->subnqn + off, id->sn, sizeof(id->sn));
Christoph Hellwig180de0072017-06-26 12:39:02 +02002020 off += sizeof(id->sn);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002021 memcpy(subsys->subnqn + off, id->mn, sizeof(id->mn));
Christoph Hellwig180de0072017-06-26 12:39:02 +02002022 off += sizeof(id->mn);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002023 memset(subsys->subnqn + off, 0, sizeof(subsys->subnqn) - off);
2024}
2025
2026static void __nvme_release_subsystem(struct nvme_subsystem *subsys)
2027{
2028 ida_simple_remove(&nvme_subsystems_ida, subsys->instance);
2029 kfree(subsys);
2030}
2031
2032static void nvme_release_subsystem(struct device *dev)
2033{
2034 __nvme_release_subsystem(container_of(dev, struct nvme_subsystem, dev));
2035}
2036
2037static void nvme_destroy_subsystem(struct kref *ref)
2038{
2039 struct nvme_subsystem *subsys =
2040 container_of(ref, struct nvme_subsystem, ref);
2041
2042 mutex_lock(&nvme_subsystems_lock);
2043 list_del(&subsys->entry);
2044 mutex_unlock(&nvme_subsystems_lock);
2045
Christoph Hellwiged754e52017-11-09 13:50:43 +01002046 ida_destroy(&subsys->ns_ida);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002047 device_del(&subsys->dev);
2048 put_device(&subsys->dev);
2049}
2050
2051static void nvme_put_subsystem(struct nvme_subsystem *subsys)
2052{
2053 kref_put(&subsys->ref, nvme_destroy_subsystem);
2054}
2055
2056static struct nvme_subsystem *__nvme_find_get_subsystem(const char *subsysnqn)
2057{
2058 struct nvme_subsystem *subsys;
2059
2060 lockdep_assert_held(&nvme_subsystems_lock);
2061
2062 list_for_each_entry(subsys, &nvme_subsystems, entry) {
2063 if (strcmp(subsys->subnqn, subsysnqn))
2064 continue;
2065 if (!kref_get_unless_zero(&subsys->ref))
2066 continue;
2067 return subsys;
2068 }
2069
2070 return NULL;
2071}
2072
Hannes Reinecke1e496932017-11-10 10:58:23 +01002073#define SUBSYS_ATTR_RO(_name, _mode, _show) \
2074 struct device_attribute subsys_attr_##_name = \
2075 __ATTR(_name, _mode, _show, NULL)
2076
2077static ssize_t nvme_subsys_show_nqn(struct device *dev,
2078 struct device_attribute *attr,
2079 char *buf)
2080{
2081 struct nvme_subsystem *subsys =
2082 container_of(dev, struct nvme_subsystem, dev);
2083
2084 return snprintf(buf, PAGE_SIZE, "%s\n", subsys->subnqn);
2085}
2086static SUBSYS_ATTR_RO(subsysnqn, S_IRUGO, nvme_subsys_show_nqn);
2087
2088#define nvme_subsys_show_str_function(field) \
2089static ssize_t subsys_##field##_show(struct device *dev, \
2090 struct device_attribute *attr, char *buf) \
2091{ \
2092 struct nvme_subsystem *subsys = \
2093 container_of(dev, struct nvme_subsystem, dev); \
2094 return sprintf(buf, "%.*s\n", \
2095 (int)sizeof(subsys->field), subsys->field); \
2096} \
2097static SUBSYS_ATTR_RO(field, S_IRUGO, subsys_##field##_show);
2098
2099nvme_subsys_show_str_function(model);
2100nvme_subsys_show_str_function(serial);
2101nvme_subsys_show_str_function(firmware_rev);
2102
2103static struct attribute *nvme_subsys_attrs[] = {
2104 &subsys_attr_model.attr,
2105 &subsys_attr_serial.attr,
2106 &subsys_attr_firmware_rev.attr,
2107 &subsys_attr_subsysnqn.attr,
2108 NULL,
2109};
2110
2111static struct attribute_group nvme_subsys_attrs_group = {
2112 .attrs = nvme_subsys_attrs,
2113};
2114
2115static const struct attribute_group *nvme_subsys_attrs_groups[] = {
2116 &nvme_subsys_attrs_group,
2117 NULL,
2118};
2119
Israel Rukshinb837b282018-01-04 17:56:14 +02002120static int nvme_active_ctrls(struct nvme_subsystem *subsys)
2121{
2122 int count = 0;
2123 struct nvme_ctrl *ctrl;
2124
2125 mutex_lock(&subsys->lock);
2126 list_for_each_entry(ctrl, &subsys->ctrls, subsys_entry) {
2127 if (ctrl->state != NVME_CTRL_DELETING &&
2128 ctrl->state != NVME_CTRL_DEAD)
2129 count++;
2130 }
2131 mutex_unlock(&subsys->lock);
2132
2133 return count;
2134}
2135
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002136static int nvme_init_subsystem(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id)
2137{
2138 struct nvme_subsystem *subsys, *found;
2139 int ret;
2140
2141 subsys = kzalloc(sizeof(*subsys), GFP_KERNEL);
2142 if (!subsys)
2143 return -ENOMEM;
2144 ret = ida_simple_get(&nvme_subsystems_ida, 0, 0, GFP_KERNEL);
2145 if (ret < 0) {
2146 kfree(subsys);
2147 return ret;
2148 }
2149 subsys->instance = ret;
2150 mutex_init(&subsys->lock);
2151 kref_init(&subsys->ref);
2152 INIT_LIST_HEAD(&subsys->ctrls);
Christoph Hellwiged754e52017-11-09 13:50:43 +01002153 INIT_LIST_HEAD(&subsys->nsheads);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002154 nvme_init_subnqn(subsys, ctrl, id);
2155 memcpy(subsys->serial, id->sn, sizeof(subsys->serial));
2156 memcpy(subsys->model, id->mn, sizeof(subsys->model));
2157 memcpy(subsys->firmware_rev, id->fr, sizeof(subsys->firmware_rev));
2158 subsys->vendor_id = le16_to_cpu(id->vid);
2159 subsys->cmic = id->cmic;
2160
2161 subsys->dev.class = nvme_subsys_class;
2162 subsys->dev.release = nvme_release_subsystem;
Hannes Reinecke1e496932017-11-10 10:58:23 +01002163 subsys->dev.groups = nvme_subsys_attrs_groups;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002164 dev_set_name(&subsys->dev, "nvme-subsys%d", subsys->instance);
2165 device_initialize(&subsys->dev);
2166
2167 mutex_lock(&nvme_subsystems_lock);
2168 found = __nvme_find_get_subsystem(subsys->subnqn);
2169 if (found) {
2170 /*
2171 * Verify that the subsystem actually supports multiple
2172 * controllers, else bail out.
2173 */
Israel Rukshinb837b282018-01-04 17:56:14 +02002174 if (nvme_active_ctrls(found) && !(id->cmic & (1 << 1))) {
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002175 dev_err(ctrl->device,
2176 "ignoring ctrl due to duplicate subnqn (%s).\n",
2177 found->subnqn);
2178 nvme_put_subsystem(found);
2179 ret = -EINVAL;
2180 goto out_unlock;
2181 }
2182
2183 __nvme_release_subsystem(subsys);
2184 subsys = found;
2185 } else {
2186 ret = device_add(&subsys->dev);
2187 if (ret) {
2188 dev_err(ctrl->device,
2189 "failed to register subsystem device.\n");
2190 goto out_unlock;
2191 }
Christoph Hellwiged754e52017-11-09 13:50:43 +01002192 ida_init(&subsys->ns_ida);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002193 list_add_tail(&subsys->entry, &nvme_subsystems);
2194 }
2195
2196 ctrl->subsys = subsys;
2197 mutex_unlock(&nvme_subsystems_lock);
2198
2199 if (sysfs_create_link(&subsys->dev.kobj, &ctrl->device->kobj,
2200 dev_name(ctrl->device))) {
2201 dev_err(ctrl->device,
2202 "failed to create sysfs link from subsystem.\n");
2203 /* the transport driver will eventually put the subsystem */
2204 return -EINVAL;
2205 }
2206
2207 mutex_lock(&subsys->lock);
2208 list_add_tail(&ctrl->subsys_entry, &subsys->ctrls);
2209 mutex_unlock(&subsys->lock);
2210
2211 return 0;
2212
2213out_unlock:
2214 mutex_unlock(&nvme_subsystems_lock);
2215 put_device(&subsys->dev);
2216 return ret;
Christoph Hellwig180de0072017-06-26 12:39:02 +02002217}
2218
Matias Bjørling70da6092018-02-26 13:55:40 +01002219static int nvme_get_log_ext(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
2220 u8 log_page, void *log,
2221 size_t size, size_t offset)
2222{
2223 struct nvme_command c = { };
2224 unsigned long dwlen = size / 4 - 1;
2225
2226 c.get_log_page.opcode = nvme_admin_get_log_page;
2227
2228 if (ns)
2229 c.get_log_page.nsid = cpu_to_le32(ns->head->ns_id);
2230 else
2231 c.get_log_page.nsid = cpu_to_le32(NVME_NSID_ALL);
2232
2233 c.get_log_page.lid = log_page;
2234 c.get_log_page.numdl = cpu_to_le16(dwlen & ((1 << 16) - 1));
2235 c.get_log_page.numdu = cpu_to_le16(dwlen >> 16);
2236 c.get_log_page.lpol = cpu_to_le32(offset & ((1ULL << 32) - 1));
2237 c.get_log_page.lpou = cpu_to_le32(offset >> 32ULL);
2238
2239 return nvme_submit_sync_cmd(ctrl->admin_q, &c, log, size);
2240}
2241
Keith Buschc627c482017-11-07 10:28:31 -07002242static int nvme_get_log(struct nvme_ctrl *ctrl, u8 log_page, void *log,
2243 size_t size)
2244{
Matias Bjørling70da6092018-02-26 13:55:40 +01002245 return nvme_get_log_ext(ctrl, NULL, log_page, log, size, 0);
Keith Buschc627c482017-11-07 10:28:31 -07002246}
2247
Keith Busch84fef622017-11-07 10:28:32 -07002248static int nvme_get_effects_log(struct nvme_ctrl *ctrl)
2249{
2250 int ret;
2251
2252 if (!ctrl->effects)
2253 ctrl->effects = kzalloc(sizeof(*ctrl->effects), GFP_KERNEL);
2254
2255 if (!ctrl->effects)
2256 return 0;
2257
2258 ret = nvme_get_log(ctrl, NVME_LOG_CMD_EFFECTS, ctrl->effects,
2259 sizeof(*ctrl->effects));
2260 if (ret) {
2261 kfree(ctrl->effects);
2262 ctrl->effects = NULL;
2263 }
2264 return ret;
Christoph Hellwig21d34712015-11-26 09:08:36 +01002265}
2266
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002267/*
2268 * Initialize the cached copies of the Identify data and various controller
2269 * register in our nvme_ctrl structure. This should be called as soon as
2270 * the admin queue is fully up and running.
2271 */
2272int nvme_init_identify(struct nvme_ctrl *ctrl)
2273{
2274 struct nvme_id_ctrl *id;
2275 u64 cap;
2276 int ret, page_shift;
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02002277 u32 max_hw_sectors;
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002278 bool prev_apst_enabled;
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002279
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002280 ret = ctrl->ops->reg_read32(ctrl, NVME_REG_VS, &ctrl->vs);
2281 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002282 dev_err(ctrl->device, "Reading VS failed (%d)\n", ret);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002283 return ret;
2284 }
2285
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002286 ret = ctrl->ops->reg_read64(ctrl, NVME_REG_CAP, &cap);
2287 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002288 dev_err(ctrl->device, "Reading CAP failed (%d)\n", ret);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002289 return ret;
2290 }
2291 page_shift = NVME_CAP_MPSMIN(cap) + 12;
2292
Gabriel Krisman Bertazi8ef20742016-10-19 09:51:05 -06002293 if (ctrl->vs >= NVME_VS(1, 1, 0))
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002294 ctrl->subsystem = NVME_CAP_NSSRC(cap);
2295
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002296 ret = nvme_identify_ctrl(ctrl, &id);
2297 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002298 dev_err(ctrl->device, "Identify Controller failed (%d)\n", ret);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002299 return -EIO;
2300 }
2301
Keith Busch84fef622017-11-07 10:28:32 -07002302 if (id->lpa & NVME_CTRL_LPA_CMD_EFFECTS_LOG) {
2303 ret = nvme_get_effects_log(ctrl);
2304 if (ret < 0)
2305 return ret;
2306 }
Christoph Hellwig180de0072017-06-26 12:39:02 +02002307
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002308 if (!ctrl->identified) {
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002309 int i;
2310
2311 ret = nvme_init_subsystem(ctrl, id);
2312 if (ret)
2313 goto out_free;
2314
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002315 /*
2316 * Check for quirks. Quirk can depend on firmware version,
2317 * so, in principle, the set of quirks present can change
2318 * across a reset. As a possible future enhancement, we
2319 * could re-scan for quirks every time we reinitialize
2320 * the device, but we'd have to make sure that the driver
2321 * behaves intelligently if the quirks change.
2322 */
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002323 for (i = 0; i < ARRAY_SIZE(core_quirks); i++) {
2324 if (quirk_matches(id, &core_quirks[i]))
2325 ctrl->quirks |= core_quirks[i].quirks;
2326 }
2327 }
2328
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002329 if (force_apst && (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS)) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02002330 dev_warn(ctrl->device, "forcibly allowing all power states due to nvme_core.force_apst -- use at your own risk\n");
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002331 ctrl->quirks &= ~NVME_QUIRK_NO_DEEPEST_PS;
2332 }
2333
Scott Bauer8a9ae522017-02-17 13:59:40 +01002334 ctrl->oacs = le16_to_cpu(id->oacs);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002335 ctrl->oncs = le16_to_cpup(&id->oncs);
Christoph Hellwig6bf25d12015-11-20 09:36:44 +01002336 atomic_set(&ctrl->abort_limit, id->acl + 1);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002337 ctrl->vwc = id->vwc;
Ming Lin931e1c22016-02-26 13:24:19 -08002338 ctrl->cntlid = le16_to_cpup(&id->cntlid);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002339 if (id->mdts)
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02002340 max_hw_sectors = 1 << (id->mdts + page_shift - 9);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002341 else
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02002342 max_hw_sectors = UINT_MAX;
2343 ctrl->max_hw_sectors =
2344 min_not_zero(ctrl->max_hw_sectors, max_hw_sectors);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002345
Christoph Hellwigda358252016-03-02 18:07:11 +01002346 nvme_set_queue_limits(ctrl, ctrl->admin_q);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002347 ctrl->sgls = le32_to_cpu(id->sgls);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002348 ctrl->kas = le16_to_cpu(id->kas);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002349
Martin K. Petersen07fbd322017-08-25 19:14:50 -04002350 if (id->rtd3e) {
2351 /* us -> s */
2352 u32 transition_time = le32_to_cpu(id->rtd3e) / 1000000;
2353
2354 ctrl->shutdown_timeout = clamp_t(unsigned int, transition_time,
2355 shutdown_timeout, 60);
2356
2357 if (ctrl->shutdown_timeout != shutdown_timeout)
Max Gurtovoy1a3838d2017-12-31 15:33:27 +02002358 dev_info(ctrl->device,
Martin K. Petersen07fbd322017-08-25 19:14:50 -04002359 "Shutdown timeout set to %u seconds\n",
2360 ctrl->shutdown_timeout);
2361 } else
2362 ctrl->shutdown_timeout = shutdown_timeout;
2363
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002364 ctrl->npss = id->npss;
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002365 ctrl->apsta = id->apsta;
2366 prev_apst_enabled = ctrl->apst_enabled;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002367 if (ctrl->quirks & NVME_QUIRK_NO_APST) {
2368 if (force_apst && id->apsta) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02002369 dev_warn(ctrl->device, "forcibly allowing APST due to nvme_core.force_apst -- use at your own risk\n");
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002370 ctrl->apst_enabled = true;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002371 } else {
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002372 ctrl->apst_enabled = false;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002373 }
2374 } else {
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002375 ctrl->apst_enabled = id->apsta;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002376 }
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002377 memcpy(ctrl->psd, id->psd, sizeof(ctrl->psd));
2378
Christoph Hellwigd3d5b872017-05-20 15:14:44 +02002379 if (ctrl->ops->flags & NVME_F_FABRICS) {
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002380 ctrl->icdoff = le16_to_cpu(id->icdoff);
2381 ctrl->ioccsz = le32_to_cpu(id->ioccsz);
2382 ctrl->iorcsz = le32_to_cpu(id->iorcsz);
2383 ctrl->maxcmd = le16_to_cpu(id->maxcmd);
2384
2385 /*
2386 * In fabrics we need to verify the cntlid matches the
2387 * admin connect
2388 */
Keith Busch634b8322017-08-10 11:23:31 +02002389 if (ctrl->cntlid != le16_to_cpu(id->cntlid)) {
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002390 ret = -EINVAL;
Keith Busch634b8322017-08-10 11:23:31 +02002391 goto out_free;
2392 }
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002393
2394 if (!ctrl->opts->discovery_nqn && !ctrl->kas) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02002395 dev_err(ctrl->device,
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002396 "keep-alive support is mandatory for fabrics\n");
2397 ret = -EINVAL;
Keith Busch634b8322017-08-10 11:23:31 +02002398 goto out_free;
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002399 }
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002400 } else {
2401 ctrl->cntlid = le16_to_cpu(id->cntlid);
Christoph Hellwigfe6d53c2017-05-12 17:16:10 +02002402 ctrl->hmpre = le32_to_cpu(id->hmpre);
2403 ctrl->hmmin = le32_to_cpu(id->hmmin);
Christoph Hellwig044a9df2017-09-11 12:09:28 -04002404 ctrl->hmminds = le32_to_cpu(id->hmminds);
2405 ctrl->hmmaxd = le16_to_cpu(id->hmmaxd);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002406 }
Christoph Hellwigda358252016-03-02 18:07:11 +01002407
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002408 kfree(id);
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002409
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002410 if (ctrl->apst_enabled && !prev_apst_enabled)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002411 dev_pm_qos_expose_latency_tolerance(ctrl->device);
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002412 else if (!ctrl->apst_enabled && prev_apst_enabled)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002413 dev_pm_qos_hide_latency_tolerance(ctrl->device);
2414
Keith Busch634b8322017-08-10 11:23:31 +02002415 ret = nvme_configure_apst(ctrl);
2416 if (ret < 0)
2417 return ret;
Jon Derrickdbf86b32017-08-16 09:51:29 +02002418
2419 ret = nvme_configure_timestamp(ctrl);
2420 if (ret < 0)
2421 return ret;
Keith Busch634b8322017-08-10 11:23:31 +02002422
2423 ret = nvme_configure_directives(ctrl);
2424 if (ret < 0)
2425 return ret;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002426
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002427 ctrl->identified = true;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002428
Keith Busch634b8322017-08-10 11:23:31 +02002429 return 0;
2430
2431out_free:
2432 kfree(id);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002433 return ret;
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002434}
Ming Lin576d55d2016-02-10 10:03:32 -08002435EXPORT_SYMBOL_GPL(nvme_init_identify);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002436
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002437static int nvme_dev_open(struct inode *inode, struct file *file)
Christoph Hellwig21d34712015-11-26 09:08:36 +01002438{
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002439 struct nvme_ctrl *ctrl =
2440 container_of(inode->i_cdev, struct nvme_ctrl, cdev);
Christoph Hellwig21d34712015-11-26 09:08:36 +01002441
Jianchao Wang2b1b7e72018-01-06 08:01:58 +08002442 switch (ctrl->state) {
2443 case NVME_CTRL_LIVE:
2444 case NVME_CTRL_ADMIN_ONLY:
2445 break;
2446 default:
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002447 return -EWOULDBLOCK;
Jianchao Wang2b1b7e72018-01-06 08:01:58 +08002448 }
2449
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002450 file->private_data = ctrl;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002451 return 0;
Christoph Hellwig21d34712015-11-26 09:08:36 +01002452}
2453
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002454static int nvme_dev_user_cmd(struct nvme_ctrl *ctrl, void __user *argp)
2455{
2456 struct nvme_ns *ns;
2457 int ret;
2458
Jianchao Wang765cc032018-02-12 20:54:46 +08002459 down_read(&ctrl->namespaces_rwsem);
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002460 if (list_empty(&ctrl->namespaces)) {
2461 ret = -ENOTTY;
2462 goto out_unlock;
2463 }
2464
2465 ns = list_first_entry(&ctrl->namespaces, struct nvme_ns, list);
2466 if (ns != list_last_entry(&ctrl->namespaces, struct nvme_ns, list)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002467 dev_warn(ctrl->device,
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002468 "NVME_IOCTL_IO_CMD not supported when multiple namespaces present!\n");
2469 ret = -EINVAL;
2470 goto out_unlock;
2471 }
2472
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002473 dev_warn(ctrl->device,
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002474 "using deprecated NVME_IOCTL_IO_CMD ioctl on the char device!\n");
2475 kref_get(&ns->kref);
Jianchao Wang765cc032018-02-12 20:54:46 +08002476 up_read(&ctrl->namespaces_rwsem);
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002477
2478 ret = nvme_user_cmd(ctrl, ns, argp);
2479 nvme_put_ns(ns);
2480 return ret;
2481
2482out_unlock:
Jianchao Wang765cc032018-02-12 20:54:46 +08002483 up_read(&ctrl->namespaces_rwsem);
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002484 return ret;
2485}
2486
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002487static long nvme_dev_ioctl(struct file *file, unsigned int cmd,
2488 unsigned long arg)
2489{
2490 struct nvme_ctrl *ctrl = file->private_data;
2491 void __user *argp = (void __user *)arg;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002492
2493 switch (cmd) {
2494 case NVME_IOCTL_ADMIN_CMD:
2495 return nvme_user_cmd(ctrl, NULL, argp);
2496 case NVME_IOCTL_IO_CMD:
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002497 return nvme_dev_user_cmd(ctrl, argp);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002498 case NVME_IOCTL_RESET:
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002499 dev_warn(ctrl->device, "resetting controller\n");
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002500 return nvme_reset_ctrl_sync(ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002501 case NVME_IOCTL_SUBSYS_RESET:
2502 return nvme_reset_subsystem(ctrl);
Keith Busch9ec3bb22016-04-29 15:45:18 -06002503 case NVME_IOCTL_RESCAN:
2504 nvme_queue_scan(ctrl);
2505 return 0;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002506 default:
2507 return -ENOTTY;
2508 }
2509}
2510
2511static const struct file_operations nvme_dev_fops = {
2512 .owner = THIS_MODULE,
2513 .open = nvme_dev_open,
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002514 .unlocked_ioctl = nvme_dev_ioctl,
2515 .compat_ioctl = nvme_dev_ioctl,
2516};
2517
2518static ssize_t nvme_sysfs_reset(struct device *dev,
2519 struct device_attribute *attr, const char *buf,
2520 size_t count)
2521{
2522 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2523 int ret;
2524
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002525 ret = nvme_reset_ctrl_sync(ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002526 if (ret < 0)
2527 return ret;
2528 return count;
2529}
2530static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
2531
Keith Busch9ec3bb22016-04-29 15:45:18 -06002532static ssize_t nvme_sysfs_rescan(struct device *dev,
2533 struct device_attribute *attr, const char *buf,
2534 size_t count)
2535{
2536 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2537
2538 nvme_queue_scan(ctrl);
2539 return count;
2540}
2541static DEVICE_ATTR(rescan_controller, S_IWUSR, NULL, nvme_sysfs_rescan);
2542
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002543static inline struct nvme_ns_head *dev_to_ns_head(struct device *dev)
Keith Busch118472a2016-02-18 09:57:48 -07002544{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002545 struct gendisk *disk = dev_to_disk(dev);
Keith Busch118472a2016-02-18 09:57:48 -07002546
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002547 if (disk->fops == &nvme_fops)
2548 return nvme_get_ns_from_dev(dev)->head;
2549 else
2550 return disk->private_data;
2551}
Johannes Thumshirn6484f5d2017-07-12 15:38:56 +02002552
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002553static ssize_t wwid_show(struct device *dev, struct device_attribute *attr,
2554 char *buf)
2555{
2556 struct nvme_ns_head *head = dev_to_ns_head(dev);
2557 struct nvme_ns_ids *ids = &head->ids;
2558 struct nvme_subsystem *subsys = head->subsys;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002559 int serial_len = sizeof(subsys->serial);
2560 int model_len = sizeof(subsys->model);
Keith Busch118472a2016-02-18 09:57:48 -07002561
Christoph Hellwig002fab02017-11-09 13:50:16 +01002562 if (!uuid_is_null(&ids->uuid))
2563 return sprintf(buf, "uuid.%pU\n", &ids->uuid);
Keith Busch118472a2016-02-18 09:57:48 -07002564
Christoph Hellwig002fab02017-11-09 13:50:16 +01002565 if (memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
2566 return sprintf(buf, "eui.%16phN\n", ids->nguid);
Keith Busch118472a2016-02-18 09:57:48 -07002567
Christoph Hellwig002fab02017-11-09 13:50:16 +01002568 if (memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
2569 return sprintf(buf, "eui.%8phN\n", ids->eui64);
Keith Busch118472a2016-02-18 09:57:48 -07002570
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002571 while (serial_len > 0 && (subsys->serial[serial_len - 1] == ' ' ||
2572 subsys->serial[serial_len - 1] == '\0'))
Keith Busch118472a2016-02-18 09:57:48 -07002573 serial_len--;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002574 while (model_len > 0 && (subsys->model[model_len - 1] == ' ' ||
2575 subsys->model[model_len - 1] == '\0'))
Keith Busch118472a2016-02-18 09:57:48 -07002576 model_len--;
2577
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002578 return sprintf(buf, "nvme.%04x-%*phN-%*phN-%08x\n", subsys->vendor_id,
2579 serial_len, subsys->serial, model_len, subsys->model,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002580 head->ns_id);
Keith Busch118472a2016-02-18 09:57:48 -07002581}
Joe Perchesc828a892017-12-19 10:15:08 -08002582static DEVICE_ATTR_RO(wwid);
Keith Busch118472a2016-02-18 09:57:48 -07002583
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002584static ssize_t nguid_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002585 char *buf)
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002586{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002587 return sprintf(buf, "%pU\n", dev_to_ns_head(dev)->ids.nguid);
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002588}
Joe Perchesc828a892017-12-19 10:15:08 -08002589static DEVICE_ATTR_RO(nguid);
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002590
Keith Busch2b9b6e82015-12-22 10:10:45 -07002591static ssize_t uuid_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002592 char *buf)
Keith Busch2b9b6e82015-12-22 10:10:45 -07002593{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002594 struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids;
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002595
2596 /* For backward compatibility expose the NGUID to userspace if
2597 * we have no UUID set
2598 */
Christoph Hellwig002fab02017-11-09 13:50:16 +01002599 if (uuid_is_null(&ids->uuid)) {
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002600 printk_ratelimited(KERN_WARNING
2601 "No UUID available providing old NGUID\n");
Christoph Hellwig002fab02017-11-09 13:50:16 +01002602 return sprintf(buf, "%pU\n", ids->nguid);
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002603 }
Christoph Hellwig002fab02017-11-09 13:50:16 +01002604 return sprintf(buf, "%pU\n", &ids->uuid);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002605}
Joe Perchesc828a892017-12-19 10:15:08 -08002606static DEVICE_ATTR_RO(uuid);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002607
2608static ssize_t eui_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002609 char *buf)
Keith Busch2b9b6e82015-12-22 10:10:45 -07002610{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002611 return sprintf(buf, "%8ph\n", dev_to_ns_head(dev)->ids.eui64);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002612}
Joe Perchesc828a892017-12-19 10:15:08 -08002613static DEVICE_ATTR_RO(eui);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002614
2615static ssize_t nsid_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002616 char *buf)
Keith Busch2b9b6e82015-12-22 10:10:45 -07002617{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002618 return sprintf(buf, "%d\n", dev_to_ns_head(dev)->ns_id);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002619}
Joe Perchesc828a892017-12-19 10:15:08 -08002620static DEVICE_ATTR_RO(nsid);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002621
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002622static struct attribute *nvme_ns_id_attrs[] = {
Keith Busch118472a2016-02-18 09:57:48 -07002623 &dev_attr_wwid.attr,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002624 &dev_attr_uuid.attr,
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002625 &dev_attr_nguid.attr,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002626 &dev_attr_eui.attr,
2627 &dev_attr_nsid.attr,
2628 NULL,
2629};
2630
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002631static umode_t nvme_ns_id_attrs_are_visible(struct kobject *kobj,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002632 struct attribute *a, int n)
2633{
2634 struct device *dev = container_of(kobj, struct device, kobj);
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002635 struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids;
Keith Busch2b9b6e82015-12-22 10:10:45 -07002636
2637 if (a == &dev_attr_uuid.attr) {
Martin Wilcka04b5de2017-09-28 21:33:23 +02002638 if (uuid_is_null(&ids->uuid) &&
Christoph Hellwig002fab02017-11-09 13:50:16 +01002639 !memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002640 return 0;
2641 }
2642 if (a == &dev_attr_nguid.attr) {
Christoph Hellwig002fab02017-11-09 13:50:16 +01002643 if (!memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
Keith Busch2b9b6e82015-12-22 10:10:45 -07002644 return 0;
2645 }
2646 if (a == &dev_attr_eui.attr) {
Christoph Hellwig002fab02017-11-09 13:50:16 +01002647 if (!memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
Keith Busch2b9b6e82015-12-22 10:10:45 -07002648 return 0;
2649 }
2650 return a->mode;
2651}
2652
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002653const struct attribute_group nvme_ns_id_attr_group = {
2654 .attrs = nvme_ns_id_attrs,
2655 .is_visible = nvme_ns_id_attrs_are_visible,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002656};
2657
Ming Lin931e1c22016-02-26 13:24:19 -08002658#define nvme_show_str_function(field) \
Keith Busch779ff7562016-01-12 15:09:31 -07002659static ssize_t field##_show(struct device *dev, \
2660 struct device_attribute *attr, char *buf) \
2661{ \
2662 struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002663 return sprintf(buf, "%.*s\n", \
2664 (int)sizeof(ctrl->subsys->field), ctrl->subsys->field); \
Keith Busch779ff7562016-01-12 15:09:31 -07002665} \
2666static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
2667
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002668nvme_show_str_function(model);
2669nvme_show_str_function(serial);
2670nvme_show_str_function(firmware_rev);
2671
Ming Lin931e1c22016-02-26 13:24:19 -08002672#define nvme_show_int_function(field) \
2673static ssize_t field##_show(struct device *dev, \
2674 struct device_attribute *attr, char *buf) \
2675{ \
2676 struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \
2677 return sprintf(buf, "%d\n", ctrl->field); \
2678} \
2679static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
2680
Ming Lin931e1c22016-02-26 13:24:19 -08002681nvme_show_int_function(cntlid);
Keith Busch779ff7562016-01-12 15:09:31 -07002682
Ming Lin1a353d82016-06-13 16:45:24 +02002683static ssize_t nvme_sysfs_delete(struct device *dev,
2684 struct device_attribute *attr, const char *buf,
2685 size_t count)
2686{
2687 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2688
2689 if (device_remove_file_self(dev, attr))
Christoph Hellwigc5017e82017-10-29 10:44:29 +02002690 nvme_delete_ctrl_sync(ctrl);
Ming Lin1a353d82016-06-13 16:45:24 +02002691 return count;
2692}
2693static DEVICE_ATTR(delete_controller, S_IWUSR, NULL, nvme_sysfs_delete);
2694
2695static ssize_t nvme_sysfs_show_transport(struct device *dev,
2696 struct device_attribute *attr,
2697 char *buf)
2698{
2699 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2700
2701 return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->ops->name);
2702}
2703static DEVICE_ATTR(transport, S_IRUGO, nvme_sysfs_show_transport, NULL);
2704
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002705static ssize_t nvme_sysfs_show_state(struct device *dev,
2706 struct device_attribute *attr,
2707 char *buf)
2708{
2709 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2710 static const char *const state_name[] = {
2711 [NVME_CTRL_NEW] = "new",
2712 [NVME_CTRL_LIVE] = "live",
Jianchao Wang2b1b7e72018-01-06 08:01:58 +08002713 [NVME_CTRL_ADMIN_ONLY] = "only-admin",
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002714 [NVME_CTRL_RESETTING] = "resetting",
Max Gurtovoyad6a0a52018-01-31 18:31:24 +02002715 [NVME_CTRL_CONNECTING] = "connecting",
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002716 [NVME_CTRL_DELETING] = "deleting",
2717 [NVME_CTRL_DEAD] = "dead",
2718 };
2719
2720 if ((unsigned)ctrl->state < ARRAY_SIZE(state_name) &&
2721 state_name[ctrl->state])
2722 return sprintf(buf, "%s\n", state_name[ctrl->state]);
2723
2724 return sprintf(buf, "unknown state\n");
2725}
2726
2727static DEVICE_ATTR(state, S_IRUGO, nvme_sysfs_show_state, NULL);
2728
Ming Lin1a353d82016-06-13 16:45:24 +02002729static ssize_t nvme_sysfs_show_subsysnqn(struct device *dev,
2730 struct device_attribute *attr,
2731 char *buf)
2732{
2733 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2734
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002735 return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->subsys->subnqn);
Ming Lin1a353d82016-06-13 16:45:24 +02002736}
2737static DEVICE_ATTR(subsysnqn, S_IRUGO, nvme_sysfs_show_subsysnqn, NULL);
2738
2739static ssize_t nvme_sysfs_show_address(struct device *dev,
2740 struct device_attribute *attr,
2741 char *buf)
2742{
2743 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2744
2745 return ctrl->ops->get_address(ctrl, buf, PAGE_SIZE);
2746}
2747static DEVICE_ATTR(address, S_IRUGO, nvme_sysfs_show_address, NULL);
2748
Keith Busch779ff7562016-01-12 15:09:31 -07002749static struct attribute *nvme_dev_attrs[] = {
2750 &dev_attr_reset_controller.attr,
Keith Busch9ec3bb22016-04-29 15:45:18 -06002751 &dev_attr_rescan_controller.attr,
Keith Busch779ff7562016-01-12 15:09:31 -07002752 &dev_attr_model.attr,
2753 &dev_attr_serial.attr,
2754 &dev_attr_firmware_rev.attr,
Ming Lin931e1c22016-02-26 13:24:19 -08002755 &dev_attr_cntlid.attr,
Ming Lin1a353d82016-06-13 16:45:24 +02002756 &dev_attr_delete_controller.attr,
2757 &dev_attr_transport.attr,
2758 &dev_attr_subsysnqn.attr,
2759 &dev_attr_address.attr,
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002760 &dev_attr_state.attr,
Keith Busch779ff7562016-01-12 15:09:31 -07002761 NULL
2762};
2763
Ming Lin1a353d82016-06-13 16:45:24 +02002764static umode_t nvme_dev_attrs_are_visible(struct kobject *kobj,
2765 struct attribute *a, int n)
2766{
2767 struct device *dev = container_of(kobj, struct device, kobj);
2768 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2769
Christoph Hellwig49d3d502017-06-26 12:39:03 +02002770 if (a == &dev_attr_delete_controller.attr && !ctrl->ops->delete_ctrl)
2771 return 0;
2772 if (a == &dev_attr_address.attr && !ctrl->ops->get_address)
2773 return 0;
Ming Lin1a353d82016-06-13 16:45:24 +02002774
2775 return a->mode;
2776}
2777
Keith Busch779ff7562016-01-12 15:09:31 -07002778static struct attribute_group nvme_dev_attrs_group = {
Ming Lin1a353d82016-06-13 16:45:24 +02002779 .attrs = nvme_dev_attrs,
2780 .is_visible = nvme_dev_attrs_are_visible,
Keith Busch779ff7562016-01-12 15:09:31 -07002781};
2782
2783static const struct attribute_group *nvme_dev_attr_groups[] = {
2784 &nvme_dev_attrs_group,
2785 NULL,
2786};
2787
Christoph Hellwiged754e52017-11-09 13:50:43 +01002788static struct nvme_ns_head *__nvme_find_ns_head(struct nvme_subsystem *subsys,
2789 unsigned nsid)
2790{
2791 struct nvme_ns_head *h;
2792
2793 lockdep_assert_held(&subsys->lock);
2794
2795 list_for_each_entry(h, &subsys->nsheads, entry) {
2796 if (h->ns_id == nsid && kref_get_unless_zero(&h->ref))
2797 return h;
2798 }
2799
2800 return NULL;
2801}
2802
2803static int __nvme_check_ids(struct nvme_subsystem *subsys,
2804 struct nvme_ns_head *new)
2805{
2806 struct nvme_ns_head *h;
2807
2808 lockdep_assert_held(&subsys->lock);
2809
2810 list_for_each_entry(h, &subsys->nsheads, entry) {
2811 if (nvme_ns_ids_valid(&new->ids) &&
Keith Busch20796992018-03-19 10:53:50 -06002812 !list_empty(&h->list) &&
Christoph Hellwiged754e52017-11-09 13:50:43 +01002813 nvme_ns_ids_equal(&new->ids, &h->ids))
2814 return -EINVAL;
2815 }
2816
2817 return 0;
2818}
2819
2820static struct nvme_ns_head *nvme_alloc_ns_head(struct nvme_ctrl *ctrl,
2821 unsigned nsid, struct nvme_id_ns *id)
2822{
2823 struct nvme_ns_head *head;
2824 int ret = -ENOMEM;
2825
2826 head = kzalloc(sizeof(*head), GFP_KERNEL);
2827 if (!head)
2828 goto out;
2829 ret = ida_simple_get(&ctrl->subsys->ns_ida, 1, 0, GFP_KERNEL);
2830 if (ret < 0)
2831 goto out_free_head;
2832 head->instance = ret;
2833 INIT_LIST_HEAD(&head->list);
2834 init_srcu_struct(&head->srcu);
2835 head->subsys = ctrl->subsys;
2836 head->ns_id = nsid;
2837 kref_init(&head->ref);
2838
2839 nvme_report_ns_ids(ctrl, nsid, id, &head->ids);
2840
2841 ret = __nvme_check_ids(ctrl->subsys, head);
2842 if (ret) {
2843 dev_err(ctrl->device,
2844 "duplicate IDs for nsid %d\n", nsid);
2845 goto out_cleanup_srcu;
2846 }
2847
Christoph Hellwig32acab32017-11-02 12:59:30 +01002848 ret = nvme_mpath_alloc_disk(ctrl, head);
2849 if (ret)
2850 goto out_cleanup_srcu;
2851
Christoph Hellwiged754e52017-11-09 13:50:43 +01002852 list_add_tail(&head->entry, &ctrl->subsys->nsheads);
2853 return head;
2854out_cleanup_srcu:
2855 cleanup_srcu_struct(&head->srcu);
2856 ida_simple_remove(&ctrl->subsys->ns_ida, head->instance);
2857out_free_head:
2858 kfree(head);
2859out:
2860 return ERR_PTR(ret);
2861}
2862
2863static int nvme_init_ns_head(struct nvme_ns *ns, unsigned nsid,
Baegjae Sung9bd82b12018-02-28 16:06:04 +09002864 struct nvme_id_ns *id)
Christoph Hellwiged754e52017-11-09 13:50:43 +01002865{
2866 struct nvme_ctrl *ctrl = ns->ctrl;
2867 bool is_shared = id->nmic & (1 << 0);
2868 struct nvme_ns_head *head = NULL;
2869 int ret = 0;
2870
2871 mutex_lock(&ctrl->subsys->lock);
2872 if (is_shared)
2873 head = __nvme_find_ns_head(ctrl->subsys, nsid);
2874 if (!head) {
2875 head = nvme_alloc_ns_head(ctrl, nsid, id);
2876 if (IS_ERR(head)) {
2877 ret = PTR_ERR(head);
2878 goto out_unlock;
2879 }
Christoph Hellwiged754e52017-11-09 13:50:43 +01002880 } else {
2881 struct nvme_ns_ids ids;
2882
2883 nvme_report_ns_ids(ctrl, nsid, id, &ids);
2884 if (!nvme_ns_ids_equal(&head->ids, &ids)) {
2885 dev_err(ctrl->device,
2886 "IDs don't match for shared namespace %d\n",
2887 nsid);
2888 ret = -EINVAL;
2889 goto out_unlock;
2890 }
Christoph Hellwiged754e52017-11-09 13:50:43 +01002891 }
2892
2893 list_add_tail(&ns->siblings, &head->list);
2894 ns->head = head;
2895
2896out_unlock:
2897 mutex_unlock(&ctrl->subsys->lock);
2898 return ret;
2899}
2900
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002901static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2902{
2903 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2904 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2905
Christoph Hellwiged754e52017-11-09 13:50:43 +01002906 return nsa->head->ns_id - nsb->head->ns_id;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002907}
2908
Keith Busch32f0c4a2016-07-13 11:45:02 -06002909static struct nvme_ns *nvme_find_get_ns(struct nvme_ctrl *ctrl, unsigned nsid)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002910{
Keith Busch32f0c4a2016-07-13 11:45:02 -06002911 struct nvme_ns *ns, *ret = NULL;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002912
Jianchao Wang765cc032018-02-12 20:54:46 +08002913 down_read(&ctrl->namespaces_rwsem);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002914 list_for_each_entry(ns, &ctrl->namespaces, list) {
Christoph Hellwiged754e52017-11-09 13:50:43 +01002915 if (ns->head->ns_id == nsid) {
Christoph Hellwig2dd41222017-10-18 13:20:01 +02002916 if (!kref_get_unless_zero(&ns->kref))
2917 continue;
Keith Busch32f0c4a2016-07-13 11:45:02 -06002918 ret = ns;
2919 break;
2920 }
Christoph Hellwiged754e52017-11-09 13:50:43 +01002921 if (ns->head->ns_id > nsid)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002922 break;
2923 }
Jianchao Wang765cc032018-02-12 20:54:46 +08002924 up_read(&ctrl->namespaces_rwsem);
Keith Busch32f0c4a2016-07-13 11:45:02 -06002925 return ret;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002926}
2927
Jens Axboef5d11842017-06-27 12:03:06 -06002928static int nvme_setup_streams_ns(struct nvme_ctrl *ctrl, struct nvme_ns *ns)
2929{
2930 struct streams_directive_params s;
2931 int ret;
2932
2933 if (!ctrl->nr_streams)
2934 return 0;
2935
Christoph Hellwiged754e52017-11-09 13:50:43 +01002936 ret = nvme_get_stream_params(ctrl, &s, ns->head->ns_id);
Jens Axboef5d11842017-06-27 12:03:06 -06002937 if (ret)
2938 return ret;
2939
2940 ns->sws = le32_to_cpu(s.sws);
2941 ns->sgs = le16_to_cpu(s.sgs);
2942
2943 if (ns->sws) {
2944 unsigned int bs = 1 << ns->lba_shift;
2945
2946 blk_queue_io_min(ns->queue, bs * ns->sws);
2947 if (ns->sgs)
2948 blk_queue_io_opt(ns->queue, bs * ns->sws * ns->sgs);
2949 }
2950
2951 return 0;
2952}
2953
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002954static void nvme_alloc_ns(struct nvme_ctrl *ctrl, unsigned nsid)
2955{
2956 struct nvme_ns *ns;
2957 struct gendisk *disk;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002958 struct nvme_id_ns *id;
2959 char disk_name[DISK_NAME_LEN];
Christoph Hellwig32acab32017-11-02 12:59:30 +01002960 int node = dev_to_node(ctrl->dev), flags = GENHD_FL_EXT_DEVT;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002961
2962 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
2963 if (!ns)
2964 return;
2965
2966 ns->queue = blk_mq_init_queue(ctrl->tagset);
2967 if (IS_ERR(ns->queue))
Christoph Hellwiged754e52017-11-09 13:50:43 +01002968 goto out_free_ns;
Bart Van Assche8b904b52018-03-07 17:10:10 -08002969 blk_queue_flag_set(QUEUE_FLAG_NONROT, ns->queue);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002970 ns->queue->queuedata = ns;
2971 ns->ctrl = ctrl;
2972
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002973 kref_init(&ns->kref);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002974 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002975
2976 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Christoph Hellwigda358252016-03-02 18:07:11 +01002977 nvme_set_queue_limits(ctrl, ns->queue);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002978
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02002979 id = nvme_identify_ns(ctrl, nsid);
2980 if (!id)
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002981 goto out_free_queue;
2982
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02002983 if (id->ncap == 0)
2984 goto out_free_id;
2985
Baegjae Sung9bd82b12018-02-28 16:06:04 +09002986 if (nvme_init_ns_head(ns, nsid, id))
Christoph Hellwiged754e52017-11-09 13:50:43 +01002987 goto out_free_id;
Keith Busch654b4a42017-12-14 11:20:32 -07002988 nvme_setup_streams_ns(ctrl, ns);
Christoph Hellwiged754e52017-11-09 13:50:43 +01002989
Christoph Hellwig32acab32017-11-02 12:59:30 +01002990#ifdef CONFIG_NVME_MULTIPATH
2991 /*
2992 * If multipathing is enabled we need to always use the subsystem
2993 * instance number for numbering our devices to avoid conflicts
2994 * between subsystems that have multiple controllers and thus use
2995 * the multipath-aware subsystem node and those that have a single
2996 * controller and use the controller node directly.
2997 */
2998 if (ns->head->disk) {
2999 sprintf(disk_name, "nvme%dc%dn%d", ctrl->subsys->instance,
3000 ctrl->cntlid, ns->head->instance);
3001 flags = GENHD_FL_HIDDEN;
3002 } else {
3003 sprintf(disk_name, "nvme%dn%d", ctrl->subsys->instance,
3004 ns->head->instance);
3005 }
3006#else
3007 /*
3008 * But without the multipath code enabled, multiple controller per
3009 * subsystems are visible as devices and thus we cannot use the
3010 * subsystem instance.
3011 */
Christoph Hellwiged754e52017-11-09 13:50:43 +01003012 sprintf(disk_name, "nvme%dn%d", ctrl->instance, ns->head->instance);
Christoph Hellwig32acab32017-11-02 12:59:30 +01003013#endif
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02003014
Christoph Hellwig608cc4b2017-09-06 11:45:24 +02003015 if ((ctrl->quirks & NVME_QUIRK_LIGHTNVM) && id->vs[0] == 0x1) {
3016 if (nvme_nvm_register(ns, disk_name, node)) {
3017 dev_warn(ctrl->device, "LightNVM init failure\n");
Christoph Hellwiged754e52017-11-09 13:50:43 +01003018 goto out_unlink_ns;
Christoph Hellwig608cc4b2017-09-06 11:45:24 +02003019 }
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02003020 }
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003021
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01003022 disk = alloc_disk_node(0, node);
3023 if (!disk)
Christoph Hellwiged754e52017-11-09 13:50:43 +01003024 goto out_unlink_ns;
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01003025
3026 disk->fops = &nvme_fops;
3027 disk->private_data = ns;
3028 disk->queue = ns->queue;
Christoph Hellwig32acab32017-11-02 12:59:30 +01003029 disk->flags = flags;
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01003030 memcpy(disk->disk_name, disk_name, DISK_NAME_LEN);
3031 ns->disk = disk;
3032
3033 __nvme_revalidate_disk(disk, id);
3034
Jianchao Wang765cc032018-02-12 20:54:46 +08003035 down_write(&ctrl->namespaces_rwsem);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003036 list_add_tail(&ns->list, &ctrl->namespaces);
Jianchao Wang765cc032018-02-12 20:54:46 +08003037 up_write(&ctrl->namespaces_rwsem);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003038
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003039 nvme_get_ctrl(ctrl);
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02003040
3041 kfree(id);
3042
Dan Williams0d52c7562016-06-15 19:44:20 -07003043 device_add_disk(ctrl->device, ns->disk);
Keith Busch2b9b6e82015-12-22 10:10:45 -07003044 if (sysfs_create_group(&disk_to_dev(ns->disk)->kobj,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01003045 &nvme_ns_id_attr_group))
Keith Busch2b9b6e82015-12-22 10:10:45 -07003046 pr_warn("%s: failed to create sysfs group for identification\n",
3047 ns->disk->disk_name);
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01003048 if (ns->ndev && nvme_nvm_register_sysfs(ns))
3049 pr_warn("%s: failed to register lightnvm sysfs group for identification\n",
3050 ns->disk->disk_name);
Christoph Hellwig32acab32017-11-02 12:59:30 +01003051
Baegjae Sung9bd82b12018-02-28 16:06:04 +09003052 nvme_mpath_add_disk(ns->head);
Hannes Reineckee9a48032017-11-09 17:57:06 +01003053 nvme_mpath_add_disk_links(ns);
Thomas Taib9e03852018-02-08 13:38:29 -05003054 nvme_fault_inject_init(ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003055 return;
Christoph Hellwiged754e52017-11-09 13:50:43 +01003056 out_unlink_ns:
3057 mutex_lock(&ctrl->subsys->lock);
3058 list_del_rcu(&ns->siblings);
3059 mutex_unlock(&ctrl->subsys->lock);
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02003060 out_free_id:
3061 kfree(id);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003062 out_free_queue:
3063 blk_cleanup_queue(ns->queue);
3064 out_free_ns:
3065 kfree(ns);
3066}
3067
3068static void nvme_ns_remove(struct nvme_ns *ns)
3069{
Keith Busch646017a2016-02-24 09:15:54 -07003070 if (test_and_set_bit(NVME_NS_REMOVING, &ns->flags))
3071 return;
3072
Thomas Taib9e03852018-02-08 13:38:29 -05003073 nvme_fault_inject_fini(ns);
Matias Bjørlingb0b4e092016-09-16 14:25:07 +02003074 if (ns->disk && ns->disk->flags & GENHD_FL_UP) {
Hannes Reineckee9a48032017-11-09 17:57:06 +01003075 nvme_mpath_remove_disk_links(ns);
Keith Busch2b9b6e82015-12-22 10:10:45 -07003076 sysfs_remove_group(&disk_to_dev(ns->disk)->kobj,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01003077 &nvme_ns_id_attr_group);
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01003078 if (ns->ndev)
3079 nvme_nvm_unregister_sysfs(ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003080 del_gendisk(ns->disk);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003081 blk_cleanup_queue(ns->queue);
Ming Leibd9f5d62017-12-06 18:30:09 +08003082 if (blk_get_integrity(ns->disk))
3083 blk_integrity_unregister(ns->disk);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003084 }
Keith Busch32f0c4a2016-07-13 11:45:02 -06003085
Christoph Hellwiged754e52017-11-09 13:50:43 +01003086 mutex_lock(&ns->ctrl->subsys->lock);
Christoph Hellwig32acab32017-11-02 12:59:30 +01003087 nvme_mpath_clear_current_path(ns);
Keith Busch9941a862017-11-16 13:36:50 -07003088 list_del_rcu(&ns->siblings);
Christoph Hellwiged754e52017-11-09 13:50:43 +01003089 mutex_unlock(&ns->ctrl->subsys->lock);
3090
Jianchao Wang765cc032018-02-12 20:54:46 +08003091 down_write(&ns->ctrl->namespaces_rwsem);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003092 list_del_init(&ns->list);
Jianchao Wang765cc032018-02-12 20:54:46 +08003093 up_write(&ns->ctrl->namespaces_rwsem);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003094
Keith Busch9941a862017-11-16 13:36:50 -07003095 synchronize_srcu(&ns->head->srcu);
Sagi Grimberg479a3222017-12-21 15:07:27 +02003096 nvme_mpath_check_last_path(ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003097 nvme_put_ns(ns);
3098}
3099
Keith Busch540c8012015-10-22 15:45:06 -06003100static void nvme_validate_ns(struct nvme_ctrl *ctrl, unsigned nsid)
3101{
3102 struct nvme_ns *ns;
3103
Keith Busch32f0c4a2016-07-13 11:45:02 -06003104 ns = nvme_find_get_ns(ctrl, nsid);
Keith Busch540c8012015-10-22 15:45:06 -06003105 if (ns) {
Matias Bjørlingb0b4e092016-09-16 14:25:07 +02003106 if (ns->disk && revalidate_disk(ns->disk))
Keith Busch540c8012015-10-22 15:45:06 -06003107 nvme_ns_remove(ns);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003108 nvme_put_ns(ns);
Keith Busch540c8012015-10-22 15:45:06 -06003109 } else
3110 nvme_alloc_ns(ctrl, nsid);
3111}
3112
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303113static void nvme_remove_invalid_namespaces(struct nvme_ctrl *ctrl,
3114 unsigned nsid)
3115{
3116 struct nvme_ns *ns, *next;
Jianchao Wang6f8e0d72018-02-12 20:54:44 +08003117 LIST_HEAD(rm_list);
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303118
Jianchao Wang765cc032018-02-12 20:54:46 +08003119 down_write(&ctrl->namespaces_rwsem);
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303120 list_for_each_entry_safe(ns, next, &ctrl->namespaces, list) {
Christoph Hellwiged754e52017-11-09 13:50:43 +01003121 if (ns->head->ns_id > nsid)
Jianchao Wang6f8e0d72018-02-12 20:54:44 +08003122 list_move_tail(&ns->list, &rm_list);
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303123 }
Jianchao Wang765cc032018-02-12 20:54:46 +08003124 up_write(&ctrl->namespaces_rwsem);
Jianchao Wang6f8e0d72018-02-12 20:54:44 +08003125
3126 list_for_each_entry_safe(ns, next, &rm_list, list)
3127 nvme_ns_remove(ns);
3128
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303129}
3130
Keith Busch540c8012015-10-22 15:45:06 -06003131static int nvme_scan_ns_list(struct nvme_ctrl *ctrl, unsigned nn)
3132{
3133 struct nvme_ns *ns;
3134 __le32 *ns_list;
3135 unsigned i, j, nsid, prev = 0, num_lists = DIV_ROUND_UP(nn, 1024);
3136 int ret = 0;
3137
Minwoo Im42595eb2018-02-08 22:56:31 +09003138 ns_list = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL);
Keith Busch540c8012015-10-22 15:45:06 -06003139 if (!ns_list)
3140 return -ENOMEM;
3141
3142 for (i = 0; i < num_lists; i++) {
3143 ret = nvme_identify_ns_list(ctrl, prev, ns_list);
3144 if (ret)
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303145 goto free;
Keith Busch540c8012015-10-22 15:45:06 -06003146
3147 for (j = 0; j < min(nn, 1024U); j++) {
3148 nsid = le32_to_cpu(ns_list[j]);
3149 if (!nsid)
3150 goto out;
3151
3152 nvme_validate_ns(ctrl, nsid);
3153
3154 while (++prev < nsid) {
Keith Busch32f0c4a2016-07-13 11:45:02 -06003155 ns = nvme_find_get_ns(ctrl, prev);
3156 if (ns) {
Keith Busch540c8012015-10-22 15:45:06 -06003157 nvme_ns_remove(ns);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003158 nvme_put_ns(ns);
3159 }
Keith Busch540c8012015-10-22 15:45:06 -06003160 }
3161 }
3162 nn -= j;
3163 }
3164 out:
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303165 nvme_remove_invalid_namespaces(ctrl, prev);
3166 free:
Keith Busch540c8012015-10-22 15:45:06 -06003167 kfree(ns_list);
3168 return ret;
3169}
3170
Christoph Hellwig5955be22016-04-26 13:51:59 +02003171static void nvme_scan_ns_sequential(struct nvme_ctrl *ctrl, unsigned nn)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003172{
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003173 unsigned i;
3174
Keith Busch540c8012015-10-22 15:45:06 -06003175 for (i = 1; i <= nn; i++)
3176 nvme_validate_ns(ctrl, i);
3177
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303178 nvme_remove_invalid_namespaces(ctrl, nn);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003179}
3180
Christoph Hellwig5955be22016-04-26 13:51:59 +02003181static void nvme_scan_work(struct work_struct *work)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003182{
Christoph Hellwig5955be22016-04-26 13:51:59 +02003183 struct nvme_ctrl *ctrl =
3184 container_of(work, struct nvme_ctrl, scan_work);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003185 struct nvme_id_ctrl *id;
Keith Busch540c8012015-10-22 15:45:06 -06003186 unsigned nn;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003187
Christoph Hellwig5955be22016-04-26 13:51:59 +02003188 if (ctrl->state != NVME_CTRL_LIVE)
3189 return;
3190
Jianchao Wang2b1b7e72018-01-06 08:01:58 +08003191 WARN_ON_ONCE(!ctrl->tagset);
3192
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003193 if (nvme_identify_ctrl(ctrl, &id))
3194 return;
Keith Busch540c8012015-10-22 15:45:06 -06003195
3196 nn = le32_to_cpu(id->nn);
Gabriel Krisman Bertazi8ef20742016-10-19 09:51:05 -06003197 if (ctrl->vs >= NVME_VS(1, 1, 0) &&
Keith Busch540c8012015-10-22 15:45:06 -06003198 !(ctrl->quirks & NVME_QUIRK_IDENTIFY_CNS)) {
3199 if (!nvme_scan_ns_list(ctrl, nn))
3200 goto done;
3201 }
Christoph Hellwig5955be22016-04-26 13:51:59 +02003202 nvme_scan_ns_sequential(ctrl, nn);
Keith Busch540c8012015-10-22 15:45:06 -06003203 done:
Jianchao Wang765cc032018-02-12 20:54:46 +08003204 down_write(&ctrl->namespaces_rwsem);
Keith Busch540c8012015-10-22 15:45:06 -06003205 list_sort(NULL, &ctrl->namespaces, ns_cmp);
Jianchao Wang765cc032018-02-12 20:54:46 +08003206 up_write(&ctrl->namespaces_rwsem);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003207 kfree(id);
3208}
Christoph Hellwig5955be22016-04-26 13:51:59 +02003209
3210void nvme_queue_scan(struct nvme_ctrl *ctrl)
3211{
3212 /*
Jianchao Wang2b1b7e72018-01-06 08:01:58 +08003213 * Only new queue scan work when admin and IO queues are both alive
Christoph Hellwig5955be22016-04-26 13:51:59 +02003214 */
3215 if (ctrl->state == NVME_CTRL_LIVE)
Sagi Grimbergc669ccd2017-05-04 13:33:14 +03003216 queue_work(nvme_wq, &ctrl->scan_work);
Christoph Hellwig5955be22016-04-26 13:51:59 +02003217}
3218EXPORT_SYMBOL_GPL(nvme_queue_scan);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003219
Keith Busch32f0c4a2016-07-13 11:45:02 -06003220/*
3221 * This function iterates the namespace list unlocked to allow recovery from
3222 * controller failure. It is up to the caller to ensure the namespace list is
3223 * not modified by scan work while this function is executing.
3224 */
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003225void nvme_remove_namespaces(struct nvme_ctrl *ctrl)
3226{
3227 struct nvme_ns *ns, *next;
Jianchao Wang6f8e0d72018-02-12 20:54:44 +08003228 LIST_HEAD(ns_list);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003229
Keith Busch0ff9d4e2016-05-12 08:37:14 -06003230 /*
3231 * The dead states indicates the controller was not gracefully
3232 * disconnected. In that case, we won't be able to flush any data while
3233 * removing the namespaces' disks; fail all the queues now to avoid
3234 * potentially having to clean up the failed sync later.
3235 */
3236 if (ctrl->state == NVME_CTRL_DEAD)
3237 nvme_kill_queues(ctrl);
3238
Jianchao Wang765cc032018-02-12 20:54:46 +08003239 down_write(&ctrl->namespaces_rwsem);
Jianchao Wang6f8e0d72018-02-12 20:54:44 +08003240 list_splice_init(&ctrl->namespaces, &ns_list);
Jianchao Wang765cc032018-02-12 20:54:46 +08003241 up_write(&ctrl->namespaces_rwsem);
Jianchao Wang6f8e0d72018-02-12 20:54:44 +08003242
3243 list_for_each_entry_safe(ns, next, &ns_list, list)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003244 nvme_ns_remove(ns);
3245}
Ming Lin576d55d2016-02-10 10:03:32 -08003246EXPORT_SYMBOL_GPL(nvme_remove_namespaces);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003247
Keith Busche3d78742017-11-07 15:13:14 -07003248static void nvme_aen_uevent(struct nvme_ctrl *ctrl)
3249{
3250 char *envp[2] = { NULL, NULL };
3251 u32 aen_result = ctrl->aen_result;
3252
3253 ctrl->aen_result = 0;
3254 if (!aen_result)
3255 return;
3256
3257 envp[0] = kasprintf(GFP_KERNEL, "NVME_AEN=%#08x", aen_result);
3258 if (!envp[0])
3259 return;
3260 kobject_uevent_env(&ctrl->device->kobj, KOBJ_CHANGE, envp);
3261 kfree(envp[0]);
3262}
3263
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003264static void nvme_async_event_work(struct work_struct *work)
3265{
3266 struct nvme_ctrl *ctrl =
3267 container_of(work, struct nvme_ctrl, async_event_work);
3268
Keith Busche3d78742017-11-07 15:13:14 -07003269 nvme_aen_uevent(ctrl);
Keith Buschad22c352017-11-07 15:13:12 -07003270 ctrl->ops->submit_async_event(ctrl);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003271}
3272
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303273static bool nvme_ctrl_pp_status(struct nvme_ctrl *ctrl)
3274{
3275
3276 u32 csts;
3277
3278 if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts))
3279 return false;
3280
3281 if (csts == ~0)
3282 return false;
3283
3284 return ((ctrl->ctrl_config & NVME_CC_ENABLE) && (csts & NVME_CSTS_PP));
3285}
3286
3287static void nvme_get_fw_slot_info(struct nvme_ctrl *ctrl)
3288{
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303289 struct nvme_fw_slot_info_log *log;
3290
3291 log = kmalloc(sizeof(*log), GFP_KERNEL);
3292 if (!log)
3293 return;
3294
Keith Buschc627c482017-11-07 10:28:31 -07003295 if (nvme_get_log(ctrl, NVME_LOG_FW_SLOT, log, sizeof(*log)))
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303296 dev_warn(ctrl->device,
3297 "Get FW SLOT INFO log error\n");
3298 kfree(log);
3299}
3300
3301static void nvme_fw_act_work(struct work_struct *work)
3302{
3303 struct nvme_ctrl *ctrl = container_of(work,
3304 struct nvme_ctrl, fw_act_work);
3305 unsigned long fw_act_timeout;
3306
3307 if (ctrl->mtfa)
3308 fw_act_timeout = jiffies +
3309 msecs_to_jiffies(ctrl->mtfa * 100);
3310 else
3311 fw_act_timeout = jiffies +
3312 msecs_to_jiffies(admin_timeout * 1000);
3313
3314 nvme_stop_queues(ctrl);
3315 while (nvme_ctrl_pp_status(ctrl)) {
3316 if (time_after(jiffies, fw_act_timeout)) {
3317 dev_warn(ctrl->device,
3318 "Fw activation timeout, reset controller\n");
3319 nvme_reset_ctrl(ctrl);
3320 break;
3321 }
3322 msleep(100);
3323 }
3324
3325 if (ctrl->state != NVME_CTRL_LIVE)
3326 return;
3327
3328 nvme_start_queues(ctrl);
Minwoo Ima806c6c2017-11-02 18:07:44 +09003329 /* read FW slot information to clear the AER */
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303330 nvme_get_fw_slot_info(ctrl);
3331}
3332
Christoph Hellwig7bf58532016-11-10 07:32:34 -08003333void nvme_complete_async_event(struct nvme_ctrl *ctrl, __le16 status,
3334 union nvme_result *res)
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003335{
Christoph Hellwig7bf58532016-11-10 07:32:34 -08003336 u32 result = le32_to_cpu(res->u32);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003337
Keith Buschad22c352017-11-07 15:13:12 -07003338 if (le16_to_cpu(status) >> 1 != NVME_SC_SUCCESS)
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003339 return;
3340
Keith Busche3d78742017-11-07 15:13:14 -07003341 switch (result & 0x7) {
3342 case NVME_AER_ERROR:
3343 case NVME_AER_SMART:
3344 case NVME_AER_CSS:
3345 case NVME_AER_VS:
3346 ctrl->aen_result = result;
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003347 break;
3348 default:
3349 break;
3350 }
3351
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003352 switch (result & 0xff07) {
3353 case NVME_AER_NOTICE_NS_CHANGED:
3354 dev_info(ctrl->device, "rescanning\n");
3355 nvme_queue_scan(ctrl);
3356 break;
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303357 case NVME_AER_NOTICE_FW_ACT_STARTING:
Sagi Grimberg1a40d972017-09-21 17:01:36 +03003358 queue_work(nvme_wq, &ctrl->fw_act_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303359 break;
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003360 default:
3361 dev_warn(ctrl->device, "async event result %08x\n", result);
3362 }
Sagi Grimbergc669ccd2017-05-04 13:33:14 +03003363 queue_work(nvme_wq, &ctrl->async_event_work);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003364}
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003365EXPORT_SYMBOL_GPL(nvme_complete_async_event);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003366
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003367void nvme_stop_ctrl(struct nvme_ctrl *ctrl)
Ming Lin576d55d2016-02-10 10:03:32 -08003368{
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003369 nvme_stop_keep_alive(ctrl);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003370 flush_work(&ctrl->async_event_work);
Christoph Hellwig5955be22016-04-26 13:51:59 +02003371 flush_work(&ctrl->scan_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303372 cancel_work_sync(&ctrl->fw_act_work);
Nitzan Carmib435ece2018-03-20 11:07:30 +00003373 if (ctrl->ops->stop_ctrl)
3374 ctrl->ops->stop_ctrl(ctrl);
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003375}
3376EXPORT_SYMBOL_GPL(nvme_stop_ctrl);
Christoph Hellwig5955be22016-04-26 13:51:59 +02003377
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003378void nvme_start_ctrl(struct nvme_ctrl *ctrl)
3379{
3380 if (ctrl->kato)
3381 nvme_start_keep_alive(ctrl);
3382
3383 if (ctrl->queue_count > 1) {
3384 nvme_queue_scan(ctrl);
Keith Buschd99ca602017-11-07 15:13:13 -07003385 queue_work(nvme_wq, &ctrl->async_event_work);
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003386 nvme_start_queues(ctrl);
3387 }
3388}
3389EXPORT_SYMBOL_GPL(nvme_start_ctrl);
3390
3391void nvme_uninit_ctrl(struct nvme_ctrl *ctrl)
3392{
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003393 cdev_device_del(&ctrl->cdev, ctrl->device);
Keith Busch53029b02015-11-28 15:41:02 +01003394}
Ming Lin576d55d2016-02-10 10:03:32 -08003395EXPORT_SYMBOL_GPL(nvme_uninit_ctrl);
Keith Busch53029b02015-11-28 15:41:02 +01003396
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003397static void nvme_free_ctrl(struct device *dev)
Keith Busch53029b02015-11-28 15:41:02 +01003398{
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003399 struct nvme_ctrl *ctrl =
3400 container_of(dev, struct nvme_ctrl, ctrl_device);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003401 struct nvme_subsystem *subsys = ctrl->subsys;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003402
Christoph Hellwig9843f682017-10-18 13:10:01 +02003403 ida_simple_remove(&nvme_instance_ida, ctrl->instance);
Keith Busch84fef622017-11-07 10:28:32 -07003404 kfree(ctrl->effects);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003405
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003406 if (subsys) {
3407 mutex_lock(&subsys->lock);
3408 list_del(&ctrl->subsys_entry);
3409 mutex_unlock(&subsys->lock);
3410 sysfs_remove_link(&subsys->dev.kobj, dev_name(ctrl->device));
3411 }
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003412
3413 ctrl->ops->free_ctrl(ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003414
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003415 if (subsys)
3416 nvme_put_subsystem(subsys);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003417}
3418
3419/*
3420 * Initialize a NVMe controller structures. This needs to be called during
3421 * earliest initialization so that we have the initialized structured around
3422 * during probing.
3423 */
3424int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev,
3425 const struct nvme_ctrl_ops *ops, unsigned long quirks)
3426{
3427 int ret;
3428
Christoph Hellwigbb8d2612016-04-26 13:51:57 +02003429 ctrl->state = NVME_CTRL_NEW;
3430 spin_lock_init(&ctrl->lock);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003431 INIT_LIST_HEAD(&ctrl->namespaces);
Jianchao Wang765cc032018-02-12 20:54:46 +08003432 init_rwsem(&ctrl->namespaces_rwsem);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003433 ctrl->dev = dev;
3434 ctrl->ops = ops;
3435 ctrl->quirks = quirks;
Christoph Hellwig5955be22016-04-26 13:51:59 +02003436 INIT_WORK(&ctrl->scan_work, nvme_scan_work);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003437 INIT_WORK(&ctrl->async_event_work, nvme_async_event_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303438 INIT_WORK(&ctrl->fw_act_work, nvme_fw_act_work);
Christoph Hellwigc5017e82017-10-29 10:44:29 +02003439 INIT_WORK(&ctrl->delete_work, nvme_delete_ctrl_work);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003440
Christoph Hellwig9843f682017-10-18 13:10:01 +02003441 ret = ida_simple_get(&nvme_instance_ida, 0, 0, GFP_KERNEL);
3442 if (ret < 0)
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003443 goto out;
Christoph Hellwig9843f682017-10-18 13:10:01 +02003444 ctrl->instance = ret;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003445
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003446 device_initialize(&ctrl->ctrl_device);
3447 ctrl->device = &ctrl->ctrl_device;
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003448 ctrl->device->devt = MKDEV(MAJOR(nvme_chr_devt), ctrl->instance);
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003449 ctrl->device->class = nvme_class;
3450 ctrl->device->parent = ctrl->dev;
3451 ctrl->device->groups = nvme_dev_attr_groups;
3452 ctrl->device->release = nvme_free_ctrl;
3453 dev_set_drvdata(ctrl->device, ctrl);
3454 ret = dev_set_name(ctrl->device, "nvme%d", ctrl->instance);
3455 if (ret)
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003456 goto out_release_instance;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003457
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003458 cdev_init(&ctrl->cdev, &nvme_dev_fops);
3459 ctrl->cdev.owner = ops->module;
3460 ret = cdev_device_add(&ctrl->cdev, ctrl->device);
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003461 if (ret)
3462 goto out_free_name;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003463
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08003464 /*
3465 * Initialize latency tolerance controls. The sysfs files won't
3466 * be visible to userspace unless the device actually supports APST.
3467 */
3468 ctrl->device->power.set_latency_tolerance = nvme_set_latency_tolerance;
3469 dev_pm_qos_update_user_latency_tolerance(ctrl->device,
3470 min(default_ps_max_latency_us, (unsigned long)S32_MAX));
3471
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003472 return 0;
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003473out_free_name:
3474 kfree_const(dev->kobj.name);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003475out_release_instance:
Christoph Hellwig9843f682017-10-18 13:10:01 +02003476 ida_simple_remove(&nvme_instance_ida, ctrl->instance);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003477out:
3478 return ret;
3479}
Ming Lin576d55d2016-02-10 10:03:32 -08003480EXPORT_SYMBOL_GPL(nvme_init_ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003481
Keith Busch69d9a992016-02-24 09:15:56 -07003482/**
3483 * nvme_kill_queues(): Ends all namespace queues
3484 * @ctrl: the dead controller that needs to end
3485 *
3486 * Call this function when the driver determines it is unable to get the
3487 * controller in a state capable of servicing IO.
3488 */
3489void nvme_kill_queues(struct nvme_ctrl *ctrl)
3490{
3491 struct nvme_ns *ns;
3492
Jianchao Wang765cc032018-02-12 20:54:46 +08003493 down_read(&ctrl->namespaces_rwsem);
Ming Lei82654b62017-06-02 16:32:08 +08003494
Ming Lei443bd902017-06-19 10:21:08 +08003495 /* Forcibly unquiesce queues to avoid blocking dispatch */
Scott Bauer7dd1ab12017-07-25 10:27:06 -06003496 if (ctrl->admin_q)
3497 blk_mq_unquiesce_queue(ctrl->admin_q);
Ming Lei443bd902017-06-19 10:21:08 +08003498
Keith Busch32f0c4a2016-07-13 11:45:02 -06003499 list_for_each_entry(ns, &ctrl->namespaces, list) {
Keith Busch69d9a992016-02-24 09:15:56 -07003500 /*
3501 * Revalidating a dead namespace sets capacity to 0. This will
3502 * end buffered writers dirtying pages that can't be synced.
3503 */
Keith Buschf33447b2017-02-10 18:15:51 -05003504 if (!ns->disk || test_and_set_bit(NVME_NS_DEAD, &ns->flags))
3505 continue;
3506 revalidate_disk(ns->disk);
Keith Busch69d9a992016-02-24 09:15:56 -07003507 blk_set_queue_dying(ns->queue);
Ming Lei806f0262017-05-22 23:05:03 +08003508
Ming Lei443bd902017-06-19 10:21:08 +08003509 /* Forcibly unquiesce queues to avoid blocking dispatch */
3510 blk_mq_unquiesce_queue(ns->queue);
Keith Busch69d9a992016-02-24 09:15:56 -07003511 }
Jianchao Wang765cc032018-02-12 20:54:46 +08003512 up_read(&ctrl->namespaces_rwsem);
Keith Busch69d9a992016-02-24 09:15:56 -07003513}
Linus Torvalds237045f2016-03-18 17:13:31 -07003514EXPORT_SYMBOL_GPL(nvme_kill_queues);
Keith Busch69d9a992016-02-24 09:15:56 -07003515
Keith Busch302ad8c2017-03-01 14:22:12 -05003516void nvme_unfreeze(struct nvme_ctrl *ctrl)
3517{
3518 struct nvme_ns *ns;
3519
Jianchao Wang765cc032018-02-12 20:54:46 +08003520 down_read(&ctrl->namespaces_rwsem);
Keith Busch302ad8c2017-03-01 14:22:12 -05003521 list_for_each_entry(ns, &ctrl->namespaces, list)
3522 blk_mq_unfreeze_queue(ns->queue);
Jianchao Wang765cc032018-02-12 20:54:46 +08003523 up_read(&ctrl->namespaces_rwsem);
Keith Busch302ad8c2017-03-01 14:22:12 -05003524}
3525EXPORT_SYMBOL_GPL(nvme_unfreeze);
3526
3527void nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout)
3528{
3529 struct nvme_ns *ns;
3530
Jianchao Wang765cc032018-02-12 20:54:46 +08003531 down_read(&ctrl->namespaces_rwsem);
Keith Busch302ad8c2017-03-01 14:22:12 -05003532 list_for_each_entry(ns, &ctrl->namespaces, list) {
3533 timeout = blk_mq_freeze_queue_wait_timeout(ns->queue, timeout);
3534 if (timeout <= 0)
3535 break;
3536 }
Jianchao Wang765cc032018-02-12 20:54:46 +08003537 up_read(&ctrl->namespaces_rwsem);
Keith Busch302ad8c2017-03-01 14:22:12 -05003538}
3539EXPORT_SYMBOL_GPL(nvme_wait_freeze_timeout);
3540
3541void nvme_wait_freeze(struct nvme_ctrl *ctrl)
3542{
3543 struct nvme_ns *ns;
3544
Jianchao Wang765cc032018-02-12 20:54:46 +08003545 down_read(&ctrl->namespaces_rwsem);
Keith Busch302ad8c2017-03-01 14:22:12 -05003546 list_for_each_entry(ns, &ctrl->namespaces, list)
3547 blk_mq_freeze_queue_wait(ns->queue);
Jianchao Wang765cc032018-02-12 20:54:46 +08003548 up_read(&ctrl->namespaces_rwsem);
Keith Busch302ad8c2017-03-01 14:22:12 -05003549}
3550EXPORT_SYMBOL_GPL(nvme_wait_freeze);
3551
3552void nvme_start_freeze(struct nvme_ctrl *ctrl)
3553{
3554 struct nvme_ns *ns;
3555
Jianchao Wang765cc032018-02-12 20:54:46 +08003556 down_read(&ctrl->namespaces_rwsem);
Keith Busch302ad8c2017-03-01 14:22:12 -05003557 list_for_each_entry(ns, &ctrl->namespaces, list)
Ming Lei1671d522017-03-27 20:06:57 +08003558 blk_freeze_queue_start(ns->queue);
Jianchao Wang765cc032018-02-12 20:54:46 +08003559 up_read(&ctrl->namespaces_rwsem);
Keith Busch302ad8c2017-03-01 14:22:12 -05003560}
3561EXPORT_SYMBOL_GPL(nvme_start_freeze);
3562
Keith Busch25646262016-01-04 09:10:57 -07003563void nvme_stop_queues(struct nvme_ctrl *ctrl)
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003564{
3565 struct nvme_ns *ns;
3566
Jianchao Wang765cc032018-02-12 20:54:46 +08003567 down_read(&ctrl->namespaces_rwsem);
Bart Van Asschea6eaa882016-10-28 17:23:40 -07003568 list_for_each_entry(ns, &ctrl->namespaces, list)
Bart Van Assche3174dd32016-10-28 17:23:19 -07003569 blk_mq_quiesce_queue(ns->queue);
Jianchao Wang765cc032018-02-12 20:54:46 +08003570 up_read(&ctrl->namespaces_rwsem);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003571}
Ming Lin576d55d2016-02-10 10:03:32 -08003572EXPORT_SYMBOL_GPL(nvme_stop_queues);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003573
Keith Busch25646262016-01-04 09:10:57 -07003574void nvme_start_queues(struct nvme_ctrl *ctrl)
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003575{
3576 struct nvme_ns *ns;
3577
Jianchao Wang765cc032018-02-12 20:54:46 +08003578 down_read(&ctrl->namespaces_rwsem);
Sagi Grimberg8d7b8fa2017-07-04 18:16:58 +03003579 list_for_each_entry(ns, &ctrl->namespaces, list)
Ming Leif6601742017-06-06 23:22:04 +08003580 blk_mq_unquiesce_queue(ns->queue);
Jianchao Wang765cc032018-02-12 20:54:46 +08003581 up_read(&ctrl->namespaces_rwsem);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003582}
Ming Lin576d55d2016-02-10 10:03:32 -08003583EXPORT_SYMBOL_GPL(nvme_start_queues);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003584
Sagi Grimberg31b84462017-10-11 12:53:07 +03003585int nvme_reinit_tagset(struct nvme_ctrl *ctrl, struct blk_mq_tag_set *set)
3586{
3587 if (!ctrl->ops->reinit_request)
3588 return 0;
3589
3590 return blk_mq_tagset_iter(set, set->driver_data,
3591 ctrl->ops->reinit_request);
3592}
3593EXPORT_SYMBOL_GPL(nvme_reinit_tagset);
3594
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003595int __init nvme_core_init(void)
3596{
Roy Shtermanb227c592018-01-14 12:39:02 +02003597 int result = -ENOMEM;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003598
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003599 nvme_wq = alloc_workqueue("nvme-wq",
3600 WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
3601 if (!nvme_wq)
Roy Shtermanb227c592018-01-14 12:39:02 +02003602 goto out;
3603
3604 nvme_reset_wq = alloc_workqueue("nvme-reset-wq",
3605 WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
3606 if (!nvme_reset_wq)
3607 goto destroy_wq;
3608
3609 nvme_delete_wq = alloc_workqueue("nvme-delete-wq",
3610 WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
3611 if (!nvme_delete_wq)
3612 goto destroy_reset_wq;
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003613
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003614 result = alloc_chrdev_region(&nvme_chr_devt, 0, NVME_MINORS, "nvme");
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003615 if (result < 0)
Roy Shtermanb227c592018-01-14 12:39:02 +02003616 goto destroy_delete_wq;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003617
3618 nvme_class = class_create(THIS_MODULE, "nvme");
3619 if (IS_ERR(nvme_class)) {
3620 result = PTR_ERR(nvme_class);
3621 goto unregister_chrdev;
3622 }
3623
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003624 nvme_subsys_class = class_create(THIS_MODULE, "nvme-subsystem");
3625 if (IS_ERR(nvme_subsys_class)) {
3626 result = PTR_ERR(nvme_subsys_class);
3627 goto destroy_class;
3628 }
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003629 return 0;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003630
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003631destroy_class:
3632 class_destroy(nvme_class);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003633unregister_chrdev:
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003634 unregister_chrdev_region(nvme_chr_devt, NVME_MINORS);
Roy Shtermanb227c592018-01-14 12:39:02 +02003635destroy_delete_wq:
3636 destroy_workqueue(nvme_delete_wq);
3637destroy_reset_wq:
3638 destroy_workqueue(nvme_reset_wq);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003639destroy_wq:
3640 destroy_workqueue(nvme_wq);
Roy Shtermanb227c592018-01-14 12:39:02 +02003641out:
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003642 return result;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003643}
3644
3645void nvme_core_exit(void)
3646{
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003647 ida_destroy(&nvme_subsystems_ida);
3648 class_destroy(nvme_subsys_class);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003649 class_destroy(nvme_class);
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003650 unregister_chrdev_region(nvme_chr_devt, NVME_MINORS);
Roy Shtermanb227c592018-01-14 12:39:02 +02003651 destroy_workqueue(nvme_delete_wq);
3652 destroy_workqueue(nvme_reset_wq);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003653 destroy_workqueue(nvme_wq);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003654}
Ming Lin576d55d2016-02-10 10:03:32 -08003655
3656MODULE_LICENSE("GPL");
3657MODULE_VERSION("1.0");
3658module_init(nvme_core_init);
3659module_exit(nvme_core_exit);