blob: f9ad514c9227868388a1bbafd7f4da953de7c9c7 [file] [log] [blame]
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001/*
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>
Matthew Wilcox8de05532011-05-12 13:50:28 -040021#include <linux/bitops.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050022#include <linux/blkdev.h>
Matthew Wilcoxfd63e9ce2011-05-06 08:37:54 -040023#include <linux/delay.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050024#include <linux/errno.h>
25#include <linux/fs.h>
26#include <linux/genhd.h>
Matthew Wilcox5aff9382011-05-06 08:45:47 -040027#include <linux/idr.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050028#include <linux/init.h>
29#include <linux/interrupt.h>
30#include <linux/io.h>
31#include <linux/kdev_t.h>
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050032#include <linux/kthread.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050033#include <linux/kernel.h>
34#include <linux/mm.h>
35#include <linux/module.h>
36#include <linux/moduleparam.h>
37#include <linux/pci.h>
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -050038#include <linux/poison.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050039#include <linux/sched.h>
40#include <linux/slab.h>
41#include <linux/types.h>
42#include <linux/version.h>
43
44#define NVME_Q_DEPTH 1024
45#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
46#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
47#define NVME_MINORS 64
Matthew Wilcoxff976d72011-12-20 13:53:01 -050048#define NVME_IO_TIMEOUT (5 * HZ)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -050049#define ADMIN_TIMEOUT (60 * HZ)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050050
51static int nvme_major;
52module_param(nvme_major, int, 0);
53
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050054static int use_threaded_interrupts;
55module_param(use_threaded_interrupts, int, 0);
56
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050057static DEFINE_SPINLOCK(dev_list_lock);
58static LIST_HEAD(dev_list);
59static struct task_struct *nvme_thread;
60
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050061/*
62 * Represents an NVM Express device. Each nvme_dev is a PCI function.
63 */
64struct nvme_dev {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050065 struct list_head node;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050066 struct nvme_queue **queues;
67 u32 __iomem *dbs;
68 struct pci_dev *pci_dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -050069 struct dma_pool *prp_page_pool;
Matthew Wilcox99802a72011-02-10 10:30:34 -050070 struct dma_pool *prp_small_pool;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050071 int instance;
72 int queue_count;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -040073 int db_stride;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050074 u32 ctrl_config;
75 struct msix_entry *entry;
76 struct nvme_bar __iomem *bar;
77 struct list_head namespaces;
Matthew Wilcox51814232011-02-01 16:18:08 -050078 char serial[20];
79 char model[40];
80 char firmware_rev[8];
Keith Busch8fc23e02012-07-26 11:29:57 -060081 u32 max_hw_sectors;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050082};
83
84/*
85 * An NVM Express namespace is equivalent to a SCSI LUN
86 */
87struct nvme_ns {
88 struct list_head list;
89
90 struct nvme_dev *dev;
91 struct request_queue *queue;
92 struct gendisk *disk;
93
94 int ns_id;
95 int lba_shift;
96};
97
98/*
99 * An NVM Express queue. Each device has at least two (one for admin
100 * commands and one for I/O commands).
101 */
102struct nvme_queue {
103 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500104 struct nvme_dev *dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500105 spinlock_t q_lock;
106 struct nvme_command *sq_cmds;
107 volatile struct nvme_completion *cqes;
108 dma_addr_t sq_dma_addr;
109 dma_addr_t cq_dma_addr;
110 wait_queue_head_t sq_full;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -0500111 wait_queue_t sq_cong_wait;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500112 struct bio_list sq_cong;
113 u32 __iomem *q_db;
114 u16 q_depth;
115 u16 cq_vector;
116 u16 sq_head;
117 u16 sq_tail;
118 u16 cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500119 u16 cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500120 unsigned long cmdid_data[];
121};
122
123/*
124 * Check we didin't inadvertently grow the command struct
125 */
126static inline void _nvme_check_size(void)
127{
128 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
129 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
130 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
131 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
132 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
133 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
134 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
135 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
136 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
137}
138
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500139typedef void (*nvme_completion_fn)(struct nvme_dev *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400140 struct nvme_completion *);
141
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500142struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400143 nvme_completion_fn fn;
144 void *ctx;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500145 unsigned long timeout;
146};
147
148static struct nvme_cmd_info *nvme_cmd_info(struct nvme_queue *nvmeq)
149{
150 return (void *)&nvmeq->cmdid_data[BITS_TO_LONGS(nvmeq->q_depth)];
151}
152
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500153/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400154 * alloc_cmdid() - Allocate a Command ID
155 * @nvmeq: The queue that will be used for this command
156 * @ctx: A pointer that will be passed to the handler
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400157 * @handler: The function to call on completion
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500158 *
159 * Allocate a Command ID for a queue. The data passed in will
160 * be passed to the completion handler. This is implemented by using
161 * the bottom two bits of the ctx pointer to store the handler ID.
162 * Passing in a pointer that's not 4-byte aligned will cause a BUG.
163 * We can change this if it becomes a problem.
Matthew Wilcox184d2942011-05-11 21:36:38 -0400164 *
165 * May be called with local interrupts disabled and the q_lock held,
166 * or with interrupts enabled and no locks held.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500167 */
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400168static int alloc_cmdid(struct nvme_queue *nvmeq, void *ctx,
169 nvme_completion_fn handler, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500170{
Matthew Wilcoxe6d15f72011-02-24 08:49:41 -0500171 int depth = nvmeq->q_depth - 1;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500172 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500173 int cmdid;
174
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500175 do {
176 cmdid = find_first_zero_bit(nvmeq->cmdid_data, depth);
177 if (cmdid >= depth)
178 return -EBUSY;
179 } while (test_and_set_bit(cmdid, nvmeq->cmdid_data));
180
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400181 info[cmdid].fn = handler;
182 info[cmdid].ctx = ctx;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500183 info[cmdid].timeout = jiffies + timeout;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500184 return cmdid;
185}
186
187static int alloc_cmdid_killable(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400188 nvme_completion_fn handler, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500189{
190 int cmdid;
191 wait_event_killable(nvmeq->sq_full,
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500192 (cmdid = alloc_cmdid(nvmeq, ctx, handler, timeout)) >= 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500193 return (cmdid < 0) ? -EINTR : cmdid;
194}
195
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400196/* Special values must be less than 0x1000 */
197#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500198#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
199#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
200#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500201#define CMD_CTX_FLUSH (0x318 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500202
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500203static void special_completion(struct nvme_dev *dev, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400204 struct nvme_completion *cqe)
205{
206 if (ctx == CMD_CTX_CANCELLED)
207 return;
208 if (ctx == CMD_CTX_FLUSH)
209 return;
210 if (ctx == CMD_CTX_COMPLETED) {
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500211 dev_warn(&dev->pci_dev->dev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400212 "completed id %d twice on queue %d\n",
213 cqe->command_id, le16_to_cpup(&cqe->sq_id));
214 return;
215 }
216 if (ctx == CMD_CTX_INVALID) {
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500217 dev_warn(&dev->pci_dev->dev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400218 "invalid id %d completed on queue %d\n",
219 cqe->command_id, le16_to_cpup(&cqe->sq_id));
220 return;
221 }
222
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500223 dev_warn(&dev->pci_dev->dev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400224}
225
Matthew Wilcox184d2942011-05-11 21:36:38 -0400226/*
227 * Called with local interrupts disabled and the q_lock held. May not sleep.
228 */
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400229static void *free_cmdid(struct nvme_queue *nvmeq, int cmdid,
230 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500231{
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400232 void *ctx;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500233 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500234
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400235 if (cmdid >= nvmeq->q_depth) {
236 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500237 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400238 }
239 *fn = info[cmdid].fn;
240 ctx = info[cmdid].ctx;
241 info[cmdid].fn = special_completion;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500242 info[cmdid].ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500243 clear_bit(cmdid, nvmeq->cmdid_data);
244 wake_up(&nvmeq->sq_full);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400245 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500246}
247
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400248static void *cancel_cmdid(struct nvme_queue *nvmeq, int cmdid,
249 nvme_completion_fn *fn)
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500250{
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400251 void *ctx;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500252 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400253 if (fn)
254 *fn = info[cmdid].fn;
255 ctx = info[cmdid].ctx;
256 info[cmdid].fn = special_completion;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500257 info[cmdid].ctx = CMD_CTX_CANCELLED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400258 return ctx;
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500259}
260
Matthew Wilcox040a93b2011-12-20 11:04:12 -0500261static struct nvme_queue *get_nvmeq(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500262{
Matthew Wilcox040a93b2011-12-20 11:04:12 -0500263 return dev->queues[get_cpu() + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500264}
265
266static void put_nvmeq(struct nvme_queue *nvmeq)
267{
Matthew Wilcox1b234842011-01-20 13:01:49 -0500268 put_cpu();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500269}
270
271/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400272 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500273 * @nvmeq: The queue to use
274 * @cmd: The command to send
275 *
276 * Safe to use from interrupt context
277 */
278static int nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
279{
280 unsigned long flags;
281 u16 tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500282 spin_lock_irqsave(&nvmeq->q_lock, flags);
283 tail = nvmeq->sq_tail;
284 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500285 if (++tail == nvmeq->q_depth)
286 tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500287 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500288 nvmeq->sq_tail = tail;
289 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
290
291 return 0;
292}
293
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500294/*
295 * The nvme_iod describes the data in an I/O, including the list of PRP
296 * entries. You can't see it in this data structure because C doesn't let
297 * me express that. Use nvme_alloc_iod to ensure there's enough space
298 * allocated to store the PRP list.
299 */
300struct nvme_iod {
301 void *private; /* For the use of the submitter of the I/O */
302 int npages; /* In the PRP list. 0 means small pool in use */
303 int offset; /* Of PRP list */
304 int nents; /* Used in scatterlist */
305 int length; /* Of data, in bytes */
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500306 dma_addr_t first_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500307 struct scatterlist sg[0];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500308};
309
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500310static __le64 **iod_list(struct nvme_iod *iod)
311{
312 return ((void *)iod) + iod->offset;
313}
314
315/*
316 * Will slightly overestimate the number of pages needed. This is OK
317 * as it only leads to a small amount of wasted memory for the lifetime of
318 * the I/O.
319 */
320static int nvme_npages(unsigned size)
321{
322 unsigned nprps = DIV_ROUND_UP(size + PAGE_SIZE, PAGE_SIZE);
323 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
324}
325
326static struct nvme_iod *
327nvme_alloc_iod(unsigned nseg, unsigned nbytes, gfp_t gfp)
328{
329 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
330 sizeof(__le64 *) * nvme_npages(nbytes) +
331 sizeof(struct scatterlist) * nseg, gfp);
332
333 if (iod) {
334 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
335 iod->npages = -1;
336 iod->length = nbytes;
337 }
338
339 return iod;
340}
341
342static void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500343{
344 const int last_prp = PAGE_SIZE / 8 - 1;
345 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500346 __le64 **list = iod_list(iod);
347 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500348
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500349 if (iod->npages == 0)
350 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
351 for (i = 0; i < iod->npages; i++) {
352 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500353 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500354 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500355 prp_dma = next_prp_dma;
356 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500357 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500358}
359
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500360static void requeue_bio(struct nvme_dev *dev, struct bio *bio)
361{
362 struct nvme_queue *nvmeq = get_nvmeq(dev);
363 if (bio_list_empty(&nvmeq->sq_cong))
364 add_wait_queue(&nvmeq->sq_full, &nvmeq->sq_cong_wait);
365 bio_list_add(&nvmeq->sq_cong, bio);
366 put_nvmeq(nvmeq);
367 wake_up_process(nvme_thread);
368}
369
370static void bio_completion(struct nvme_dev *dev, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500371 struct nvme_completion *cqe)
372{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500373 struct nvme_iod *iod = ctx;
374 struct bio *bio = iod->private;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500375 u16 status = le16_to_cpup(&cqe->status) >> 1;
376
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500377 dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500378 bio_data_dir(bio) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500379 nvme_free_iod(dev, iod);
Matthew Wilcox09a58f52011-04-28 23:09:09 -0700380 if (status) {
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500381 bio_endio(bio, -EIO);
Matthew Wilcox09a58f52011-04-28 23:09:09 -0700382 } else if (bio->bi_vcnt > bio->bi_idx) {
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500383 requeue_bio(dev, bio);
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500384 } else {
385 bio_endio(bio, 0);
386 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500387}
388
Matthew Wilcox184d2942011-05-11 21:36:38 -0400389/* length is in bytes. gfp flags indicates whether we may sleep. */
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500390static int nvme_setup_prps(struct nvme_dev *dev,
391 struct nvme_common_command *cmd, struct nvme_iod *iod,
392 int total_len, gfp_t gfp)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500393{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500394 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500395 int length = total_len;
396 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500397 int dma_len = sg_dma_len(sg);
398 u64 dma_addr = sg_dma_address(sg);
399 int offset = offset_in_page(dma_addr);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500400 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500401 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500402 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500403 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500404
405 cmd->prp1 = cpu_to_le64(dma_addr);
406 length -= (PAGE_SIZE - offset);
407 if (length <= 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500408 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500409
410 dma_len -= (PAGE_SIZE - offset);
411 if (dma_len) {
412 dma_addr += (PAGE_SIZE - offset);
413 } else {
414 sg = sg_next(sg);
415 dma_addr = sg_dma_address(sg);
416 dma_len = sg_dma_len(sg);
417 }
418
419 if (length <= PAGE_SIZE) {
420 cmd->prp2 = cpu_to_le64(dma_addr);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500421 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500422 }
423
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500424 nprps = DIV_ROUND_UP(length, PAGE_SIZE);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500425 if (nprps <= (256 / 8)) {
426 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500427 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500428 } else {
429 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500430 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500431 }
432
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400433 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
434 if (!prp_list) {
435 cmd->prp2 = cpu_to_le64(dma_addr);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500436 iod->npages = -1;
437 return (total_len - length) + PAGE_SIZE;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400438 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500439 list[0] = prp_list;
440 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500441 cmd->prp2 = cpu_to_le64(prp_dma);
442 i = 0;
443 for (;;) {
Matthew Wilcox7523d832011-03-16 16:43:40 -0400444 if (i == PAGE_SIZE / 8) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500445 __le64 *old_prp_list = prp_list;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400446 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500447 if (!prp_list)
448 return total_len - length;
449 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400450 prp_list[0] = old_prp_list[i - 1];
451 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
452 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500453 }
454 prp_list[i++] = cpu_to_le64(dma_addr);
455 dma_len -= PAGE_SIZE;
456 dma_addr += PAGE_SIZE;
457 length -= PAGE_SIZE;
458 if (length <= 0)
459 break;
460 if (dma_len > 0)
461 continue;
462 BUG_ON(dma_len < 0);
463 sg = sg_next(sg);
464 dma_addr = sg_dma_address(sg);
465 dma_len = sg_dma_len(sg);
466 }
467
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500468 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500469}
470
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500471/* NVMe scatterlists require no holes in the virtual address */
472#define BIOVEC_NOT_VIRT_MERGEABLE(vec1, vec2) ((vec2)->bv_offset || \
473 (((vec1)->bv_offset + (vec1)->bv_len) % PAGE_SIZE))
474
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500475static int nvme_map_bio(struct device *dev, struct nvme_iod *iod,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500476 struct bio *bio, enum dma_data_direction dma_dir, int psegs)
477{
Matthew Wilcox76830842011-02-10 13:55:39 -0500478 struct bio_vec *bvec, *bvprv = NULL;
479 struct scatterlist *sg = NULL;
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500480 int i, old_idx, length = 0, nsegs = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500481
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500482 sg_init_table(iod->sg, psegs);
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500483 old_idx = bio->bi_idx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500484 bio_for_each_segment(bvec, bio, i) {
Matthew Wilcox76830842011-02-10 13:55:39 -0500485 if (bvprv && BIOVEC_PHYS_MERGEABLE(bvprv, bvec)) {
486 sg->length += bvec->bv_len;
487 } else {
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500488 if (bvprv && BIOVEC_NOT_VIRT_MERGEABLE(bvprv, bvec))
489 break;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500490 sg = sg ? sg + 1 : iod->sg;
Matthew Wilcox76830842011-02-10 13:55:39 -0500491 sg_set_page(sg, bvec->bv_page, bvec->bv_len,
492 bvec->bv_offset);
493 nsegs++;
494 }
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500495 length += bvec->bv_len;
Matthew Wilcox76830842011-02-10 13:55:39 -0500496 bvprv = bvec;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500497 }
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500498 bio->bi_idx = i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500499 iod->nents = nsegs;
Matthew Wilcox76830842011-02-10 13:55:39 -0500500 sg_mark_end(sg);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500501 if (dma_map_sg(dev, iod->sg, iod->nents, dma_dir) == 0) {
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500502 bio->bi_idx = old_idx;
503 return -ENOMEM;
504 }
505 return length;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500506}
507
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500508static int nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
509 int cmdid)
510{
511 struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
512
513 memset(cmnd, 0, sizeof(*cmnd));
514 cmnd->common.opcode = nvme_cmd_flush;
515 cmnd->common.command_id = cmdid;
516 cmnd->common.nsid = cpu_to_le32(ns->ns_id);
517
518 if (++nvmeq->sq_tail == nvmeq->q_depth)
519 nvmeq->sq_tail = 0;
520 writel(nvmeq->sq_tail, nvmeq->q_db);
521
522 return 0;
523}
524
525static int nvme_submit_flush_data(struct nvme_queue *nvmeq, struct nvme_ns *ns)
526{
527 int cmdid = alloc_cmdid(nvmeq, (void *)CMD_CTX_FLUSH,
Matthew Wilcoxff976d72011-12-20 13:53:01 -0500528 special_completion, NVME_IO_TIMEOUT);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500529 if (unlikely(cmdid < 0))
530 return cmdid;
531
532 return nvme_submit_flush(nvmeq, ns, cmdid);
533}
534
Matthew Wilcox184d2942011-05-11 21:36:38 -0400535/*
536 * Called with local interrupts disabled and the q_lock held. May not sleep.
537 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500538static int nvme_submit_bio_queue(struct nvme_queue *nvmeq, struct nvme_ns *ns,
539 struct bio *bio)
540{
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500541 struct nvme_command *cmnd;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500542 struct nvme_iod *iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500543 enum dma_data_direction dma_dir;
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500544 int cmdid, length, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500545 u16 control;
546 u32 dsmgmt;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500547 int psegs = bio_phys_segments(ns->queue, bio);
548
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500549 if ((bio->bi_rw & REQ_FLUSH) && psegs) {
550 result = nvme_submit_flush_data(nvmeq, ns);
551 if (result)
552 return result;
553 }
554
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500555 iod = nvme_alloc_iod(psegs, bio->bi_size, GFP_ATOMIC);
556 if (!iod)
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500557 goto nomem;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500558 iod->private = bio;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500559
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500560 result = -EBUSY;
Matthew Wilcoxff976d72011-12-20 13:53:01 -0500561 cmdid = alloc_cmdid(nvmeq, iod, bio_completion, NVME_IO_TIMEOUT);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500562 if (unlikely(cmdid < 0))
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500563 goto free_iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500564
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500565 if ((bio->bi_rw & REQ_FLUSH) && !psegs)
566 return nvme_submit_flush(nvmeq, ns, cmdid);
567
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500568 control = 0;
569 if (bio->bi_rw & REQ_FUA)
570 control |= NVME_RW_FUA;
571 if (bio->bi_rw & (REQ_FAILFAST_DEV | REQ_RAHEAD))
572 control |= NVME_RW_LR;
573
574 dsmgmt = 0;
575 if (bio->bi_rw & REQ_RAHEAD)
576 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
577
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500578 cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500579
Matthew Wilcoxb8deb622011-01-26 10:08:25 -0500580 memset(cmnd, 0, sizeof(*cmnd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500581 if (bio_data_dir(bio)) {
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500582 cmnd->rw.opcode = nvme_cmd_write;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500583 dma_dir = DMA_TO_DEVICE;
584 } else {
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500585 cmnd->rw.opcode = nvme_cmd_read;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500586 dma_dir = DMA_FROM_DEVICE;
587 }
588
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500589 result = nvme_map_bio(nvmeq->q_dmadev, iod, bio, dma_dir, psegs);
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500590 if (result < 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500591 goto free_iod;
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500592 length = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500593
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500594 cmnd->rw.command_id = cmdid;
595 cmnd->rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500596 length = nvme_setup_prps(nvmeq->dev, &cmnd->common, iod, length,
597 GFP_ATOMIC);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500598 cmnd->rw.slba = cpu_to_le64(bio->bi_sector >> (ns->lba_shift - 9));
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500599 cmnd->rw.length = cpu_to_le16((length >> ns->lba_shift) - 1);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500600 cmnd->rw.control = cpu_to_le16(control);
601 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500602
Matthew Wilcoxd8ee9d62011-02-24 08:46:00 -0500603 bio->bi_sector += length >> 9;
604
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500605 if (++nvmeq->sq_tail == nvmeq->q_depth)
606 nvmeq->sq_tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500607 writel(nvmeq->sq_tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500608
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500609 return 0;
610
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500611 free_iod:
612 nvme_free_iod(nvmeq->dev, iod);
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500613 nomem:
614 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500615}
616
617/*
618 * NB: return value of non-zero would mean that we were a stacking driver.
619 * make_request must always succeed.
620 */
621static int nvme_make_request(struct request_queue *q, struct bio *bio)
622{
623 struct nvme_ns *ns = q->queuedata;
Matthew Wilcox040a93b2011-12-20 11:04:12 -0500624 struct nvme_queue *nvmeq = get_nvmeq(ns->dev);
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500625 int result = -EBUSY;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500626
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500627 spin_lock_irq(&nvmeq->q_lock);
628 if (bio_list_empty(&nvmeq->sq_cong))
629 result = nvme_submit_bio_queue(nvmeq, ns, bio);
630 if (unlikely(result)) {
631 if (bio_list_empty(&nvmeq->sq_cong))
632 add_wait_queue(&nvmeq->sq_full, &nvmeq->sq_cong_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500633 bio_list_add(&nvmeq->sq_cong, bio);
634 }
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500635
636 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500637 put_nvmeq(nvmeq);
638
639 return 0;
640}
641
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500642static irqreturn_t nvme_process_cq(struct nvme_queue *nvmeq)
643{
Matthew Wilcox82123462011-01-20 13:24:06 -0500644 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500645
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500646 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500647 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500648
649 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400650 void *ctx;
651 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500652 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -0500653 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500654 break;
655 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
656 if (++head == nvmeq->q_depth) {
657 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500658 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500659 }
660
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400661 ctx = free_cmdid(nvmeq, cqe.command_id, &fn);
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500662 fn(nvmeq->dev, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500663 }
664
665 /* If the controller ignores the cq head doorbell and continuously
666 * writes to the queue, it is theoretically possible to wrap around
667 * the queue twice and mistakenly return IRQ_NONE. Linux only
668 * requires that 0.1% of your interrupts are handled, so this isn't
669 * a big problem.
670 */
Matthew Wilcox82123462011-01-20 13:24:06 -0500671 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500672 return IRQ_NONE;
673
Matthew Wilcoxf1938f62011-10-20 17:00:41 -0400674 writel(head, nvmeq->q_db + (1 << nvmeq->dev->db_stride));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500675 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500676 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500677
678 return IRQ_HANDLED;
679}
680
681static irqreturn_t nvme_irq(int irq, void *data)
682{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500683 irqreturn_t result;
684 struct nvme_queue *nvmeq = data;
685 spin_lock(&nvmeq->q_lock);
686 result = nvme_process_cq(nvmeq);
687 spin_unlock(&nvmeq->q_lock);
688 return result;
689}
690
691static irqreturn_t nvme_irq_check(int irq, void *data)
692{
693 struct nvme_queue *nvmeq = data;
694 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
695 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
696 return IRQ_NONE;
697 return IRQ_WAKE_THREAD;
698}
699
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500700static void nvme_abort_command(struct nvme_queue *nvmeq, int cmdid)
701{
702 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400703 cancel_cmdid(nvmeq, cmdid, NULL);
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500704 spin_unlock_irq(&nvmeq->q_lock);
705}
706
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400707struct sync_cmd_info {
708 struct task_struct *task;
709 u32 result;
710 int status;
711};
712
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500713static void sync_completion(struct nvme_dev *dev, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400714 struct nvme_completion *cqe)
715{
716 struct sync_cmd_info *cmdinfo = ctx;
717 cmdinfo->result = le32_to_cpup(&cqe->result);
718 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
719 wake_up_process(cmdinfo->task);
720}
721
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500722/*
723 * Returns 0 on success. If the result is negative, it's a Linux error code;
724 * if the result is positive, it's an NVM Express status code
725 */
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500726static int nvme_submit_sync_cmd(struct nvme_queue *nvmeq,
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500727 struct nvme_command *cmd, u32 *result, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500728{
729 int cmdid;
730 struct sync_cmd_info cmdinfo;
731
732 cmdinfo.task = current;
733 cmdinfo.status = -EINTR;
734
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400735 cmdid = alloc_cmdid_killable(nvmeq, &cmdinfo, sync_completion,
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500736 timeout);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500737 if (cmdid < 0)
738 return cmdid;
739 cmd->common.command_id = cmdid;
740
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500741 set_current_state(TASK_KILLABLE);
742 nvme_submit_cmd(nvmeq, cmd);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500743 schedule();
744
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500745 if (cmdinfo.status == -EINTR) {
746 nvme_abort_command(nvmeq, cmdid);
747 return -EINTR;
748 }
749
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500750 if (result)
751 *result = cmdinfo.result;
752
753 return cmdinfo.status;
754}
755
756static int nvme_submit_admin_cmd(struct nvme_dev *dev, struct nvme_command *cmd,
757 u32 *result)
758{
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500759 return nvme_submit_sync_cmd(dev->queues[0], cmd, result, ADMIN_TIMEOUT);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500760}
761
762static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
763{
764 int status;
765 struct nvme_command c;
766
767 memset(&c, 0, sizeof(c));
768 c.delete_queue.opcode = opcode;
769 c.delete_queue.qid = cpu_to_le16(id);
770
771 status = nvme_submit_admin_cmd(dev, &c, NULL);
772 if (status)
773 return -EIO;
774 return 0;
775}
776
777static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
778 struct nvme_queue *nvmeq)
779{
780 int status;
781 struct nvme_command c;
782 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
783
784 memset(&c, 0, sizeof(c));
785 c.create_cq.opcode = nvme_admin_create_cq;
786 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
787 c.create_cq.cqid = cpu_to_le16(qid);
788 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
789 c.create_cq.cq_flags = cpu_to_le16(flags);
790 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
791
792 status = nvme_submit_admin_cmd(dev, &c, NULL);
793 if (status)
794 return -EIO;
795 return 0;
796}
797
798static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
799 struct nvme_queue *nvmeq)
800{
801 int status;
802 struct nvme_command c;
803 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
804
805 memset(&c, 0, sizeof(c));
806 c.create_sq.opcode = nvme_admin_create_sq;
807 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
808 c.create_sq.sqid = cpu_to_le16(qid);
809 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
810 c.create_sq.sq_flags = cpu_to_le16(flags);
811 c.create_sq.cqid = cpu_to_le16(qid);
812
813 status = nvme_submit_admin_cmd(dev, &c, NULL);
814 if (status)
815 return -EIO;
816 return 0;
817}
818
819static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
820{
821 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
822}
823
824static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
825{
826 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
827}
828
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400829static int nvme_identify(struct nvme_dev *dev, unsigned nsid, unsigned cns,
830 dma_addr_t dma_addr)
831{
832 struct nvme_command c;
833
834 memset(&c, 0, sizeof(c));
835 c.identify.opcode = nvme_admin_identify;
836 c.identify.nsid = cpu_to_le32(nsid);
837 c.identify.prp1 = cpu_to_le64(dma_addr);
838 c.identify.cns = cpu_to_le32(cns);
839
840 return nvme_submit_admin_cmd(dev, &c, NULL);
841}
842
843static int nvme_get_features(struct nvme_dev *dev, unsigned fid,
Keith Buscha42cecc2012-07-25 16:06:38 -0600844 unsigned nsid, dma_addr_t dma_addr)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400845{
846 struct nvme_command c;
847
848 memset(&c, 0, sizeof(c));
849 c.features.opcode = nvme_admin_get_features;
Keith Buscha42cecc2012-07-25 16:06:38 -0600850 c.features.nsid = cpu_to_le32(nsid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400851 c.features.prp1 = cpu_to_le64(dma_addr);
852 c.features.fid = cpu_to_le32(fid);
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400853
Matthew Wilcoxdf348132012-01-11 07:29:56 -0700854 return nvme_submit_admin_cmd(dev, &c, NULL);
855}
856
857static int nvme_set_features(struct nvme_dev *dev, unsigned fid,
858 unsigned dword11, dma_addr_t dma_addr, u32 *result)
859{
860 struct nvme_command c;
861
862 memset(&c, 0, sizeof(c));
863 c.features.opcode = nvme_admin_set_features;
864 c.features.prp1 = cpu_to_le64(dma_addr);
865 c.features.fid = cpu_to_le32(fid);
866 c.features.dword11 = cpu_to_le32(dword11);
867
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400868 return nvme_submit_admin_cmd(dev, &c, result);
869}
870
Matthew Wilcoxa09115b2012-08-07 15:56:23 -0400871/**
872 * nvme_cancel_ios - Cancel outstanding I/Os
873 * @queue: The queue to cancel I/Os on
874 * @timeout: True to only cancel I/Os which have timed out
875 */
876static void nvme_cancel_ios(struct nvme_queue *nvmeq, bool timeout)
877{
878 int depth = nvmeq->q_depth - 1;
879 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
880 unsigned long now = jiffies;
881 int cmdid;
882
883 for_each_set_bit(cmdid, nvmeq->cmdid_data, depth) {
884 void *ctx;
885 nvme_completion_fn fn;
886 static struct nvme_completion cqe = {
887 .status = cpu_to_le16(NVME_SC_ABORT_REQ) << 1,
888 };
889
890 if (timeout && !time_after(now, info[cmdid].timeout))
891 continue;
892 dev_warn(nvmeq->q_dmadev, "Cancelling I/O %d\n", cmdid);
893 ctx = cancel_cmdid(nvmeq, cmdid, &fn);
894 fn(nvmeq->dev, ctx, &cqe);
895 }
896}
897
Matthew Wilcox9e866772012-08-03 13:55:56 -0400898static void nvme_free_queue_mem(struct nvme_queue *nvmeq)
899{
900 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
901 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
902 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
903 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
904 kfree(nvmeq);
905}
906
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500907static void nvme_free_queue(struct nvme_dev *dev, int qid)
908{
909 struct nvme_queue *nvmeq = dev->queues[qid];
Matthew Wilcoxaba20802011-03-27 08:52:06 -0400910 int vector = dev->entry[nvmeq->cq_vector].vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500911
Matthew Wilcoxa09115b2012-08-07 15:56:23 -0400912 spin_lock_irq(&nvmeq->q_lock);
913 nvme_cancel_ios(nvmeq, false);
914 spin_unlock_irq(&nvmeq->q_lock);
915
Matthew Wilcoxaba20802011-03-27 08:52:06 -0400916 irq_set_affinity_hint(vector, NULL);
917 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500918
919 /* Don't tell the adapter to delete the admin queue */
920 if (qid) {
921 adapter_delete_sq(dev, qid);
922 adapter_delete_cq(dev, qid);
923 }
924
Matthew Wilcox9e866772012-08-03 13:55:56 -0400925 nvme_free_queue_mem(nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500926}
927
928static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
929 int depth, int vector)
930{
931 struct device *dmadev = &dev->pci_dev->dev;
Keith Buscha0cadb82012-07-27 13:57:23 -0400932 unsigned extra = DIV_ROUND_UP(depth, 8) + (depth *
933 sizeof(struct nvme_cmd_info));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500934 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq) + extra, GFP_KERNEL);
935 if (!nvmeq)
936 return NULL;
937
938 nvmeq->cqes = dma_alloc_coherent(dmadev, CQ_SIZE(depth),
939 &nvmeq->cq_dma_addr, GFP_KERNEL);
940 if (!nvmeq->cqes)
941 goto free_nvmeq;
942 memset((void *)nvmeq->cqes, 0, CQ_SIZE(depth));
943
944 nvmeq->sq_cmds = dma_alloc_coherent(dmadev, SQ_SIZE(depth),
945 &nvmeq->sq_dma_addr, GFP_KERNEL);
946 if (!nvmeq->sq_cmds)
947 goto free_cqdma;
948
949 nvmeq->q_dmadev = dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500950 nvmeq->dev = dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500951 spin_lock_init(&nvmeq->q_lock);
952 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500953 nvmeq->cq_phase = 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500954 init_waitqueue_head(&nvmeq->sq_full);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -0500955 init_waitqueue_entry(&nvmeq->sq_cong_wait, nvme_thread);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500956 bio_list_init(&nvmeq->sq_cong);
Matthew Wilcoxf1938f62011-10-20 17:00:41 -0400957 nvmeq->q_db = &dev->dbs[qid << (dev->db_stride + 1)];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500958 nvmeq->q_depth = depth;
959 nvmeq->cq_vector = vector;
960
961 return nvmeq;
962
963 free_cqdma:
964 dma_free_coherent(dmadev, CQ_SIZE(nvmeq->q_depth), (void *)nvmeq->cqes,
965 nvmeq->cq_dma_addr);
966 free_nvmeq:
967 kfree(nvmeq);
968 return NULL;
969}
970
Matthew Wilcox30010822011-01-20 09:10:15 -0500971static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
972 const char *name)
973{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500974 if (use_threaded_interrupts)
975 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Matthew Wilcoxec6ce612011-02-06 09:01:00 -0500976 nvme_irq_check, nvme_irq,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500977 IRQF_DISABLED | IRQF_SHARED,
978 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -0500979 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
980 IRQF_DISABLED | IRQF_SHARED, name, nvmeq);
981}
982
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500983static __devinit struct nvme_queue *nvme_create_queue(struct nvme_dev *dev,
984 int qid, int cq_size, int vector)
985{
986 int result;
987 struct nvme_queue *nvmeq = nvme_alloc_queue(dev, qid, cq_size, vector);
988
Matthew Wilcox3f85d502011-02-01 08:39:04 -0500989 if (!nvmeq)
Matthew Wilcox6f0f5442011-05-11 13:30:59 -0700990 return ERR_PTR(-ENOMEM);
Matthew Wilcox3f85d502011-02-01 08:39:04 -0500991
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500992 result = adapter_alloc_cq(dev, qid, nvmeq);
993 if (result < 0)
994 goto free_nvmeq;
995
996 result = adapter_alloc_sq(dev, qid, nvmeq);
997 if (result < 0)
998 goto release_cq;
999
Matthew Wilcox30010822011-01-20 09:10:15 -05001000 result = queue_request_irq(dev, nvmeq, "nvme");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001001 if (result < 0)
1002 goto release_sq;
1003
1004 return nvmeq;
1005
1006 release_sq:
1007 adapter_delete_sq(dev, qid);
1008 release_cq:
1009 adapter_delete_cq(dev, qid);
1010 free_nvmeq:
1011 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
1012 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
1013 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
1014 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
1015 kfree(nvmeq);
Matthew Wilcox6f0f5442011-05-11 13:30:59 -07001016 return ERR_PTR(result);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001017}
1018
1019static int __devinit nvme_configure_admin_queue(struct nvme_dev *dev)
1020{
Matthew Wilcox9e866772012-08-03 13:55:56 -04001021 int result = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001022 u32 aqa;
Matthew Wilcox22605f92011-04-19 15:04:20 -04001023 u64 cap;
1024 unsigned long timeout;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001025 struct nvme_queue *nvmeq;
1026
1027 dev->dbs = ((void __iomem *)dev->bar) + 4096;
1028
1029 nvmeq = nvme_alloc_queue(dev, 0, 64, 0);
Matthew Wilcox3f85d502011-02-01 08:39:04 -05001030 if (!nvmeq)
1031 return -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001032
1033 aqa = nvmeq->q_depth - 1;
1034 aqa |= aqa << 16;
1035
1036 dev->ctrl_config = NVME_CC_ENABLE | NVME_CC_CSS_NVM;
1037 dev->ctrl_config |= (PAGE_SHIFT - 12) << NVME_CC_MPS_SHIFT;
1038 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -04001039 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001040
Shane Michael Matthews5911f202011-02-01 11:31:55 -05001041 writel(0, &dev->bar->cc);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001042 writel(aqa, &dev->bar->aqa);
1043 writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1044 writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
1045 writel(dev->ctrl_config, &dev->bar->cc);
1046
Matthew Wilcox22605f92011-04-19 15:04:20 -04001047 cap = readq(&dev->bar->cap);
1048 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001049 dev->db_stride = NVME_CAP_STRIDE(cap);
Matthew Wilcox22605f92011-04-19 15:04:20 -04001050
Matthew Wilcox9e866772012-08-03 13:55:56 -04001051 while (!result && !(readl(&dev->bar->csts) & NVME_CSTS_RDY)) {
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001052 msleep(100);
1053 if (fatal_signal_pending(current))
Matthew Wilcox9e866772012-08-03 13:55:56 -04001054 result = -EINTR;
Matthew Wilcox22605f92011-04-19 15:04:20 -04001055 if (time_after(jiffies, timeout)) {
1056 dev_err(&dev->pci_dev->dev,
1057 "Device not ready; aborting initialisation\n");
Matthew Wilcox9e866772012-08-03 13:55:56 -04001058 result = -ENODEV;
Matthew Wilcox22605f92011-04-19 15:04:20 -04001059 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001060 }
1061
Matthew Wilcox9e866772012-08-03 13:55:56 -04001062 if (result) {
1063 nvme_free_queue_mem(nvmeq);
1064 return result;
1065 }
1066
Matthew Wilcox30010822011-01-20 09:10:15 -05001067 result = queue_request_irq(dev, nvmeq, "nvme admin");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001068 dev->queues[0] = nvmeq;
1069 return result;
1070}
1071
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001072static struct nvme_iod *nvme_map_user_pages(struct nvme_dev *dev, int write,
1073 unsigned long addr, unsigned length)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001074{
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001075 int i, err, count, nents, offset;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001076 struct scatterlist *sg;
1077 struct page **pages;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001078 struct nvme_iod *iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001079
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001080 if (addr & 3)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001081 return ERR_PTR(-EINVAL);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001082 if (!length)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001083 return ERR_PTR(-EINVAL);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001084
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001085 offset = offset_in_page(addr);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001086 count = DIV_ROUND_UP(offset + length, PAGE_SIZE);
1087 pages = kcalloc(count, sizeof(*pages), GFP_KERNEL);
Dan Carpenter22fff822012-01-20 07:55:30 -05001088 if (!pages)
1089 return ERR_PTR(-ENOMEM);
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001090
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 }
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001097
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001098 iod = nvme_alloc_iod(count, length, GFP_KERNEL);
1099 sg = iod->sg;
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001100 sg_init_table(sg, count);
Matthew Wilcoxd0ba1e42011-09-13 17:01:39 -04001101 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;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001106 }
Matthew Wilcoxfe304c42012-01-06 13:49:25 -07001107 sg_mark_end(&sg[i - 1]);
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001108 iod->nents = count;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001109
1110 err = -ENOMEM;
1111 nents = dma_map_sg(&dev->pci_dev->dev, sg, count,
1112 write ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001113 if (!nents)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001114 goto free_iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001115
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001116 kfree(pages);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001117 return iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001118
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001119 free_iod:
1120 kfree(iod);
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001121 put_pages:
1122 for (i = 0; i < count; i++)
1123 put_page(pages[i]);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001124 kfree(pages);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001125 return ERR_PTR(err);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001126}
1127
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001128static void nvme_unmap_user_pages(struct nvme_dev *dev, int write,
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001129 struct nvme_iod *iod)
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001130{
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001131 int i;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001132
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001133 dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents,
1134 write ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001135
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001136 for (i = 0; i < iod->nents; i++)
1137 put_page(sg_page(&iod->sg[i]));
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001138}
1139
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001140static 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;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001147 int status;
1148 struct nvme_iod *iod;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001149
1150 if (copy_from_user(&io, uio, sizeof(io)))
1151 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001152 length = (io.nblocks + 1) << ns->lba_shift;
1153
1154 switch (io.opcode) {
1155 case nvme_cmd_write:
1156 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001157 case nvme_cmd_compare:
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001158 iod = nvme_map_user_pages(dev, io.opcode & 1, io.addr, length);
Matthew Wilcox64132142011-08-09 12:56:37 -04001159 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001160 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001161 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001162 }
1163
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001164 if (IS_ERR(iod))
1165 return PTR_ERR(iod);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001166
1167 memset(&c, 0, sizeof(c));
1168 c.rw.opcode = io.opcode;
1169 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001170 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001171 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001172 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001173 c.rw.control = cpu_to_le16(io.control);
1174 c.rw.dsmgmt = cpu_to_le16(io.dsmgmt);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001175 c.rw.reftag = io.reftag;
1176 c.rw.apptag = io.apptag;
1177 c.rw.appmask = io.appmask;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -05001178 /* XXX: metadata */
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001179 length = nvme_setup_prps(dev, &c.common, iod, length, GFP_KERNEL);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -05001180
Matthew Wilcox040a93b2011-12-20 11:04:12 -05001181 nvmeq = get_nvmeq(dev);
Matthew Wilcoxfa922822011-03-16 16:29:00 -04001182 /*
1183 * Since nvme_submit_sync_cmd sleeps, we can't keep preemption
Matthew Wilcoxb1ad37e2011-02-04 16:14:30 -05001184 * 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 */
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001188 put_nvmeq(nvmeq);
Matthew Wilcoxb77954c2011-05-12 13:51:41 -04001189 if (length != (io.nblocks + 1) << ns->lba_shift)
1190 status = -ENOMEM;
1191 else
Matthew Wilcoxff976d72011-12-20 13:53:01 -05001192 status = nvme_submit_sync_cmd(nvmeq, &c, NULL, NVME_IO_TIMEOUT);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001193
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001194 nvme_unmap_user_pages(dev, io.opcode & 1, iod);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001195 nvme_free_iod(dev, iod);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001196 return status;
1197}
1198
Keith Busch50af8ba2012-07-25 16:07:55 -06001199static int nvme_user_admin_cmd(struct nvme_dev *dev,
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001200 struct nvme_admin_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001201{
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001202 struct nvme_admin_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001203 struct nvme_command c;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001204 int status, length;
Keith Buschc7d36ab2012-07-27 11:53:28 -06001205 struct nvme_iod *uninitialized_var(iod);
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001206
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001207 if (!capable(CAP_SYS_ADMIN))
1208 return -EACCES;
1209 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001210 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001211
1212 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001213 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) {
Matthew Wilcox49742182012-01-06 13:42:45 -07001227 iod = nvme_map_user_pages(dev, cmd.opcode & 1, cmd.addr,
1228 length);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001229 if (IS_ERR(iod))
1230 return PTR_ERR(iod);
1231 length = nvme_setup_prps(dev, &c.common, iod, length,
1232 GFP_KERNEL);
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001233 }
1234
1235 if (length != cmd.data_len)
Matthew Wilcoxb77954c2011-05-12 13:51:41 -04001236 status = -ENOMEM;
1237 else
1238 status = nvme_submit_admin_cmd(dev, &c, NULL);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001239
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001240 if (cmd.data_len) {
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001241 nvme_unmap_user_pages(dev, cmd.opcode & 1, iod);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001242 nvme_free_iod(dev, iod);
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001243 }
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001244 return status;
1245}
1246
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001247static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1248 unsigned long arg)
1249{
1250 struct nvme_ns *ns = bdev->bd_disk->private_data;
1251
1252 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001253 case NVME_IOCTL_ID:
1254 return ns->ns_id;
1255 case NVME_IOCTL_ADMIN_CMD:
Keith Busch50af8ba2012-07-25 16:07:55 -06001256 return nvme_user_admin_cmd(ns->dev, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001257 case NVME_IOCTL_SUBMIT_IO:
1258 return nvme_submit_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001259 default:
1260 return -ENOTTY;
1261 }
1262}
1263
1264static const struct block_device_operations nvme_fops = {
1265 .owner = THIS_MODULE,
1266 .ioctl = nvme_ioctl,
Matthew Wilcox49481682011-03-19 14:55:38 -04001267 .compat_ioctl = nvme_ioctl,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001268};
1269
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001270static void nvme_resubmit_bios(struct nvme_queue *nvmeq)
1271{
1272 while (bio_list_peek(&nvmeq->sq_cong)) {
1273 struct bio *bio = bio_list_pop(&nvmeq->sq_cong);
1274 struct nvme_ns *ns = bio->bi_bdev->bd_disk->private_data;
1275 if (nvme_submit_bio_queue(nvmeq, ns, bio)) {
1276 bio_list_add_head(&nvmeq->sq_cong, bio);
1277 break;
1278 }
Matthew Wilcox3cb967c2011-03-16 16:45:49 -04001279 if (bio_list_empty(&nvmeq->sq_cong))
1280 remove_wait_queue(&nvmeq->sq_full,
1281 &nvmeq->sq_cong_wait);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001282 }
1283}
1284
1285static int nvme_kthread(void *data)
1286{
1287 struct nvme_dev *dev;
1288
1289 while (!kthread_should_stop()) {
1290 __set_current_state(TASK_RUNNING);
1291 spin_lock(&dev_list_lock);
1292 list_for_each_entry(dev, &dev_list, node) {
1293 int i;
1294 for (i = 0; i < dev->queue_count; i++) {
1295 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05001296 if (!nvmeq)
1297 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001298 spin_lock_irq(&nvmeq->q_lock);
1299 if (nvme_process_cq(nvmeq))
1300 printk("process_cq did something\n");
Matthew Wilcoxa09115b2012-08-07 15:56:23 -04001301 nvme_cancel_ios(nvmeq, true);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001302 nvme_resubmit_bios(nvmeq);
1303 spin_unlock_irq(&nvmeq->q_lock);
1304 }
1305 }
1306 spin_unlock(&dev_list_lock);
1307 set_current_state(TASK_INTERRUPTIBLE);
1308 schedule_timeout(HZ);
1309 }
1310 return 0;
1311}
1312
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001313static DEFINE_IDA(nvme_index_ida);
1314
1315static int nvme_get_ns_idx(void)
1316{
1317 int index, error;
1318
1319 do {
1320 if (!ida_pre_get(&nvme_index_ida, GFP_KERNEL))
1321 return -1;
1322
1323 spin_lock(&dev_list_lock);
1324 error = ida_get_new(&nvme_index_ida, &index);
1325 spin_unlock(&dev_list_lock);
1326 } while (error == -EAGAIN);
1327
1328 if (error)
1329 index = -1;
1330 return index;
1331}
1332
1333static void nvme_put_ns_idx(int index)
1334{
1335 spin_lock(&dev_list_lock);
1336 ida_remove(&nvme_index_ida, index);
1337 spin_unlock(&dev_list_lock);
1338}
1339
1340static struct nvme_ns *nvme_alloc_ns(struct nvme_dev *dev, int nsid,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001341 struct nvme_id_ns *id, struct nvme_lba_range_type *rt)
1342{
1343 struct nvme_ns *ns;
1344 struct gendisk *disk;
1345 int lbaf;
1346
1347 if (rt->attributes & NVME_LBART_ATTRIB_HIDE)
1348 return NULL;
1349
1350 ns = kzalloc(sizeof(*ns), GFP_KERNEL);
1351 if (!ns)
1352 return NULL;
1353 ns->queue = blk_alloc_queue(GFP_KERNEL);
1354 if (!ns->queue)
1355 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07001356 ns->queue->queue_flags = QUEUE_FLAG_DEFAULT;
1357 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
1358 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
1359/* queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue); */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001360 blk_queue_make_request(ns->queue, nvme_make_request);
1361 ns->dev = dev;
1362 ns->queue->queuedata = ns;
1363
1364 disk = alloc_disk(NVME_MINORS);
1365 if (!disk)
1366 goto out_free_queue;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001367 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001368 ns->disk = disk;
1369 lbaf = id->flbas & 0xf;
1370 ns->lba_shift = id->lbaf[lbaf].ds;
Keith Busche9ef4632012-07-24 15:01:04 -06001371 blk_queue_logical_block_size(ns->queue, 1 << ns->lba_shift);
Keith Busch8fc23e02012-07-26 11:29:57 -06001372 if (dev->max_hw_sectors)
1373 blk_queue_max_hw_sectors(ns->queue, dev->max_hw_sectors);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001374
1375 disk->major = nvme_major;
1376 disk->minors = NVME_MINORS;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001377 disk->first_minor = NVME_MINORS * nvme_get_ns_idx();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001378 disk->fops = &nvme_fops;
1379 disk->private_data = ns;
1380 disk->queue = ns->queue;
Matthew Wilcox388f0372011-02-01 12:49:38 -05001381 disk->driverfs_dev = &dev->pci_dev->dev;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001382 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001383 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
1384
1385 return ns;
1386
1387 out_free_queue:
1388 blk_cleanup_queue(ns->queue);
1389 out_free_ns:
1390 kfree(ns);
1391 return NULL;
1392}
1393
1394static void nvme_ns_free(struct nvme_ns *ns)
1395{
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001396 int index = ns->disk->first_minor / NVME_MINORS;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001397 put_disk(ns->disk);
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001398 nvme_put_ns_idx(index);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001399 blk_cleanup_queue(ns->queue);
1400 kfree(ns);
1401}
1402
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05001403static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001404{
1405 int status;
1406 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05001407 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001408
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001409 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001410 &result);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001411 if (status)
1412 return -EIO;
1413 return min(result & 0xffff, result >> 16) + 1;
1414}
1415
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001416static int __devinit nvme_setup_io_queues(struct nvme_dev *dev)
1417{
Keith Buscha0cadb82012-07-27 13:57:23 -04001418 int result, cpu, i, nr_io_queues, db_bar_size, q_depth;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001419
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001420 nr_io_queues = num_online_cpus();
1421 result = set_queue_count(dev, nr_io_queues);
Matthew Wilcox1b234842011-01-20 13:01:49 -05001422 if (result < 0)
1423 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001424 if (result < nr_io_queues)
1425 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001426
Matthew Wilcox1b234842011-01-20 13:01:49 -05001427 /* Deregister the admin queue's interrupt */
1428 free_irq(dev->entry[0].vector, dev->queues[0]);
1429
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001430 db_bar_size = 4096 + ((nr_io_queues + 1) << (dev->db_stride + 3));
1431 if (db_bar_size > 8192) {
1432 iounmap(dev->bar);
1433 dev->bar = ioremap(pci_resource_start(dev->pci_dev, 0),
1434 db_bar_size);
1435 dev->dbs = ((void __iomem *)dev->bar) + 4096;
1436 dev->queues[0]->q_db = dev->dbs;
1437 }
1438
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001439 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05001440 dev->entry[i].entry = i;
1441 for (;;) {
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001442 result = pci_enable_msix(dev->pci_dev, dev->entry,
1443 nr_io_queues);
Matthew Wilcox1b234842011-01-20 13:01:49 -05001444 if (result == 0) {
1445 break;
1446 } else if (result > 0) {
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001447 nr_io_queues = result;
Matthew Wilcox1b234842011-01-20 13:01:49 -05001448 continue;
1449 } else {
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001450 nr_io_queues = 1;
Matthew Wilcox1b234842011-01-20 13:01:49 -05001451 break;
1452 }
1453 }
1454
1455 result = queue_request_irq(dev, dev->queues[0], "nvme admin");
1456 /* XXX: handle failure here */
1457
1458 cpu = cpumask_first(cpu_online_mask);
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001459 for (i = 0; i < nr_io_queues; i++) {
Matthew Wilcox1b234842011-01-20 13:01:49 -05001460 irq_set_affinity_hint(dev->entry[i].vector, get_cpu_mask(cpu));
1461 cpu = cpumask_next(cpu, cpu_online_mask);
1462 }
1463
Keith Buscha0cadb82012-07-27 13:57:23 -04001464 q_depth = min_t(int, NVME_CAP_MQES(readq(&dev->bar->cap)) + 1,
1465 NVME_Q_DEPTH);
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001466 for (i = 0; i < nr_io_queues; i++) {
Keith Buscha0cadb82012-07-27 13:57:23 -04001467 dev->queues[i + 1] = nvme_create_queue(dev, i + 1, q_depth, i);
Matthew Wilcox6f0f5442011-05-11 13:30:59 -07001468 if (IS_ERR(dev->queues[i + 1]))
1469 return PTR_ERR(dev->queues[i + 1]);
Matthew Wilcox1b234842011-01-20 13:01:49 -05001470 dev->queue_count++;
1471 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001472
Matthew Wilcox9ecdc942011-03-16 16:52:19 -04001473 for (; i < num_possible_cpus(); i++) {
1474 int target = i % rounddown_pow_of_two(dev->queue_count - 1);
1475 dev->queues[i + 1] = dev->queues[target + 1];
1476 }
1477
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001478 return 0;
1479}
1480
1481static void nvme_free_queues(struct nvme_dev *dev)
1482{
1483 int i;
1484
1485 for (i = dev->queue_count - 1; i >= 0; i--)
1486 nvme_free_queue(dev, i);
1487}
1488
1489static int __devinit nvme_dev_add(struct nvme_dev *dev)
1490{
1491 int res, nn, i;
1492 struct nvme_ns *ns, *next;
Matthew Wilcox51814232011-02-01 16:18:08 -05001493 struct nvme_id_ctrl *ctrl;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001494 struct nvme_id_ns *id_ns;
1495 void *mem;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001496 dma_addr_t dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001497
1498 res = nvme_setup_io_queues(dev);
1499 if (res)
1500 return res;
1501
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001502 mem = dma_alloc_coherent(&dev->pci_dev->dev, 8192, &dma_addr,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001503 GFP_KERNEL);
1504
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001505 res = nvme_identify(dev, 0, 1, dma_addr);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001506 if (res) {
1507 res = -EIO;
1508 goto out_free;
1509 }
1510
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001511 ctrl = mem;
Matthew Wilcox51814232011-02-01 16:18:08 -05001512 nn = le32_to_cpup(&ctrl->nn);
1513 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
1514 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
1515 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Keith Busch8fc23e02012-07-26 11:29:57 -06001516 if (ctrl->mdts) {
1517 int shift = NVME_CAP_MPSMIN(readq(&dev->bar->cap)) + 12;
1518 dev->max_hw_sectors = 1 << (ctrl->mdts + shift - 9);
1519 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001520
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001521 id_ns = mem;
Matthew Wilcox2b2c1892011-10-07 13:10:13 -04001522 for (i = 1; i <= nn; i++) {
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001523 res = nvme_identify(dev, i, 0, dma_addr);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001524 if (res)
1525 continue;
1526
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001527 if (id_ns->ncap == 0)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001528 continue;
1529
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001530 res = nvme_get_features(dev, NVME_FEAT_LBA_RANGE, i,
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001531 dma_addr + 4096);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001532 if (res)
1533 continue;
1534
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001535 ns = nvme_alloc_ns(dev, i, mem, mem + 4096);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001536 if (ns)
1537 list_add_tail(&ns->list, &dev->namespaces);
1538 }
1539 list_for_each_entry(ns, &dev->namespaces, list)
1540 add_disk(ns->disk);
1541
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001542 goto out;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001543
1544 out_free:
1545 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
1546 list_del(&ns->list);
1547 nvme_ns_free(ns);
1548 }
1549
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001550 out:
Matthew Wilcox684f5c22011-09-19 17:14:53 -04001551 dma_free_coherent(&dev->pci_dev->dev, 8192, mem, dma_addr);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001552 return res;
1553}
1554
1555static int nvme_dev_remove(struct nvme_dev *dev)
1556{
1557 struct nvme_ns *ns, *next;
1558
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001559 spin_lock(&dev_list_lock);
1560 list_del(&dev->node);
1561 spin_unlock(&dev_list_lock);
1562
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001563 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
1564 list_del(&ns->list);
1565 del_gendisk(ns->disk);
1566 nvme_ns_free(ns);
1567 }
1568
1569 nvme_free_queues(dev);
1570
1571 return 0;
1572}
1573
Matthew Wilcox091b6092011-02-10 09:56:01 -05001574static int nvme_setup_prp_pools(struct nvme_dev *dev)
1575{
1576 struct device *dmadev = &dev->pci_dev->dev;
1577 dev->prp_page_pool = dma_pool_create("prp list page", dmadev,
1578 PAGE_SIZE, PAGE_SIZE, 0);
1579 if (!dev->prp_page_pool)
1580 return -ENOMEM;
1581
Matthew Wilcox99802a72011-02-10 10:30:34 -05001582 /* Optimisation for I/Os between 4k and 128k */
1583 dev->prp_small_pool = dma_pool_create("prp list 256", dmadev,
1584 256, 256, 0);
1585 if (!dev->prp_small_pool) {
1586 dma_pool_destroy(dev->prp_page_pool);
1587 return -ENOMEM;
1588 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05001589 return 0;
1590}
1591
1592static void nvme_release_prp_pools(struct nvme_dev *dev)
1593{
1594 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05001595 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05001596}
1597
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07001598static DEFINE_IDA(nvme_instance_ida);
1599
1600static int nvme_set_instance(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001601{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07001602 int instance, error;
1603
1604 do {
1605 if (!ida_pre_get(&nvme_instance_ida, GFP_KERNEL))
1606 return -ENODEV;
1607
1608 spin_lock(&dev_list_lock);
1609 error = ida_get_new(&nvme_instance_ida, &instance);
1610 spin_unlock(&dev_list_lock);
1611 } while (error == -EAGAIN);
1612
1613 if (error)
1614 return -ENODEV;
1615
1616 dev->instance = instance;
1617 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001618}
1619
1620static void nvme_release_instance(struct nvme_dev *dev)
1621{
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07001622 spin_lock(&dev_list_lock);
1623 ida_remove(&nvme_instance_ida, dev->instance);
1624 spin_unlock(&dev_list_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001625}
1626
1627static int __devinit nvme_probe(struct pci_dev *pdev,
1628 const struct pci_device_id *id)
1629{
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001630 int bars, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001631 struct nvme_dev *dev;
1632
1633 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1634 if (!dev)
1635 return -ENOMEM;
1636 dev->entry = kcalloc(num_possible_cpus(), sizeof(*dev->entry),
1637 GFP_KERNEL);
1638 if (!dev->entry)
1639 goto free;
Matthew Wilcox1b234842011-01-20 13:01:49 -05001640 dev->queues = kcalloc(num_possible_cpus() + 1, sizeof(void *),
1641 GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001642 if (!dev->queues)
1643 goto free;
1644
Shane Michael Matthews0ee5a7d2011-02-01 08:49:30 -05001645 if (pci_enable_device_mem(pdev))
1646 goto free;
Matthew Wilcoxf64d3362011-02-01 09:01:59 -05001647 pci_set_master(pdev);
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001648 bars = pci_select_bars(pdev, IORESOURCE_MEM);
1649 if (pci_request_selected_regions(pdev, bars, "nvme"))
1650 goto disable;
Shane Michael Matthews0ee5a7d2011-02-01 08:49:30 -05001651
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001652 INIT_LIST_HEAD(&dev->namespaces);
1653 dev->pci_dev = pdev;
1654 pci_set_drvdata(pdev, dev);
Matthew Wilcox29303532011-02-01 16:23:39 -05001655 dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
1656 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
Quoc-Son Anhcd58ad72012-02-21 16:50:53 -07001657 result = nvme_set_instance(dev);
1658 if (result)
1659 goto disable;
1660
Matthew Wilcox53c95772011-01-20 13:42:34 -05001661 dev->entry[0].vector = pdev->irq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001662
Matthew Wilcox091b6092011-02-10 09:56:01 -05001663 result = nvme_setup_prp_pools(dev);
1664 if (result)
1665 goto disable_msix;
1666
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001667 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
1668 if (!dev->bar) {
1669 result = -ENOMEM;
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001670 goto disable_msix;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001671 }
1672
1673 result = nvme_configure_admin_queue(dev);
1674 if (result)
1675 goto unmap;
1676 dev->queue_count++;
1677
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001678 spin_lock(&dev_list_lock);
1679 list_add(&dev->node, &dev_list);
1680 spin_unlock(&dev_list_lock);
1681
Matthew Wilcox740216f2011-02-15 16:28:20 -05001682 result = nvme_dev_add(dev);
1683 if (result)
1684 goto delete;
1685
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001686 return 0;
1687
1688 delete:
Matthew Wilcox740216f2011-02-15 16:28:20 -05001689 spin_lock(&dev_list_lock);
1690 list_del(&dev->node);
1691 spin_unlock(&dev_list_lock);
1692
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001693 nvme_free_queues(dev);
1694 unmap:
1695 iounmap(dev->bar);
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001696 disable_msix:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001697 pci_disable_msix(pdev);
1698 nvme_release_instance(dev);
Matthew Wilcox091b6092011-02-10 09:56:01 -05001699 nvme_release_prp_pools(dev);
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001700 disable:
Shane Michael Matthews0ee5a7d2011-02-01 08:49:30 -05001701 pci_disable_device(pdev);
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001702 pci_release_regions(pdev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001703 free:
1704 kfree(dev->queues);
1705 kfree(dev->entry);
1706 kfree(dev);
1707 return result;
1708}
1709
1710static void __devexit nvme_remove(struct pci_dev *pdev)
1711{
1712 struct nvme_dev *dev = pci_get_drvdata(pdev);
1713 nvme_dev_remove(dev);
1714 pci_disable_msix(pdev);
1715 iounmap(dev->bar);
1716 nvme_release_instance(dev);
Matthew Wilcox091b6092011-02-10 09:56:01 -05001717 nvme_release_prp_pools(dev);
Shane Michael Matthews0ee5a7d2011-02-01 08:49:30 -05001718 pci_disable_device(pdev);
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001719 pci_release_regions(pdev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001720 kfree(dev->queues);
1721 kfree(dev->entry);
1722 kfree(dev);
1723}
1724
1725/* These functions are yet to be implemented */
1726#define nvme_error_detected NULL
1727#define nvme_dump_registers NULL
1728#define nvme_link_reset NULL
1729#define nvme_slot_reset NULL
1730#define nvme_error_resume NULL
1731#define nvme_suspend NULL
1732#define nvme_resume NULL
1733
1734static struct pci_error_handlers nvme_err_handler = {
1735 .error_detected = nvme_error_detected,
1736 .mmio_enabled = nvme_dump_registers,
1737 .link_reset = nvme_link_reset,
1738 .slot_reset = nvme_slot_reset,
1739 .resume = nvme_error_resume,
1740};
1741
1742/* Move to pci_ids.h later */
1743#define PCI_CLASS_STORAGE_EXPRESS 0x010802
1744
1745static DEFINE_PCI_DEVICE_TABLE(nvme_id_table) = {
1746 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
1747 { 0, }
1748};
1749MODULE_DEVICE_TABLE(pci, nvme_id_table);
1750
1751static struct pci_driver nvme_driver = {
1752 .name = "nvme",
1753 .id_table = nvme_id_table,
1754 .probe = nvme_probe,
1755 .remove = __devexit_p(nvme_remove),
1756 .suspend = nvme_suspend,
1757 .resume = nvme_resume,
1758 .err_handler = &nvme_err_handler,
1759};
1760
1761static int __init nvme_init(void)
1762{
Matthew Wilcox0ac13142012-07-31 13:31:15 -04001763 int result;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001764
1765 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
1766 if (IS_ERR(nvme_thread))
1767 return PTR_ERR(nvme_thread);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001768
Keith Busch5c42ea12012-07-25 16:05:18 -06001769 result = register_blkdev(nvme_major, "nvme");
1770 if (result < 0)
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001771 goto kill_kthread;
Keith Busch5c42ea12012-07-25 16:05:18 -06001772 else if (result > 0)
Matthew Wilcox0ac13142012-07-31 13:31:15 -04001773 nvme_major = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001774
1775 result = pci_register_driver(&nvme_driver);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001776 if (result)
1777 goto unregister_blkdev;
1778 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001779
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001780 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001781 unregister_blkdev(nvme_major, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001782 kill_kthread:
1783 kthread_stop(nvme_thread);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001784 return result;
1785}
1786
1787static void __exit nvme_exit(void)
1788{
1789 pci_unregister_driver(&nvme_driver);
1790 unregister_blkdev(nvme_major, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001791 kthread_stop(nvme_thread);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001792}
1793
1794MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
1795MODULE_LICENSE("GPL");
Matthew Wilcox366e8212012-01-10 16:30:15 -05001796MODULE_VERSION("0.8");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001797module_init(nvme_init);
1798module_exit(nvme_exit);