blob: 07b9f4e1c283d294419da08ac5ea460795dacef7 [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
32#include "nvme.h"
Sagi Grimberg038bd4c2016-06-13 16:45:28 +020033#include "fabrics.h"
Christoph Hellwig21d34712015-11-26 09:08:36 +010034
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +010035#define NVME_MINORS (1U << MINORBITS)
36
Marc Olson8ae4e442017-09-06 17:23:56 -070037unsigned int admin_timeout = 60;
38module_param(admin_timeout, uint, 0644);
Ming Linba0ba7d2016-02-10 10:03:30 -080039MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
Ming Lin576d55d2016-02-10 10:03:32 -080040EXPORT_SYMBOL_GPL(admin_timeout);
Ming Linba0ba7d2016-02-10 10:03:30 -080041
Marc Olson8ae4e442017-09-06 17:23:56 -070042unsigned int nvme_io_timeout = 30;
43module_param_named(io_timeout, nvme_io_timeout, uint, 0644);
Ming Linba0ba7d2016-02-10 10:03:30 -080044MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
Ming Lin576d55d2016-02-10 10:03:32 -080045EXPORT_SYMBOL_GPL(nvme_io_timeout);
Ming Linba0ba7d2016-02-10 10:03:30 -080046
Christoph Hellwigb3b1b0b2017-06-12 18:30:51 +020047static unsigned char shutdown_timeout = 5;
Ming Linba0ba7d2016-02-10 10:03:30 -080048module_param(shutdown_timeout, byte, 0644);
49MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
50
Christoph Hellwig44e44b22017-04-05 19:18:11 +020051static u8 nvme_max_retries = 5;
52module_param_named(max_retries, nvme_max_retries, byte, 0644);
Keith Buschf80ec962016-07-12 16:20:31 -070053MODULE_PARM_DESC(max_retries, "max number of retries a command may have");
Christoph Hellwig5bae7f72015-11-28 15:39:07 +010054
Kai-Heng Feng9947d6a2017-06-07 15:25:43 +080055static unsigned long default_ps_max_latency_us = 100000;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -080056module_param(default_ps_max_latency_us, ulong, 0644);
57MODULE_PARM_DESC(default_ps_max_latency_us,
58 "max power saving latency for new devices; use PM QOS to change per device");
59
Andy Lutomirskic35e30b2017-04-21 16:19:24 -070060static bool force_apst;
61module_param(force_apst, bool, 0644);
62MODULE_PARM_DESC(force_apst, "allow APST for newly enumerated devices even if quirked off");
63
Jens Axboef5d11842017-06-27 12:03:06 -060064static bool streams;
65module_param(streams, bool, 0644);
66MODULE_PARM_DESC(streams, "turn on support for Streams write directives");
67
Sagi Grimberg9a6327d2017-06-07 20:31:55 +020068struct workqueue_struct *nvme_wq;
69EXPORT_SYMBOL_GPL(nvme_wq);
70
Christoph Hellwig9843f682017-10-18 13:10:01 +020071static DEFINE_IDA(nvme_instance_ida);
Christoph Hellwiga6a51492017-10-18 16:59:25 +020072static dev_t nvme_chr_devt;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +010073static struct class *nvme_class;
74
Arnav Dawnb6dccf72017-07-12 16:10:40 +053075static __le32 nvme_get_log_dw10(u8 lid, size_t size)
76{
77 return cpu_to_le32((((size / 4) - 1) << 16) | lid);
78}
79
Christoph Hellwigd86c4d82017-06-15 15:41:08 +020080int nvme_reset_ctrl(struct nvme_ctrl *ctrl)
81{
82 if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_RESETTING))
83 return -EBUSY;
84 if (!queue_work(nvme_wq, &ctrl->reset_work))
85 return -EBUSY;
86 return 0;
87}
88EXPORT_SYMBOL_GPL(nvme_reset_ctrl);
89
90static int nvme_reset_ctrl_sync(struct nvme_ctrl *ctrl)
91{
92 int ret;
93
94 ret = nvme_reset_ctrl(ctrl);
95 if (!ret)
96 flush_work(&ctrl->reset_work);
97 return ret;
98}
99
Christoph Hellwigc5017e82017-10-29 10:44:29 +0200100static void nvme_delete_ctrl_work(struct work_struct *work)
101{
102 struct nvme_ctrl *ctrl =
103 container_of(work, struct nvme_ctrl, delete_work);
104
Sagi Grimberg40546372017-10-29 14:21:02 +0200105 flush_work(&ctrl->reset_work);
Christoph Hellwig6cd53d12017-10-29 10:44:31 +0200106 nvme_stop_ctrl(ctrl);
107 nvme_remove_namespaces(ctrl);
Christoph Hellwigc5017e82017-10-29 10:44:29 +0200108 ctrl->ops->delete_ctrl(ctrl);
Christoph Hellwig6cd53d12017-10-29 10:44:31 +0200109 nvme_uninit_ctrl(ctrl);
110 nvme_put_ctrl(ctrl);
Christoph Hellwigc5017e82017-10-29 10:44:29 +0200111}
112
113int nvme_delete_ctrl(struct nvme_ctrl *ctrl)
114{
115 if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING))
116 return -EBUSY;
117 if (!queue_work(nvme_wq, &ctrl->delete_work))
118 return -EBUSY;
119 return 0;
120}
121EXPORT_SYMBOL_GPL(nvme_delete_ctrl);
122
123int nvme_delete_ctrl_sync(struct nvme_ctrl *ctrl)
124{
125 int ret = 0;
126
127 /*
128 * Keep a reference until the work is flushed since ->delete_ctrl
129 * can free the controller.
130 */
131 nvme_get_ctrl(ctrl);
132 ret = nvme_delete_ctrl(ctrl);
133 if (!ret)
134 flush_work(&ctrl->delete_work);
135 nvme_put_ctrl(ctrl);
136 return ret;
137}
138EXPORT_SYMBOL_GPL(nvme_delete_ctrl_sync);
139
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200140static blk_status_t nvme_error_status(struct request *req)
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200141{
142 switch (nvme_req(req)->status & 0x7ff) {
143 case NVME_SC_SUCCESS:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200144 return BLK_STS_OK;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200145 case NVME_SC_CAP_EXCEEDED:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200146 return BLK_STS_NOSPC;
Junxiong Guane02ab022017-04-21 12:59:07 +0200147 case NVME_SC_ONCS_NOT_SUPPORTED:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200148 return BLK_STS_NOTSUPP;
Junxiong Guane02ab022017-04-21 12:59:07 +0200149 case NVME_SC_WRITE_FAULT:
150 case NVME_SC_READ_ERROR:
151 case NVME_SC_UNWRITTEN_BLOCK:
Christoph Hellwiga751da32017-08-22 10:17:03 +0200152 case NVME_SC_ACCESS_DENIED:
153 case NVME_SC_READ_ONLY:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200154 return BLK_STS_MEDIUM;
Christoph Hellwiga751da32017-08-22 10:17:03 +0200155 case NVME_SC_GUARD_CHECK:
156 case NVME_SC_APPTAG_CHECK:
157 case NVME_SC_REFTAG_CHECK:
158 case NVME_SC_INVALID_PI:
159 return BLK_STS_PROTECTION;
160 case NVME_SC_RESERVATION_CONFLICT:
161 return BLK_STS_NEXUS;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200162 default:
163 return BLK_STS_IOERR;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200164 }
165}
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200166
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200167static inline bool nvme_req_needs_retry(struct request *req)
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200168{
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200169 if (blk_noretry_request(req))
170 return false;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200171 if (nvme_req(req)->status & NVME_SC_DNR)
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200172 return false;
Christoph Hellwig44e44b22017-04-05 19:18:11 +0200173 if (nvme_req(req)->retries >= nvme_max_retries)
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200174 return false;
175 return true;
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200176}
177
178void nvme_complete_rq(struct request *req)
179{
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200180 if (unlikely(nvme_req(req)->status && nvme_req_needs_retry(req))) {
181 nvme_req(req)->retries++;
Sagi Grimberg8d7b8fa2017-07-04 18:16:58 +0300182 blk_mq_requeue_request(req, true);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200183 return;
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200184 }
185
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200186 blk_mq_end_request(req, nvme_error_status(req));
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200187}
188EXPORT_SYMBOL_GPL(nvme_complete_rq);
189
Ming Linc55a2fd2016-05-18 14:05:02 -0700190void nvme_cancel_request(struct request *req, void *data, bool reserved)
191{
192 int status;
193
194 if (!blk_mq_request_started(req))
195 return;
196
197 dev_dbg_ratelimited(((struct nvme_ctrl *) data)->device,
198 "Cancelling I/O %d", req->tag);
199
200 status = NVME_SC_ABORT_REQ;
201 if (blk_queue_dying(req->q))
202 status |= NVME_SC_DNR;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200203 nvme_req(req)->status = status;
Christoph Hellwig08e00292017-04-20 16:03:09 +0200204 blk_mq_complete_request(req);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200205
Ming Linc55a2fd2016-05-18 14:05:02 -0700206}
207EXPORT_SYMBOL_GPL(nvme_cancel_request);
208
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200209bool nvme_change_ctrl_state(struct nvme_ctrl *ctrl,
210 enum nvme_ctrl_state new_state)
211{
Gabriel Krisman Bertazif6b6a282016-07-29 16:15:18 -0300212 enum nvme_ctrl_state old_state;
Christoph Hellwig0a72bbb2017-08-22 11:42:24 +0200213 unsigned long flags;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200214 bool changed = false;
215
Christoph Hellwig0a72bbb2017-08-22 11:42:24 +0200216 spin_lock_irqsave(&ctrl->lock, flags);
Gabriel Krisman Bertazif6b6a282016-07-29 16:15:18 -0300217
218 old_state = ctrl->state;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200219 switch (new_state) {
220 case NVME_CTRL_LIVE:
221 switch (old_state) {
Christoph Hellwig7d2e8002016-06-13 16:45:22 +0200222 case NVME_CTRL_NEW:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200223 case NVME_CTRL_RESETTING:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900224 case NVME_CTRL_RECONNECTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200225 changed = true;
226 /* FALLTHRU */
227 default:
228 break;
229 }
230 break;
231 case NVME_CTRL_RESETTING:
232 switch (old_state) {
233 case NVME_CTRL_NEW:
234 case NVME_CTRL_LIVE:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900235 changed = true;
236 /* FALLTHRU */
237 default:
238 break;
239 }
240 break;
241 case NVME_CTRL_RECONNECTING:
242 switch (old_state) {
243 case NVME_CTRL_LIVE:
James Smart3cec7f92017-10-25 16:43:13 -0700244 case NVME_CTRL_RESETTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200245 changed = true;
246 /* FALLTHRU */
247 default:
248 break;
249 }
250 break;
251 case NVME_CTRL_DELETING:
252 switch (old_state) {
253 case NVME_CTRL_LIVE:
254 case NVME_CTRL_RESETTING:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900255 case NVME_CTRL_RECONNECTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200256 changed = true;
257 /* FALLTHRU */
258 default:
259 break;
260 }
261 break;
Keith Busch0ff9d4e2016-05-12 08:37:14 -0600262 case NVME_CTRL_DEAD:
263 switch (old_state) {
264 case NVME_CTRL_DELETING:
265 changed = true;
266 /* FALLTHRU */
267 default:
268 break;
269 }
270 break;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200271 default:
272 break;
273 }
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200274
275 if (changed)
276 ctrl->state = new_state;
277
Christoph Hellwig0a72bbb2017-08-22 11:42:24 +0200278 spin_unlock_irqrestore(&ctrl->lock, flags);
Gabriel Krisman Bertazif6b6a282016-07-29 16:15:18 -0300279
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200280 return changed;
281}
282EXPORT_SYMBOL_GPL(nvme_change_ctrl_state);
283
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100284static void nvme_free_ns(struct kref *kref)
285{
286 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
287
Matias Bjørlingb0b4e092016-09-16 14:25:07 +0200288 if (ns->ndev)
289 nvme_nvm_unregister(ns);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100290
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100291 put_disk(ns->disk);
Keith Busch075790e2016-02-24 09:15:53 -0700292 ida_simple_remove(&ns->ctrl->ns_ida, ns->instance);
293 nvme_put_ctrl(ns->ctrl);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100294 kfree(ns);
295}
296
Christoph Hellwig5bae7f72015-11-28 15:39:07 +0100297static void nvme_put_ns(struct nvme_ns *ns)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100298{
299 kref_put(&ns->kref, nvme_free_ns);
300}
301
Christoph Hellwig41609822015-11-20 09:00:02 +0100302struct request *nvme_alloc_request(struct request_queue *q,
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200303 struct nvme_command *cmd, unsigned int flags, int qid)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100304{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100305 unsigned op = nvme_is_write(cmd) ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100306 struct request *req;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100307
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200308 if (qid == NVME_QID_ANY) {
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100309 req = blk_mq_alloc_request(q, op, flags);
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200310 } else {
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100311 req = blk_mq_alloc_request_hctx(q, op, flags,
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200312 qid ? qid - 1 : 0);
313 }
Christoph Hellwig21d34712015-11-26 09:08:36 +0100314 if (IS_ERR(req))
Christoph Hellwig41609822015-11-20 09:00:02 +0100315 return req;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100316
Christoph Hellwig21d34712015-11-26 09:08:36 +0100317 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800318 nvme_req(req)->cmd = cmd;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100319
Christoph Hellwig41609822015-11-20 09:00:02 +0100320 return req;
321}
Ming Lin576d55d2016-02-10 10:03:32 -0800322EXPORT_SYMBOL_GPL(nvme_alloc_request);
Christoph Hellwig41609822015-11-20 09:00:02 +0100323
Jens Axboef5d11842017-06-27 12:03:06 -0600324static int nvme_toggle_streams(struct nvme_ctrl *ctrl, bool enable)
325{
326 struct nvme_command c;
327
328 memset(&c, 0, sizeof(c));
329
330 c.directive.opcode = nvme_admin_directive_send;
Arnav Dawn62346ea2017-07-12 16:11:53 +0530331 c.directive.nsid = cpu_to_le32(NVME_NSID_ALL);
Jens Axboef5d11842017-06-27 12:03:06 -0600332 c.directive.doper = NVME_DIR_SND_ID_OP_ENABLE;
333 c.directive.dtype = NVME_DIR_IDENTIFY;
334 c.directive.tdtype = NVME_DIR_STREAMS;
335 c.directive.endir = enable ? NVME_DIR_ENDIR : 0;
336
337 return nvme_submit_sync_cmd(ctrl->admin_q, &c, NULL, 0);
338}
339
340static int nvme_disable_streams(struct nvme_ctrl *ctrl)
341{
342 return nvme_toggle_streams(ctrl, false);
343}
344
345static int nvme_enable_streams(struct nvme_ctrl *ctrl)
346{
347 return nvme_toggle_streams(ctrl, true);
348}
349
350static int nvme_get_stream_params(struct nvme_ctrl *ctrl,
351 struct streams_directive_params *s, u32 nsid)
352{
353 struct nvme_command c;
354
355 memset(&c, 0, sizeof(c));
356 memset(s, 0, sizeof(*s));
357
358 c.directive.opcode = nvme_admin_directive_recv;
359 c.directive.nsid = cpu_to_le32(nsid);
Kwan (Hingkwan) Huen-SSIa082b422017-08-09 11:26:29 -0700360 c.directive.numd = cpu_to_le32((sizeof(*s) >> 2) - 1);
Jens Axboef5d11842017-06-27 12:03:06 -0600361 c.directive.doper = NVME_DIR_RCV_ST_OP_PARAM;
362 c.directive.dtype = NVME_DIR_STREAMS;
363
364 return nvme_submit_sync_cmd(ctrl->admin_q, &c, s, sizeof(*s));
365}
366
367static int nvme_configure_directives(struct nvme_ctrl *ctrl)
368{
369 struct streams_directive_params s;
370 int ret;
371
372 if (!(ctrl->oacs & NVME_CTRL_OACS_DIRECTIVES))
373 return 0;
374 if (!streams)
375 return 0;
376
377 ret = nvme_enable_streams(ctrl);
378 if (ret)
379 return ret;
380
Arnav Dawn62346ea2017-07-12 16:11:53 +0530381 ret = nvme_get_stream_params(ctrl, &s, NVME_NSID_ALL);
Jens Axboef5d11842017-06-27 12:03:06 -0600382 if (ret)
383 return ret;
384
385 ctrl->nssa = le16_to_cpu(s.nssa);
386 if (ctrl->nssa < BLK_MAX_WRITE_HINTS - 1) {
387 dev_info(ctrl->device, "too few streams (%u) available\n",
388 ctrl->nssa);
389 nvme_disable_streams(ctrl);
390 return 0;
391 }
392
393 ctrl->nr_streams = min_t(unsigned, ctrl->nssa, BLK_MAX_WRITE_HINTS - 1);
394 dev_info(ctrl->device, "Using %u streams\n", ctrl->nr_streams);
395 return 0;
396}
397
398/*
399 * Check if 'req' has a write hint associated with it. If it does, assign
400 * a valid namespace stream to the write.
401 */
402static void nvme_assign_write_stream(struct nvme_ctrl *ctrl,
403 struct request *req, u16 *control,
404 u32 *dsmgmt)
405{
406 enum rw_hint streamid = req->write_hint;
407
408 if (streamid == WRITE_LIFE_NOT_SET || streamid == WRITE_LIFE_NONE)
409 streamid = 0;
410 else {
411 streamid--;
412 if (WARN_ON_ONCE(streamid > ctrl->nr_streams))
413 return;
414
415 *control |= NVME_RW_DTYPE_STREAMS;
416 *dsmgmt |= streamid << 16;
417 }
418
419 if (streamid < ARRAY_SIZE(req->q->write_hints))
420 req->q->write_hints[streamid] += blk_rq_bytes(req) >> 9;
421}
422
Ming Lin8093f7c2016-04-12 13:10:14 -0600423static inline void nvme_setup_flush(struct nvme_ns *ns,
424 struct nvme_command *cmnd)
425{
426 memset(cmnd, 0, sizeof(*cmnd));
427 cmnd->common.opcode = nvme_cmd_flush;
428 cmnd->common.nsid = cpu_to_le32(ns->ns_id);
429}
430
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200431static blk_status_t nvme_setup_discard(struct nvme_ns *ns, struct request *req,
Ming Lin8093f7c2016-04-12 13:10:14 -0600432 struct nvme_command *cmnd)
433{
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100434 unsigned short segments = blk_rq_nr_discard_segments(req), n = 0;
Ming Lin8093f7c2016-04-12 13:10:14 -0600435 struct nvme_dsm_range *range;
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100436 struct bio *bio;
Ming Lin8093f7c2016-04-12 13:10:14 -0600437
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100438 range = kmalloc_array(segments, sizeof(*range), GFP_ATOMIC);
Ming Lin8093f7c2016-04-12 13:10:14 -0600439 if (!range)
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200440 return BLK_STS_RESOURCE;
Ming Lin8093f7c2016-04-12 13:10:14 -0600441
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100442 __rq_for_each_bio(bio, req) {
443 u64 slba = nvme_block_nr(ns, bio->bi_iter.bi_sector);
444 u32 nlb = bio->bi_iter.bi_size >> ns->lba_shift;
445
446 range[n].cattr = cpu_to_le32(0);
447 range[n].nlb = cpu_to_le32(nlb);
448 range[n].slba = cpu_to_le64(slba);
449 n++;
450 }
451
452 if (WARN_ON_ONCE(n != segments)) {
453 kfree(range);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200454 return BLK_STS_IOERR;
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100455 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600456
457 memset(cmnd, 0, sizeof(*cmnd));
458 cmnd->dsm.opcode = nvme_cmd_dsm;
459 cmnd->dsm.nsid = cpu_to_le32(ns->ns_id);
Christoph Hellwigf1dd03a2017-03-31 17:00:05 +0200460 cmnd->dsm.nr = cpu_to_le32(segments - 1);
Ming Lin8093f7c2016-04-12 13:10:14 -0600461 cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
462
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700463 req->special_vec.bv_page = virt_to_page(range);
464 req->special_vec.bv_offset = offset_in_page(range);
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100465 req->special_vec.bv_len = sizeof(*range) * segments;
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700466 req->rq_flags |= RQF_SPECIAL_PAYLOAD;
Ming Lin8093f7c2016-04-12 13:10:14 -0600467
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200468 return BLK_STS_OK;
Ming Lin8093f7c2016-04-12 13:10:14 -0600469}
Ming Lin8093f7c2016-04-12 13:10:14 -0600470
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200471static inline blk_status_t nvme_setup_rw(struct nvme_ns *ns,
472 struct request *req, struct nvme_command *cmnd)
Ming Lin8093f7c2016-04-12 13:10:14 -0600473{
Jens Axboef5d11842017-06-27 12:03:06 -0600474 struct nvme_ctrl *ctrl = ns->ctrl;
Ming Lin8093f7c2016-04-12 13:10:14 -0600475 u16 control = 0;
476 u32 dsmgmt = 0;
477
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200478 /*
479 * If formated with metadata, require the block layer provide a buffer
480 * unless this namespace is formated such that the metadata can be
481 * stripped/generated by the controller with PRACT=1.
482 */
Sagi Grimberg8fa61122017-06-15 16:31:29 +0300483 if (ns && ns->ms &&
484 (!ns->pi_type || ns->ms != sizeof(struct t10_pi_tuple)) &&
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200485 !blk_integrity_rq(req) && !blk_rq_is_passthrough(req))
486 return BLK_STS_NOTSUPP;
487
Ming Lin8093f7c2016-04-12 13:10:14 -0600488 if (req->cmd_flags & REQ_FUA)
489 control |= NVME_RW_FUA;
490 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
491 control |= NVME_RW_LR;
492
493 if (req->cmd_flags & REQ_RAHEAD)
494 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
495
496 memset(cmnd, 0, sizeof(*cmnd));
497 cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
Ming Lin8093f7c2016-04-12 13:10:14 -0600498 cmnd->rw.nsid = cpu_to_le32(ns->ns_id);
499 cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
500 cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
501
Jens Axboef5d11842017-06-27 12:03:06 -0600502 if (req_op(req) == REQ_OP_WRITE && ctrl->nr_streams)
503 nvme_assign_write_stream(ctrl, req, &control, &dsmgmt);
504
Ming Lin8093f7c2016-04-12 13:10:14 -0600505 if (ns->ms) {
506 switch (ns->pi_type) {
507 case NVME_NS_DPS_PI_TYPE3:
508 control |= NVME_RW_PRINFO_PRCHK_GUARD;
509 break;
510 case NVME_NS_DPS_PI_TYPE1:
511 case NVME_NS_DPS_PI_TYPE2:
512 control |= NVME_RW_PRINFO_PRCHK_GUARD |
513 NVME_RW_PRINFO_PRCHK_REF;
514 cmnd->rw.reftag = cpu_to_le32(
515 nvme_block_nr(ns, blk_rq_pos(req)));
516 break;
517 }
518 if (!blk_integrity_rq(req))
519 control |= NVME_RW_PRINFO_PRACT;
520 }
521
522 cmnd->rw.control = cpu_to_le16(control);
523 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200524 return 0;
Ming Lin8093f7c2016-04-12 13:10:14 -0600525}
526
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200527blk_status_t nvme_setup_cmd(struct nvme_ns *ns, struct request *req,
Ming Lin8093f7c2016-04-12 13:10:14 -0600528 struct nvme_command *cmd)
529{
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200530 blk_status_t ret = BLK_STS_OK;
Ming Lin8093f7c2016-04-12 13:10:14 -0600531
Christoph Hellwig987f6992017-04-05 19:18:08 +0200532 if (!(req->rq_flags & RQF_DONTPREP)) {
Christoph Hellwig44e44b22017-04-05 19:18:11 +0200533 nvme_req(req)->retries = 0;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200534 nvme_req(req)->flags = 0;
Christoph Hellwig987f6992017-04-05 19:18:08 +0200535 req->rq_flags |= RQF_DONTPREP;
536 }
537
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100538 switch (req_op(req)) {
539 case REQ_OP_DRV_IN:
540 case REQ_OP_DRV_OUT:
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800541 memcpy(cmd, nvme_req(req)->cmd, sizeof(*cmd));
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100542 break;
543 case REQ_OP_FLUSH:
Ming Lin8093f7c2016-04-12 13:10:14 -0600544 nvme_setup_flush(ns, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100545 break;
Christoph Hellwige850fd12017-04-05 19:21:13 +0200546 case REQ_OP_WRITE_ZEROES:
547 /* currently only aliased to deallocate for a few ctrls: */
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100548 case REQ_OP_DISCARD:
Ming Lin8093f7c2016-04-12 13:10:14 -0600549 ret = nvme_setup_discard(ns, req, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100550 break;
551 case REQ_OP_READ:
552 case REQ_OP_WRITE:
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200553 ret = nvme_setup_rw(ns, req, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100554 break;
555 default:
556 WARN_ON_ONCE(1);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200557 return BLK_STS_IOERR;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100558 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600559
James Smart721b3912016-10-21 23:33:34 +0300560 cmd->common.command_id = req->tag;
Ming Lin8093f7c2016-04-12 13:10:14 -0600561 return ret;
562}
563EXPORT_SYMBOL_GPL(nvme_setup_cmd);
564
Christoph Hellwig41609822015-11-20 09:00:02 +0100565/*
566 * Returns 0 on success. If the result is negative, it's a Linux error code;
567 * if the result is positive, it's an NVM Express status code
568 */
569int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800570 union nvme_result *result, void *buffer, unsigned bufflen,
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200571 unsigned timeout, int qid, int at_head, int flags)
Christoph Hellwig41609822015-11-20 09:00:02 +0100572{
573 struct request *req;
574 int ret;
575
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200576 req = nvme_alloc_request(q, cmd, flags, qid);
Christoph Hellwig41609822015-11-20 09:00:02 +0100577 if (IS_ERR(req))
578 return PTR_ERR(req);
579
580 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
581
Christoph Hellwig21d34712015-11-26 09:08:36 +0100582 if (buffer && bufflen) {
583 ret = blk_rq_map_kern(q, req, buffer, bufflen, GFP_KERNEL);
584 if (ret)
585 goto out;
Christoph Hellwig41609822015-11-20 09:00:02 +0100586 }
587
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200588 blk_execute_rq(req->q, NULL, req, at_head);
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800589 if (result)
590 *result = nvme_req(req)->result;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200591 if (nvme_req(req)->flags & NVME_REQ_CANCELLED)
592 ret = -EINTR;
593 else
594 ret = nvme_req(req)->status;
Christoph Hellwig41609822015-11-20 09:00:02 +0100595 out:
596 blk_mq_free_request(req);
597 return ret;
598}
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200599EXPORT_SYMBOL_GPL(__nvme_submit_sync_cmd);
Christoph Hellwig41609822015-11-20 09:00:02 +0100600
601int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
602 void *buffer, unsigned bufflen)
603{
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200604 return __nvme_submit_sync_cmd(q, cmd, NULL, buffer, bufflen, 0,
605 NVME_QID_ANY, 0, 0);
Christoph Hellwig41609822015-11-20 09:00:02 +0100606}
Ming Lin576d55d2016-02-10 10:03:32 -0800607EXPORT_SYMBOL_GPL(nvme_submit_sync_cmd);
Christoph Hellwig41609822015-11-20 09:00:02 +0100608
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400609static void *nvme_add_user_metadata(struct bio *bio, void __user *ubuf,
610 unsigned len, u32 seed, bool write)
611{
612 struct bio_integrity_payload *bip;
613 int ret = -ENOMEM;
614 void *buf;
615
616 buf = kmalloc(len, GFP_KERNEL);
617 if (!buf)
618 goto out;
619
620 ret = -EFAULT;
621 if (write && copy_from_user(buf, ubuf, len))
622 goto out_free_meta;
623
624 bip = bio_integrity_alloc(bio, GFP_KERNEL, 1);
625 if (IS_ERR(bip)) {
626 ret = PTR_ERR(bip);
627 goto out_free_meta;
628 }
629
630 bip->bip_iter.bi_size = len;
631 bip->bip_iter.bi_sector = seed;
632 ret = bio_integrity_add_page(bio, virt_to_page(buf), len,
633 offset_in_page(buf));
634 if (ret == len)
635 return buf;
636 ret = -ENOMEM;
637out_free_meta:
638 kfree(buf);
639out:
640 return ERR_PTR(ret);
641}
642
Keith Busch63263d62017-08-29 17:46:04 -0400643static int nvme_submit_user_cmd(struct request_queue *q,
Keith Busch485783c2017-08-29 17:46:03 -0400644 struct nvme_command *cmd, void __user *ubuffer,
645 unsigned bufflen, void __user *meta_buffer, unsigned meta_len,
646 u32 meta_seed, u32 *result, unsigned timeout)
Christoph Hellwig41609822015-11-20 09:00:02 +0100647{
Christoph Hellwig7a5abb42016-06-06 23:20:49 +0200648 bool write = nvme_is_write(cmd);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600649 struct nvme_ns *ns = q->queuedata;
650 struct gendisk *disk = ns ? ns->disk : NULL;
Christoph Hellwig41609822015-11-20 09:00:02 +0100651 struct request *req;
Keith Busch0b7f1f22015-10-23 09:47:28 -0600652 struct bio *bio = NULL;
653 void *meta = NULL;
Christoph Hellwig41609822015-11-20 09:00:02 +0100654 int ret;
655
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200656 req = nvme_alloc_request(q, cmd, 0, NVME_QID_ANY);
Christoph Hellwig41609822015-11-20 09:00:02 +0100657 if (IS_ERR(req))
658 return PTR_ERR(req);
659
660 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
661
662 if (ubuffer && bufflen) {
Christoph Hellwig21d34712015-11-26 09:08:36 +0100663 ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen,
664 GFP_KERNEL);
665 if (ret)
666 goto out;
667 bio = req->bio;
Christoph Hellwig74d46992017-08-23 19:10:32 +0200668 bio->bi_disk = disk;
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400669 if (disk && meta_buffer && meta_len) {
670 meta = nvme_add_user_metadata(bio, meta_buffer, meta_len,
671 meta_seed, write);
672 if (IS_ERR(meta)) {
673 ret = PTR_ERR(meta);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600674 goto out_unmap;
675 }
Keith Busch0b7f1f22015-10-23 09:47:28 -0600676 }
677 }
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400678
Keith Busch0b7f1f22015-10-23 09:47:28 -0600679 blk_execute_rq(req->q, disk, req, 0);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200680 if (nvme_req(req)->flags & NVME_REQ_CANCELLED)
681 ret = -EINTR;
682 else
683 ret = nvme_req(req)->status;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100684 if (result)
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800685 *result = le32_to_cpu(nvme_req(req)->result.u32);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600686 if (meta && !ret && !write) {
687 if (copy_to_user(meta_buffer, meta, meta_len))
688 ret = -EFAULT;
689 }
Keith Busch0b7f1f22015-10-23 09:47:28 -0600690 kfree(meta);
691 out_unmap:
Christoph Hellwig74d46992017-08-23 19:10:32 +0200692 if (bio)
Keith Busch0b7f1f22015-10-23 09:47:28 -0600693 blk_rq_unmap_user(bio);
Christoph Hellwig21d34712015-11-26 09:08:36 +0100694 out:
695 blk_mq_free_request(req);
696 return ret;
697}
698
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200699static void nvme_keep_alive_end_io(struct request *rq, blk_status_t status)
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200700{
701 struct nvme_ctrl *ctrl = rq->end_io_data;
702
703 blk_mq_free_request(rq);
704
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200705 if (status) {
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200706 dev_err(ctrl->device,
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200707 "failed nvme_keep_alive_end_io error=%d\n",
708 status);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200709 return;
710 }
711
712 schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ);
713}
714
715static int nvme_keep_alive(struct nvme_ctrl *ctrl)
716{
717 struct nvme_command c;
718 struct request *rq;
719
720 memset(&c, 0, sizeof(c));
721 c.common.opcode = nvme_admin_keep_alive;
722
723 rq = nvme_alloc_request(ctrl->admin_q, &c, BLK_MQ_REQ_RESERVED,
724 NVME_QID_ANY);
725 if (IS_ERR(rq))
726 return PTR_ERR(rq);
727
728 rq->timeout = ctrl->kato * HZ;
729 rq->end_io_data = ctrl;
730
731 blk_execute_rq_nowait(rq->q, NULL, rq, 0, nvme_keep_alive_end_io);
732
733 return 0;
734}
735
736static void nvme_keep_alive_work(struct work_struct *work)
737{
738 struct nvme_ctrl *ctrl = container_of(to_delayed_work(work),
739 struct nvme_ctrl, ka_work);
740
741 if (nvme_keep_alive(ctrl)) {
742 /* allocation failure, reset the controller */
743 dev_err(ctrl->device, "keep-alive failed\n");
Christoph Hellwig39bdc592017-06-12 18:21:19 +0200744 nvme_reset_ctrl(ctrl);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200745 return;
746 }
747}
748
749void nvme_start_keep_alive(struct nvme_ctrl *ctrl)
750{
751 if (unlikely(ctrl->kato == 0))
752 return;
753
754 INIT_DELAYED_WORK(&ctrl->ka_work, nvme_keep_alive_work);
755 schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ);
756}
757EXPORT_SYMBOL_GPL(nvme_start_keep_alive);
758
759void nvme_stop_keep_alive(struct nvme_ctrl *ctrl)
760{
761 if (unlikely(ctrl->kato == 0))
762 return;
763
764 cancel_delayed_work_sync(&ctrl->ka_work);
765}
766EXPORT_SYMBOL_GPL(nvme_stop_keep_alive);
767
Keith Busch3f7f25a92017-06-20 15:09:56 -0400768static int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100769{
770 struct nvme_command c = { };
771 int error;
772
773 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
774 c.identify.opcode = nvme_admin_identify;
Parav Pandit986994a2017-01-26 17:17:28 +0200775 c.identify.cns = NVME_ID_CNS_CTRL;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100776
777 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
778 if (!*id)
779 return -ENOMEM;
780
781 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
782 sizeof(struct nvme_id_ctrl));
783 if (error)
784 kfree(*id);
785 return error;
786}
787
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200788static int nvme_identify_ns_descs(struct nvme_ctrl *ctrl, unsigned nsid,
789 u8 *eui64, u8 *nguid, uuid_t *uuid)
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200790{
791 struct nvme_command c = { };
792 int status;
793 void *data;
794 int pos;
795 int len;
796
797 c.identify.opcode = nvme_admin_identify;
798 c.identify.nsid = cpu_to_le32(nsid);
799 c.identify.cns = NVME_ID_CNS_NS_DESC_LIST;
800
801 data = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL);
802 if (!data)
803 return -ENOMEM;
804
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200805 status = nvme_submit_sync_cmd(ctrl->admin_q, &c, data,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200806 NVME_IDENTIFY_DATA_SIZE);
807 if (status)
808 goto free_data;
809
810 for (pos = 0; pos < NVME_IDENTIFY_DATA_SIZE; pos += len) {
811 struct nvme_ns_id_desc *cur = data + pos;
812
813 if (cur->nidl == 0)
814 break;
815
816 switch (cur->nidt) {
817 case NVME_NIDT_EUI64:
818 if (cur->nidl != NVME_NIDT_EUI64_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200819 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200820 "ctrl returned bogus length: %d for NVME_NIDT_EUI64\n",
821 cur->nidl);
822 goto free_data;
823 }
824 len = NVME_NIDT_EUI64_LEN;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200825 memcpy(eui64, data + pos + sizeof(*cur), len);
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200826 break;
827 case NVME_NIDT_NGUID:
828 if (cur->nidl != NVME_NIDT_NGUID_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200829 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200830 "ctrl returned bogus length: %d for NVME_NIDT_NGUID\n",
831 cur->nidl);
832 goto free_data;
833 }
834 len = NVME_NIDT_NGUID_LEN;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200835 memcpy(nguid, data + pos + sizeof(*cur), len);
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200836 break;
837 case NVME_NIDT_UUID:
838 if (cur->nidl != NVME_NIDT_UUID_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200839 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200840 "ctrl returned bogus length: %d for NVME_NIDT_UUID\n",
841 cur->nidl);
842 goto free_data;
843 }
844 len = NVME_NIDT_UUID_LEN;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200845 uuid_copy(uuid, data + pos + sizeof(*cur));
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200846 break;
847 default:
848 /* Skip unnkown types */
849 len = cur->nidl;
850 break;
851 }
852
853 len += sizeof(*cur);
854 }
855free_data:
856 kfree(data);
857 return status;
858}
859
Keith Busch540c8012015-10-22 15:45:06 -0600860static int nvme_identify_ns_list(struct nvme_ctrl *dev, unsigned nsid, __le32 *ns_list)
861{
862 struct nvme_command c = { };
863
864 c.identify.opcode = nvme_admin_identify;
Parav Pandit986994a2017-01-26 17:17:28 +0200865 c.identify.cns = NVME_ID_CNS_NS_ACTIVE_LIST;
Keith Busch540c8012015-10-22 15:45:06 -0600866 c.identify.nsid = cpu_to_le32(nsid);
867 return nvme_submit_sync_cmd(dev->admin_q, &c, ns_list, 0x1000);
868}
869
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200870static struct nvme_id_ns *nvme_identify_ns(struct nvme_ctrl *ctrl,
871 unsigned nsid)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100872{
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200873 struct nvme_id_ns *id;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100874 struct nvme_command c = { };
875 int error;
876
877 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
Max Gurtovoy778f0672017-01-26 17:17:27 +0200878 c.identify.opcode = nvme_admin_identify;
879 c.identify.nsid = cpu_to_le32(nsid);
Parav Pandit986994a2017-01-26 17:17:28 +0200880 c.identify.cns = NVME_ID_CNS_NS;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100881
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200882 id = kmalloc(sizeof(*id), GFP_KERNEL);
883 if (!id)
884 return NULL;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100885
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200886 error = nvme_submit_sync_cmd(ctrl->admin_q, &c, id, sizeof(*id));
887 if (error) {
888 dev_warn(ctrl->device, "Identify namespace failed\n");
889 kfree(id);
890 return NULL;
891 }
892
893 return id;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100894}
895
Keith Busch3f7f25a92017-06-20 15:09:56 -0400896static int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11,
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700897 void *buffer, size_t buflen, u32 *result)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100898{
899 struct nvme_command c;
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800900 union nvme_result res;
Christoph Hellwig1cb3cce2016-02-29 15:59:47 +0100901 int ret;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100902
903 memset(&c, 0, sizeof(c));
904 c.features.opcode = nvme_admin_set_features;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100905 c.features.fid = cpu_to_le32(fid);
906 c.features.dword11 = cpu_to_le32(dword11);
907
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800908 ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res,
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700909 buffer, buflen, 0, NVME_QID_ANY, 0, 0);
Andy Lutomirski9b47f77a2016-08-24 03:52:12 -0700910 if (ret >= 0 && result)
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800911 *result = le32_to_cpu(res.u32);
Christoph Hellwig1cb3cce2016-02-29 15:59:47 +0100912 return ret;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100913}
914
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100915int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count)
916{
917 u32 q_count = (*count - 1) | ((*count - 1) << 16);
918 u32 result;
919 int status, nr_io_queues;
920
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700921 status = nvme_set_features(ctrl, NVME_FEAT_NUM_QUEUES, q_count, NULL, 0,
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100922 &result);
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +0200923 if (status < 0)
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100924 return status;
925
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +0200926 /*
927 * Degraded controllers might return an error when setting the queue
928 * count. We still want to be able to bring them online and offer
929 * access to the admin queue, as that might be only way to fix them up.
930 */
931 if (status > 0) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +0200932 dev_err(ctrl->device, "Could not set queue count (%d)\n", status);
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +0200933 *count = 0;
934 } else {
935 nr_io_queues = min(result & 0xffff, result >> 16) + 1;
936 *count = min(*count, nr_io_queues);
937 }
938
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100939 return 0;
940}
Ming Lin576d55d2016-02-10 10:03:32 -0800941EXPORT_SYMBOL_GPL(nvme_set_queue_count);
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100942
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100943static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
944{
945 struct nvme_user_io io;
946 struct nvme_command c;
947 unsigned length, meta_len;
948 void __user *metadata;
949
950 if (copy_from_user(&io, uio, sizeof(io)))
951 return -EFAULT;
Keith Busch63088ec2016-02-24 09:15:57 -0700952 if (io.flags)
953 return -EINVAL;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100954
955 switch (io.opcode) {
956 case nvme_cmd_write:
957 case nvme_cmd_read:
958 case nvme_cmd_compare:
959 break;
960 default:
961 return -EINVAL;
962 }
963
964 length = (io.nblocks + 1) << ns->lba_shift;
965 meta_len = (io.nblocks + 1) * ns->ms;
966 metadata = (void __user *)(uintptr_t)io.metadata;
967
968 if (ns->ext) {
969 length += meta_len;
970 meta_len = 0;
971 } else if (meta_len) {
972 if ((io.metadata & 3) || !io.metadata)
973 return -EINVAL;
974 }
975
976 memset(&c, 0, sizeof(c));
977 c.rw.opcode = io.opcode;
978 c.rw.flags = io.flags;
979 c.rw.nsid = cpu_to_le32(ns->ns_id);
980 c.rw.slba = cpu_to_le64(io.slba);
981 c.rw.length = cpu_to_le16(io.nblocks);
982 c.rw.control = cpu_to_le16(io.control);
983 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
984 c.rw.reftag = cpu_to_le32(io.reftag);
985 c.rw.apptag = cpu_to_le16(io.apptag);
986 c.rw.appmask = cpu_to_le16(io.appmask);
987
Keith Busch63263d62017-08-29 17:46:04 -0400988 return nvme_submit_user_cmd(ns->queue, &c,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100989 (void __user *)(uintptr_t)io.addr, length,
990 metadata, meta_len, io.slba, NULL, 0);
991}
992
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +0100993static int nvme_user_cmd(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100994 struct nvme_passthru_cmd __user *ucmd)
995{
996 struct nvme_passthru_cmd cmd;
997 struct nvme_command c;
998 unsigned timeout = 0;
999 int status;
1000
1001 if (!capable(CAP_SYS_ADMIN))
1002 return -EACCES;
1003 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
1004 return -EFAULT;
Keith Busch63088ec2016-02-24 09:15:57 -07001005 if (cmd.flags)
1006 return -EINVAL;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001007
1008 memset(&c, 0, sizeof(c));
1009 c.common.opcode = cmd.opcode;
1010 c.common.flags = cmd.flags;
1011 c.common.nsid = cpu_to_le32(cmd.nsid);
1012 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1013 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1014 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1015 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1016 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1017 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1018 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1019 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1020
1021 if (cmd.timeout_ms)
1022 timeout = msecs_to_jiffies(cmd.timeout_ms);
1023
1024 status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c,
Arnd Bergmannd1ea7be2015-12-08 16:22:17 +01001025 (void __user *)(uintptr_t)cmd.addr, cmd.data_len,
Keith Busch63263d62017-08-29 17:46:04 -04001026 (void __user *)(uintptr_t)cmd.metadata, cmd.metadata,
1027 0, &cmd.result, timeout);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001028 if (status >= 0) {
1029 if (put_user(cmd.result, &ucmd->result))
1030 return -EFAULT;
1031 }
1032
1033 return status;
1034}
1035
1036static int nvme_ioctl(struct block_device *bdev, fmode_t mode,
1037 unsigned int cmd, unsigned long arg)
1038{
1039 struct nvme_ns *ns = bdev->bd_disk->private_data;
1040
1041 switch (cmd) {
1042 case NVME_IOCTL_ID:
1043 force_successful_syscall_return();
1044 return ns->ns_id;
1045 case NVME_IOCTL_ADMIN_CMD:
1046 return nvme_user_cmd(ns->ctrl, NULL, (void __user *)arg);
1047 case NVME_IOCTL_IO_CMD:
1048 return nvme_user_cmd(ns->ctrl, ns, (void __user *)arg);
1049 case NVME_IOCTL_SUBMIT_IO:
1050 return nvme_submit_io(ns, (void __user *)arg);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001051 default:
Matias Bjørling84d4add2017-01-31 13:17:16 +01001052#ifdef CONFIG_NVM
1053 if (ns->ndev)
1054 return nvme_nvm_ioctl(ns, cmd, arg);
1055#endif
Scott Bauera98e58e52017-02-03 12:50:32 -07001056 if (is_sed_ioctl(cmd))
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001057 return sed_ioctl(ns->ctrl->opal_dev, cmd,
Scott Bauere225c202017-02-14 17:29:36 -07001058 (void __user *) arg);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001059 return -ENOTTY;
1060 }
1061}
1062
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001063static int nvme_open(struct block_device *bdev, fmode_t mode)
1064{
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001065 struct nvme_ns *ns = bdev->bd_disk->private_data;
1066
1067 if (!kref_get_unless_zero(&ns->kref))
1068 return -ENXIO;
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001069 return 0;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001070}
1071
1072static void nvme_release(struct gendisk *disk, fmode_t mode)
1073{
Christoph Hellwiga6a51492017-10-18 16:59:25 +02001074 nvme_put_ns(disk->private_data);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001075}
1076
1077static int nvme_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1078{
1079 /* some standard values */
1080 geo->heads = 1 << 6;
1081 geo->sectors = 1 << 5;
1082 geo->cylinders = get_capacity(bdev->bd_disk) >> 11;
1083 return 0;
1084}
1085
1086#ifdef CONFIG_BLK_DEV_INTEGRITY
Christoph Hellwigc81bfba2017-05-20 15:14:45 +02001087static void nvme_prep_integrity(struct gendisk *disk, struct nvme_id_ns *id,
1088 u16 bs)
1089{
1090 struct nvme_ns *ns = disk->private_data;
1091 u16 old_ms = ns->ms;
1092 u8 pi_type = 0;
1093
1094 ns->ms = le16_to_cpu(id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ms);
1095 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
1096
1097 /* PI implementation requires metadata equal t10 pi tuple size */
1098 if (ns->ms == sizeof(struct t10_pi_tuple))
1099 pi_type = id->dps & NVME_NS_DPS_PI_MASK;
1100
1101 if (blk_get_integrity(disk) &&
1102 (ns->pi_type != pi_type || ns->ms != old_ms ||
1103 bs != queue_logical_block_size(disk->queue) ||
1104 (ns->ms && ns->ext)))
1105 blk_integrity_unregister(disk);
1106
1107 ns->pi_type = pi_type;
1108}
1109
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001110static void nvme_init_integrity(struct nvme_ns *ns)
1111{
1112 struct blk_integrity integrity;
1113
Jay Freyenseefa9a89f2016-07-20 21:26:16 -06001114 memset(&integrity, 0, sizeof(integrity));
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001115 switch (ns->pi_type) {
1116 case NVME_NS_DPS_PI_TYPE3:
1117 integrity.profile = &t10_pi_type3_crc;
Nicholas Bellingerba36c212016-04-09 03:04:42 +00001118 integrity.tag_size = sizeof(u16) + sizeof(u32);
1119 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001120 break;
1121 case NVME_NS_DPS_PI_TYPE1:
1122 case NVME_NS_DPS_PI_TYPE2:
1123 integrity.profile = &t10_pi_type1_crc;
Nicholas Bellingerba36c212016-04-09 03:04:42 +00001124 integrity.tag_size = sizeof(u16);
1125 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001126 break;
1127 default:
1128 integrity.profile = NULL;
1129 break;
1130 }
1131 integrity.tuple_size = ns->ms;
1132 blk_integrity_register(ns->disk, &integrity);
1133 blk_queue_max_integrity_segments(ns->queue, 1);
1134}
1135#else
Christoph Hellwigc81bfba2017-05-20 15:14:45 +02001136static void nvme_prep_integrity(struct gendisk *disk, struct nvme_id_ns *id,
1137 u16 bs)
1138{
1139}
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001140static void nvme_init_integrity(struct nvme_ns *ns)
1141{
1142}
1143#endif /* CONFIG_BLK_DEV_INTEGRITY */
1144
Scott Bauer6b8190d2017-06-15 10:44:30 -06001145static void nvme_set_chunk_size(struct nvme_ns *ns)
1146{
1147 u32 chunk_size = (((u32)ns->noiob) << (ns->lba_shift - 9));
1148 blk_queue_chunk_sectors(ns->queue, rounddown_pow_of_two(chunk_size));
1149}
1150
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001151static void nvme_config_discard(struct nvme_ns *ns)
1152{
Keith Busch08095e72016-03-04 13:15:17 -07001153 struct nvme_ctrl *ctrl = ns->ctrl;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001154 u32 logical_block_size = queue_logical_block_size(ns->queue);
Keith Busch08095e72016-03-04 13:15:17 -07001155
Christoph Hellwigb35ba012017-02-08 14:46:50 +01001156 BUILD_BUG_ON(PAGE_SIZE / sizeof(struct nvme_dsm_range) <
1157 NVME_DSM_MAX_RANGES);
1158
Jens Axboef5d11842017-06-27 12:03:06 -06001159 if (ctrl->nr_streams && ns->sws && ns->sgs) {
1160 unsigned int sz = logical_block_size * ns->sws * ns->sgs;
1161
1162 ns->queue->limits.discard_alignment = sz;
1163 ns->queue->limits.discard_granularity = sz;
1164 } else {
1165 ns->queue->limits.discard_alignment = logical_block_size;
1166 ns->queue->limits.discard_granularity = logical_block_size;
1167 }
Minfei Huangbd0fc282016-05-17 15:58:41 +08001168 blk_queue_max_discard_sectors(ns->queue, UINT_MAX);
Christoph Hellwigb35ba012017-02-08 14:46:50 +01001169 blk_queue_max_discard_segments(ns->queue, NVME_DSM_MAX_RANGES);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001170 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
Christoph Hellwige850fd12017-04-05 19:21:13 +02001171
1172 if (ctrl->quirks & NVME_QUIRK_DEALLOCATE_ZEROES)
1173 blk_queue_max_write_zeroes_sectors(ns->queue, UINT_MAX);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001174}
1175
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001176static void nvme_report_ns_ids(struct nvme_ctrl *ctrl, unsigned int nsid,
1177 struct nvme_id_ns *id, u8 *eui64, u8 *nguid, uuid_t *uuid)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001178{
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001179 if (ctrl->vs >= NVME_VS(1, 1, 0))
1180 memcpy(eui64, id->eui64, sizeof(id->eui64));
1181 if (ctrl->vs >= NVME_VS(1, 2, 0))
1182 memcpy(nguid, id->nguid, sizeof(id->nguid));
1183 if (ctrl->vs >= NVME_VS(1, 3, 0)) {
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +02001184 /* Don't treat error as fatal we potentially
1185 * already have a NGUID or EUI-64
1186 */
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001187 if (nvme_identify_ns_descs(ctrl, nsid, eui64, nguid, uuid))
1188 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +02001189 "%s: Identify Descriptors failed\n", __func__);
1190 }
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001191}
1192
1193static void __nvme_revalidate_disk(struct gendisk *disk, struct nvme_id_ns *id)
1194{
1195 struct nvme_ns *ns = disk->private_data;
Jens Axboef5d11842017-06-27 12:03:06 -06001196 struct nvme_ctrl *ctrl = ns->ctrl;
Christoph Hellwigc81bfba2017-05-20 15:14:45 +02001197 u16 bs;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001198
1199 /*
1200 * If identify namespace failed, use default 512 byte block size so
1201 * block layer can use before failing read/write for 0 capacity.
1202 */
Christoph Hellwigc81bfba2017-05-20 15:14:45 +02001203 ns->lba_shift = id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ds;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001204 if (ns->lba_shift == 0)
1205 ns->lba_shift = 9;
1206 bs = 1 << ns->lba_shift;
Scott Bauer6b8190d2017-06-15 10:44:30 -06001207 ns->noiob = le16_to_cpu(id->noiob);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001208
1209 blk_mq_freeze_queue(disk->queue);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001210
Jens Axboef5d11842017-06-27 12:03:06 -06001211 if (ctrl->ops->flags & NVME_F_METADATA_SUPPORTED)
Christoph Hellwigc81bfba2017-05-20 15:14:45 +02001212 nvme_prep_integrity(disk, id, bs);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001213 blk_queue_logical_block_size(ns->queue, bs);
Scott Bauer6b8190d2017-06-15 10:44:30 -06001214 if (ns->noiob)
1215 nvme_set_chunk_size(ns);
Keith Busch4b9d5b12015-11-20 09:13:30 +01001216 if (ns->ms && !blk_get_integrity(disk) && !ns->ext)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001217 nvme_init_integrity(ns);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001218 if (ns->ms && !(ns->ms == 8 && ns->pi_type) && !blk_get_integrity(disk))
1219 set_capacity(disk, 0);
1220 else
1221 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
1222
Jens Axboef5d11842017-06-27 12:03:06 -06001223 if (ctrl->oncs & NVME_CTRL_ONCS_DSM)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001224 nvme_config_discard(ns);
1225 blk_mq_unfreeze_queue(disk->queue);
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001226}
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001227
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001228static int nvme_revalidate_disk(struct gendisk *disk)
1229{
1230 struct nvme_ns *ns = disk->private_data;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001231 struct nvme_ctrl *ctrl = ns->ctrl;
1232 struct nvme_id_ns *id;
Christoph Hellwig1d5df6a2017-08-17 14:10:00 +02001233 u8 eui64[8] = { 0 }, nguid[16] = { 0 };
1234 uuid_t uuid = uuid_null;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001235 int ret = 0;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001236
1237 if (test_bit(NVME_NS_DEAD, &ns->flags)) {
1238 set_capacity(disk, 0);
1239 return -ENODEV;
1240 }
1241
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001242 id = nvme_identify_ns(ctrl, ns->ns_id);
1243 if (!id)
1244 return -ENODEV;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001245
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001246 if (id->ncap == 0) {
1247 ret = -ENODEV;
1248 goto out;
1249 }
1250
Christoph Hellwig1d5df6a2017-08-17 14:10:00 +02001251 nvme_report_ns_ids(ctrl, ns->ns_id, id, eui64, nguid, &uuid);
1252 if (!uuid_equal(&ns->uuid, &uuid) ||
1253 memcmp(&ns->nguid, &nguid, sizeof(ns->nguid)) ||
1254 memcmp(&ns->eui, &eui64, sizeof(ns->eui))) {
1255 dev_err(ctrl->device,
1256 "identifiers changed for nsid %d\n", ns->ns_id);
1257 ret = -ENODEV;
1258 }
1259
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001260out:
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001261 kfree(id);
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001262 return ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001263}
1264
1265static char nvme_pr_type(enum pr_type type)
1266{
1267 switch (type) {
1268 case PR_WRITE_EXCLUSIVE:
1269 return 1;
1270 case PR_EXCLUSIVE_ACCESS:
1271 return 2;
1272 case PR_WRITE_EXCLUSIVE_REG_ONLY:
1273 return 3;
1274 case PR_EXCLUSIVE_ACCESS_REG_ONLY:
1275 return 4;
1276 case PR_WRITE_EXCLUSIVE_ALL_REGS:
1277 return 5;
1278 case PR_EXCLUSIVE_ACCESS_ALL_REGS:
1279 return 6;
1280 default:
1281 return 0;
1282 }
1283};
1284
1285static int nvme_pr_command(struct block_device *bdev, u32 cdw10,
1286 u64 key, u64 sa_key, u8 op)
1287{
1288 struct nvme_ns *ns = bdev->bd_disk->private_data;
1289 struct nvme_command c;
1290 u8 data[16] = { 0, };
1291
1292 put_unaligned_le64(key, &data[0]);
1293 put_unaligned_le64(sa_key, &data[8]);
1294
1295 memset(&c, 0, sizeof(c));
1296 c.common.opcode = op;
1297 c.common.nsid = cpu_to_le32(ns->ns_id);
1298 c.common.cdw10[0] = cpu_to_le32(cdw10);
1299
1300 return nvme_submit_sync_cmd(ns->queue, &c, data, 16);
1301}
1302
1303static int nvme_pr_register(struct block_device *bdev, u64 old,
1304 u64 new, unsigned flags)
1305{
1306 u32 cdw10;
1307
1308 if (flags & ~PR_FL_IGNORE_KEY)
1309 return -EOPNOTSUPP;
1310
1311 cdw10 = old ? 2 : 0;
1312 cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0;
1313 cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */
1314 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register);
1315}
1316
1317static int nvme_pr_reserve(struct block_device *bdev, u64 key,
1318 enum pr_type type, unsigned flags)
1319{
1320 u32 cdw10;
1321
1322 if (flags & ~PR_FL_IGNORE_KEY)
1323 return -EOPNOTSUPP;
1324
1325 cdw10 = nvme_pr_type(type) << 8;
1326 cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0);
1327 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire);
1328}
1329
1330static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new,
1331 enum pr_type type, bool abort)
1332{
1333 u32 cdw10 = nvme_pr_type(type) << 8 | abort ? 2 : 1;
1334 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire);
1335}
1336
1337static int nvme_pr_clear(struct block_device *bdev, u64 key)
1338{
Dan Carpenter8c0b3912015-12-09 13:24:06 +03001339 u32 cdw10 = 1 | (key ? 1 << 3 : 0);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001340 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register);
1341}
1342
1343static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
1344{
1345 u32 cdw10 = nvme_pr_type(type) << 8 | key ? 1 << 3 : 0;
1346 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release);
1347}
1348
1349static const struct pr_ops nvme_pr_ops = {
1350 .pr_register = nvme_pr_register,
1351 .pr_reserve = nvme_pr_reserve,
1352 .pr_release = nvme_pr_release,
1353 .pr_preempt = nvme_pr_preempt,
1354 .pr_clear = nvme_pr_clear,
1355};
1356
Scott Bauera98e58e52017-02-03 12:50:32 -07001357#ifdef CONFIG_BLK_SED_OPAL
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001358int nvme_sec_submit(void *data, u16 spsp, u8 secp, void *buffer, size_t len,
1359 bool send)
Scott Bauera98e58e52017-02-03 12:50:32 -07001360{
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001361 struct nvme_ctrl *ctrl = data;
Scott Bauera98e58e52017-02-03 12:50:32 -07001362 struct nvme_command cmd;
Scott Bauera98e58e52017-02-03 12:50:32 -07001363
1364 memset(&cmd, 0, sizeof(cmd));
1365 if (send)
1366 cmd.common.opcode = nvme_admin_security_send;
1367 else
1368 cmd.common.opcode = nvme_admin_security_recv;
Scott Bauera98e58e52017-02-03 12:50:32 -07001369 cmd.common.nsid = 0;
1370 cmd.common.cdw10[0] = cpu_to_le32(((u32)secp) << 24 | ((u32)spsp) << 8);
1371 cmd.common.cdw10[1] = cpu_to_le32(len);
1372
1373 return __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, NULL, buffer, len,
1374 ADMIN_TIMEOUT, NVME_QID_ANY, 1, 0);
1375}
1376EXPORT_SYMBOL_GPL(nvme_sec_submit);
1377#endif /* CONFIG_BLK_SED_OPAL */
1378
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01001379static const struct block_device_operations nvme_fops = {
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001380 .owner = THIS_MODULE,
1381 .ioctl = nvme_ioctl,
Christoph Hellwig761f2e12017-10-05 18:46:46 +02001382 .compat_ioctl = nvme_ioctl,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001383 .open = nvme_open,
1384 .release = nvme_release,
1385 .getgeo = nvme_getgeo,
1386 .revalidate_disk= nvme_revalidate_disk,
1387 .pr_ops = &nvme_pr_ops,
1388};
1389
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001390static int nvme_wait_ready(struct nvme_ctrl *ctrl, u64 cap, bool enabled)
1391{
1392 unsigned long timeout =
1393 ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1394 u32 csts, bit = enabled ? NVME_CSTS_RDY : 0;
1395 int ret;
1396
1397 while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
Keith Busch0df1e4f2016-10-11 13:31:58 -04001398 if (csts == ~0)
1399 return -ENODEV;
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001400 if ((csts & NVME_CSTS_RDY) == bit)
1401 break;
1402
1403 msleep(100);
1404 if (fatal_signal_pending(current))
1405 return -EINTR;
1406 if (time_after(jiffies, timeout)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001407 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001408 "Device not ready; aborting %s\n", enabled ?
1409 "initialisation" : "reset");
1410 return -ENODEV;
1411 }
1412 }
1413
1414 return ret;
1415}
1416
1417/*
1418 * If the device has been passed off to us in an enabled state, just clear
1419 * the enabled bit. The spec says we should set the 'shutdown notification
1420 * bits', but doing so may cause the device to complete commands to the
1421 * admin queue ... and we don't know what memory that might be pointing at!
1422 */
1423int nvme_disable_ctrl(struct nvme_ctrl *ctrl, u64 cap)
1424{
1425 int ret;
1426
1427 ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
1428 ctrl->ctrl_config &= ~NVME_CC_ENABLE;
1429
1430 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1431 if (ret)
1432 return ret;
Guilherme G. Piccoli54adc012016-06-14 18:22:41 -03001433
Guilherme G. Piccolib5a10c52016-12-28 22:13:15 -02001434 if (ctrl->quirks & NVME_QUIRK_DELAY_BEFORE_CHK_RDY)
Guilherme G. Piccoli54adc012016-06-14 18:22:41 -03001435 msleep(NVME_QUIRK_DELAY_AMOUNT);
1436
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001437 return nvme_wait_ready(ctrl, cap, false);
1438}
Ming Lin576d55d2016-02-10 10:03:32 -08001439EXPORT_SYMBOL_GPL(nvme_disable_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001440
1441int nvme_enable_ctrl(struct nvme_ctrl *ctrl, u64 cap)
1442{
1443 /*
1444 * Default to a 4K page size, with the intention to update this
1445 * path in the future to accomodate architectures with differing
1446 * kernel and IO page sizes.
1447 */
1448 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12, page_shift = 12;
1449 int ret;
1450
1451 if (page_shift < dev_page_min) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001452 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001453 "Minimum device page size %u too large for host (%u)\n",
1454 1 << dev_page_min, 1 << page_shift);
1455 return -ENODEV;
1456 }
1457
1458 ctrl->page_size = 1 << page_shift;
1459
1460 ctrl->ctrl_config = NVME_CC_CSS_NVM;
1461 ctrl->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Max Gurtovoy60b43f62017-08-13 19:21:07 +03001462 ctrl->ctrl_config |= NVME_CC_AMS_RR | NVME_CC_SHN_NONE;
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001463 ctrl->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
1464 ctrl->ctrl_config |= NVME_CC_ENABLE;
1465
1466 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1467 if (ret)
1468 return ret;
1469 return nvme_wait_ready(ctrl, cap, true);
1470}
Ming Lin576d55d2016-02-10 10:03:32 -08001471EXPORT_SYMBOL_GPL(nvme_enable_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001472
1473int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl)
1474{
Martin K. Petersen07fbd322017-08-25 19:14:50 -04001475 unsigned long timeout = jiffies + (ctrl->shutdown_timeout * HZ);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001476 u32 csts;
1477 int ret;
1478
1479 ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
1480 ctrl->ctrl_config |= NVME_CC_SHN_NORMAL;
1481
1482 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1483 if (ret)
1484 return ret;
1485
1486 while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
1487 if ((csts & NVME_CSTS_SHST_MASK) == NVME_CSTS_SHST_CMPLT)
1488 break;
1489
1490 msleep(100);
1491 if (fatal_signal_pending(current))
1492 return -EINTR;
1493 if (time_after(jiffies, timeout)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001494 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001495 "Device shutdown incomplete; abort shutdown\n");
1496 return -ENODEV;
1497 }
1498 }
1499
1500 return ret;
1501}
Ming Lin576d55d2016-02-10 10:03:32 -08001502EXPORT_SYMBOL_GPL(nvme_shutdown_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001503
Christoph Hellwigda358252016-03-02 18:07:11 +01001504static void nvme_set_queue_limits(struct nvme_ctrl *ctrl,
1505 struct request_queue *q)
1506{
Jens Axboe7c88cb02016-04-12 15:43:09 -06001507 bool vwc = false;
1508
Christoph Hellwigda358252016-03-02 18:07:11 +01001509 if (ctrl->max_hw_sectors) {
Christoph Hellwig45686b62016-03-02 18:07:12 +01001510 u32 max_segments =
1511 (ctrl->max_hw_sectors / (ctrl->page_size >> 9)) + 1;
1512
Christoph Hellwigda358252016-03-02 18:07:11 +01001513 blk_queue_max_hw_sectors(q, ctrl->max_hw_sectors);
Christoph Hellwig45686b62016-03-02 18:07:12 +01001514 blk_queue_max_segments(q, min_t(u32, max_segments, USHRT_MAX));
Christoph Hellwigda358252016-03-02 18:07:11 +01001515 }
Keith Busche6282ae2016-12-19 11:37:50 -05001516 if (ctrl->quirks & NVME_QUIRK_STRIPE_SIZE)
1517 blk_queue_chunk_sectors(q, ctrl->max_hw_sectors);
Christoph Hellwigda358252016-03-02 18:07:11 +01001518 blk_queue_virt_boundary(q, ctrl->page_size - 1);
Jens Axboe7c88cb02016-04-12 15:43:09 -06001519 if (ctrl->vwc & NVME_CTRL_VWC_PRESENT)
1520 vwc = true;
1521 blk_queue_write_cache(q, vwc, vwc);
Christoph Hellwigda358252016-03-02 18:07:11 +01001522}
1523
Jon Derrickdbf86b32017-08-16 09:51:29 +02001524static int nvme_configure_timestamp(struct nvme_ctrl *ctrl)
1525{
1526 __le64 ts;
1527 int ret;
1528
1529 if (!(ctrl->oncs & NVME_CTRL_ONCS_TIMESTAMP))
1530 return 0;
1531
1532 ts = cpu_to_le64(ktime_to_ms(ktime_get_real()));
1533 ret = nvme_set_features(ctrl, NVME_FEAT_TIMESTAMP, 0, &ts, sizeof(ts),
1534 NULL);
1535 if (ret)
1536 dev_warn_once(ctrl->device,
1537 "could not set timestamp (%d)\n", ret);
1538 return ret;
1539}
1540
Keith Busch634b8322017-08-10 11:23:31 +02001541static int nvme_configure_apst(struct nvme_ctrl *ctrl)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001542{
1543 /*
1544 * APST (Autonomous Power State Transition) lets us program a
1545 * table of power state transitions that the controller will
1546 * perform automatically. We configure it with a simple
1547 * heuristic: we are willing to spend at most 2% of the time
1548 * transitioning between power states. Therefore, when running
1549 * in any given state, we will enter the next lower-power
Andy Lutomirski76e4ad02017-04-21 16:19:22 -07001550 * non-operational state after waiting 50 * (enlat + exlat)
Kai-Heng Fengda875912017-06-07 15:25:42 +08001551 * microseconds, as long as that state's exit latency is under
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001552 * the requested maximum latency.
1553 *
1554 * We will not autonomously enter any non-operational state for
1555 * which the total latency exceeds ps_max_latency_us. Users
1556 * can set ps_max_latency_us to zero to turn off APST.
1557 */
1558
1559 unsigned apste;
1560 struct nvme_feat_auto_pst *table;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001561 u64 max_lat_us = 0;
1562 int max_ps = -1;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001563 int ret;
1564
1565 /*
1566 * If APST isn't supported or if we haven't been initialized yet,
1567 * then don't do anything.
1568 */
1569 if (!ctrl->apsta)
Keith Busch634b8322017-08-10 11:23:31 +02001570 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001571
1572 if (ctrl->npss > 31) {
1573 dev_warn(ctrl->device, "NPSS is invalid; not using APST\n");
Keith Busch634b8322017-08-10 11:23:31 +02001574 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001575 }
1576
1577 table = kzalloc(sizeof(*table), GFP_KERNEL);
1578 if (!table)
Keith Busch634b8322017-08-10 11:23:31 +02001579 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001580
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04001581 if (!ctrl->apst_enabled || ctrl->ps_max_latency_us == 0) {
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001582 /* Turn off APST. */
1583 apste = 0;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001584 dev_dbg(ctrl->device, "APST disabled\n");
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001585 } else {
1586 __le64 target = cpu_to_le64(0);
1587 int state;
1588
1589 /*
1590 * Walk through all states from lowest- to highest-power.
1591 * According to the spec, lower-numbered states use more
1592 * power. NPSS, despite the name, is the index of the
1593 * lowest-power state, not the number of states.
1594 */
1595 for (state = (int)ctrl->npss; state >= 0; state--) {
Kai-Heng Fengda875912017-06-07 15:25:42 +08001596 u64 total_latency_us, exit_latency_us, transition_ms;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001597
1598 if (target)
1599 table->entries[state] = target;
1600
1601 /*
Andy Lutomirskiff5350a2017-04-20 13:37:55 -07001602 * Don't allow transitions to the deepest state
1603 * if it's quirked off.
1604 */
1605 if (state == ctrl->npss &&
1606 (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS))
1607 continue;
1608
1609 /*
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001610 * Is this state a useful non-operational state for
1611 * higher-power states to autonomously transition to?
1612 */
1613 if (!(ctrl->psd[state].flags &
1614 NVME_PS_FLAGS_NON_OP_STATE))
1615 continue;
1616
Kai-Heng Fengda875912017-06-07 15:25:42 +08001617 exit_latency_us =
1618 (u64)le32_to_cpu(ctrl->psd[state].exit_lat);
1619 if (exit_latency_us > ctrl->ps_max_latency_us)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001620 continue;
1621
Kai-Heng Fengda875912017-06-07 15:25:42 +08001622 total_latency_us =
1623 exit_latency_us +
1624 le32_to_cpu(ctrl->psd[state].entry_lat);
1625
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001626 /*
1627 * This state is good. Use it as the APST idle
1628 * target for higher power states.
1629 */
1630 transition_ms = total_latency_us + 19;
1631 do_div(transition_ms, 20);
1632 if (transition_ms > (1 << 24) - 1)
1633 transition_ms = (1 << 24) - 1;
1634
1635 target = cpu_to_le64((state << 3) |
1636 (transition_ms << 8));
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001637
1638 if (max_ps == -1)
1639 max_ps = state;
1640
1641 if (total_latency_us > max_lat_us)
1642 max_lat_us = total_latency_us;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001643 }
1644
1645 apste = 1;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001646
1647 if (max_ps == -1) {
1648 dev_dbg(ctrl->device, "APST enabled but no non-operational states are available\n");
1649 } else {
1650 dev_dbg(ctrl->device, "APST enabled: max PS = %d, max round-trip latency = %lluus, table = %*phN\n",
1651 max_ps, max_lat_us, (int)sizeof(*table), table);
1652 }
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001653 }
1654
1655 ret = nvme_set_features(ctrl, NVME_FEAT_AUTO_PST, apste,
1656 table, sizeof(*table), NULL);
1657 if (ret)
1658 dev_err(ctrl->device, "failed to set APST feature (%d)\n", ret);
1659
1660 kfree(table);
Keith Busch634b8322017-08-10 11:23:31 +02001661 return ret;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001662}
1663
1664static void nvme_set_latency_tolerance(struct device *dev, s32 val)
1665{
1666 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
1667 u64 latency;
1668
1669 switch (val) {
1670 case PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT:
1671 case PM_QOS_LATENCY_ANY:
1672 latency = U64_MAX;
1673 break;
1674
1675 default:
1676 latency = val;
1677 }
1678
1679 if (ctrl->ps_max_latency_us != latency) {
1680 ctrl->ps_max_latency_us = latency;
1681 nvme_configure_apst(ctrl);
1682 }
1683}
1684
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001685struct nvme_core_quirk_entry {
1686 /*
1687 * NVMe model and firmware strings are padded with spaces. For
1688 * simplicity, strings in the quirk table are padded with NULLs
1689 * instead.
1690 */
1691 u16 vid;
1692 const char *mn;
1693 const char *fr;
1694 unsigned long quirks;
1695};
1696
1697static const struct nvme_core_quirk_entry core_quirks[] = {
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001698 {
Andy Lutomirskibe569452017-04-20 13:37:56 -07001699 /*
1700 * This Toshiba device seems to die using any APST states. See:
1701 * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1678184/comments/11
1702 */
1703 .vid = 0x1179,
1704 .mn = "THNSF5256GPUK TOSHIBA",
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001705 .quirks = NVME_QUIRK_NO_APST,
Andy Lutomirskibe569452017-04-20 13:37:56 -07001706 }
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001707};
1708
1709/* match is null-terminated but idstr is space-padded. */
1710static bool string_matches(const char *idstr, const char *match, size_t len)
1711{
1712 size_t matchlen;
1713
1714 if (!match)
1715 return true;
1716
1717 matchlen = strlen(match);
1718 WARN_ON_ONCE(matchlen > len);
1719
1720 if (memcmp(idstr, match, matchlen))
1721 return false;
1722
1723 for (; matchlen < len; matchlen++)
1724 if (idstr[matchlen] != ' ')
1725 return false;
1726
1727 return true;
1728}
1729
1730static bool quirk_matches(const struct nvme_id_ctrl *id,
1731 const struct nvme_core_quirk_entry *q)
1732{
1733 return q->vid == le16_to_cpu(id->vid) &&
1734 string_matches(id->mn, q->mn, sizeof(id->mn)) &&
1735 string_matches(id->fr, q->fr, sizeof(id->fr));
1736}
1737
Christoph Hellwig180de0072017-06-26 12:39:02 +02001738static void nvme_init_subnqn(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id)
1739{
1740 size_t nqnlen;
1741 int off;
1742
1743 nqnlen = strnlen(id->subnqn, NVMF_NQN_SIZE);
1744 if (nqnlen > 0 && nqnlen < NVMF_NQN_SIZE) {
1745 strcpy(ctrl->subnqn, id->subnqn);
1746 return;
1747 }
1748
1749 if (ctrl->vs >= NVME_VS(1, 2, 1))
1750 dev_warn(ctrl->device, "missing or invalid SUBNQN field.\n");
1751
1752 /* Generate a "fake" NQN per Figure 254 in NVMe 1.3 + ECN 001 */
1753 off = snprintf(ctrl->subnqn, NVMF_NQN_SIZE,
1754 "nqn.2014.08.org.nvmexpress:%4x%4x",
1755 le16_to_cpu(id->vid), le16_to_cpu(id->ssvid));
1756 memcpy(ctrl->subnqn + off, id->sn, sizeof(id->sn));
1757 off += sizeof(id->sn);
1758 memcpy(ctrl->subnqn + off, id->mn, sizeof(id->mn));
1759 off += sizeof(id->mn);
1760 memset(ctrl->subnqn + off, 0, sizeof(ctrl->subnqn) - off);
1761}
1762
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001763/*
1764 * Initialize the cached copies of the Identify data and various controller
1765 * register in our nvme_ctrl structure. This should be called as soon as
1766 * the admin queue is fully up and running.
1767 */
1768int nvme_init_identify(struct nvme_ctrl *ctrl)
1769{
1770 struct nvme_id_ctrl *id;
1771 u64 cap;
1772 int ret, page_shift;
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02001773 u32 max_hw_sectors;
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04001774 bool prev_apst_enabled;
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001775
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001776 ret = ctrl->ops->reg_read32(ctrl, NVME_REG_VS, &ctrl->vs);
1777 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001778 dev_err(ctrl->device, "Reading VS failed (%d)\n", ret);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001779 return ret;
1780 }
1781
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001782 ret = ctrl->ops->reg_read64(ctrl, NVME_REG_CAP, &cap);
1783 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001784 dev_err(ctrl->device, "Reading CAP failed (%d)\n", ret);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001785 return ret;
1786 }
1787 page_shift = NVME_CAP_MPSMIN(cap) + 12;
1788
Gabriel Krisman Bertazi8ef20742016-10-19 09:51:05 -06001789 if (ctrl->vs >= NVME_VS(1, 1, 0))
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001790 ctrl->subsystem = NVME_CAP_NSSRC(cap);
1791
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001792 ret = nvme_identify_ctrl(ctrl, &id);
1793 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001794 dev_err(ctrl->device, "Identify Controller failed (%d)\n", ret);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001795 return -EIO;
1796 }
1797
Christoph Hellwig180de0072017-06-26 12:39:02 +02001798 nvme_init_subnqn(ctrl, id);
1799
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001800 if (!ctrl->identified) {
1801 /*
1802 * Check for quirks. Quirk can depend on firmware version,
1803 * so, in principle, the set of quirks present can change
1804 * across a reset. As a possible future enhancement, we
1805 * could re-scan for quirks every time we reinitialize
1806 * the device, but we'd have to make sure that the driver
1807 * behaves intelligently if the quirks change.
1808 */
1809
1810 int i;
1811
1812 for (i = 0; i < ARRAY_SIZE(core_quirks); i++) {
1813 if (quirk_matches(id, &core_quirks[i]))
1814 ctrl->quirks |= core_quirks[i].quirks;
1815 }
1816 }
1817
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07001818 if (force_apst && (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS)) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02001819 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 -07001820 ctrl->quirks &= ~NVME_QUIRK_NO_DEEPEST_PS;
1821 }
1822
Scott Bauer8a9ae522017-02-17 13:59:40 +01001823 ctrl->oacs = le16_to_cpu(id->oacs);
Keith Busch118472a2016-02-18 09:57:48 -07001824 ctrl->vid = le16_to_cpu(id->vid);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001825 ctrl->oncs = le16_to_cpup(&id->oncs);
Christoph Hellwig6bf25d12015-11-20 09:36:44 +01001826 atomic_set(&ctrl->abort_limit, id->acl + 1);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001827 ctrl->vwc = id->vwc;
Ming Lin931e1c22016-02-26 13:24:19 -08001828 ctrl->cntlid = le16_to_cpup(&id->cntlid);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001829 memcpy(ctrl->serial, id->sn, sizeof(id->sn));
1830 memcpy(ctrl->model, id->mn, sizeof(id->mn));
1831 memcpy(ctrl->firmware_rev, id->fr, sizeof(id->fr));
1832 if (id->mdts)
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02001833 max_hw_sectors = 1 << (id->mdts + page_shift - 9);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001834 else
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02001835 max_hw_sectors = UINT_MAX;
1836 ctrl->max_hw_sectors =
1837 min_not_zero(ctrl->max_hw_sectors, max_hw_sectors);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001838
Christoph Hellwigda358252016-03-02 18:07:11 +01001839 nvme_set_queue_limits(ctrl, ctrl->admin_q);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02001840 ctrl->sgls = le32_to_cpu(id->sgls);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02001841 ctrl->kas = le16_to_cpu(id->kas);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02001842
Martin K. Petersen07fbd322017-08-25 19:14:50 -04001843 if (id->rtd3e) {
1844 /* us -> s */
1845 u32 transition_time = le32_to_cpu(id->rtd3e) / 1000000;
1846
1847 ctrl->shutdown_timeout = clamp_t(unsigned int, transition_time,
1848 shutdown_timeout, 60);
1849
1850 if (ctrl->shutdown_timeout != shutdown_timeout)
1851 dev_warn(ctrl->device,
1852 "Shutdown timeout set to %u seconds\n",
1853 ctrl->shutdown_timeout);
1854 } else
1855 ctrl->shutdown_timeout = shutdown_timeout;
1856
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001857 ctrl->npss = id->npss;
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04001858 ctrl->apsta = id->apsta;
1859 prev_apst_enabled = ctrl->apst_enabled;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07001860 if (ctrl->quirks & NVME_QUIRK_NO_APST) {
1861 if (force_apst && id->apsta) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02001862 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 -04001863 ctrl->apst_enabled = true;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07001864 } else {
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04001865 ctrl->apst_enabled = false;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07001866 }
1867 } else {
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04001868 ctrl->apst_enabled = id->apsta;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07001869 }
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001870 memcpy(ctrl->psd, id->psd, sizeof(ctrl->psd));
1871
Christoph Hellwigd3d5b872017-05-20 15:14:44 +02001872 if (ctrl->ops->flags & NVME_F_FABRICS) {
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02001873 ctrl->icdoff = le16_to_cpu(id->icdoff);
1874 ctrl->ioccsz = le32_to_cpu(id->ioccsz);
1875 ctrl->iorcsz = le32_to_cpu(id->iorcsz);
1876 ctrl->maxcmd = le16_to_cpu(id->maxcmd);
1877
1878 /*
1879 * In fabrics we need to verify the cntlid matches the
1880 * admin connect
1881 */
Keith Busch634b8322017-08-10 11:23:31 +02001882 if (ctrl->cntlid != le16_to_cpu(id->cntlid)) {
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02001883 ret = -EINVAL;
Keith Busch634b8322017-08-10 11:23:31 +02001884 goto out_free;
1885 }
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02001886
1887 if (!ctrl->opts->discovery_nqn && !ctrl->kas) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02001888 dev_err(ctrl->device,
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02001889 "keep-alive support is mandatory for fabrics\n");
1890 ret = -EINVAL;
Keith Busch634b8322017-08-10 11:23:31 +02001891 goto out_free;
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02001892 }
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02001893 } else {
1894 ctrl->cntlid = le16_to_cpu(id->cntlid);
Christoph Hellwigfe6d53c2017-05-12 17:16:10 +02001895 ctrl->hmpre = le32_to_cpu(id->hmpre);
1896 ctrl->hmmin = le32_to_cpu(id->hmmin);
Christoph Hellwig044a9df2017-09-11 12:09:28 -04001897 ctrl->hmminds = le32_to_cpu(id->hmminds);
1898 ctrl->hmmaxd = le16_to_cpu(id->hmmaxd);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02001899 }
Christoph Hellwigda358252016-03-02 18:07:11 +01001900
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001901 kfree(id);
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001902
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04001903 if (ctrl->apst_enabled && !prev_apst_enabled)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001904 dev_pm_qos_expose_latency_tolerance(ctrl->device);
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04001905 else if (!ctrl->apst_enabled && prev_apst_enabled)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001906 dev_pm_qos_hide_latency_tolerance(ctrl->device);
1907
Keith Busch634b8322017-08-10 11:23:31 +02001908 ret = nvme_configure_apst(ctrl);
1909 if (ret < 0)
1910 return ret;
Jon Derrickdbf86b32017-08-16 09:51:29 +02001911
1912 ret = nvme_configure_timestamp(ctrl);
1913 if (ret < 0)
1914 return ret;
Keith Busch634b8322017-08-10 11:23:31 +02001915
1916 ret = nvme_configure_directives(ctrl);
1917 if (ret < 0)
1918 return ret;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001919
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001920 ctrl->identified = true;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001921
Keith Busch634b8322017-08-10 11:23:31 +02001922 return 0;
1923
1924out_free:
1925 kfree(id);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02001926 return ret;
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001927}
Ming Lin576d55d2016-02-10 10:03:32 -08001928EXPORT_SYMBOL_GPL(nvme_init_identify);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01001929
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001930static int nvme_dev_open(struct inode *inode, struct file *file)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001931{
Christoph Hellwiga6a51492017-10-18 16:59:25 +02001932 struct nvme_ctrl *ctrl =
1933 container_of(inode->i_cdev, struct nvme_ctrl, cdev);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001934
Christoph Hellwig999ada22017-10-18 17:09:31 +02001935 if (ctrl->state != NVME_CTRL_LIVE)
Christoph Hellwiga6a51492017-10-18 16:59:25 +02001936 return -EWOULDBLOCK;
1937 file->private_data = ctrl;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001938 return 0;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001939}
1940
Christoph Hellwigbfd89472015-12-24 15:27:01 +01001941static int nvme_dev_user_cmd(struct nvme_ctrl *ctrl, void __user *argp)
1942{
1943 struct nvme_ns *ns;
1944 int ret;
1945
1946 mutex_lock(&ctrl->namespaces_mutex);
1947 if (list_empty(&ctrl->namespaces)) {
1948 ret = -ENOTTY;
1949 goto out_unlock;
1950 }
1951
1952 ns = list_first_entry(&ctrl->namespaces, struct nvme_ns, list);
1953 if (ns != list_last_entry(&ctrl->namespaces, struct nvme_ns, list)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001954 dev_warn(ctrl->device,
Christoph Hellwigbfd89472015-12-24 15:27:01 +01001955 "NVME_IOCTL_IO_CMD not supported when multiple namespaces present!\n");
1956 ret = -EINVAL;
1957 goto out_unlock;
1958 }
1959
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001960 dev_warn(ctrl->device,
Christoph Hellwigbfd89472015-12-24 15:27:01 +01001961 "using deprecated NVME_IOCTL_IO_CMD ioctl on the char device!\n");
1962 kref_get(&ns->kref);
1963 mutex_unlock(&ctrl->namespaces_mutex);
1964
1965 ret = nvme_user_cmd(ctrl, ns, argp);
1966 nvme_put_ns(ns);
1967 return ret;
1968
1969out_unlock:
1970 mutex_unlock(&ctrl->namespaces_mutex);
1971 return ret;
1972}
1973
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001974static long nvme_dev_ioctl(struct file *file, unsigned int cmd,
1975 unsigned long arg)
1976{
1977 struct nvme_ctrl *ctrl = file->private_data;
1978 void __user *argp = (void __user *)arg;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001979
1980 switch (cmd) {
1981 case NVME_IOCTL_ADMIN_CMD:
1982 return nvme_user_cmd(ctrl, NULL, argp);
1983 case NVME_IOCTL_IO_CMD:
Christoph Hellwigbfd89472015-12-24 15:27:01 +01001984 return nvme_dev_user_cmd(ctrl, argp);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001985 case NVME_IOCTL_RESET:
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001986 dev_warn(ctrl->device, "resetting controller\n");
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02001987 return nvme_reset_ctrl_sync(ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001988 case NVME_IOCTL_SUBSYS_RESET:
1989 return nvme_reset_subsystem(ctrl);
Keith Busch9ec3bb22016-04-29 15:45:18 -06001990 case NVME_IOCTL_RESCAN:
1991 nvme_queue_scan(ctrl);
1992 return 0;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001993 default:
1994 return -ENOTTY;
1995 }
1996}
1997
1998static const struct file_operations nvme_dev_fops = {
1999 .owner = THIS_MODULE,
2000 .open = nvme_dev_open,
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002001 .unlocked_ioctl = nvme_dev_ioctl,
2002 .compat_ioctl = nvme_dev_ioctl,
2003};
2004
2005static ssize_t nvme_sysfs_reset(struct device *dev,
2006 struct device_attribute *attr, const char *buf,
2007 size_t count)
2008{
2009 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2010 int ret;
2011
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002012 ret = nvme_reset_ctrl_sync(ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002013 if (ret < 0)
2014 return ret;
2015 return count;
2016}
2017static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
2018
Keith Busch9ec3bb22016-04-29 15:45:18 -06002019static ssize_t nvme_sysfs_rescan(struct device *dev,
2020 struct device_attribute *attr, const char *buf,
2021 size_t count)
2022{
2023 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2024
2025 nvme_queue_scan(ctrl);
2026 return count;
2027}
2028static DEVICE_ATTR(rescan_controller, S_IWUSR, NULL, nvme_sysfs_rescan);
2029
Keith Busch118472a2016-02-18 09:57:48 -07002030static ssize_t wwid_show(struct device *dev, struct device_attribute *attr,
2031 char *buf)
2032{
Simon A. F. Lund40267ef2016-09-16 14:25:08 +02002033 struct nvme_ns *ns = nvme_get_ns_from_dev(dev);
Keith Busch118472a2016-02-18 09:57:48 -07002034 struct nvme_ctrl *ctrl = ns->ctrl;
2035 int serial_len = sizeof(ctrl->serial);
2036 int model_len = sizeof(ctrl->model);
2037
Johannes Thumshirn6484f5d2017-07-12 15:38:56 +02002038 if (!uuid_is_null(&ns->uuid))
2039 return sprintf(buf, "uuid.%pU\n", &ns->uuid);
2040
Johannes Thumshirn90985b82017-06-07 11:45:31 +02002041 if (memchr_inv(ns->nguid, 0, sizeof(ns->nguid)))
2042 return sprintf(buf, "eui.%16phN\n", ns->nguid);
Keith Busch118472a2016-02-18 09:57:48 -07002043
2044 if (memchr_inv(ns->eui, 0, sizeof(ns->eui)))
2045 return sprintf(buf, "eui.%8phN\n", ns->eui);
2046
Martin Wilck758f3732017-07-20 18:34:02 +02002047 while (serial_len > 0 && (ctrl->serial[serial_len - 1] == ' ' ||
2048 ctrl->serial[serial_len - 1] == '\0'))
Keith Busch118472a2016-02-18 09:57:48 -07002049 serial_len--;
Martin Wilck758f3732017-07-20 18:34:02 +02002050 while (model_len > 0 && (ctrl->model[model_len - 1] == ' ' ||
2051 ctrl->model[model_len - 1] == '\0'))
Keith Busch118472a2016-02-18 09:57:48 -07002052 model_len--;
2053
2054 return sprintf(buf, "nvme.%04x-%*phN-%*phN-%08x\n", ctrl->vid,
2055 serial_len, ctrl->serial, model_len, ctrl->model, ns->ns_id);
2056}
2057static DEVICE_ATTR(wwid, S_IRUGO, wwid_show, NULL);
2058
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002059static ssize_t nguid_show(struct device *dev, struct device_attribute *attr,
2060 char *buf)
2061{
2062 struct nvme_ns *ns = nvme_get_ns_from_dev(dev);
2063 return sprintf(buf, "%pU\n", ns->nguid);
2064}
2065static DEVICE_ATTR(nguid, S_IRUGO, nguid_show, NULL);
2066
Keith Busch2b9b6e82015-12-22 10:10:45 -07002067static ssize_t uuid_show(struct device *dev, struct device_attribute *attr,
2068 char *buf)
2069{
Simon A. F. Lund40267ef2016-09-16 14:25:08 +02002070 struct nvme_ns *ns = nvme_get_ns_from_dev(dev);
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002071
2072 /* For backward compatibility expose the NGUID to userspace if
2073 * we have no UUID set
2074 */
2075 if (uuid_is_null(&ns->uuid)) {
2076 printk_ratelimited(KERN_WARNING
2077 "No UUID available providing old NGUID\n");
2078 return sprintf(buf, "%pU\n", ns->nguid);
2079 }
2080 return sprintf(buf, "%pU\n", &ns->uuid);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002081}
2082static DEVICE_ATTR(uuid, S_IRUGO, uuid_show, NULL);
2083
2084static ssize_t eui_show(struct device *dev, struct device_attribute *attr,
2085 char *buf)
2086{
Simon A. F. Lund40267ef2016-09-16 14:25:08 +02002087 struct nvme_ns *ns = nvme_get_ns_from_dev(dev);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002088 return sprintf(buf, "%8phd\n", ns->eui);
2089}
2090static DEVICE_ATTR(eui, S_IRUGO, eui_show, NULL);
2091
2092static ssize_t nsid_show(struct device *dev, struct device_attribute *attr,
2093 char *buf)
2094{
Simon A. F. Lund40267ef2016-09-16 14:25:08 +02002095 struct nvme_ns *ns = nvme_get_ns_from_dev(dev);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002096 return sprintf(buf, "%d\n", ns->ns_id);
2097}
2098static DEVICE_ATTR(nsid, S_IRUGO, nsid_show, NULL);
2099
2100static struct attribute *nvme_ns_attrs[] = {
Keith Busch118472a2016-02-18 09:57:48 -07002101 &dev_attr_wwid.attr,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002102 &dev_attr_uuid.attr,
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002103 &dev_attr_nguid.attr,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002104 &dev_attr_eui.attr,
2105 &dev_attr_nsid.attr,
2106 NULL,
2107};
2108
Ming Lin1a353d82016-06-13 16:45:24 +02002109static umode_t nvme_ns_attrs_are_visible(struct kobject *kobj,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002110 struct attribute *a, int n)
2111{
2112 struct device *dev = container_of(kobj, struct device, kobj);
Simon A. F. Lund40267ef2016-09-16 14:25:08 +02002113 struct nvme_ns *ns = nvme_get_ns_from_dev(dev);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002114
2115 if (a == &dev_attr_uuid.attr) {
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002116 if (uuid_is_null(&ns->uuid) ||
2117 !memchr_inv(ns->nguid, 0, sizeof(ns->nguid)))
2118 return 0;
2119 }
2120 if (a == &dev_attr_nguid.attr) {
Johannes Thumshirn90985b82017-06-07 11:45:31 +02002121 if (!memchr_inv(ns->nguid, 0, sizeof(ns->nguid)))
Keith Busch2b9b6e82015-12-22 10:10:45 -07002122 return 0;
2123 }
2124 if (a == &dev_attr_eui.attr) {
2125 if (!memchr_inv(ns->eui, 0, sizeof(ns->eui)))
2126 return 0;
2127 }
2128 return a->mode;
2129}
2130
2131static const struct attribute_group nvme_ns_attr_group = {
2132 .attrs = nvme_ns_attrs,
Ming Lin1a353d82016-06-13 16:45:24 +02002133 .is_visible = nvme_ns_attrs_are_visible,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002134};
2135
Ming Lin931e1c22016-02-26 13:24:19 -08002136#define nvme_show_str_function(field) \
Keith Busch779ff7562016-01-12 15:09:31 -07002137static ssize_t field##_show(struct device *dev, \
2138 struct device_attribute *attr, char *buf) \
2139{ \
2140 struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \
2141 return sprintf(buf, "%.*s\n", (int)sizeof(ctrl->field), ctrl->field); \
2142} \
2143static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
2144
Ming Lin931e1c22016-02-26 13:24:19 -08002145#define nvme_show_int_function(field) \
2146static ssize_t field##_show(struct device *dev, \
2147 struct device_attribute *attr, char *buf) \
2148{ \
2149 struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \
2150 return sprintf(buf, "%d\n", ctrl->field); \
2151} \
2152static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
2153
2154nvme_show_str_function(model);
2155nvme_show_str_function(serial);
2156nvme_show_str_function(firmware_rev);
2157nvme_show_int_function(cntlid);
Keith Busch779ff7562016-01-12 15:09:31 -07002158
Ming Lin1a353d82016-06-13 16:45:24 +02002159static ssize_t nvme_sysfs_delete(struct device *dev,
2160 struct device_attribute *attr, const char *buf,
2161 size_t count)
2162{
2163 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2164
2165 if (device_remove_file_self(dev, attr))
Christoph Hellwigc5017e82017-10-29 10:44:29 +02002166 nvme_delete_ctrl_sync(ctrl);
Ming Lin1a353d82016-06-13 16:45:24 +02002167 return count;
2168}
2169static DEVICE_ATTR(delete_controller, S_IWUSR, NULL, nvme_sysfs_delete);
2170
2171static ssize_t nvme_sysfs_show_transport(struct device *dev,
2172 struct device_attribute *attr,
2173 char *buf)
2174{
2175 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2176
2177 return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->ops->name);
2178}
2179static DEVICE_ATTR(transport, S_IRUGO, nvme_sysfs_show_transport, NULL);
2180
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002181static ssize_t nvme_sysfs_show_state(struct device *dev,
2182 struct device_attribute *attr,
2183 char *buf)
2184{
2185 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2186 static const char *const state_name[] = {
2187 [NVME_CTRL_NEW] = "new",
2188 [NVME_CTRL_LIVE] = "live",
2189 [NVME_CTRL_RESETTING] = "resetting",
2190 [NVME_CTRL_RECONNECTING]= "reconnecting",
2191 [NVME_CTRL_DELETING] = "deleting",
2192 [NVME_CTRL_DEAD] = "dead",
2193 };
2194
2195 if ((unsigned)ctrl->state < ARRAY_SIZE(state_name) &&
2196 state_name[ctrl->state])
2197 return sprintf(buf, "%s\n", state_name[ctrl->state]);
2198
2199 return sprintf(buf, "unknown state\n");
2200}
2201
2202static DEVICE_ATTR(state, S_IRUGO, nvme_sysfs_show_state, NULL);
2203
Ming Lin1a353d82016-06-13 16:45:24 +02002204static ssize_t nvme_sysfs_show_subsysnqn(struct device *dev,
2205 struct device_attribute *attr,
2206 char *buf)
2207{
2208 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2209
Christoph Hellwig180de0072017-06-26 12:39:02 +02002210 return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->subnqn);
Ming Lin1a353d82016-06-13 16:45:24 +02002211}
2212static DEVICE_ATTR(subsysnqn, S_IRUGO, nvme_sysfs_show_subsysnqn, NULL);
2213
2214static ssize_t nvme_sysfs_show_address(struct device *dev,
2215 struct device_attribute *attr,
2216 char *buf)
2217{
2218 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2219
2220 return ctrl->ops->get_address(ctrl, buf, PAGE_SIZE);
2221}
2222static DEVICE_ATTR(address, S_IRUGO, nvme_sysfs_show_address, NULL);
2223
Keith Busch779ff7562016-01-12 15:09:31 -07002224static struct attribute *nvme_dev_attrs[] = {
2225 &dev_attr_reset_controller.attr,
Keith Busch9ec3bb22016-04-29 15:45:18 -06002226 &dev_attr_rescan_controller.attr,
Keith Busch779ff7562016-01-12 15:09:31 -07002227 &dev_attr_model.attr,
2228 &dev_attr_serial.attr,
2229 &dev_attr_firmware_rev.attr,
Ming Lin931e1c22016-02-26 13:24:19 -08002230 &dev_attr_cntlid.attr,
Ming Lin1a353d82016-06-13 16:45:24 +02002231 &dev_attr_delete_controller.attr,
2232 &dev_attr_transport.attr,
2233 &dev_attr_subsysnqn.attr,
2234 &dev_attr_address.attr,
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002235 &dev_attr_state.attr,
Keith Busch779ff7562016-01-12 15:09:31 -07002236 NULL
2237};
2238
Ming Lin1a353d82016-06-13 16:45:24 +02002239static umode_t nvme_dev_attrs_are_visible(struct kobject *kobj,
2240 struct attribute *a, int n)
2241{
2242 struct device *dev = container_of(kobj, struct device, kobj);
2243 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2244
Christoph Hellwig49d3d502017-06-26 12:39:03 +02002245 if (a == &dev_attr_delete_controller.attr && !ctrl->ops->delete_ctrl)
2246 return 0;
2247 if (a == &dev_attr_address.attr && !ctrl->ops->get_address)
2248 return 0;
Ming Lin1a353d82016-06-13 16:45:24 +02002249
2250 return a->mode;
2251}
2252
Keith Busch779ff7562016-01-12 15:09:31 -07002253static struct attribute_group nvme_dev_attrs_group = {
Ming Lin1a353d82016-06-13 16:45:24 +02002254 .attrs = nvme_dev_attrs,
2255 .is_visible = nvme_dev_attrs_are_visible,
Keith Busch779ff7562016-01-12 15:09:31 -07002256};
2257
2258static const struct attribute_group *nvme_dev_attr_groups[] = {
2259 &nvme_dev_attrs_group,
2260 NULL,
2261};
2262
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002263static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2264{
2265 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2266 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2267
2268 return nsa->ns_id - nsb->ns_id;
2269}
2270
Keith Busch32f0c4a2016-07-13 11:45:02 -06002271static struct nvme_ns *nvme_find_get_ns(struct nvme_ctrl *ctrl, unsigned nsid)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002272{
Keith Busch32f0c4a2016-07-13 11:45:02 -06002273 struct nvme_ns *ns, *ret = NULL;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002274
Keith Busch32f0c4a2016-07-13 11:45:02 -06002275 mutex_lock(&ctrl->namespaces_mutex);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002276 list_for_each_entry(ns, &ctrl->namespaces, list) {
Keith Busch32f0c4a2016-07-13 11:45:02 -06002277 if (ns->ns_id == nsid) {
Christoph Hellwig2dd41222017-10-18 13:20:01 +02002278 if (!kref_get_unless_zero(&ns->kref))
2279 continue;
Keith Busch32f0c4a2016-07-13 11:45:02 -06002280 ret = ns;
2281 break;
2282 }
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002283 if (ns->ns_id > nsid)
2284 break;
2285 }
Keith Busch32f0c4a2016-07-13 11:45:02 -06002286 mutex_unlock(&ctrl->namespaces_mutex);
2287 return ret;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002288}
2289
Jens Axboef5d11842017-06-27 12:03:06 -06002290static int nvme_setup_streams_ns(struct nvme_ctrl *ctrl, struct nvme_ns *ns)
2291{
2292 struct streams_directive_params s;
2293 int ret;
2294
2295 if (!ctrl->nr_streams)
2296 return 0;
2297
2298 ret = nvme_get_stream_params(ctrl, &s, ns->ns_id);
2299 if (ret)
2300 return ret;
2301
2302 ns->sws = le32_to_cpu(s.sws);
2303 ns->sgs = le16_to_cpu(s.sgs);
2304
2305 if (ns->sws) {
2306 unsigned int bs = 1 << ns->lba_shift;
2307
2308 blk_queue_io_min(ns->queue, bs * ns->sws);
2309 if (ns->sgs)
2310 blk_queue_io_opt(ns->queue, bs * ns->sws * ns->sgs);
2311 }
2312
2313 return 0;
2314}
2315
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002316static void nvme_alloc_ns(struct nvme_ctrl *ctrl, unsigned nsid)
2317{
2318 struct nvme_ns *ns;
2319 struct gendisk *disk;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002320 struct nvme_id_ns *id;
2321 char disk_name[DISK_NAME_LEN];
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002322 int node = dev_to_node(ctrl->dev);
2323
2324 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
2325 if (!ns)
2326 return;
2327
Keith Busch075790e2016-02-24 09:15:53 -07002328 ns->instance = ida_simple_get(&ctrl->ns_ida, 1, 0, GFP_KERNEL);
2329 if (ns->instance < 0)
2330 goto out_free_ns;
2331
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002332 ns->queue = blk_mq_init_queue(ctrl->tagset);
2333 if (IS_ERR(ns->queue))
Keith Busch075790e2016-02-24 09:15:53 -07002334 goto out_release_instance;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002335 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
2336 ns->queue->queuedata = ns;
2337 ns->ctrl = ctrl;
2338
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002339 kref_init(&ns->kref);
2340 ns->ns_id = nsid;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002341 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002342
2343 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Christoph Hellwigda358252016-03-02 18:07:11 +01002344 nvme_set_queue_limits(ctrl, ns->queue);
Jens Axboef5d11842017-06-27 12:03:06 -06002345 nvme_setup_streams_ns(ctrl, ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002346
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002347 sprintf(disk_name, "nvme%dn%d", ctrl->instance, ns->instance);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002348
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02002349 id = nvme_identify_ns(ctrl, nsid);
2350 if (!id)
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002351 goto out_free_queue;
2352
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02002353 if (id->ncap == 0)
2354 goto out_free_id;
2355
2356 nvme_report_ns_ids(ctrl, ns->ns_id, id, ns->eui, ns->nguid, &ns->uuid);
2357
Christoph Hellwig608cc4b2017-09-06 11:45:24 +02002358 if ((ctrl->quirks & NVME_QUIRK_LIGHTNVM) && id->vs[0] == 0x1) {
2359 if (nvme_nvm_register(ns, disk_name, node)) {
2360 dev_warn(ctrl->device, "LightNVM init failure\n");
2361 goto out_free_id;
2362 }
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002363 }
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002364
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002365 disk = alloc_disk_node(0, node);
2366 if (!disk)
2367 goto out_free_id;
2368
2369 disk->fops = &nvme_fops;
2370 disk->private_data = ns;
2371 disk->queue = ns->queue;
2372 disk->flags = GENHD_FL_EXT_DEVT;
2373 memcpy(disk->disk_name, disk_name, DISK_NAME_LEN);
2374 ns->disk = disk;
2375
2376 __nvme_revalidate_disk(disk, id);
2377
Keith Busch32f0c4a2016-07-13 11:45:02 -06002378 mutex_lock(&ctrl->namespaces_mutex);
2379 list_add_tail(&ns->list, &ctrl->namespaces);
2380 mutex_unlock(&ctrl->namespaces_mutex);
2381
Christoph Hellwigd22524a2017-10-18 13:25:42 +02002382 nvme_get_ctrl(ctrl);
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002383
2384 kfree(id);
2385
Dan Williams0d52c7562016-06-15 19:44:20 -07002386 device_add_disk(ctrl->device, ns->disk);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002387 if (sysfs_create_group(&disk_to_dev(ns->disk)->kobj,
2388 &nvme_ns_attr_group))
2389 pr_warn("%s: failed to create sysfs group for identification\n",
2390 ns->disk->disk_name);
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002391 if (ns->ndev && nvme_nvm_register_sysfs(ns))
2392 pr_warn("%s: failed to register lightnvm sysfs group for identification\n",
2393 ns->disk->disk_name);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002394 return;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002395 out_free_id:
2396 kfree(id);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002397 out_free_queue:
2398 blk_cleanup_queue(ns->queue);
Keith Busch075790e2016-02-24 09:15:53 -07002399 out_release_instance:
2400 ida_simple_remove(&ctrl->ns_ida, ns->instance);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002401 out_free_ns:
2402 kfree(ns);
2403}
2404
2405static void nvme_ns_remove(struct nvme_ns *ns)
2406{
Keith Busch646017a2016-02-24 09:15:54 -07002407 if (test_and_set_bit(NVME_NS_REMOVING, &ns->flags))
2408 return;
2409
Matias Bjørlingb0b4e092016-09-16 14:25:07 +02002410 if (ns->disk && ns->disk->flags & GENHD_FL_UP) {
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002411 if (blk_get_integrity(ns->disk))
2412 blk_integrity_unregister(ns->disk);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002413 sysfs_remove_group(&disk_to_dev(ns->disk)->kobj,
2414 &nvme_ns_attr_group);
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002415 if (ns->ndev)
2416 nvme_nvm_unregister_sysfs(ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002417 del_gendisk(ns->disk);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002418 blk_cleanup_queue(ns->queue);
2419 }
Keith Busch32f0c4a2016-07-13 11:45:02 -06002420
2421 mutex_lock(&ns->ctrl->namespaces_mutex);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002422 list_del_init(&ns->list);
Keith Busch32f0c4a2016-07-13 11:45:02 -06002423 mutex_unlock(&ns->ctrl->namespaces_mutex);
2424
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002425 nvme_put_ns(ns);
2426}
2427
Keith Busch540c8012015-10-22 15:45:06 -06002428static void nvme_validate_ns(struct nvme_ctrl *ctrl, unsigned nsid)
2429{
2430 struct nvme_ns *ns;
2431
Keith Busch32f0c4a2016-07-13 11:45:02 -06002432 ns = nvme_find_get_ns(ctrl, nsid);
Keith Busch540c8012015-10-22 15:45:06 -06002433 if (ns) {
Matias Bjørlingb0b4e092016-09-16 14:25:07 +02002434 if (ns->disk && revalidate_disk(ns->disk))
Keith Busch540c8012015-10-22 15:45:06 -06002435 nvme_ns_remove(ns);
Keith Busch32f0c4a2016-07-13 11:45:02 -06002436 nvme_put_ns(ns);
Keith Busch540c8012015-10-22 15:45:06 -06002437 } else
2438 nvme_alloc_ns(ctrl, nsid);
2439}
2440
Sunad Bhandary47b0e502016-05-27 15:59:43 +05302441static void nvme_remove_invalid_namespaces(struct nvme_ctrl *ctrl,
2442 unsigned nsid)
2443{
2444 struct nvme_ns *ns, *next;
2445
2446 list_for_each_entry_safe(ns, next, &ctrl->namespaces, list) {
2447 if (ns->ns_id > nsid)
2448 nvme_ns_remove(ns);
2449 }
2450}
2451
Keith Busch540c8012015-10-22 15:45:06 -06002452static int nvme_scan_ns_list(struct nvme_ctrl *ctrl, unsigned nn)
2453{
2454 struct nvme_ns *ns;
2455 __le32 *ns_list;
2456 unsigned i, j, nsid, prev = 0, num_lists = DIV_ROUND_UP(nn, 1024);
2457 int ret = 0;
2458
2459 ns_list = kzalloc(0x1000, GFP_KERNEL);
2460 if (!ns_list)
2461 return -ENOMEM;
2462
2463 for (i = 0; i < num_lists; i++) {
2464 ret = nvme_identify_ns_list(ctrl, prev, ns_list);
2465 if (ret)
Sunad Bhandary47b0e502016-05-27 15:59:43 +05302466 goto free;
Keith Busch540c8012015-10-22 15:45:06 -06002467
2468 for (j = 0; j < min(nn, 1024U); j++) {
2469 nsid = le32_to_cpu(ns_list[j]);
2470 if (!nsid)
2471 goto out;
2472
2473 nvme_validate_ns(ctrl, nsid);
2474
2475 while (++prev < nsid) {
Keith Busch32f0c4a2016-07-13 11:45:02 -06002476 ns = nvme_find_get_ns(ctrl, prev);
2477 if (ns) {
Keith Busch540c8012015-10-22 15:45:06 -06002478 nvme_ns_remove(ns);
Keith Busch32f0c4a2016-07-13 11:45:02 -06002479 nvme_put_ns(ns);
2480 }
Keith Busch540c8012015-10-22 15:45:06 -06002481 }
2482 }
2483 nn -= j;
2484 }
2485 out:
Sunad Bhandary47b0e502016-05-27 15:59:43 +05302486 nvme_remove_invalid_namespaces(ctrl, prev);
2487 free:
Keith Busch540c8012015-10-22 15:45:06 -06002488 kfree(ns_list);
2489 return ret;
2490}
2491
Christoph Hellwig5955be22016-04-26 13:51:59 +02002492static void nvme_scan_ns_sequential(struct nvme_ctrl *ctrl, unsigned nn)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002493{
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002494 unsigned i;
2495
Keith Busch540c8012015-10-22 15:45:06 -06002496 for (i = 1; i <= nn; i++)
2497 nvme_validate_ns(ctrl, i);
2498
Sunad Bhandary47b0e502016-05-27 15:59:43 +05302499 nvme_remove_invalid_namespaces(ctrl, nn);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002500}
2501
Christoph Hellwig5955be22016-04-26 13:51:59 +02002502static void nvme_scan_work(struct work_struct *work)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002503{
Christoph Hellwig5955be22016-04-26 13:51:59 +02002504 struct nvme_ctrl *ctrl =
2505 container_of(work, struct nvme_ctrl, scan_work);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002506 struct nvme_id_ctrl *id;
Keith Busch540c8012015-10-22 15:45:06 -06002507 unsigned nn;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002508
Christoph Hellwig5955be22016-04-26 13:51:59 +02002509 if (ctrl->state != NVME_CTRL_LIVE)
2510 return;
2511
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002512 if (nvme_identify_ctrl(ctrl, &id))
2513 return;
Keith Busch540c8012015-10-22 15:45:06 -06002514
2515 nn = le32_to_cpu(id->nn);
Gabriel Krisman Bertazi8ef20742016-10-19 09:51:05 -06002516 if (ctrl->vs >= NVME_VS(1, 1, 0) &&
Keith Busch540c8012015-10-22 15:45:06 -06002517 !(ctrl->quirks & NVME_QUIRK_IDENTIFY_CNS)) {
2518 if (!nvme_scan_ns_list(ctrl, nn))
2519 goto done;
2520 }
Christoph Hellwig5955be22016-04-26 13:51:59 +02002521 nvme_scan_ns_sequential(ctrl, nn);
Keith Busch540c8012015-10-22 15:45:06 -06002522 done:
Keith Busch32f0c4a2016-07-13 11:45:02 -06002523 mutex_lock(&ctrl->namespaces_mutex);
Keith Busch540c8012015-10-22 15:45:06 -06002524 list_sort(NULL, &ctrl->namespaces, ns_cmp);
Christoph Hellwig69d3b8a2015-12-24 15:27:00 +01002525 mutex_unlock(&ctrl->namespaces_mutex);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002526 kfree(id);
2527}
Christoph Hellwig5955be22016-04-26 13:51:59 +02002528
2529void nvme_queue_scan(struct nvme_ctrl *ctrl)
2530{
2531 /*
2532 * Do not queue new scan work when a controller is reset during
2533 * removal.
2534 */
2535 if (ctrl->state == NVME_CTRL_LIVE)
Sagi Grimbergc669ccd2017-05-04 13:33:14 +03002536 queue_work(nvme_wq, &ctrl->scan_work);
Christoph Hellwig5955be22016-04-26 13:51:59 +02002537}
2538EXPORT_SYMBOL_GPL(nvme_queue_scan);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002539
Keith Busch32f0c4a2016-07-13 11:45:02 -06002540/*
2541 * This function iterates the namespace list unlocked to allow recovery from
2542 * controller failure. It is up to the caller to ensure the namespace list is
2543 * not modified by scan work while this function is executing.
2544 */
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002545void nvme_remove_namespaces(struct nvme_ctrl *ctrl)
2546{
2547 struct nvme_ns *ns, *next;
2548
Keith Busch0ff9d4e2016-05-12 08:37:14 -06002549 /*
2550 * The dead states indicates the controller was not gracefully
2551 * disconnected. In that case, we won't be able to flush any data while
2552 * removing the namespaces' disks; fail all the queues now to avoid
2553 * potentially having to clean up the failed sync later.
2554 */
2555 if (ctrl->state == NVME_CTRL_DEAD)
2556 nvme_kill_queues(ctrl);
2557
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002558 list_for_each_entry_safe(ns, next, &ctrl->namespaces, list)
2559 nvme_ns_remove(ns);
2560}
Ming Lin576d55d2016-02-10 10:03:32 -08002561EXPORT_SYMBOL_GPL(nvme_remove_namespaces);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002562
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002563static void nvme_async_event_work(struct work_struct *work)
2564{
2565 struct nvme_ctrl *ctrl =
2566 container_of(work, struct nvme_ctrl, async_event_work);
2567
2568 spin_lock_irq(&ctrl->lock);
James Smartcd482822017-09-14 11:03:09 -07002569 while (ctrl->state == NVME_CTRL_LIVE && ctrl->event_limit > 0) {
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002570 int aer_idx = --ctrl->event_limit;
2571
2572 spin_unlock_irq(&ctrl->lock);
2573 ctrl->ops->submit_async_event(ctrl, aer_idx);
2574 spin_lock_irq(&ctrl->lock);
2575 }
2576 spin_unlock_irq(&ctrl->lock);
2577}
2578
Arnav Dawnb6dccf72017-07-12 16:10:40 +05302579static bool nvme_ctrl_pp_status(struct nvme_ctrl *ctrl)
2580{
2581
2582 u32 csts;
2583
2584 if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts))
2585 return false;
2586
2587 if (csts == ~0)
2588 return false;
2589
2590 return ((ctrl->ctrl_config & NVME_CC_ENABLE) && (csts & NVME_CSTS_PP));
2591}
2592
2593static void nvme_get_fw_slot_info(struct nvme_ctrl *ctrl)
2594{
2595 struct nvme_command c = { };
2596 struct nvme_fw_slot_info_log *log;
2597
2598 log = kmalloc(sizeof(*log), GFP_KERNEL);
2599 if (!log)
2600 return;
2601
2602 c.common.opcode = nvme_admin_get_log_page;
Arnav Dawn62346ea2017-07-12 16:11:53 +05302603 c.common.nsid = cpu_to_le32(NVME_NSID_ALL);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05302604 c.common.cdw10[0] = nvme_get_log_dw10(NVME_LOG_FW_SLOT, sizeof(*log));
2605
2606 if (!nvme_submit_sync_cmd(ctrl->admin_q, &c, log, sizeof(*log)))
2607 dev_warn(ctrl->device,
2608 "Get FW SLOT INFO log error\n");
2609 kfree(log);
2610}
2611
2612static void nvme_fw_act_work(struct work_struct *work)
2613{
2614 struct nvme_ctrl *ctrl = container_of(work,
2615 struct nvme_ctrl, fw_act_work);
2616 unsigned long fw_act_timeout;
2617
2618 if (ctrl->mtfa)
2619 fw_act_timeout = jiffies +
2620 msecs_to_jiffies(ctrl->mtfa * 100);
2621 else
2622 fw_act_timeout = jiffies +
2623 msecs_to_jiffies(admin_timeout * 1000);
2624
2625 nvme_stop_queues(ctrl);
2626 while (nvme_ctrl_pp_status(ctrl)) {
2627 if (time_after(jiffies, fw_act_timeout)) {
2628 dev_warn(ctrl->device,
2629 "Fw activation timeout, reset controller\n");
2630 nvme_reset_ctrl(ctrl);
2631 break;
2632 }
2633 msleep(100);
2634 }
2635
2636 if (ctrl->state != NVME_CTRL_LIVE)
2637 return;
2638
2639 nvme_start_queues(ctrl);
2640 /* read FW slot informationi to clear the AER*/
2641 nvme_get_fw_slot_info(ctrl);
2642}
2643
Christoph Hellwig7bf58532016-11-10 07:32:34 -08002644void nvme_complete_async_event(struct nvme_ctrl *ctrl, __le16 status,
2645 union nvme_result *res)
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002646{
Christoph Hellwig7bf58532016-11-10 07:32:34 -08002647 u32 result = le32_to_cpu(res->u32);
2648 bool done = true;
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002649
Christoph Hellwig7bf58532016-11-10 07:32:34 -08002650 switch (le16_to_cpu(status) >> 1) {
2651 case NVME_SC_SUCCESS:
2652 done = false;
2653 /*FALLTHRU*/
2654 case NVME_SC_ABORT_REQ:
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002655 ++ctrl->event_limit;
James Smartcd482822017-09-14 11:03:09 -07002656 if (ctrl->state == NVME_CTRL_LIVE)
Sagi Grimberg1a40d972017-09-21 17:01:36 +03002657 queue_work(nvme_wq, &ctrl->async_event_work);
Christoph Hellwig7bf58532016-11-10 07:32:34 -08002658 break;
2659 default:
2660 break;
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002661 }
2662
Christoph Hellwig7bf58532016-11-10 07:32:34 -08002663 if (done)
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002664 return;
2665
2666 switch (result & 0xff07) {
2667 case NVME_AER_NOTICE_NS_CHANGED:
2668 dev_info(ctrl->device, "rescanning\n");
2669 nvme_queue_scan(ctrl);
2670 break;
Arnav Dawnb6dccf72017-07-12 16:10:40 +05302671 case NVME_AER_NOTICE_FW_ACT_STARTING:
Sagi Grimberg1a40d972017-09-21 17:01:36 +03002672 queue_work(nvme_wq, &ctrl->fw_act_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05302673 break;
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002674 default:
2675 dev_warn(ctrl->device, "async event result %08x\n", result);
2676 }
2677}
2678EXPORT_SYMBOL_GPL(nvme_complete_async_event);
2679
2680void nvme_queue_async_events(struct nvme_ctrl *ctrl)
2681{
2682 ctrl->event_limit = NVME_NR_AERS;
Sagi Grimbergc669ccd2017-05-04 13:33:14 +03002683 queue_work(nvme_wq, &ctrl->async_event_work);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002684}
2685EXPORT_SYMBOL_GPL(nvme_queue_async_events);
2686
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03002687void nvme_stop_ctrl(struct nvme_ctrl *ctrl)
Ming Lin576d55d2016-02-10 10:03:32 -08002688{
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03002689 nvme_stop_keep_alive(ctrl);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002690 flush_work(&ctrl->async_event_work);
Christoph Hellwig5955be22016-04-26 13:51:59 +02002691 flush_work(&ctrl->scan_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05302692 cancel_work_sync(&ctrl->fw_act_work);
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03002693}
2694EXPORT_SYMBOL_GPL(nvme_stop_ctrl);
Christoph Hellwig5955be22016-04-26 13:51:59 +02002695
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03002696void nvme_start_ctrl(struct nvme_ctrl *ctrl)
2697{
2698 if (ctrl->kato)
2699 nvme_start_keep_alive(ctrl);
2700
2701 if (ctrl->queue_count > 1) {
2702 nvme_queue_scan(ctrl);
2703 nvme_queue_async_events(ctrl);
2704 nvme_start_queues(ctrl);
2705 }
2706}
2707EXPORT_SYMBOL_GPL(nvme_start_ctrl);
2708
2709void nvme_uninit_ctrl(struct nvme_ctrl *ctrl)
2710{
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002711 cdev_device_del(&ctrl->cdev, ctrl->device);
Keith Busch53029b02015-11-28 15:41:02 +01002712}
Ming Lin576d55d2016-02-10 10:03:32 -08002713EXPORT_SYMBOL_GPL(nvme_uninit_ctrl);
Keith Busch53029b02015-11-28 15:41:02 +01002714
Christoph Hellwigd22524a2017-10-18 13:25:42 +02002715static void nvme_free_ctrl(struct device *dev)
Keith Busch53029b02015-11-28 15:41:02 +01002716{
Christoph Hellwigd22524a2017-10-18 13:25:42 +02002717 struct nvme_ctrl *ctrl =
2718 container_of(dev, struct nvme_ctrl, ctrl_device);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002719
Christoph Hellwig9843f682017-10-18 13:10:01 +02002720 ida_simple_remove(&nvme_instance_ida, ctrl->instance);
Keith Busch075790e2016-02-24 09:15:53 -07002721 ida_destroy(&ctrl->ns_ida);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002722
2723 ctrl->ops->free_ctrl(ctrl);
2724}
2725
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002726/*
2727 * Initialize a NVMe controller structures. This needs to be called during
2728 * earliest initialization so that we have the initialized structured around
2729 * during probing.
2730 */
2731int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev,
2732 const struct nvme_ctrl_ops *ops, unsigned long quirks)
2733{
2734 int ret;
2735
Christoph Hellwigbb8d2612016-04-26 13:51:57 +02002736 ctrl->state = NVME_CTRL_NEW;
2737 spin_lock_init(&ctrl->lock);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002738 INIT_LIST_HEAD(&ctrl->namespaces);
Christoph Hellwig69d3b8a2015-12-24 15:27:00 +01002739 mutex_init(&ctrl->namespaces_mutex);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002740 ctrl->dev = dev;
2741 ctrl->ops = ops;
2742 ctrl->quirks = quirks;
Christoph Hellwig5955be22016-04-26 13:51:59 +02002743 INIT_WORK(&ctrl->scan_work, nvme_scan_work);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02002744 INIT_WORK(&ctrl->async_event_work, nvme_async_event_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05302745 INIT_WORK(&ctrl->fw_act_work, nvme_fw_act_work);
Christoph Hellwigc5017e82017-10-29 10:44:29 +02002746 INIT_WORK(&ctrl->delete_work, nvme_delete_ctrl_work);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002747
Christoph Hellwig9843f682017-10-18 13:10:01 +02002748 ret = ida_simple_get(&nvme_instance_ida, 0, 0, GFP_KERNEL);
2749 if (ret < 0)
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002750 goto out;
Christoph Hellwig9843f682017-10-18 13:10:01 +02002751 ctrl->instance = ret;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002752
Christoph Hellwigd22524a2017-10-18 13:25:42 +02002753 device_initialize(&ctrl->ctrl_device);
2754 ctrl->device = &ctrl->ctrl_device;
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002755 ctrl->device->devt = MKDEV(MAJOR(nvme_chr_devt), ctrl->instance);
Christoph Hellwigd22524a2017-10-18 13:25:42 +02002756 ctrl->device->class = nvme_class;
2757 ctrl->device->parent = ctrl->dev;
2758 ctrl->device->groups = nvme_dev_attr_groups;
2759 ctrl->device->release = nvme_free_ctrl;
2760 dev_set_drvdata(ctrl->device, ctrl);
2761 ret = dev_set_name(ctrl->device, "nvme%d", ctrl->instance);
2762 if (ret)
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002763 goto out_release_instance;
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002764
2765 cdev_init(&ctrl->cdev, &nvme_dev_fops);
2766 ctrl->cdev.owner = ops->module;
2767 ret = cdev_device_add(&ctrl->cdev, ctrl->device);
Christoph Hellwigd22524a2017-10-18 13:25:42 +02002768 if (ret)
2769 goto out_free_name;
2770
Keith Busch075790e2016-02-24 09:15:53 -07002771 ida_init(&ctrl->ns_ida);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002772
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002773 /*
2774 * Initialize latency tolerance controls. The sysfs files won't
2775 * be visible to userspace unless the device actually supports APST.
2776 */
2777 ctrl->device->power.set_latency_tolerance = nvme_set_latency_tolerance;
2778 dev_pm_qos_update_user_latency_tolerance(ctrl->device,
2779 min(default_ps_max_latency_us, (unsigned long)S32_MAX));
2780
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002781 return 0;
Christoph Hellwigd22524a2017-10-18 13:25:42 +02002782out_free_name:
2783 kfree_const(dev->kobj.name);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002784out_release_instance:
Christoph Hellwig9843f682017-10-18 13:10:01 +02002785 ida_simple_remove(&nvme_instance_ida, ctrl->instance);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002786out:
2787 return ret;
2788}
Ming Lin576d55d2016-02-10 10:03:32 -08002789EXPORT_SYMBOL_GPL(nvme_init_ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002790
Keith Busch69d9a992016-02-24 09:15:56 -07002791/**
2792 * nvme_kill_queues(): Ends all namespace queues
2793 * @ctrl: the dead controller that needs to end
2794 *
2795 * Call this function when the driver determines it is unable to get the
2796 * controller in a state capable of servicing IO.
2797 */
2798void nvme_kill_queues(struct nvme_ctrl *ctrl)
2799{
2800 struct nvme_ns *ns;
2801
Keith Busch32f0c4a2016-07-13 11:45:02 -06002802 mutex_lock(&ctrl->namespaces_mutex);
Ming Lei82654b62017-06-02 16:32:08 +08002803
Ming Lei443bd902017-06-19 10:21:08 +08002804 /* Forcibly unquiesce queues to avoid blocking dispatch */
Scott Bauer7dd1ab12017-07-25 10:27:06 -06002805 if (ctrl->admin_q)
2806 blk_mq_unquiesce_queue(ctrl->admin_q);
Ming Lei443bd902017-06-19 10:21:08 +08002807
Keith Busch32f0c4a2016-07-13 11:45:02 -06002808 list_for_each_entry(ns, &ctrl->namespaces, list) {
Keith Busch69d9a992016-02-24 09:15:56 -07002809 /*
2810 * Revalidating a dead namespace sets capacity to 0. This will
2811 * end buffered writers dirtying pages that can't be synced.
2812 */
Keith Buschf33447b2017-02-10 18:15:51 -05002813 if (!ns->disk || test_and_set_bit(NVME_NS_DEAD, &ns->flags))
2814 continue;
2815 revalidate_disk(ns->disk);
Keith Busch69d9a992016-02-24 09:15:56 -07002816 blk_set_queue_dying(ns->queue);
Ming Lei806f0262017-05-22 23:05:03 +08002817
Ming Lei443bd902017-06-19 10:21:08 +08002818 /* Forcibly unquiesce queues to avoid blocking dispatch */
2819 blk_mq_unquiesce_queue(ns->queue);
Keith Busch69d9a992016-02-24 09:15:56 -07002820 }
Keith Busch32f0c4a2016-07-13 11:45:02 -06002821 mutex_unlock(&ctrl->namespaces_mutex);
Keith Busch69d9a992016-02-24 09:15:56 -07002822}
Linus Torvalds237045f2016-03-18 17:13:31 -07002823EXPORT_SYMBOL_GPL(nvme_kill_queues);
Keith Busch69d9a992016-02-24 09:15:56 -07002824
Keith Busch302ad8c2017-03-01 14:22:12 -05002825void nvme_unfreeze(struct nvme_ctrl *ctrl)
2826{
2827 struct nvme_ns *ns;
2828
2829 mutex_lock(&ctrl->namespaces_mutex);
2830 list_for_each_entry(ns, &ctrl->namespaces, list)
2831 blk_mq_unfreeze_queue(ns->queue);
2832 mutex_unlock(&ctrl->namespaces_mutex);
2833}
2834EXPORT_SYMBOL_GPL(nvme_unfreeze);
2835
2836void nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout)
2837{
2838 struct nvme_ns *ns;
2839
2840 mutex_lock(&ctrl->namespaces_mutex);
2841 list_for_each_entry(ns, &ctrl->namespaces, list) {
2842 timeout = blk_mq_freeze_queue_wait_timeout(ns->queue, timeout);
2843 if (timeout <= 0)
2844 break;
2845 }
2846 mutex_unlock(&ctrl->namespaces_mutex);
2847}
2848EXPORT_SYMBOL_GPL(nvme_wait_freeze_timeout);
2849
2850void nvme_wait_freeze(struct nvme_ctrl *ctrl)
2851{
2852 struct nvme_ns *ns;
2853
2854 mutex_lock(&ctrl->namespaces_mutex);
2855 list_for_each_entry(ns, &ctrl->namespaces, list)
2856 blk_mq_freeze_queue_wait(ns->queue);
2857 mutex_unlock(&ctrl->namespaces_mutex);
2858}
2859EXPORT_SYMBOL_GPL(nvme_wait_freeze);
2860
2861void nvme_start_freeze(struct nvme_ctrl *ctrl)
2862{
2863 struct nvme_ns *ns;
2864
2865 mutex_lock(&ctrl->namespaces_mutex);
2866 list_for_each_entry(ns, &ctrl->namespaces, list)
Ming Lei1671d522017-03-27 20:06:57 +08002867 blk_freeze_queue_start(ns->queue);
Keith Busch302ad8c2017-03-01 14:22:12 -05002868 mutex_unlock(&ctrl->namespaces_mutex);
2869}
2870EXPORT_SYMBOL_GPL(nvme_start_freeze);
2871
Keith Busch25646262016-01-04 09:10:57 -07002872void nvme_stop_queues(struct nvme_ctrl *ctrl)
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01002873{
2874 struct nvme_ns *ns;
2875
Keith Busch32f0c4a2016-07-13 11:45:02 -06002876 mutex_lock(&ctrl->namespaces_mutex);
Bart Van Asschea6eaa882016-10-28 17:23:40 -07002877 list_for_each_entry(ns, &ctrl->namespaces, list)
Bart Van Assche3174dd32016-10-28 17:23:19 -07002878 blk_mq_quiesce_queue(ns->queue);
Keith Busch32f0c4a2016-07-13 11:45:02 -06002879 mutex_unlock(&ctrl->namespaces_mutex);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01002880}
Ming Lin576d55d2016-02-10 10:03:32 -08002881EXPORT_SYMBOL_GPL(nvme_stop_queues);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01002882
Keith Busch25646262016-01-04 09:10:57 -07002883void nvme_start_queues(struct nvme_ctrl *ctrl)
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01002884{
2885 struct nvme_ns *ns;
2886
Keith Busch32f0c4a2016-07-13 11:45:02 -06002887 mutex_lock(&ctrl->namespaces_mutex);
Sagi Grimberg8d7b8fa2017-07-04 18:16:58 +03002888 list_for_each_entry(ns, &ctrl->namespaces, list)
Ming Leif6601742017-06-06 23:22:04 +08002889 blk_mq_unquiesce_queue(ns->queue);
Keith Busch32f0c4a2016-07-13 11:45:02 -06002890 mutex_unlock(&ctrl->namespaces_mutex);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01002891}
Ming Lin576d55d2016-02-10 10:03:32 -08002892EXPORT_SYMBOL_GPL(nvme_start_queues);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01002893
Sagi Grimberg31b84462017-10-11 12:53:07 +03002894int nvme_reinit_tagset(struct nvme_ctrl *ctrl, struct blk_mq_tag_set *set)
2895{
2896 if (!ctrl->ops->reinit_request)
2897 return 0;
2898
2899 return blk_mq_tagset_iter(set, set->driver_data,
2900 ctrl->ops->reinit_request);
2901}
2902EXPORT_SYMBOL_GPL(nvme_reinit_tagset);
2903
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002904int __init nvme_core_init(void)
2905{
2906 int result;
2907
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002908 nvme_wq = alloc_workqueue("nvme-wq",
2909 WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
2910 if (!nvme_wq)
2911 return -ENOMEM;
2912
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002913 result = alloc_chrdev_region(&nvme_chr_devt, 0, NVME_MINORS, "nvme");
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002914 if (result < 0)
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002915 goto destroy_wq;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002916
2917 nvme_class = class_create(THIS_MODULE, "nvme");
2918 if (IS_ERR(nvme_class)) {
2919 result = PTR_ERR(nvme_class);
2920 goto unregister_chrdev;
2921 }
2922
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002923 return 0;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002924
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002925unregister_chrdev:
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002926 unregister_chrdev_region(nvme_chr_devt, NVME_MINORS);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002927destroy_wq:
2928 destroy_workqueue(nvme_wq);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002929 return result;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002930}
2931
2932void nvme_core_exit(void)
2933{
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002934 class_destroy(nvme_class);
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002935 unregister_chrdev_region(nvme_chr_devt, NVME_MINORS);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002936 destroy_workqueue(nvme_wq);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002937}
Ming Lin576d55d2016-02-10 10:03:32 -08002938
2939MODULE_LICENSE("GPL");
2940MODULE_VERSION("1.0");
2941module_init(nvme_core_init);
2942module_exit(nvme_core_exit);