blob: 7b3bbc1a9ac49bcb0d2fc94615c9064f4951cd1d [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);
74
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);
82
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) {
235 case NVME_CTRL_LIVE:
236 switch (old_state) {
Christoph Hellwig7d2e8002016-06-13 16:45:22 +0200237 case NVME_CTRL_NEW:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200238 case NVME_CTRL_RESETTING:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900239 case NVME_CTRL_RECONNECTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200240 changed = true;
241 /* FALLTHRU */
242 default:
243 break;
244 }
245 break;
246 case NVME_CTRL_RESETTING:
247 switch (old_state) {
248 case NVME_CTRL_NEW:
249 case NVME_CTRL_LIVE:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900250 changed = true;
251 /* FALLTHRU */
252 default:
253 break;
254 }
255 break;
256 case NVME_CTRL_RECONNECTING:
257 switch (old_state) {
258 case NVME_CTRL_LIVE:
James Smart3cec7f92017-10-25 16:43:13 -0700259 case NVME_CTRL_RESETTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200260 changed = true;
261 /* FALLTHRU */
262 default:
263 break;
264 }
265 break;
266 case NVME_CTRL_DELETING:
267 switch (old_state) {
268 case NVME_CTRL_LIVE:
269 case NVME_CTRL_RESETTING:
Christoph Hellwigdef61ec2016-07-06 21:55:49 +0900270 case NVME_CTRL_RECONNECTING:
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200271 changed = true;
272 /* FALLTHRU */
273 default:
274 break;
275 }
276 break;
Keith Busch0ff9d4e2016-05-12 08:37:14 -0600277 case NVME_CTRL_DEAD:
278 switch (old_state) {
279 case NVME_CTRL_DELETING:
280 changed = true;
281 /* FALLTHRU */
282 default:
283 break;
284 }
285 break;
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200286 default:
287 break;
288 }
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200289
290 if (changed)
291 ctrl->state = new_state;
292
Christoph Hellwig0a72bbb2017-08-22 11:42:24 +0200293 spin_unlock_irqrestore(&ctrl->lock, flags);
Christoph Hellwig32acab32017-11-02 12:59:30 +0100294 if (changed && ctrl->state == NVME_CTRL_LIVE)
295 nvme_kick_requeue_lists(ctrl);
Christoph Hellwigbb8d2612016-04-26 13:51:57 +0200296 return changed;
297}
298EXPORT_SYMBOL_GPL(nvme_change_ctrl_state);
299
Christoph Hellwiged754e52017-11-09 13:50:43 +0100300static void nvme_free_ns_head(struct kref *ref)
301{
302 struct nvme_ns_head *head =
303 container_of(ref, struct nvme_ns_head, ref);
304
Christoph Hellwig32acab32017-11-02 12:59:30 +0100305 nvme_mpath_remove_disk(head);
Christoph Hellwiged754e52017-11-09 13:50:43 +0100306 ida_simple_remove(&head->subsys->ns_ida, head->instance);
307 list_del_init(&head->entry);
308 cleanup_srcu_struct(&head->srcu);
309 kfree(head);
310}
311
312static void nvme_put_ns_head(struct nvme_ns_head *head)
313{
314 kref_put(&head->ref, nvme_free_ns_head);
315}
316
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100317static void nvme_free_ns(struct kref *kref)
318{
319 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
320
Matias Bjørlingb0b4e092016-09-16 14:25:07 +0200321 if (ns->ndev)
322 nvme_nvm_unregister(ns);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100323
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100324 put_disk(ns->disk);
Christoph Hellwiged754e52017-11-09 13:50:43 +0100325 nvme_put_ns_head(ns->head);
Keith Busch075790e2016-02-24 09:15:53 -0700326 nvme_put_ctrl(ns->ctrl);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100327 kfree(ns);
328}
329
Christoph Hellwig5bae7f72015-11-28 15:39:07 +0100330static void nvme_put_ns(struct nvme_ns *ns)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100331{
332 kref_put(&ns->kref, nvme_free_ns);
333}
334
Christoph Hellwig41609822015-11-20 09:00:02 +0100335struct request *nvme_alloc_request(struct request_queue *q,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800336 struct nvme_command *cmd, blk_mq_req_flags_t flags, int qid)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100337{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100338 unsigned op = nvme_is_write(cmd) ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100339 struct request *req;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100340
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200341 if (qid == NVME_QID_ANY) {
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100342 req = blk_mq_alloc_request(q, op, flags);
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200343 } else {
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100344 req = blk_mq_alloc_request_hctx(q, op, flags,
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200345 qid ? qid - 1 : 0);
346 }
Christoph Hellwig21d34712015-11-26 09:08:36 +0100347 if (IS_ERR(req))
Christoph Hellwig41609822015-11-20 09:00:02 +0100348 return req;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100349
Christoph Hellwig21d34712015-11-26 09:08:36 +0100350 req->cmd_flags |= REQ_FAILFAST_DRIVER;
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800351 nvme_req(req)->cmd = cmd;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100352
Christoph Hellwig41609822015-11-20 09:00:02 +0100353 return req;
354}
Ming Lin576d55d2016-02-10 10:03:32 -0800355EXPORT_SYMBOL_GPL(nvme_alloc_request);
Christoph Hellwig41609822015-11-20 09:00:02 +0100356
Jens Axboef5d11842017-06-27 12:03:06 -0600357static int nvme_toggle_streams(struct nvme_ctrl *ctrl, bool enable)
358{
359 struct nvme_command c;
360
361 memset(&c, 0, sizeof(c));
362
363 c.directive.opcode = nvme_admin_directive_send;
Arnav Dawn62346ea2017-07-12 16:11:53 +0530364 c.directive.nsid = cpu_to_le32(NVME_NSID_ALL);
Jens Axboef5d11842017-06-27 12:03:06 -0600365 c.directive.doper = NVME_DIR_SND_ID_OP_ENABLE;
366 c.directive.dtype = NVME_DIR_IDENTIFY;
367 c.directive.tdtype = NVME_DIR_STREAMS;
368 c.directive.endir = enable ? NVME_DIR_ENDIR : 0;
369
370 return nvme_submit_sync_cmd(ctrl->admin_q, &c, NULL, 0);
371}
372
373static int nvme_disable_streams(struct nvme_ctrl *ctrl)
374{
375 return nvme_toggle_streams(ctrl, false);
376}
377
378static int nvme_enable_streams(struct nvme_ctrl *ctrl)
379{
380 return nvme_toggle_streams(ctrl, true);
381}
382
383static int nvme_get_stream_params(struct nvme_ctrl *ctrl,
384 struct streams_directive_params *s, u32 nsid)
385{
386 struct nvme_command c;
387
388 memset(&c, 0, sizeof(c));
389 memset(s, 0, sizeof(*s));
390
391 c.directive.opcode = nvme_admin_directive_recv;
392 c.directive.nsid = cpu_to_le32(nsid);
Kwan (Hingkwan) Huen-SSIa082b422017-08-09 11:26:29 -0700393 c.directive.numd = cpu_to_le32((sizeof(*s) >> 2) - 1);
Jens Axboef5d11842017-06-27 12:03:06 -0600394 c.directive.doper = NVME_DIR_RCV_ST_OP_PARAM;
395 c.directive.dtype = NVME_DIR_STREAMS;
396
397 return nvme_submit_sync_cmd(ctrl->admin_q, &c, s, sizeof(*s));
398}
399
400static int nvme_configure_directives(struct nvme_ctrl *ctrl)
401{
402 struct streams_directive_params s;
403 int ret;
404
405 if (!(ctrl->oacs & NVME_CTRL_OACS_DIRECTIVES))
406 return 0;
407 if (!streams)
408 return 0;
409
410 ret = nvme_enable_streams(ctrl);
411 if (ret)
412 return ret;
413
Arnav Dawn62346ea2017-07-12 16:11:53 +0530414 ret = nvme_get_stream_params(ctrl, &s, NVME_NSID_ALL);
Jens Axboef5d11842017-06-27 12:03:06 -0600415 if (ret)
416 return ret;
417
418 ctrl->nssa = le16_to_cpu(s.nssa);
419 if (ctrl->nssa < BLK_MAX_WRITE_HINTS - 1) {
420 dev_info(ctrl->device, "too few streams (%u) available\n",
421 ctrl->nssa);
422 nvme_disable_streams(ctrl);
423 return 0;
424 }
425
426 ctrl->nr_streams = min_t(unsigned, ctrl->nssa, BLK_MAX_WRITE_HINTS - 1);
427 dev_info(ctrl->device, "Using %u streams\n", ctrl->nr_streams);
428 return 0;
429}
430
431/*
432 * Check if 'req' has a write hint associated with it. If it does, assign
433 * a valid namespace stream to the write.
434 */
435static void nvme_assign_write_stream(struct nvme_ctrl *ctrl,
436 struct request *req, u16 *control,
437 u32 *dsmgmt)
438{
439 enum rw_hint streamid = req->write_hint;
440
441 if (streamid == WRITE_LIFE_NOT_SET || streamid == WRITE_LIFE_NONE)
442 streamid = 0;
443 else {
444 streamid--;
445 if (WARN_ON_ONCE(streamid > ctrl->nr_streams))
446 return;
447
448 *control |= NVME_RW_DTYPE_STREAMS;
449 *dsmgmt |= streamid << 16;
450 }
451
452 if (streamid < ARRAY_SIZE(req->q->write_hints))
453 req->q->write_hints[streamid] += blk_rq_bytes(req) >> 9;
454}
455
Ming Lin8093f7c2016-04-12 13:10:14 -0600456static inline void nvme_setup_flush(struct nvme_ns *ns,
457 struct nvme_command *cmnd)
458{
459 memset(cmnd, 0, sizeof(*cmnd));
460 cmnd->common.opcode = nvme_cmd_flush;
Christoph Hellwiged754e52017-11-09 13:50:43 +0100461 cmnd->common.nsid = cpu_to_le32(ns->head->ns_id);
Ming Lin8093f7c2016-04-12 13:10:14 -0600462}
463
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200464static blk_status_t nvme_setup_discard(struct nvme_ns *ns, struct request *req,
Ming Lin8093f7c2016-04-12 13:10:14 -0600465 struct nvme_command *cmnd)
466{
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100467 unsigned short segments = blk_rq_nr_discard_segments(req), n = 0;
Ming Lin8093f7c2016-04-12 13:10:14 -0600468 struct nvme_dsm_range *range;
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100469 struct bio *bio;
Ming Lin8093f7c2016-04-12 13:10:14 -0600470
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100471 range = kmalloc_array(segments, sizeof(*range), GFP_ATOMIC);
Ming Lin8093f7c2016-04-12 13:10:14 -0600472 if (!range)
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200473 return BLK_STS_RESOURCE;
Ming Lin8093f7c2016-04-12 13:10:14 -0600474
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100475 __rq_for_each_bio(bio, req) {
476 u64 slba = nvme_block_nr(ns, bio->bi_iter.bi_sector);
477 u32 nlb = bio->bi_iter.bi_size >> ns->lba_shift;
478
479 range[n].cattr = cpu_to_le32(0);
480 range[n].nlb = cpu_to_le32(nlb);
481 range[n].slba = cpu_to_le64(slba);
482 n++;
483 }
484
485 if (WARN_ON_ONCE(n != segments)) {
486 kfree(range);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200487 return BLK_STS_IOERR;
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100488 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600489
490 memset(cmnd, 0, sizeof(*cmnd));
491 cmnd->dsm.opcode = nvme_cmd_dsm;
Christoph Hellwiged754e52017-11-09 13:50:43 +0100492 cmnd->dsm.nsid = cpu_to_le32(ns->head->ns_id);
Christoph Hellwigf1dd03a2017-03-31 17:00:05 +0200493 cmnd->dsm.nr = cpu_to_le32(segments - 1);
Ming Lin8093f7c2016-04-12 13:10:14 -0600494 cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
495
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700496 req->special_vec.bv_page = virt_to_page(range);
497 req->special_vec.bv_offset = offset_in_page(range);
Christoph Hellwigb35ba012017-02-08 14:46:50 +0100498 req->special_vec.bv_len = sizeof(*range) * segments;
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700499 req->rq_flags |= RQF_SPECIAL_PAYLOAD;
Ming Lin8093f7c2016-04-12 13:10:14 -0600500
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200501 return BLK_STS_OK;
Ming Lin8093f7c2016-04-12 13:10:14 -0600502}
Ming Lin8093f7c2016-04-12 13:10:14 -0600503
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200504static inline blk_status_t nvme_setup_rw(struct nvme_ns *ns,
505 struct request *req, struct nvme_command *cmnd)
Ming Lin8093f7c2016-04-12 13:10:14 -0600506{
Jens Axboef5d11842017-06-27 12:03:06 -0600507 struct nvme_ctrl *ctrl = ns->ctrl;
Ming Lin8093f7c2016-04-12 13:10:14 -0600508 u16 control = 0;
509 u32 dsmgmt = 0;
510
511 if (req->cmd_flags & REQ_FUA)
512 control |= NVME_RW_FUA;
513 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
514 control |= NVME_RW_LR;
515
516 if (req->cmd_flags & REQ_RAHEAD)
517 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
518
519 memset(cmnd, 0, sizeof(*cmnd));
520 cmnd->rw.opcode = (rq_data_dir(req) ? nvme_cmd_write : nvme_cmd_read);
Christoph Hellwiged754e52017-11-09 13:50:43 +0100521 cmnd->rw.nsid = cpu_to_le32(ns->head->ns_id);
Ming Lin8093f7c2016-04-12 13:10:14 -0600522 cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, blk_rq_pos(req)));
523 cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
524
Jens Axboef5d11842017-06-27 12:03:06 -0600525 if (req_op(req) == REQ_OP_WRITE && ctrl->nr_streams)
526 nvme_assign_write_stream(ctrl, req, &control, &dsmgmt);
527
Ming Lin8093f7c2016-04-12 13:10:14 -0600528 if (ns->ms) {
Christoph Hellwig715ea9e2017-11-07 17:27:34 +0100529 /*
530 * If formated with metadata, the block layer always provides a
531 * metadata buffer if CONFIG_BLK_DEV_INTEGRITY is enabled. Else
532 * we enable the PRACT bit for protection information or set the
533 * namespace capacity to zero to prevent any I/O.
534 */
535 if (!blk_integrity_rq(req)) {
536 if (WARN_ON_ONCE(!nvme_ns_has_pi(ns)))
537 return BLK_STS_NOTSUPP;
538 control |= NVME_RW_PRINFO_PRACT;
539 }
540
Ming Lin8093f7c2016-04-12 13:10:14 -0600541 switch (ns->pi_type) {
542 case NVME_NS_DPS_PI_TYPE3:
543 control |= NVME_RW_PRINFO_PRCHK_GUARD;
544 break;
545 case NVME_NS_DPS_PI_TYPE1:
546 case NVME_NS_DPS_PI_TYPE2:
547 control |= NVME_RW_PRINFO_PRCHK_GUARD |
548 NVME_RW_PRINFO_PRCHK_REF;
549 cmnd->rw.reftag = cpu_to_le32(
550 nvme_block_nr(ns, blk_rq_pos(req)));
551 break;
552 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600553 }
554
555 cmnd->rw.control = cpu_to_le16(control);
556 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200557 return 0;
Ming Lin8093f7c2016-04-12 13:10:14 -0600558}
559
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200560blk_status_t nvme_setup_cmd(struct nvme_ns *ns, struct request *req,
Ming Lin8093f7c2016-04-12 13:10:14 -0600561 struct nvme_command *cmd)
562{
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200563 blk_status_t ret = BLK_STS_OK;
Ming Lin8093f7c2016-04-12 13:10:14 -0600564
Christoph Hellwig987f6992017-04-05 19:18:08 +0200565 if (!(req->rq_flags & RQF_DONTPREP)) {
Christoph Hellwig44e44b22017-04-05 19:18:11 +0200566 nvme_req(req)->retries = 0;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200567 nvme_req(req)->flags = 0;
Christoph Hellwig987f6992017-04-05 19:18:08 +0200568 req->rq_flags |= RQF_DONTPREP;
569 }
570
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100571 switch (req_op(req)) {
572 case REQ_OP_DRV_IN:
573 case REQ_OP_DRV_OUT:
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800574 memcpy(cmd, nvme_req(req)->cmd, sizeof(*cmd));
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100575 break;
576 case REQ_OP_FLUSH:
Ming Lin8093f7c2016-04-12 13:10:14 -0600577 nvme_setup_flush(ns, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100578 break;
Christoph Hellwige850fd12017-04-05 19:21:13 +0200579 case REQ_OP_WRITE_ZEROES:
580 /* currently only aliased to deallocate for a few ctrls: */
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100581 case REQ_OP_DISCARD:
Ming Lin8093f7c2016-04-12 13:10:14 -0600582 ret = nvme_setup_discard(ns, req, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100583 break;
584 case REQ_OP_READ:
585 case REQ_OP_WRITE:
Christoph Hellwigebe6d872017-06-12 18:36:32 +0200586 ret = nvme_setup_rw(ns, req, cmd);
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100587 break;
588 default:
589 WARN_ON_ONCE(1);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200590 return BLK_STS_IOERR;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100591 }
Ming Lin8093f7c2016-04-12 13:10:14 -0600592
James Smart721b3912016-10-21 23:33:34 +0300593 cmd->common.command_id = req->tag;
Ming Lin8093f7c2016-04-12 13:10:14 -0600594 return ret;
595}
596EXPORT_SYMBOL_GPL(nvme_setup_cmd);
597
Christoph Hellwig41609822015-11-20 09:00:02 +0100598/*
599 * Returns 0 on success. If the result is negative, it's a Linux error code;
600 * if the result is positive, it's an NVM Express status code
601 */
602int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800603 union nvme_result *result, void *buffer, unsigned bufflen,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800604 unsigned timeout, int qid, int at_head,
605 blk_mq_req_flags_t flags)
Christoph Hellwig41609822015-11-20 09:00:02 +0100606{
607 struct request *req;
608 int ret;
609
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200610 req = nvme_alloc_request(q, cmd, flags, qid);
Christoph Hellwig41609822015-11-20 09:00:02 +0100611 if (IS_ERR(req))
612 return PTR_ERR(req);
613
614 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
615
Christoph Hellwig21d34712015-11-26 09:08:36 +0100616 if (buffer && bufflen) {
617 ret = blk_rq_map_kern(q, req, buffer, bufflen, GFP_KERNEL);
618 if (ret)
619 goto out;
Christoph Hellwig41609822015-11-20 09:00:02 +0100620 }
621
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200622 blk_execute_rq(req->q, NULL, req, at_head);
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800623 if (result)
624 *result = nvme_req(req)->result;
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200625 if (nvme_req(req)->flags & NVME_REQ_CANCELLED)
626 ret = -EINTR;
627 else
628 ret = nvme_req(req)->status;
Christoph Hellwig41609822015-11-20 09:00:02 +0100629 out:
630 blk_mq_free_request(req);
631 return ret;
632}
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200633EXPORT_SYMBOL_GPL(__nvme_submit_sync_cmd);
Christoph Hellwig41609822015-11-20 09:00:02 +0100634
635int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
636 void *buffer, unsigned bufflen)
637{
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200638 return __nvme_submit_sync_cmd(q, cmd, NULL, buffer, bufflen, 0,
639 NVME_QID_ANY, 0, 0);
Christoph Hellwig41609822015-11-20 09:00:02 +0100640}
Ming Lin576d55d2016-02-10 10:03:32 -0800641EXPORT_SYMBOL_GPL(nvme_submit_sync_cmd);
Christoph Hellwig41609822015-11-20 09:00:02 +0100642
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400643static void *nvme_add_user_metadata(struct bio *bio, void __user *ubuf,
644 unsigned len, u32 seed, bool write)
645{
646 struct bio_integrity_payload *bip;
647 int ret = -ENOMEM;
648 void *buf;
649
650 buf = kmalloc(len, GFP_KERNEL);
651 if (!buf)
652 goto out;
653
654 ret = -EFAULT;
655 if (write && copy_from_user(buf, ubuf, len))
656 goto out_free_meta;
657
658 bip = bio_integrity_alloc(bio, GFP_KERNEL, 1);
659 if (IS_ERR(bip)) {
660 ret = PTR_ERR(bip);
661 goto out_free_meta;
662 }
663
664 bip->bip_iter.bi_size = len;
665 bip->bip_iter.bi_sector = seed;
666 ret = bio_integrity_add_page(bio, virt_to_page(buf), len,
667 offset_in_page(buf));
668 if (ret == len)
669 return buf;
670 ret = -ENOMEM;
671out_free_meta:
672 kfree(buf);
673out:
674 return ERR_PTR(ret);
675}
676
Keith Busch63263d62017-08-29 17:46:04 -0400677static int nvme_submit_user_cmd(struct request_queue *q,
Keith Busch485783c2017-08-29 17:46:03 -0400678 struct nvme_command *cmd, void __user *ubuffer,
679 unsigned bufflen, void __user *meta_buffer, unsigned meta_len,
680 u32 meta_seed, u32 *result, unsigned timeout)
Christoph Hellwig41609822015-11-20 09:00:02 +0100681{
Christoph Hellwig7a5abb42016-06-06 23:20:49 +0200682 bool write = nvme_is_write(cmd);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600683 struct nvme_ns *ns = q->queuedata;
684 struct gendisk *disk = ns ? ns->disk : NULL;
Christoph Hellwig41609822015-11-20 09:00:02 +0100685 struct request *req;
Keith Busch0b7f1f22015-10-23 09:47:28 -0600686 struct bio *bio = NULL;
687 void *meta = NULL;
Christoph Hellwig41609822015-11-20 09:00:02 +0100688 int ret;
689
Christoph Hellwigeb71f432016-06-13 16:45:23 +0200690 req = nvme_alloc_request(q, cmd, 0, NVME_QID_ANY);
Christoph Hellwig41609822015-11-20 09:00:02 +0100691 if (IS_ERR(req))
692 return PTR_ERR(req);
693
694 req->timeout = timeout ? timeout : ADMIN_TIMEOUT;
695
696 if (ubuffer && bufflen) {
Christoph Hellwig21d34712015-11-26 09:08:36 +0100697 ret = blk_rq_map_user(q, req, NULL, ubuffer, bufflen,
698 GFP_KERNEL);
699 if (ret)
700 goto out;
701 bio = req->bio;
Christoph Hellwig74d46992017-08-23 19:10:32 +0200702 bio->bi_disk = disk;
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400703 if (disk && meta_buffer && meta_len) {
704 meta = nvme_add_user_metadata(bio, meta_buffer, meta_len,
705 meta_seed, write);
706 if (IS_ERR(meta)) {
707 ret = PTR_ERR(meta);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600708 goto out_unmap;
709 }
Keith Busch0b7f1f22015-10-23 09:47:28 -0600710 }
711 }
Christoph Hellwig1cad6562017-08-29 17:46:01 -0400712
Keith Busch0b7f1f22015-10-23 09:47:28 -0600713 blk_execute_rq(req->q, disk, req, 0);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +0200714 if (nvme_req(req)->flags & NVME_REQ_CANCELLED)
715 ret = -EINTR;
716 else
717 ret = nvme_req(req)->status;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100718 if (result)
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800719 *result = le32_to_cpu(nvme_req(req)->result.u32);
Keith Busch0b7f1f22015-10-23 09:47:28 -0600720 if (meta && !ret && !write) {
721 if (copy_to_user(meta_buffer, meta, meta_len))
722 ret = -EFAULT;
723 }
Keith Busch0b7f1f22015-10-23 09:47:28 -0600724 kfree(meta);
725 out_unmap:
Christoph Hellwig74d46992017-08-23 19:10:32 +0200726 if (bio)
Keith Busch0b7f1f22015-10-23 09:47:28 -0600727 blk_rq_unmap_user(bio);
Christoph Hellwig21d34712015-11-26 09:08:36 +0100728 out:
729 blk_mq_free_request(req);
730 return ret;
731}
732
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200733static void nvme_keep_alive_end_io(struct request *rq, blk_status_t status)
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200734{
735 struct nvme_ctrl *ctrl = rq->end_io_data;
736
737 blk_mq_free_request(rq);
738
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200739 if (status) {
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200740 dev_err(ctrl->device,
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200741 "failed nvme_keep_alive_end_io error=%d\n",
742 status);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200743 return;
744 }
745
746 schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ);
747}
748
749static int nvme_keep_alive(struct nvme_ctrl *ctrl)
750{
751 struct nvme_command c;
752 struct request *rq;
753
754 memset(&c, 0, sizeof(c));
755 c.common.opcode = nvme_admin_keep_alive;
756
757 rq = nvme_alloc_request(ctrl->admin_q, &c, BLK_MQ_REQ_RESERVED,
758 NVME_QID_ANY);
759 if (IS_ERR(rq))
760 return PTR_ERR(rq);
761
762 rq->timeout = ctrl->kato * HZ;
763 rq->end_io_data = ctrl;
764
765 blk_execute_rq_nowait(rq->q, NULL, rq, 0, nvme_keep_alive_end_io);
766
767 return 0;
768}
769
770static void nvme_keep_alive_work(struct work_struct *work)
771{
772 struct nvme_ctrl *ctrl = container_of(to_delayed_work(work),
773 struct nvme_ctrl, ka_work);
774
775 if (nvme_keep_alive(ctrl)) {
776 /* allocation failure, reset the controller */
777 dev_err(ctrl->device, "keep-alive failed\n");
Christoph Hellwig39bdc592017-06-12 18:21:19 +0200778 nvme_reset_ctrl(ctrl);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200779 return;
780 }
781}
782
783void nvme_start_keep_alive(struct nvme_ctrl *ctrl)
784{
785 if (unlikely(ctrl->kato == 0))
786 return;
787
788 INIT_DELAYED_WORK(&ctrl->ka_work, nvme_keep_alive_work);
789 schedule_delayed_work(&ctrl->ka_work, ctrl->kato * HZ);
790}
791EXPORT_SYMBOL_GPL(nvme_start_keep_alive);
792
793void nvme_stop_keep_alive(struct nvme_ctrl *ctrl)
794{
795 if (unlikely(ctrl->kato == 0))
796 return;
797
798 cancel_delayed_work_sync(&ctrl->ka_work);
799}
800EXPORT_SYMBOL_GPL(nvme_stop_keep_alive);
801
Keith Busch3f7f25a92017-06-20 15:09:56 -0400802static int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100803{
804 struct nvme_command c = { };
805 int error;
806
807 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
808 c.identify.opcode = nvme_admin_identify;
Parav Pandit986994a2017-01-26 17:17:28 +0200809 c.identify.cns = NVME_ID_CNS_CTRL;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100810
811 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
812 if (!*id)
813 return -ENOMEM;
814
815 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
816 sizeof(struct nvme_id_ctrl));
817 if (error)
818 kfree(*id);
819 return error;
820}
821
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200822static int nvme_identify_ns_descs(struct nvme_ctrl *ctrl, unsigned nsid,
Christoph Hellwig002fab02017-11-09 13:50:16 +0100823 struct nvme_ns_ids *ids)
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200824{
825 struct nvme_command c = { };
826 int status;
827 void *data;
828 int pos;
829 int len;
830
831 c.identify.opcode = nvme_admin_identify;
832 c.identify.nsid = cpu_to_le32(nsid);
833 c.identify.cns = NVME_ID_CNS_NS_DESC_LIST;
834
835 data = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL);
836 if (!data)
837 return -ENOMEM;
838
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200839 status = nvme_submit_sync_cmd(ctrl->admin_q, &c, data,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200840 NVME_IDENTIFY_DATA_SIZE);
841 if (status)
842 goto free_data;
843
844 for (pos = 0; pos < NVME_IDENTIFY_DATA_SIZE; pos += len) {
845 struct nvme_ns_id_desc *cur = data + pos;
846
847 if (cur->nidl == 0)
848 break;
849
850 switch (cur->nidt) {
851 case NVME_NIDT_EUI64:
852 if (cur->nidl != NVME_NIDT_EUI64_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200853 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200854 "ctrl returned bogus length: %d for NVME_NIDT_EUI64\n",
855 cur->nidl);
856 goto free_data;
857 }
858 len = NVME_NIDT_EUI64_LEN;
Christoph Hellwig002fab02017-11-09 13:50:16 +0100859 memcpy(ids->eui64, data + pos + sizeof(*cur), len);
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200860 break;
861 case NVME_NIDT_NGUID:
862 if (cur->nidl != NVME_NIDT_NGUID_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200863 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200864 "ctrl returned bogus length: %d for NVME_NIDT_NGUID\n",
865 cur->nidl);
866 goto free_data;
867 }
868 len = NVME_NIDT_NGUID_LEN;
Christoph Hellwig002fab02017-11-09 13:50:16 +0100869 memcpy(ids->nguid, data + pos + sizeof(*cur), len);
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200870 break;
871 case NVME_NIDT_UUID:
872 if (cur->nidl != NVME_NIDT_UUID_LEN) {
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200873 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200874 "ctrl returned bogus length: %d for NVME_NIDT_UUID\n",
875 cur->nidl);
876 goto free_data;
877 }
878 len = NVME_NIDT_UUID_LEN;
Christoph Hellwig002fab02017-11-09 13:50:16 +0100879 uuid_copy(&ids->uuid, data + pos + sizeof(*cur));
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +0200880 break;
881 default:
882 /* Skip unnkown types */
883 len = cur->nidl;
884 break;
885 }
886
887 len += sizeof(*cur);
888 }
889free_data:
890 kfree(data);
891 return status;
892}
893
Keith Busch540c8012015-10-22 15:45:06 -0600894static int nvme_identify_ns_list(struct nvme_ctrl *dev, unsigned nsid, __le32 *ns_list)
895{
896 struct nvme_command c = { };
897
898 c.identify.opcode = nvme_admin_identify;
Parav Pandit986994a2017-01-26 17:17:28 +0200899 c.identify.cns = NVME_ID_CNS_NS_ACTIVE_LIST;
Keith Busch540c8012015-10-22 15:45:06 -0600900 c.identify.nsid = cpu_to_le32(nsid);
901 return nvme_submit_sync_cmd(dev->admin_q, &c, ns_list, 0x1000);
902}
903
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200904static struct nvme_id_ns *nvme_identify_ns(struct nvme_ctrl *ctrl,
905 unsigned nsid)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100906{
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200907 struct nvme_id_ns *id;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100908 struct nvme_command c = { };
909 int error;
910
911 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
Max Gurtovoy778f0672017-01-26 17:17:27 +0200912 c.identify.opcode = nvme_admin_identify;
913 c.identify.nsid = cpu_to_le32(nsid);
Parav Pandit986994a2017-01-26 17:17:28 +0200914 c.identify.cns = NVME_ID_CNS_NS;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100915
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200916 id = kmalloc(sizeof(*id), GFP_KERNEL);
917 if (!id)
918 return NULL;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100919
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +0200920 error = nvme_submit_sync_cmd(ctrl->admin_q, &c, id, sizeof(*id));
921 if (error) {
922 dev_warn(ctrl->device, "Identify namespace failed\n");
923 kfree(id);
924 return NULL;
925 }
926
927 return id;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100928}
929
Keith Busch3f7f25a92017-06-20 15:09:56 -0400930static int nvme_set_features(struct nvme_ctrl *dev, unsigned fid, unsigned dword11,
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700931 void *buffer, size_t buflen, u32 *result)
Christoph Hellwig21d34712015-11-26 09:08:36 +0100932{
933 struct nvme_command c;
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800934 union nvme_result res;
Christoph Hellwig1cb3cce2016-02-29 15:59:47 +0100935 int ret;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100936
937 memset(&c, 0, sizeof(c));
938 c.features.opcode = nvme_admin_set_features;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100939 c.features.fid = cpu_to_le32(fid);
940 c.features.dword11 = cpu_to_le32(dword11);
941
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800942 ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res,
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700943 buffer, buflen, 0, NVME_QID_ANY, 0, 0);
Andy Lutomirski9b47f77a2016-08-24 03:52:12 -0700944 if (ret >= 0 && result)
Christoph Hellwigd49187e2016-11-10 07:32:33 -0800945 *result = le32_to_cpu(res.u32);
Christoph Hellwig1cb3cce2016-02-29 15:59:47 +0100946 return ret;
Christoph Hellwig21d34712015-11-26 09:08:36 +0100947}
948
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100949int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count)
950{
951 u32 q_count = (*count - 1) | ((*count - 1) << 16);
952 u32 result;
953 int status, nr_io_queues;
954
Andy Lutomirski1a6fe742016-09-16 11:16:10 -0700955 status = nvme_set_features(ctrl, NVME_FEAT_NUM_QUEUES, q_count, NULL, 0,
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100956 &result);
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +0200957 if (status < 0)
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100958 return status;
959
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +0200960 /*
961 * Degraded controllers might return an error when setting the queue
962 * count. We still want to be able to bring them online and offer
963 * access to the admin queue, as that might be only way to fix them up.
964 */
965 if (status > 0) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +0200966 dev_err(ctrl->device, "Could not set queue count (%d)\n", status);
Christoph Hellwigf5fa90d2016-06-06 23:20:50 +0200967 *count = 0;
968 } else {
969 nr_io_queues = min(result & 0xffff, result >> 16) + 1;
970 *count = min(*count, nr_io_queues);
971 }
972
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100973 return 0;
974}
Ming Lin576d55d2016-02-10 10:03:32 -0800975EXPORT_SYMBOL_GPL(nvme_set_queue_count);
Christoph Hellwig9a0be7a2015-11-26 11:09:06 +0100976
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100977static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
978{
979 struct nvme_user_io io;
980 struct nvme_command c;
981 unsigned length, meta_len;
982 void __user *metadata;
983
984 if (copy_from_user(&io, uio, sizeof(io)))
985 return -EFAULT;
Keith Busch63088ec2016-02-24 09:15:57 -0700986 if (io.flags)
987 return -EINVAL;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +0100988
989 switch (io.opcode) {
990 case nvme_cmd_write:
991 case nvme_cmd_read:
992 case nvme_cmd_compare:
993 break;
994 default:
995 return -EINVAL;
996 }
997
998 length = (io.nblocks + 1) << ns->lba_shift;
999 meta_len = (io.nblocks + 1) * ns->ms;
1000 metadata = (void __user *)(uintptr_t)io.metadata;
1001
1002 if (ns->ext) {
1003 length += meta_len;
1004 meta_len = 0;
1005 } else if (meta_len) {
1006 if ((io.metadata & 3) || !io.metadata)
1007 return -EINVAL;
1008 }
1009
1010 memset(&c, 0, sizeof(c));
1011 c.rw.opcode = io.opcode;
1012 c.rw.flags = io.flags;
Christoph Hellwiged754e52017-11-09 13:50:43 +01001013 c.rw.nsid = cpu_to_le32(ns->head->ns_id);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001014 c.rw.slba = cpu_to_le64(io.slba);
1015 c.rw.length = cpu_to_le16(io.nblocks);
1016 c.rw.control = cpu_to_le16(io.control);
1017 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1018 c.rw.reftag = cpu_to_le32(io.reftag);
1019 c.rw.apptag = cpu_to_le16(io.apptag);
1020 c.rw.appmask = cpu_to_le16(io.appmask);
1021
Keith Busch63263d62017-08-29 17:46:04 -04001022 return nvme_submit_user_cmd(ns->queue, &c,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001023 (void __user *)(uintptr_t)io.addr, length,
1024 metadata, meta_len, io.slba, NULL, 0);
1025}
1026
Keith Busch84fef622017-11-07 10:28:32 -07001027static u32 nvme_known_admin_effects(u8 opcode)
1028{
1029 switch (opcode) {
1030 case nvme_admin_format_nvm:
1031 return NVME_CMD_EFFECTS_CSUPP | NVME_CMD_EFFECTS_LBCC |
1032 NVME_CMD_EFFECTS_CSE_MASK;
1033 case nvme_admin_sanitize_nvm:
1034 return NVME_CMD_EFFECTS_CSE_MASK;
1035 default:
1036 break;
1037 }
1038 return 0;
1039}
1040
1041static u32 nvme_passthru_start(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
1042 u8 opcode)
1043{
1044 u32 effects = 0;
1045
1046 if (ns) {
1047 if (ctrl->effects)
1048 effects = le32_to_cpu(ctrl->effects->iocs[opcode]);
1049 if (effects & ~NVME_CMD_EFFECTS_CSUPP)
1050 dev_warn(ctrl->device,
1051 "IO command:%02x has unhandled effects:%08x\n",
1052 opcode, effects);
1053 return 0;
1054 }
1055
1056 if (ctrl->effects)
1057 effects = le32_to_cpu(ctrl->effects->iocs[opcode]);
1058 else
1059 effects = nvme_known_admin_effects(opcode);
1060
1061 /*
1062 * For simplicity, IO to all namespaces is quiesced even if the command
1063 * effects say only one namespace is affected.
1064 */
1065 if (effects & (NVME_CMD_EFFECTS_LBCC | NVME_CMD_EFFECTS_CSE_MASK)) {
1066 nvme_start_freeze(ctrl);
1067 nvme_wait_freeze(ctrl);
1068 }
1069 return effects;
1070}
1071
1072static void nvme_update_formats(struct nvme_ctrl *ctrl)
1073{
1074 struct nvme_ns *ns;
1075
1076 mutex_lock(&ctrl->namespaces_mutex);
1077 list_for_each_entry(ns, &ctrl->namespaces, list) {
1078 if (ns->disk && nvme_revalidate_disk(ns->disk))
1079 nvme_ns_remove(ns);
1080 }
1081 mutex_unlock(&ctrl->namespaces_mutex);
1082}
1083
1084static void nvme_passthru_end(struct nvme_ctrl *ctrl, u32 effects)
1085{
1086 /*
1087 * Revalidate LBA changes prior to unfreezing. This is necessary to
1088 * prevent memory corruption if a logical block size was changed by
1089 * this command.
1090 */
1091 if (effects & NVME_CMD_EFFECTS_LBCC)
1092 nvme_update_formats(ctrl);
1093 if (effects & (NVME_CMD_EFFECTS_LBCC | NVME_CMD_EFFECTS_CSE_MASK))
1094 nvme_unfreeze(ctrl);
1095 if (effects & NVME_CMD_EFFECTS_CCC)
1096 nvme_init_identify(ctrl);
1097 if (effects & (NVME_CMD_EFFECTS_NIC | NVME_CMD_EFFECTS_NCC))
1098 nvme_queue_scan(ctrl);
1099}
1100
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01001101static int nvme_user_cmd(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001102 struct nvme_passthru_cmd __user *ucmd)
1103{
1104 struct nvme_passthru_cmd cmd;
1105 struct nvme_command c;
1106 unsigned timeout = 0;
Keith Busch84fef622017-11-07 10:28:32 -07001107 u32 effects;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001108 int status;
1109
1110 if (!capable(CAP_SYS_ADMIN))
1111 return -EACCES;
1112 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
1113 return -EFAULT;
Keith Busch63088ec2016-02-24 09:15:57 -07001114 if (cmd.flags)
1115 return -EINVAL;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001116
1117 memset(&c, 0, sizeof(c));
1118 c.common.opcode = cmd.opcode;
1119 c.common.flags = cmd.flags;
1120 c.common.nsid = cpu_to_le32(cmd.nsid);
1121 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1122 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1123 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1124 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1125 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1126 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1127 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1128 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1129
1130 if (cmd.timeout_ms)
1131 timeout = msecs_to_jiffies(cmd.timeout_ms);
1132
Keith Busch84fef622017-11-07 10:28:32 -07001133 effects = nvme_passthru_start(ctrl, ns, cmd.opcode);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001134 status = nvme_submit_user_cmd(ns ? ns->queue : ctrl->admin_q, &c,
Arnd Bergmannd1ea7be2015-12-08 16:22:17 +01001135 (void __user *)(uintptr_t)cmd.addr, cmd.data_len,
Keith Busch63263d62017-08-29 17:46:04 -04001136 (void __user *)(uintptr_t)cmd.metadata, cmd.metadata,
1137 0, &cmd.result, timeout);
Keith Busch84fef622017-11-07 10:28:32 -07001138 nvme_passthru_end(ctrl, effects);
1139
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001140 if (status >= 0) {
1141 if (put_user(cmd.result, &ucmd->result))
1142 return -EFAULT;
1143 }
1144
1145 return status;
1146}
1147
Christoph Hellwig32acab32017-11-02 12:59:30 +01001148/*
1149 * Issue ioctl requests on the first available path. Note that unlike normal
1150 * block layer requests we will not retry failed request on another controller.
1151 */
1152static struct nvme_ns *nvme_get_ns_from_disk(struct gendisk *disk,
1153 struct nvme_ns_head **head, int *srcu_idx)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001154{
Christoph Hellwig32acab32017-11-02 12:59:30 +01001155#ifdef CONFIG_NVME_MULTIPATH
1156 if (disk->fops == &nvme_ns_head_ops) {
1157 *head = disk->private_data;
1158 *srcu_idx = srcu_read_lock(&(*head)->srcu);
1159 return nvme_find_path(*head);
1160 }
1161#endif
1162 *head = NULL;
1163 *srcu_idx = -1;
1164 return disk->private_data;
1165}
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001166
Christoph Hellwig32acab32017-11-02 12:59:30 +01001167static void nvme_put_ns_from_disk(struct nvme_ns_head *head, int idx)
1168{
1169 if (head)
1170 srcu_read_unlock(&head->srcu, idx);
1171}
1172
1173static int nvme_ns_ioctl(struct nvme_ns *ns, unsigned cmd, unsigned long arg)
1174{
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001175 switch (cmd) {
1176 case NVME_IOCTL_ID:
1177 force_successful_syscall_return();
Christoph Hellwiged754e52017-11-09 13:50:43 +01001178 return ns->head->ns_id;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001179 case NVME_IOCTL_ADMIN_CMD:
1180 return nvme_user_cmd(ns->ctrl, NULL, (void __user *)arg);
1181 case NVME_IOCTL_IO_CMD:
1182 return nvme_user_cmd(ns->ctrl, ns, (void __user *)arg);
1183 case NVME_IOCTL_SUBMIT_IO:
1184 return nvme_submit_io(ns, (void __user *)arg);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001185 default:
Matias Bjørling84d4add2017-01-31 13:17:16 +01001186#ifdef CONFIG_NVM
1187 if (ns->ndev)
1188 return nvme_nvm_ioctl(ns, cmd, arg);
1189#endif
Scott Bauera98e58e52017-02-03 12:50:32 -07001190 if (is_sed_ioctl(cmd))
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001191 return sed_ioctl(ns->ctrl->opal_dev, cmd,
Scott Bauere225c202017-02-14 17:29:36 -07001192 (void __user *) arg);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001193 return -ENOTTY;
1194 }
1195}
1196
Christoph Hellwig32acab32017-11-02 12:59:30 +01001197static int nvme_ioctl(struct block_device *bdev, fmode_t mode,
1198 unsigned int cmd, unsigned long arg)
1199{
1200 struct nvme_ns_head *head = NULL;
1201 struct nvme_ns *ns;
1202 int srcu_idx, ret;
1203
1204 ns = nvme_get_ns_from_disk(bdev->bd_disk, &head, &srcu_idx);
1205 if (unlikely(!ns))
1206 ret = -EWOULDBLOCK;
1207 else
1208 ret = nvme_ns_ioctl(ns, cmd, arg);
1209 nvme_put_ns_from_disk(head, srcu_idx);
1210 return ret;
1211}
1212
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001213static int nvme_open(struct block_device *bdev, fmode_t mode)
1214{
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001215 struct nvme_ns *ns = bdev->bd_disk->private_data;
1216
Christoph Hellwig32acab32017-11-02 12:59:30 +01001217#ifdef CONFIG_NVME_MULTIPATH
1218 /* should never be called due to GENHD_FL_HIDDEN */
1219 if (WARN_ON_ONCE(ns->head->disk))
1220 return -ENXIO;
1221#endif
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001222 if (!kref_get_unless_zero(&ns->kref))
1223 return -ENXIO;
Christoph Hellwigc6424a92017-10-18 13:22:00 +02001224 return 0;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001225}
1226
1227static void nvme_release(struct gendisk *disk, fmode_t mode)
1228{
Christoph Hellwiga6a51492017-10-18 16:59:25 +02001229 nvme_put_ns(disk->private_data);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001230}
1231
1232static int nvme_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1233{
1234 /* some standard values */
1235 geo->heads = 1 << 6;
1236 geo->sectors = 1 << 5;
1237 geo->cylinders = get_capacity(bdev->bd_disk) >> 11;
1238 return 0;
1239}
1240
1241#ifdef CONFIG_BLK_DEV_INTEGRITY
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001242static void nvme_init_integrity(struct gendisk *disk, u16 ms, u8 pi_type)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001243{
1244 struct blk_integrity integrity;
1245
Jay Freyenseefa9a89f2016-07-20 21:26:16 -06001246 memset(&integrity, 0, sizeof(integrity));
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001247 switch (pi_type) {
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001248 case NVME_NS_DPS_PI_TYPE3:
1249 integrity.profile = &t10_pi_type3_crc;
Nicholas Bellingerba36c212016-04-09 03:04:42 +00001250 integrity.tag_size = sizeof(u16) + sizeof(u32);
1251 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001252 break;
1253 case NVME_NS_DPS_PI_TYPE1:
1254 case NVME_NS_DPS_PI_TYPE2:
1255 integrity.profile = &t10_pi_type1_crc;
Nicholas Bellingerba36c212016-04-09 03:04:42 +00001256 integrity.tag_size = sizeof(u16);
1257 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001258 break;
1259 default:
1260 integrity.profile = NULL;
1261 break;
1262 }
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001263 integrity.tuple_size = ms;
1264 blk_integrity_register(disk, &integrity);
1265 blk_queue_max_integrity_segments(disk->queue, 1);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001266}
1267#else
Christoph Hellwig39b7baa2017-11-02 21:28:53 +03001268static void nvme_init_integrity(struct gendisk *disk, u16 ms, u8 pi_type)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001269{
1270}
1271#endif /* CONFIG_BLK_DEV_INTEGRITY */
1272
Scott Bauer6b8190d2017-06-15 10:44:30 -06001273static void nvme_set_chunk_size(struct nvme_ns *ns)
1274{
1275 u32 chunk_size = (((u32)ns->noiob) << (ns->lba_shift - 9));
1276 blk_queue_chunk_sectors(ns->queue, rounddown_pow_of_two(chunk_size));
1277}
1278
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001279static void nvme_config_discard(struct nvme_ctrl *ctrl,
1280 unsigned stream_alignment, struct request_queue *queue)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001281{
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001282 u32 size = queue_logical_block_size(queue);
1283
1284 if (stream_alignment)
1285 size *= stream_alignment;
Keith Busch08095e72016-03-04 13:15:17 -07001286
Christoph Hellwigb35ba012017-02-08 14:46:50 +01001287 BUILD_BUG_ON(PAGE_SIZE / sizeof(struct nvme_dsm_range) <
1288 NVME_DSM_MAX_RANGES);
1289
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001290 queue->limits.discard_alignment = size;
1291 queue->limits.discard_granularity = size;
Jens Axboef5d11842017-06-27 12:03:06 -06001292
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001293 blk_queue_max_discard_sectors(queue, UINT_MAX);
1294 blk_queue_max_discard_segments(queue, NVME_DSM_MAX_RANGES);
1295 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, queue);
Christoph Hellwige850fd12017-04-05 19:21:13 +02001296
1297 if (ctrl->quirks & NVME_QUIRK_DEALLOCATE_ZEROES)
Christoph Hellwig30e5e922017-11-02 21:28:54 +03001298 blk_queue_max_write_zeroes_sectors(queue, UINT_MAX);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001299}
1300
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001301static void nvme_report_ns_ids(struct nvme_ctrl *ctrl, unsigned int nsid,
Christoph Hellwig002fab02017-11-09 13:50:16 +01001302 struct nvme_id_ns *id, struct nvme_ns_ids *ids)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001303{
Christoph Hellwig002fab02017-11-09 13:50:16 +01001304 memset(ids, 0, sizeof(*ids));
1305
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001306 if (ctrl->vs >= NVME_VS(1, 1, 0))
Christoph Hellwig002fab02017-11-09 13:50:16 +01001307 memcpy(ids->eui64, id->eui64, sizeof(id->eui64));
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001308 if (ctrl->vs >= NVME_VS(1, 2, 0))
Christoph Hellwig002fab02017-11-09 13:50:16 +01001309 memcpy(ids->nguid, id->nguid, sizeof(id->nguid));
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001310 if (ctrl->vs >= NVME_VS(1, 3, 0)) {
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +02001311 /* Don't treat error as fatal we potentially
1312 * already have a NGUID or EUI-64
1313 */
Christoph Hellwig002fab02017-11-09 13:50:16 +01001314 if (nvme_identify_ns_descs(ctrl, nsid, ids))
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001315 dev_warn(ctrl->device,
Johannes Thumshirn3b22ba22017-06-07 11:45:34 +02001316 "%s: Identify Descriptors failed\n", __func__);
1317 }
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001318}
1319
Christoph Hellwiged754e52017-11-09 13:50:43 +01001320static bool nvme_ns_ids_valid(struct nvme_ns_ids *ids)
1321{
1322 return !uuid_is_null(&ids->uuid) ||
1323 memchr_inv(ids->nguid, 0, sizeof(ids->nguid)) ||
1324 memchr_inv(ids->eui64, 0, sizeof(ids->eui64));
1325}
1326
Christoph Hellwig002fab02017-11-09 13:50:16 +01001327static bool nvme_ns_ids_equal(struct nvme_ns_ids *a, struct nvme_ns_ids *b)
1328{
1329 return uuid_equal(&a->uuid, &b->uuid) &&
1330 memcmp(&a->nguid, &b->nguid, sizeof(a->nguid)) == 0 &&
1331 memcmp(&a->eui64, &b->eui64, sizeof(a->eui64)) == 0;
1332}
1333
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001334static void nvme_update_disk_info(struct gendisk *disk,
1335 struct nvme_ns *ns, struct nvme_id_ns *id)
1336{
1337 sector_t capacity = le64_to_cpup(&id->nsze) << (ns->lba_shift - 9);
1338 unsigned stream_alignment = 0;
1339
1340 if (ns->ctrl->nr_streams && ns->sws && ns->sgs)
1341 stream_alignment = ns->sws * ns->sgs;
1342
1343 blk_mq_freeze_queue(disk->queue);
1344 blk_integrity_unregister(disk);
1345
1346 blk_queue_logical_block_size(disk->queue, 1 << ns->lba_shift);
1347 if (ns->ms && !ns->ext &&
1348 (ns->ctrl->ops->flags & NVME_F_METADATA_SUPPORTED))
1349 nvme_init_integrity(disk, ns->ms, ns->pi_type);
Christoph Hellwig715ea9e2017-11-07 17:27:34 +01001350 if (ns->ms && !nvme_ns_has_pi(ns) && !blk_get_integrity(disk))
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001351 capacity = 0;
1352 set_capacity(disk, capacity);
1353
1354 if (ns->ctrl->oncs & NVME_CTRL_ONCS_DSM)
1355 nvme_config_discard(ns->ctrl, stream_alignment, disk->queue);
1356 blk_mq_unfreeze_queue(disk->queue);
1357}
1358
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001359static void __nvme_revalidate_disk(struct gendisk *disk, struct nvme_id_ns *id)
1360{
1361 struct nvme_ns *ns = disk->private_data;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001362
1363 /*
1364 * If identify namespace failed, use default 512 byte block size so
1365 * block layer can use before failing read/write for 0 capacity.
1366 */
Christoph Hellwigc81bfba2017-05-20 15:14:45 +02001367 ns->lba_shift = id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ds;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001368 if (ns->lba_shift == 0)
1369 ns->lba_shift = 9;
Scott Bauer6b8190d2017-06-15 10:44:30 -06001370 ns->noiob = le16_to_cpu(id->noiob);
Christoph Hellwigb5be3b32017-11-02 21:28:52 +03001371 ns->ext = ns->ms && (id->flbas & NVME_NS_FLBAS_META_EXT);
1372 ns->ms = le16_to_cpu(id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ms);
1373 /* the PI implementation requires metadata equal t10 pi tuple size */
1374 if (ns->ms == sizeof(struct t10_pi_tuple))
1375 ns->pi_type = id->dps & NVME_NS_DPS_PI_MASK;
1376 else
1377 ns->pi_type = 0;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001378
Christoph Hellwig6e78f212017-11-02 21:28:55 +03001379 if (ns->noiob)
1380 nvme_set_chunk_size(ns);
Christoph Hellwig24b0b582017-11-02 21:28:56 +03001381 nvme_update_disk_info(disk, ns, id);
Christoph Hellwig32acab32017-11-02 12:59:30 +01001382#ifdef CONFIG_NVME_MULTIPATH
1383 if (ns->head->disk)
1384 nvme_update_disk_info(ns->head->disk, ns, id);
1385#endif
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001386}
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001387
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001388static int nvme_revalidate_disk(struct gendisk *disk)
1389{
1390 struct nvme_ns *ns = disk->private_data;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001391 struct nvme_ctrl *ctrl = ns->ctrl;
1392 struct nvme_id_ns *id;
Christoph Hellwig002fab02017-11-09 13:50:16 +01001393 struct nvme_ns_ids ids;
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001394 int ret = 0;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001395
1396 if (test_bit(NVME_NS_DEAD, &ns->flags)) {
1397 set_capacity(disk, 0);
1398 return -ENODEV;
1399 }
1400
Christoph Hellwiged754e52017-11-09 13:50:43 +01001401 id = nvme_identify_ns(ctrl, ns->head->ns_id);
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001402 if (!id)
1403 return -ENODEV;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02001404
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001405 if (id->ncap == 0) {
1406 ret = -ENODEV;
1407 goto out;
1408 }
1409
Christoph Hellwiged754e52017-11-09 13:50:43 +01001410 nvme_report_ns_ids(ctrl, ns->head->ns_id, id, &ids);
1411 if (!nvme_ns_ids_equal(&ns->head->ids, &ids)) {
Christoph Hellwig1d5df6a2017-08-17 14:10:00 +02001412 dev_err(ctrl->device,
Christoph Hellwiged754e52017-11-09 13:50:43 +01001413 "identifiers changed for nsid %d\n", ns->head->ns_id);
Christoph Hellwig1d5df6a2017-08-17 14:10:00 +02001414 ret = -ENODEV;
1415 }
1416
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001417out:
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001418 kfree(id);
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02001419 return ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001420}
1421
1422static char nvme_pr_type(enum pr_type type)
1423{
1424 switch (type) {
1425 case PR_WRITE_EXCLUSIVE:
1426 return 1;
1427 case PR_EXCLUSIVE_ACCESS:
1428 return 2;
1429 case PR_WRITE_EXCLUSIVE_REG_ONLY:
1430 return 3;
1431 case PR_EXCLUSIVE_ACCESS_REG_ONLY:
1432 return 4;
1433 case PR_WRITE_EXCLUSIVE_ALL_REGS:
1434 return 5;
1435 case PR_EXCLUSIVE_ACCESS_ALL_REGS:
1436 return 6;
1437 default:
1438 return 0;
1439 }
1440};
1441
1442static int nvme_pr_command(struct block_device *bdev, u32 cdw10,
1443 u64 key, u64 sa_key, u8 op)
1444{
Christoph Hellwig32acab32017-11-02 12:59:30 +01001445 struct nvme_ns_head *head = NULL;
1446 struct nvme_ns *ns;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001447 struct nvme_command c;
Christoph Hellwig32acab32017-11-02 12:59:30 +01001448 int srcu_idx, ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001449 u8 data[16] = { 0, };
1450
1451 put_unaligned_le64(key, &data[0]);
1452 put_unaligned_le64(sa_key, &data[8]);
1453
1454 memset(&c, 0, sizeof(c));
1455 c.common.opcode = op;
Christoph Hellwig32acab32017-11-02 12:59:30 +01001456 c.common.nsid = cpu_to_le32(head->ns_id);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001457 c.common.cdw10[0] = cpu_to_le32(cdw10);
1458
Christoph Hellwig32acab32017-11-02 12:59:30 +01001459 ns = nvme_get_ns_from_disk(bdev->bd_disk, &head, &srcu_idx);
1460 if (unlikely(!ns))
1461 ret = -EWOULDBLOCK;
1462 else
1463 ret = nvme_submit_sync_cmd(ns->queue, &c, data, 16);
1464 nvme_put_ns_from_disk(head, srcu_idx);
1465 return ret;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001466}
1467
1468static int nvme_pr_register(struct block_device *bdev, u64 old,
1469 u64 new, unsigned flags)
1470{
1471 u32 cdw10;
1472
1473 if (flags & ~PR_FL_IGNORE_KEY)
1474 return -EOPNOTSUPP;
1475
1476 cdw10 = old ? 2 : 0;
1477 cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0;
1478 cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */
1479 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register);
1480}
1481
1482static int nvme_pr_reserve(struct block_device *bdev, u64 key,
1483 enum pr_type type, unsigned flags)
1484{
1485 u32 cdw10;
1486
1487 if (flags & ~PR_FL_IGNORE_KEY)
1488 return -EOPNOTSUPP;
1489
1490 cdw10 = nvme_pr_type(type) << 8;
1491 cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0);
1492 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire);
1493}
1494
1495static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new,
1496 enum pr_type type, bool abort)
1497{
1498 u32 cdw10 = nvme_pr_type(type) << 8 | abort ? 2 : 1;
1499 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire);
1500}
1501
1502static int nvme_pr_clear(struct block_device *bdev, u64 key)
1503{
Dan Carpenter8c0b3912015-12-09 13:24:06 +03001504 u32 cdw10 = 1 | (key ? 1 << 3 : 0);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001505 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register);
1506}
1507
1508static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
1509{
1510 u32 cdw10 = nvme_pr_type(type) << 8 | key ? 1 << 3 : 0;
1511 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release);
1512}
1513
1514static const struct pr_ops nvme_pr_ops = {
1515 .pr_register = nvme_pr_register,
1516 .pr_reserve = nvme_pr_reserve,
1517 .pr_release = nvme_pr_release,
1518 .pr_preempt = nvme_pr_preempt,
1519 .pr_clear = nvme_pr_clear,
1520};
1521
Scott Bauera98e58e52017-02-03 12:50:32 -07001522#ifdef CONFIG_BLK_SED_OPAL
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001523int nvme_sec_submit(void *data, u16 spsp, u8 secp, void *buffer, size_t len,
1524 bool send)
Scott Bauera98e58e52017-02-03 12:50:32 -07001525{
Christoph Hellwig4f1244c2017-02-17 13:59:39 +01001526 struct nvme_ctrl *ctrl = data;
Scott Bauera98e58e52017-02-03 12:50:32 -07001527 struct nvme_command cmd;
Scott Bauera98e58e52017-02-03 12:50:32 -07001528
1529 memset(&cmd, 0, sizeof(cmd));
1530 if (send)
1531 cmd.common.opcode = nvme_admin_security_send;
1532 else
1533 cmd.common.opcode = nvme_admin_security_recv;
Scott Bauera98e58e52017-02-03 12:50:32 -07001534 cmd.common.nsid = 0;
1535 cmd.common.cdw10[0] = cpu_to_le32(((u32)secp) << 24 | ((u32)spsp) << 8);
1536 cmd.common.cdw10[1] = cpu_to_le32(len);
1537
1538 return __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, NULL, buffer, len,
1539 ADMIN_TIMEOUT, NVME_QID_ANY, 1, 0);
1540}
1541EXPORT_SYMBOL_GPL(nvme_sec_submit);
1542#endif /* CONFIG_BLK_SED_OPAL */
1543
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01001544static const struct block_device_operations nvme_fops = {
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001545 .owner = THIS_MODULE,
1546 .ioctl = nvme_ioctl,
Christoph Hellwig761f2e12017-10-05 18:46:46 +02001547 .compat_ioctl = nvme_ioctl,
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01001548 .open = nvme_open,
1549 .release = nvme_release,
1550 .getgeo = nvme_getgeo,
1551 .revalidate_disk= nvme_revalidate_disk,
1552 .pr_ops = &nvme_pr_ops,
1553};
1554
Christoph Hellwig32acab32017-11-02 12:59:30 +01001555#ifdef CONFIG_NVME_MULTIPATH
1556static int nvme_ns_head_open(struct block_device *bdev, fmode_t mode)
1557{
1558 struct nvme_ns_head *head = bdev->bd_disk->private_data;
1559
1560 if (!kref_get_unless_zero(&head->ref))
1561 return -ENXIO;
1562 return 0;
1563}
1564
1565static void nvme_ns_head_release(struct gendisk *disk, fmode_t mode)
1566{
1567 nvme_put_ns_head(disk->private_data);
1568}
1569
1570const struct block_device_operations nvme_ns_head_ops = {
1571 .owner = THIS_MODULE,
1572 .open = nvme_ns_head_open,
1573 .release = nvme_ns_head_release,
1574 .ioctl = nvme_ioctl,
1575 .compat_ioctl = nvme_ioctl,
1576 .getgeo = nvme_getgeo,
1577 .pr_ops = &nvme_pr_ops,
1578};
1579#endif /* CONFIG_NVME_MULTIPATH */
1580
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001581static int nvme_wait_ready(struct nvme_ctrl *ctrl, u64 cap, bool enabled)
1582{
1583 unsigned long timeout =
1584 ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
1585 u32 csts, bit = enabled ? NVME_CSTS_RDY : 0;
1586 int ret;
1587
1588 while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
Keith Busch0df1e4f2016-10-11 13:31:58 -04001589 if (csts == ~0)
1590 return -ENODEV;
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001591 if ((csts & NVME_CSTS_RDY) == bit)
1592 break;
1593
1594 msleep(100);
1595 if (fatal_signal_pending(current))
1596 return -EINTR;
1597 if (time_after(jiffies, timeout)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001598 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001599 "Device not ready; aborting %s\n", enabled ?
1600 "initialisation" : "reset");
1601 return -ENODEV;
1602 }
1603 }
1604
1605 return ret;
1606}
1607
1608/*
1609 * If the device has been passed off to us in an enabled state, just clear
1610 * the enabled bit. The spec says we should set the 'shutdown notification
1611 * bits', but doing so may cause the device to complete commands to the
1612 * admin queue ... and we don't know what memory that might be pointing at!
1613 */
1614int nvme_disable_ctrl(struct nvme_ctrl *ctrl, u64 cap)
1615{
1616 int ret;
1617
1618 ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
1619 ctrl->ctrl_config &= ~NVME_CC_ENABLE;
1620
1621 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1622 if (ret)
1623 return ret;
Guilherme G. Piccoli54adc012016-06-14 18:22:41 -03001624
Guilherme G. Piccolib5a10c52016-12-28 22:13:15 -02001625 if (ctrl->quirks & NVME_QUIRK_DELAY_BEFORE_CHK_RDY)
Guilherme G. Piccoli54adc012016-06-14 18:22:41 -03001626 msleep(NVME_QUIRK_DELAY_AMOUNT);
1627
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001628 return nvme_wait_ready(ctrl, cap, false);
1629}
Ming Lin576d55d2016-02-10 10:03:32 -08001630EXPORT_SYMBOL_GPL(nvme_disable_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001631
1632int nvme_enable_ctrl(struct nvme_ctrl *ctrl, u64 cap)
1633{
1634 /*
1635 * Default to a 4K page size, with the intention to update this
1636 * path in the future to accomodate architectures with differing
1637 * kernel and IO page sizes.
1638 */
1639 unsigned dev_page_min = NVME_CAP_MPSMIN(cap) + 12, page_shift = 12;
1640 int ret;
1641
1642 if (page_shift < dev_page_min) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001643 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001644 "Minimum device page size %u too large for host (%u)\n",
1645 1 << dev_page_min, 1 << page_shift);
1646 return -ENODEV;
1647 }
1648
1649 ctrl->page_size = 1 << page_shift;
1650
1651 ctrl->ctrl_config = NVME_CC_CSS_NVM;
1652 ctrl->ctrl_config |= (page_shift - 12) << NVME_CC_MPS_SHIFT;
Max Gurtovoy60b43f62017-08-13 19:21:07 +03001653 ctrl->ctrl_config |= NVME_CC_AMS_RR | NVME_CC_SHN_NONE;
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001654 ctrl->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
1655 ctrl->ctrl_config |= NVME_CC_ENABLE;
1656
1657 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1658 if (ret)
1659 return ret;
1660 return nvme_wait_ready(ctrl, cap, true);
1661}
Ming Lin576d55d2016-02-10 10:03:32 -08001662EXPORT_SYMBOL_GPL(nvme_enable_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001663
1664int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl)
1665{
Martin K. Petersen07fbd322017-08-25 19:14:50 -04001666 unsigned long timeout = jiffies + (ctrl->shutdown_timeout * HZ);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001667 u32 csts;
1668 int ret;
1669
1670 ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
1671 ctrl->ctrl_config |= NVME_CC_SHN_NORMAL;
1672
1673 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
1674 if (ret)
1675 return ret;
1676
1677 while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
1678 if ((csts & NVME_CSTS_SHST_MASK) == NVME_CSTS_SHST_CMPLT)
1679 break;
1680
1681 msleep(100);
1682 if (fatal_signal_pending(current))
1683 return -EINTR;
1684 if (time_after(jiffies, timeout)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07001685 dev_err(ctrl->device,
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001686 "Device shutdown incomplete; abort shutdown\n");
1687 return -ENODEV;
1688 }
1689 }
1690
1691 return ret;
1692}
Ming Lin576d55d2016-02-10 10:03:32 -08001693EXPORT_SYMBOL_GPL(nvme_shutdown_ctrl);
Christoph Hellwig5fd4ce12015-11-28 15:03:49 +01001694
Christoph Hellwigda358252016-03-02 18:07:11 +01001695static void nvme_set_queue_limits(struct nvme_ctrl *ctrl,
1696 struct request_queue *q)
1697{
Jens Axboe7c88cb02016-04-12 15:43:09 -06001698 bool vwc = false;
1699
Christoph Hellwigda358252016-03-02 18:07:11 +01001700 if (ctrl->max_hw_sectors) {
Christoph Hellwig45686b62016-03-02 18:07:12 +01001701 u32 max_segments =
1702 (ctrl->max_hw_sectors / (ctrl->page_size >> 9)) + 1;
1703
Christoph Hellwigda358252016-03-02 18:07:11 +01001704 blk_queue_max_hw_sectors(q, ctrl->max_hw_sectors);
Christoph Hellwig45686b62016-03-02 18:07:12 +01001705 blk_queue_max_segments(q, min_t(u32, max_segments, USHRT_MAX));
Christoph Hellwigda358252016-03-02 18:07:11 +01001706 }
Keith Busche6282ae2016-12-19 11:37:50 -05001707 if (ctrl->quirks & NVME_QUIRK_STRIPE_SIZE)
1708 blk_queue_chunk_sectors(q, ctrl->max_hw_sectors);
Christoph Hellwigda358252016-03-02 18:07:11 +01001709 blk_queue_virt_boundary(q, ctrl->page_size - 1);
Jens Axboe7c88cb02016-04-12 15:43:09 -06001710 if (ctrl->vwc & NVME_CTRL_VWC_PRESENT)
1711 vwc = true;
1712 blk_queue_write_cache(q, vwc, vwc);
Christoph Hellwigda358252016-03-02 18:07:11 +01001713}
1714
Jon Derrickdbf86b32017-08-16 09:51:29 +02001715static int nvme_configure_timestamp(struct nvme_ctrl *ctrl)
1716{
1717 __le64 ts;
1718 int ret;
1719
1720 if (!(ctrl->oncs & NVME_CTRL_ONCS_TIMESTAMP))
1721 return 0;
1722
1723 ts = cpu_to_le64(ktime_to_ms(ktime_get_real()));
1724 ret = nvme_set_features(ctrl, NVME_FEAT_TIMESTAMP, 0, &ts, sizeof(ts),
1725 NULL);
1726 if (ret)
1727 dev_warn_once(ctrl->device,
1728 "could not set timestamp (%d)\n", ret);
1729 return ret;
1730}
1731
Keith Busch634b8322017-08-10 11:23:31 +02001732static int nvme_configure_apst(struct nvme_ctrl *ctrl)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001733{
1734 /*
1735 * APST (Autonomous Power State Transition) lets us program a
1736 * table of power state transitions that the controller will
1737 * perform automatically. We configure it with a simple
1738 * heuristic: we are willing to spend at most 2% of the time
1739 * transitioning between power states. Therefore, when running
1740 * in any given state, we will enter the next lower-power
Andy Lutomirski76e4ad02017-04-21 16:19:22 -07001741 * non-operational state after waiting 50 * (enlat + exlat)
Kai-Heng Fengda875912017-06-07 15:25:42 +08001742 * microseconds, as long as that state's exit latency is under
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001743 * the requested maximum latency.
1744 *
1745 * We will not autonomously enter any non-operational state for
1746 * which the total latency exceeds ps_max_latency_us. Users
1747 * can set ps_max_latency_us to zero to turn off APST.
1748 */
1749
1750 unsigned apste;
1751 struct nvme_feat_auto_pst *table;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001752 u64 max_lat_us = 0;
1753 int max_ps = -1;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001754 int ret;
1755
1756 /*
1757 * If APST isn't supported or if we haven't been initialized yet,
1758 * then don't do anything.
1759 */
1760 if (!ctrl->apsta)
Keith Busch634b8322017-08-10 11:23:31 +02001761 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001762
1763 if (ctrl->npss > 31) {
1764 dev_warn(ctrl->device, "NPSS is invalid; not using APST\n");
Keith Busch634b8322017-08-10 11:23:31 +02001765 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001766 }
1767
1768 table = kzalloc(sizeof(*table), GFP_KERNEL);
1769 if (!table)
Keith Busch634b8322017-08-10 11:23:31 +02001770 return 0;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001771
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04001772 if (!ctrl->apst_enabled || ctrl->ps_max_latency_us == 0) {
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001773 /* Turn off APST. */
1774 apste = 0;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001775 dev_dbg(ctrl->device, "APST disabled\n");
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001776 } else {
1777 __le64 target = cpu_to_le64(0);
1778 int state;
1779
1780 /*
1781 * Walk through all states from lowest- to highest-power.
1782 * According to the spec, lower-numbered states use more
1783 * power. NPSS, despite the name, is the index of the
1784 * lowest-power state, not the number of states.
1785 */
1786 for (state = (int)ctrl->npss; state >= 0; state--) {
Kai-Heng Fengda875912017-06-07 15:25:42 +08001787 u64 total_latency_us, exit_latency_us, transition_ms;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001788
1789 if (target)
1790 table->entries[state] = target;
1791
1792 /*
Andy Lutomirskiff5350a2017-04-20 13:37:55 -07001793 * Don't allow transitions to the deepest state
1794 * if it's quirked off.
1795 */
1796 if (state == ctrl->npss &&
1797 (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS))
1798 continue;
1799
1800 /*
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001801 * Is this state a useful non-operational state for
1802 * higher-power states to autonomously transition to?
1803 */
1804 if (!(ctrl->psd[state].flags &
1805 NVME_PS_FLAGS_NON_OP_STATE))
1806 continue;
1807
Kai-Heng Fengda875912017-06-07 15:25:42 +08001808 exit_latency_us =
1809 (u64)le32_to_cpu(ctrl->psd[state].exit_lat);
1810 if (exit_latency_us > ctrl->ps_max_latency_us)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001811 continue;
1812
Kai-Heng Fengda875912017-06-07 15:25:42 +08001813 total_latency_us =
1814 exit_latency_us +
1815 le32_to_cpu(ctrl->psd[state].entry_lat);
1816
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001817 /*
1818 * This state is good. Use it as the APST idle
1819 * target for higher power states.
1820 */
1821 transition_ms = total_latency_us + 19;
1822 do_div(transition_ms, 20);
1823 if (transition_ms > (1 << 24) - 1)
1824 transition_ms = (1 << 24) - 1;
1825
1826 target = cpu_to_le64((state << 3) |
1827 (transition_ms << 8));
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001828
1829 if (max_ps == -1)
1830 max_ps = state;
1831
1832 if (total_latency_us > max_lat_us)
1833 max_lat_us = total_latency_us;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001834 }
1835
1836 apste = 1;
Andy Lutomirskifb0dc392017-04-21 16:19:23 -07001837
1838 if (max_ps == -1) {
1839 dev_dbg(ctrl->device, "APST enabled but no non-operational states are available\n");
1840 } else {
1841 dev_dbg(ctrl->device, "APST enabled: max PS = %d, max round-trip latency = %lluus, table = %*phN\n",
1842 max_ps, max_lat_us, (int)sizeof(*table), table);
1843 }
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001844 }
1845
1846 ret = nvme_set_features(ctrl, NVME_FEAT_AUTO_PST, apste,
1847 table, sizeof(*table), NULL);
1848 if (ret)
1849 dev_err(ctrl->device, "failed to set APST feature (%d)\n", ret);
1850
1851 kfree(table);
Keith Busch634b8322017-08-10 11:23:31 +02001852 return ret;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001853}
1854
1855static void nvme_set_latency_tolerance(struct device *dev, s32 val)
1856{
1857 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
1858 u64 latency;
1859
1860 switch (val) {
1861 case PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT:
1862 case PM_QOS_LATENCY_ANY:
1863 latency = U64_MAX;
1864 break;
1865
1866 default:
1867 latency = val;
1868 }
1869
1870 if (ctrl->ps_max_latency_us != latency) {
1871 ctrl->ps_max_latency_us = latency;
1872 nvme_configure_apst(ctrl);
1873 }
1874}
1875
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001876struct nvme_core_quirk_entry {
1877 /*
1878 * NVMe model and firmware strings are padded with spaces. For
1879 * simplicity, strings in the quirk table are padded with NULLs
1880 * instead.
1881 */
1882 u16 vid;
1883 const char *mn;
1884 const char *fr;
1885 unsigned long quirks;
1886};
1887
1888static const struct nvme_core_quirk_entry core_quirks[] = {
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001889 {
Andy Lutomirskibe569452017-04-20 13:37:56 -07001890 /*
1891 * This Toshiba device seems to die using any APST states. See:
1892 * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1678184/comments/11
1893 */
1894 .vid = 0x1179,
1895 .mn = "THNSF5256GPUK TOSHIBA",
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08001896 .quirks = NVME_QUIRK_NO_APST,
Andy Lutomirskibe569452017-04-20 13:37:56 -07001897 }
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07001898};
1899
1900/* match is null-terminated but idstr is space-padded. */
1901static bool string_matches(const char *idstr, const char *match, size_t len)
1902{
1903 size_t matchlen;
1904
1905 if (!match)
1906 return true;
1907
1908 matchlen = strlen(match);
1909 WARN_ON_ONCE(matchlen > len);
1910
1911 if (memcmp(idstr, match, matchlen))
1912 return false;
1913
1914 for (; matchlen < len; matchlen++)
1915 if (idstr[matchlen] != ' ')
1916 return false;
1917
1918 return true;
1919}
1920
1921static bool quirk_matches(const struct nvme_id_ctrl *id,
1922 const struct nvme_core_quirk_entry *q)
1923{
1924 return q->vid == le16_to_cpu(id->vid) &&
1925 string_matches(id->mn, q->mn, sizeof(id->mn)) &&
1926 string_matches(id->fr, q->fr, sizeof(id->fr));
1927}
1928
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001929static void nvme_init_subnqn(struct nvme_subsystem *subsys, struct nvme_ctrl *ctrl,
1930 struct nvme_id_ctrl *id)
Christoph Hellwig180de0072017-06-26 12:39:02 +02001931{
1932 size_t nqnlen;
1933 int off;
1934
1935 nqnlen = strnlen(id->subnqn, NVMF_NQN_SIZE);
1936 if (nqnlen > 0 && nqnlen < NVMF_NQN_SIZE) {
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001937 strncpy(subsys->subnqn, id->subnqn, NVMF_NQN_SIZE);
Christoph Hellwig180de0072017-06-26 12:39:02 +02001938 return;
1939 }
1940
1941 if (ctrl->vs >= NVME_VS(1, 2, 1))
1942 dev_warn(ctrl->device, "missing or invalid SUBNQN field.\n");
1943
1944 /* Generate a "fake" NQN per Figure 254 in NVMe 1.3 + ECN 001 */
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001945 off = snprintf(subsys->subnqn, NVMF_NQN_SIZE,
Christoph Hellwig180de0072017-06-26 12:39:02 +02001946 "nqn.2014.08.org.nvmexpress:%4x%4x",
1947 le16_to_cpu(id->vid), le16_to_cpu(id->ssvid));
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001948 memcpy(subsys->subnqn + off, id->sn, sizeof(id->sn));
Christoph Hellwig180de0072017-06-26 12:39:02 +02001949 off += sizeof(id->sn);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001950 memcpy(subsys->subnqn + off, id->mn, sizeof(id->mn));
Christoph Hellwig180de0072017-06-26 12:39:02 +02001951 off += sizeof(id->mn);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001952 memset(subsys->subnqn + off, 0, sizeof(subsys->subnqn) - off);
1953}
1954
1955static void __nvme_release_subsystem(struct nvme_subsystem *subsys)
1956{
1957 ida_simple_remove(&nvme_subsystems_ida, subsys->instance);
1958 kfree(subsys);
1959}
1960
1961static void nvme_release_subsystem(struct device *dev)
1962{
1963 __nvme_release_subsystem(container_of(dev, struct nvme_subsystem, dev));
1964}
1965
1966static void nvme_destroy_subsystem(struct kref *ref)
1967{
1968 struct nvme_subsystem *subsys =
1969 container_of(ref, struct nvme_subsystem, ref);
1970
1971 mutex_lock(&nvme_subsystems_lock);
1972 list_del(&subsys->entry);
1973 mutex_unlock(&nvme_subsystems_lock);
1974
Christoph Hellwiged754e52017-11-09 13:50:43 +01001975 ida_destroy(&subsys->ns_ida);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01001976 device_del(&subsys->dev);
1977 put_device(&subsys->dev);
1978}
1979
1980static void nvme_put_subsystem(struct nvme_subsystem *subsys)
1981{
1982 kref_put(&subsys->ref, nvme_destroy_subsystem);
1983}
1984
1985static struct nvme_subsystem *__nvme_find_get_subsystem(const char *subsysnqn)
1986{
1987 struct nvme_subsystem *subsys;
1988
1989 lockdep_assert_held(&nvme_subsystems_lock);
1990
1991 list_for_each_entry(subsys, &nvme_subsystems, entry) {
1992 if (strcmp(subsys->subnqn, subsysnqn))
1993 continue;
1994 if (!kref_get_unless_zero(&subsys->ref))
1995 continue;
1996 return subsys;
1997 }
1998
1999 return NULL;
2000}
2001
Hannes Reinecke1e496932017-11-10 10:58:23 +01002002#define SUBSYS_ATTR_RO(_name, _mode, _show) \
2003 struct device_attribute subsys_attr_##_name = \
2004 __ATTR(_name, _mode, _show, NULL)
2005
2006static ssize_t nvme_subsys_show_nqn(struct device *dev,
2007 struct device_attribute *attr,
2008 char *buf)
2009{
2010 struct nvme_subsystem *subsys =
2011 container_of(dev, struct nvme_subsystem, dev);
2012
2013 return snprintf(buf, PAGE_SIZE, "%s\n", subsys->subnqn);
2014}
2015static SUBSYS_ATTR_RO(subsysnqn, S_IRUGO, nvme_subsys_show_nqn);
2016
2017#define nvme_subsys_show_str_function(field) \
2018static ssize_t subsys_##field##_show(struct device *dev, \
2019 struct device_attribute *attr, char *buf) \
2020{ \
2021 struct nvme_subsystem *subsys = \
2022 container_of(dev, struct nvme_subsystem, dev); \
2023 return sprintf(buf, "%.*s\n", \
2024 (int)sizeof(subsys->field), subsys->field); \
2025} \
2026static SUBSYS_ATTR_RO(field, S_IRUGO, subsys_##field##_show);
2027
2028nvme_subsys_show_str_function(model);
2029nvme_subsys_show_str_function(serial);
2030nvme_subsys_show_str_function(firmware_rev);
2031
2032static struct attribute *nvme_subsys_attrs[] = {
2033 &subsys_attr_model.attr,
2034 &subsys_attr_serial.attr,
2035 &subsys_attr_firmware_rev.attr,
2036 &subsys_attr_subsysnqn.attr,
2037 NULL,
2038};
2039
2040static struct attribute_group nvme_subsys_attrs_group = {
2041 .attrs = nvme_subsys_attrs,
2042};
2043
2044static const struct attribute_group *nvme_subsys_attrs_groups[] = {
2045 &nvme_subsys_attrs_group,
2046 NULL,
2047};
2048
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002049static int nvme_init_subsystem(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id)
2050{
2051 struct nvme_subsystem *subsys, *found;
2052 int ret;
2053
2054 subsys = kzalloc(sizeof(*subsys), GFP_KERNEL);
2055 if (!subsys)
2056 return -ENOMEM;
2057 ret = ida_simple_get(&nvme_subsystems_ida, 0, 0, GFP_KERNEL);
2058 if (ret < 0) {
2059 kfree(subsys);
2060 return ret;
2061 }
2062 subsys->instance = ret;
2063 mutex_init(&subsys->lock);
2064 kref_init(&subsys->ref);
2065 INIT_LIST_HEAD(&subsys->ctrls);
Christoph Hellwiged754e52017-11-09 13:50:43 +01002066 INIT_LIST_HEAD(&subsys->nsheads);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002067 nvme_init_subnqn(subsys, ctrl, id);
2068 memcpy(subsys->serial, id->sn, sizeof(subsys->serial));
2069 memcpy(subsys->model, id->mn, sizeof(subsys->model));
2070 memcpy(subsys->firmware_rev, id->fr, sizeof(subsys->firmware_rev));
2071 subsys->vendor_id = le16_to_cpu(id->vid);
2072 subsys->cmic = id->cmic;
2073
2074 subsys->dev.class = nvme_subsys_class;
2075 subsys->dev.release = nvme_release_subsystem;
Hannes Reinecke1e496932017-11-10 10:58:23 +01002076 subsys->dev.groups = nvme_subsys_attrs_groups;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002077 dev_set_name(&subsys->dev, "nvme-subsys%d", subsys->instance);
2078 device_initialize(&subsys->dev);
2079
2080 mutex_lock(&nvme_subsystems_lock);
2081 found = __nvme_find_get_subsystem(subsys->subnqn);
2082 if (found) {
2083 /*
2084 * Verify that the subsystem actually supports multiple
2085 * controllers, else bail out.
2086 */
2087 if (!(id->cmic & (1 << 1))) {
2088 dev_err(ctrl->device,
2089 "ignoring ctrl due to duplicate subnqn (%s).\n",
2090 found->subnqn);
2091 nvme_put_subsystem(found);
2092 ret = -EINVAL;
2093 goto out_unlock;
2094 }
2095
2096 __nvme_release_subsystem(subsys);
2097 subsys = found;
2098 } else {
2099 ret = device_add(&subsys->dev);
2100 if (ret) {
2101 dev_err(ctrl->device,
2102 "failed to register subsystem device.\n");
2103 goto out_unlock;
2104 }
Christoph Hellwiged754e52017-11-09 13:50:43 +01002105 ida_init(&subsys->ns_ida);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002106 list_add_tail(&subsys->entry, &nvme_subsystems);
2107 }
2108
2109 ctrl->subsys = subsys;
2110 mutex_unlock(&nvme_subsystems_lock);
2111
2112 if (sysfs_create_link(&subsys->dev.kobj, &ctrl->device->kobj,
2113 dev_name(ctrl->device))) {
2114 dev_err(ctrl->device,
2115 "failed to create sysfs link from subsystem.\n");
2116 /* the transport driver will eventually put the subsystem */
2117 return -EINVAL;
2118 }
2119
2120 mutex_lock(&subsys->lock);
2121 list_add_tail(&ctrl->subsys_entry, &subsys->ctrls);
2122 mutex_unlock(&subsys->lock);
2123
2124 return 0;
2125
2126out_unlock:
2127 mutex_unlock(&nvme_subsystems_lock);
2128 put_device(&subsys->dev);
2129 return ret;
Christoph Hellwig180de0072017-06-26 12:39:02 +02002130}
2131
Keith Buschc627c482017-11-07 10:28:31 -07002132static int nvme_get_log(struct nvme_ctrl *ctrl, u8 log_page, void *log,
2133 size_t size)
2134{
2135 struct nvme_command c = { };
2136
2137 c.common.opcode = nvme_admin_get_log_page;
2138 c.common.nsid = cpu_to_le32(NVME_NSID_ALL);
2139 c.common.cdw10[0] = nvme_get_log_dw10(log_page, size);
2140
2141 return nvme_submit_sync_cmd(ctrl->admin_q, &c, log, size);
2142}
2143
Keith Busch84fef622017-11-07 10:28:32 -07002144static int nvme_get_effects_log(struct nvme_ctrl *ctrl)
2145{
2146 int ret;
2147
2148 if (!ctrl->effects)
2149 ctrl->effects = kzalloc(sizeof(*ctrl->effects), GFP_KERNEL);
2150
2151 if (!ctrl->effects)
2152 return 0;
2153
2154 ret = nvme_get_log(ctrl, NVME_LOG_CMD_EFFECTS, ctrl->effects,
2155 sizeof(*ctrl->effects));
2156 if (ret) {
2157 kfree(ctrl->effects);
2158 ctrl->effects = NULL;
2159 }
2160 return ret;
2161}
2162
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002163/*
2164 * Initialize the cached copies of the Identify data and various controller
2165 * register in our nvme_ctrl structure. This should be called as soon as
2166 * the admin queue is fully up and running.
2167 */
2168int nvme_init_identify(struct nvme_ctrl *ctrl)
2169{
2170 struct nvme_id_ctrl *id;
2171 u64 cap;
2172 int ret, page_shift;
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02002173 u32 max_hw_sectors;
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002174 bool prev_apst_enabled;
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002175
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002176 ret = ctrl->ops->reg_read32(ctrl, NVME_REG_VS, &ctrl->vs);
2177 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002178 dev_err(ctrl->device, "Reading VS failed (%d)\n", ret);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002179 return ret;
2180 }
2181
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002182 ret = ctrl->ops->reg_read64(ctrl, NVME_REG_CAP, &cap);
2183 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002184 dev_err(ctrl->device, "Reading CAP failed (%d)\n", ret);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002185 return ret;
2186 }
2187 page_shift = NVME_CAP_MPSMIN(cap) + 12;
2188
Gabriel Krisman Bertazi8ef20742016-10-19 09:51:05 -06002189 if (ctrl->vs >= NVME_VS(1, 1, 0))
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002190 ctrl->subsystem = NVME_CAP_NSSRC(cap);
2191
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002192 ret = nvme_identify_ctrl(ctrl, &id);
2193 if (ret) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002194 dev_err(ctrl->device, "Identify Controller failed (%d)\n", ret);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002195 return -EIO;
2196 }
2197
Keith Busch84fef622017-11-07 10:28:32 -07002198 if (id->lpa & NVME_CTRL_LPA_CMD_EFFECTS_LOG) {
2199 ret = nvme_get_effects_log(ctrl);
2200 if (ret < 0)
2201 return ret;
2202 }
2203
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002204 if (!ctrl->identified) {
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002205 int i;
2206
2207 ret = nvme_init_subsystem(ctrl, id);
2208 if (ret)
2209 goto out_free;
2210
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002211 /*
2212 * Check for quirks. Quirk can depend on firmware version,
2213 * so, in principle, the set of quirks present can change
2214 * across a reset. As a possible future enhancement, we
2215 * could re-scan for quirks every time we reinitialize
2216 * the device, but we'd have to make sure that the driver
2217 * behaves intelligently if the quirks change.
2218 */
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002219 for (i = 0; i < ARRAY_SIZE(core_quirks); i++) {
2220 if (quirk_matches(id, &core_quirks[i]))
2221 ctrl->quirks |= core_quirks[i].quirks;
2222 }
2223 }
2224
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002225 if (force_apst && (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS)) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02002226 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 -07002227 ctrl->quirks &= ~NVME_QUIRK_NO_DEEPEST_PS;
2228 }
2229
Scott Bauer8a9ae522017-02-17 13:59:40 +01002230 ctrl->oacs = le16_to_cpu(id->oacs);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002231 ctrl->oncs = le16_to_cpup(&id->oncs);
Christoph Hellwig6bf25d12015-11-20 09:36:44 +01002232 atomic_set(&ctrl->abort_limit, id->acl + 1);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002233 ctrl->vwc = id->vwc;
Ming Lin931e1c22016-02-26 13:24:19 -08002234 ctrl->cntlid = le16_to_cpup(&id->cntlid);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002235 if (id->mdts)
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02002236 max_hw_sectors = 1 << (id->mdts + page_shift - 9);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002237 else
Christoph Hellwiga229dbf2016-06-06 23:20:48 +02002238 max_hw_sectors = UINT_MAX;
2239 ctrl->max_hw_sectors =
2240 min_not_zero(ctrl->max_hw_sectors, max_hw_sectors);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002241
Christoph Hellwigda358252016-03-02 18:07:11 +01002242 nvme_set_queue_limits(ctrl, ctrl->admin_q);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002243 ctrl->sgls = le32_to_cpu(id->sgls);
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002244 ctrl->kas = le16_to_cpu(id->kas);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002245
Martin K. Petersen07fbd322017-08-25 19:14:50 -04002246 if (id->rtd3e) {
2247 /* us -> s */
2248 u32 transition_time = le32_to_cpu(id->rtd3e) / 1000000;
2249
2250 ctrl->shutdown_timeout = clamp_t(unsigned int, transition_time,
2251 shutdown_timeout, 60);
2252
2253 if (ctrl->shutdown_timeout != shutdown_timeout)
2254 dev_warn(ctrl->device,
2255 "Shutdown timeout set to %u seconds\n",
2256 ctrl->shutdown_timeout);
2257 } else
2258 ctrl->shutdown_timeout = shutdown_timeout;
2259
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002260 ctrl->npss = id->npss;
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002261 ctrl->apsta = id->apsta;
2262 prev_apst_enabled = ctrl->apst_enabled;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002263 if (ctrl->quirks & NVME_QUIRK_NO_APST) {
2264 if (force_apst && id->apsta) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02002265 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 -04002266 ctrl->apst_enabled = true;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002267 } else {
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002268 ctrl->apst_enabled = false;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002269 }
2270 } else {
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002271 ctrl->apst_enabled = id->apsta;
Andy Lutomirskic35e30b2017-04-21 16:19:24 -07002272 }
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002273 memcpy(ctrl->psd, id->psd, sizeof(ctrl->psd));
2274
Christoph Hellwigd3d5b872017-05-20 15:14:44 +02002275 if (ctrl->ops->flags & NVME_F_FABRICS) {
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002276 ctrl->icdoff = le16_to_cpu(id->icdoff);
2277 ctrl->ioccsz = le32_to_cpu(id->ioccsz);
2278 ctrl->iorcsz = le32_to_cpu(id->iorcsz);
2279 ctrl->maxcmd = le16_to_cpu(id->maxcmd);
2280
2281 /*
2282 * In fabrics we need to verify the cntlid matches the
2283 * admin connect
2284 */
Keith Busch634b8322017-08-10 11:23:31 +02002285 if (ctrl->cntlid != le16_to_cpu(id->cntlid)) {
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002286 ret = -EINVAL;
Keith Busch634b8322017-08-10 11:23:31 +02002287 goto out_free;
2288 }
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002289
2290 if (!ctrl->opts->discovery_nqn && !ctrl->kas) {
Johannes Thumshirnf0425db2017-06-09 16:17:21 +02002291 dev_err(ctrl->device,
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002292 "keep-alive support is mandatory for fabrics\n");
2293 ret = -EINVAL;
Keith Busch634b8322017-08-10 11:23:31 +02002294 goto out_free;
Sagi Grimberg038bd4c2016-06-13 16:45:28 +02002295 }
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002296 } else {
2297 ctrl->cntlid = le16_to_cpu(id->cntlid);
Christoph Hellwigfe6d53c2017-05-12 17:16:10 +02002298 ctrl->hmpre = le32_to_cpu(id->hmpre);
2299 ctrl->hmmin = le32_to_cpu(id->hmmin);
Christoph Hellwig044a9df2017-09-11 12:09:28 -04002300 ctrl->hmminds = le32_to_cpu(id->hmminds);
2301 ctrl->hmmaxd = le16_to_cpu(id->hmmaxd);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002302 }
Christoph Hellwigda358252016-03-02 18:07:11 +01002303
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002304 kfree(id);
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002305
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002306 if (ctrl->apst_enabled && !prev_apst_enabled)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002307 dev_pm_qos_expose_latency_tolerance(ctrl->device);
Kai-Heng Feng76a5af82017-06-26 16:39:54 -04002308 else if (!ctrl->apst_enabled && prev_apst_enabled)
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002309 dev_pm_qos_hide_latency_tolerance(ctrl->device);
2310
Keith Busch634b8322017-08-10 11:23:31 +02002311 ret = nvme_configure_apst(ctrl);
2312 if (ret < 0)
2313 return ret;
Jon Derrickdbf86b32017-08-16 09:51:29 +02002314
2315 ret = nvme_configure_timestamp(ctrl);
2316 if (ret < 0)
2317 return ret;
Keith Busch634b8322017-08-10 11:23:31 +02002318
2319 ret = nvme_configure_directives(ctrl);
2320 if (ret < 0)
2321 return ret;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002322
Andy Lutomirskibd4da3a2017-02-22 13:32:36 -07002323 ctrl->identified = true;
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08002324
Keith Busch634b8322017-08-10 11:23:31 +02002325 return 0;
2326
2327out_free:
2328 kfree(id);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002329 return ret;
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002330}
Ming Lin576d55d2016-02-10 10:03:32 -08002331EXPORT_SYMBOL_GPL(nvme_init_identify);
Christoph Hellwig7fd89302015-11-28 15:37:52 +01002332
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002333static int nvme_dev_open(struct inode *inode, struct file *file)
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002334{
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002335 struct nvme_ctrl *ctrl =
2336 container_of(inode->i_cdev, struct nvme_ctrl, cdev);
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002337
Christoph Hellwig999ada22017-10-18 17:09:31 +02002338 if (ctrl->state != NVME_CTRL_LIVE)
Christoph Hellwiga6a51492017-10-18 16:59:25 +02002339 return -EWOULDBLOCK;
2340 file->private_data = ctrl;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002341 return 0;
Christoph Hellwig1673f1f2015-11-26 10:54:19 +01002342}
2343
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002344static int nvme_dev_user_cmd(struct nvme_ctrl *ctrl, void __user *argp)
2345{
2346 struct nvme_ns *ns;
2347 int ret;
2348
2349 mutex_lock(&ctrl->namespaces_mutex);
2350 if (list_empty(&ctrl->namespaces)) {
2351 ret = -ENOTTY;
2352 goto out_unlock;
2353 }
2354
2355 ns = list_first_entry(&ctrl->namespaces, struct nvme_ns, list);
2356 if (ns != list_last_entry(&ctrl->namespaces, struct nvme_ns, list)) {
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002357 dev_warn(ctrl->device,
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002358 "NVME_IOCTL_IO_CMD not supported when multiple namespaces present!\n");
2359 ret = -EINVAL;
2360 goto out_unlock;
2361 }
2362
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002363 dev_warn(ctrl->device,
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002364 "using deprecated NVME_IOCTL_IO_CMD ioctl on the char device!\n");
2365 kref_get(&ns->kref);
2366 mutex_unlock(&ctrl->namespaces_mutex);
2367
2368 ret = nvme_user_cmd(ctrl, ns, argp);
2369 nvme_put_ns(ns);
2370 return ret;
2371
2372out_unlock:
2373 mutex_unlock(&ctrl->namespaces_mutex);
2374 return ret;
2375}
2376
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002377static long nvme_dev_ioctl(struct file *file, unsigned int cmd,
2378 unsigned long arg)
2379{
2380 struct nvme_ctrl *ctrl = file->private_data;
2381 void __user *argp = (void __user *)arg;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002382
2383 switch (cmd) {
2384 case NVME_IOCTL_ADMIN_CMD:
2385 return nvme_user_cmd(ctrl, NULL, argp);
2386 case NVME_IOCTL_IO_CMD:
Christoph Hellwigbfd89472015-12-24 15:27:01 +01002387 return nvme_dev_user_cmd(ctrl, argp);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002388 case NVME_IOCTL_RESET:
Sagi Grimberg1b3c47c2016-02-10 08:51:15 -07002389 dev_warn(ctrl->device, "resetting controller\n");
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002390 return nvme_reset_ctrl_sync(ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002391 case NVME_IOCTL_SUBSYS_RESET:
2392 return nvme_reset_subsystem(ctrl);
Keith Busch9ec3bb22016-04-29 15:45:18 -06002393 case NVME_IOCTL_RESCAN:
2394 nvme_queue_scan(ctrl);
2395 return 0;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002396 default:
2397 return -ENOTTY;
2398 }
2399}
2400
2401static const struct file_operations nvme_dev_fops = {
2402 .owner = THIS_MODULE,
2403 .open = nvme_dev_open,
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002404 .unlocked_ioctl = nvme_dev_ioctl,
2405 .compat_ioctl = nvme_dev_ioctl,
2406};
2407
2408static ssize_t nvme_sysfs_reset(struct device *dev,
2409 struct device_attribute *attr, const char *buf,
2410 size_t count)
2411{
2412 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2413 int ret;
2414
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002415 ret = nvme_reset_ctrl_sync(ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01002416 if (ret < 0)
2417 return ret;
2418 return count;
2419}
2420static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
2421
Keith Busch9ec3bb22016-04-29 15:45:18 -06002422static ssize_t nvme_sysfs_rescan(struct device *dev,
2423 struct device_attribute *attr, const char *buf,
2424 size_t count)
2425{
2426 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2427
2428 nvme_queue_scan(ctrl);
2429 return count;
2430}
2431static DEVICE_ATTR(rescan_controller, S_IWUSR, NULL, nvme_sysfs_rescan);
2432
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002433static inline struct nvme_ns_head *dev_to_ns_head(struct device *dev)
Keith Busch118472a2016-02-18 09:57:48 -07002434{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002435 struct gendisk *disk = dev_to_disk(dev);
2436
2437 if (disk->fops == &nvme_fops)
2438 return nvme_get_ns_from_dev(dev)->head;
2439 else
2440 return disk->private_data;
2441}
2442
2443static ssize_t wwid_show(struct device *dev, struct device_attribute *attr,
2444 char *buf)
2445{
2446 struct nvme_ns_head *head = dev_to_ns_head(dev);
2447 struct nvme_ns_ids *ids = &head->ids;
2448 struct nvme_subsystem *subsys = head->subsys;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002449 int serial_len = sizeof(subsys->serial);
2450 int model_len = sizeof(subsys->model);
Keith Busch118472a2016-02-18 09:57:48 -07002451
Christoph Hellwig002fab02017-11-09 13:50:16 +01002452 if (!uuid_is_null(&ids->uuid))
2453 return sprintf(buf, "uuid.%pU\n", &ids->uuid);
Johannes Thumshirn6484f5d2017-07-12 15:38:56 +02002454
Christoph Hellwig002fab02017-11-09 13:50:16 +01002455 if (memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
2456 return sprintf(buf, "eui.%16phN\n", ids->nguid);
Keith Busch118472a2016-02-18 09:57:48 -07002457
Christoph Hellwig002fab02017-11-09 13:50:16 +01002458 if (memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
2459 return sprintf(buf, "eui.%8phN\n", ids->eui64);
Keith Busch118472a2016-02-18 09:57:48 -07002460
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002461 while (serial_len > 0 && (subsys->serial[serial_len - 1] == ' ' ||
2462 subsys->serial[serial_len - 1] == '\0'))
Keith Busch118472a2016-02-18 09:57:48 -07002463 serial_len--;
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002464 while (model_len > 0 && (subsys->model[model_len - 1] == ' ' ||
2465 subsys->model[model_len - 1] == '\0'))
Keith Busch118472a2016-02-18 09:57:48 -07002466 model_len--;
2467
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002468 return sprintf(buf, "nvme.%04x-%*phN-%*phN-%08x\n", subsys->vendor_id,
2469 serial_len, subsys->serial, model_len, subsys->model,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002470 head->ns_id);
Keith Busch118472a2016-02-18 09:57:48 -07002471}
2472static DEVICE_ATTR(wwid, S_IRUGO, wwid_show, NULL);
2473
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002474static ssize_t nguid_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002475 char *buf)
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002476{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002477 return sprintf(buf, "%pU\n", dev_to_ns_head(dev)->ids.nguid);
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002478}
2479static DEVICE_ATTR(nguid, S_IRUGO, nguid_show, NULL);
2480
Keith Busch2b9b6e82015-12-22 10:10:45 -07002481static ssize_t uuid_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002482 char *buf)
Keith Busch2b9b6e82015-12-22 10:10:45 -07002483{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002484 struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids;
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002485
2486 /* For backward compatibility expose the NGUID to userspace if
2487 * we have no UUID set
2488 */
Christoph Hellwig002fab02017-11-09 13:50:16 +01002489 if (uuid_is_null(&ids->uuid)) {
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002490 printk_ratelimited(KERN_WARNING
2491 "No UUID available providing old NGUID\n");
Christoph Hellwig002fab02017-11-09 13:50:16 +01002492 return sprintf(buf, "%pU\n", ids->nguid);
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002493 }
Christoph Hellwig002fab02017-11-09 13:50:16 +01002494 return sprintf(buf, "%pU\n", &ids->uuid);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002495}
2496static DEVICE_ATTR(uuid, S_IRUGO, uuid_show, NULL);
2497
2498static ssize_t eui_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002499 char *buf)
Keith Busch2b9b6e82015-12-22 10:10:45 -07002500{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002501 return sprintf(buf, "%8ph\n", dev_to_ns_head(dev)->ids.eui64);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002502}
2503static DEVICE_ATTR(eui, S_IRUGO, eui_show, NULL);
2504
2505static ssize_t nsid_show(struct device *dev, struct device_attribute *attr,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002506 char *buf)
Keith Busch2b9b6e82015-12-22 10:10:45 -07002507{
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002508 return sprintf(buf, "%d\n", dev_to_ns_head(dev)->ns_id);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002509}
2510static DEVICE_ATTR(nsid, S_IRUGO, nsid_show, NULL);
2511
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002512static struct attribute *nvme_ns_id_attrs[] = {
Keith Busch118472a2016-02-18 09:57:48 -07002513 &dev_attr_wwid.attr,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002514 &dev_attr_uuid.attr,
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002515 &dev_attr_nguid.attr,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002516 &dev_attr_eui.attr,
2517 &dev_attr_nsid.attr,
2518 NULL,
2519};
2520
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002521static umode_t nvme_ns_id_attrs_are_visible(struct kobject *kobj,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002522 struct attribute *a, int n)
2523{
2524 struct device *dev = container_of(kobj, struct device, kobj);
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002525 struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids;
Keith Busch2b9b6e82015-12-22 10:10:45 -07002526
2527 if (a == &dev_attr_uuid.attr) {
Christoph Hellwig002fab02017-11-09 13:50:16 +01002528 if (uuid_is_null(&ids->uuid) ||
2529 !memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
Johannes Thumshirnd934f982017-06-07 11:45:35 +02002530 return 0;
2531 }
2532 if (a == &dev_attr_nguid.attr) {
Christoph Hellwig002fab02017-11-09 13:50:16 +01002533 if (!memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
Keith Busch2b9b6e82015-12-22 10:10:45 -07002534 return 0;
2535 }
2536 if (a == &dev_attr_eui.attr) {
Christoph Hellwig002fab02017-11-09 13:50:16 +01002537 if (!memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
Keith Busch2b9b6e82015-12-22 10:10:45 -07002538 return 0;
2539 }
2540 return a->mode;
2541}
2542
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002543const struct attribute_group nvme_ns_id_attr_group = {
2544 .attrs = nvme_ns_id_attrs,
2545 .is_visible = nvme_ns_id_attrs_are_visible,
Keith Busch2b9b6e82015-12-22 10:10:45 -07002546};
2547
Ming Lin931e1c22016-02-26 13:24:19 -08002548#define nvme_show_str_function(field) \
Keith Busch779ff7562016-01-12 15:09:31 -07002549static ssize_t field##_show(struct device *dev, \
2550 struct device_attribute *attr, char *buf) \
2551{ \
2552 struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002553 return sprintf(buf, "%.*s\n", \
2554 (int)sizeof(ctrl->subsys->field), ctrl->subsys->field); \
Keith Busch779ff7562016-01-12 15:09:31 -07002555} \
2556static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
2557
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002558nvme_show_str_function(model);
2559nvme_show_str_function(serial);
2560nvme_show_str_function(firmware_rev);
2561
Ming Lin931e1c22016-02-26 13:24:19 -08002562#define nvme_show_int_function(field) \
2563static ssize_t field##_show(struct device *dev, \
2564 struct device_attribute *attr, char *buf) \
2565{ \
2566 struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \
2567 return sprintf(buf, "%d\n", ctrl->field); \
2568} \
2569static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
2570
Ming Lin931e1c22016-02-26 13:24:19 -08002571nvme_show_int_function(cntlid);
Keith Busch779ff7562016-01-12 15:09:31 -07002572
Ming Lin1a353d82016-06-13 16:45:24 +02002573static ssize_t nvme_sysfs_delete(struct device *dev,
2574 struct device_attribute *attr, const char *buf,
2575 size_t count)
2576{
2577 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2578
2579 if (device_remove_file_self(dev, attr))
Christoph Hellwigc5017e82017-10-29 10:44:29 +02002580 nvme_delete_ctrl_sync(ctrl);
Ming Lin1a353d82016-06-13 16:45:24 +02002581 return count;
2582}
2583static DEVICE_ATTR(delete_controller, S_IWUSR, NULL, nvme_sysfs_delete);
2584
2585static ssize_t nvme_sysfs_show_transport(struct device *dev,
2586 struct device_attribute *attr,
2587 char *buf)
2588{
2589 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2590
2591 return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->ops->name);
2592}
2593static DEVICE_ATTR(transport, S_IRUGO, nvme_sysfs_show_transport, NULL);
2594
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002595static ssize_t nvme_sysfs_show_state(struct device *dev,
2596 struct device_attribute *attr,
2597 char *buf)
2598{
2599 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2600 static const char *const state_name[] = {
2601 [NVME_CTRL_NEW] = "new",
2602 [NVME_CTRL_LIVE] = "live",
2603 [NVME_CTRL_RESETTING] = "resetting",
2604 [NVME_CTRL_RECONNECTING]= "reconnecting",
2605 [NVME_CTRL_DELETING] = "deleting",
2606 [NVME_CTRL_DEAD] = "dead",
2607 };
2608
2609 if ((unsigned)ctrl->state < ARRAY_SIZE(state_name) &&
2610 state_name[ctrl->state])
2611 return sprintf(buf, "%s\n", state_name[ctrl->state]);
2612
2613 return sprintf(buf, "unknown state\n");
2614}
2615
2616static DEVICE_ATTR(state, S_IRUGO, nvme_sysfs_show_state, NULL);
2617
Ming Lin1a353d82016-06-13 16:45:24 +02002618static ssize_t nvme_sysfs_show_subsysnqn(struct device *dev,
2619 struct device_attribute *attr,
2620 char *buf)
2621{
2622 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2623
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01002624 return snprintf(buf, PAGE_SIZE, "%s\n", ctrl->subsys->subnqn);
Ming Lin1a353d82016-06-13 16:45:24 +02002625}
2626static DEVICE_ATTR(subsysnqn, S_IRUGO, nvme_sysfs_show_subsysnqn, NULL);
2627
2628static ssize_t nvme_sysfs_show_address(struct device *dev,
2629 struct device_attribute *attr,
2630 char *buf)
2631{
2632 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2633
2634 return ctrl->ops->get_address(ctrl, buf, PAGE_SIZE);
2635}
2636static DEVICE_ATTR(address, S_IRUGO, nvme_sysfs_show_address, NULL);
2637
Keith Busch779ff7562016-01-12 15:09:31 -07002638static struct attribute *nvme_dev_attrs[] = {
2639 &dev_attr_reset_controller.attr,
Keith Busch9ec3bb22016-04-29 15:45:18 -06002640 &dev_attr_rescan_controller.attr,
Keith Busch779ff7562016-01-12 15:09:31 -07002641 &dev_attr_model.attr,
2642 &dev_attr_serial.attr,
2643 &dev_attr_firmware_rev.attr,
Ming Lin931e1c22016-02-26 13:24:19 -08002644 &dev_attr_cntlid.attr,
Ming Lin1a353d82016-06-13 16:45:24 +02002645 &dev_attr_delete_controller.attr,
2646 &dev_attr_transport.attr,
2647 &dev_attr_subsysnqn.attr,
2648 &dev_attr_address.attr,
Sagi Grimberg8432bdb22016-11-28 01:47:40 +02002649 &dev_attr_state.attr,
Keith Busch779ff7562016-01-12 15:09:31 -07002650 NULL
2651};
2652
Ming Lin1a353d82016-06-13 16:45:24 +02002653static umode_t nvme_dev_attrs_are_visible(struct kobject *kobj,
2654 struct attribute *a, int n)
2655{
2656 struct device *dev = container_of(kobj, struct device, kobj);
2657 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2658
Christoph Hellwig49d3d502017-06-26 12:39:03 +02002659 if (a == &dev_attr_delete_controller.attr && !ctrl->ops->delete_ctrl)
2660 return 0;
2661 if (a == &dev_attr_address.attr && !ctrl->ops->get_address)
2662 return 0;
Ming Lin1a353d82016-06-13 16:45:24 +02002663
2664 return a->mode;
2665}
2666
Keith Busch779ff7562016-01-12 15:09:31 -07002667static struct attribute_group nvme_dev_attrs_group = {
Ming Lin1a353d82016-06-13 16:45:24 +02002668 .attrs = nvme_dev_attrs,
2669 .is_visible = nvme_dev_attrs_are_visible,
Keith Busch779ff7562016-01-12 15:09:31 -07002670};
2671
2672static const struct attribute_group *nvme_dev_attr_groups[] = {
2673 &nvme_dev_attrs_group,
2674 NULL,
2675};
2676
Christoph Hellwiged754e52017-11-09 13:50:43 +01002677static struct nvme_ns_head *__nvme_find_ns_head(struct nvme_subsystem *subsys,
2678 unsigned nsid)
2679{
2680 struct nvme_ns_head *h;
2681
2682 lockdep_assert_held(&subsys->lock);
2683
2684 list_for_each_entry(h, &subsys->nsheads, entry) {
2685 if (h->ns_id == nsid && kref_get_unless_zero(&h->ref))
2686 return h;
2687 }
2688
2689 return NULL;
2690}
2691
2692static int __nvme_check_ids(struct nvme_subsystem *subsys,
2693 struct nvme_ns_head *new)
2694{
2695 struct nvme_ns_head *h;
2696
2697 lockdep_assert_held(&subsys->lock);
2698
2699 list_for_each_entry(h, &subsys->nsheads, entry) {
2700 if (nvme_ns_ids_valid(&new->ids) &&
2701 nvme_ns_ids_equal(&new->ids, &h->ids))
2702 return -EINVAL;
2703 }
2704
2705 return 0;
2706}
2707
2708static struct nvme_ns_head *nvme_alloc_ns_head(struct nvme_ctrl *ctrl,
2709 unsigned nsid, struct nvme_id_ns *id)
2710{
2711 struct nvme_ns_head *head;
2712 int ret = -ENOMEM;
2713
2714 head = kzalloc(sizeof(*head), GFP_KERNEL);
2715 if (!head)
2716 goto out;
2717 ret = ida_simple_get(&ctrl->subsys->ns_ida, 1, 0, GFP_KERNEL);
2718 if (ret < 0)
2719 goto out_free_head;
2720 head->instance = ret;
2721 INIT_LIST_HEAD(&head->list);
2722 init_srcu_struct(&head->srcu);
2723 head->subsys = ctrl->subsys;
2724 head->ns_id = nsid;
2725 kref_init(&head->ref);
2726
2727 nvme_report_ns_ids(ctrl, nsid, id, &head->ids);
2728
2729 ret = __nvme_check_ids(ctrl->subsys, head);
2730 if (ret) {
2731 dev_err(ctrl->device,
2732 "duplicate IDs for nsid %d\n", nsid);
2733 goto out_cleanup_srcu;
2734 }
2735
Christoph Hellwig32acab32017-11-02 12:59:30 +01002736 ret = nvme_mpath_alloc_disk(ctrl, head);
2737 if (ret)
2738 goto out_cleanup_srcu;
2739
Christoph Hellwiged754e52017-11-09 13:50:43 +01002740 list_add_tail(&head->entry, &ctrl->subsys->nsheads);
2741 return head;
2742out_cleanup_srcu:
2743 cleanup_srcu_struct(&head->srcu);
2744 ida_simple_remove(&ctrl->subsys->ns_ida, head->instance);
2745out_free_head:
2746 kfree(head);
2747out:
2748 return ERR_PTR(ret);
2749}
2750
2751static int nvme_init_ns_head(struct nvme_ns *ns, unsigned nsid,
2752 struct nvme_id_ns *id, bool *new)
2753{
2754 struct nvme_ctrl *ctrl = ns->ctrl;
2755 bool is_shared = id->nmic & (1 << 0);
2756 struct nvme_ns_head *head = NULL;
2757 int ret = 0;
2758
2759 mutex_lock(&ctrl->subsys->lock);
2760 if (is_shared)
2761 head = __nvme_find_ns_head(ctrl->subsys, nsid);
2762 if (!head) {
2763 head = nvme_alloc_ns_head(ctrl, nsid, id);
2764 if (IS_ERR(head)) {
2765 ret = PTR_ERR(head);
2766 goto out_unlock;
2767 }
2768
2769 *new = true;
2770 } else {
2771 struct nvme_ns_ids ids;
2772
2773 nvme_report_ns_ids(ctrl, nsid, id, &ids);
2774 if (!nvme_ns_ids_equal(&head->ids, &ids)) {
2775 dev_err(ctrl->device,
2776 "IDs don't match for shared namespace %d\n",
2777 nsid);
2778 ret = -EINVAL;
2779 goto out_unlock;
2780 }
2781
2782 *new = false;
2783 }
2784
2785 list_add_tail(&ns->siblings, &head->list);
2786 ns->head = head;
2787
2788out_unlock:
2789 mutex_unlock(&ctrl->subsys->lock);
2790 return ret;
2791}
2792
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002793static int ns_cmp(void *priv, struct list_head *a, struct list_head *b)
2794{
2795 struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
2796 struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
2797
Christoph Hellwiged754e52017-11-09 13:50:43 +01002798 return nsa->head->ns_id - nsb->head->ns_id;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002799}
2800
Keith Busch32f0c4a2016-07-13 11:45:02 -06002801static struct nvme_ns *nvme_find_get_ns(struct nvme_ctrl *ctrl, unsigned nsid)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002802{
Keith Busch32f0c4a2016-07-13 11:45:02 -06002803 struct nvme_ns *ns, *ret = NULL;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002804
Keith Busch32f0c4a2016-07-13 11:45:02 -06002805 mutex_lock(&ctrl->namespaces_mutex);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002806 list_for_each_entry(ns, &ctrl->namespaces, list) {
Christoph Hellwiged754e52017-11-09 13:50:43 +01002807 if (ns->head->ns_id == nsid) {
Christoph Hellwig2dd41222017-10-18 13:20:01 +02002808 if (!kref_get_unless_zero(&ns->kref))
2809 continue;
Keith Busch32f0c4a2016-07-13 11:45:02 -06002810 ret = ns;
2811 break;
2812 }
Christoph Hellwiged754e52017-11-09 13:50:43 +01002813 if (ns->head->ns_id > nsid)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002814 break;
2815 }
Keith Busch32f0c4a2016-07-13 11:45:02 -06002816 mutex_unlock(&ctrl->namespaces_mutex);
2817 return ret;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002818}
2819
Jens Axboef5d11842017-06-27 12:03:06 -06002820static int nvme_setup_streams_ns(struct nvme_ctrl *ctrl, struct nvme_ns *ns)
2821{
2822 struct streams_directive_params s;
2823 int ret;
2824
2825 if (!ctrl->nr_streams)
2826 return 0;
2827
Christoph Hellwiged754e52017-11-09 13:50:43 +01002828 ret = nvme_get_stream_params(ctrl, &s, ns->head->ns_id);
Jens Axboef5d11842017-06-27 12:03:06 -06002829 if (ret)
2830 return ret;
2831
2832 ns->sws = le32_to_cpu(s.sws);
2833 ns->sgs = le16_to_cpu(s.sgs);
2834
2835 if (ns->sws) {
2836 unsigned int bs = 1 << ns->lba_shift;
2837
2838 blk_queue_io_min(ns->queue, bs * ns->sws);
2839 if (ns->sgs)
2840 blk_queue_io_opt(ns->queue, bs * ns->sws * ns->sgs);
2841 }
2842
2843 return 0;
2844}
2845
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002846static void nvme_alloc_ns(struct nvme_ctrl *ctrl, unsigned nsid)
2847{
2848 struct nvme_ns *ns;
2849 struct gendisk *disk;
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002850 struct nvme_id_ns *id;
2851 char disk_name[DISK_NAME_LEN];
Christoph Hellwig32acab32017-11-02 12:59:30 +01002852 int node = dev_to_node(ctrl->dev), flags = GENHD_FL_EXT_DEVT;
Christoph Hellwiged754e52017-11-09 13:50:43 +01002853 bool new = true;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002854
2855 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
2856 if (!ns)
2857 return;
2858
2859 ns->queue = blk_mq_init_queue(ctrl->tagset);
2860 if (IS_ERR(ns->queue))
Christoph Hellwiged754e52017-11-09 13:50:43 +01002861 goto out_free_ns;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002862 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
2863 ns->queue->queuedata = ns;
2864 ns->ctrl = ctrl;
2865
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002866 kref_init(&ns->kref);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002867 ns->lba_shift = 9; /* set to a default value for 512 until disk is validated */
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002868
2869 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Christoph Hellwigda358252016-03-02 18:07:11 +01002870 nvme_set_queue_limits(ctrl, ns->queue);
Jens Axboef5d11842017-06-27 12:03:06 -06002871 nvme_setup_streams_ns(ctrl, ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002872
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02002873 id = nvme_identify_ns(ctrl, nsid);
2874 if (!id)
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002875 goto out_free_queue;
2876
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02002877 if (id->ncap == 0)
2878 goto out_free_id;
2879
Christoph Hellwiged754e52017-11-09 13:50:43 +01002880 if (nvme_init_ns_head(ns, nsid, id, &new))
2881 goto out_free_id;
2882
Christoph Hellwig32acab32017-11-02 12:59:30 +01002883#ifdef CONFIG_NVME_MULTIPATH
2884 /*
2885 * If multipathing is enabled we need to always use the subsystem
2886 * instance number for numbering our devices to avoid conflicts
2887 * between subsystems that have multiple controllers and thus use
2888 * the multipath-aware subsystem node and those that have a single
2889 * controller and use the controller node directly.
2890 */
2891 if (ns->head->disk) {
2892 sprintf(disk_name, "nvme%dc%dn%d", ctrl->subsys->instance,
2893 ctrl->cntlid, ns->head->instance);
2894 flags = GENHD_FL_HIDDEN;
2895 } else {
2896 sprintf(disk_name, "nvme%dn%d", ctrl->subsys->instance,
2897 ns->head->instance);
2898 }
2899#else
2900 /*
2901 * But without the multipath code enabled, multiple controller per
2902 * subsystems are visible as devices and thus we cannot use the
2903 * subsystem instance.
2904 */
Christoph Hellwiged754e52017-11-09 13:50:43 +01002905 sprintf(disk_name, "nvme%dn%d", ctrl->instance, ns->head->instance);
Christoph Hellwig32acab32017-11-02 12:59:30 +01002906#endif
Christoph Hellwigcdbff4f2017-08-16 16:14:47 +02002907
Christoph Hellwig608cc4b2017-09-06 11:45:24 +02002908 if ((ctrl->quirks & NVME_QUIRK_LIGHTNVM) && id->vs[0] == 0x1) {
2909 if (nvme_nvm_register(ns, disk_name, node)) {
2910 dev_warn(ctrl->device, "LightNVM init failure\n");
Christoph Hellwiged754e52017-11-09 13:50:43 +01002911 goto out_unlink_ns;
Christoph Hellwig608cc4b2017-09-06 11:45:24 +02002912 }
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002913 }
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002914
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002915 disk = alloc_disk_node(0, node);
2916 if (!disk)
Christoph Hellwiged754e52017-11-09 13:50:43 +01002917 goto out_unlink_ns;
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002918
2919 disk->fops = &nvme_fops;
2920 disk->private_data = ns;
2921 disk->queue = ns->queue;
Christoph Hellwig32acab32017-11-02 12:59:30 +01002922 disk->flags = flags;
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002923 memcpy(disk->disk_name, disk_name, DISK_NAME_LEN);
2924 ns->disk = disk;
2925
2926 __nvme_revalidate_disk(disk, id);
2927
Keith Busch32f0c4a2016-07-13 11:45:02 -06002928 mutex_lock(&ctrl->namespaces_mutex);
2929 list_add_tail(&ns->list, &ctrl->namespaces);
2930 mutex_unlock(&ctrl->namespaces_mutex);
2931
Christoph Hellwigd22524a2017-10-18 13:25:42 +02002932 nvme_get_ctrl(ctrl);
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002933
2934 kfree(id);
2935
Dan Williams0d52c7562016-06-15 19:44:20 -07002936 device_add_disk(ctrl->device, ns->disk);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002937 if (sysfs_create_group(&disk_to_dev(ns->disk)->kobj,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002938 &nvme_ns_id_attr_group))
Keith Busch2b9b6e82015-12-22 10:10:45 -07002939 pr_warn("%s: failed to create sysfs group for identification\n",
2940 ns->disk->disk_name);
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002941 if (ns->ndev && nvme_nvm_register_sysfs(ns))
2942 pr_warn("%s: failed to register lightnvm sysfs group for identification\n",
2943 ns->disk->disk_name);
Christoph Hellwig32acab32017-11-02 12:59:30 +01002944
2945 if (new)
2946 nvme_mpath_add_disk(ns->head);
Hannes Reineckee9a48032017-11-09 17:57:06 +01002947 nvme_mpath_add_disk_links(ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002948 return;
Christoph Hellwiged754e52017-11-09 13:50:43 +01002949 out_unlink_ns:
2950 mutex_lock(&ctrl->subsys->lock);
2951 list_del_rcu(&ns->siblings);
2952 mutex_unlock(&ctrl->subsys->lock);
Matias Bjørlingac81bfa92016-09-16 14:25:04 +02002953 out_free_id:
2954 kfree(id);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002955 out_free_queue:
2956 blk_cleanup_queue(ns->queue);
2957 out_free_ns:
2958 kfree(ns);
2959}
2960
2961static void nvme_ns_remove(struct nvme_ns *ns)
2962{
Christoph Hellwiged754e52017-11-09 13:50:43 +01002963 struct nvme_ns_head *head = ns->head;
2964
Keith Busch646017a2016-02-24 09:15:54 -07002965 if (test_and_set_bit(NVME_NS_REMOVING, &ns->flags))
2966 return;
2967
Matias Bjørlingb0b4e092016-09-16 14:25:07 +02002968 if (ns->disk && ns->disk->flags & GENHD_FL_UP) {
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002969 if (blk_get_integrity(ns->disk))
2970 blk_integrity_unregister(ns->disk);
Hannes Reineckee9a48032017-11-09 17:57:06 +01002971 nvme_mpath_remove_disk_links(ns);
Keith Busch2b9b6e82015-12-22 10:10:45 -07002972 sysfs_remove_group(&disk_to_dev(ns->disk)->kobj,
Christoph Hellwig5b85b822017-11-09 13:51:03 +01002973 &nvme_ns_id_attr_group);
Matias Bjørling3dc87dd2016-11-28 22:38:53 +01002974 if (ns->ndev)
2975 nvme_nvm_unregister_sysfs(ns);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002976 del_gendisk(ns->disk);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002977 blk_cleanup_queue(ns->queue);
2978 }
Keith Busch32f0c4a2016-07-13 11:45:02 -06002979
Christoph Hellwiged754e52017-11-09 13:50:43 +01002980 mutex_lock(&ns->ctrl->subsys->lock);
Christoph Hellwig32acab32017-11-02 12:59:30 +01002981 nvme_mpath_clear_current_path(ns);
Christoph Hellwiged754e52017-11-09 13:50:43 +01002982 if (head)
2983 list_del_rcu(&ns->siblings);
2984 mutex_unlock(&ns->ctrl->subsys->lock);
2985
Keith Busch32f0c4a2016-07-13 11:45:02 -06002986 mutex_lock(&ns->ctrl->namespaces_mutex);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002987 list_del_init(&ns->list);
Keith Busch32f0c4a2016-07-13 11:45:02 -06002988 mutex_unlock(&ns->ctrl->namespaces_mutex);
2989
Christoph Hellwiged754e52017-11-09 13:50:43 +01002990 synchronize_srcu(&head->srcu);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01002991 nvme_put_ns(ns);
2992}
2993
Keith Busch540c8012015-10-22 15:45:06 -06002994static void nvme_validate_ns(struct nvme_ctrl *ctrl, unsigned nsid)
2995{
2996 struct nvme_ns *ns;
2997
Keith Busch32f0c4a2016-07-13 11:45:02 -06002998 ns = nvme_find_get_ns(ctrl, nsid);
Keith Busch540c8012015-10-22 15:45:06 -06002999 if (ns) {
Matias Bjørlingb0b4e092016-09-16 14:25:07 +02003000 if (ns->disk && revalidate_disk(ns->disk))
Keith Busch540c8012015-10-22 15:45:06 -06003001 nvme_ns_remove(ns);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003002 nvme_put_ns(ns);
Keith Busch540c8012015-10-22 15:45:06 -06003003 } else
3004 nvme_alloc_ns(ctrl, nsid);
3005}
3006
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303007static void nvme_remove_invalid_namespaces(struct nvme_ctrl *ctrl,
3008 unsigned nsid)
3009{
3010 struct nvme_ns *ns, *next;
3011
3012 list_for_each_entry_safe(ns, next, &ctrl->namespaces, list) {
Christoph Hellwiged754e52017-11-09 13:50:43 +01003013 if (ns->head->ns_id > nsid)
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303014 nvme_ns_remove(ns);
3015 }
3016}
3017
Keith Busch540c8012015-10-22 15:45:06 -06003018static int nvme_scan_ns_list(struct nvme_ctrl *ctrl, unsigned nn)
3019{
3020 struct nvme_ns *ns;
3021 __le32 *ns_list;
3022 unsigned i, j, nsid, prev = 0, num_lists = DIV_ROUND_UP(nn, 1024);
3023 int ret = 0;
3024
3025 ns_list = kzalloc(0x1000, GFP_KERNEL);
3026 if (!ns_list)
3027 return -ENOMEM;
3028
3029 for (i = 0; i < num_lists; i++) {
3030 ret = nvme_identify_ns_list(ctrl, prev, ns_list);
3031 if (ret)
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303032 goto free;
Keith Busch540c8012015-10-22 15:45:06 -06003033
3034 for (j = 0; j < min(nn, 1024U); j++) {
3035 nsid = le32_to_cpu(ns_list[j]);
3036 if (!nsid)
3037 goto out;
3038
3039 nvme_validate_ns(ctrl, nsid);
3040
3041 while (++prev < nsid) {
Keith Busch32f0c4a2016-07-13 11:45:02 -06003042 ns = nvme_find_get_ns(ctrl, prev);
3043 if (ns) {
Keith Busch540c8012015-10-22 15:45:06 -06003044 nvme_ns_remove(ns);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003045 nvme_put_ns(ns);
3046 }
Keith Busch540c8012015-10-22 15:45:06 -06003047 }
3048 }
3049 nn -= j;
3050 }
3051 out:
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303052 nvme_remove_invalid_namespaces(ctrl, prev);
3053 free:
Keith Busch540c8012015-10-22 15:45:06 -06003054 kfree(ns_list);
3055 return ret;
3056}
3057
Christoph Hellwig5955be22016-04-26 13:51:59 +02003058static void nvme_scan_ns_sequential(struct nvme_ctrl *ctrl, unsigned nn)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003059{
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003060 unsigned i;
3061
Keith Busch540c8012015-10-22 15:45:06 -06003062 for (i = 1; i <= nn; i++)
3063 nvme_validate_ns(ctrl, i);
3064
Sunad Bhandary47b0e502016-05-27 15:59:43 +05303065 nvme_remove_invalid_namespaces(ctrl, nn);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003066}
3067
Christoph Hellwig5955be22016-04-26 13:51:59 +02003068static void nvme_scan_work(struct work_struct *work)
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003069{
Christoph Hellwig5955be22016-04-26 13:51:59 +02003070 struct nvme_ctrl *ctrl =
3071 container_of(work, struct nvme_ctrl, scan_work);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003072 struct nvme_id_ctrl *id;
Keith Busch540c8012015-10-22 15:45:06 -06003073 unsigned nn;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003074
Christoph Hellwig5955be22016-04-26 13:51:59 +02003075 if (ctrl->state != NVME_CTRL_LIVE)
3076 return;
3077
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003078 if (nvme_identify_ctrl(ctrl, &id))
3079 return;
Keith Busch540c8012015-10-22 15:45:06 -06003080
3081 nn = le32_to_cpu(id->nn);
Gabriel Krisman Bertazi8ef20742016-10-19 09:51:05 -06003082 if (ctrl->vs >= NVME_VS(1, 1, 0) &&
Keith Busch540c8012015-10-22 15:45:06 -06003083 !(ctrl->quirks & NVME_QUIRK_IDENTIFY_CNS)) {
3084 if (!nvme_scan_ns_list(ctrl, nn))
3085 goto done;
3086 }
Christoph Hellwig5955be22016-04-26 13:51:59 +02003087 nvme_scan_ns_sequential(ctrl, nn);
Keith Busch540c8012015-10-22 15:45:06 -06003088 done:
Keith Busch32f0c4a2016-07-13 11:45:02 -06003089 mutex_lock(&ctrl->namespaces_mutex);
Keith Busch540c8012015-10-22 15:45:06 -06003090 list_sort(NULL, &ctrl->namespaces, ns_cmp);
Christoph Hellwig69d3b8a2015-12-24 15:27:00 +01003091 mutex_unlock(&ctrl->namespaces_mutex);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003092 kfree(id);
3093}
Christoph Hellwig5955be22016-04-26 13:51:59 +02003094
3095void nvme_queue_scan(struct nvme_ctrl *ctrl)
3096{
3097 /*
3098 * Do not queue new scan work when a controller is reset during
3099 * removal.
3100 */
3101 if (ctrl->state == NVME_CTRL_LIVE)
Sagi Grimbergc669ccd2017-05-04 13:33:14 +03003102 queue_work(nvme_wq, &ctrl->scan_work);
Christoph Hellwig5955be22016-04-26 13:51:59 +02003103}
3104EXPORT_SYMBOL_GPL(nvme_queue_scan);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003105
Keith Busch32f0c4a2016-07-13 11:45:02 -06003106/*
3107 * This function iterates the namespace list unlocked to allow recovery from
3108 * controller failure. It is up to the caller to ensure the namespace list is
3109 * not modified by scan work while this function is executing.
3110 */
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003111void nvme_remove_namespaces(struct nvme_ctrl *ctrl)
3112{
3113 struct nvme_ns *ns, *next;
3114
Keith Busch0ff9d4e2016-05-12 08:37:14 -06003115 /*
3116 * The dead states indicates the controller was not gracefully
3117 * disconnected. In that case, we won't be able to flush any data while
3118 * removing the namespaces' disks; fail all the queues now to avoid
3119 * potentially having to clean up the failed sync later.
3120 */
3121 if (ctrl->state == NVME_CTRL_DEAD)
3122 nvme_kill_queues(ctrl);
3123
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003124 list_for_each_entry_safe(ns, next, &ctrl->namespaces, list)
3125 nvme_ns_remove(ns);
3126}
Ming Lin576d55d2016-02-10 10:03:32 -08003127EXPORT_SYMBOL_GPL(nvme_remove_namespaces);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003128
Keith Busche3d78742017-11-07 15:13:14 -07003129static void nvme_aen_uevent(struct nvme_ctrl *ctrl)
3130{
3131 char *envp[2] = { NULL, NULL };
3132 u32 aen_result = ctrl->aen_result;
3133
3134 ctrl->aen_result = 0;
3135 if (!aen_result)
3136 return;
3137
3138 envp[0] = kasprintf(GFP_KERNEL, "NVME_AEN=%#08x", aen_result);
3139 if (!envp[0])
3140 return;
3141 kobject_uevent_env(&ctrl->device->kobj, KOBJ_CHANGE, envp);
3142 kfree(envp[0]);
3143}
3144
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003145static void nvme_async_event_work(struct work_struct *work)
3146{
3147 struct nvme_ctrl *ctrl =
3148 container_of(work, struct nvme_ctrl, async_event_work);
3149
Keith Busche3d78742017-11-07 15:13:14 -07003150 nvme_aen_uevent(ctrl);
Keith Buschad22c352017-11-07 15:13:12 -07003151 ctrl->ops->submit_async_event(ctrl);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003152}
3153
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303154static bool nvme_ctrl_pp_status(struct nvme_ctrl *ctrl)
3155{
3156
3157 u32 csts;
3158
3159 if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts))
3160 return false;
3161
3162 if (csts == ~0)
3163 return false;
3164
3165 return ((ctrl->ctrl_config & NVME_CC_ENABLE) && (csts & NVME_CSTS_PP));
3166}
3167
3168static void nvme_get_fw_slot_info(struct nvme_ctrl *ctrl)
3169{
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303170 struct nvme_fw_slot_info_log *log;
3171
3172 log = kmalloc(sizeof(*log), GFP_KERNEL);
3173 if (!log)
3174 return;
3175
Keith Buschc627c482017-11-07 10:28:31 -07003176 if (nvme_get_log(ctrl, NVME_LOG_FW_SLOT, log, sizeof(*log)))
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303177 dev_warn(ctrl->device,
3178 "Get FW SLOT INFO log error\n");
3179 kfree(log);
3180}
3181
3182static void nvme_fw_act_work(struct work_struct *work)
3183{
3184 struct nvme_ctrl *ctrl = container_of(work,
3185 struct nvme_ctrl, fw_act_work);
3186 unsigned long fw_act_timeout;
3187
3188 if (ctrl->mtfa)
3189 fw_act_timeout = jiffies +
3190 msecs_to_jiffies(ctrl->mtfa * 100);
3191 else
3192 fw_act_timeout = jiffies +
3193 msecs_to_jiffies(admin_timeout * 1000);
3194
3195 nvme_stop_queues(ctrl);
3196 while (nvme_ctrl_pp_status(ctrl)) {
3197 if (time_after(jiffies, fw_act_timeout)) {
3198 dev_warn(ctrl->device,
3199 "Fw activation timeout, reset controller\n");
3200 nvme_reset_ctrl(ctrl);
3201 break;
3202 }
3203 msleep(100);
3204 }
3205
3206 if (ctrl->state != NVME_CTRL_LIVE)
3207 return;
3208
3209 nvme_start_queues(ctrl);
Minwoo Ima806c6c2017-11-02 18:07:44 +09003210 /* read FW slot information to clear the AER */
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303211 nvme_get_fw_slot_info(ctrl);
3212}
3213
Christoph Hellwig7bf58532016-11-10 07:32:34 -08003214void nvme_complete_async_event(struct nvme_ctrl *ctrl, __le16 status,
3215 union nvme_result *res)
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003216{
Christoph Hellwig7bf58532016-11-10 07:32:34 -08003217 u32 result = le32_to_cpu(res->u32);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003218
Keith Buschad22c352017-11-07 15:13:12 -07003219 if (le16_to_cpu(status) >> 1 != NVME_SC_SUCCESS)
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003220 return;
3221
Keith Busche3d78742017-11-07 15:13:14 -07003222 switch (result & 0x7) {
3223 case NVME_AER_ERROR:
3224 case NVME_AER_SMART:
3225 case NVME_AER_CSS:
3226 case NVME_AER_VS:
3227 ctrl->aen_result = result;
3228 break;
3229 default:
3230 break;
3231 }
3232
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003233 switch (result & 0xff07) {
3234 case NVME_AER_NOTICE_NS_CHANGED:
3235 dev_info(ctrl->device, "rescanning\n");
3236 nvme_queue_scan(ctrl);
3237 break;
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303238 case NVME_AER_NOTICE_FW_ACT_STARTING:
Sagi Grimberg1a40d972017-09-21 17:01:36 +03003239 queue_work(nvme_wq, &ctrl->fw_act_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303240 break;
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003241 default:
3242 dev_warn(ctrl->device, "async event result %08x\n", result);
3243 }
Keith Buschad22c352017-11-07 15:13:12 -07003244 queue_work(nvme_wq, &ctrl->async_event_work);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003245}
3246EXPORT_SYMBOL_GPL(nvme_complete_async_event);
3247
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003248void nvme_stop_ctrl(struct nvme_ctrl *ctrl)
Ming Lin576d55d2016-02-10 10:03:32 -08003249{
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003250 nvme_stop_keep_alive(ctrl);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003251 flush_work(&ctrl->async_event_work);
Christoph Hellwig5955be22016-04-26 13:51:59 +02003252 flush_work(&ctrl->scan_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303253 cancel_work_sync(&ctrl->fw_act_work);
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003254}
3255EXPORT_SYMBOL_GPL(nvme_stop_ctrl);
Christoph Hellwig5955be22016-04-26 13:51:59 +02003256
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003257void nvme_start_ctrl(struct nvme_ctrl *ctrl)
3258{
3259 if (ctrl->kato)
3260 nvme_start_keep_alive(ctrl);
3261
3262 if (ctrl->queue_count > 1) {
3263 nvme_queue_scan(ctrl);
Keith Buschd99ca602017-11-07 15:13:13 -07003264 queue_work(nvme_wq, &ctrl->async_event_work);
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03003265 nvme_start_queues(ctrl);
3266 }
3267}
3268EXPORT_SYMBOL_GPL(nvme_start_ctrl);
3269
3270void nvme_uninit_ctrl(struct nvme_ctrl *ctrl)
3271{
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003272 cdev_device_del(&ctrl->cdev, ctrl->device);
Keith Busch53029b02015-11-28 15:41:02 +01003273}
Ming Lin576d55d2016-02-10 10:03:32 -08003274EXPORT_SYMBOL_GPL(nvme_uninit_ctrl);
Keith Busch53029b02015-11-28 15:41:02 +01003275
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003276static void nvme_free_ctrl(struct device *dev)
Keith Busch53029b02015-11-28 15:41:02 +01003277{
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003278 struct nvme_ctrl *ctrl =
3279 container_of(dev, struct nvme_ctrl, ctrl_device);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003280 struct nvme_subsystem *subsys = ctrl->subsys;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003281
Christoph Hellwig9843f682017-10-18 13:10:01 +02003282 ida_simple_remove(&nvme_instance_ida, ctrl->instance);
Keith Busch84fef622017-11-07 10:28:32 -07003283 kfree(ctrl->effects);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003284
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003285 if (subsys) {
3286 mutex_lock(&subsys->lock);
3287 list_del(&ctrl->subsys_entry);
3288 mutex_unlock(&subsys->lock);
3289 sysfs_remove_link(&subsys->dev.kobj, dev_name(ctrl->device));
3290 }
3291
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003292 ctrl->ops->free_ctrl(ctrl);
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003293
3294 if (subsys)
3295 nvme_put_subsystem(subsys);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003296}
3297
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003298/*
3299 * Initialize a NVMe controller structures. This needs to be called during
3300 * earliest initialization so that we have the initialized structured around
3301 * during probing.
3302 */
3303int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev,
3304 const struct nvme_ctrl_ops *ops, unsigned long quirks)
3305{
3306 int ret;
3307
Christoph Hellwigbb8d2612016-04-26 13:51:57 +02003308 ctrl->state = NVME_CTRL_NEW;
3309 spin_lock_init(&ctrl->lock);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003310 INIT_LIST_HEAD(&ctrl->namespaces);
Christoph Hellwig69d3b8a2015-12-24 15:27:00 +01003311 mutex_init(&ctrl->namespaces_mutex);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003312 ctrl->dev = dev;
3313 ctrl->ops = ops;
3314 ctrl->quirks = quirks;
Christoph Hellwig5955be22016-04-26 13:51:59 +02003315 INIT_WORK(&ctrl->scan_work, nvme_scan_work);
Christoph Hellwigf866fc422016-04-26 13:52:00 +02003316 INIT_WORK(&ctrl->async_event_work, nvme_async_event_work);
Arnav Dawnb6dccf72017-07-12 16:10:40 +05303317 INIT_WORK(&ctrl->fw_act_work, nvme_fw_act_work);
Christoph Hellwigc5017e82017-10-29 10:44:29 +02003318 INIT_WORK(&ctrl->delete_work, nvme_delete_ctrl_work);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003319
Christoph Hellwig9843f682017-10-18 13:10:01 +02003320 ret = ida_simple_get(&nvme_instance_ida, 0, 0, GFP_KERNEL);
3321 if (ret < 0)
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003322 goto out;
Christoph Hellwig9843f682017-10-18 13:10:01 +02003323 ctrl->instance = ret;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003324
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003325 device_initialize(&ctrl->ctrl_device);
3326 ctrl->device = &ctrl->ctrl_device;
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003327 ctrl->device->devt = MKDEV(MAJOR(nvme_chr_devt), ctrl->instance);
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003328 ctrl->device->class = nvme_class;
3329 ctrl->device->parent = ctrl->dev;
3330 ctrl->device->groups = nvme_dev_attr_groups;
3331 ctrl->device->release = nvme_free_ctrl;
3332 dev_set_drvdata(ctrl->device, ctrl);
3333 ret = dev_set_name(ctrl->device, "nvme%d", ctrl->instance);
3334 if (ret)
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003335 goto out_release_instance;
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003336
3337 cdev_init(&ctrl->cdev, &nvme_dev_fops);
3338 ctrl->cdev.owner = ops->module;
3339 ret = cdev_device_add(&ctrl->cdev, ctrl->device);
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003340 if (ret)
3341 goto out_free_name;
3342
Andy Lutomirskic5552fd2017-02-07 10:08:45 -08003343 /*
3344 * Initialize latency tolerance controls. The sysfs files won't
3345 * be visible to userspace unless the device actually supports APST.
3346 */
3347 ctrl->device->power.set_latency_tolerance = nvme_set_latency_tolerance;
3348 dev_pm_qos_update_user_latency_tolerance(ctrl->device,
3349 min(default_ps_max_latency_us, (unsigned long)S32_MAX));
3350
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003351 return 0;
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003352out_free_name:
3353 kfree_const(dev->kobj.name);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003354out_release_instance:
Christoph Hellwig9843f682017-10-18 13:10:01 +02003355 ida_simple_remove(&nvme_instance_ida, ctrl->instance);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003356out:
3357 return ret;
3358}
Ming Lin576d55d2016-02-10 10:03:32 -08003359EXPORT_SYMBOL_GPL(nvme_init_ctrl);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003360
Keith Busch69d9a992016-02-24 09:15:56 -07003361/**
3362 * nvme_kill_queues(): Ends all namespace queues
3363 * @ctrl: the dead controller that needs to end
3364 *
3365 * Call this function when the driver determines it is unable to get the
3366 * controller in a state capable of servicing IO.
3367 */
3368void nvme_kill_queues(struct nvme_ctrl *ctrl)
3369{
3370 struct nvme_ns *ns;
3371
Keith Busch32f0c4a2016-07-13 11:45:02 -06003372 mutex_lock(&ctrl->namespaces_mutex);
Ming Lei82654b62017-06-02 16:32:08 +08003373
Ming Lei443bd902017-06-19 10:21:08 +08003374 /* Forcibly unquiesce queues to avoid blocking dispatch */
Scott Bauer7dd1ab12017-07-25 10:27:06 -06003375 if (ctrl->admin_q)
3376 blk_mq_unquiesce_queue(ctrl->admin_q);
Ming Lei443bd902017-06-19 10:21:08 +08003377
Keith Busch32f0c4a2016-07-13 11:45:02 -06003378 list_for_each_entry(ns, &ctrl->namespaces, list) {
Keith Busch69d9a992016-02-24 09:15:56 -07003379 /*
3380 * Revalidating a dead namespace sets capacity to 0. This will
3381 * end buffered writers dirtying pages that can't be synced.
3382 */
Keith Buschf33447b2017-02-10 18:15:51 -05003383 if (!ns->disk || test_and_set_bit(NVME_NS_DEAD, &ns->flags))
3384 continue;
3385 revalidate_disk(ns->disk);
Keith Busch69d9a992016-02-24 09:15:56 -07003386 blk_set_queue_dying(ns->queue);
Ming Lei806f0262017-05-22 23:05:03 +08003387
Ming Lei443bd902017-06-19 10:21:08 +08003388 /* Forcibly unquiesce queues to avoid blocking dispatch */
3389 blk_mq_unquiesce_queue(ns->queue);
Keith Busch69d9a992016-02-24 09:15:56 -07003390 }
Keith Busch32f0c4a2016-07-13 11:45:02 -06003391 mutex_unlock(&ctrl->namespaces_mutex);
Keith Busch69d9a992016-02-24 09:15:56 -07003392}
Linus Torvalds237045f2016-03-18 17:13:31 -07003393EXPORT_SYMBOL_GPL(nvme_kill_queues);
Keith Busch69d9a992016-02-24 09:15:56 -07003394
Keith Busch302ad8c2017-03-01 14:22:12 -05003395void nvme_unfreeze(struct nvme_ctrl *ctrl)
3396{
3397 struct nvme_ns *ns;
3398
3399 mutex_lock(&ctrl->namespaces_mutex);
3400 list_for_each_entry(ns, &ctrl->namespaces, list)
3401 blk_mq_unfreeze_queue(ns->queue);
3402 mutex_unlock(&ctrl->namespaces_mutex);
3403}
3404EXPORT_SYMBOL_GPL(nvme_unfreeze);
3405
3406void nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout)
3407{
3408 struct nvme_ns *ns;
3409
3410 mutex_lock(&ctrl->namespaces_mutex);
3411 list_for_each_entry(ns, &ctrl->namespaces, list) {
3412 timeout = blk_mq_freeze_queue_wait_timeout(ns->queue, timeout);
3413 if (timeout <= 0)
3414 break;
3415 }
3416 mutex_unlock(&ctrl->namespaces_mutex);
3417}
3418EXPORT_SYMBOL_GPL(nvme_wait_freeze_timeout);
3419
3420void nvme_wait_freeze(struct nvme_ctrl *ctrl)
3421{
3422 struct nvme_ns *ns;
3423
3424 mutex_lock(&ctrl->namespaces_mutex);
3425 list_for_each_entry(ns, &ctrl->namespaces, list)
3426 blk_mq_freeze_queue_wait(ns->queue);
3427 mutex_unlock(&ctrl->namespaces_mutex);
3428}
3429EXPORT_SYMBOL_GPL(nvme_wait_freeze);
3430
3431void nvme_start_freeze(struct nvme_ctrl *ctrl)
3432{
3433 struct nvme_ns *ns;
3434
3435 mutex_lock(&ctrl->namespaces_mutex);
3436 list_for_each_entry(ns, &ctrl->namespaces, list)
Ming Lei1671d522017-03-27 20:06:57 +08003437 blk_freeze_queue_start(ns->queue);
Keith Busch302ad8c2017-03-01 14:22:12 -05003438 mutex_unlock(&ctrl->namespaces_mutex);
3439}
3440EXPORT_SYMBOL_GPL(nvme_start_freeze);
3441
Keith Busch25646262016-01-04 09:10:57 -07003442void nvme_stop_queues(struct nvme_ctrl *ctrl)
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003443{
3444 struct nvme_ns *ns;
3445
Keith Busch32f0c4a2016-07-13 11:45:02 -06003446 mutex_lock(&ctrl->namespaces_mutex);
Bart Van Asschea6eaa882016-10-28 17:23:40 -07003447 list_for_each_entry(ns, &ctrl->namespaces, list)
Bart Van Assche3174dd32016-10-28 17:23:19 -07003448 blk_mq_quiesce_queue(ns->queue);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003449 mutex_unlock(&ctrl->namespaces_mutex);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003450}
Ming Lin576d55d2016-02-10 10:03:32 -08003451EXPORT_SYMBOL_GPL(nvme_stop_queues);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003452
Keith Busch25646262016-01-04 09:10:57 -07003453void nvme_start_queues(struct nvme_ctrl *ctrl)
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003454{
3455 struct nvme_ns *ns;
3456
Keith Busch32f0c4a2016-07-13 11:45:02 -06003457 mutex_lock(&ctrl->namespaces_mutex);
Sagi Grimberg8d7b8fa2017-07-04 18:16:58 +03003458 list_for_each_entry(ns, &ctrl->namespaces, list)
Ming Leif6601742017-06-06 23:22:04 +08003459 blk_mq_unquiesce_queue(ns->queue);
Keith Busch32f0c4a2016-07-13 11:45:02 -06003460 mutex_unlock(&ctrl->namespaces_mutex);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003461}
Ming Lin576d55d2016-02-10 10:03:32 -08003462EXPORT_SYMBOL_GPL(nvme_start_queues);
Sagi Grimberg363c9aa2015-12-24 15:26:59 +01003463
Sagi Grimberg31b84462017-10-11 12:53:07 +03003464int nvme_reinit_tagset(struct nvme_ctrl *ctrl, struct blk_mq_tag_set *set)
3465{
3466 if (!ctrl->ops->reinit_request)
3467 return 0;
3468
3469 return blk_mq_tagset_iter(set, set->driver_data,
3470 ctrl->ops->reinit_request);
3471}
3472EXPORT_SYMBOL_GPL(nvme_reinit_tagset);
3473
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003474int __init nvme_core_init(void)
3475{
3476 int result;
3477
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003478 nvme_wq = alloc_workqueue("nvme-wq",
3479 WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
3480 if (!nvme_wq)
3481 return -ENOMEM;
3482
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003483 result = alloc_chrdev_region(&nvme_chr_devt, 0, NVME_MINORS, "nvme");
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003484 if (result < 0)
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003485 goto destroy_wq;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003486
3487 nvme_class = class_create(THIS_MODULE, "nvme");
3488 if (IS_ERR(nvme_class)) {
3489 result = PTR_ERR(nvme_class);
3490 goto unregister_chrdev;
3491 }
3492
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003493 nvme_subsys_class = class_create(THIS_MODULE, "nvme-subsystem");
3494 if (IS_ERR(nvme_subsys_class)) {
3495 result = PTR_ERR(nvme_subsys_class);
3496 goto destroy_class;
3497 }
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003498 return 0;
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003499
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003500destroy_class:
3501 class_destroy(nvme_class);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003502unregister_chrdev:
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003503 unregister_chrdev_region(nvme_chr_devt, NVME_MINORS);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003504destroy_wq:
3505 destroy_workqueue(nvme_wq);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003506 return result;
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003507}
3508
3509void nvme_core_exit(void)
3510{
Christoph Hellwigab9e00c2017-11-09 13:48:55 +01003511 ida_destroy(&nvme_subsystems_ida);
3512 class_destroy(nvme_subsys_class);
Christoph Hellwigf3ca80f2015-11-28 15:40:19 +01003513 class_destroy(nvme_class);
Christoph Hellwiga6a51492017-10-18 16:59:25 +02003514 unregister_chrdev_region(nvme_chr_devt, NVME_MINORS);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02003515 destroy_workqueue(nvme_wq);
Christoph Hellwig5bae7f72015-11-28 15:39:07 +01003516}
Ming Lin576d55d2016-02-10 10:03:32 -08003517
3518MODULE_LICENSE("GPL");
3519MODULE_VERSION("1.0");
3520module_init(nvme_core_init);
3521module_exit(nvme_core_exit);