NVMe: Fix error clean-up on nvme_alloc_queue
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / block / nvme-core.c
CommitLineData
b60503ba
MW
1/*
2 * NVM Express device driver
3 * Copyright (c) 2011, 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 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19#include <linux/nvme.h>
20#include <linux/bio.h>
8de05535 21#include <linux/bitops.h>
b60503ba 22#include <linux/blkdev.h>
fd63e9ce 23#include <linux/delay.h>
b60503ba
MW
24#include <linux/errno.h>
25#include <linux/fs.h>
26#include <linux/genhd.h>
5aff9382 27#include <linux/idr.h>
b60503ba
MW
28#include <linux/init.h>
29#include <linux/interrupt.h>
30#include <linux/io.h>
31#include <linux/kdev_t.h>
1fa6aead 32#include <linux/kthread.h>
b60503ba
MW
33#include <linux/kernel.h>
34#include <linux/mm.h>
35#include <linux/module.h>
36#include <linux/moduleparam.h>
37#include <linux/pci.h>
be7b6275 38#include <linux/poison.h>
b60503ba
MW
39#include <linux/sched.h>
40#include <linux/slab.h>
41#include <linux/types.h>
5d0f6131 42#include <scsi/sg.h>
797a796a
HM
43#include <asm-generic/io-64-nonatomic-lo-hi.h>
44
b60503ba
MW
45#define NVME_Q_DEPTH 1024
46#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
47#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
48#define NVME_MINORS 64
e85248e5 49#define ADMIN_TIMEOUT (60 * HZ)
b60503ba
MW
50
51static int nvme_major;
52module_param(nvme_major, int, 0);
53
58ffacb5
MW
54static int use_threaded_interrupts;
55module_param(use_threaded_interrupts, int, 0);
56
1fa6aead
MW
57static DEFINE_SPINLOCK(dev_list_lock);
58static LIST_HEAD(dev_list);
59static struct task_struct *nvme_thread;
60
b60503ba
MW
61/*
62 * An NVM Express queue. Each device has at least two (one for admin
63 * commands and one for I/O commands).
64 */
65struct nvme_queue {
66 struct device *q_dmadev;
091b6092 67 struct nvme_dev *dev;
b60503ba
MW
68 spinlock_t q_lock;
69 struct nvme_command *sq_cmds;
70 volatile struct nvme_completion *cqes;
71 dma_addr_t sq_dma_addr;
72 dma_addr_t cq_dma_addr;
73 wait_queue_head_t sq_full;
1fa6aead 74 wait_queue_t sq_cong_wait;
b60503ba
MW
75 struct bio_list sq_cong;
76 u32 __iomem *q_db;
77 u16 q_depth;
78 u16 cq_vector;
79 u16 sq_head;
80 u16 sq_tail;
81 u16 cq_head;
82123460 82 u16 cq_phase;
b60503ba
MW
83 unsigned long cmdid_data[];
84};
85
86/*
87 * Check we didin't inadvertently grow the command struct
88 */
89static inline void _nvme_check_size(void)
90{
91 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
92 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
93 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
94 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
95 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
f8ebf840 96 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
b60503ba
MW
97 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
98 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
99 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
100 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
6ecec745 101 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
b60503ba
MW
102}
103
5c1281a3 104typedef void (*nvme_completion_fn)(struct nvme_dev *, void *,
c2f5b650
MW
105 struct nvme_completion *);
106
e85248e5 107struct nvme_cmd_info {
c2f5b650
MW
108 nvme_completion_fn fn;
109 void *ctx;
e85248e5
MW
110 unsigned long timeout;
111};
112
113static struct nvme_cmd_info *nvme_cmd_info(struct nvme_queue *nvmeq)
114{
115 return (void *)&nvmeq->cmdid_data[BITS_TO_LONGS(nvmeq->q_depth)];
116}
117
b60503ba 118/**
714a7a22
MW
119 * alloc_cmdid() - Allocate a Command ID
120 * @nvmeq: The queue that will be used for this command
121 * @ctx: A pointer that will be passed to the handler
c2f5b650 122 * @handler: The function to call on completion
b60503ba
MW
123 *
124 * Allocate a Command ID for a queue. The data passed in will
125 * be passed to the completion handler. This is implemented by using
126 * the bottom two bits of the ctx pointer to store the handler ID.
127 * Passing in a pointer that's not 4-byte aligned will cause a BUG.
128 * We can change this if it becomes a problem.
184d2944
MW
129 *
130 * May be called with local interrupts disabled and the q_lock held,
131 * or with interrupts enabled and no locks held.
b60503ba 132 */
c2f5b650
MW
133static int alloc_cmdid(struct nvme_queue *nvmeq, void *ctx,
134 nvme_completion_fn handler, unsigned timeout)
b60503ba 135{
e6d15f79 136 int depth = nvmeq->q_depth - 1;
e85248e5 137 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
b60503ba
MW
138 int cmdid;
139
b60503ba
MW
140 do {
141 cmdid = find_first_zero_bit(nvmeq->cmdid_data, depth);
142 if (cmdid >= depth)
143 return -EBUSY;
144 } while (test_and_set_bit(cmdid, nvmeq->cmdid_data));
145
c2f5b650
MW
146 info[cmdid].fn = handler;
147 info[cmdid].ctx = ctx;
e85248e5 148 info[cmdid].timeout = jiffies + timeout;
b60503ba
MW
149 return cmdid;
150}
151
152static int alloc_cmdid_killable(struct nvme_queue *nvmeq, void *ctx,
c2f5b650 153 nvme_completion_fn handler, unsigned timeout)
b60503ba
MW
154{
155 int cmdid;
156 wait_event_killable(nvmeq->sq_full,
e85248e5 157 (cmdid = alloc_cmdid(nvmeq, ctx, handler, timeout)) >= 0);
b60503ba
MW
158 return (cmdid < 0) ? -EINTR : cmdid;
159}
160
c2f5b650
MW
161/* Special values must be less than 0x1000 */
162#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
d2d87034
MW
163#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
164#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
165#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
00df5cb4 166#define CMD_CTX_FLUSH (0x318 + CMD_CTX_BASE)
be7b6275 167
5c1281a3 168static void special_completion(struct nvme_dev *dev, void *ctx,
c2f5b650
MW
169 struct nvme_completion *cqe)
170{
171 if (ctx == CMD_CTX_CANCELLED)
172 return;
173 if (ctx == CMD_CTX_FLUSH)
174 return;
175 if (ctx == CMD_CTX_COMPLETED) {
5c1281a3 176 dev_warn(&dev->pci_dev->dev,
c2f5b650
MW
177 "completed id %d twice on queue %d\n",
178 cqe->command_id, le16_to_cpup(&cqe->sq_id));
179 return;
180 }
181 if (ctx == CMD_CTX_INVALID) {
5c1281a3 182 dev_warn(&dev->pci_dev->dev,
c2f5b650
MW
183 "invalid id %d completed on queue %d\n",
184 cqe->command_id, le16_to_cpup(&cqe->sq_id));
185 return;
186 }
187
5c1281a3 188 dev_warn(&dev->pci_dev->dev, "Unknown special completion %p\n", ctx);
c2f5b650
MW
189}
190
184d2944
MW
191/*
192 * Called with local interrupts disabled and the q_lock held. May not sleep.
193 */
c2f5b650
MW
194static void *free_cmdid(struct nvme_queue *nvmeq, int cmdid,
195 nvme_completion_fn *fn)
b60503ba 196{
c2f5b650 197 void *ctx;
e85248e5 198 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
b60503ba 199
c2f5b650
MW
200 if (cmdid >= nvmeq->q_depth) {
201 *fn = special_completion;
48e3d398 202 return CMD_CTX_INVALID;
c2f5b650 203 }
859361a2
KB
204 if (fn)
205 *fn = info[cmdid].fn;
c2f5b650
MW
206 ctx = info[cmdid].ctx;
207 info[cmdid].fn = special_completion;
e85248e5 208 info[cmdid].ctx = CMD_CTX_COMPLETED;
b60503ba
MW
209 clear_bit(cmdid, nvmeq->cmdid_data);
210 wake_up(&nvmeq->sq_full);
c2f5b650 211 return ctx;
b60503ba
MW
212}
213
c2f5b650
MW
214static void *cancel_cmdid(struct nvme_queue *nvmeq, int cmdid,
215 nvme_completion_fn *fn)
3c0cf138 216{
c2f5b650 217 void *ctx;
e85248e5 218 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
c2f5b650
MW
219 if (fn)
220 *fn = info[cmdid].fn;
221 ctx = info[cmdid].ctx;
222 info[cmdid].fn = special_completion;
e85248e5 223 info[cmdid].ctx = CMD_CTX_CANCELLED;
c2f5b650 224 return ctx;
3c0cf138
MW
225}
226
5d0f6131 227struct nvme_queue *get_nvmeq(struct nvme_dev *dev)
b60503ba 228{
040a93b5 229 return dev->queues[get_cpu() + 1];
b60503ba
MW
230}
231
5d0f6131 232void put_nvmeq(struct nvme_queue *nvmeq)
b60503ba 233{
1b23484b 234 put_cpu();
b60503ba
MW
235}
236
237/**
714a7a22 238 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
b60503ba
MW
239 * @nvmeq: The queue to use
240 * @cmd: The command to send
241 *
242 * Safe to use from interrupt context
243 */
244static int nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
245{
246 unsigned long flags;
247 u16 tail;
b60503ba
MW
248 spin_lock_irqsave(&nvmeq->q_lock, flags);
249 tail = nvmeq->sq_tail;
250 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
b60503ba
MW
251 if (++tail == nvmeq->q_depth)
252 tail = 0;
7547881d 253 writel(tail, nvmeq->q_db);
b60503ba
MW
254 nvmeq->sq_tail = tail;
255 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
256
257 return 0;
258}
259
eca18b23 260static __le64 **iod_list(struct nvme_iod *iod)
e025344c 261{
eca18b23 262 return ((void *)iod) + iod->offset;
e025344c
SMM
263}
264
eca18b23
MW
265/*
266 * Will slightly overestimate the number of pages needed. This is OK
267 * as it only leads to a small amount of wasted memory for the lifetime of
268 * the I/O.
269 */
270static int nvme_npages(unsigned size)
271{
272 unsigned nprps = DIV_ROUND_UP(size + PAGE_SIZE, PAGE_SIZE);
273 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
274}
b60503ba 275
eca18b23
MW
276static struct nvme_iod *
277nvme_alloc_iod(unsigned nseg, unsigned nbytes, gfp_t gfp)
b60503ba 278{
eca18b23
MW
279 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
280 sizeof(__le64 *) * nvme_npages(nbytes) +
281 sizeof(struct scatterlist) * nseg, gfp);
282
283 if (iod) {
284 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
285 iod->npages = -1;
286 iod->length = nbytes;
2b196034 287 iod->nents = 0;
eca18b23
MW
288 }
289
290 return iod;
b60503ba
MW
291}
292
5d0f6131 293void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
b60503ba 294{
eca18b23
MW
295 const int last_prp = PAGE_SIZE / 8 - 1;
296 int i;
297 __le64 **list = iod_list(iod);
298 dma_addr_t prp_dma = iod->first_dma;
299
300 if (iod->npages == 0)
301 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
302 for (i = 0; i < iod->npages; i++) {
303 __le64 *prp_list = list[i];
304 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
305 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
306 prp_dma = next_prp_dma;
307 }
308 kfree(iod);
b60503ba
MW
309}
310
5c1281a3
MW
311static void requeue_bio(struct nvme_dev *dev, struct bio *bio)
312{
313 struct nvme_queue *nvmeq = get_nvmeq(dev);
314 if (bio_list_empty(&nvmeq->sq_cong))
315 add_wait_queue(&nvmeq->sq_full, &nvmeq->sq_cong_wait);
316 bio_list_add(&nvmeq->sq_cong, bio);
317 put_nvmeq(nvmeq);
318 wake_up_process(nvme_thread);
319}
320
321static void bio_completion(struct nvme_dev *dev, void *ctx,
b60503ba
MW
322 struct nvme_completion *cqe)
323{
eca18b23
MW
324 struct nvme_iod *iod = ctx;
325 struct bio *bio = iod->private;
b60503ba
MW
326 u16 status = le16_to_cpup(&cqe->status) >> 1;
327
2b196034
KB
328 if (iod->nents)
329 dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents,
b60503ba 330 bio_data_dir(bio) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
eca18b23 331 nvme_free_iod(dev, iod);
09a58f53 332 if (status) {
1ad2f893 333 bio_endio(bio, -EIO);
09a58f53 334 } else if (bio->bi_vcnt > bio->bi_idx) {
5c1281a3 335 requeue_bio(dev, bio);
1ad2f893
MW
336 } else {
337 bio_endio(bio, 0);
338 }
b60503ba
MW
339}
340
184d2944 341/* length is in bytes. gfp flags indicates whether we may sleep. */
5d0f6131
VV
342int nvme_setup_prps(struct nvme_dev *dev, struct nvme_common_command *cmd,
343 struct nvme_iod *iod, int total_len, gfp_t gfp)
ff22b54f 344{
99802a7a 345 struct dma_pool *pool;
eca18b23
MW
346 int length = total_len;
347 struct scatterlist *sg = iod->sg;
ff22b54f
MW
348 int dma_len = sg_dma_len(sg);
349 u64 dma_addr = sg_dma_address(sg);
350 int offset = offset_in_page(dma_addr);
e025344c 351 __le64 *prp_list;
eca18b23 352 __le64 **list = iod_list(iod);
e025344c 353 dma_addr_t prp_dma;
eca18b23 354 int nprps, i;
ff22b54f
MW
355
356 cmd->prp1 = cpu_to_le64(dma_addr);
357 length -= (PAGE_SIZE - offset);
358 if (length <= 0)
eca18b23 359 return total_len;
ff22b54f
MW
360
361 dma_len -= (PAGE_SIZE - offset);
362 if (dma_len) {
363 dma_addr += (PAGE_SIZE - offset);
364 } else {
365 sg = sg_next(sg);
366 dma_addr = sg_dma_address(sg);
367 dma_len = sg_dma_len(sg);
368 }
369
370 if (length <= PAGE_SIZE) {
371 cmd->prp2 = cpu_to_le64(dma_addr);
eca18b23 372 return total_len;
e025344c
SMM
373 }
374
375 nprps = DIV_ROUND_UP(length, PAGE_SIZE);
99802a7a
MW
376 if (nprps <= (256 / 8)) {
377 pool = dev->prp_small_pool;
eca18b23 378 iod->npages = 0;
99802a7a
MW
379 } else {
380 pool = dev->prp_page_pool;
eca18b23 381 iod->npages = 1;
99802a7a
MW
382 }
383
b77954cb
MW
384 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
385 if (!prp_list) {
386 cmd->prp2 = cpu_to_le64(dma_addr);
eca18b23
MW
387 iod->npages = -1;
388 return (total_len - length) + PAGE_SIZE;
b77954cb 389 }
eca18b23
MW
390 list[0] = prp_list;
391 iod->first_dma = prp_dma;
e025344c
SMM
392 cmd->prp2 = cpu_to_le64(prp_dma);
393 i = 0;
394 for (;;) {
7523d834 395 if (i == PAGE_SIZE / 8) {
e025344c 396 __le64 *old_prp_list = prp_list;
b77954cb 397 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
eca18b23
MW
398 if (!prp_list)
399 return total_len - length;
400 list[iod->npages++] = prp_list;
7523d834
MW
401 prp_list[0] = old_prp_list[i - 1];
402 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
403 i = 1;
e025344c
SMM
404 }
405 prp_list[i++] = cpu_to_le64(dma_addr);
406 dma_len -= PAGE_SIZE;
407 dma_addr += PAGE_SIZE;
408 length -= PAGE_SIZE;
409 if (length <= 0)
410 break;
411 if (dma_len > 0)
412 continue;
413 BUG_ON(dma_len < 0);
414 sg = sg_next(sg);
415 dma_addr = sg_dma_address(sg);
416 dma_len = sg_dma_len(sg);
ff22b54f
MW
417 }
418
eca18b23 419 return total_len;
ff22b54f
MW
420}
421
1ad2f893
MW
422/* NVMe scatterlists require no holes in the virtual address */
423#define BIOVEC_NOT_VIRT_MERGEABLE(vec1, vec2) ((vec2)->bv_offset || \
424 (((vec1)->bv_offset + (vec1)->bv_len) % PAGE_SIZE))
425
eca18b23 426static int nvme_map_bio(struct device *dev, struct nvme_iod *iod,
b60503ba
MW
427 struct bio *bio, enum dma_data_direction dma_dir, int psegs)
428{
76830840
MW
429 struct bio_vec *bvec, *bvprv = NULL;
430 struct scatterlist *sg = NULL;
1ad2f893 431 int i, old_idx, length = 0, nsegs = 0;
b60503ba 432
eca18b23 433 sg_init_table(iod->sg, psegs);
1ad2f893 434 old_idx = bio->bi_idx;
b60503ba 435 bio_for_each_segment(bvec, bio, i) {
76830840
MW
436 if (bvprv && BIOVEC_PHYS_MERGEABLE(bvprv, bvec)) {
437 sg->length += bvec->bv_len;
438 } else {
1ad2f893
MW
439 if (bvprv && BIOVEC_NOT_VIRT_MERGEABLE(bvprv, bvec))
440 break;
eca18b23 441 sg = sg ? sg + 1 : iod->sg;
76830840
MW
442 sg_set_page(sg, bvec->bv_page, bvec->bv_len,
443 bvec->bv_offset);
444 nsegs++;
445 }
1ad2f893 446 length += bvec->bv_len;
76830840 447 bvprv = bvec;
b60503ba 448 }
1ad2f893 449 bio->bi_idx = i;
eca18b23 450 iod->nents = nsegs;
76830840 451 sg_mark_end(sg);
eca18b23 452 if (dma_map_sg(dev, iod->sg, iod->nents, dma_dir) == 0) {
1ad2f893
MW
453 bio->bi_idx = old_idx;
454 return -ENOMEM;
455 }
456 return length;
b60503ba
MW
457}
458
0e5e4f0e
KB
459/*
460 * We reuse the small pool to allocate the 16-byte range here as it is not
461 * worth having a special pool for these or additional cases to handle freeing
462 * the iod.
463 */
464static int nvme_submit_discard(struct nvme_queue *nvmeq, struct nvme_ns *ns,
465 struct bio *bio, struct nvme_iod *iod, int cmdid)
466{
467 struct nvme_dsm_range *range;
468 struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
469
470 range = dma_pool_alloc(nvmeq->dev->prp_small_pool, GFP_ATOMIC,
471 &iod->first_dma);
472 if (!range)
473 return -ENOMEM;
474
475 iod_list(iod)[0] = (__le64 *)range;
476 iod->npages = 0;
477
478 range->cattr = cpu_to_le32(0);
479 range->nlb = cpu_to_le32(bio->bi_size >> ns->lba_shift);
063cc6d5 480 range->slba = cpu_to_le64(nvme_block_nr(ns, bio->bi_sector));
0e5e4f0e
KB
481
482 memset(cmnd, 0, sizeof(*cmnd));
483 cmnd->dsm.opcode = nvme_cmd_dsm;
484 cmnd->dsm.command_id = cmdid;
485 cmnd->dsm.nsid = cpu_to_le32(ns->ns_id);
486 cmnd->dsm.prp1 = cpu_to_le64(iod->first_dma);
487 cmnd->dsm.nr = 0;
488 cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
489
490 if (++nvmeq->sq_tail == nvmeq->q_depth)
491 nvmeq->sq_tail = 0;
492 writel(nvmeq->sq_tail, nvmeq->q_db);
493
494 return 0;
495}
496
00df5cb4
MW
497static int nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
498 int cmdid)
499{
500 struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
501
502 memset(cmnd, 0, sizeof(*cmnd));
503 cmnd->common.opcode = nvme_cmd_flush;
504 cmnd->common.command_id = cmdid;
505 cmnd->common.nsid = cpu_to_le32(ns->ns_id);
506
507 if (++nvmeq->sq_tail == nvmeq->q_depth)
508 nvmeq->sq_tail = 0;
509 writel(nvmeq->sq_tail, nvmeq->q_db);
510
511 return 0;
512}
513
5d0f6131 514int nvme_submit_flush_data(struct nvme_queue *nvmeq, struct nvme_ns *ns)
00df5cb4
MW
515{
516 int cmdid = alloc_cmdid(nvmeq, (void *)CMD_CTX_FLUSH,
ff976d72 517 special_completion, NVME_IO_TIMEOUT);
00df5cb4
MW
518 if (unlikely(cmdid < 0))
519 return cmdid;
520
521 return nvme_submit_flush(nvmeq, ns, cmdid);
522}
523
184d2944
MW
524/*
525 * Called with local interrupts disabled and the q_lock held. May not sleep.
526 */
b60503ba
MW
527static int nvme_submit_bio_queue(struct nvme_queue *nvmeq, struct nvme_ns *ns,
528 struct bio *bio)
529{
ff22b54f 530 struct nvme_command *cmnd;
eca18b23 531 struct nvme_iod *iod;
b60503ba 532 enum dma_data_direction dma_dir;
1ad2f893 533 int cmdid, length, result = -ENOMEM;
b60503ba
MW
534 u16 control;
535 u32 dsmgmt;
b60503ba
MW
536 int psegs = bio_phys_segments(ns->queue, bio);
537
00df5cb4
MW
538 if ((bio->bi_rw & REQ_FLUSH) && psegs) {
539 result = nvme_submit_flush_data(nvmeq, ns);
540 if (result)
541 return result;
542 }
543
eca18b23
MW
544 iod = nvme_alloc_iod(psegs, bio->bi_size, GFP_ATOMIC);
545 if (!iod)
eeee3226 546 goto nomem;
eca18b23 547 iod->private = bio;
b60503ba 548
eeee3226 549 result = -EBUSY;
ff976d72 550 cmdid = alloc_cmdid(nvmeq, iod, bio_completion, NVME_IO_TIMEOUT);
b60503ba 551 if (unlikely(cmdid < 0))
eca18b23 552 goto free_iod;
b60503ba 553
0e5e4f0e
KB
554 if (bio->bi_rw & REQ_DISCARD) {
555 result = nvme_submit_discard(nvmeq, ns, bio, iod, cmdid);
556 if (result)
557 goto free_cmdid;
558 return result;
559 }
00df5cb4
MW
560 if ((bio->bi_rw & REQ_FLUSH) && !psegs)
561 return nvme_submit_flush(nvmeq, ns, cmdid);
562
b60503ba
MW
563 control = 0;
564 if (bio->bi_rw & REQ_FUA)
565 control |= NVME_RW_FUA;
566 if (bio->bi_rw & (REQ_FAILFAST_DEV | REQ_RAHEAD))
567 control |= NVME_RW_LR;
568
569 dsmgmt = 0;
570 if (bio->bi_rw & REQ_RAHEAD)
571 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
572
ff22b54f 573 cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
b60503ba 574
b8deb62c 575 memset(cmnd, 0, sizeof(*cmnd));
b60503ba 576 if (bio_data_dir(bio)) {
ff22b54f 577 cmnd->rw.opcode = nvme_cmd_write;
b60503ba
MW
578 dma_dir = DMA_TO_DEVICE;
579 } else {
ff22b54f 580 cmnd->rw.opcode = nvme_cmd_read;
b60503ba
MW
581 dma_dir = DMA_FROM_DEVICE;
582 }
583
eca18b23 584 result = nvme_map_bio(nvmeq->q_dmadev, iod, bio, dma_dir, psegs);
1ad2f893 585 if (result < 0)
859361a2 586 goto free_cmdid;
1ad2f893 587 length = result;
b60503ba 588
ff22b54f
MW
589 cmnd->rw.command_id = cmdid;
590 cmnd->rw.nsid = cpu_to_le32(ns->ns_id);
eca18b23
MW
591 length = nvme_setup_prps(nvmeq->dev, &cmnd->common, iod, length,
592 GFP_ATOMIC);
063cc6d5 593 cmnd->rw.slba = cpu_to_le64(nvme_block_nr(ns, bio->bi_sector));
1ad2f893 594 cmnd->rw.length = cpu_to_le16((length >> ns->lba_shift) - 1);
ff22b54f
MW
595 cmnd->rw.control = cpu_to_le16(control);
596 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
b60503ba 597
d8ee9d69
MW
598 bio->bi_sector += length >> 9;
599
b60503ba
MW
600 if (++nvmeq->sq_tail == nvmeq->q_depth)
601 nvmeq->sq_tail = 0;
7547881d 602 writel(nvmeq->sq_tail, nvmeq->q_db);
b60503ba 603
1974b1ae
MW
604 return 0;
605
859361a2
KB
606 free_cmdid:
607 free_cmdid(nvmeq, cmdid, NULL);
eca18b23
MW
608 free_iod:
609 nvme_free_iod(nvmeq->dev, iod);
eeee3226
MW
610 nomem:
611 return result;
b60503ba
MW
612}
613
93c3d65b 614static void nvme_make_request(struct request_queue *q, struct bio *bio)
b60503ba
MW
615{
616 struct nvme_ns *ns = q->queuedata;
040a93b5 617 struct nvme_queue *nvmeq = get_nvmeq(ns->dev);
eeee3226
MW
618 int result = -EBUSY;
619
620 spin_lock_irq(&nvmeq->q_lock);
621 if (bio_list_empty(&nvmeq->sq_cong))
622 result = nvme_submit_bio_queue(nvmeq, ns, bio);
623 if (unlikely(result)) {
624 if (bio_list_empty(&nvmeq->sq_cong))
625 add_wait_queue(&nvmeq->sq_full, &nvmeq->sq_cong_wait);
b60503ba
MW
626 bio_list_add(&nvmeq->sq_cong, bio);
627 }
eeee3226
MW
628
629 spin_unlock_irq(&nvmeq->q_lock);
b60503ba 630 put_nvmeq(nvmeq);
b60503ba
MW
631}
632
b60503ba
MW
633static irqreturn_t nvme_process_cq(struct nvme_queue *nvmeq)
634{
82123460 635 u16 head, phase;
b60503ba 636
b60503ba 637 head = nvmeq->cq_head;
82123460 638 phase = nvmeq->cq_phase;
b60503ba
MW
639
640 for (;;) {
c2f5b650
MW
641 void *ctx;
642 nvme_completion_fn fn;
b60503ba 643 struct nvme_completion cqe = nvmeq->cqes[head];
82123460 644 if ((le16_to_cpu(cqe.status) & 1) != phase)
b60503ba
MW
645 break;
646 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
647 if (++head == nvmeq->q_depth) {
648 head = 0;
82123460 649 phase = !phase;
b60503ba
MW
650 }
651
c2f5b650 652 ctx = free_cmdid(nvmeq, cqe.command_id, &fn);
5c1281a3 653 fn(nvmeq->dev, ctx, &cqe);
b60503ba
MW
654 }
655
656 /* If the controller ignores the cq head doorbell and continuously
657 * writes to the queue, it is theoretically possible to wrap around
658 * the queue twice and mistakenly return IRQ_NONE. Linux only
659 * requires that 0.1% of your interrupts are handled, so this isn't
660 * a big problem.
661 */
82123460 662 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
b60503ba
MW
663 return IRQ_NONE;
664
f1938f6e 665 writel(head, nvmeq->q_db + (1 << nvmeq->dev->db_stride));
b60503ba 666 nvmeq->cq_head = head;
82123460 667 nvmeq->cq_phase = phase;
b60503ba
MW
668
669 return IRQ_HANDLED;
670}
671
672static irqreturn_t nvme_irq(int irq, void *data)
58ffacb5
MW
673{
674 irqreturn_t result;
675 struct nvme_queue *nvmeq = data;
676 spin_lock(&nvmeq->q_lock);
677 result = nvme_process_cq(nvmeq);
678 spin_unlock(&nvmeq->q_lock);
679 return result;
680}
681
682static irqreturn_t nvme_irq_check(int irq, void *data)
683{
684 struct nvme_queue *nvmeq = data;
685 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
686 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
687 return IRQ_NONE;
688 return IRQ_WAKE_THREAD;
689}
690
3c0cf138
MW
691static void nvme_abort_command(struct nvme_queue *nvmeq, int cmdid)
692{
693 spin_lock_irq(&nvmeq->q_lock);
c2f5b650 694 cancel_cmdid(nvmeq, cmdid, NULL);
3c0cf138
MW
695 spin_unlock_irq(&nvmeq->q_lock);
696}
697
c2f5b650
MW
698struct sync_cmd_info {
699 struct task_struct *task;
700 u32 result;
701 int status;
702};
703
5c1281a3 704static void sync_completion(struct nvme_dev *dev, void *ctx,
c2f5b650
MW
705 struct nvme_completion *cqe)
706{
707 struct sync_cmd_info *cmdinfo = ctx;
708 cmdinfo->result = le32_to_cpup(&cqe->result);
709 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
710 wake_up_process(cmdinfo->task);
711}
712
b60503ba
MW
713/*
714 * Returns 0 on success. If the result is negative, it's a Linux error code;
715 * if the result is positive, it's an NVM Express status code
716 */
5d0f6131
VV
717int nvme_submit_sync_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd,
718 u32 *result, unsigned timeout)
b60503ba
MW
719{
720 int cmdid;
721 struct sync_cmd_info cmdinfo;
722
723 cmdinfo.task = current;
724 cmdinfo.status = -EINTR;
725
c2f5b650 726 cmdid = alloc_cmdid_killable(nvmeq, &cmdinfo, sync_completion,
e85248e5 727 timeout);
b60503ba
MW
728 if (cmdid < 0)
729 return cmdid;
730 cmd->common.command_id = cmdid;
731
3c0cf138
MW
732 set_current_state(TASK_KILLABLE);
733 nvme_submit_cmd(nvmeq, cmd);
b60503ba
MW
734 schedule();
735
3c0cf138
MW
736 if (cmdinfo.status == -EINTR) {
737 nvme_abort_command(nvmeq, cmdid);
738 return -EINTR;
739 }
740
b60503ba
MW
741 if (result)
742 *result = cmdinfo.result;
743
744 return cmdinfo.status;
745}
746
5d0f6131 747int nvme_submit_admin_cmd(struct nvme_dev *dev, struct nvme_command *cmd,
b60503ba
MW
748 u32 *result)
749{
e85248e5 750 return nvme_submit_sync_cmd(dev->queues[0], cmd, result, ADMIN_TIMEOUT);
b60503ba
MW
751}
752
753static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
754{
755 int status;
756 struct nvme_command c;
757
758 memset(&c, 0, sizeof(c));
759 c.delete_queue.opcode = opcode;
760 c.delete_queue.qid = cpu_to_le16(id);
761
762 status = nvme_submit_admin_cmd(dev, &c, NULL);
763 if (status)
764 return -EIO;
765 return 0;
766}
767
768static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
769 struct nvme_queue *nvmeq)
770{
771 int status;
772 struct nvme_command c;
773 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
774
775 memset(&c, 0, sizeof(c));
776 c.create_cq.opcode = nvme_admin_create_cq;
777 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
778 c.create_cq.cqid = cpu_to_le16(qid);
779 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
780 c.create_cq.cq_flags = cpu_to_le16(flags);
781 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
782
783 status = nvme_submit_admin_cmd(dev, &c, NULL);
784 if (status)
785 return -EIO;
786 return 0;
787}
788
789static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
790 struct nvme_queue *nvmeq)
791{
792 int status;
793 struct nvme_command c;
794 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
795
796 memset(&c, 0, sizeof(c));
797 c.create_sq.opcode = nvme_admin_create_sq;
798 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
799 c.create_sq.sqid = cpu_to_le16(qid);
800 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
801 c.create_sq.sq_flags = cpu_to_le16(flags);
802 c.create_sq.cqid = cpu_to_le16(qid);
803
804 status = nvme_submit_admin_cmd(dev, &c, NULL);
805 if (status)
806 return -EIO;
807 return 0;
808}
809
810static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
811{
812 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
813}
814
815static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
816{
817 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
818}
819
5d0f6131 820int nvme_identify(struct nvme_dev *dev, unsigned nsid, unsigned cns,
bc5fc7e4
MW
821 dma_addr_t dma_addr)
822{
823 struct nvme_command c;
824
825 memset(&c, 0, sizeof(c));
826 c.identify.opcode = nvme_admin_identify;
827 c.identify.nsid = cpu_to_le32(nsid);
828 c.identify.prp1 = cpu_to_le64(dma_addr);
829 c.identify.cns = cpu_to_le32(cns);
830
831 return nvme_submit_admin_cmd(dev, &c, NULL);
832}
833
5d0f6131 834int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid,
08df1e05 835 dma_addr_t dma_addr, u32 *result)
bc5fc7e4
MW
836{
837 struct nvme_command c;
838
839 memset(&c, 0, sizeof(c));
840 c.features.opcode = nvme_admin_get_features;
a42cecce 841 c.features.nsid = cpu_to_le32(nsid);
bc5fc7e4
MW
842 c.features.prp1 = cpu_to_le64(dma_addr);
843 c.features.fid = cpu_to_le32(fid);
bc5fc7e4 844
08df1e05 845 return nvme_submit_admin_cmd(dev, &c, result);
df348139
MW
846}
847
5d0f6131
VV
848int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11,
849 dma_addr_t dma_addr, u32 *result)
df348139
MW
850{
851 struct nvme_command c;
852
853 memset(&c, 0, sizeof(c));
854 c.features.opcode = nvme_admin_set_features;
855 c.features.prp1 = cpu_to_le64(dma_addr);
856 c.features.fid = cpu_to_le32(fid);
857 c.features.dword11 = cpu_to_le32(dword11);
858
bc5fc7e4
MW
859 return nvme_submit_admin_cmd(dev, &c, result);
860}
861
a09115b2
MW
862/**
863 * nvme_cancel_ios - Cancel outstanding I/Os
864 * @queue: The queue to cancel I/Os on
865 * @timeout: True to only cancel I/Os which have timed out
866 */
867static void nvme_cancel_ios(struct nvme_queue *nvmeq, bool timeout)
868{
869 int depth = nvmeq->q_depth - 1;
870 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
871 unsigned long now = jiffies;
872 int cmdid;
873
874 for_each_set_bit(cmdid, nvmeq->cmdid_data, depth) {
875 void *ctx;
876 nvme_completion_fn fn;
877 static struct nvme_completion cqe = {
af2d9ca7 878 .status = cpu_to_le16(NVME_SC_ABORT_REQ << 1),
a09115b2
MW
879 };
880
881 if (timeout && !time_after(now, info[cmdid].timeout))
882 continue;
883 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d\n", cmdid);
884 ctx = cancel_cmdid(nvmeq, cmdid, &fn);
885 fn(nvmeq->dev, ctx, &cqe);
886 }
887}
888
9e866774
MW
889static void nvme_free_queue_mem(struct nvme_queue *nvmeq)
890{
891 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
892 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
893 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
894 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
895 kfree(nvmeq);
896}
897
b60503ba
MW
898static void nvme_free_queue(struct nvme_dev *dev, int qid)
899{
900 struct nvme_queue *nvmeq = dev->queues[qid];
aba2080f 901 int vector = dev->entry[nvmeq->cq_vector].vector;
b60503ba 902
a09115b2
MW
903 spin_lock_irq(&nvmeq->q_lock);
904 nvme_cancel_ios(nvmeq, false);
3295874b
KB
905 while (bio_list_peek(&nvmeq->sq_cong)) {
906 struct bio *bio = bio_list_pop(&nvmeq->sq_cong);
907 bio_endio(bio, -EIO);
908 }
a09115b2
MW
909 spin_unlock_irq(&nvmeq->q_lock);
910
aba2080f
MW
911 irq_set_affinity_hint(vector, NULL);
912 free_irq(vector, nvmeq);
b60503ba
MW
913
914 /* Don't tell the adapter to delete the admin queue */
915 if (qid) {
916 adapter_delete_sq(dev, qid);
917 adapter_delete_cq(dev, qid);
918 }
919
9e866774 920 nvme_free_queue_mem(nvmeq);
b60503ba
MW
921}
922
923static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
924 int depth, int vector)
925{
926 struct device *dmadev = &dev->pci_dev->dev;
a0cadb85
KB
927 unsigned extra = DIV_ROUND_UP(depth, 8) + (depth *
928 sizeof(struct nvme_cmd_info));
b60503ba
MW
929 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq) + extra, GFP_KERNEL);
930 if (!nvmeq)
931 return NULL;
932
933 nvmeq->cqes = dma_alloc_coherent(dmadev, CQ_SIZE(depth),
934 &nvmeq->cq_dma_addr, GFP_KERNEL);
935 if (!nvmeq->cqes)
936 goto free_nvmeq;
937 memset((void *)nvmeq->cqes, 0, CQ_SIZE(depth));
938
939 nvmeq->sq_cmds = dma_alloc_coherent(dmadev, SQ_SIZE(depth),
940 &nvmeq->sq_dma_addr, GFP_KERNEL);
941 if (!nvmeq->sq_cmds)
942 goto free_cqdma;
943
944 nvmeq->q_dmadev = dmadev;
091b6092 945 nvmeq->dev = dev;
b60503ba
MW
946 spin_lock_init(&nvmeq->q_lock);
947 nvmeq->cq_head = 0;
82123460 948 nvmeq->cq_phase = 1;
b60503ba 949 init_waitqueue_head(&nvmeq->sq_full);
1fa6aead 950 init_waitqueue_entry(&nvmeq->sq_cong_wait, nvme_thread);
b60503ba 951 bio_list_init(&nvmeq->sq_cong);
f1938f6e 952 nvmeq->q_db = &dev->dbs[qid << (dev->db_stride + 1)];
b60503ba
MW
953 nvmeq->q_depth = depth;
954 nvmeq->cq_vector = vector;
955
956 return nvmeq;
957
958 free_cqdma:
68b8eca5 959 dma_free_coherent(dmadev, CQ_SIZE(depth), (void *)nvmeq->cqes,
b60503ba
MW
960 nvmeq->cq_dma_addr);
961 free_nvmeq:
962 kfree(nvmeq);
963 return NULL;
964}
965
3001082c
MW
966static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
967 const char *name)
968{
58ffacb5
MW
969 if (use_threaded_interrupts)
970 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
ec6ce618 971 nvme_irq_check, nvme_irq,
58ffacb5
MW
972 IRQF_DISABLED | IRQF_SHARED,
973 name, nvmeq);
3001082c
MW
974 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
975 IRQF_DISABLED | IRQF_SHARED, name, nvmeq);
976}
977
8d85fce7
GKH
978static struct nvme_queue *nvme_create_queue(struct nvme_dev *dev, int qid,
979 int cq_size, int vector)
b60503ba
MW
980{
981 int result;
982 struct nvme_queue *nvmeq = nvme_alloc_queue(dev, qid, cq_size, vector);
983
3f85d50b 984 if (!nvmeq)
6f0f5449 985 return ERR_PTR(-ENOMEM);
3f85d50b 986
b60503ba
MW
987 result = adapter_alloc_cq(dev, qid, nvmeq);
988 if (result < 0)
989 goto free_nvmeq;
990
991 result = adapter_alloc_sq(dev, qid, nvmeq);
992 if (result < 0)
993 goto release_cq;
994
3001082c 995 result = queue_request_irq(dev, nvmeq, "nvme");
b60503ba
MW
996 if (result < 0)
997 goto release_sq;
998
999 return nvmeq;
1000
1001 release_sq:
1002 adapter_delete_sq(dev, qid);
1003 release_cq:
1004 adapter_delete_cq(dev, qid);
1005 free_nvmeq:
1006 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1007 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
1008 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
1009 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1010 kfree(nvmeq);
6f0f5449 1011 return ERR_PTR(result);
b60503ba
MW
1012}
1013
8d85fce7 1014static int nvme_configure_admin_queue(struct nvme_dev *dev)
b60503ba 1015{
9e866774 1016 int result = 0;
b60503ba 1017 u32 aqa;
22605f96
MW
1018 u64 cap;
1019 unsigned long timeout;
b60503ba
MW
1020 struct nvme_queue *nvmeq;
1021
1022 dev->dbs = ((void __iomem *)dev->bar) + 4096;
1023
1024 nvmeq = nvme_alloc_queue(dev, 0, 64, 0);
3f85d50b
MW
1025 if (!nvmeq)
1026 return -ENOMEM;
b60503ba
MW
1027
1028 aqa = nvmeq->q_depth - 1;
1029 aqa |= aqa << 16;
1030
1031 dev->ctrl_config = NVME_CC_ENABLE | NVME_CC_CSS_NVM;
1032 dev->ctrl_config |= (PAGE_SHIFT - 12) << NVME_CC_MPS_SHIFT;
1033 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
7f53f9d2 1034 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
b60503ba 1035
5911f200 1036 writel(0, &dev->bar->cc);
b60503ba
MW
1037 writel(aqa, &dev->bar->aqa);
1038 writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1039 writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
1040 writel(dev->ctrl_config, &dev->bar->cc);
1041
22605f96
MW
1042 cap = readq(&dev->bar->cap);
1043 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
f1938f6e 1044 dev->db_stride = NVME_CAP_STRIDE(cap);
22605f96 1045
9e866774 1046 while (!result && !(readl(&dev->bar->csts) & NVME_CSTS_RDY)) {
b60503ba
MW
1047 msleep(100);
1048 if (fatal_signal_pending(current))
9e866774 1049 result = -EINTR;
22605f96
MW
1050 if (time_after(jiffies, timeout)) {
1051 dev_err(&dev->pci_dev->dev,
1052 "Device not ready; aborting initialisation\n");
9e866774 1053 result = -ENODEV;
22605f96 1054 }
b60503ba
MW
1055 }
1056
025c557a
KB
1057 if (result)
1058 goto free_q;
9e866774 1059
3001082c 1060 result = queue_request_irq(dev, nvmeq, "nvme admin");
025c557a
KB
1061 if (result)
1062 goto free_q;
1063
b60503ba
MW
1064 dev->queues[0] = nvmeq;
1065 return result;
025c557a
KB
1066
1067 free_q:
1068 nvme_free_queue_mem(nvmeq);
1069 return result;
b60503ba
MW
1070}
1071
5d0f6131 1072struct nvme_iod *nvme_map_user_pages(struct nvme_dev *dev, int write,
eca18b23 1073 unsigned long addr, unsigned length)
b60503ba 1074{
36c14ed9 1075 int i, err, count, nents, offset;
7fc3cdab
MW
1076 struct scatterlist *sg;
1077 struct page **pages;
eca18b23 1078 struct nvme_iod *iod;
36c14ed9
MW
1079
1080 if (addr & 3)
eca18b23 1081 return ERR_PTR(-EINVAL);
7fc3cdab 1082 if (!length)
eca18b23 1083 return ERR_PTR(-EINVAL);
7fc3cdab 1084
36c14ed9 1085 offset = offset_in_page(addr);
7fc3cdab
MW
1086 count = DIV_ROUND_UP(offset + length, PAGE_SIZE);
1087 pages = kcalloc(count, sizeof(*pages), GFP_KERNEL);
22fff826
DC
1088 if (!pages)
1089 return ERR_PTR(-ENOMEM);
36c14ed9
MW
1090
1091 err = get_user_pages_fast(addr, count, 1, pages);
1092 if (err < count) {
1093 count = err;
1094 err = -EFAULT;
1095 goto put_pages;
1096 }
7fc3cdab 1097
eca18b23
MW
1098 iod = nvme_alloc_iod(count, length, GFP_KERNEL);
1099 sg = iod->sg;
36c14ed9 1100 sg_init_table(sg, count);
d0ba1e49
MW
1101 for (i = 0; i < count; i++) {
1102 sg_set_page(&sg[i], pages[i],
1103 min_t(int, length, PAGE_SIZE - offset), offset);
1104 length -= (PAGE_SIZE - offset);
1105 offset = 0;
7fc3cdab 1106 }
fe304c43 1107 sg_mark_end(&sg[i - 1]);
1c2ad9fa 1108 iod->nents = count;
7fc3cdab
MW
1109
1110 err = -ENOMEM;
1111 nents = dma_map_sg(&dev->pci_dev->dev, sg, count,
1112 write ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
36c14ed9 1113 if (!nents)
eca18b23 1114 goto free_iod;
b60503ba 1115
7fc3cdab 1116 kfree(pages);
eca18b23 1117 return iod;
b60503ba 1118
eca18b23
MW
1119 free_iod:
1120 kfree(iod);
7fc3cdab
MW
1121 put_pages:
1122 for (i = 0; i < count; i++)
1123 put_page(pages[i]);
1124 kfree(pages);
eca18b23 1125 return ERR_PTR(err);
7fc3cdab 1126}
b60503ba 1127
5d0f6131 1128void nvme_unmap_user_pages(struct nvme_dev *dev, int write,
1c2ad9fa 1129 struct nvme_iod *iod)
7fc3cdab 1130{
1c2ad9fa 1131 int i;
b60503ba 1132
1c2ad9fa
MW
1133 dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents,
1134 write ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
7fc3cdab 1135
1c2ad9fa
MW
1136 for (i = 0; i < iod->nents; i++)
1137 put_page(sg_page(&iod->sg[i]));
7fc3cdab 1138}
b60503ba 1139
a53295b6
MW
1140static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1141{
1142 struct nvme_dev *dev = ns->dev;
1143 struct nvme_queue *nvmeq;
1144 struct nvme_user_io io;
1145 struct nvme_command c;
1146 unsigned length;
eca18b23
MW
1147 int status;
1148 struct nvme_iod *iod;
a53295b6
MW
1149
1150 if (copy_from_user(&io, uio, sizeof(io)))
1151 return -EFAULT;
6c7d4945
MW
1152 length = (io.nblocks + 1) << ns->lba_shift;
1153
1154 switch (io.opcode) {
1155 case nvme_cmd_write:
1156 case nvme_cmd_read:
6bbf1acd 1157 case nvme_cmd_compare:
eca18b23 1158 iod = nvme_map_user_pages(dev, io.opcode & 1, io.addr, length);
6413214c 1159 break;
6c7d4945 1160 default:
6bbf1acd 1161 return -EINVAL;
6c7d4945
MW
1162 }
1163
eca18b23
MW
1164 if (IS_ERR(iod))
1165 return PTR_ERR(iod);
a53295b6
MW
1166
1167 memset(&c, 0, sizeof(c));
1168 c.rw.opcode = io.opcode;
1169 c.rw.flags = io.flags;
6c7d4945 1170 c.rw.nsid = cpu_to_le32(ns->ns_id);
a53295b6 1171 c.rw.slba = cpu_to_le64(io.slba);
6c7d4945 1172 c.rw.length = cpu_to_le16(io.nblocks);
a53295b6 1173 c.rw.control = cpu_to_le16(io.control);
1c9b5265
MW
1174 c.rw.dsmgmt = cpu_to_le32(io.dsmgmt);
1175 c.rw.reftag = cpu_to_le32(io.reftag);
1176 c.rw.apptag = cpu_to_le16(io.apptag);
1177 c.rw.appmask = cpu_to_le16(io.appmask);
a53295b6 1178 /* XXX: metadata */
eca18b23 1179 length = nvme_setup_prps(dev, &c.common, iod, length, GFP_KERNEL);
a53295b6 1180
040a93b5 1181 nvmeq = get_nvmeq(dev);
fa922821
MW
1182 /*
1183 * Since nvme_submit_sync_cmd sleeps, we can't keep preemption
b1ad37ef
MW
1184 * disabled. We may be preempted at any point, and be rescheduled
1185 * to a different CPU. That will cause cacheline bouncing, but no
1186 * additional races since q_lock already protects against other CPUs.
1187 */
a53295b6 1188 put_nvmeq(nvmeq);
b77954cb
MW
1189 if (length != (io.nblocks + 1) << ns->lba_shift)
1190 status = -ENOMEM;
1191 else
ff976d72 1192 status = nvme_submit_sync_cmd(nvmeq, &c, NULL, NVME_IO_TIMEOUT);
a53295b6 1193
1c2ad9fa 1194 nvme_unmap_user_pages(dev, io.opcode & 1, iod);
eca18b23 1195 nvme_free_iod(dev, iod);
a53295b6
MW
1196 return status;
1197}
1198
50af8bae 1199static int nvme_user_admin_cmd(struct nvme_dev *dev,
6bbf1acd 1200 struct nvme_admin_cmd __user *ucmd)
6ee44cdc 1201{
6bbf1acd 1202 struct nvme_admin_cmd cmd;
6ee44cdc 1203 struct nvme_command c;
eca18b23 1204 int status, length;
c7d36ab8 1205 struct nvme_iod *uninitialized_var(iod);
6ee44cdc 1206
6bbf1acd
MW
1207 if (!capable(CAP_SYS_ADMIN))
1208 return -EACCES;
1209 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
6ee44cdc 1210 return -EFAULT;
6ee44cdc
MW
1211
1212 memset(&c, 0, sizeof(c));
6bbf1acd
MW
1213 c.common.opcode = cmd.opcode;
1214 c.common.flags = cmd.flags;
1215 c.common.nsid = cpu_to_le32(cmd.nsid);
1216 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1217 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1218 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1219 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1220 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1221 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1222 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1223 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1224
1225 length = cmd.data_len;
1226 if (cmd.data_len) {
49742188
MW
1227 iod = nvme_map_user_pages(dev, cmd.opcode & 1, cmd.addr,
1228 length);
eca18b23
MW
1229 if (IS_ERR(iod))
1230 return PTR_ERR(iod);
1231 length = nvme_setup_prps(dev, &c.common, iod, length,
1232 GFP_KERNEL);
6bbf1acd
MW
1233 }
1234
1235 if (length != cmd.data_len)
b77954cb
MW
1236 status = -ENOMEM;
1237 else
f4f117f6 1238 status = nvme_submit_admin_cmd(dev, &c, &cmd.result);
eca18b23 1239
6bbf1acd 1240 if (cmd.data_len) {
1c2ad9fa 1241 nvme_unmap_user_pages(dev, cmd.opcode & 1, iod);
eca18b23 1242 nvme_free_iod(dev, iod);
6bbf1acd 1243 }
f4f117f6
KB
1244
1245 if (!status && copy_to_user(&ucmd->result, &cmd.result,
1246 sizeof(cmd.result)))
1247 status = -EFAULT;
1248
6ee44cdc
MW
1249 return status;
1250}
1251
b60503ba
MW
1252static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1253 unsigned long arg)
1254{
1255 struct nvme_ns *ns = bdev->bd_disk->private_data;
1256
1257 switch (cmd) {
6bbf1acd
MW
1258 case NVME_IOCTL_ID:
1259 return ns->ns_id;
1260 case NVME_IOCTL_ADMIN_CMD:
50af8bae 1261 return nvme_user_admin_cmd(ns->dev, (void __user *)arg);
a53295b6
MW
1262 case NVME_IOCTL_SUBMIT_IO:
1263 return nvme_submit_io(ns, (void __user *)arg);
5d0f6131
VV
1264 case SG_GET_VERSION_NUM:
1265 return nvme_sg_get_version_num((void __user *)arg);
1266 case SG_IO:
1267 return nvme_sg_io(ns, (void __user *)arg);
b60503ba
MW
1268 default:
1269 return -ENOTTY;
1270 }
1271}
1272
1273static const struct block_device_operations nvme_fops = {
1274 .owner = THIS_MODULE,
1275 .ioctl = nvme_ioctl,
49481682 1276 .compat_ioctl = nvme_ioctl,
b60503ba
MW
1277};
1278
1fa6aead
MW
1279static void nvme_resubmit_bios(struct nvme_queue *nvmeq)
1280{
1281 while (bio_list_peek(&nvmeq->sq_cong)) {
1282 struct bio *bio = bio_list_pop(&nvmeq->sq_cong);
1283 struct nvme_ns *ns = bio->bi_bdev->bd_disk->private_data;
1284 if (nvme_submit_bio_queue(nvmeq, ns, bio)) {
1285 bio_list_add_head(&nvmeq->sq_cong, bio);
1286 break;
1287 }
3cb967c0
MW
1288 if (bio_list_empty(&nvmeq->sq_cong))
1289 remove_wait_queue(&nvmeq->sq_full,
1290 &nvmeq->sq_cong_wait);
1fa6aead
MW
1291 }
1292}
1293
1294static int nvme_kthread(void *data)
1295{
1296 struct nvme_dev *dev;
1297
1298 while (!kthread_should_stop()) {
564a232c 1299 set_current_state(TASK_INTERRUPTIBLE);
1fa6aead
MW
1300 spin_lock(&dev_list_lock);
1301 list_for_each_entry(dev, &dev_list, node) {
1302 int i;
1303 for (i = 0; i < dev->queue_count; i++) {
1304 struct nvme_queue *nvmeq = dev->queues[i];
740216fc
MW
1305 if (!nvmeq)
1306 continue;
1fa6aead
MW
1307 spin_lock_irq(&nvmeq->q_lock);
1308 if (nvme_process_cq(nvmeq))
1309 printk("process_cq did something\n");
a09115b2 1310 nvme_cancel_ios(nvmeq, true);
1fa6aead
MW
1311 nvme_resubmit_bios(nvmeq);
1312 spin_unlock_irq(&nvmeq->q_lock);
1313 }
1314 }
1315 spin_unlock(&dev_list_lock);
acb7aa0d 1316 schedule_timeout(round_jiffies_relative(HZ));
1fa6aead
MW
1317 }
1318 return 0;
1319}
1320
5aff9382
MW
1321static DEFINE_IDA(nvme_index_ida);
1322
1323static int nvme_get_ns_idx(void)
1324{
1325 int index, error;
1326
1327 do {
1328 if (!ida_pre_get(&nvme_index_ida, GFP_KERNEL))
1329 return -1;
1330
1331 spin_lock(&dev_list_lock);
1332 error = ida_get_new(&nvme_index_ida, &index);
1333 spin_unlock(&dev_list_lock);
1334 } while (error == -EAGAIN);
1335
1336 if (error)
1337 index = -1;
1338 return index;
1339}
1340
1341static void nvme_put_ns_idx(int index)
1342{
1343 spin_lock(&dev_list_lock);
1344 ida_remove(&nvme_index_ida, index);
1345 spin_unlock(&dev_list_lock);
1346}
1347
0e5e4f0e
KB
1348static void nvme_config_discard(struct nvme_ns *ns)
1349{
1350 u32 logical_block_size = queue_logical_block_size(ns->queue);
1351 ns->queue->limits.discard_zeroes_data = 0;
1352 ns->queue->limits.discard_alignment = logical_block_size;
1353 ns->queue->limits.discard_granularity = logical_block_size;
1354 ns->queue->limits.max_discard_sectors = 0xffffffff;
1355 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue);
1356}
1357
5aff9382 1358static struct nvme_ns *nvme_alloc_ns(struct nvme_dev *dev, int nsid,
b60503ba
MW
1359 struct nvme_id_ns *id, struct nvme_lba_range_type *rt)
1360{
1361 struct nvme_ns *ns;
1362 struct gendisk *disk;
1363 int lbaf;
1364
1365 if (rt->attributes & NVME_LBART_ATTRIB_HIDE)
1366 return NULL;
1367
1368 ns = kzalloc(sizeof(*ns), GFP_KERNEL);
1369 if (!ns)
1370 return NULL;
1371 ns->queue = blk_alloc_queue(GFP_KERNEL);
1372 if (!ns->queue)
1373 goto out_free_ns;
4eeb9215
MW
1374 ns->queue->queue_flags = QUEUE_FLAG_DEFAULT;
1375 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
1376 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
b60503ba
MW
1377 blk_queue_make_request(ns->queue, nvme_make_request);
1378 ns->dev = dev;
1379 ns->queue->queuedata = ns;
1380
1381 disk = alloc_disk(NVME_MINORS);
1382 if (!disk)
1383 goto out_free_queue;
5aff9382 1384 ns->ns_id = nsid;
b60503ba
MW
1385 ns->disk = disk;
1386 lbaf = id->flbas & 0xf;
1387 ns->lba_shift = id->lbaf[lbaf].ds;
e9ef4636 1388 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
8fc23e03
KB
1389 if (dev->max_hw_sectors)
1390 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
b60503ba
MW
1391
1392 disk->major = nvme_major;
1393 disk->minors = NVME_MINORS;
5aff9382 1394 disk->first_minor = NVME_MINORS * nvme_get_ns_idx();
b60503ba
MW
1395 disk->fops = &nvme_fops;
1396 disk->private_data = ns;
1397 disk->queue = ns->queue;
388f037f 1398 disk->driverfs_dev = &dev->pci_dev->dev;
5aff9382 1399 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
b60503ba
MW
1400 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
1401
0e5e4f0e
KB
1402 if (dev->oncs & NVME_CTRL_ONCS_DSM)
1403 nvme_config_discard(ns);
1404
b60503ba
MW
1405 return ns;
1406
1407 out_free_queue:
1408 blk_cleanup_queue(ns->queue);
1409 out_free_ns:
1410 kfree(ns);
1411 return NULL;
1412}
1413
1414static void nvme_ns_free(struct nvme_ns *ns)
1415{
5aff9382 1416 int index = ns->disk->first_minor / NVME_MINORS;
b60503ba 1417 put_disk(ns->disk);
5aff9382 1418 nvme_put_ns_idx(index);
b60503ba
MW
1419 blk_cleanup_queue(ns->queue);
1420 kfree(ns);
1421}
1422
b3b06812 1423static int set_queue_count(struct nvme_dev *dev, int count)
b60503ba
MW
1424{
1425 int status;
1426 u32 result;
b3b06812 1427 u32 q_count = (count - 1) | ((count - 1) << 16);
b60503ba 1428
df348139 1429 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
bc5fc7e4 1430 &result);
b60503ba
MW
1431 if (status)
1432 return -EIO;
1433 return min(result & 0xffff, result >> 16) + 1;
1434}
1435
8d85fce7 1436static int nvme_setup_io_queues(struct nvme_dev *dev)
b60503ba 1437{
a0cadb85 1438 int result, cpu, i, nr_io_queues, db_bar_size, q_depth;
b60503ba 1439
b348b7d5
MW
1440 nr_io_queues = num_online_cpus();
1441 result = set_queue_count(dev, nr_io_queues);
1b23484b
MW
1442 if (result < 0)
1443 return result;
b348b7d5
MW
1444 if (result < nr_io_queues)
1445 nr_io_queues = result;
b60503ba 1446
1b23484b
MW
1447 /* Deregister the admin queue's interrupt */
1448 free_irq(dev->entry[0].vector, dev->queues[0]);
1449
f1938f6e
MW
1450 db_bar_size = 4096 + ((nr_io_queues + 1) << (dev->db_stride + 3));
1451 if (db_bar_size > 8192) {
1452 iounmap(dev->bar);
1453 dev->bar = ioremap(pci_resource_start(dev->pci_dev, 0),
1454 db_bar_size);
1455 dev->dbs = ((void __iomem *)dev->bar) + 4096;
1456 dev->queues[0]->q_db = dev->dbs;
1457 }
1458
b348b7d5 1459 for (i = 0; i < nr_io_queues; i++)
1b23484b
MW
1460 dev->entry[i].entry = i;
1461 for (;;) {
b348b7d5
MW
1462 result = pci_enable_msix(dev->pci_dev, dev->entry,
1463 nr_io_queues);
1b23484b
MW
1464 if (result == 0) {
1465 break;
1466 } else if (result > 0) {
b348b7d5 1467 nr_io_queues = result;
1b23484b
MW
1468 continue;
1469 } else {
b348b7d5 1470 nr_io_queues = 1;
1b23484b
MW
1471 break;
1472 }
1473 }
1474
1475 result = queue_request_irq(dev, dev->queues[0], "nvme admin");
1476 /* XXX: handle failure here */
1477
1478 cpu = cpumask_first(cpu_online_mask);
b348b7d5 1479 for (i = 0; i < nr_io_queues; i++) {
1b23484b
MW
1480 irq_set_affinity_hint(dev->entry[i].vector, get_cpu_mask(cpu));
1481 cpu = cpumask_next(cpu, cpu_online_mask);
1482 }
1483
a0cadb85
KB
1484 q_depth = min_t(int, NVME_CAP_MQES(readq(&dev->bar->cap)) + 1,
1485 NVME_Q_DEPTH);
b348b7d5 1486 for (i = 0; i < nr_io_queues; i++) {
a0cadb85 1487 dev->queues[i + 1] = nvme_create_queue(dev, i + 1, q_depth, i);
6f0f5449
MW
1488 if (IS_ERR(dev->queues[i + 1]))
1489 return PTR_ERR(dev->queues[i + 1]);
1b23484b
MW
1490 dev->queue_count++;
1491 }
b60503ba 1492
9ecdc946
MW
1493 for (; i < num_possible_cpus(); i++) {
1494 int target = i % rounddown_pow_of_two(dev->queue_count - 1);
1495 dev->queues[i + 1] = dev->queues[target + 1];
1496 }
1497
b60503ba
MW
1498 return 0;
1499}
1500
1501static void nvme_free_queues(struct nvme_dev *dev)
1502{
1503 int i;
1504
1505 for (i = dev->queue_count - 1; i >= 0; i--)
1506 nvme_free_queue(dev, i);
1507}
1508
422ef0c7
MW
1509/*
1510 * Return: error value if an error occurred setting up the queues or calling
1511 * Identify Device. 0 if these succeeded, even if adding some of the
1512 * namespaces failed. At the moment, these failures are silent. TBD which
1513 * failures should be reported.
1514 */
8d85fce7 1515static int nvme_dev_add(struct nvme_dev *dev)
b60503ba
MW
1516{
1517 int res, nn, i;
1518 struct nvme_ns *ns, *next;
51814232 1519 struct nvme_id_ctrl *ctrl;
bc5fc7e4
MW
1520 struct nvme_id_ns *id_ns;
1521 void *mem;
b60503ba 1522 dma_addr_t dma_addr;
b60503ba
MW
1523
1524 res = nvme_setup_io_queues(dev);
1525 if (res)
1526 return res;
1527
bc5fc7e4 1528 mem = dma_alloc_coherent(&dev->pci_dev->dev, 8192, &dma_addr,
b60503ba
MW
1529 GFP_KERNEL);
1530
bc5fc7e4 1531 res = nvme_identify(dev, 0, 1, dma_addr);
b60503ba
MW
1532 if (res) {
1533 res = -EIO;
1534 goto out_free;
1535 }
1536
bc5fc7e4 1537 ctrl = mem;
51814232 1538 nn = le32_to_cpup(&ctrl->nn);
0e5e4f0e 1539 dev->oncs = le16_to_cpup(&ctrl->oncs);
51814232
MW
1540 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
1541 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
1542 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
8fc23e03
KB
1543 if (ctrl->mdts) {
1544 int shift = NVME_CAP_MPSMIN(readq(&dev->bar->cap)) + 12;
1545 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
1546 }
b60503ba 1547
bc5fc7e4 1548 id_ns = mem;
2b2c1896 1549 for (i = 1; i <= nn; i++) {
bc5fc7e4 1550 res = nvme_identify(dev, i, 0, dma_addr);
b60503ba
MW
1551 if (res)
1552 continue;
1553
bc5fc7e4 1554 if (id_ns->ncap == 0)
b60503ba
MW
1555 continue;
1556
bc5fc7e4 1557 res = nvme_get_features(dev, NVME_FEAT_LBA_RANGE, i,
08df1e05 1558 dma_addr + 4096, NULL);
b60503ba 1559 if (res)
12209036 1560 memset(mem + 4096, 0, 4096);
b60503ba 1561
bc5fc7e4 1562 ns = nvme_alloc_ns(dev, i, mem, mem + 4096);
b60503ba
MW
1563 if (ns)
1564 list_add_tail(&ns->list, &dev->namespaces);
1565 }
1566 list_for_each_entry(ns, &dev->namespaces, list)
1567 add_disk(ns->disk);
422ef0c7 1568 res = 0;
bc5fc7e4 1569 goto out;
b60503ba
MW
1570
1571 out_free:
1572 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
1573 list_del(&ns->list);
1574 nvme_ns_free(ns);
1575 }
1576
bc5fc7e4 1577 out:
684f5c20 1578 dma_free_coherent(&dev->pci_dev->dev, 8192, mem, dma_addr);
b60503ba
MW
1579 return res;
1580}
1581
1582static int nvme_dev_remove(struct nvme_dev *dev)
1583{
1584 struct nvme_ns *ns, *next;
1585
1fa6aead
MW
1586 spin_lock(&dev_list_lock);
1587 list_del(&dev->node);
1588 spin_unlock(&dev_list_lock);
1589
b60503ba
MW
1590 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
1591 list_del(&ns->list);
1592 del_gendisk(ns->disk);
1593 nvme_ns_free(ns);
1594 }
1595
1596 nvme_free_queues(dev);
1597
1598 return 0;
1599}
1600
091b6092
MW
1601static int nvme_setup_prp_pools(struct nvme_dev *dev)
1602{
1603 struct device *dmadev = &dev->pci_dev->dev;
1604 dev->prp_page_pool = dma_pool_create("prp list page", dmadev,
1605 PAGE_SIZE, PAGE_SIZE, 0);
1606 if (!dev->prp_page_pool)
1607 return -ENOMEM;
1608
99802a7a
MW
1609 /* Optimisation for I/Os between 4k and 128k */
1610 dev->prp_small_pool = dma_pool_create("prp list 256", dmadev,
1611 256, 256, 0);
1612 if (!dev->prp_small_pool) {
1613 dma_pool_destroy(dev->prp_page_pool);
1614 return -ENOMEM;
1615 }
091b6092
MW
1616 return 0;
1617}
1618
1619static void nvme_release_prp_pools(struct nvme_dev *dev)
1620{
1621 dma_pool_destroy(dev->prp_page_pool);
99802a7a 1622 dma_pool_destroy(dev->prp_small_pool);
091b6092
MW
1623}
1624
cd58ad7d
QSA
1625static DEFINE_IDA(nvme_instance_ida);
1626
1627static int nvme_set_instance(struct nvme_dev *dev)
b60503ba 1628{
cd58ad7d
QSA
1629 int instance, error;
1630
1631 do {
1632 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
1633 return -ENODEV;
1634
1635 spin_lock(&dev_list_lock);
1636 error = ida_get_new(&nvme_instance_ida, &instance);
1637 spin_unlock(&dev_list_lock);
1638 } while (error == -EAGAIN);
1639
1640 if (error)
1641 return -ENODEV;
1642
1643 dev->instance = instance;
1644 return 0;
b60503ba
MW
1645}
1646
1647static void nvme_release_instance(struct nvme_dev *dev)
1648{
cd58ad7d
QSA
1649 spin_lock(&dev_list_lock);
1650 ida_remove(&nvme_instance_ida, dev->instance);
1651 spin_unlock(&dev_list_lock);
b60503ba
MW
1652}
1653
5e82e952
KB
1654static void nvme_free_dev(struct kref *kref)
1655{
1656 struct nvme_dev *dev = container_of(kref, struct nvme_dev, kref);
1657 nvme_dev_remove(dev);
1658 pci_disable_msix(dev->pci_dev);
1659 iounmap(dev->bar);
1660 nvme_release_instance(dev);
1661 nvme_release_prp_pools(dev);
1662 pci_disable_device(dev->pci_dev);
1663 pci_release_regions(dev->pci_dev);
1664 kfree(dev->queues);
1665 kfree(dev->entry);
1666 kfree(dev);
1667}
1668
1669static int nvme_dev_open(struct inode *inode, struct file *f)
1670{
1671 struct nvme_dev *dev = container_of(f->private_data, struct nvme_dev,
1672 miscdev);
1673 kref_get(&dev->kref);
1674 f->private_data = dev;
1675 return 0;
1676}
1677
1678static int nvme_dev_release(struct inode *inode, struct file *f)
1679{
1680 struct nvme_dev *dev = f->private_data;
1681 kref_put(&dev->kref, nvme_free_dev);
1682 return 0;
1683}
1684
1685static long nvme_dev_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
1686{
1687 struct nvme_dev *dev = f->private_data;
1688 switch (cmd) {
1689 case NVME_IOCTL_ADMIN_CMD:
1690 return nvme_user_admin_cmd(dev, (void __user *)arg);
1691 default:
1692 return -ENOTTY;
1693 }
1694}
1695
1696static const struct file_operations nvme_dev_fops = {
1697 .owner = THIS_MODULE,
1698 .open = nvme_dev_open,
1699 .release = nvme_dev_release,
1700 .unlocked_ioctl = nvme_dev_ioctl,
1701 .compat_ioctl = nvme_dev_ioctl,
1702};
1703
8d85fce7 1704static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
b60503ba 1705{
574e8b95 1706 int bars, result = -ENOMEM;
b60503ba
MW
1707 struct nvme_dev *dev;
1708
1709 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1710 if (!dev)
1711 return -ENOMEM;
1712 dev->entry = kcalloc(num_possible_cpus(), sizeof(*dev->entry),
1713 GFP_KERNEL);
1714 if (!dev->entry)
1715 goto free;
1b23484b
MW
1716 dev->queues = kcalloc(num_possible_cpus() + 1, sizeof(void *),
1717 GFP_KERNEL);
b60503ba
MW
1718 if (!dev->queues)
1719 goto free;
1720
0ee5a7d7
SMM
1721 if (pci_enable_device_mem(pdev))
1722 goto free;
f64d3365 1723 pci_set_master(pdev);
574e8b95
MW
1724 bars = pci_select_bars(pdev, IORESOURCE_MEM);
1725 if (pci_request_selected_regions(pdev, bars, "nvme"))
1726 goto disable;
0ee5a7d7 1727
b60503ba
MW
1728 INIT_LIST_HEAD(&dev->namespaces);
1729 dev->pci_dev = pdev;
1730 pci_set_drvdata(pdev, dev);
2930353f
MW
1731 dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
1732 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
cd58ad7d
QSA
1733 result = nvme_set_instance(dev);
1734 if (result)
1735 goto disable;
1736
53c9577e 1737 dev->entry[0].vector = pdev->irq;
b60503ba 1738
091b6092
MW
1739 result = nvme_setup_prp_pools(dev);
1740 if (result)
1741 goto disable_msix;
1742
b60503ba
MW
1743 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
1744 if (!dev->bar) {
1745 result = -ENOMEM;
574e8b95 1746 goto disable_msix;
b60503ba
MW
1747 }
1748
1749 result = nvme_configure_admin_queue(dev);
1750 if (result)
1751 goto unmap;
1752 dev->queue_count++;
1753
1fa6aead
MW
1754 spin_lock(&dev_list_lock);
1755 list_add(&dev->node, &dev_list);
1756 spin_unlock(&dev_list_lock);
1757
740216fc
MW
1758 result = nvme_dev_add(dev);
1759 if (result)
1760 goto delete;
1761
5e82e952
KB
1762 scnprintf(dev->name, sizeof(dev->name), "nvme%d", dev->instance);
1763 dev->miscdev.minor = MISC_DYNAMIC_MINOR;
1764 dev->miscdev.parent = &pdev->dev;
1765 dev->miscdev.name = dev->name;
1766 dev->miscdev.fops = &nvme_dev_fops;
1767 result = misc_register(&dev->miscdev);
1768 if (result)
1769 goto remove;
1770
1771 kref_init(&dev->kref);
b60503ba
MW
1772 return 0;
1773
5e82e952
KB
1774 remove:
1775 nvme_dev_remove(dev);
b60503ba 1776 delete:
740216fc
MW
1777 spin_lock(&dev_list_lock);
1778 list_del(&dev->node);
1779 spin_unlock(&dev_list_lock);
1780
b60503ba
MW
1781 nvme_free_queues(dev);
1782 unmap:
1783 iounmap(dev->bar);
574e8b95 1784 disable_msix:
b60503ba
MW
1785 pci_disable_msix(pdev);
1786 nvme_release_instance(dev);
091b6092 1787 nvme_release_prp_pools(dev);
574e8b95 1788 disable:
0ee5a7d7 1789 pci_disable_device(pdev);
574e8b95 1790 pci_release_regions(pdev);
b60503ba
MW
1791 free:
1792 kfree(dev->queues);
1793 kfree(dev->entry);
1794 kfree(dev);
1795 return result;
1796}
1797
8d85fce7 1798static void nvme_remove(struct pci_dev *pdev)
b60503ba
MW
1799{
1800 struct nvme_dev *dev = pci_get_drvdata(pdev);
5e82e952
KB
1801 misc_deregister(&dev->miscdev);
1802 kref_put(&dev->kref, nvme_free_dev);
b60503ba
MW
1803}
1804
1805/* These functions are yet to be implemented */
1806#define nvme_error_detected NULL
1807#define nvme_dump_registers NULL
1808#define nvme_link_reset NULL
1809#define nvme_slot_reset NULL
1810#define nvme_error_resume NULL
1811#define nvme_suspend NULL
1812#define nvme_resume NULL
1813
1d352035 1814static const struct pci_error_handlers nvme_err_handler = {
b60503ba
MW
1815 .error_detected = nvme_error_detected,
1816 .mmio_enabled = nvme_dump_registers,
1817 .link_reset = nvme_link_reset,
1818 .slot_reset = nvme_slot_reset,
1819 .resume = nvme_error_resume,
1820};
1821
1822/* Move to pci_ids.h later */
1823#define PCI_CLASS_STORAGE_EXPRESS 0x010802
1824
1825static DEFINE_PCI_DEVICE_TABLE(nvme_id_table) = {
1826 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
1827 { 0, }
1828};
1829MODULE_DEVICE_TABLE(pci, nvme_id_table);
1830
1831static struct pci_driver nvme_driver = {
1832 .name = "nvme",
1833 .id_table = nvme_id_table,
1834 .probe = nvme_probe,
8d85fce7 1835 .remove = nvme_remove,
b60503ba
MW
1836 .suspend = nvme_suspend,
1837 .resume = nvme_resume,
1838 .err_handler = &nvme_err_handler,
1839};
1840
1841static int __init nvme_init(void)
1842{
0ac13140 1843 int result;
1fa6aead
MW
1844
1845 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
1846 if (IS_ERR(nvme_thread))
1847 return PTR_ERR(nvme_thread);
b60503ba 1848
5c42ea16
KB
1849 result = register_blkdev(nvme_major, "nvme");
1850 if (result < 0)
1fa6aead 1851 goto kill_kthread;
5c42ea16 1852 else if (result > 0)
0ac13140 1853 nvme_major = result;
b60503ba
MW
1854
1855 result = pci_register_driver(&nvme_driver);
1fa6aead
MW
1856 if (result)
1857 goto unregister_blkdev;
1858 return 0;
b60503ba 1859
1fa6aead 1860 unregister_blkdev:
b60503ba 1861 unregister_blkdev(nvme_major, "nvme");
1fa6aead
MW
1862 kill_kthread:
1863 kthread_stop(nvme_thread);
b60503ba
MW
1864 return result;
1865}
1866
1867static void __exit nvme_exit(void)
1868{
1869 pci_unregister_driver(&nvme_driver);
1870 unregister_blkdev(nvme_major, "nvme");
1fa6aead 1871 kthread_stop(nvme_thread);
b60503ba
MW
1872}
1873
1874MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
1875MODULE_LICENSE("GPL");
366e8217 1876MODULE_VERSION("0.8");
b60503ba
MW
1877module_init(nvme_init);
1878module_exit(nvme_exit);