blob: 2bcd49584f710bfde39193fc92367e55b879b710 [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 Hellwigab9e00c2017-11-09 13:48:55 +010071static DEFINE_IDA(nvme_subsystems_ida);
72static LIST_HEAD(nvme_subsystems);
73static DEFINE_MUTEX(nvme_subsystems_lock);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +010074
Christoph Hellwig9843f682017-10-18 13:10:01 +020075static DEFINE_IDA(nvme_instance_ida);
Christoph Hellwiga6a51492017-10-18 16:59:25 +020076static dev_t nvme_chr_devt;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +010077static struct class *nvme_class;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +010078static struct class *nvme_subsys_class;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +010079
Keith Busch84fef622017-11-07 10:28:32 -070080static void nvme_ns_remove(struct nvme_ns *ns);
81static int nvme_revalidate_disk(struct gendisk *disk);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +010082
Arnav Dawnb6dccf72017-07-12 16:10:40 +053083static __le32 nvme_get_log_dw10(u8 lid, size_t size)
84{
85 return cpu_to_le32((((size / 4) - 1) << 16) | lid);
86}
87
Christoph Hellwigd86c4d82017-06-15 15:41:08 +020088int nvme_reset_ctrl(struct nvme_ctrl *ctrl)
89{
90 if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_RESETTING))
91 return -EBUSY;
92 if (!queue_work(nvme_wq, &ctrl->reset_work))
93 return -EBUSY;
94 return 0;
95}
96EXPORT_SYMBOL_GPL(nvme_reset_ctrl);
97
98static int nvme_reset_ctrl_sync(struct nvme_ctrl *ctrl)
99{
100 int ret;
101
102 ret = nvme_reset_ctrl(ctrl);
103 if (!ret)
104 flush_work(&ctrl->reset_work);
105 return ret;
106}
107
Christoph Hellwigc5017e82017-10-29 10:44:29 +0200108static void nvme_delete_ctrl_work(struct work_struct *work)
109{
110 struct nvme_ctrl *ctrl =
111 container_of(work, struct nvme_ctrl, delete_work);
112
Sagi Grimberg40546372017-10-29 14:21:02 +0200113 flush_work(&ctrl->reset_work);
Christoph Hellwig6cd53d12017-10-29 10:44:31 +0200114 nvme_stop_ctrl(ctrl);
115 nvme_remove_namespaces(ctrl);
Christoph Hellwigc5017e82017-10-29 10:44:29 +0200116 ctrl->ops->delete_ctrl(ctrl);
Christoph Hellwig6cd53d12017-10-29 10:44:31 +0200117 nvme_uninit_ctrl(ctrl);
118 nvme_put_ctrl(ctrl);
Christoph Hellwigc5017e82017-10-29 10:44:29 +0200119}
120
121int nvme_delete_ctrl(struct nvme_ctrl *ctrl)
122{
123 if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING))
124 return -EBUSY;
125 if (!queue_work(nvme_wq, &ctrl->delete_work))
126 return -EBUSY;
127 return 0;
128}
129EXPORT_SYMBOL_GPL(nvme_delete_ctrl);
130
131int nvme_delete_ctrl_sync(struct nvme_ctrl *ctrl)
132{
133 int ret = 0;
134
135 /*
136 * Keep a reference until the work is flushed since ->delete_ctrl
137 * can free the controller.
138 */
139 nvme_get_ctrl(ctrl);
140 ret = nvme_delete_ctrl(ctrl);
141 if (!ret)
142 flush_work(&ctrl->delete_work);
143 nvme_put_ctrl(ctrl);
144 return ret;
145}
146EXPORT_SYMBOL_GPL(nvme_delete_ctrl_sync);
147
Christoph Hellwig715ea9e2017-11-07 17:27:34 +0100148static inline bool nvme_ns_has_pi(struct nvme_ns *ns)
149{
150 return ns->pi_type && ns->ms == sizeof(struct t10_pi_tuple);
151}
152
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200153static blk_status_t nvme_error_status(struct request *req)
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200154{
155 switch (nvme_req(req)->status & 0x7ff) {
156 case NVME_SC_SUCCESS:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200157 return BLK_STS_OK;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200158 case NVME_SC_CAP_EXCEEDED:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200159 return BLK_STS_NOSPC;
Junxiong Guane02ab022017-04-21 12:59:07 +0200160 case NVME_SC_ONCS_NOT_SUPPORTED:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200161 return BLK_STS_NOTSUPP;
Junxiong Guane02ab022017-04-21 12:59:07 +0200162 case NVME_SC_WRITE_FAULT:
163 case NVME_SC_READ_ERROR:
164 case NVME_SC_UNWRITTEN_BLOCK:
Christoph Hellwiga751da32017-08-22 10:17:03 +0200165 case NVME_SC_ACCESS_DENIED:
166 case NVME_SC_READ_ONLY:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200167 return BLK_STS_MEDIUM;
Christoph Hellwiga751da32017-08-22 10:17:03 +0200168 case NVME_SC_GUARD_CHECK:
169 case NVME_SC_APPTAG_CHECK:
170 case NVME_SC_REFTAG_CHECK:
171 case NVME_SC_INVALID_PI:
172 return BLK_STS_PROTECTION;
173 case NVME_SC_RESERVATION_CONFLICT:
174 return BLK_STS_NEXUS;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200175 default:
176 return BLK_STS_IOERR;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200177 }
178}
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200179
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200180static inline bool nvme_req_needs_retry(struct request *req)
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200181{
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200182 if (blk_noretry_request(req))
183 return false;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200184 if (nvme_req(req)->status & NVME_SC_DNR)
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200185 return false;
Christoph Hellwig44e44b22017-04-05 19:18:11 +0200186 if (nvme_req(req)->retries >= nvme_max_retries)
Christoph Hellwigf6324b12017-04-05 19:18:09 +0200187 return false;
188 return true;
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200189}
190
191void nvme_complete_rq(struct request *req)
192{
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200193 if (unlikely(nvme_req(req)->status && nvme_req_needs_retry(req))) {
Christoph Hellwig32acab32017-11-02 12:59:30 +0100194 if (nvme_req_needs_failover(req)) {
195 nvme_failover_req(req);
196 return;
197 }
198
199 if (!blk_queue_dying(req->q)) {
200 nvme_req(req)->retries++;
201 blk_mq_requeue_request(req, true);
202 return;
203 }
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200204 }
205
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200206 blk_mq_end_request(req, nvme_error_status(req));
Christoph Hellwig77f02a72017-03-30 13:41:32 +0200207}
208EXPORT_SYMBOL_GPL(nvme_complete_rq);
209
Ming Linc55a2fd2016-05-18 14:05:02 -0700210void nvme_cancel_request(struct request *req, void *data, bool reserved)
211{
Ming Linc55a2fd2016-05-18 14:05:02 -0700212 if (!blk_mq_request_started(req))
213 return;
214
215 dev_dbg_ratelimited(((struct nvme_ctrl *) data)->device,
216 "Cancelling I/O %d", req->tag);
217
Christoph Hellwige54b0642017-11-02 21:28:51 +0300218 nvme_req(req)->status = NVME_SC_ABORT_REQ;
Christoph Hellwig08e00292017-04-20 16:03:09 +0200219 blk_mq_complete_request(req);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200220
Ming Linc55a2fd2016-05-18 14:05:02 -0700221}
222EXPORT_SYMBOL_GPL(nvme_cancel_request);
223
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200224bool nvme_change_ctrl_state(struct nvme_ctrl *ctrl,
225 enum nvme_ctrl_state new_state)
226{
Gabriel Krisman Bertazif6b6a282016-07-29 16:15:18 -0300227 enum nvme_ctrl_state old_state;
Christoph Hellwig0a72bbb2017-08-22 11:42:24 +0200228 unsigned long flags;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200229 bool changed = false;
230
Christoph Hellwig0a72bbb2017-08-22 11:42:24 +0200231 spin_lock_irqsave(&ctrl->lock, flags);
Gabriel Krisman Bertazif6b6a282016-07-29 16:15:18 -0300232
233 old_state = ctrl->state;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200234 switch (new_state) {
Jianchao Wang2b1b7e72018-01-06 08:01:58 +0800235 case NVME_CTRL_ADMIN_ONLY:
236 switch (old_state) {
237 case NVME_CTRL_RESETTING:
238 changed = true;
239 /* FALLTHRU */
240 default:
241 break;
242 }
243 break;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200244 case NVME_CTRL_LIVE:
245 switch (old_state) {
Christoph Hellwig7d2e8002016-06-13 16:45:22 +0200246 case NVME_CTRL_NEW:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200247 case NVME_CTRL_RESETTING:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900248 case NVME_CTRL_RECONNECTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200249 changed = true;
250 /* FALLTHRU */
251 default:
252 break;
253 }
254 break;
255 case NVME_CTRL_RESETTING:
256 switch (old_state) {
257 case NVME_CTRL_NEW:
258 case NVME_CTRL_LIVE:
Jianchao Wang2b1b7e72018-01-06 08:01:58 +0800259 case NVME_CTRL_ADMIN_ONLY:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900260 changed = true;
261 /* FALLTHRU */
262 default:
263 break;
264 }
265 break;
266 case NVME_CTRL_RECONNECTING:
267 switch (old_state) {
268 case NVME_CTRL_LIVE:
James Smart3cec7f92017-10-25 16:43:13 -0700269 case NVME_CTRL_RESETTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200270 changed = true;
271 /* FALLTHRU */
272 default:
273 break;
274 }
275 break;
276 case NVME_CTRL_DELETING:
277 switch (old_state) {
278 case NVME_CTRL_LIVE:
Jianchao Wang2b1b7e72018-01-06 08:01:58 +0800279 case NVME_CTRL_ADMIN_ONLY:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200280 case NVME_CTRL_RESETTING:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900281 case NVME_CTRL_RECONNECTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200282 changed = true;
283 /* FALLTHRU */
284 default:
285 break;
286 }
287 break;
Keith Busch0ff9d4e2016-05-12 08:37:14 -0600288 case NVME_CTRL_DEAD:
289 switch (old_state) {
290 case NVME_CTRL_DELETING:
291 changed = true;
292 /* FALLTHRU */
293 default:
294 break;
295 }
296 break;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200297 default:
298 break;
299 }
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200300
301 if (changed)
302 ctrl->state = new_state;
303
Christoph Hellwig0a72bbb2017-08-22 11:42:24 +0200304 spin_unlock_irqrestore(&ctrl->lock, flags);
Christoph Hellwig32acab32017-11-02 12:59:30 +0100305 if (changed && ctrl->state == NVME_CTRL_LIVE)
306 nvme_kick_requeue_lists(ctrl);
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200307 return changed;
308}
309EXPORT_SYMBOL_GPL(nvme_change_ctrl_state);
310
Christoph Hellwiged754e52017-11-09 13:50:43 +0100311static void nvme_free_ns_head(struct kref *ref)
312{
313 struct nvme_ns_head *head =
314 container_of(ref, struct nvme_ns_head, ref);
315
Christoph Hellwig32acab32017-11-02 12:59:30 +0100316 nvme_mpath_remove_disk(head);
Christoph Hellwiged754e52017-11-09 13:50:43 +0100317 ida_simple_remove(&head->subsys->ns_ida, head->instance);
318 list_del_init(&head->entry);
319 cleanup_srcu_struct(&head->srcu);
320 kfree(head);
321}
322
323static void nvme_put_ns_head(struct nvme_ns_head *head)
324{
325 kref_put(&head->ref, nvme_free_ns_head);
326}
327
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100328static void nvme_free_ns(struct kref *kref)
329{
330 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
331
Matias Bjørlingb0b4e092016-09-16 14:25:07 +0200332 if (ns->ndev)
333 nvme_nvm_unregister(ns);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100334
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100335 put_disk(ns->disk);
Christoph Hellwiged754e52017-11-09 13:50:43 +0100336 nvme_put_ns_head(ns->head);
Keith Busch075790e2016-02-24 09:15:53 -0700337 nvme_put_ctrl(ns->ctrl);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100338 kfree(ns);
339}
340
Christoph Hellwig5bae7f72015-11-28 15:39:07 +0100341static void nvme_put_ns(struct nvme_ns *ns)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100342{
343 kref_put(&ns->kref, nvme_free_ns);
344}
345
Christoph Hellwig41609822015-11-20 09:00:02 +0100346struct request *nvme_alloc_request(struct request_queue *q,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800347 struct nvme_command *cmd, blk_mq_req_flags_t flags, int qid)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100348{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100349 unsigned op = nvme_is_write(cmd) ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100350 struct request *req;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100351
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200352 if (qid == NVME_QID_ANY) {
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100353 req = blk_mq_alloc_request(q, op, flags);
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200354 } else {
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100355 req = blk_mq_alloc_request_hctx(q, op, flags,
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200356 qid ? qid - 1 : 0);
357 }
Christoph Hellwig21d34712015-11-26 09:08:36 +0100358 if (IS_ERR(req))
Christoph Hellwig41609822015-11-20 09:00:02 +0100359 return req;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100360
Christoph Hellwig21d34712015-11-26 09:08:36 +0100361 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800362 nvme_req(req)->cmd = cmd;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100363
Christoph Hellwig41609822015-11-20 09:00:02 +0100364 return req;
365}
Ming Lin576d55d2016-02-10 10:03:32 -0800366EXPORT_SYMBOL_GPL(nvme_alloc_request);
Christoph Hellwig41609822015-11-20 09:00:02 +0100367
Jens Axboef5d11842017-06-27 12:03:06 -0600368static int nvme_toggle_streams(struct nvme_ctrl *ctrl, bool enable)
369{
370 struct nvme_command c;
371
372 memset(&c, 0, sizeof(c));
373
374 c.directive.opcode = nvme_admin_directive_send;
Arnav Dawn62346ea2017-07-12 16:11:53 +0530375 c.directive.nsid = cpu_to_le32(NVME_NSID_ALL);
Jens Axboef5d11842017-06-27 12:03:06 -0600376 c.directive.doper = NVME_DIR_SND_ID_OP_ENABLE;
377 c.directive.dtype = NVME_DIR_IDENTIFY;
378 c.directive.tdtype = NVME_DIR_STREAMS;
379 c.directive.endir = enable ? NVME_DIR_ENDIR : 0;
380
381 return nvme_submit_sync_cmd(ctrl->admin_q, &c, NULL, 0);
382}
383
384static int nvme_disable_streams(struct nvme_ctrl *ctrl)
385{
386 return nvme_toggle_streams(ctrl, false);
387}
388
389static int nvme_enable_streams(struct nvme_ctrl *ctrl)
390{
391 return nvme_toggle_streams(ctrl, true);
392}
393
394static int nvme_get_stream_params(struct nvme_ctrl *ctrl,
395 struct streams_directive_params *s, u32 nsid)
396{
397 struct nvme_command c;
398
399 memset(&c, 0, sizeof(c));
400 memset(s, 0, sizeof(*s));
401
402 c.directive.opcode = nvme_admin_directive_recv;
403 c.directive.nsid = cpu_to_le32(nsid);
Kwan (Hingkwan) Huen-SSIa082b422017-08-09 11:26:29 -0700404 c.directive.numd = cpu_to_le32((sizeof(*s) >> 2) - 1);
Jens Axboef5d11842017-06-27 12:03:06 -0600405 c.directive.doper = NVME_DIR_RCV_ST_OP_PARAM;
406 c.directive.dtype = NVME_DIR_STREAMS;
407
408 return nvme_submit_sync_cmd(ctrl->admin_q, &c, s, sizeof(*s));
409}
410
411static int nvme_configure_directives(struct nvme_ctrl *ctrl)
412{
413 struct streams_directive_params s;
414 int ret;
415
416 if (!(ctrl->oacs & NVME_CTRL_OACS_DIRECTIVES))
417 return 0;
418 if (!streams)
419 return 0;
420
421 ret = nvme_enable_streams(ctrl);
422 if (ret)
423 return ret;
424
Arnav Dawn62346ea2017-07-12 16:11:53 +0530425 ret = nvme_get_stream_params(ctrl, &s, NVME_NSID_ALL);
Jens Axboef5d11842017-06-27 12:03:06 -0600426 if (ret)
427 return ret;
428
429 ctrl->nssa = le16_to_cpu(s.nssa);
430 if (ctrl->nssa < BLK_MAX_WRITE_HINTS - 1) {
431 dev_info(ctrl->device, "too few streams (%u) available\n",
432 ctrl->nssa);
433 nvme_disable_streams(ctrl);
434 return 0;
435 }
436
437 ctrl->nr_streams = min_t(unsigned, ctrl->nssa, BLK_MAX_WRITE_HINTS - 1);
438 dev_info(ctrl->device, "Using %u streams\n", ctrl->nr_streams);
439 return 0;
440}
441
442/*
443 * Check if 'req' has a write hint associated with it. If it does, assign
444 * a valid namespace stream to the write.
445 */
446static void nvme_assign_write_stream(struct nvme_ctrl *ctrl,
447 struct request *req, u16 *control,
448 u32 *dsmgmt)
449{
450 enum rw_hint streamid = req->write_hint;
451
452 if (streamid == WRITE_LIFE_NOT_SET || streamid == WRITE_LIFE_NONE)
453 streamid = 0;
454 else {
455 streamid--;
456 if (WARN_ON_ONCE(streamid > ctrl->nr_streams))
457 return;
458
459 *control |= NVME_RW_DTYPE_STREAMS;
460 *dsmgmt |= streamid << 16;
461 }
462
463 if (streamid < ARRAY_SIZE(req->q->write_hints))
464 req->q->write_hints[streamid] += blk_rq_bytes(req) >> 9;
465}
466
Ming Lin8093f7c2016-04-12 13:10:14 -0600467static inline void nvme_setup_flush(struct nvme_ns *ns,
468 struct nvme_command *cmnd)
469{
470 memset(cmnd, 0, sizeof(*cmnd));
471 cmnd->common.opcode = nvme_cmd_flush;
Christoph Hellwiged754e52017-11-09 13:50:43 +0100472 cmnd->common.nsid = cpu_to_le32(ns->head->ns_id);
Ming Lin8093f7c2016-04-12 13:10:14 -0600473}
474
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200475static blk_status_t nvme_setup_discard(struct nvme_ns *ns, struct request *req,
Ming Lin8093f7c2016-04-12 13:10:14 -0600476 struct nvme_command *cmnd)
477{
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100478 unsigned short segments = blk_rq_nr_discard_segments(req), n = 0;
Ming Lin8093f7c2016-04-12 13:10:14 -0600479 struct nvme_dsm_range *range;
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100480 struct bio *bio;
Ming Lin8093f7c2016-04-12 13:10:14 -0600481
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100482 range = kmalloc_array(segments, sizeof(*range), GFP_ATOMIC);
Ming Lin8093f7c2016-04-12 13:10:14 -0600483 if (!range)
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200484 return BLK_STS_RESOURCE;
Ming Lin8093f7c2016-04-12 13:10:14 -0600485
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100486 __rq_for_each_bio(bio, req) {
487 u64 slba = nvme_block_nr(ns, bio->bi_iter.bi_sector);
488 u32 nlb = bio->bi_iter.bi_size >> ns->lba_shift;
489
490 range[n].cattr = cpu_to_le32(0);
491 range[n].nlb = cpu_to_le32(nlb);
492 range[n].slba = cpu_to_le64(slba);
493 n++;
494 }
495
496 if (WARN_ON_ONCE(n != segments)) {
497 kfree(range);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200498 return BLK_STS_IOERR;
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100499 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600500
501 memset(cmnd, 0, sizeof(*cmnd));
502 cmnd->dsm.opcode = nvme_cmd_dsm;
Christoph Hellwiged754e52017-11-09 13:50:43 +0100503 cmnd->dsm.nsid = cpu_to_le32(ns->head->ns_id);
Christoph Hellwigf1dd03a2017-03-31 17:00:05 +0200504 cmnd->dsm.nr = cpu_to_le32(segments - 1);
Ming Lin8093f7c2016-04-12 13:10:14 -0600505 cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
506
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700507 req->special_vec.bv_page = virt_to_page(range);
508 req->special_vec.bv_offset = offset_in_page(range);
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100509 req->special_vec.bv_len = sizeof(*range) * segments;
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700510 req->rq_flags |= RQF_SPECIAL_PAYLOAD;
Ming Lin8093f7c2016-04-12 13:10:14 -0600511
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200512 return BLK_STS_OK;
Ming Lin8093f7c2016-04-12 13:10:14 -0600513}
Ming Lin8093f7c2016-04-12 13:10:14 -0600514
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200515static inline blk_status_t nvme_setup_rw(struct nvme_ns *ns,
516 struct request *req, struct nvme_command *cmnd)
Ming Lin8093f7c2016-04-12 13:10:14 -0600517{
Jens Axboef5d11842017-06-27 12:03:06 -0600518 struct nvme_ctrl *ctrl = ns->ctrl;
Ming Lin8093f7c2016-04-12 13:10:14 -0600519 u16 control = 0;
520 u32 dsmgmt = 0;
521
522 if (req->cmd_flags & REQ_FUA)
523 control |= NVME_RW_FUA;
524 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
525 control |= NVME_RW_LR;
526
527 if (req->cmd_flags & REQ_RAHEAD)
528 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
529
530 memset(cmnd, 0, sizeof(*cmnd));
531 cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
Christoph Hellwiged754e52017-11-09 13:50:43 +0100532 cmnd->rw.nsid = cpu_to_le32(ns->head->ns_id);
Ming Lin8093f7c2016-04-12 13:10:14 -0600533 cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
534 cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
535
Jens Axboef5d11842017-06-27 12:03:06 -0600536 if (req_op(req) == REQ_OP_WRITE && ctrl->nr_streams)
537 nvme_assign_write_stream(ctrl, req, &control, &dsmgmt);
538
Ming Lin8093f7c2016-04-12 13:10:14 -0600539 if (ns->ms) {
Christoph Hellwig715ea9e2017-11-07 17:27:34 +0100540 /*
541 * If formated with metadata, the block layer always provides a
542 * metadata buffer if CONFIG_BLK_DEV_INTEGRITY is enabled. Else
543 * we enable the PRACT bit for protection information or set the
544 * namespace capacity to zero to prevent any I/O.
545 */
546 if (!blk_integrity_rq(req)) {
547 if (WARN_ON_ONCE(!nvme_ns_has_pi(ns)))
548 return BLK_STS_NOTSUPP;
549 control |= NVME_RW_PRINFO_PRACT;
550 }
551
Ming Lin8093f7c2016-04-12 13:10:14 -0600552 switch (ns->pi_type) {
553 case NVME_NS_DPS_PI_TYPE3:
554 control |= NVME_RW_PRINFO_PRCHK_GUARD;
555 break;
556 case NVME_NS_DPS_PI_TYPE1:
557 case NVME_NS_DPS_PI_TYPE2:
558 control |= NVME_RW_PRINFO_PRCHK_GUARD |
559 NVME_RW_PRINFO_PRCHK_REF;
560 cmnd->rw.reftag = cpu_to_le32(
561 nvme_block_nr(ns, blk_rq_pos(req)));
562 break;
563 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600564 }
565
566 cmnd->rw.control = cpu_to_le16(control);
567 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200568 return 0;
Ming Lin8093f7c2016-04-12 13:10:14 -0600569}
570
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200571blk_status_t nvme_setup_cmd(struct nvme_ns *ns, struct request *req,
Ming Lin8093f7c2016-04-12 13:10:14 -0600572 struct nvme_command *cmd)
573{
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200574 blk_status_t ret = BLK_STS_OK;
Ming Lin8093f7c2016-04-12 13:10:14 -0600575
Christoph Hellwig987f6992017-04-05 19:18:08 +0200576 if (!(req->rq_flags & RQF_DONTPREP)) {
Christoph Hellwig44e44b22017-04-05 19:18:11 +0200577 nvme_req(req)->retries = 0;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200578 nvme_req(req)->flags = 0;
Christoph Hellwig987f6992017-04-05 19:18:08 +0200579 req->rq_flags |= RQF_DONTPREP;
580 }
581
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100582 switch (req_op(req)) {
583 case REQ_OP_DRV_IN:
584 case REQ_OP_DRV_OUT:
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800585 memcpy(cmd, nvme_req(req)->cmd, sizeof(*cmd));
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100586 break;
587 case REQ_OP_FLUSH:
Ming Lin8093f7c2016-04-12 13:10:14 -0600588 nvme_setup_flush(ns, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100589 break;
Christoph Hellwige850fd12017-04-05 19:21:13 +0200590 case REQ_OP_WRITE_ZEROES:
591 /* currently only aliased to deallocate for a few ctrls: */
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100592 case REQ_OP_DISCARD:
Ming Lin8093f7c2016-04-12 13:10:14 -0600593 ret = nvme_setup_discard(ns, req, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100594 break;
595 case REQ_OP_READ:
596 case REQ_OP_WRITE:
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200597 ret = nvme_setup_rw(ns, req, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100598 break;
599 default:
600 WARN_ON_ONCE(1);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200601 return BLK_STS_IOERR;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100602 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600603
James Smart721b3912016-10-21 23:33:34 +0300604 cmd->common.command_id = req->tag;
Ming Lin8093f7c2016-04-12 13:10:14 -0600605 return ret;
606}
607EXPORT_SYMBOL_GPL(nvme_setup_cmd);
608
Christoph Hellwig41609822015-11-20 09:00:02 +0100609/*
610 * Returns 0 on success. If the result is negative, it's a Linux error code;
611 * if the result is positive, it's an NVM Express status code
612 */
613int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800614 union nvme_result *result, void *buffer, unsigned bufflen,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800615 unsigned timeout, int qid, int at_head,
616 blk_mq_req_flags_t flags)
Christoph Hellwig41609822015-11-20 09:00:02 +0100617{
618 struct request *req;
619 int ret;
620
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200621 req = nvme_alloc_request(q, cmd, flags, qid);
Christoph Hellwig41609822015-11-20 09:00:02 +0100622 if (IS_ERR(req))
623 return PTR_ERR(req);
624
625 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
626
Christoph Hellwig21d34712015-11-26 09:08:36 +0100627 if (buffer && bufflen) {
628 ret = blk_rq_map_kern(q, req, buffer, bufflen, GFP_KERNEL);
629 if (ret)
630 goto out;
Christoph Hellwig41609822015-11-20 09:00:02 +0100631 }
632
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200633 blk_execute_rq(req->q, NULL, req, at_head);
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800634 if (result)
635 *result = nvme_req(req)->result;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200636 if (nvme_req(req)->flags & NVME_REQ_CANCELLED)
637 ret = -EINTR;
638 else
639 ret = nvme_req(req)->status;
Christoph Hellwig41609822015-11-20 09:00:02 +0100640 out:
641 blk_mq_free_request(req);
642 return ret;
643}
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200644EXPORT_SYMBOL_GPL(__nvme_submit_sync_cmd);
Christoph Hellwig41609822015-11-20 09:00:02 +0100645
646int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
647 void *buffer, unsigned bufflen)
648{
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200649 return __nvme_submit_sync_cmd(q, cmd, NULL, buffer, bufflen, 0,
650 NVME_QID_ANY, 0, 0);
Christoph Hellwig41609822015-11-20 09:00:02 +0100651}
Ming Lin576d55d2016-02-10 10:03:32 -0800652EXPORT_SYMBOL_GPL(nvme_submit_sync_cmd);
Christoph Hellwig41609822015-11-20 09:00:02 +0100653
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400654static void *nvme_add_user_metadata(struct bio *bio, void __user *ubuf,
655 unsigned len, u32 seed, bool write)
656{
657 struct bio_integrity_payload *bip;
658 int ret = -ENOMEM;
659 void *buf;
660
661 buf = kmalloc(len, GFP_KERNEL);
662 if (!buf)
663 goto out;
664
665 ret = -EFAULT;
666 if (write && copy_from_user(buf, ubuf, len))
667 goto out_free_meta;
668
669 bip = bio_integrity_alloc(bio, GFP_KERNEL, 1);
670 if (IS_ERR(bip)) {
671 ret = PTR_ERR(bip);
672 goto out_free_meta;
673 }
674
675 bip->bip_iter.bi_size = len;
676 bip->bip_iter.bi_sector = seed;
677 ret = bio_integrity_add_page(bio, virt_to_page(buf), len,
678 offset_in_page(buf));
679 if (ret == len)
680 return buf;
681 ret = -ENOMEM;
682out_free_meta:
683 kfree(buf);
684out:
685 return ERR_PTR(ret);
686}
687
Keith Busch63263d62017-08-29 17:46:04 -0400688static int nvme_submit_user_cmd(struct request_queue *q,
Keith Busch485783c2017-08-29 17:46:03 -0400689 struct nvme_command *cmd, void __user *ubuffer,
690 unsigned bufflen, void __user *meta_buffer, unsigned meta_len,
691 u32 meta_seed, u32 *result, unsigned timeout)
Christoph Hellwig41609822015-11-20 09:00:02 +0100692{
Christoph Hellwig7a5abb42016-06-06 23:20:49 +0200693 bool write = nvme_is_write(cmd);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600694 struct nvme_ns *ns = q->queuedata;
695 struct gendisk *disk = ns ? ns->disk : NULL;
Christoph Hellwig41609822015-11-20 09:00:02 +0100696 struct request *req;
Keith Busch0b7f1f22015-10-23 09:47:28 -0600697 struct bio *bio = NULL;
698 void *meta = NULL;
Christoph Hellwig41609822015-11-20 09:00:02 +0100699 int ret;
700
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200701 req = nvme_alloc_request(q, cmd, 0, NVME_QID_ANY);
Christoph Hellwig41609822015-11-20 09:00:02 +0100702 if (IS_ERR(req))
703 return PTR_ERR(req);
704
705 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
706
707 if (ubuffer && bufflen) {
Christoph Hellwig21d34712015-11-26 09:08:36 +0100708 ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen,
709 GFP_KERNEL);
710 if (ret)
711 goto out;
712 bio = req->bio;
Christoph Hellwig74d46992017-08-23 19:10:32 +0200713 bio->bi_disk = disk;
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400714 if (disk && meta_buffer && meta_len) {
715 meta = nvme_add_user_metadata(bio, meta_buffer, meta_len,
716 meta_seed, write);
717 if (IS_ERR(meta)) {
718 ret = PTR_ERR(meta);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600719 goto out_unmap;
720 }
Keith Busch0b7f1f22015-10-23 09:47:28 -0600721 }
722 }
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400723
Keith Busch0b7f1f22015-10-23 09:47:28 -0600724 blk_execute_rq(req->q, disk, req, 0);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200725 if (nvme_req(req)->flags & NVME_REQ_CANCELLED)
726 ret = -EINTR;
727 else
728 ret = nvme_req(req)->status;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100729 if (result)
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800730 *result = le32_to_cpu(nvme_req(req)->result.u32);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600731 if (meta && !ret && !write) {
732 if (copy_to_user(meta_buffer, meta, meta_len))
733 ret = -EFAULT;
734 }
Keith Busch0b7f1f22015-10-23 09:47:28 -0600735 kfree(meta);
736 out_unmap:
Christoph Hellwig74d46992017-08-23 19:10:32 +0200737 if (bio)
Keith Busch0b7f1f22015-10-23 09:47:28 -0600738 blk_rq_unmap_user(bio);
Christoph Hellwig21d34712015-11-26 09:08:36 +0100739 out:
740 blk_mq_free_request(req);
741 return ret;
742}
743
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200744static void nvme_keep_alive_end_io(struct request *rq, blk_status_t status)
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200745{
746 struct nvme_ctrl *ctrl = rq->end_io_data;
747
748 blk_mq_free_request(rq);
749
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200750 if (status) {
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200751 dev_err(ctrl->device,
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200752 "failed nvme_keep_alive_end_io error=%d\n",
753 status);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200754 return;
755 }
756
757 schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ);
758}
759
760static int nvme_keep_alive(struct nvme_ctrl *ctrl)
761{
762 struct nvme_command c;
763 struct request *rq;
764
765 memset(&c, 0, sizeof(c));
766 c.common.opcode = nvme_admin_keep_alive;
767
768 rq = nvme_alloc_request(ctrl->admin_q, &c, BLK_MQ_REQ_RESERVED,
769 NVME_QID_ANY);
770 if (IS_ERR(rq))
771 return PTR_ERR(rq);
772
773 rq->timeout = ctrl->kato * HZ;
774 rq->end_io_data = ctrl;
775
776 blk_execute_rq_nowait(rq->q, NULL, rq, 0, nvme_keep_alive_end_io);
777
778 return 0;
779}
780
781static void nvme_keep_alive_work(struct work_struct *work)
782{
783 struct nvme_ctrl *ctrl = container_of(to_delayed_work(work),
784 struct nvme_ctrl, ka_work);
785
786 if (nvme_keep_alive(ctrl)) {
787 /* allocation failure, reset the controller */
788 dev_err(ctrl->device, "keep-alive failed\n");
Christoph Hellwig39bdc592017-06-12 18:21:19 +0200789 nvme_reset_ctrl(ctrl);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200790 return;
791 }
792}
793
794void nvme_start_keep_alive(struct nvme_ctrl *ctrl)
795{
796 if (unlikely(ctrl->kato == 0))
797 return;
798
799 INIT_DELAYED_WORK(&ctrl->ka_work, nvme_keep_alive_work);
800 schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ);
801}
802EXPORT_SYMBOL_GPL(nvme_start_keep_alive);
803
804void nvme_stop_keep_alive(struct nvme_ctrl *ctrl)
805{
806 if (unlikely(ctrl->kato == 0))
807 return;
808
809 cancel_delayed_work_sync(&ctrl->ka_work);
810}
811EXPORT_SYMBOL_GPL(nvme_stop_keep_alive);
812
Keith Busch3f7f25a92017-06-20 15:09:56 -0400813static int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100814{
815 struct nvme_command c = { };
816 int error;
817
818 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
819 c.identify.opcode = nvme_admin_identify;
Parav Pandit986994a2017-01-26 17:17:28 +0200820 c.identify.cns = NVME_ID_CNS_CTRL;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100821
822 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
823 if (!*id)
824 return -ENOMEM;
825
826 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
827 sizeof(struct nvme_id_ctrl));
828 if (error)
829 kfree(*id);
830 return error;
831}
832
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200833static int nvme_identify_ns_descs(struct nvme_ctrl *ctrl, unsigned nsid,
Christoph Hellwig002fab02017-11-09 13:50:16 +0100834 struct nvme_ns_ids *ids)
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200835{
836 struct nvme_command c = { };
837 int status;
838 void *data;
839 int pos;
840 int len;
841
842 c.identify.opcode = nvme_admin_identify;
843 c.identify.nsid = cpu_to_le32(nsid);
844 c.identify.cns = NVME_ID_CNS_NS_DESC_LIST;
845
846 data = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL);
847 if (!data)
848 return -ENOMEM;
849
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200850 status = nvme_submit_sync_cmd(ctrl->admin_q, &c, data,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200851 NVME_IDENTIFY_DATA_SIZE);
852 if (status)
853 goto free_data;
854
855 for (pos = 0; pos < NVME_IDENTIFY_DATA_SIZE; pos += len) {
856 struct nvme_ns_id_desc *cur = data + pos;
857
858 if (cur->nidl == 0)
859 break;
860
861 switch (cur->nidt) {
862 case NVME_NIDT_EUI64:
863 if (cur->nidl != NVME_NIDT_EUI64_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200864 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200865 "ctrl returned bogus length: %d for NVME_NIDT_EUI64\n",
866 cur->nidl);
867 goto free_data;
868 }
869 len = NVME_NIDT_EUI64_LEN;
Christoph Hellwig002fab02017-11-09 13:50:16 +0100870 memcpy(ids->eui64, data + pos + sizeof(*cur), len);
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200871 break;
872 case NVME_NIDT_NGUID:
873 if (cur->nidl != NVME_NIDT_NGUID_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200874 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200875 "ctrl returned bogus length: %d for NVME_NIDT_NGUID\n",
876 cur->nidl);
877 goto free_data;
878 }
879 len = NVME_NIDT_NGUID_LEN;
Christoph Hellwig002fab02017-11-09 13:50:16 +0100880 memcpy(ids->nguid, data + pos + sizeof(*cur), len);
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200881 break;
882 case NVME_NIDT_UUID:
883 if (cur->nidl != NVME_NIDT_UUID_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200884 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200885 "ctrl returned bogus length: %d for NVME_NIDT_UUID\n",
886 cur->nidl);
887 goto free_data;
888 }
889 len = NVME_NIDT_UUID_LEN;
Christoph Hellwig002fab02017-11-09 13:50:16 +0100890 uuid_copy(&ids->uuid, data + pos + sizeof(*cur));
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200891 break;
892 default:
893 /* Skip unnkown types */
894 len = cur->nidl;
895 break;
896 }
897
898 len += sizeof(*cur);
899 }
900free_data:
901 kfree(data);
902 return status;
903}
904
Keith Busch540c8012015-10-22 15:45:06 -0600905static int nvme_identify_ns_list(struct nvme_ctrl *dev, unsigned nsid, __le32 *ns_list)
906{
907 struct nvme_command c = { };
908
909 c.identify.opcode = nvme_admin_identify;
Parav Pandit986994a2017-01-26 17:17:28 +0200910 c.identify.cns = NVME_ID_CNS_NS_ACTIVE_LIST;
Keith Busch540c8012015-10-22 15:45:06 -0600911 c.identify.nsid = cpu_to_le32(nsid);
912 return nvme_submit_sync_cmd(dev->admin_q, &c, ns_list, 0x1000);
913}
914
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200915static struct nvme_id_ns *nvme_identify_ns(struct nvme_ctrl *ctrl,
916 unsigned nsid)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100917{
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200918 struct nvme_id_ns *id;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100919 struct nvme_command c = { };
920 int error;
921
922 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
Max Gurtovoy778f0672017-01-26 17:17:27 +0200923 c.identify.opcode = nvme_admin_identify;
924 c.identify.nsid = cpu_to_le32(nsid);
Parav Pandit986994a2017-01-26 17:17:28 +0200925 c.identify.cns = NVME_ID_CNS_NS;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100926
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200927 id = kmalloc(sizeof(*id), GFP_KERNEL);
928 if (!id)
929 return NULL;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100930
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200931 error = nvme_submit_sync_cmd(ctrl->admin_q, &c, id, sizeof(*id));
932 if (error) {
933 dev_warn(ctrl->device, "Identify namespace failed\n");
934 kfree(id);
935 return NULL;
936 }
937
938 return id;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100939}
940
Keith Busch3f7f25a92017-06-20 15:09:56 -0400941static int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11,
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700942 void *buffer, size_t buflen, u32 *result)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100943{
944 struct nvme_command c;
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800945 union nvme_result res;
Christoph Hellwig1cb3cce2016-02-29 15:59:47 +0100946 int ret;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100947
948 memset(&c, 0, sizeof(c));
949 c.features.opcode = nvme_admin_set_features;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100950 c.features.fid = cpu_to_le32(fid);
951 c.features.dword11 = cpu_to_le32(dword11);
952
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800953 ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res,
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700954 buffer, buflen, 0, NVME_QID_ANY, 0, 0);
Andy Lutomirski9b47f77a2016-08-24 03:52:12 -0700955 if (ret >= 0 && result)
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800956 *result = le32_to_cpu(res.u32);
Christoph Hellwig1cb3cce2016-02-29 15:59:47 +0100957 return ret;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100958}
959
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100960int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count)
961{
962 u32 q_count = (*count - 1) | ((*count - 1) << 16);
963 u32 result;
964 int status, nr_io_queues;
965
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700966 status = nvme_set_features(ctrl, NVME_FEAT_NUM_QUEUES, q_count, NULL, 0,
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100967 &result);
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +0200968 if (status < 0)
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100969 return status;
970
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +0200971 /*
972 * Degraded controllers might return an error when setting the queue
973 * count. We still want to be able to bring them online and offer
974 * access to the admin queue, as that might be only way to fix them up.
975 */
976 if (status > 0) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +0200977 dev_err(ctrl->device, "Could not set queue count (%d)\n", status);
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +0200978 *count = 0;
979 } else {
980 nr_io_queues = min(result & 0xffff, result >> 16) + 1;
981 *count = min(*count, nr_io_queues);
982 }
983
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100984 return 0;
985}
Ming Lin576d55d2016-02-10 10:03:32 -0800986EXPORT_SYMBOL_GPL(nvme_set_queue_count);
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100987
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100988static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
989{
990 struct nvme_user_io io;
991 struct nvme_command c;
992 unsigned length, meta_len;
993 void __user *metadata;
994
995 if (copy_from_user(&io, uio, sizeof(io)))
996 return -EFAULT;
Keith Busch63088ec2016-02-24 09:15:57 -0700997 if (io.flags)
998 return -EINVAL;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100999
1000 switch (io.opcode) {
1001 case nvme_cmd_write:
1002 case nvme_cmd_read:
1003 case nvme_cmd_compare:
1004 break;
1005 default:
1006 return -EINVAL;
1007 }
1008
1009 length = (io.nblocks + 1) << ns->lba_shift;
1010 meta_len = (io.nblocks + 1) * ns->ms;
1011 metadata = (void __user *)(uintptr_t)io.metadata;
1012
1013 if (ns->ext) {
1014 length += meta_len;
1015 meta_len = 0;
1016 } else if (meta_len) {
1017 if ((io.metadata & 3) || !io.metadata)
1018 return -EINVAL;
1019 }
1020
1021 memset(&c, 0, sizeof(c));
1022 c.rw.opcode = io.opcode;
1023 c.rw.flags = io.flags;
Christoph Hellwiged754e52017-11-09 13:50:43 +01001024 c.rw.nsid = cpu_to_le32(ns->head->ns_id);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001025 c.rw.slba = cpu_to_le64(io.slba);
1026 c.rw.length = cpu_to_le16(io.nblocks);
1027 c.rw.control = cpu_to_le16(io.control);
1028 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1029 c.rw.reftag = cpu_to_le32(io.reftag);
1030 c.rw.apptag = cpu_to_le16(io.apptag);
1031 c.rw.appmask = cpu_to_le16(io.appmask);
1032
Keith Busch63263d62017-08-29 17:46:04 -04001033 return nvme_submit_user_cmd(ns->queue, &c,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001034 (void __user *)(uintptr_t)io.addr, length,
1035 metadata, meta_len, io.slba, NULL, 0);
1036}
1037
Keith Busch84fef622017-11-07 10:28:32 -07001038static u32 nvme_known_admin_effects(u8 opcode)
1039{
1040 switch (opcode) {
1041 case nvme_admin_format_nvm:
1042 return NVME_CMD_EFFECTS_CSUPP | NVME_CMD_EFFECTS_LBCC |
1043 NVME_CMD_EFFECTS_CSE_MASK;
1044 case nvme_admin_sanitize_nvm:
1045 return NVME_CMD_EFFECTS_CSE_MASK;
1046 default:
1047 break;
1048 }
1049 return 0;
1050}
1051
1052static u32 nvme_passthru_start(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
1053 u8 opcode)
1054{
1055 u32 effects = 0;
1056
1057 if (ns) {
1058 if (ctrl->effects)
1059 effects = le32_to_cpu(ctrl->effects->iocs[opcode]);
1060 if (effects & ~NVME_CMD_EFFECTS_CSUPP)
1061 dev_warn(ctrl->device,
1062 "IO command:%02x has unhandled effects:%08x\n",
1063 opcode, effects);
1064 return 0;
1065 }
1066
1067 if (ctrl->effects)
1068 effects = le32_to_cpu(ctrl->effects->iocs[opcode]);
1069 else
1070 effects = nvme_known_admin_effects(opcode);
1071
1072 /*
1073 * For simplicity, IO to all namespaces is quiesced even if the command
1074 * effects say only one namespace is affected.
1075 */
1076 if (effects & (NVME_CMD_EFFECTS_LBCC | NVME_CMD_EFFECTS_CSE_MASK)) {
1077 nvme_start_freeze(ctrl);
1078 nvme_wait_freeze(ctrl);
1079 }
1080 return effects;
1081}
1082
1083static void nvme_update_formats(struct nvme_ctrl *ctrl)
1084{
1085 struct nvme_ns *ns;
1086
1087 mutex_lock(&ctrl->namespaces_mutex);
1088 list_for_each_entry(ns, &ctrl->namespaces, list) {
1089 if (ns->disk && nvme_revalidate_disk(ns->disk))
1090 nvme_ns_remove(ns);
1091 }
1092 mutex_unlock(&ctrl->namespaces_mutex);
1093}
1094
1095static void nvme_passthru_end(struct nvme_ctrl *ctrl, u32 effects)
1096{
1097 /*
1098 * Revalidate LBA changes prior to unfreezing. This is necessary to
1099 * prevent memory corruption if a logical block size was changed by
1100 * this command.
1101 */
1102 if (effects & NVME_CMD_EFFECTS_LBCC)
1103 nvme_update_formats(ctrl);
1104 if (effects & (NVME_CMD_EFFECTS_LBCC | NVME_CMD_EFFECTS_CSE_MASK))
1105 nvme_unfreeze(ctrl);
1106 if (effects & NVME_CMD_EFFECTS_CCC)
1107 nvme_init_identify(ctrl);
1108 if (effects & (NVME_CMD_EFFECTS_NIC | NVME_CMD_EFFECTS_NCC))
1109 nvme_queue_scan(ctrl);
1110}
1111
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001112static int nvme_user_cmd(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001113 struct nvme_passthru_cmd __user *ucmd)
1114{
1115 struct nvme_passthru_cmd cmd;
1116 struct nvme_command c;
1117 unsigned timeout = 0;
Keith Busch84fef622017-11-07 10:28:32 -07001118 u32 effects;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001119 int status;
1120
1121 if (!capable(CAP_SYS_ADMIN))
1122 return -EACCES;
1123 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
1124 return -EFAULT;
Keith Busch63088ec2016-02-24 09:15:57 -07001125 if (cmd.flags)
1126 return -EINVAL;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001127
1128 memset(&c, 0, sizeof(c));
1129 c.common.opcode = cmd.opcode;
1130 c.common.flags = cmd.flags;
1131 c.common.nsid = cpu_to_le32(cmd.nsid);
1132 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1133 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1134 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1135 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1136 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1137 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1138 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1139 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1140
1141 if (cmd.timeout_ms)
1142 timeout = msecs_to_jiffies(cmd.timeout_ms);
1143
Keith Busch84fef622017-11-07 10:28:32 -07001144 effects = nvme_passthru_start(ctrl, ns, cmd.opcode);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001145 status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c,
Arnd Bergmannd1ea7be2015-12-08 16:22:17 +01001146 (void __user *)(uintptr_t)cmd.addr, cmd.data_len,
Keith Busch63263d62017-08-29 17:46:04 -04001147 (void __user *)(uintptr_t)cmd.metadata, cmd.metadata,
1148 0, &cmd.result, timeout);
Keith Busch84fef622017-11-07 10:28:32 -07001149 nvme_passthru_end(ctrl, effects);
1150
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001151 if (status >= 0) {
1152 if (put_user(cmd.result, &ucmd->result))
1153 return -EFAULT;
1154 }
1155
1156 return status;
1157}
1158
Christoph Hellwig32acab32017-11-02 12:59:30 +01001159/*
1160 * Issue ioctl requests on the first available path. Note that unlike normal
1161 * block layer requests we will not retry failed request on another controller.
1162 */
1163static struct nvme_ns *nvme_get_ns_from_disk(struct gendisk *disk,
1164 struct nvme_ns_head **head, int *srcu_idx)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001165{
Christoph Hellwig32acab32017-11-02 12:59:30 +01001166#ifdef CONFIG_NVME_MULTIPATH
1167 if (disk->fops == &nvme_ns_head_ops) {
1168 *head = disk->private_data;
1169 *srcu_idx = srcu_read_lock(&(*head)->srcu);
1170 return nvme_find_path(*head);
1171 }
1172#endif
1173 *head = NULL;
1174 *srcu_idx = -1;
1175 return disk->private_data;
1176}
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001177
Christoph Hellwig32acab32017-11-02 12:59:30 +01001178static void nvme_put_ns_from_disk(struct nvme_ns_head *head, int idx)
1179{
1180 if (head)
1181 srcu_read_unlock(&head->srcu, idx);
1182}
1183
1184static int nvme_ns_ioctl(struct nvme_ns *ns, unsigned cmd, unsigned long arg)
1185{
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001186 switch (cmd) {
1187 case NVME_IOCTL_ID:
1188 force_successful_syscall_return();
Christoph Hellwiged754e52017-11-09 13:50:43 +01001189 return ns->head->ns_id;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001190 case NVME_IOCTL_ADMIN_CMD:
1191 return nvme_user_cmd(ns->ctrl, NULL, (void __user *)arg);
1192 case NVME_IOCTL_IO_CMD:
1193 return nvme_user_cmd(ns->ctrl, ns, (void __user *)arg);
1194 case NVME_IOCTL_SUBMIT_IO:
1195 return nvme_submit_io(ns, (void __user *)arg);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001196 default:
Matias Bjørling84d4add2017-01-31 13:17:16 +01001197#ifdef CONFIG_NVM
1198 if (ns->ndev)
1199 return nvme_nvm_ioctl(ns, cmd, arg);
1200#endif
Scott Bauera98e58e52017-02-03 12:50:32 -07001201 if (is_sed_ioctl(cmd))
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001202 return sed_ioctl(ns->ctrl->opal_dev, cmd,
Scott Bauere225c202017-02-14 17:29:36 -07001203 (void __user *) arg);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001204 return -ENOTTY;
1205 }
1206}
1207
Christoph Hellwig32acab32017-11-02 12:59:30 +01001208static int nvme_ioctl(struct block_device *bdev, fmode_t mode,
1209 unsigned int cmd, unsigned long arg)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001210{
Christoph Hellwig32acab32017-11-02 12:59:30 +01001211 struct nvme_ns_head *head = NULL;
1212 struct nvme_ns *ns;
1213 int srcu_idx, ret;
1214
1215 ns = nvme_get_ns_from_disk(bdev->bd_disk, &head, &srcu_idx);
1216 if (unlikely(!ns))
1217 ret = -EWOULDBLOCK;
1218 else
1219 ret = nvme_ns_ioctl(ns, cmd, arg);
1220 nvme_put_ns_from_disk(head, srcu_idx);
1221 return ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001222}
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001223
1224static int nvme_open(struct block_device *bdev, fmode_t mode)
1225{
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001226 struct nvme_ns *ns = bdev->bd_disk->private_data;
1227
Christoph Hellwig32acab32017-11-02 12:59:30 +01001228#ifdef CONFIG_NVME_MULTIPATH
1229 /* should never be called due to GENHD_FL_HIDDEN */
1230 if (WARN_ON_ONCE(ns->head->disk))
Nitzan Carmi85088c42018-01-04 17:56:13 +02001231 goto fail;
Christoph Hellwig32acab32017-11-02 12:59:30 +01001232#endif
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001233 if (!kref_get_unless_zero(&ns->kref))
Nitzan Carmi85088c42018-01-04 17:56:13 +02001234 goto fail;
1235 if (!try_module_get(ns->ctrl->ops->module))
1236 goto fail_put_ns;
1237
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001238 return 0;
Nitzan Carmi85088c42018-01-04 17:56:13 +02001239
1240fail_put_ns:
1241 nvme_put_ns(ns);
1242fail:
1243 return -ENXIO;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001244}
1245
1246static void nvme_release(struct gendisk *disk, fmode_t mode)
1247{
Nitzan Carmi85088c42018-01-04 17:56:13 +02001248 struct nvme_ns *ns = disk->private_data;
1249
1250 module_put(ns->ctrl->ops->module);
1251 nvme_put_ns(ns);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001252}
1253
1254static int nvme_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1255{
1256 /* some standard values */
1257 geo->heads = 1 << 6;
1258 geo->sectors = 1 << 5;
1259 geo->cylinders = get_capacity(bdev->bd_disk) >> 11;
1260 return 0;
1261}
1262
1263#ifdef CONFIG_BLK_DEV_INTEGRITY
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001264static void nvme_init_integrity(struct gendisk *disk, u16 ms, u8 pi_type)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001265{
1266 struct blk_integrity integrity;
1267
Jay Freyenseefa9a89f2016-07-20 21:26:16 -06001268 memset(&integrity, 0, sizeof(integrity));
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001269 switch (pi_type) {
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001270 case NVME_NS_DPS_PI_TYPE3:
1271 integrity.profile = &t10_pi_type3_crc;
Nicholas Bellingerba36c212016-04-09 03:04:42 +00001272 integrity.tag_size = sizeof(u16) + sizeof(u32);
1273 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001274 break;
1275 case NVME_NS_DPS_PI_TYPE1:
1276 case NVME_NS_DPS_PI_TYPE2:
1277 integrity.profile = &t10_pi_type1_crc;
Nicholas Bellingerba36c212016-04-09 03:04:42 +00001278 integrity.tag_size = sizeof(u16);
1279 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001280 break;
1281 default:
1282 integrity.profile = NULL;
1283 break;
1284 }
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001285 integrity.tuple_size = ms;
1286 blk_integrity_register(disk, &integrity);
1287 blk_queue_max_integrity_segments(disk->queue, 1);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001288}
1289#else
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001290static void nvme_init_integrity(struct gendisk *disk, u16 ms, u8 pi_type)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001291{
1292}
1293#endif /* CONFIG_BLK_DEV_INTEGRITY */
1294
Scott Bauer6b8190d2017-06-15 10:44:30 -06001295static void nvme_set_chunk_size(struct nvme_ns *ns)
1296{
1297 u32 chunk_size = (((u32)ns->noiob) << (ns->lba_shift - 9));
1298 blk_queue_chunk_sectors(ns->queue, rounddown_pow_of_two(chunk_size));
1299}
1300
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001301static void nvme_config_discard(struct nvme_ctrl *ctrl,
1302 unsigned stream_alignment, struct request_queue *queue)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001303{
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001304 u32 size = queue_logical_block_size(queue);
1305
1306 if (stream_alignment)
1307 size *= stream_alignment;
Keith Busch08095e72016-03-04 13:15:17 -07001308
Christoph Hellwigb35ba012017-02-08 14:46:50 +01001309 BUILD_BUG_ON(PAGE_SIZE / sizeof(struct nvme_dsm_range) <
1310 NVME_DSM_MAX_RANGES);
1311
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001312 queue->limits.discard_alignment = size;
1313 queue->limits.discard_granularity = size;
Jens Axboef5d11842017-06-27 12:03:06 -06001314
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001315 blk_queue_max_discard_sectors(queue, UINT_MAX);
1316 blk_queue_max_discard_segments(queue, NVME_DSM_MAX_RANGES);
1317 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, queue);
Christoph Hellwige850fd12017-04-05 19:21:13 +02001318
1319 if (ctrl->quirks & NVME_QUIRK_DEALLOCATE_ZEROES)
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001320 blk_queue_max_write_zeroes_sectors(queue, UINT_MAX);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001321}
1322
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001323static void nvme_report_ns_ids(struct nvme_ctrl *ctrl, unsigned int nsid,
Christoph Hellwig002fab02017-11-09 13:50:16 +01001324 struct nvme_id_ns *id, struct nvme_ns_ids *ids)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001325{
Christoph Hellwig002fab02017-11-09 13:50:16 +01001326 memset(ids, 0, sizeof(*ids));
1327
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001328 if (ctrl->vs >= NVME_VS(1, 1, 0))
Christoph Hellwig002fab02017-11-09 13:50:16 +01001329 memcpy(ids->eui64, id->eui64, sizeof(id->eui64));
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001330 if (ctrl->vs >= NVME_VS(1, 2, 0))
Christoph Hellwig002fab02017-11-09 13:50:16 +01001331 memcpy(ids->nguid, id->nguid, sizeof(id->nguid));
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001332 if (ctrl->vs >= NVME_VS(1, 3, 0)) {
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +02001333 /* Don't treat error as fatal we potentially
1334 * already have a NGUID or EUI-64
1335 */
Christoph Hellwig002fab02017-11-09 13:50:16 +01001336 if (nvme_identify_ns_descs(ctrl, nsid, ids))
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001337 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +02001338 "%s: Identify Descriptors failed\n", __func__);
1339 }
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001340}
1341
Christoph Hellwiged754e52017-11-09 13:50:43 +01001342static bool nvme_ns_ids_valid(struct nvme_ns_ids *ids)
1343{
1344 return !uuid_is_null(&ids->uuid) ||
1345 memchr_inv(ids->nguid, 0, sizeof(ids->nguid)) ||
1346 memchr_inv(ids->eui64, 0, sizeof(ids->eui64));
1347}
1348
Christoph Hellwig002fab02017-11-09 13:50:16 +01001349static bool nvme_ns_ids_equal(struct nvme_ns_ids *a, struct nvme_ns_ids *b)
1350{
1351 return uuid_equal(&a->uuid, &b->uuid) &&
1352 memcmp(&a->nguid, &b->nguid, sizeof(a->nguid)) == 0 &&
1353 memcmp(&a->eui64, &b->eui64, sizeof(a->eui64)) == 0;
1354}
1355
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001356static void nvme_update_disk_info(struct gendisk *disk,
1357 struct nvme_ns *ns, struct nvme_id_ns *id)
1358{
1359 sector_t capacity = le64_to_cpup(&id->nsze) << (ns->lba_shift - 9);
1360 unsigned stream_alignment = 0;
1361
1362 if (ns->ctrl->nr_streams && ns->sws && ns->sgs)
1363 stream_alignment = ns->sws * ns->sgs;
1364
1365 blk_mq_freeze_queue(disk->queue);
1366 blk_integrity_unregister(disk);
1367
1368 blk_queue_logical_block_size(disk->queue, 1 << ns->lba_shift);
1369 if (ns->ms && !ns->ext &&
1370 (ns->ctrl->ops->flags & NVME_F_METADATA_SUPPORTED))
1371 nvme_init_integrity(disk, ns->ms, ns->pi_type);
Christoph Hellwig715ea9e2017-11-07 17:27:34 +01001372 if (ns->ms && !nvme_ns_has_pi(ns) && !blk_get_integrity(disk))
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001373 capacity = 0;
1374 set_capacity(disk, capacity);
1375
1376 if (ns->ctrl->oncs & NVME_CTRL_ONCS_DSM)
1377 nvme_config_discard(ns->ctrl, stream_alignment, disk->queue);
1378 blk_mq_unfreeze_queue(disk->queue);
1379}
1380
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001381static void __nvme_revalidate_disk(struct gendisk *disk, struct nvme_id_ns *id)
1382{
1383 struct nvme_ns *ns = disk->private_data;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001384
1385 /*
1386 * If identify namespace failed, use default 512 byte block size so
1387 * block layer can use before failing read/write for 0 capacity.
1388 */
Christoph Hellwigc81bfba2017-05-20 15:14:45 +02001389 ns->lba_shift = id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ds;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001390 if (ns->lba_shift == 0)
1391 ns->lba_shift = 9;
Scott Bauer6b8190d2017-06-15 10:44:30 -06001392 ns->noiob = le16_to_cpu(id->noiob);
Christoph Hellwigb5be3b32017-11-02 21:28:52 +03001393 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
1394 ns->ms = le16_to_cpu(id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ms);
1395 /* the PI implementation requires metadata equal t10 pi tuple size */
1396 if (ns->ms == sizeof(struct t10_pi_tuple))
1397 ns->pi_type = id->dps & NVME_NS_DPS_PI_MASK;
1398 else
1399 ns->pi_type = 0;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001400
Scott Bauer6b8190d2017-06-15 10:44:30 -06001401 if (ns->noiob)
1402 nvme_set_chunk_size(ns);
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001403 nvme_update_disk_info(disk, ns, id);
Christoph Hellwig32acab32017-11-02 12:59:30 +01001404#ifdef CONFIG_NVME_MULTIPATH
1405 if (ns->head->disk)
1406 nvme_update_disk_info(ns->head->disk, ns, id);
1407#endif
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001408}
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001409
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001410static int nvme_revalidate_disk(struct gendisk *disk)
1411{
1412 struct nvme_ns *ns = disk->private_data;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001413 struct nvme_ctrl *ctrl = ns->ctrl;
1414 struct nvme_id_ns *id;
Christoph Hellwig002fab02017-11-09 13:50:16 +01001415 struct nvme_ns_ids ids;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001416 int ret = 0;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001417
1418 if (test_bit(NVME_NS_DEAD, &ns->flags)) {
1419 set_capacity(disk, 0);
1420 return -ENODEV;
1421 }
1422
Christoph Hellwiged754e52017-11-09 13:50:43 +01001423 id = nvme_identify_ns(ctrl, ns->head->ns_id);
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001424 if (!id)
1425 return -ENODEV;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001426
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001427 if (id->ncap == 0) {
1428 ret = -ENODEV;
1429 goto out;
1430 }
1431
Keith Busch5e0fab52017-10-27 13:51:22 -06001432 __nvme_revalidate_disk(disk, id);
Christoph Hellwiged754e52017-11-09 13:50:43 +01001433 nvme_report_ns_ids(ctrl, ns->head->ns_id, id, &ids);
1434 if (!nvme_ns_ids_equal(&ns->head->ids, &ids)) {
Christoph Hellwig1d5df6a2017-08-17 14:10:00 +02001435 dev_err(ctrl->device,
Christoph Hellwiged754e52017-11-09 13:50:43 +01001436 "identifiers changed for nsid %d\n", ns->head->ns_id);
Christoph Hellwig1d5df6a2017-08-17 14:10:00 +02001437 ret = -ENODEV;
1438 }
1439
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001440out:
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001441 kfree(id);
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001442 return ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001443}
1444
1445static char nvme_pr_type(enum pr_type type)
1446{
1447 switch (type) {
1448 case PR_WRITE_EXCLUSIVE:
1449 return 1;
1450 case PR_EXCLUSIVE_ACCESS:
1451 return 2;
1452 case PR_WRITE_EXCLUSIVE_REG_ONLY:
1453 return 3;
1454 case PR_EXCLUSIVE_ACCESS_REG_ONLY:
1455 return 4;
1456 case PR_WRITE_EXCLUSIVE_ALL_REGS:
1457 return 5;
1458 case PR_EXCLUSIVE_ACCESS_ALL_REGS:
1459 return 6;
1460 default:
1461 return 0;
1462 }
1463};
1464
1465static int nvme_pr_command(struct block_device *bdev, u32 cdw10,
1466 u64 key, u64 sa_key, u8 op)
1467{
Christoph Hellwig32acab32017-11-02 12:59:30 +01001468 struct nvme_ns_head *head = NULL;
1469 struct nvme_ns *ns;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001470 struct nvme_command c;
Christoph Hellwig32acab32017-11-02 12:59:30 +01001471 int srcu_idx, ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001472 u8 data[16] = { 0, };
1473
Keith Buschb0d61d52017-11-16 13:36:49 -07001474 ns = nvme_get_ns_from_disk(bdev->bd_disk, &head, &srcu_idx);
1475 if (unlikely(!ns))
1476 return -EWOULDBLOCK;
1477
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001478 put_unaligned_le64(key, &data[0]);
1479 put_unaligned_le64(sa_key, &data[8]);
1480
1481 memset(&c, 0, sizeof(c));
1482 c.common.opcode = op;
Keith Buschb0d61d52017-11-16 13:36:49 -07001483 c.common.nsid = cpu_to_le32(ns->head->ns_id);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001484 c.common.cdw10[0] = cpu_to_le32(cdw10);
1485
Keith Buschb0d61d52017-11-16 13:36:49 -07001486 ret = nvme_submit_sync_cmd(ns->queue, &c, data, 16);
Christoph Hellwig32acab32017-11-02 12:59:30 +01001487 nvme_put_ns_from_disk(head, srcu_idx);
1488 return ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001489}
1490
1491static int nvme_pr_register(struct block_device *bdev, u64 old,
1492 u64 new, unsigned flags)
1493{
1494 u32 cdw10;
1495
1496 if (flags & ~PR_FL_IGNORE_KEY)
1497 return -EOPNOTSUPP;
1498
1499 cdw10 = old ? 2 : 0;
1500 cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0;
1501 cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */
1502 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register);
1503}
1504
1505static int nvme_pr_reserve(struct block_device *bdev, u64 key,
1506 enum pr_type type, unsigned flags)
1507{
1508 u32 cdw10;
1509
1510 if (flags & ~PR_FL_IGNORE_KEY)
1511 return -EOPNOTSUPP;
1512
1513 cdw10 = nvme_pr_type(type) << 8;
1514 cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0);
1515 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire);
1516}
1517
1518static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new,
1519 enum pr_type type, bool abort)
1520{
1521 u32 cdw10 = nvme_pr_type(type) << 8 | abort ? 2 : 1;
1522 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire);
1523}
1524
1525static int nvme_pr_clear(struct block_device *bdev, u64 key)
1526{
Dan Carpenter8c0b3912015-12-09 13:24:06 +03001527 u32 cdw10 = 1 | (key ? 1 << 3 : 0);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001528 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register);
1529}
1530
1531static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
1532{
1533 u32 cdw10 = nvme_pr_type(type) << 8 | key ? 1 << 3 : 0;
1534 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release);
1535}
1536
1537static const struct pr_ops nvme_pr_ops = {
1538 .pr_register = nvme_pr_register,
1539 .pr_reserve = nvme_pr_reserve,
1540 .pr_release = nvme_pr_release,
1541 .pr_preempt = nvme_pr_preempt,
1542 .pr_clear = nvme_pr_clear,
1543};
1544
Scott Bauera98e58e52017-02-03 12:50:32 -07001545#ifdef CONFIG_BLK_SED_OPAL
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001546int nvme_sec_submit(void *data, u16 spsp, u8 secp, void *buffer, size_t len,
1547 bool send)
Scott Bauera98e58e52017-02-03 12:50:32 -07001548{
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001549 struct nvme_ctrl *ctrl = data;
Scott Bauera98e58e52017-02-03 12:50:32 -07001550 struct nvme_command cmd;
Scott Bauera98e58e52017-02-03 12:50:32 -07001551
1552 memset(&cmd, 0, sizeof(cmd));
1553 if (send)
1554 cmd.common.opcode = nvme_admin_security_send;
1555 else
1556 cmd.common.opcode = nvme_admin_security_recv;
Scott Bauera98e58e52017-02-03 12:50:32 -07001557 cmd.common.nsid = 0;
1558 cmd.common.cdw10[0] = cpu_to_le32(((u32)secp) << 24 | ((u32)spsp) << 8);
1559 cmd.common.cdw10[1] = cpu_to_le32(len);
1560
1561 return __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, NULL, buffer, len,
1562 ADMIN_TIMEOUT, NVME_QID_ANY, 1, 0);
1563}
1564EXPORT_SYMBOL_GPL(nvme_sec_submit);
1565#endif /* CONFIG_BLK_SED_OPAL */
1566
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01001567static const struct block_device_operations nvme_fops = {
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001568 .owner = THIS_MODULE,
1569 .ioctl = nvme_ioctl,
Christoph Hellwig761f2e12017-10-05 18:46:46 +02001570 .compat_ioctl = nvme_ioctl,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001571 .open = nvme_open,
1572 .release = nvme_release,
1573 .getgeo = nvme_getgeo,
1574 .revalidate_disk= nvme_revalidate_disk,
1575 .pr_ops = &nvme_pr_ops,
1576};
1577
Christoph Hellwig32acab32017-11-02 12:59:30 +01001578#ifdef CONFIG_NVME_MULTIPATH
1579static int nvme_ns_head_open(struct block_device *bdev, fmode_t mode)
1580{
1581 struct nvme_ns_head *head = bdev->bd_disk->private_data;
1582
1583 if (!kref_get_unless_zero(&head->ref))
1584 return -ENXIO;
1585 return 0;
1586}
1587
1588static void nvme_ns_head_release(struct gendisk *disk, fmode_t mode)
1589{
1590 nvme_put_ns_head(disk->private_data);
1591}
1592
1593const struct block_device_operations nvme_ns_head_ops = {
1594 .owner = THIS_MODULE,
1595 .open = nvme_ns_head_open,
1596 .release = nvme_ns_head_release,
1597 .ioctl = nvme_ioctl,
1598 .compat_ioctl = nvme_ioctl,
1599 .getgeo = nvme_getgeo,
1600 .pr_ops = &nvme_pr_ops,
1601};
1602#endif /* CONFIG_NVME_MULTIPATH */
1603
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001604static int nvme_wait_ready(struct nvme_ctrl *ctrl, u64 cap, bool enabled)
1605{
1606 unsigned long timeout =
1607 ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1608 u32 csts, bit = enabled ? NVME_CSTS_RDY : 0;
1609 int ret;
1610
1611 while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
Keith Busch0df1e4f2016-10-11 13:31:58 -04001612 if (csts == ~0)
1613 return -ENODEV;
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001614 if ((csts & NVME_CSTS_RDY) == bit)
1615 break;
1616
1617 msleep(100);
1618 if (fatal_signal_pending(current))
1619 return -EINTR;
1620 if (time_after(jiffies, timeout)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001621 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001622 "Device not ready; aborting %s\n", enabled ?
1623 "initialisation" : "reset");
1624 return -ENODEV;
1625 }
1626 }
1627
1628 return ret;
1629}
1630
1631/*
1632 * If the device has been passed off to us in an enabled state, just clear
1633 * the enabled bit. The spec says we should set the 'shutdown notification
1634 * bits', but doing so may cause the device to complete commands to the
1635 * admin queue ... and we don't know what memory that might be pointing at!
1636 */
1637int nvme_disable_ctrl(struct nvme_ctrl *ctrl, u64 cap)
1638{
1639 int ret;
1640
1641 ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
1642 ctrl->ctrl_config &= ~NVME_CC_ENABLE;
1643
1644 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1645 if (ret)
1646 return ret;
Guilherme G. Piccoli54adc012016-06-14 18:22:41 -03001647
Guilherme G. Piccolib5a10c52016-12-28 22:13:15 -02001648 if (ctrl->quirks & NVME_QUIRK_DELAY_BEFORE_CHK_RDY)
Guilherme G. Piccoli54adc012016-06-14 18:22:41 -03001649 msleep(NVME_QUIRK_DELAY_AMOUNT);
1650
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001651 return nvme_wait_ready(ctrl, cap, false);
1652}
Ming Lin576d55d2016-02-10 10:03:32 -08001653EXPORT_SYMBOL_GPL(nvme_disable_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001654
1655int nvme_enable_ctrl(struct nvme_ctrl *ctrl, u64 cap)
1656{
1657 /*
1658 * Default to a 4K page size, with the intention to update this
1659 * path in the future to accomodate architectures with differing
1660 * kernel and IO page sizes.
1661 */
1662 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12, page_shift = 12;
1663 int ret;
1664
1665 if (page_shift < dev_page_min) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001666 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001667 "Minimum device page size %u too large for host (%u)\n",
1668 1 << dev_page_min, 1 << page_shift);
1669 return -ENODEV;
1670 }
1671
1672 ctrl->page_size = 1 << page_shift;
1673
1674 ctrl->ctrl_config = NVME_CC_CSS_NVM;
1675 ctrl->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Max Gurtovoy60b43f62017-08-13 19:21:07 +03001676 ctrl->ctrl_config |= NVME_CC_AMS_RR | NVME_CC_SHN_NONE;
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001677 ctrl->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
1678 ctrl->ctrl_config |= NVME_CC_ENABLE;
1679
1680 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1681 if (ret)
1682 return ret;
1683 return nvme_wait_ready(ctrl, cap, true);
1684}
Ming Lin576d55d2016-02-10 10:03:32 -08001685EXPORT_SYMBOL_GPL(nvme_enable_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001686
1687int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl)
1688{
Martin K. Petersen07fbd322017-08-25 19:14:50 -04001689 unsigned long timeout = jiffies + (ctrl->shutdown_timeout * HZ);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001690 u32 csts;
1691 int ret;
1692
1693 ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
1694 ctrl->ctrl_config |= NVME_CC_SHN_NORMAL;
1695
1696 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1697 if (ret)
1698 return ret;
1699
1700 while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
1701 if ((csts & NVME_CSTS_SHST_MASK) == NVME_CSTS_SHST_CMPLT)
1702 break;
1703
1704 msleep(100);
1705 if (fatal_signal_pending(current))
1706 return -EINTR;
1707 if (time_after(jiffies, timeout)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001708 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001709 "Device shutdown incomplete; abort shutdown\n");
1710 return -ENODEV;
1711 }
1712 }
1713
1714 return ret;
1715}
Ming Lin576d55d2016-02-10 10:03:32 -08001716EXPORT_SYMBOL_GPL(nvme_shutdown_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001717
Christoph Hellwigda358252016-03-02 18:07:11 +01001718static void nvme_set_queue_limits(struct nvme_ctrl *ctrl,
1719 struct request_queue *q)
1720{
Jens Axboe7c88cb02016-04-12 15:43:09 -06001721 bool vwc = false;
1722
Christoph Hellwigda358252016-03-02 18:07:11 +01001723 if (ctrl->max_hw_sectors) {
Christoph Hellwig45686b62016-03-02 18:07:12 +01001724 u32 max_segments =
1725 (ctrl->max_hw_sectors / (ctrl->page_size >> 9)) + 1;
1726
Christoph Hellwigda358252016-03-02 18:07:11 +01001727 blk_queue_max_hw_sectors(q, ctrl->max_hw_sectors);
Christoph Hellwig45686b62016-03-02 18:07:12 +01001728 blk_queue_max_segments(q, min_t(u32, max_segments, USHRT_MAX));
Christoph Hellwigda358252016-03-02 18:07:11 +01001729 }
Keith Busche6282ae2016-12-19 11:37:50 -05001730 if (ctrl->quirks & NVME_QUIRK_STRIPE_SIZE)
1731 blk_queue_chunk_sectors(q, ctrl->max_hw_sectors);
Christoph Hellwigda358252016-03-02 18:07:11 +01001732 blk_queue_virt_boundary(q, ctrl->page_size - 1);
Jens Axboe7c88cb02016-04-12 15:43:09 -06001733 if (ctrl->vwc & NVME_CTRL_VWC_PRESENT)
1734 vwc = true;
1735 blk_queue_write_cache(q, vwc, vwc);
Christoph Hellwigda358252016-03-02 18:07:11 +01001736}
1737
Jon Derrickdbf86b32017-08-16 09:51:29 +02001738static int nvme_configure_timestamp(struct nvme_ctrl *ctrl)
1739{
1740 __le64 ts;
1741 int ret;
1742
1743 if (!(ctrl->oncs & NVME_CTRL_ONCS_TIMESTAMP))
1744 return 0;
1745
1746 ts = cpu_to_le64(ktime_to_ms(ktime_get_real()));
1747 ret = nvme_set_features(ctrl, NVME_FEAT_TIMESTAMP, 0, &ts, sizeof(ts),
1748 NULL);
1749 if (ret)
1750 dev_warn_once(ctrl->device,
1751 "could not set timestamp (%d)\n", ret);
1752 return ret;
1753}
1754
Keith Busch634b8322017-08-10 11:23:31 +02001755static int nvme_configure_apst(struct nvme_ctrl *ctrl)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001756{
1757 /*
1758 * APST (Autonomous Power State Transition) lets us program a
1759 * table of power state transitions that the controller will
1760 * perform automatically. We configure it with a simple
1761 * heuristic: we are willing to spend at most 2% of the time
1762 * transitioning between power states. Therefore, when running
1763 * in any given state, we will enter the next lower-power
Andy Lutomirski76e4ad02017-04-21 16:19:22 -07001764 * non-operational state after waiting 50 * (enlat + exlat)
Kai-Heng Fengda875912017-06-07 15:25:42 +08001765 * microseconds, as long as that state's exit latency is under
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001766 * the requested maximum latency.
1767 *
1768 * We will not autonomously enter any non-operational state for
1769 * which the total latency exceeds ps_max_latency_us. Users
1770 * can set ps_max_latency_us to zero to turn off APST.
1771 */
1772
1773 unsigned apste;
1774 struct nvme_feat_auto_pst *table;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001775 u64 max_lat_us = 0;
1776 int max_ps = -1;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001777 int ret;
1778
1779 /*
1780 * If APST isn't supported or if we haven't been initialized yet,
1781 * then don't do anything.
1782 */
1783 if (!ctrl->apsta)
Keith Busch634b8322017-08-10 11:23:31 +02001784 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001785
1786 if (ctrl->npss > 31) {
1787 dev_warn(ctrl->device, "NPSS is invalid; not using APST\n");
Keith Busch634b8322017-08-10 11:23:31 +02001788 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001789 }
1790
1791 table = kzalloc(sizeof(*table), GFP_KERNEL);
1792 if (!table)
Keith Busch634b8322017-08-10 11:23:31 +02001793 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001794
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04001795 if (!ctrl->apst_enabled || ctrl->ps_max_latency_us == 0) {
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001796 /* Turn off APST. */
1797 apste = 0;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001798 dev_dbg(ctrl->device, "APST disabled\n");
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001799 } else {
1800 __le64 target = cpu_to_le64(0);
1801 int state;
1802
1803 /*
1804 * Walk through all states from lowest- to highest-power.
1805 * According to the spec, lower-numbered states use more
1806 * power. NPSS, despite the name, is the index of the
1807 * lowest-power state, not the number of states.
1808 */
1809 for (state = (int)ctrl->npss; state >= 0; state--) {
Kai-Heng Fengda875912017-06-07 15:25:42 +08001810 u64 total_latency_us, exit_latency_us, transition_ms;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001811
1812 if (target)
1813 table->entries[state] = target;
1814
1815 /*
Andy Lutomirskiff5350a2017-04-20 13:37:55 -07001816 * Don't allow transitions to the deepest state
1817 * if it's quirked off.
1818 */
1819 if (state == ctrl->npss &&
1820 (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS))
1821 continue;
1822
1823 /*
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001824 * Is this state a useful non-operational state for
1825 * higher-power states to autonomously transition to?
1826 */
1827 if (!(ctrl->psd[state].flags &
1828 NVME_PS_FLAGS_NON_OP_STATE))
1829 continue;
1830
Kai-Heng Fengda875912017-06-07 15:25:42 +08001831 exit_latency_us =
1832 (u64)le32_to_cpu(ctrl->psd[state].exit_lat);
1833 if (exit_latency_us > ctrl->ps_max_latency_us)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001834 continue;
1835
Kai-Heng Fengda875912017-06-07 15:25:42 +08001836 total_latency_us =
1837 exit_latency_us +
1838 le32_to_cpu(ctrl->psd[state].entry_lat);
1839
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001840 /*
1841 * This state is good. Use it as the APST idle
1842 * target for higher power states.
1843 */
1844 transition_ms = total_latency_us + 19;
1845 do_div(transition_ms, 20);
1846 if (transition_ms > (1 << 24) - 1)
1847 transition_ms = (1 << 24) - 1;
1848
1849 target = cpu_to_le64((state << 3) |
1850 (transition_ms << 8));
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001851
1852 if (max_ps == -1)
1853 max_ps = state;
1854
1855 if (total_latency_us > max_lat_us)
1856 max_lat_us = total_latency_us;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001857 }
1858
1859 apste = 1;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001860
1861 if (max_ps == -1) {
1862 dev_dbg(ctrl->device, "APST enabled but no non-operational states are available\n");
1863 } else {
1864 dev_dbg(ctrl->device, "APST enabled: max PS = %d, max round-trip latency = %lluus, table = %*phN\n",
1865 max_ps, max_lat_us, (int)sizeof(*table), table);
1866 }
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001867 }
1868
1869 ret = nvme_set_features(ctrl, NVME_FEAT_AUTO_PST, apste,
1870 table, sizeof(*table), NULL);
1871 if (ret)
1872 dev_err(ctrl->device, "failed to set APST feature (%d)\n", ret);
1873
1874 kfree(table);
Keith Busch634b8322017-08-10 11:23:31 +02001875 return ret;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001876}
1877
1878static void nvme_set_latency_tolerance(struct device *dev, s32 val)
1879{
1880 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
1881 u64 latency;
1882
1883 switch (val) {
1884 case PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT:
1885 case PM_QOS_LATENCY_ANY:
1886 latency = U64_MAX;
1887 break;
1888
1889 default:
1890 latency = val;
1891 }
1892
1893 if (ctrl->ps_max_latency_us != latency) {
1894 ctrl->ps_max_latency_us = latency;
1895 nvme_configure_apst(ctrl);
1896 }
1897}
1898
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001899struct nvme_core_quirk_entry {
1900 /*
1901 * NVMe model and firmware strings are padded with spaces. For
1902 * simplicity, strings in the quirk table are padded with NULLs
1903 * instead.
1904 */
1905 u16 vid;
1906 const char *mn;
1907 const char *fr;
1908 unsigned long quirks;
1909};
1910
1911static const struct nvme_core_quirk_entry core_quirks[] = {
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001912 {
Andy Lutomirskibe569452017-04-20 13:37:56 -07001913 /*
1914 * This Toshiba device seems to die using any APST states. See:
1915 * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1678184/comments/11
1916 */
1917 .vid = 0x1179,
1918 .mn = "THNSF5256GPUK TOSHIBA",
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001919 .quirks = NVME_QUIRK_NO_APST,
Andy Lutomirskibe569452017-04-20 13:37:56 -07001920 }
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001921};
1922
1923/* match is null-terminated but idstr is space-padded. */
1924static bool string_matches(const char *idstr, const char *match, size_t len)
1925{
1926 size_t matchlen;
1927
1928 if (!match)
1929 return true;
1930
1931 matchlen = strlen(match);
1932 WARN_ON_ONCE(matchlen > len);
1933
1934 if (memcmp(idstr, match, matchlen))
1935 return false;
1936
1937 for (; matchlen < len; matchlen++)
1938 if (idstr[matchlen] != ' ')
1939 return false;
1940
1941 return true;
1942}
1943
1944static bool quirk_matches(const struct nvme_id_ctrl *id,
1945 const struct nvme_core_quirk_entry *q)
1946{
1947 return q->vid == le16_to_cpu(id->vid) &&
1948 string_matches(id->mn, q->mn, sizeof(id->mn)) &&
1949 string_matches(id->fr, q->fr, sizeof(id->fr));
1950}
1951
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001952static void nvme_init_subnqn(struct nvme_subsystem *subsys, struct nvme_ctrl *ctrl,
1953 struct nvme_id_ctrl *id)
Christoph Hellwig180de0072017-06-26 12:39:02 +02001954{
1955 size_t nqnlen;
1956 int off;
1957
1958 nqnlen = strnlen(id->subnqn, NVMF_NQN_SIZE);
1959 if (nqnlen > 0 && nqnlen < NVMF_NQN_SIZE) {
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001960 strncpy(subsys->subnqn, id->subnqn, NVMF_NQN_SIZE);
Christoph Hellwig180de0072017-06-26 12:39:02 +02001961 return;
1962 }
1963
1964 if (ctrl->vs >= NVME_VS(1, 2, 1))
1965 dev_warn(ctrl->device, "missing or invalid SUBNQN field.\n");
1966
1967 /* Generate a "fake" NQN per Figure 254 in NVMe 1.3 + ECN 001 */
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001968 off = snprintf(subsys->subnqn, NVMF_NQN_SIZE,
Christoph Hellwig180de0072017-06-26 12:39:02 +02001969 "nqn.2014.08.org.nvmexpress:%4x%4x",
1970 le16_to_cpu(id->vid), le16_to_cpu(id->ssvid));
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001971 memcpy(subsys->subnqn + off, id->sn, sizeof(id->sn));
Christoph Hellwig180de0072017-06-26 12:39:02 +02001972 off += sizeof(id->sn);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001973 memcpy(subsys->subnqn + off, id->mn, sizeof(id->mn));
Christoph Hellwig180de0072017-06-26 12:39:02 +02001974 off += sizeof(id->mn);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001975 memset(subsys->subnqn + off, 0, sizeof(subsys->subnqn) - off);
1976}
1977
1978static void __nvme_release_subsystem(struct nvme_subsystem *subsys)
1979{
1980 ida_simple_remove(&nvme_subsystems_ida, subsys->instance);
1981 kfree(subsys);
1982}
1983
1984static void nvme_release_subsystem(struct device *dev)
1985{
1986 __nvme_release_subsystem(container_of(dev, struct nvme_subsystem, dev));
1987}
1988
1989static void nvme_destroy_subsystem(struct kref *ref)
1990{
1991 struct nvme_subsystem *subsys =
1992 container_of(ref, struct nvme_subsystem, ref);
1993
1994 mutex_lock(&nvme_subsystems_lock);
1995 list_del(&subsys->entry);
1996 mutex_unlock(&nvme_subsystems_lock);
1997
Christoph Hellwiged754e52017-11-09 13:50:43 +01001998 ida_destroy(&subsys->ns_ida);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001999 device_del(&subsys->dev);
2000 put_device(&subsys->dev);
2001}
2002
2003static void nvme_put_subsystem(struct nvme_subsystem *subsys)
2004{
2005 kref_put(&subsys->ref, nvme_destroy_subsystem);
2006}
2007
2008static struct nvme_subsystem *__nvme_find_get_subsystem(const char *subsysnqn)
2009{
2010 struct nvme_subsystem *subsys;
2011
2012 lockdep_assert_held(&nvme_subsystems_lock);
2013
2014 list_for_each_entry(subsys, &nvme_subsystems, entry) {
2015 if (strcmp(subsys->subnqn, subsysnqn))
2016 continue;
2017 if (!kref_get_unless_zero(&subsys->ref))
2018 continue;
2019 return subsys;
2020 }
2021
2022 return NULL;
2023}
2024
Hannes Reinecke1e496932017-11-10 10:58:23 +01002025#define SUBSYS_ATTR_RO(_name, _mode, _show) \
2026 struct device_attribute subsys_attr_##_name = \
2027 __ATTR(_name, _mode, _show, NULL)
2028
2029static ssize_t nvme_subsys_show_nqn(struct device *dev,
2030 struct device_attribute *attr,
2031 char *buf)
2032{
2033 struct nvme_subsystem *subsys =
2034 container_of(dev, struct nvme_subsystem, dev);
2035
2036 return snprintf(buf, PAGE_SIZE, "%s\n", subsys->subnqn);
2037}
2038static SUBSYS_ATTR_RO(subsysnqn, S_IRUGO, nvme_subsys_show_nqn);
2039
2040#define nvme_subsys_show_str_function(field) \
2041static ssize_t subsys_##field##_show(struct device *dev, \
2042 struct device_attribute *attr, char *buf) \
2043{ \
2044 struct nvme_subsystem *subsys = \
2045 container_of(dev, struct nvme_subsystem, dev); \
2046 return sprintf(buf, "%.*s\n", \
2047 (int)sizeof(subsys->field), subsys->field); \
2048} \
2049static SUBSYS_ATTR_RO(field, S_IRUGO, subsys_##field##_show);
2050
2051nvme_subsys_show_str_function(model);
2052nvme_subsys_show_str_function(serial);
2053nvme_subsys_show_str_function(firmware_rev);
2054
2055static struct attribute *nvme_subsys_attrs[] = {
2056 &subsys_attr_model.attr,
2057 &subsys_attr_serial.attr,
2058 &subsys_attr_firmware_rev.attr,
2059 &subsys_attr_subsysnqn.attr,
2060 NULL,
2061};
2062
2063static struct attribute_group nvme_subsys_attrs_group = {
2064 .attrs = nvme_subsys_attrs,
2065};
2066
2067static const struct attribute_group *nvme_subsys_attrs_groups[] = {
2068 &nvme_subsys_attrs_group,
2069 NULL,
2070};
2071
Israel Rukshinb837b282018-01-04 17:56:14 +02002072static int nvme_active_ctrls(struct nvme_subsystem *subsys)
2073{
2074 int count = 0;
2075 struct nvme_ctrl *ctrl;
2076
2077 mutex_lock(&subsys->lock);
2078 list_for_each_entry(ctrl, &subsys->ctrls, subsys_entry) {
2079 if (ctrl->state != NVME_CTRL_DELETING &&
2080 ctrl->state != NVME_CTRL_DEAD)
2081 count++;
2082 }
2083 mutex_unlock(&subsys->lock);
2084
2085 return count;
2086}
2087
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002088static int nvme_init_subsystem(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id)
2089{
2090 struct nvme_subsystem *subsys, *found;
2091 int ret;
2092
2093 subsys = kzalloc(sizeof(*subsys), GFP_KERNEL);
2094 if (!subsys)
2095 return -ENOMEM;
2096 ret = ida_simple_get(&nvme_subsystems_ida, 0, 0, GFP_KERNEL);
2097 if (ret < 0) {
2098 kfree(subsys);
2099 return ret;
2100 }
2101 subsys->instance = ret;
2102 mutex_init(&subsys->lock);
2103 kref_init(&subsys->ref);
2104 INIT_LIST_HEAD(&subsys->ctrls);
Christoph Hellwiged754e52017-11-09 13:50:43 +01002105 INIT_LIST_HEAD(&subsys->nsheads);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002106 nvme_init_subnqn(subsys, ctrl, id);
2107 memcpy(subsys->serial, id->sn, sizeof(subsys->serial));
2108 memcpy(subsys->model, id->mn, sizeof(subsys->model));
2109 memcpy(subsys->firmware_rev, id->fr, sizeof(subsys->firmware_rev));
2110 subsys->vendor_id = le16_to_cpu(id->vid);
2111 subsys->cmic = id->cmic;
2112
2113 subsys->dev.class = nvme_subsys_class;
2114 subsys->dev.release = nvme_release_subsystem;
Hannes Reinecke1e496932017-11-10 10:58:23 +01002115 subsys->dev.groups = nvme_subsys_attrs_groups;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002116 dev_set_name(&subsys->dev, "nvme-subsys%d", subsys->instance);
2117 device_initialize(&subsys->dev);
2118
2119 mutex_lock(&nvme_subsystems_lock);
2120 found = __nvme_find_get_subsystem(subsys->subnqn);
2121 if (found) {
2122 /*
2123 * Verify that the subsystem actually supports multiple
2124 * controllers, else bail out.
2125 */
Israel Rukshinb837b282018-01-04 17:56:14 +02002126 if (nvme_active_ctrls(found) && !(id->cmic & (1 << 1))) {
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002127 dev_err(ctrl->device,
2128 "ignoring ctrl due to duplicate subnqn (%s).\n",
2129 found->subnqn);
2130 nvme_put_subsystem(found);
2131 ret = -EINVAL;
2132 goto out_unlock;
2133 }
2134
2135 __nvme_release_subsystem(subsys);
2136 subsys = found;
2137 } else {
2138 ret = device_add(&subsys->dev);
2139 if (ret) {
2140 dev_err(ctrl->device,
2141 "failed to register subsystem device.\n");
2142 goto out_unlock;
2143 }
Christoph Hellwiged754e52017-11-09 13:50:43 +01002144 ida_init(&subsys->ns_ida);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002145 list_add_tail(&subsys->entry, &nvme_subsystems);
2146 }
2147
2148 ctrl->subsys = subsys;
2149 mutex_unlock(&nvme_subsystems_lock);
2150
2151 if (sysfs_create_link(&subsys->dev.kobj, &ctrl->device->kobj,
2152 dev_name(ctrl->device))) {
2153 dev_err(ctrl->device,
2154 "failed to create sysfs link from subsystem.\n");
2155 /* the transport driver will eventually put the subsystem */
2156 return -EINVAL;
2157 }
2158
2159 mutex_lock(&subsys->lock);
2160 list_add_tail(&ctrl->subsys_entry, &subsys->ctrls);
2161 mutex_unlock(&subsys->lock);
2162
2163 return 0;
2164
2165out_unlock:
2166 mutex_unlock(&nvme_subsystems_lock);
2167 put_device(&subsys->dev);
2168 return ret;
Christoph Hellwig180de0072017-06-26 12:39:02 +02002169}
2170
Keith Buschc627c482017-11-07 10:28:31 -07002171static int nvme_get_log(struct nvme_ctrl *ctrl, u8 log_page, void *log,
2172 size_t size)
2173{
2174 struct nvme_command c = { };
2175
2176 c.common.opcode = nvme_admin_get_log_page;
2177 c.common.nsid = cpu_to_le32(NVME_NSID_ALL);
2178 c.common.cdw10[0] = nvme_get_log_dw10(log_page, size);
2179
2180 return nvme_submit_sync_cmd(ctrl->admin_q, &c, log, size);
2181}
2182
Keith Busch84fef622017-11-07 10:28:32 -07002183static int nvme_get_effects_log(struct nvme_ctrl *ctrl)
2184{
2185 int ret;
2186
2187 if (!ctrl->effects)
2188 ctrl->effects = kzalloc(sizeof(*ctrl->effects), GFP_KERNEL);
2189
2190 if (!ctrl->effects)
2191 return 0;
2192
2193 ret = nvme_get_log(ctrl, NVME_LOG_CMD_EFFECTS, ctrl->effects,
2194 sizeof(*ctrl->effects));
2195 if (ret) {
2196 kfree(ctrl->effects);
2197 ctrl->effects = NULL;
2198 }
2199 return ret;
Christoph Hellwig21d34712015-11-26 09:08:36 +01002200}
2201
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002202/*
2203 * Initialize the cached copies of the Identify data and various controller
2204 * register in our nvme_ctrl structure. This should be called as soon as
2205 * the admin queue is fully up and running.
2206 */
2207int nvme_init_identify(struct nvme_ctrl *ctrl)
2208{
2209 struct nvme_id_ctrl *id;
2210 u64 cap;
2211 int ret, page_shift;
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02002212 u32 max_hw_sectors;
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002213 bool prev_apst_enabled;
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002214
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002215 ret = ctrl->ops->reg_read32(ctrl, NVME_REG_VS, &ctrl->vs);
2216 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002217 dev_err(ctrl->device, "Reading VS failed (%d)\n", ret);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002218 return ret;
2219 }
2220
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002221 ret = ctrl->ops->reg_read64(ctrl, NVME_REG_CAP, &cap);
2222 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002223 dev_err(ctrl->device, "Reading CAP failed (%d)\n", ret);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002224 return ret;
2225 }
2226 page_shift = NVME_CAP_MPSMIN(cap) + 12;
2227
Gabriel Krisman Bertazi8ef20742016-10-19 09:51:05 -06002228 if (ctrl->vs >= NVME_VS(1, 1, 0))
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002229 ctrl->subsystem = NVME_CAP_NSSRC(cap);
2230
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002231 ret = nvme_identify_ctrl(ctrl, &id);
2232 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002233 dev_err(ctrl->device, "Identify Controller failed (%d)\n", ret);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002234 return -EIO;
2235 }
2236
Keith Busch84fef622017-11-07 10:28:32 -07002237 if (id->lpa & NVME_CTRL_LPA_CMD_EFFECTS_LOG) {
2238 ret = nvme_get_effects_log(ctrl);
2239 if (ret < 0)
2240 return ret;
2241 }
Christoph Hellwig180de0072017-06-26 12:39:02 +02002242
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002243 if (!ctrl->identified) {
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002244 int i;
2245
2246 ret = nvme_init_subsystem(ctrl, id);
2247 if (ret)
2248 goto out_free;
2249
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002250 /*
2251 * Check for quirks. Quirk can depend on firmware version,
2252 * so, in principle, the set of quirks present can change
2253 * across a reset. As a possible future enhancement, we
2254 * could re-scan for quirks every time we reinitialize
2255 * the device, but we'd have to make sure that the driver
2256 * behaves intelligently if the quirks change.
2257 */
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002258 for (i = 0; i < ARRAY_SIZE(core_quirks); i++) {
2259 if (quirk_matches(id, &core_quirks[i]))
2260 ctrl->quirks |= core_quirks[i].quirks;
2261 }
2262 }
2263
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002264 if (force_apst && (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS)) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02002265 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 -07002266 ctrl->quirks &= ~NVME_QUIRK_NO_DEEPEST_PS;
2267 }
2268
Scott Bauer8a9ae522017-02-17 13:59:40 +01002269 ctrl->oacs = le16_to_cpu(id->oacs);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002270 ctrl->oncs = le16_to_cpup(&id->oncs);
Christoph Hellwig6bf25d12015-11-20 09:36:44 +01002271 atomic_set(&ctrl->abort_limit, id->acl + 1);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002272 ctrl->vwc = id->vwc;
Ming Lin931e1c22016-02-26 13:24:19 -08002273 ctrl->cntlid = le16_to_cpup(&id->cntlid);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002274 if (id->mdts)
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02002275 max_hw_sectors = 1 << (id->mdts + page_shift - 9);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002276 else
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02002277 max_hw_sectors = UINT_MAX;
2278 ctrl->max_hw_sectors =
2279 min_not_zero(ctrl->max_hw_sectors, max_hw_sectors);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002280
Christoph Hellwigda358252016-03-02 18:07:11 +01002281 nvme_set_queue_limits(ctrl, ctrl->admin_q);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002282 ctrl->sgls = le32_to_cpu(id->sgls);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002283 ctrl->kas = le16_to_cpu(id->kas);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002284
Martin K. Petersen07fbd322017-08-25 19:14:50 -04002285 if (id->rtd3e) {
2286 /* us -> s */
2287 u32 transition_time = le32_to_cpu(id->rtd3e) / 1000000;
2288
2289 ctrl->shutdown_timeout = clamp_t(unsigned int, transition_time,
2290 shutdown_timeout, 60);
2291
2292 if (ctrl->shutdown_timeout != shutdown_timeout)
Max Gurtovoy1a3838d2017-12-31 15:33:27 +02002293 dev_info(ctrl->device,
Martin K. Petersen07fbd322017-08-25 19:14:50 -04002294 "Shutdown timeout set to %u seconds\n",
2295 ctrl->shutdown_timeout);
2296 } else
2297 ctrl->shutdown_timeout = shutdown_timeout;
2298
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002299 ctrl->npss = id->npss;
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002300 ctrl->apsta = id->apsta;
2301 prev_apst_enabled = ctrl->apst_enabled;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002302 if (ctrl->quirks & NVME_QUIRK_NO_APST) {
2303 if (force_apst && id->apsta) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02002304 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 -04002305 ctrl->apst_enabled = true;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002306 } else {
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002307 ctrl->apst_enabled = false;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002308 }
2309 } else {
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002310 ctrl->apst_enabled = id->apsta;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002311 }
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002312 memcpy(ctrl->psd, id->psd, sizeof(ctrl->psd));
2313
Christoph Hellwigd3d5b872017-05-20 15:14:44 +02002314 if (ctrl->ops->flags & NVME_F_FABRICS) {
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002315 ctrl->icdoff = le16_to_cpu(id->icdoff);
2316 ctrl->ioccsz = le32_to_cpu(id->ioccsz);
2317 ctrl->iorcsz = le32_to_cpu(id->iorcsz);
2318 ctrl->maxcmd = le16_to_cpu(id->maxcmd);
2319
2320 /*
2321 * In fabrics we need to verify the cntlid matches the
2322 * admin connect
2323 */
Keith Busch634b8322017-08-10 11:23:31 +02002324 if (ctrl->cntlid != le16_to_cpu(id->cntlid)) {
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002325 ret = -EINVAL;
Keith Busch634b8322017-08-10 11:23:31 +02002326 goto out_free;
2327 }
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002328
2329 if (!ctrl->opts->discovery_nqn && !ctrl->kas) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02002330 dev_err(ctrl->device,
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002331 "keep-alive support is mandatory for fabrics\n");
2332 ret = -EINVAL;
Keith Busch634b8322017-08-10 11:23:31 +02002333 goto out_free;
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002334 }
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002335 } else {
2336 ctrl->cntlid = le16_to_cpu(id->cntlid);
Christoph Hellwigfe6d53c2017-05-12 17:16:10 +02002337 ctrl->hmpre = le32_to_cpu(id->hmpre);
2338 ctrl->hmmin = le32_to_cpu(id->hmmin);
Christoph Hellwig044a9df2017-09-11 12:09:28 -04002339 ctrl->hmminds = le32_to_cpu(id->hmminds);
2340 ctrl->hmmaxd = le16_to_cpu(id->hmmaxd);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002341 }
Christoph Hellwigda358252016-03-02 18:07:11 +01002342
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002343 kfree(id);
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002344
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002345 if (ctrl->apst_enabled && !prev_apst_enabled)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002346 dev_pm_qos_expose_latency_tolerance(ctrl->device);
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002347 else if (!ctrl->apst_enabled && prev_apst_enabled)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002348 dev_pm_qos_hide_latency_tolerance(ctrl->device);
2349
Keith Busch634b8322017-08-10 11:23:31 +02002350 ret = nvme_configure_apst(ctrl);
2351 if (ret < 0)
2352 return ret;
Jon Derrickdbf86b32017-08-16 09:51:29 +02002353
2354 ret = nvme_configure_timestamp(ctrl);
2355 if (ret < 0)
2356 return ret;
Keith Busch634b8322017-08-10 11:23:31 +02002357
2358 ret = nvme_configure_directives(ctrl);
2359 if (ret < 0)
2360 return ret;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002361
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002362 ctrl->identified = true;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002363
Keith Busch634b8322017-08-10 11:23:31 +02002364 return 0;
2365
2366out_free:
2367 kfree(id);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002368 return ret;
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002369}
Ming Lin576d55d2016-02-10 10:03:32 -08002370EXPORT_SYMBOL_GPL(nvme_init_identify);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002371
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002372static int nvme_dev_open(struct inode *inode, struct file *file)
Christoph Hellwig21d34712015-11-26 09:08:36 +01002373{
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002374 struct nvme_ctrl *ctrl =
2375 container_of(inode->i_cdev, struct nvme_ctrl, cdev);
Christoph Hellwig21d34712015-11-26 09:08:36 +01002376
Jianchao Wang2b1b7e72018-01-06 08:01:58 +08002377 switch (ctrl->state) {
2378 case NVME_CTRL_LIVE:
2379 case NVME_CTRL_ADMIN_ONLY:
2380 break;
2381 default:
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002382 return -EWOULDBLOCK;
Jianchao Wang2b1b7e72018-01-06 08:01:58 +08002383 }
2384
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002385 file->private_data = ctrl;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002386 return 0;
Christoph Hellwig21d34712015-11-26 09:08:36 +01002387}
2388
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002389static int nvme_dev_user_cmd(struct nvme_ctrl *ctrl, void __user *argp)
2390{
2391 struct nvme_ns *ns;
2392 int ret;
2393
2394 mutex_lock(&ctrl->namespaces_mutex);
2395 if (list_empty(&ctrl->namespaces)) {
2396 ret = -ENOTTY;
2397 goto out_unlock;
2398 }
2399
2400 ns = list_first_entry(&ctrl->namespaces, struct nvme_ns, list);
2401 if (ns != list_last_entry(&ctrl->namespaces, struct nvme_ns, list)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002402 dev_warn(ctrl->device,
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002403 "NVME_IOCTL_IO_CMD not supported when multiple namespaces present!\n");
2404 ret = -EINVAL;
2405 goto out_unlock;
2406 }
2407
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002408 dev_warn(ctrl->device,
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002409 "using deprecated NVME_IOCTL_IO_CMD ioctl on the char device!\n");
2410 kref_get(&ns->kref);
2411 mutex_unlock(&ctrl->namespaces_mutex);
2412
2413 ret = nvme_user_cmd(ctrl, ns, argp);
2414 nvme_put_ns(ns);
2415 return ret;
2416
2417out_unlock:
2418 mutex_unlock(&ctrl->namespaces_mutex);
2419 return ret;
2420}
2421
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002422static long nvme_dev_ioctl(struct file *file, unsigned int cmd,
2423 unsigned long arg)
2424{
2425 struct nvme_ctrl *ctrl = file->private_data;
2426 void __user *argp = (void __user *)arg;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002427
2428 switch (cmd) {
2429 case NVME_IOCTL_ADMIN_CMD:
2430 return nvme_user_cmd(ctrl, NULL, argp);
2431 case NVME_IOCTL_IO_CMD:
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002432 return nvme_dev_user_cmd(ctrl, argp);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002433 case NVME_IOCTL_RESET:
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002434 dev_warn(ctrl->device, "resetting controller\n");
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002435 return nvme_reset_ctrl_sync(ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002436 case NVME_IOCTL_SUBSYS_RESET:
2437 return nvme_reset_subsystem(ctrl);
Keith Busch9ec3bb22016-04-29 15:45:18 -06002438 case NVME_IOCTL_RESCAN:
2439 nvme_queue_scan(ctrl);
2440 return 0;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002441 default:
2442 return -ENOTTY;
2443 }
2444}
2445
2446static const struct file_operations nvme_dev_fops = {
2447 .owner = THIS_MODULE,
2448 .open = nvme_dev_open,
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002449 .unlocked_ioctl = nvme_dev_ioctl,
2450 .compat_ioctl = nvme_dev_ioctl,
2451};
2452
2453static ssize_t nvme_sysfs_reset(struct device *dev,
2454 struct device_attribute *attr, const char *buf,
2455 size_t count)
2456{
2457 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2458 int ret;
2459
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002460 ret = nvme_reset_ctrl_sync(ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002461 if (ret < 0)
2462 return ret;
2463 return count;
2464}
2465static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
2466
Keith Busch9ec3bb22016-04-29 15:45:18 -06002467static ssize_t nvme_sysfs_rescan(struct device *dev,
2468 struct device_attribute *attr, const char *buf,
2469 size_t count)
2470{
2471 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2472
2473 nvme_queue_scan(ctrl);
2474 return count;
2475}
2476static DEVICE_ATTR(rescan_controller, S_IWUSR, NULL, nvme_sysfs_rescan);
2477
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002478static inline struct nvme_ns_head *dev_to_ns_head(struct device *dev)
Keith Busch118472a2016-02-18 09:57:48 -07002479{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002480 struct gendisk *disk = dev_to_disk(dev);
Keith Busch118472a2016-02-18 09:57:48 -07002481
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002482 if (disk->fops == &nvme_fops)
2483 return nvme_get_ns_from_dev(dev)->head;
2484 else
2485 return disk->private_data;
2486}
Johannes Thumshirn6484f5d2017-07-12 15:38:56 +02002487
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002488static ssize_t wwid_show(struct device *dev, struct device_attribute *attr,
2489 char *buf)
2490{
2491 struct nvme_ns_head *head = dev_to_ns_head(dev);
2492 struct nvme_ns_ids *ids = &head->ids;
2493 struct nvme_subsystem *subsys = head->subsys;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002494 int serial_len = sizeof(subsys->serial);
2495 int model_len = sizeof(subsys->model);
Keith Busch118472a2016-02-18 09:57:48 -07002496
Christoph Hellwig002fab02017-11-09 13:50:16 +01002497 if (!uuid_is_null(&ids->uuid))
2498 return sprintf(buf, "uuid.%pU\n", &ids->uuid);
Keith Busch118472a2016-02-18 09:57:48 -07002499
Christoph Hellwig002fab02017-11-09 13:50:16 +01002500 if (memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
2501 return sprintf(buf, "eui.%16phN\n", ids->nguid);
Keith Busch118472a2016-02-18 09:57:48 -07002502
Christoph Hellwig002fab02017-11-09 13:50:16 +01002503 if (memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
2504 return sprintf(buf, "eui.%8phN\n", ids->eui64);
Keith Busch118472a2016-02-18 09:57:48 -07002505
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002506 while (serial_len > 0 && (subsys->serial[serial_len - 1] == ' ' ||
2507 subsys->serial[serial_len - 1] == '\0'))
Keith Busch118472a2016-02-18 09:57:48 -07002508 serial_len--;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002509 while (model_len > 0 && (subsys->model[model_len - 1] == ' ' ||
2510 subsys->model[model_len - 1] == '\0'))
Keith Busch118472a2016-02-18 09:57:48 -07002511 model_len--;
2512
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002513 return sprintf(buf, "nvme.%04x-%*phN-%*phN-%08x\n", subsys->vendor_id,
2514 serial_len, subsys->serial, model_len, subsys->model,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002515 head->ns_id);
Keith Busch118472a2016-02-18 09:57:48 -07002516}
2517static DEVICE_ATTR(wwid, S_IRUGO, wwid_show, NULL);
2518
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002519static ssize_t nguid_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002520 char *buf)
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002521{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002522 return sprintf(buf, "%pU\n", dev_to_ns_head(dev)->ids.nguid);
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002523}
2524static DEVICE_ATTR(nguid, S_IRUGO, nguid_show, NULL);
2525
Keith Busch2b9b6e82015-12-22 10:10:45 -07002526static ssize_t uuid_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002527 char *buf)
Keith Busch2b9b6e82015-12-22 10:10:45 -07002528{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002529 struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids;
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002530
2531 /* For backward compatibility expose the NGUID to userspace if
2532 * we have no UUID set
2533 */
Christoph Hellwig002fab02017-11-09 13:50:16 +01002534 if (uuid_is_null(&ids->uuid)) {
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002535 printk_ratelimited(KERN_WARNING
2536 "No UUID available providing old NGUID\n");
Christoph Hellwig002fab02017-11-09 13:50:16 +01002537 return sprintf(buf, "%pU\n", ids->nguid);
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002538 }
Christoph Hellwig002fab02017-11-09 13:50:16 +01002539 return sprintf(buf, "%pU\n", &ids->uuid);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002540}
2541static DEVICE_ATTR(uuid, S_IRUGO, uuid_show, NULL);
2542
2543static ssize_t eui_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002544 char *buf)
Keith Busch2b9b6e82015-12-22 10:10:45 -07002545{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002546 return sprintf(buf, "%8ph\n", dev_to_ns_head(dev)->ids.eui64);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002547}
2548static DEVICE_ATTR(eui, S_IRUGO, eui_show, NULL);
2549
2550static ssize_t nsid_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002551 char *buf)
Keith Busch2b9b6e82015-12-22 10:10:45 -07002552{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002553 return sprintf(buf, "%d\n", dev_to_ns_head(dev)->ns_id);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002554}
2555static DEVICE_ATTR(nsid, S_IRUGO, nsid_show, NULL);
2556
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002557static struct attribute *nvme_ns_id_attrs[] = {
Keith Busch118472a2016-02-18 09:57:48 -07002558 &dev_attr_wwid.attr,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002559 &dev_attr_uuid.attr,
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002560 &dev_attr_nguid.attr,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002561 &dev_attr_eui.attr,
2562 &dev_attr_nsid.attr,
2563 NULL,
2564};
2565
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002566static umode_t nvme_ns_id_attrs_are_visible(struct kobject *kobj,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002567 struct attribute *a, int n)
2568{
2569 struct device *dev = container_of(kobj, struct device, kobj);
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002570 struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids;
Keith Busch2b9b6e82015-12-22 10:10:45 -07002571
2572 if (a == &dev_attr_uuid.attr) {
Martin Wilcka04b5de2017-09-28 21:33:23 +02002573 if (uuid_is_null(&ids->uuid) &&
Christoph Hellwig002fab02017-11-09 13:50:16 +01002574 !memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002575 return 0;
2576 }
2577 if (a == &dev_attr_nguid.attr) {
Christoph Hellwig002fab02017-11-09 13:50:16 +01002578 if (!memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
Keith Busch2b9b6e82015-12-22 10:10:45 -07002579 return 0;
2580 }
2581 if (a == &dev_attr_eui.attr) {
Christoph Hellwig002fab02017-11-09 13:50:16 +01002582 if (!memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
Keith Busch2b9b6e82015-12-22 10:10:45 -07002583 return 0;
2584 }
2585 return a->mode;
2586}
2587
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002588const struct attribute_group nvme_ns_id_attr_group = {
2589 .attrs = nvme_ns_id_attrs,
2590 .is_visible = nvme_ns_id_attrs_are_visible,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002591};
2592
Ming Lin931e1c22016-02-26 13:24:19 -08002593#define nvme_show_str_function(field) \
Keith Busch779ff7562016-01-12 15:09:31 -07002594static ssize_t field##_show(struct device *dev, \
2595 struct device_attribute *attr, char *buf) \
2596{ \
2597 struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002598 return sprintf(buf, "%.*s\n", \
2599 (int)sizeof(ctrl->subsys->field), ctrl->subsys->field); \
Keith Busch779ff7562016-01-12 15:09:31 -07002600} \
2601static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
2602
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002603nvme_show_str_function(model);
2604nvme_show_str_function(serial);
2605nvme_show_str_function(firmware_rev);
2606
Ming Lin931e1c22016-02-26 13:24:19 -08002607#define nvme_show_int_function(field) \
2608static ssize_t field##_show(struct device *dev, \
2609 struct device_attribute *attr, char *buf) \
2610{ \
2611 struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \
2612 return sprintf(buf, "%d\n", ctrl->field); \
2613} \
2614static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
2615
Ming Lin931e1c22016-02-26 13:24:19 -08002616nvme_show_int_function(cntlid);
Keith Busch779ff7562016-01-12 15:09:31 -07002617
Ming Lin1a353d82016-06-13 16:45:24 +02002618static ssize_t nvme_sysfs_delete(struct device *dev,
2619 struct device_attribute *attr, const char *buf,
2620 size_t count)
2621{
2622 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2623
2624 if (device_remove_file_self(dev, attr))
Christoph Hellwigc5017e82017-10-29 10:44:29 +02002625 nvme_delete_ctrl_sync(ctrl);
Ming Lin1a353d82016-06-13 16:45:24 +02002626 return count;
2627}
2628static DEVICE_ATTR(delete_controller, S_IWUSR, NULL, nvme_sysfs_delete);
2629
2630static ssize_t nvme_sysfs_show_transport(struct device *dev,
2631 struct device_attribute *attr,
2632 char *buf)
2633{
2634 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2635
2636 return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->ops->name);
2637}
2638static DEVICE_ATTR(transport, S_IRUGO, nvme_sysfs_show_transport, NULL);
2639
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002640static ssize_t nvme_sysfs_show_state(struct device *dev,
2641 struct device_attribute *attr,
2642 char *buf)
2643{
2644 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2645 static const char *const state_name[] = {
2646 [NVME_CTRL_NEW] = "new",
2647 [NVME_CTRL_LIVE] = "live",
Jianchao Wang2b1b7e72018-01-06 08:01:58 +08002648 [NVME_CTRL_ADMIN_ONLY] = "only-admin",
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002649 [NVME_CTRL_RESETTING] = "resetting",
2650 [NVME_CTRL_RECONNECTING]= "reconnecting",
2651 [NVME_CTRL_DELETING] = "deleting",
2652 [NVME_CTRL_DEAD] = "dead",
2653 };
2654
2655 if ((unsigned)ctrl->state < ARRAY_SIZE(state_name) &&
2656 state_name[ctrl->state])
2657 return sprintf(buf, "%s\n", state_name[ctrl->state]);
2658
2659 return sprintf(buf, "unknown state\n");
2660}
2661
2662static DEVICE_ATTR(state, S_IRUGO, nvme_sysfs_show_state, NULL);
2663
Ming Lin1a353d82016-06-13 16:45:24 +02002664static ssize_t nvme_sysfs_show_subsysnqn(struct device *dev,
2665 struct device_attribute *attr,
2666 char *buf)
2667{
2668 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2669
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002670 return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->subsys->subnqn);
Ming Lin1a353d82016-06-13 16:45:24 +02002671}
2672static DEVICE_ATTR(subsysnqn, S_IRUGO, nvme_sysfs_show_subsysnqn, NULL);
2673
2674static ssize_t nvme_sysfs_show_address(struct device *dev,
2675 struct device_attribute *attr,
2676 char *buf)
2677{
2678 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2679
2680 return ctrl->ops->get_address(ctrl, buf, PAGE_SIZE);
2681}
2682static DEVICE_ATTR(address, S_IRUGO, nvme_sysfs_show_address, NULL);
2683
Keith Busch779ff7562016-01-12 15:09:31 -07002684static struct attribute *nvme_dev_attrs[] = {
2685 &dev_attr_reset_controller.attr,
Keith Busch9ec3bb22016-04-29 15:45:18 -06002686 &dev_attr_rescan_controller.attr,
Keith Busch779ff7562016-01-12 15:09:31 -07002687 &dev_attr_model.attr,
2688 &dev_attr_serial.attr,
2689 &dev_attr_firmware_rev.attr,
Ming Lin931e1c22016-02-26 13:24:19 -08002690 &dev_attr_cntlid.attr,
Ming Lin1a353d82016-06-13 16:45:24 +02002691 &dev_attr_delete_controller.attr,
2692 &dev_attr_transport.attr,
2693 &dev_attr_subsysnqn.attr,
2694 &dev_attr_address.attr,
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002695 &dev_attr_state.attr,
Keith Busch779ff7562016-01-12 15:09:31 -07002696 NULL
2697};
2698
Ming Lin1a353d82016-06-13 16:45:24 +02002699static umode_t nvme_dev_attrs_are_visible(struct kobject *kobj,
2700 struct attribute *a, int n)
2701{
2702 struct device *dev = container_of(kobj, struct device, kobj);
2703 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2704
Christoph Hellwig49d3d502017-06-26 12:39:03 +02002705 if (a == &dev_attr_delete_controller.attr && !ctrl->ops->delete_ctrl)
2706 return 0;
2707 if (a == &dev_attr_address.attr && !ctrl->ops->get_address)
2708 return 0;
Ming Lin1a353d82016-06-13 16:45:24 +02002709
2710 return a->mode;
2711}
2712
Keith Busch779ff7562016-01-12 15:09:31 -07002713static struct attribute_group nvme_dev_attrs_group = {
Ming Lin1a353d82016-06-13 16:45:24 +02002714 .attrs = nvme_dev_attrs,
2715 .is_visible = nvme_dev_attrs_are_visible,
Keith Busch779ff7562016-01-12 15:09:31 -07002716};
2717
2718static const struct attribute_group *nvme_dev_attr_groups[] = {
2719 &nvme_dev_attrs_group,
2720 NULL,
2721};
2722
Christoph Hellwiged754e52017-11-09 13:50:43 +01002723static struct nvme_ns_head *__nvme_find_ns_head(struct nvme_subsystem *subsys,
2724 unsigned nsid)
2725{
2726 struct nvme_ns_head *h;
2727
2728 lockdep_assert_held(&subsys->lock);
2729
2730 list_for_each_entry(h, &subsys->nsheads, entry) {
2731 if (h->ns_id == nsid && kref_get_unless_zero(&h->ref))
2732 return h;
2733 }
2734
2735 return NULL;
2736}
2737
2738static int __nvme_check_ids(struct nvme_subsystem *subsys,
2739 struct nvme_ns_head *new)
2740{
2741 struct nvme_ns_head *h;
2742
2743 lockdep_assert_held(&subsys->lock);
2744
2745 list_for_each_entry(h, &subsys->nsheads, entry) {
2746 if (nvme_ns_ids_valid(&new->ids) &&
2747 nvme_ns_ids_equal(&new->ids, &h->ids))
2748 return -EINVAL;
2749 }
2750
2751 return 0;
2752}
2753
2754static struct nvme_ns_head *nvme_alloc_ns_head(struct nvme_ctrl *ctrl,
2755 unsigned nsid, struct nvme_id_ns *id)
2756{
2757 struct nvme_ns_head *head;
2758 int ret = -ENOMEM;
2759
2760 head = kzalloc(sizeof(*head), GFP_KERNEL);
2761 if (!head)
2762 goto out;
2763 ret = ida_simple_get(&ctrl->subsys->ns_ida, 1, 0, GFP_KERNEL);
2764 if (ret < 0)
2765 goto out_free_head;
2766 head->instance = ret;
2767 INIT_LIST_HEAD(&head->list);
2768 init_srcu_struct(&head->srcu);
2769 head->subsys = ctrl->subsys;
2770 head->ns_id = nsid;
2771 kref_init(&head->ref);
2772
2773 nvme_report_ns_ids(ctrl, nsid, id, &head->ids);
2774
2775 ret = __nvme_check_ids(ctrl->subsys, head);
2776 if (ret) {
2777 dev_err(ctrl->device,
2778 "duplicate IDs for nsid %d\n", nsid);
2779 goto out_cleanup_srcu;
2780 }
2781
Christoph Hellwig32acab32017-11-02 12:59:30 +01002782 ret = nvme_mpath_alloc_disk(ctrl, head);
2783 if (ret)
2784 goto out_cleanup_srcu;
2785
Christoph Hellwiged754e52017-11-09 13:50:43 +01002786 list_add_tail(&head->entry, &ctrl->subsys->nsheads);
2787 return head;
2788out_cleanup_srcu:
2789 cleanup_srcu_struct(&head->srcu);
2790 ida_simple_remove(&ctrl->subsys->ns_ida, head->instance);
2791out_free_head:
2792 kfree(head);
2793out:
2794 return ERR_PTR(ret);
2795}
2796
2797static int nvme_init_ns_head(struct nvme_ns *ns, unsigned nsid,
2798 struct nvme_id_ns *id, bool *new)
2799{
2800 struct nvme_ctrl *ctrl = ns->ctrl;
2801 bool is_shared = id->nmic & (1 << 0);
2802 struct nvme_ns_head *head = NULL;
2803 int ret = 0;
2804
2805 mutex_lock(&ctrl->subsys->lock);
2806 if (is_shared)
2807 head = __nvme_find_ns_head(ctrl->subsys, nsid);
2808 if (!head) {
2809 head = nvme_alloc_ns_head(ctrl, nsid, id);
2810 if (IS_ERR(head)) {
2811 ret = PTR_ERR(head);
2812 goto out_unlock;
2813 }
2814
2815 *new = true;
2816 } else {
2817 struct nvme_ns_ids ids;
2818
2819 nvme_report_ns_ids(ctrl, nsid, id, &ids);
2820 if (!nvme_ns_ids_equal(&head->ids, &ids)) {
2821 dev_err(ctrl->device,
2822 "IDs don't match for shared namespace %d\n",
2823 nsid);
2824 ret = -EINVAL;
2825 goto out_unlock;
2826 }
2827
2828 *new = false;
2829 }
2830
2831 list_add_tail(&ns->siblings, &head->list);
2832 ns->head = head;
2833
2834out_unlock:
2835 mutex_unlock(&ctrl->subsys->lock);
2836 return ret;
2837}
2838
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002839static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2840{
2841 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2842 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2843
Christoph Hellwiged754e52017-11-09 13:50:43 +01002844 return nsa->head->ns_id - nsb->head->ns_id;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002845}
2846
Keith Busch32f0c4a2016-07-13 11:45:02 -06002847static struct nvme_ns *nvme_find_get_ns(struct nvme_ctrl *ctrl, unsigned nsid)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002848{
Keith Busch32f0c4a2016-07-13 11:45:02 -06002849 struct nvme_ns *ns, *ret = NULL;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002850
Keith Busch32f0c4a2016-07-13 11:45:02 -06002851 mutex_lock(&ctrl->namespaces_mutex);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002852 list_for_each_entry(ns, &ctrl->namespaces, list) {
Christoph Hellwiged754e52017-11-09 13:50:43 +01002853 if (ns->head->ns_id == nsid) {
Christoph Hellwig2dd41222017-10-18 13:20:01 +02002854 if (!kref_get_unless_zero(&ns->kref))
2855 continue;
Keith Busch32f0c4a2016-07-13 11:45:02 -06002856 ret = ns;
2857 break;
2858 }
Christoph Hellwiged754e52017-11-09 13:50:43 +01002859 if (ns->head->ns_id > nsid)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002860 break;
2861 }
Keith Busch32f0c4a2016-07-13 11:45:02 -06002862 mutex_unlock(&ctrl->namespaces_mutex);
2863 return ret;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002864}
2865
Jens Axboef5d11842017-06-27 12:03:06 -06002866static int nvme_setup_streams_ns(struct nvme_ctrl *ctrl, struct nvme_ns *ns)
2867{
2868 struct streams_directive_params s;
2869 int ret;
2870
2871 if (!ctrl->nr_streams)
2872 return 0;
2873
Christoph Hellwiged754e52017-11-09 13:50:43 +01002874 ret = nvme_get_stream_params(ctrl, &s, ns->head->ns_id);
Jens Axboef5d11842017-06-27 12:03:06 -06002875 if (ret)
2876 return ret;
2877
2878 ns->sws = le32_to_cpu(s.sws);
2879 ns->sgs = le16_to_cpu(s.sgs);
2880
2881 if (ns->sws) {
2882 unsigned int bs = 1 << ns->lba_shift;
2883
2884 blk_queue_io_min(ns->queue, bs * ns->sws);
2885 if (ns->sgs)
2886 blk_queue_io_opt(ns->queue, bs * ns->sws * ns->sgs);
2887 }
2888
2889 return 0;
2890}
2891
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002892static void nvme_alloc_ns(struct nvme_ctrl *ctrl, unsigned nsid)
2893{
2894 struct nvme_ns *ns;
2895 struct gendisk *disk;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002896 struct nvme_id_ns *id;
2897 char disk_name[DISK_NAME_LEN];
Christoph Hellwig32acab32017-11-02 12:59:30 +01002898 int node = dev_to_node(ctrl->dev), flags = GENHD_FL_EXT_DEVT;
Christoph Hellwiged754e52017-11-09 13:50:43 +01002899 bool new = true;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002900
2901 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
2902 if (!ns)
2903 return;
2904
2905 ns->queue = blk_mq_init_queue(ctrl->tagset);
2906 if (IS_ERR(ns->queue))
Christoph Hellwiged754e52017-11-09 13:50:43 +01002907 goto out_free_ns;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002908 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
2909 ns->queue->queuedata = ns;
2910 ns->ctrl = ctrl;
2911
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002912 kref_init(&ns->kref);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002913 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002914
2915 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Christoph Hellwigda358252016-03-02 18:07:11 +01002916 nvme_set_queue_limits(ctrl, ns->queue);
Jens Axboef5d11842017-06-27 12:03:06 -06002917 nvme_setup_streams_ns(ctrl, ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002918
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02002919 id = nvme_identify_ns(ctrl, nsid);
2920 if (!id)
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002921 goto out_free_queue;
2922
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02002923 if (id->ncap == 0)
2924 goto out_free_id;
2925
Christoph Hellwiged754e52017-11-09 13:50:43 +01002926 if (nvme_init_ns_head(ns, nsid, id, &new))
2927 goto out_free_id;
2928
Christoph Hellwig32acab32017-11-02 12:59:30 +01002929#ifdef CONFIG_NVME_MULTIPATH
2930 /*
2931 * If multipathing is enabled we need to always use the subsystem
2932 * instance number for numbering our devices to avoid conflicts
2933 * between subsystems that have multiple controllers and thus use
2934 * the multipath-aware subsystem node and those that have a single
2935 * controller and use the controller node directly.
2936 */
2937 if (ns->head->disk) {
2938 sprintf(disk_name, "nvme%dc%dn%d", ctrl->subsys->instance,
2939 ctrl->cntlid, ns->head->instance);
2940 flags = GENHD_FL_HIDDEN;
2941 } else {
2942 sprintf(disk_name, "nvme%dn%d", ctrl->subsys->instance,
2943 ns->head->instance);
2944 }
2945#else
2946 /*
2947 * But without the multipath code enabled, multiple controller per
2948 * subsystems are visible as devices and thus we cannot use the
2949 * subsystem instance.
2950 */
Christoph Hellwiged754e52017-11-09 13:50:43 +01002951 sprintf(disk_name, "nvme%dn%d", ctrl->instance, ns->head->instance);
Christoph Hellwig32acab32017-11-02 12:59:30 +01002952#endif
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02002953
Christoph Hellwig608cc4b2017-09-06 11:45:24 +02002954 if ((ctrl->quirks & NVME_QUIRK_LIGHTNVM) && id->vs[0] == 0x1) {
2955 if (nvme_nvm_register(ns, disk_name, node)) {
2956 dev_warn(ctrl->device, "LightNVM init failure\n");
Christoph Hellwiged754e52017-11-09 13:50:43 +01002957 goto out_unlink_ns;
Christoph Hellwig608cc4b2017-09-06 11:45:24 +02002958 }
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002959 }
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002960
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002961 disk = alloc_disk_node(0, node);
2962 if (!disk)
Christoph Hellwiged754e52017-11-09 13:50:43 +01002963 goto out_unlink_ns;
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002964
2965 disk->fops = &nvme_fops;
2966 disk->private_data = ns;
2967 disk->queue = ns->queue;
Christoph Hellwig32acab32017-11-02 12:59:30 +01002968 disk->flags = flags;
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002969 memcpy(disk->disk_name, disk_name, DISK_NAME_LEN);
2970 ns->disk = disk;
2971
2972 __nvme_revalidate_disk(disk, id);
2973
Keith Busch32f0c4a2016-07-13 11:45:02 -06002974 mutex_lock(&ctrl->namespaces_mutex);
2975 list_add_tail(&ns->list, &ctrl->namespaces);
2976 mutex_unlock(&ctrl->namespaces_mutex);
2977
Christoph Hellwigd22524a2017-10-18 13:25:42 +02002978 nvme_get_ctrl(ctrl);
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002979
2980 kfree(id);
2981
Dan Williams0d52c7562016-06-15 19:44:20 -07002982 device_add_disk(ctrl->device, ns->disk);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002983 if (sysfs_create_group(&disk_to_dev(ns->disk)->kobj,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002984 &nvme_ns_id_attr_group))
Keith Busch2b9b6e82015-12-22 10:10:45 -07002985 pr_warn("%s: failed to create sysfs group for identification\n",
2986 ns->disk->disk_name);
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002987 if (ns->ndev && nvme_nvm_register_sysfs(ns))
2988 pr_warn("%s: failed to register lightnvm sysfs group for identification\n",
2989 ns->disk->disk_name);
Christoph Hellwig32acab32017-11-02 12:59:30 +01002990
2991 if (new)
2992 nvme_mpath_add_disk(ns->head);
Hannes Reineckee9a48032017-11-09 17:57:06 +01002993 nvme_mpath_add_disk_links(ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002994 return;
Christoph Hellwiged754e52017-11-09 13:50:43 +01002995 out_unlink_ns:
2996 mutex_lock(&ctrl->subsys->lock);
2997 list_del_rcu(&ns->siblings);
2998 mutex_unlock(&ctrl->subsys->lock);
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002999 out_free_id:
3000 kfree(id);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003001 out_free_queue:
3002 blk_cleanup_queue(ns->queue);
3003 out_free_ns:
3004 kfree(ns);
3005}
3006
3007static void nvme_ns_remove(struct nvme_ns *ns)
3008{
Keith Busch646017a2016-02-24 09:15:54 -07003009 if (test_and_set_bit(NVME_NS_REMOVING, &ns->flags))
3010 return;
3011
Matias Bjørlingb0b4e092016-09-16 14:25:07 +02003012 if (ns->disk && ns->disk->flags & GENHD_FL_UP) {
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003013 if (blk_get_integrity(ns->disk))
3014 blk_integrity_unregister(ns->disk);
Hannes Reineckee9a48032017-11-09 17:57:06 +01003015 nvme_mpath_remove_disk_links(ns);
Keith Busch2b9b6e82015-12-22 10:10:45 -07003016 sysfs_remove_group(&disk_to_dev(ns->disk)->kobj,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01003017 &nvme_ns_id_attr_group);
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01003018 if (ns->ndev)
3019 nvme_nvm_unregister_sysfs(ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003020 del_gendisk(ns->disk);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003021 blk_cleanup_queue(ns->queue);
3022 }
Keith Busch32f0c4a2016-07-13 11:45:02 -06003023
Christoph Hellwiged754e52017-11-09 13:50:43 +01003024 mutex_lock(&ns->ctrl->subsys->lock);
Christoph Hellwig32acab32017-11-02 12:59:30 +01003025 nvme_mpath_clear_current_path(ns);
Keith Busch9941a862017-11-16 13:36:50 -07003026 list_del_rcu(&ns->siblings);
Christoph Hellwiged754e52017-11-09 13:50:43 +01003027 mutex_unlock(&ns->ctrl->subsys->lock);
3028
Keith Busch32f0c4a2016-07-13 11:45:02 -06003029 mutex_lock(&ns->ctrl->namespaces_mutex);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003030 list_del_init(&ns->list);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003031 mutex_unlock(&ns->ctrl->namespaces_mutex);
3032
Keith Busch9941a862017-11-16 13:36:50 -07003033 synchronize_srcu(&ns->head->srcu);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003034 nvme_put_ns(ns);
3035}
3036
Keith Busch540c8012015-10-22 15:45:06 -06003037static void nvme_validate_ns(struct nvme_ctrl *ctrl, unsigned nsid)
3038{
3039 struct nvme_ns *ns;
3040
Keith Busch32f0c4a2016-07-13 11:45:02 -06003041 ns = nvme_find_get_ns(ctrl, nsid);
Keith Busch540c8012015-10-22 15:45:06 -06003042 if (ns) {
Matias Bjørlingb0b4e092016-09-16 14:25:07 +02003043 if (ns->disk && revalidate_disk(ns->disk))
Keith Busch540c8012015-10-22 15:45:06 -06003044 nvme_ns_remove(ns);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003045 nvme_put_ns(ns);
Keith Busch540c8012015-10-22 15:45:06 -06003046 } else
3047 nvme_alloc_ns(ctrl, nsid);
3048}
3049
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303050static void nvme_remove_invalid_namespaces(struct nvme_ctrl *ctrl,
3051 unsigned nsid)
3052{
3053 struct nvme_ns *ns, *next;
3054
3055 list_for_each_entry_safe(ns, next, &ctrl->namespaces, list) {
Christoph Hellwiged754e52017-11-09 13:50:43 +01003056 if (ns->head->ns_id > nsid)
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303057 nvme_ns_remove(ns);
3058 }
3059}
3060
Keith Busch540c8012015-10-22 15:45:06 -06003061static int nvme_scan_ns_list(struct nvme_ctrl *ctrl, unsigned nn)
3062{
3063 struct nvme_ns *ns;
3064 __le32 *ns_list;
3065 unsigned i, j, nsid, prev = 0, num_lists = DIV_ROUND_UP(nn, 1024);
3066 int ret = 0;
3067
3068 ns_list = kzalloc(0x1000, GFP_KERNEL);
3069 if (!ns_list)
3070 return -ENOMEM;
3071
3072 for (i = 0; i < num_lists; i++) {
3073 ret = nvme_identify_ns_list(ctrl, prev, ns_list);
3074 if (ret)
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303075 goto free;
Keith Busch540c8012015-10-22 15:45:06 -06003076
3077 for (j = 0; j < min(nn, 1024U); j++) {
3078 nsid = le32_to_cpu(ns_list[j]);
3079 if (!nsid)
3080 goto out;
3081
3082 nvme_validate_ns(ctrl, nsid);
3083
3084 while (++prev < nsid) {
Keith Busch32f0c4a2016-07-13 11:45:02 -06003085 ns = nvme_find_get_ns(ctrl, prev);
3086 if (ns) {
Keith Busch540c8012015-10-22 15:45:06 -06003087 nvme_ns_remove(ns);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003088 nvme_put_ns(ns);
3089 }
Keith Busch540c8012015-10-22 15:45:06 -06003090 }
3091 }
3092 nn -= j;
3093 }
3094 out:
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303095 nvme_remove_invalid_namespaces(ctrl, prev);
3096 free:
Keith Busch540c8012015-10-22 15:45:06 -06003097 kfree(ns_list);
3098 return ret;
3099}
3100
Christoph Hellwig5955be22016-04-26 13:51:59 +02003101static void nvme_scan_ns_sequential(struct nvme_ctrl *ctrl, unsigned nn)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003102{
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003103 unsigned i;
3104
Keith Busch540c8012015-10-22 15:45:06 -06003105 for (i = 1; i <= nn; i++)
3106 nvme_validate_ns(ctrl, i);
3107
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303108 nvme_remove_invalid_namespaces(ctrl, nn);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003109}
3110
Christoph Hellwig5955be22016-04-26 13:51:59 +02003111static void nvme_scan_work(struct work_struct *work)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003112{
Christoph Hellwig5955be22016-04-26 13:51:59 +02003113 struct nvme_ctrl *ctrl =
3114 container_of(work, struct nvme_ctrl, scan_work);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003115 struct nvme_id_ctrl *id;
Keith Busch540c8012015-10-22 15:45:06 -06003116 unsigned nn;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003117
Christoph Hellwig5955be22016-04-26 13:51:59 +02003118 if (ctrl->state != NVME_CTRL_LIVE)
3119 return;
3120
Jianchao Wang2b1b7e72018-01-06 08:01:58 +08003121 WARN_ON_ONCE(!ctrl->tagset);
3122
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003123 if (nvme_identify_ctrl(ctrl, &id))
3124 return;
Keith Busch540c8012015-10-22 15:45:06 -06003125
3126 nn = le32_to_cpu(id->nn);
Gabriel Krisman Bertazi8ef20742016-10-19 09:51:05 -06003127 if (ctrl->vs >= NVME_VS(1, 1, 0) &&
Keith Busch540c8012015-10-22 15:45:06 -06003128 !(ctrl->quirks & NVME_QUIRK_IDENTIFY_CNS)) {
3129 if (!nvme_scan_ns_list(ctrl, nn))
3130 goto done;
3131 }
Christoph Hellwig5955be22016-04-26 13:51:59 +02003132 nvme_scan_ns_sequential(ctrl, nn);
Keith Busch540c8012015-10-22 15:45:06 -06003133 done:
Keith Busch32f0c4a2016-07-13 11:45:02 -06003134 mutex_lock(&ctrl->namespaces_mutex);
Keith Busch540c8012015-10-22 15:45:06 -06003135 list_sort(NULL, &ctrl->namespaces, ns_cmp);
Christoph Hellwig69d3b8a2015-12-24 15:27:00 +01003136 mutex_unlock(&ctrl->namespaces_mutex);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003137 kfree(id);
3138}
Christoph Hellwig5955be22016-04-26 13:51:59 +02003139
3140void nvme_queue_scan(struct nvme_ctrl *ctrl)
3141{
3142 /*
Jianchao Wang2b1b7e72018-01-06 08:01:58 +08003143 * Only new queue scan work when admin and IO queues are both alive
Christoph Hellwig5955be22016-04-26 13:51:59 +02003144 */
3145 if (ctrl->state == NVME_CTRL_LIVE)
Sagi Grimbergc669ccd2017-05-04 13:33:14 +03003146 queue_work(nvme_wq, &ctrl->scan_work);
Christoph Hellwig5955be22016-04-26 13:51:59 +02003147}
3148EXPORT_SYMBOL_GPL(nvme_queue_scan);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003149
Keith Busch32f0c4a2016-07-13 11:45:02 -06003150/*
3151 * This function iterates the namespace list unlocked to allow recovery from
3152 * controller failure. It is up to the caller to ensure the namespace list is
3153 * not modified by scan work while this function is executing.
3154 */
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003155void nvme_remove_namespaces(struct nvme_ctrl *ctrl)
3156{
3157 struct nvme_ns *ns, *next;
3158
Keith Busch0ff9d4e2016-05-12 08:37:14 -06003159 /*
3160 * The dead states indicates the controller was not gracefully
3161 * disconnected. In that case, we won't be able to flush any data while
3162 * removing the namespaces' disks; fail all the queues now to avoid
3163 * potentially having to clean up the failed sync later.
3164 */
3165 if (ctrl->state == NVME_CTRL_DEAD)
3166 nvme_kill_queues(ctrl);
3167
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003168 list_for_each_entry_safe(ns, next, &ctrl->namespaces, list)
3169 nvme_ns_remove(ns);
3170}
Ming Lin576d55d2016-02-10 10:03:32 -08003171EXPORT_SYMBOL_GPL(nvme_remove_namespaces);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003172
Keith Busche3d78742017-11-07 15:13:14 -07003173static void nvme_aen_uevent(struct nvme_ctrl *ctrl)
3174{
3175 char *envp[2] = { NULL, NULL };
3176 u32 aen_result = ctrl->aen_result;
3177
3178 ctrl->aen_result = 0;
3179 if (!aen_result)
3180 return;
3181
3182 envp[0] = kasprintf(GFP_KERNEL, "NVME_AEN=%#08x", aen_result);
3183 if (!envp[0])
3184 return;
3185 kobject_uevent_env(&ctrl->device->kobj, KOBJ_CHANGE, envp);
3186 kfree(envp[0]);
3187}
3188
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003189static void nvme_async_event_work(struct work_struct *work)
3190{
3191 struct nvme_ctrl *ctrl =
3192 container_of(work, struct nvme_ctrl, async_event_work);
3193
Keith Busche3d78742017-11-07 15:13:14 -07003194 nvme_aen_uevent(ctrl);
Keith Buschad22c352017-11-07 15:13:12 -07003195 ctrl->ops->submit_async_event(ctrl);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003196}
3197
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303198static bool nvme_ctrl_pp_status(struct nvme_ctrl *ctrl)
3199{
3200
3201 u32 csts;
3202
3203 if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts))
3204 return false;
3205
3206 if (csts == ~0)
3207 return false;
3208
3209 return ((ctrl->ctrl_config & NVME_CC_ENABLE) && (csts & NVME_CSTS_PP));
3210}
3211
3212static void nvme_get_fw_slot_info(struct nvme_ctrl *ctrl)
3213{
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303214 struct nvme_fw_slot_info_log *log;
3215
3216 log = kmalloc(sizeof(*log), GFP_KERNEL);
3217 if (!log)
3218 return;
3219
Keith Buschc627c482017-11-07 10:28:31 -07003220 if (nvme_get_log(ctrl, NVME_LOG_FW_SLOT, log, sizeof(*log)))
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303221 dev_warn(ctrl->device,
3222 "Get FW SLOT INFO log error\n");
3223 kfree(log);
3224}
3225
3226static void nvme_fw_act_work(struct work_struct *work)
3227{
3228 struct nvme_ctrl *ctrl = container_of(work,
3229 struct nvme_ctrl, fw_act_work);
3230 unsigned long fw_act_timeout;
3231
3232 if (ctrl->mtfa)
3233 fw_act_timeout = jiffies +
3234 msecs_to_jiffies(ctrl->mtfa * 100);
3235 else
3236 fw_act_timeout = jiffies +
3237 msecs_to_jiffies(admin_timeout * 1000);
3238
3239 nvme_stop_queues(ctrl);
3240 while (nvme_ctrl_pp_status(ctrl)) {
3241 if (time_after(jiffies, fw_act_timeout)) {
3242 dev_warn(ctrl->device,
3243 "Fw activation timeout, reset controller\n");
3244 nvme_reset_ctrl(ctrl);
3245 break;
3246 }
3247 msleep(100);
3248 }
3249
3250 if (ctrl->state != NVME_CTRL_LIVE)
3251 return;
3252
3253 nvme_start_queues(ctrl);
Minwoo Ima806c6c2017-11-02 18:07:44 +09003254 /* read FW slot information to clear the AER */
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303255 nvme_get_fw_slot_info(ctrl);
3256}
3257
Christoph Hellwig7bf58532016-11-10 07:32:34 -08003258void nvme_complete_async_event(struct nvme_ctrl *ctrl, __le16 status,
3259 union nvme_result *res)
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003260{
Christoph Hellwig7bf58532016-11-10 07:32:34 -08003261 u32 result = le32_to_cpu(res->u32);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003262
Keith Buschad22c352017-11-07 15:13:12 -07003263 if (le16_to_cpu(status) >> 1 != NVME_SC_SUCCESS)
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003264 return;
3265
Keith Busche3d78742017-11-07 15:13:14 -07003266 switch (result & 0x7) {
3267 case NVME_AER_ERROR:
3268 case NVME_AER_SMART:
3269 case NVME_AER_CSS:
3270 case NVME_AER_VS:
3271 ctrl->aen_result = result;
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003272 break;
3273 default:
3274 break;
3275 }
3276
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003277 switch (result & 0xff07) {
3278 case NVME_AER_NOTICE_NS_CHANGED:
3279 dev_info(ctrl->device, "rescanning\n");
3280 nvme_queue_scan(ctrl);
3281 break;
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303282 case NVME_AER_NOTICE_FW_ACT_STARTING:
Sagi Grimberg1a40d972017-09-21 17:01:36 +03003283 queue_work(nvme_wq, &ctrl->fw_act_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303284 break;
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003285 default:
3286 dev_warn(ctrl->device, "async event result %08x\n", result);
3287 }
Sagi Grimbergc669ccd2017-05-04 13:33:14 +03003288 queue_work(nvme_wq, &ctrl->async_event_work);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003289}
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003290EXPORT_SYMBOL_GPL(nvme_complete_async_event);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003291
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003292void nvme_stop_ctrl(struct nvme_ctrl *ctrl)
Ming Lin576d55d2016-02-10 10:03:32 -08003293{
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003294 nvme_stop_keep_alive(ctrl);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003295 flush_work(&ctrl->async_event_work);
Christoph Hellwig5955be22016-04-26 13:51:59 +02003296 flush_work(&ctrl->scan_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303297 cancel_work_sync(&ctrl->fw_act_work);
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003298}
3299EXPORT_SYMBOL_GPL(nvme_stop_ctrl);
Christoph Hellwig5955be22016-04-26 13:51:59 +02003300
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003301void nvme_start_ctrl(struct nvme_ctrl *ctrl)
3302{
3303 if (ctrl->kato)
3304 nvme_start_keep_alive(ctrl);
3305
3306 if (ctrl->queue_count > 1) {
3307 nvme_queue_scan(ctrl);
Keith Buschd99ca602017-11-07 15:13:13 -07003308 queue_work(nvme_wq, &ctrl->async_event_work);
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003309 nvme_start_queues(ctrl);
3310 }
3311}
3312EXPORT_SYMBOL_GPL(nvme_start_ctrl);
3313
3314void nvme_uninit_ctrl(struct nvme_ctrl *ctrl)
3315{
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003316 cdev_device_del(&ctrl->cdev, ctrl->device);
Keith Busch53029b02015-11-28 15:41:02 +01003317}
Ming Lin576d55d2016-02-10 10:03:32 -08003318EXPORT_SYMBOL_GPL(nvme_uninit_ctrl);
Keith Busch53029b02015-11-28 15:41:02 +01003319
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003320static void nvme_free_ctrl(struct device *dev)
Keith Busch53029b02015-11-28 15:41:02 +01003321{
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003322 struct nvme_ctrl *ctrl =
3323 container_of(dev, struct nvme_ctrl, ctrl_device);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003324 struct nvme_subsystem *subsys = ctrl->subsys;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003325
Christoph Hellwig9843f682017-10-18 13:10:01 +02003326 ida_simple_remove(&nvme_instance_ida, ctrl->instance);
Keith Busch84fef622017-11-07 10:28:32 -07003327 kfree(ctrl->effects);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003328
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003329 if (subsys) {
3330 mutex_lock(&subsys->lock);
3331 list_del(&ctrl->subsys_entry);
3332 mutex_unlock(&subsys->lock);
3333 sysfs_remove_link(&subsys->dev.kobj, dev_name(ctrl->device));
3334 }
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003335
3336 ctrl->ops->free_ctrl(ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003337
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003338 if (subsys)
3339 nvme_put_subsystem(subsys);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003340}
3341
3342/*
3343 * Initialize a NVMe controller structures. This needs to be called during
3344 * earliest initialization so that we have the initialized structured around
3345 * during probing.
3346 */
3347int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev,
3348 const struct nvme_ctrl_ops *ops, unsigned long quirks)
3349{
3350 int ret;
3351
Christoph Hellwigbb8d2612016-04-26 13:51:57 +02003352 ctrl->state = NVME_CTRL_NEW;
3353 spin_lock_init(&ctrl->lock);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003354 INIT_LIST_HEAD(&ctrl->namespaces);
Christoph Hellwig69d3b8a2015-12-24 15:27:00 +01003355 mutex_init(&ctrl->namespaces_mutex);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003356 ctrl->dev = dev;
3357 ctrl->ops = ops;
3358 ctrl->quirks = quirks;
Christoph Hellwig5955be22016-04-26 13:51:59 +02003359 INIT_WORK(&ctrl->scan_work, nvme_scan_work);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003360 INIT_WORK(&ctrl->async_event_work, nvme_async_event_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303361 INIT_WORK(&ctrl->fw_act_work, nvme_fw_act_work);
Christoph Hellwigc5017e82017-10-29 10:44:29 +02003362 INIT_WORK(&ctrl->delete_work, nvme_delete_ctrl_work);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003363
Christoph Hellwig9843f682017-10-18 13:10:01 +02003364 ret = ida_simple_get(&nvme_instance_ida, 0, 0, GFP_KERNEL);
3365 if (ret < 0)
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003366 goto out;
Christoph Hellwig9843f682017-10-18 13:10:01 +02003367 ctrl->instance = ret;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003368
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003369 device_initialize(&ctrl->ctrl_device);
3370 ctrl->device = &ctrl->ctrl_device;
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003371 ctrl->device->devt = MKDEV(MAJOR(nvme_chr_devt), ctrl->instance);
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003372 ctrl->device->class = nvme_class;
3373 ctrl->device->parent = ctrl->dev;
3374 ctrl->device->groups = nvme_dev_attr_groups;
3375 ctrl->device->release = nvme_free_ctrl;
3376 dev_set_drvdata(ctrl->device, ctrl);
3377 ret = dev_set_name(ctrl->device, "nvme%d", ctrl->instance);
3378 if (ret)
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003379 goto out_release_instance;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003380
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003381 cdev_init(&ctrl->cdev, &nvme_dev_fops);
3382 ctrl->cdev.owner = ops->module;
3383 ret = cdev_device_add(&ctrl->cdev, ctrl->device);
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003384 if (ret)
3385 goto out_free_name;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003386
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08003387 /*
3388 * Initialize latency tolerance controls. The sysfs files won't
3389 * be visible to userspace unless the device actually supports APST.
3390 */
3391 ctrl->device->power.set_latency_tolerance = nvme_set_latency_tolerance;
3392 dev_pm_qos_update_user_latency_tolerance(ctrl->device,
3393 min(default_ps_max_latency_us, (unsigned long)S32_MAX));
3394
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003395 return 0;
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003396out_free_name:
3397 kfree_const(dev->kobj.name);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003398out_release_instance:
Christoph Hellwig9843f682017-10-18 13:10:01 +02003399 ida_simple_remove(&nvme_instance_ida, ctrl->instance);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003400out:
3401 return ret;
3402}
Ming Lin576d55d2016-02-10 10:03:32 -08003403EXPORT_SYMBOL_GPL(nvme_init_ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003404
Keith Busch69d9a992016-02-24 09:15:56 -07003405/**
3406 * nvme_kill_queues(): Ends all namespace queues
3407 * @ctrl: the dead controller that needs to end
3408 *
3409 * Call this function when the driver determines it is unable to get the
3410 * controller in a state capable of servicing IO.
3411 */
3412void nvme_kill_queues(struct nvme_ctrl *ctrl)
3413{
3414 struct nvme_ns *ns;
3415
Keith Busch32f0c4a2016-07-13 11:45:02 -06003416 mutex_lock(&ctrl->namespaces_mutex);
Ming Lei82654b62017-06-02 16:32:08 +08003417
Ming Lei443bd902017-06-19 10:21:08 +08003418 /* Forcibly unquiesce queues to avoid blocking dispatch */
Scott Bauer7dd1ab12017-07-25 10:27:06 -06003419 if (ctrl->admin_q)
3420 blk_mq_unquiesce_queue(ctrl->admin_q);
Ming Lei443bd902017-06-19 10:21:08 +08003421
Keith Busch32f0c4a2016-07-13 11:45:02 -06003422 list_for_each_entry(ns, &ctrl->namespaces, list) {
Keith Busch69d9a992016-02-24 09:15:56 -07003423 /*
3424 * Revalidating a dead namespace sets capacity to 0. This will
3425 * end buffered writers dirtying pages that can't be synced.
3426 */
Keith Buschf33447b2017-02-10 18:15:51 -05003427 if (!ns->disk || test_and_set_bit(NVME_NS_DEAD, &ns->flags))
3428 continue;
3429 revalidate_disk(ns->disk);
Keith Busch69d9a992016-02-24 09:15:56 -07003430 blk_set_queue_dying(ns->queue);
Ming Lei806f0262017-05-22 23:05:03 +08003431
Ming Lei443bd902017-06-19 10:21:08 +08003432 /* Forcibly unquiesce queues to avoid blocking dispatch */
3433 blk_mq_unquiesce_queue(ns->queue);
Keith Busch69d9a992016-02-24 09:15:56 -07003434 }
Keith Busch32f0c4a2016-07-13 11:45:02 -06003435 mutex_unlock(&ctrl->namespaces_mutex);
Keith Busch69d9a992016-02-24 09:15:56 -07003436}
Linus Torvalds237045f2016-03-18 17:13:31 -07003437EXPORT_SYMBOL_GPL(nvme_kill_queues);
Keith Busch69d9a992016-02-24 09:15:56 -07003438
Keith Busch302ad8c2017-03-01 14:22:12 -05003439void nvme_unfreeze(struct nvme_ctrl *ctrl)
3440{
3441 struct nvme_ns *ns;
3442
3443 mutex_lock(&ctrl->namespaces_mutex);
3444 list_for_each_entry(ns, &ctrl->namespaces, list)
3445 blk_mq_unfreeze_queue(ns->queue);
3446 mutex_unlock(&ctrl->namespaces_mutex);
3447}
3448EXPORT_SYMBOL_GPL(nvme_unfreeze);
3449
3450void nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout)
3451{
3452 struct nvme_ns *ns;
3453
3454 mutex_lock(&ctrl->namespaces_mutex);
3455 list_for_each_entry(ns, &ctrl->namespaces, list) {
3456 timeout = blk_mq_freeze_queue_wait_timeout(ns->queue, timeout);
3457 if (timeout <= 0)
3458 break;
3459 }
3460 mutex_unlock(&ctrl->namespaces_mutex);
3461}
3462EXPORT_SYMBOL_GPL(nvme_wait_freeze_timeout);
3463
3464void nvme_wait_freeze(struct nvme_ctrl *ctrl)
3465{
3466 struct nvme_ns *ns;
3467
3468 mutex_lock(&ctrl->namespaces_mutex);
3469 list_for_each_entry(ns, &ctrl->namespaces, list)
3470 blk_mq_freeze_queue_wait(ns->queue);
3471 mutex_unlock(&ctrl->namespaces_mutex);
3472}
3473EXPORT_SYMBOL_GPL(nvme_wait_freeze);
3474
3475void nvme_start_freeze(struct nvme_ctrl *ctrl)
3476{
3477 struct nvme_ns *ns;
3478
3479 mutex_lock(&ctrl->namespaces_mutex);
3480 list_for_each_entry(ns, &ctrl->namespaces, list)
Ming Lei1671d522017-03-27 20:06:57 +08003481 blk_freeze_queue_start(ns->queue);
Keith Busch302ad8c2017-03-01 14:22:12 -05003482 mutex_unlock(&ctrl->namespaces_mutex);
3483}
3484EXPORT_SYMBOL_GPL(nvme_start_freeze);
3485
Keith Busch25646262016-01-04 09:10:57 -07003486void nvme_stop_queues(struct nvme_ctrl *ctrl)
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003487{
3488 struct nvme_ns *ns;
3489
Keith Busch32f0c4a2016-07-13 11:45:02 -06003490 mutex_lock(&ctrl->namespaces_mutex);
Bart Van Asschea6eaa882016-10-28 17:23:40 -07003491 list_for_each_entry(ns, &ctrl->namespaces, list)
Bart Van Assche3174dd32016-10-28 17:23:19 -07003492 blk_mq_quiesce_queue(ns->queue);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003493 mutex_unlock(&ctrl->namespaces_mutex);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003494}
Ming Lin576d55d2016-02-10 10:03:32 -08003495EXPORT_SYMBOL_GPL(nvme_stop_queues);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003496
Keith Busch25646262016-01-04 09:10:57 -07003497void nvme_start_queues(struct nvme_ctrl *ctrl)
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003498{
3499 struct nvme_ns *ns;
3500
Keith Busch32f0c4a2016-07-13 11:45:02 -06003501 mutex_lock(&ctrl->namespaces_mutex);
Sagi Grimberg8d7b8fa2017-07-04 18:16:58 +03003502 list_for_each_entry(ns, &ctrl->namespaces, list)
Ming Leif6601742017-06-06 23:22:04 +08003503 blk_mq_unquiesce_queue(ns->queue);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003504 mutex_unlock(&ctrl->namespaces_mutex);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003505}
Ming Lin576d55d2016-02-10 10:03:32 -08003506EXPORT_SYMBOL_GPL(nvme_start_queues);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003507
Sagi Grimberg31b84462017-10-11 12:53:07 +03003508int nvme_reinit_tagset(struct nvme_ctrl *ctrl, struct blk_mq_tag_set *set)
3509{
3510 if (!ctrl->ops->reinit_request)
3511 return 0;
3512
3513 return blk_mq_tagset_iter(set, set->driver_data,
3514 ctrl->ops->reinit_request);
3515}
3516EXPORT_SYMBOL_GPL(nvme_reinit_tagset);
3517
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003518int __init nvme_core_init(void)
3519{
3520 int result;
3521
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003522 nvme_wq = alloc_workqueue("nvme-wq",
3523 WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
3524 if (!nvme_wq)
3525 return -ENOMEM;
3526
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003527 result = alloc_chrdev_region(&nvme_chr_devt, 0, NVME_MINORS, "nvme");
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003528 if (result < 0)
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003529 goto destroy_wq;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003530
3531 nvme_class = class_create(THIS_MODULE, "nvme");
3532 if (IS_ERR(nvme_class)) {
3533 result = PTR_ERR(nvme_class);
3534 goto unregister_chrdev;
3535 }
3536
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003537 nvme_subsys_class = class_create(THIS_MODULE, "nvme-subsystem");
3538 if (IS_ERR(nvme_subsys_class)) {
3539 result = PTR_ERR(nvme_subsys_class);
3540 goto destroy_class;
3541 }
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003542 return 0;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003543
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003544destroy_class:
3545 class_destroy(nvme_class);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003546unregister_chrdev:
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003547 unregister_chrdev_region(nvme_chr_devt, NVME_MINORS);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003548destroy_wq:
3549 destroy_workqueue(nvme_wq);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003550 return result;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003551}
3552
3553void nvme_core_exit(void)
3554{
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003555 ida_destroy(&nvme_subsystems_ida);
3556 class_destroy(nvme_subsys_class);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003557 class_destroy(nvme_class);
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003558 unregister_chrdev_region(nvme_chr_devt, NVME_MINORS);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003559 destroy_workqueue(nvme_wq);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003560}
Ming Lin576d55d2016-02-10 10:03:32 -08003561
3562MODULE_LICENSE("GPL");
3563MODULE_VERSION("1.0");
3564module_init(nvme_core_init);
3565module_exit(nvme_core_exit);