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