blob: 1f3c1a7d132a59ded61f1859fb83febc5e19609a [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
Hitoshi Mitake797a7962012-02-07 11:45:33 +090044#include <asm-generic/io-64-nonatomic-lo-hi.h>
45
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050046#define NVME_Q_DEPTH 1024
47#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
48#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))
49#define NVME_MINORS 64
Matthew Wilcoxff976d72011-12-20 13:53:01 -050050#define NVME_IO_TIMEOUT (5 * HZ)
Matthew Wilcoxe85248e2011-02-06 18:30:16 -050051#define ADMIN_TIMEOUT (60 * HZ)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050052
53static int nvme_major;
54module_param(nvme_major, int, 0);
55
Matthew Wilcox58ffacb2011-02-06 07:28:06 -050056static int use_threaded_interrupts;
57module_param(use_threaded_interrupts, int, 0);
58
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050059static DEFINE_SPINLOCK(dev_list_lock);
60static LIST_HEAD(dev_list);
61static struct task_struct *nvme_thread;
62
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050063/*
64 * Represents an NVM Express device. Each nvme_dev is a PCI function.
65 */
66struct nvme_dev {
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -050067 struct list_head node;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050068 struct nvme_queue **queues;
69 u32 __iomem *dbs;
70 struct pci_dev *pci_dev;
Matthew Wilcox091b6092011-02-10 09:56:01 -050071 struct dma_pool *prp_page_pool;
Matthew Wilcox99802a72011-02-10 10:30:34 -050072 struct dma_pool *prp_small_pool;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050073 int instance;
74 int queue_count;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -040075 int db_stride;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050076 u32 ctrl_config;
77 struct msix_entry *entry;
78 struct nvme_bar __iomem *bar;
79 struct list_head namespaces;
Matthew Wilcox51814232011-02-01 16:18:08 -050080 char serial[20];
81 char model[40];
82 char firmware_rev[8];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050083};
84
85/*
86 * An NVM Express namespace is equivalent to a SCSI LUN
87 */
88struct nvme_ns {
89 struct list_head list;
90
91 struct nvme_dev *dev;
92 struct request_queue *queue;
93 struct gendisk *disk;
94
95 int ns_id;
96 int lba_shift;
97};
98
99/*
100 * An NVM Express queue. Each device has at least two (one for admin
101 * commands and one for I/O commands).
102 */
103struct nvme_queue {
104 struct device *q_dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500105 struct nvme_dev *dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500106 spinlock_t q_lock;
107 struct nvme_command *sq_cmds;
108 volatile struct nvme_completion *cqes;
109 dma_addr_t sq_dma_addr;
110 dma_addr_t cq_dma_addr;
111 wait_queue_head_t sq_full;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -0500112 wait_queue_t sq_cong_wait;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500113 struct bio_list sq_cong;
114 u32 __iomem *q_db;
115 u16 q_depth;
116 u16 cq_vector;
117 u16 sq_head;
118 u16 sq_tail;
119 u16 cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500120 u16 cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500121 unsigned long cmdid_data[];
122};
123
124/*
125 * Check we didin't inadvertently grow the command struct
126 */
127static inline void _nvme_check_size(void)
128{
129 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
130 BUILD_BUG_ON(sizeof(struct nvme_create_cq) != 64);
131 BUILD_BUG_ON(sizeof(struct nvme_create_sq) != 64);
132 BUILD_BUG_ON(sizeof(struct nvme_delete_queue) != 64);
133 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
134 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
135 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);
136 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);
137 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
138}
139
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500140typedef void (*nvme_completion_fn)(struct nvme_dev *, void *,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400141 struct nvme_completion *);
142
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500143struct nvme_cmd_info {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400144 nvme_completion_fn fn;
145 void *ctx;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500146 unsigned long timeout;
147};
148
149static struct nvme_cmd_info *nvme_cmd_info(struct nvme_queue *nvmeq)
150{
151 return (void *)&nvmeq->cmdid_data[BITS_TO_LONGS(nvmeq->q_depth)];
152}
153
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500154/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400155 * alloc_cmdid() - Allocate a Command ID
156 * @nvmeq: The queue that will be used for this command
157 * @ctx: A pointer that will be passed to the handler
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400158 * @handler: The function to call on completion
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500159 *
160 * Allocate a Command ID for a queue. The data passed in will
161 * be passed to the completion handler. This is implemented by using
162 * the bottom two bits of the ctx pointer to store the handler ID.
163 * Passing in a pointer that's not 4-byte aligned will cause a BUG.
164 * We can change this if it becomes a problem.
Matthew Wilcox184d2942011-05-11 21:36:38 -0400165 *
166 * May be called with local interrupts disabled and the q_lock held,
167 * or with interrupts enabled and no locks held.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500168 */
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400169static int alloc_cmdid(struct nvme_queue *nvmeq, void *ctx,
170 nvme_completion_fn handler, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500171{
Matthew Wilcoxe6d15f72011-02-24 08:49:41 -0500172 int depth = nvmeq->q_depth - 1;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500173 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500174 int cmdid;
175
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500176 do {
177 cmdid = find_first_zero_bit(nvmeq->cmdid_data, depth);
178 if (cmdid >= depth)
179 return -EBUSY;
180 } while (test_and_set_bit(cmdid, nvmeq->cmdid_data));
181
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400182 info[cmdid].fn = handler;
183 info[cmdid].ctx = ctx;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500184 info[cmdid].timeout = jiffies + timeout;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500185 return cmdid;
186}
187
188static int alloc_cmdid_killable(struct nvme_queue *nvmeq, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400189 nvme_completion_fn handler, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500190{
191 int cmdid;
192 wait_event_killable(nvmeq->sq_full,
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500193 (cmdid = alloc_cmdid(nvmeq, ctx, handler, timeout)) >= 0);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500194 return (cmdid < 0) ? -EINTR : cmdid;
195}
196
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400197/* Special values must be less than 0x1000 */
198#define CMD_CTX_BASE ((void *)POISON_POINTER_DELTA)
Matthew Wilcoxd2d87032011-02-07 15:55:59 -0500199#define CMD_CTX_CANCELLED (0x30C + CMD_CTX_BASE)
200#define CMD_CTX_COMPLETED (0x310 + CMD_CTX_BASE)
201#define CMD_CTX_INVALID (0x314 + CMD_CTX_BASE)
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500202#define CMD_CTX_FLUSH (0x318 + CMD_CTX_BASE)
Matthew Wilcoxbe7b6272011-02-06 07:53:23 -0500203
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500204static void special_completion(struct nvme_dev *dev, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400205 struct nvme_completion *cqe)
206{
207 if (ctx == CMD_CTX_CANCELLED)
208 return;
209 if (ctx == CMD_CTX_FLUSH)
210 return;
211 if (ctx == CMD_CTX_COMPLETED) {
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500212 dev_warn(&dev->pci_dev->dev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400213 "completed id %d twice on queue %d\n",
214 cqe->command_id, le16_to_cpup(&cqe->sq_id));
215 return;
216 }
217 if (ctx == CMD_CTX_INVALID) {
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500218 dev_warn(&dev->pci_dev->dev,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400219 "invalid id %d completed on queue %d\n",
220 cqe->command_id, le16_to_cpup(&cqe->sq_id));
221 return;
222 }
223
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500224 dev_warn(&dev->pci_dev->dev, "Unknown special completion %p\n", ctx);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400225}
226
Matthew Wilcox184d2942011-05-11 21:36:38 -0400227/*
228 * Called with local interrupts disabled and the q_lock held. May not sleep.
229 */
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400230static void *free_cmdid(struct nvme_queue *nvmeq, int cmdid,
231 nvme_completion_fn *fn)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500232{
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400233 void *ctx;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500234 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500235
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400236 if (cmdid >= nvmeq->q_depth) {
237 *fn = special_completion;
Matthew Wilcox48e3d392011-02-06 08:51:15 -0500238 return CMD_CTX_INVALID;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400239 }
240 *fn = info[cmdid].fn;
241 ctx = info[cmdid].ctx;
242 info[cmdid].fn = special_completion;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500243 info[cmdid].ctx = CMD_CTX_COMPLETED;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500244 clear_bit(cmdid, nvmeq->cmdid_data);
245 wake_up(&nvmeq->sq_full);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400246 return ctx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500247}
248
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400249static void *cancel_cmdid(struct nvme_queue *nvmeq, int cmdid,
250 nvme_completion_fn *fn)
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500251{
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400252 void *ctx;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500253 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400254 if (fn)
255 *fn = info[cmdid].fn;
256 ctx = info[cmdid].ctx;
257 info[cmdid].fn = special_completion;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500258 info[cmdid].ctx = CMD_CTX_CANCELLED;
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400259 return ctx;
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500260}
261
Matthew Wilcox040a93b2011-12-20 11:04:12 -0500262static struct nvme_queue *get_nvmeq(struct nvme_dev *dev)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500263{
Matthew Wilcox040a93b2011-12-20 11:04:12 -0500264 return dev->queues[get_cpu() + 1];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500265}
266
267static void put_nvmeq(struct nvme_queue *nvmeq)
268{
Matthew Wilcox1b234842011-01-20 13:01:49 -0500269 put_cpu();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500270}
271
272/**
Matthew Wilcox714a7a22011-03-16 16:28:24 -0400273 * nvme_submit_cmd() - Copy a command into a queue and ring the doorbell
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500274 * @nvmeq: The queue to use
275 * @cmd: The command to send
276 *
277 * Safe to use from interrupt context
278 */
279static int nvme_submit_cmd(struct nvme_queue *nvmeq, struct nvme_command *cmd)
280{
281 unsigned long flags;
282 u16 tail;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500283 spin_lock_irqsave(&nvmeq->q_lock, flags);
284 tail = nvmeq->sq_tail;
285 memcpy(&nvmeq->sq_cmds[tail], cmd, sizeof(*cmd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500286 if (++tail == nvmeq->q_depth)
287 tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500288 writel(tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500289 nvmeq->sq_tail = tail;
290 spin_unlock_irqrestore(&nvmeq->q_lock, flags);
291
292 return 0;
293}
294
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500295/*
296 * The nvme_iod describes the data in an I/O, including the list of PRP
297 * entries. You can't see it in this data structure because C doesn't let
298 * me express that. Use nvme_alloc_iod to ensure there's enough space
299 * allocated to store the PRP list.
300 */
301struct nvme_iod {
302 void *private; /* For the use of the submitter of the I/O */
303 int npages; /* In the PRP list. 0 means small pool in use */
304 int offset; /* Of PRP list */
305 int nents; /* Used in scatterlist */
306 int length; /* Of data, in bytes */
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500307 dma_addr_t first_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500308 struct scatterlist sg[0];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500309};
310
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500311static __le64 **iod_list(struct nvme_iod *iod)
312{
313 return ((void *)iod) + iod->offset;
314}
315
316/*
317 * Will slightly overestimate the number of pages needed. This is OK
318 * as it only leads to a small amount of wasted memory for the lifetime of
319 * the I/O.
320 */
321static int nvme_npages(unsigned size)
322{
323 unsigned nprps = DIV_ROUND_UP(size + PAGE_SIZE, PAGE_SIZE);
324 return DIV_ROUND_UP(8 * nprps, PAGE_SIZE - 8);
325}
326
327static struct nvme_iod *
328nvme_alloc_iod(unsigned nseg, unsigned nbytes, gfp_t gfp)
329{
330 struct nvme_iod *iod = kmalloc(sizeof(struct nvme_iod) +
331 sizeof(__le64 *) * nvme_npages(nbytes) +
332 sizeof(struct scatterlist) * nseg, gfp);
333
334 if (iod) {
335 iod->offset = offsetof(struct nvme_iod, sg[nseg]);
336 iod->npages = -1;
337 iod->length = nbytes;
338 }
339
340 return iod;
341}
342
343static void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod)
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500344{
345 const int last_prp = PAGE_SIZE / 8 - 1;
346 int i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500347 __le64 **list = iod_list(iod);
348 dma_addr_t prp_dma = iod->first_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500349
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500350 if (iod->npages == 0)
351 dma_pool_free(dev->prp_small_pool, list[0], prp_dma);
352 for (i = 0; i < iod->npages; i++) {
353 __le64 *prp_list = list[i];
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500354 dma_addr_t next_prp_dma = le64_to_cpu(prp_list[last_prp]);
Matthew Wilcox091b6092011-02-10 09:56:01 -0500355 dma_pool_free(dev->prp_page_pool, prp_list, prp_dma);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500356 prp_dma = next_prp_dma;
357 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500358 kfree(iod);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500359}
360
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500361static void requeue_bio(struct nvme_dev *dev, struct bio *bio)
362{
363 struct nvme_queue *nvmeq = get_nvmeq(dev);
364 if (bio_list_empty(&nvmeq->sq_cong))
365 add_wait_queue(&nvmeq->sq_full, &nvmeq->sq_cong_wait);
366 bio_list_add(&nvmeq->sq_cong, bio);
367 put_nvmeq(nvmeq);
368 wake_up_process(nvme_thread);
369}
370
371static void bio_completion(struct nvme_dev *dev, void *ctx,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500372 struct nvme_completion *cqe)
373{
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500374 struct nvme_iod *iod = ctx;
375 struct bio *bio = iod->private;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500376 u16 status = le16_to_cpup(&cqe->status) >> 1;
377
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500378 dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500379 bio_data_dir(bio) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500380 nvme_free_iod(dev, iod);
Matthew Wilcox09a58f52011-04-28 23:09:09 -0700381 if (status) {
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500382 bio_endio(bio, -EIO);
Matthew Wilcox09a58f52011-04-28 23:09:09 -0700383 } else if (bio->bi_vcnt > bio->bi_idx) {
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500384 requeue_bio(dev, bio);
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500385 } else {
386 bio_endio(bio, 0);
387 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500388}
389
Matthew Wilcox184d2942011-05-11 21:36:38 -0400390/* length is in bytes. gfp flags indicates whether we may sleep. */
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500391static int nvme_setup_prps(struct nvme_dev *dev,
392 struct nvme_common_command *cmd, struct nvme_iod *iod,
393 int total_len, gfp_t gfp)
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500394{
Matthew Wilcox99802a72011-02-10 10:30:34 -0500395 struct dma_pool *pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500396 int length = total_len;
397 struct scatterlist *sg = iod->sg;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500398 int dma_len = sg_dma_len(sg);
399 u64 dma_addr = sg_dma_address(sg);
400 int offset = offset_in_page(dma_addr);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500401 __le64 *prp_list;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500402 __le64 **list = iod_list(iod);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500403 dma_addr_t prp_dma;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500404 int nprps, i;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500405
406 cmd->prp1 = cpu_to_le64(dma_addr);
407 length -= (PAGE_SIZE - offset);
408 if (length <= 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500409 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500410
411 dma_len -= (PAGE_SIZE - offset);
412 if (dma_len) {
413 dma_addr += (PAGE_SIZE - offset);
414 } else {
415 sg = sg_next(sg);
416 dma_addr = sg_dma_address(sg);
417 dma_len = sg_dma_len(sg);
418 }
419
420 if (length <= PAGE_SIZE) {
421 cmd->prp2 = cpu_to_le64(dma_addr);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500422 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500423 }
424
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500425 nprps = DIV_ROUND_UP(length, PAGE_SIZE);
Matthew Wilcox99802a72011-02-10 10:30:34 -0500426 if (nprps <= (256 / 8)) {
427 pool = dev->prp_small_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500428 iod->npages = 0;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500429 } else {
430 pool = dev->prp_page_pool;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500431 iod->npages = 1;
Matthew Wilcox99802a72011-02-10 10:30:34 -0500432 }
433
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400434 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
435 if (!prp_list) {
436 cmd->prp2 = cpu_to_le64(dma_addr);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500437 iod->npages = -1;
438 return (total_len - length) + PAGE_SIZE;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400439 }
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500440 list[0] = prp_list;
441 iod->first_dma = prp_dma;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500442 cmd->prp2 = cpu_to_le64(prp_dma);
443 i = 0;
444 for (;;) {
Matthew Wilcox7523d832011-03-16 16:43:40 -0400445 if (i == PAGE_SIZE / 8) {
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500446 __le64 *old_prp_list = prp_list;
Matthew Wilcoxb77954c2011-05-12 13:51:41 -0400447 prp_list = dma_pool_alloc(pool, gfp, &prp_dma);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500448 if (!prp_list)
449 return total_len - length;
450 list[iod->npages++] = prp_list;
Matthew Wilcox7523d832011-03-16 16:43:40 -0400451 prp_list[0] = old_prp_list[i - 1];
452 old_prp_list[i - 1] = cpu_to_le64(prp_dma);
453 i = 1;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -0500454 }
455 prp_list[i++] = cpu_to_le64(dma_addr);
456 dma_len -= PAGE_SIZE;
457 dma_addr += PAGE_SIZE;
458 length -= PAGE_SIZE;
459 if (length <= 0)
460 break;
461 if (dma_len > 0)
462 continue;
463 BUG_ON(dma_len < 0);
464 sg = sg_next(sg);
465 dma_addr = sg_dma_address(sg);
466 dma_len = sg_dma_len(sg);
467 }
468
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500469 return total_len;
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500470}
471
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500472/* NVMe scatterlists require no holes in the virtual address */
473#define BIOVEC_NOT_VIRT_MERGEABLE(vec1, vec2) ((vec2)->bv_offset || \
474 (((vec1)->bv_offset + (vec1)->bv_len) % PAGE_SIZE))
475
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500476static int nvme_map_bio(struct device *dev, struct nvme_iod *iod,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500477 struct bio *bio, enum dma_data_direction dma_dir, int psegs)
478{
Matthew Wilcox76830842011-02-10 13:55:39 -0500479 struct bio_vec *bvec, *bvprv = NULL;
480 struct scatterlist *sg = NULL;
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500481 int i, old_idx, length = 0, nsegs = 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500482
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500483 sg_init_table(iod->sg, psegs);
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500484 old_idx = bio->bi_idx;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500485 bio_for_each_segment(bvec, bio, i) {
Matthew Wilcox76830842011-02-10 13:55:39 -0500486 if (bvprv && BIOVEC_PHYS_MERGEABLE(bvprv, bvec)) {
487 sg->length += bvec->bv_len;
488 } else {
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500489 if (bvprv && BIOVEC_NOT_VIRT_MERGEABLE(bvprv, bvec))
490 break;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500491 sg = sg ? sg + 1 : iod->sg;
Matthew Wilcox76830842011-02-10 13:55:39 -0500492 sg_set_page(sg, bvec->bv_page, bvec->bv_len,
493 bvec->bv_offset);
494 nsegs++;
495 }
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500496 length += bvec->bv_len;
Matthew Wilcox76830842011-02-10 13:55:39 -0500497 bvprv = bvec;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500498 }
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500499 bio->bi_idx = i;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500500 iod->nents = nsegs;
Matthew Wilcox76830842011-02-10 13:55:39 -0500501 sg_mark_end(sg);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500502 if (dma_map_sg(dev, iod->sg, iod->nents, dma_dir) == 0) {
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500503 bio->bi_idx = old_idx;
504 return -ENOMEM;
505 }
506 return length;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500507}
508
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500509static int nvme_submit_flush(struct nvme_queue *nvmeq, struct nvme_ns *ns,
510 int cmdid)
511{
512 struct nvme_command *cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
513
514 memset(cmnd, 0, sizeof(*cmnd));
515 cmnd->common.opcode = nvme_cmd_flush;
516 cmnd->common.command_id = cmdid;
517 cmnd->common.nsid = cpu_to_le32(ns->ns_id);
518
519 if (++nvmeq->sq_tail == nvmeq->q_depth)
520 nvmeq->sq_tail = 0;
521 writel(nvmeq->sq_tail, nvmeq->q_db);
522
523 return 0;
524}
525
526static int nvme_submit_flush_data(struct nvme_queue *nvmeq, struct nvme_ns *ns)
527{
528 int cmdid = alloc_cmdid(nvmeq, (void *)CMD_CTX_FLUSH,
Matthew Wilcoxff976d72011-12-20 13:53:01 -0500529 special_completion, NVME_IO_TIMEOUT);
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500530 if (unlikely(cmdid < 0))
531 return cmdid;
532
533 return nvme_submit_flush(nvmeq, ns, cmdid);
534}
535
Matthew Wilcox184d2942011-05-11 21:36:38 -0400536/*
537 * Called with local interrupts disabled and the q_lock held. May not sleep.
538 */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500539static int nvme_submit_bio_queue(struct nvme_queue *nvmeq, struct nvme_ns *ns,
540 struct bio *bio)
541{
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500542 struct nvme_command *cmnd;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500543 struct nvme_iod *iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500544 enum dma_data_direction dma_dir;
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500545 int cmdid, length, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500546 u16 control;
547 u32 dsmgmt;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500548 int psegs = bio_phys_segments(ns->queue, bio);
549
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500550 if ((bio->bi_rw & REQ_FLUSH) && psegs) {
551 result = nvme_submit_flush_data(nvmeq, ns);
552 if (result)
553 return result;
554 }
555
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500556 iod = nvme_alloc_iod(psegs, bio->bi_size, GFP_ATOMIC);
557 if (!iod)
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500558 goto nomem;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500559 iod->private = bio;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500560
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500561 result = -EBUSY;
Matthew Wilcoxff976d72011-12-20 13:53:01 -0500562 cmdid = alloc_cmdid(nvmeq, iod, bio_completion, NVME_IO_TIMEOUT);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500563 if (unlikely(cmdid < 0))
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500564 goto free_iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500565
Matthew Wilcox00df5cb2011-02-22 14:18:30 -0500566 if ((bio->bi_rw & REQ_FLUSH) && !psegs)
567 return nvme_submit_flush(nvmeq, ns, cmdid);
568
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500569 control = 0;
570 if (bio->bi_rw & REQ_FUA)
571 control |= NVME_RW_FUA;
572 if (bio->bi_rw & (REQ_FAILFAST_DEV | REQ_RAHEAD))
573 control |= NVME_RW_LR;
574
575 dsmgmt = 0;
576 if (bio->bi_rw & REQ_RAHEAD)
577 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
578
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500579 cmnd = &nvmeq->sq_cmds[nvmeq->sq_tail];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500580
Matthew Wilcoxb8deb622011-01-26 10:08:25 -0500581 memset(cmnd, 0, sizeof(*cmnd));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500582 if (bio_data_dir(bio)) {
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500583 cmnd->rw.opcode = nvme_cmd_write;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500584 dma_dir = DMA_TO_DEVICE;
585 } else {
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500586 cmnd->rw.opcode = nvme_cmd_read;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500587 dma_dir = DMA_FROM_DEVICE;
588 }
589
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500590 result = nvme_map_bio(nvmeq->q_dmadev, iod, bio, dma_dir, psegs);
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500591 if (result < 0)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500592 goto free_iod;
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500593 length = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500594
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500595 cmnd->rw.command_id = cmdid;
596 cmnd->rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500597 length = nvme_setup_prps(nvmeq->dev, &cmnd->common, iod, length,
598 GFP_ATOMIC);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500599 cmnd->rw.slba = cpu_to_le64(bio->bi_sector >> (ns->lba_shift - 9));
Matthew Wilcox1ad2f892011-02-23 15:20:00 -0500600 cmnd->rw.length = cpu_to_le16((length >> ns->lba_shift) - 1);
Matthew Wilcoxff22b542011-01-26 10:02:29 -0500601 cmnd->rw.control = cpu_to_le16(control);
602 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500603
Matthew Wilcoxd8ee9d62011-02-24 08:46:00 -0500604 bio->bi_sector += length >> 9;
605
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500606 if (++nvmeq->sq_tail == nvmeq->q_depth)
607 nvmeq->sq_tail = 0;
Matthew Wilcox75478812011-02-16 09:59:59 -0500608 writel(nvmeq->sq_tail, nvmeq->q_db);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500609
Matthew Wilcox1974b1a2011-02-10 12:01:09 -0500610 return 0;
611
Matthew Wilcoxeca18b22011-12-20 13:34:52 -0500612 free_iod:
613 nvme_free_iod(nvmeq->dev, iod);
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500614 nomem:
615 return result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500616}
617
Linus Torvalds93c3d652012-01-18 15:41:27 -0800618static void nvme_make_request(struct request_queue *q, struct bio *bio)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500619{
620 struct nvme_ns *ns = q->queuedata;
Matthew Wilcox040a93b2011-12-20 11:04:12 -0500621 struct nvme_queue *nvmeq = get_nvmeq(ns->dev);
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500622 int result = -EBUSY;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500623
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500624 spin_lock_irq(&nvmeq->q_lock);
625 if (bio_list_empty(&nvmeq->sq_cong))
626 result = nvme_submit_bio_queue(nvmeq, ns, bio);
627 if (unlikely(result)) {
628 if (bio_list_empty(&nvmeq->sq_cong))
629 add_wait_queue(&nvmeq->sq_full, &nvmeq->sq_cong_wait);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500630 bio_list_add(&nvmeq->sq_cong, bio);
631 }
Matthew Wilcoxeeee3222011-02-14 15:55:33 -0500632
633 spin_unlock_irq(&nvmeq->q_lock);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500634 put_nvmeq(nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500635}
636
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500637static irqreturn_t nvme_process_cq(struct nvme_queue *nvmeq)
638{
Matthew Wilcox82123462011-01-20 13:24:06 -0500639 u16 head, phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500640
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500641 head = nvmeq->cq_head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500642 phase = nvmeq->cq_phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500643
644 for (;;) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400645 void *ctx;
646 nvme_completion_fn fn;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500647 struct nvme_completion cqe = nvmeq->cqes[head];
Matthew Wilcox82123462011-01-20 13:24:06 -0500648 if ((le16_to_cpu(cqe.status) & 1) != phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500649 break;
650 nvmeq->sq_head = le16_to_cpu(cqe.sq_head);
651 if (++head == nvmeq->q_depth) {
652 head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500653 phase = !phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500654 }
655
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400656 ctx = free_cmdid(nvmeq, cqe.command_id, &fn);
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500657 fn(nvmeq->dev, ctx, &cqe);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500658 }
659
660 /* If the controller ignores the cq head doorbell and continuously
661 * writes to the queue, it is theoretically possible to wrap around
662 * the queue twice and mistakenly return IRQ_NONE. Linux only
663 * requires that 0.1% of your interrupts are handled, so this isn't
664 * a big problem.
665 */
Matthew Wilcox82123462011-01-20 13:24:06 -0500666 if (head == nvmeq->cq_head && phase == nvmeq->cq_phase)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500667 return IRQ_NONE;
668
Matthew Wilcoxf1938f62011-10-20 17:00:41 -0400669 writel(head, nvmeq->q_db + (1 << nvmeq->dev->db_stride));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500670 nvmeq->cq_head = head;
Matthew Wilcox82123462011-01-20 13:24:06 -0500671 nvmeq->cq_phase = phase;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500672
673 return IRQ_HANDLED;
674}
675
676static irqreturn_t nvme_irq(int irq, void *data)
677{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500678 irqreturn_t result;
679 struct nvme_queue *nvmeq = data;
680 spin_lock(&nvmeq->q_lock);
681 result = nvme_process_cq(nvmeq);
682 spin_unlock(&nvmeq->q_lock);
683 return result;
684}
685
686static irqreturn_t nvme_irq_check(int irq, void *data)
687{
688 struct nvme_queue *nvmeq = data;
689 struct nvme_completion cqe = nvmeq->cqes[nvmeq->cq_head];
690 if ((le16_to_cpu(cqe.status) & 1) != nvmeq->cq_phase)
691 return IRQ_NONE;
692 return IRQ_WAKE_THREAD;
693}
694
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500695static void nvme_abort_command(struct nvme_queue *nvmeq, int cmdid)
696{
697 spin_lock_irq(&nvmeq->q_lock);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400698 cancel_cmdid(nvmeq, cmdid, NULL);
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500699 spin_unlock_irq(&nvmeq->q_lock);
700}
701
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400702struct sync_cmd_info {
703 struct task_struct *task;
704 u32 result;
705 int status;
706};
707
Matthew Wilcox5c1281a2011-12-20 11:54:53 -0500708static void sync_completion(struct nvme_dev *dev, void *ctx,
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400709 struct nvme_completion *cqe)
710{
711 struct sync_cmd_info *cmdinfo = ctx;
712 cmdinfo->result = le32_to_cpup(&cqe->result);
713 cmdinfo->status = le16_to_cpup(&cqe->status) >> 1;
714 wake_up_process(cmdinfo->task);
715}
716
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500717/*
718 * Returns 0 on success. If the result is negative, it's a Linux error code;
719 * if the result is positive, it's an NVM Express status code
720 */
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500721static int nvme_submit_sync_cmd(struct nvme_queue *nvmeq,
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500722 struct nvme_command *cmd, u32 *result, unsigned timeout)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500723{
724 int cmdid;
725 struct sync_cmd_info cmdinfo;
726
727 cmdinfo.task = current;
728 cmdinfo.status = -EINTR;
729
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -0400730 cmdid = alloc_cmdid_killable(nvmeq, &cmdinfo, sync_completion,
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500731 timeout);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500732 if (cmdid < 0)
733 return cmdid;
734 cmd->common.command_id = cmdid;
735
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500736 set_current_state(TASK_KILLABLE);
737 nvme_submit_cmd(nvmeq, cmd);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500738 schedule();
739
Matthew Wilcox3c0cf132011-02-04 16:03:56 -0500740 if (cmdinfo.status == -EINTR) {
741 nvme_abort_command(nvmeq, cmdid);
742 return -EINTR;
743 }
744
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500745 if (result)
746 *result = cmdinfo.result;
747
748 return cmdinfo.status;
749}
750
751static int nvme_submit_admin_cmd(struct nvme_dev *dev, struct nvme_command *cmd,
752 u32 *result)
753{
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500754 return nvme_submit_sync_cmd(dev->queues[0], cmd, result, ADMIN_TIMEOUT);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500755}
756
757static int adapter_delete_queue(struct nvme_dev *dev, u8 opcode, u16 id)
758{
759 int status;
760 struct nvme_command c;
761
762 memset(&c, 0, sizeof(c));
763 c.delete_queue.opcode = opcode;
764 c.delete_queue.qid = cpu_to_le16(id);
765
766 status = nvme_submit_admin_cmd(dev, &c, NULL);
767 if (status)
768 return -EIO;
769 return 0;
770}
771
772static int adapter_alloc_cq(struct nvme_dev *dev, u16 qid,
773 struct nvme_queue *nvmeq)
774{
775 int status;
776 struct nvme_command c;
777 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED;
778
779 memset(&c, 0, sizeof(c));
780 c.create_cq.opcode = nvme_admin_create_cq;
781 c.create_cq.prp1 = cpu_to_le64(nvmeq->cq_dma_addr);
782 c.create_cq.cqid = cpu_to_le16(qid);
783 c.create_cq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
784 c.create_cq.cq_flags = cpu_to_le16(flags);
785 c.create_cq.irq_vector = cpu_to_le16(nvmeq->cq_vector);
786
787 status = nvme_submit_admin_cmd(dev, &c, NULL);
788 if (status)
789 return -EIO;
790 return 0;
791}
792
793static int adapter_alloc_sq(struct nvme_dev *dev, u16 qid,
794 struct nvme_queue *nvmeq)
795{
796 int status;
797 struct nvme_command c;
798 int flags = NVME_QUEUE_PHYS_CONTIG | NVME_SQ_PRIO_MEDIUM;
799
800 memset(&c, 0, sizeof(c));
801 c.create_sq.opcode = nvme_admin_create_sq;
802 c.create_sq.prp1 = cpu_to_le64(nvmeq->sq_dma_addr);
803 c.create_sq.sqid = cpu_to_le16(qid);
804 c.create_sq.qsize = cpu_to_le16(nvmeq->q_depth - 1);
805 c.create_sq.sq_flags = cpu_to_le16(flags);
806 c.create_sq.cqid = cpu_to_le16(qid);
807
808 status = nvme_submit_admin_cmd(dev, &c, NULL);
809 if (status)
810 return -EIO;
811 return 0;
812}
813
814static int adapter_delete_cq(struct nvme_dev *dev, u16 cqid)
815{
816 return adapter_delete_queue(dev, nvme_admin_delete_cq, cqid);
817}
818
819static int adapter_delete_sq(struct nvme_dev *dev, u16 sqid)
820{
821 return adapter_delete_queue(dev, nvme_admin_delete_sq, sqid);
822}
823
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400824static int nvme_identify(struct nvme_dev *dev, unsigned nsid, unsigned cns,
825 dma_addr_t dma_addr)
826{
827 struct nvme_command c;
828
829 memset(&c, 0, sizeof(c));
830 c.identify.opcode = nvme_admin_identify;
831 c.identify.nsid = cpu_to_le32(nsid);
832 c.identify.prp1 = cpu_to_le64(dma_addr);
833 c.identify.cns = cpu_to_le32(cns);
834
835 return nvme_submit_admin_cmd(dev, &c, NULL);
836}
837
838static int nvme_get_features(struct nvme_dev *dev, unsigned fid,
Matthew Wilcoxdf348132012-01-11 07:29:56 -0700839 unsigned dword11, dma_addr_t dma_addr)
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400840{
841 struct nvme_command c;
842
843 memset(&c, 0, sizeof(c));
844 c.features.opcode = nvme_admin_get_features;
845 c.features.prp1 = cpu_to_le64(dma_addr);
846 c.features.fid = cpu_to_le32(fid);
847 c.features.dword11 = cpu_to_le32(dword11);
848
Matthew Wilcoxdf348132012-01-11 07:29:56 -0700849 return nvme_submit_admin_cmd(dev, &c, NULL);
850}
851
852static int nvme_set_features(struct nvme_dev *dev, unsigned fid,
853 unsigned dword11, dma_addr_t dma_addr, u32 *result)
854{
855 struct nvme_command c;
856
857 memset(&c, 0, sizeof(c));
858 c.features.opcode = nvme_admin_set_features;
859 c.features.prp1 = cpu_to_le64(dma_addr);
860 c.features.fid = cpu_to_le32(fid);
861 c.features.dword11 = cpu_to_le32(dword11);
862
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -0400863 return nvme_submit_admin_cmd(dev, &c, result);
864}
865
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500866static void nvme_free_queue(struct nvme_dev *dev, int qid)
867{
868 struct nvme_queue *nvmeq = dev->queues[qid];
Matthew Wilcoxaba20802011-03-27 08:52:06 -0400869 int vector = dev->entry[nvmeq->cq_vector].vector;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500870
Matthew Wilcoxaba20802011-03-27 08:52:06 -0400871 irq_set_affinity_hint(vector, NULL);
872 free_irq(vector, nvmeq);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500873
874 /* Don't tell the adapter to delete the admin queue */
875 if (qid) {
876 adapter_delete_sq(dev, qid);
877 adapter_delete_cq(dev, qid);
878 }
879
880 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
881 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
882 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
883 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
884 kfree(nvmeq);
885}
886
887static struct nvme_queue *nvme_alloc_queue(struct nvme_dev *dev, int qid,
888 int depth, int vector)
889{
890 struct device *dmadev = &dev->pci_dev->dev;
Matthew Wilcoxe85248e2011-02-06 18:30:16 -0500891 unsigned extra = (depth / 8) + (depth * sizeof(struct nvme_cmd_info));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500892 struct nvme_queue *nvmeq = kzalloc(sizeof(*nvmeq) + extra, GFP_KERNEL);
893 if (!nvmeq)
894 return NULL;
895
896 nvmeq->cqes = dma_alloc_coherent(dmadev, CQ_SIZE(depth),
897 &nvmeq->cq_dma_addr, GFP_KERNEL);
898 if (!nvmeq->cqes)
899 goto free_nvmeq;
900 memset((void *)nvmeq->cqes, 0, CQ_SIZE(depth));
901
902 nvmeq->sq_cmds = dma_alloc_coherent(dmadev, SQ_SIZE(depth),
903 &nvmeq->sq_dma_addr, GFP_KERNEL);
904 if (!nvmeq->sq_cmds)
905 goto free_cqdma;
906
907 nvmeq->q_dmadev = dmadev;
Matthew Wilcox091b6092011-02-10 09:56:01 -0500908 nvmeq->dev = dev;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500909 spin_lock_init(&nvmeq->q_lock);
910 nvmeq->cq_head = 0;
Matthew Wilcox82123462011-01-20 13:24:06 -0500911 nvmeq->cq_phase = 1;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500912 init_waitqueue_head(&nvmeq->sq_full);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -0500913 init_waitqueue_entry(&nvmeq->sq_cong_wait, nvme_thread);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500914 bio_list_init(&nvmeq->sq_cong);
Matthew Wilcoxf1938f62011-10-20 17:00:41 -0400915 nvmeq->q_db = &dev->dbs[qid << (dev->db_stride + 1)];
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500916 nvmeq->q_depth = depth;
917 nvmeq->cq_vector = vector;
918
919 return nvmeq;
920
921 free_cqdma:
922 dma_free_coherent(dmadev, CQ_SIZE(nvmeq->q_depth), (void *)nvmeq->cqes,
923 nvmeq->cq_dma_addr);
924 free_nvmeq:
925 kfree(nvmeq);
926 return NULL;
927}
928
Matthew Wilcox30010822011-01-20 09:10:15 -0500929static int queue_request_irq(struct nvme_dev *dev, struct nvme_queue *nvmeq,
930 const char *name)
931{
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500932 if (use_threaded_interrupts)
933 return request_threaded_irq(dev->entry[nvmeq->cq_vector].vector,
Matthew Wilcoxec6ce612011-02-06 09:01:00 -0500934 nvme_irq_check, nvme_irq,
Matthew Wilcox58ffacb2011-02-06 07:28:06 -0500935 IRQF_DISABLED | IRQF_SHARED,
936 name, nvmeq);
Matthew Wilcox30010822011-01-20 09:10:15 -0500937 return request_irq(dev->entry[nvmeq->cq_vector].vector, nvme_irq,
938 IRQF_DISABLED | IRQF_SHARED, name, nvmeq);
939}
940
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500941static __devinit struct nvme_queue *nvme_create_queue(struct nvme_dev *dev,
942 int qid, int cq_size, int vector)
943{
944 int result;
945 struct nvme_queue *nvmeq = nvme_alloc_queue(dev, qid, cq_size, vector);
946
Matthew Wilcox3f85d502011-02-01 08:39:04 -0500947 if (!nvmeq)
Matthew Wilcox6f0f5442011-05-11 13:30:59 -0700948 return ERR_PTR(-ENOMEM);
Matthew Wilcox3f85d502011-02-01 08:39:04 -0500949
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500950 result = adapter_alloc_cq(dev, qid, nvmeq);
951 if (result < 0)
952 goto free_nvmeq;
953
954 result = adapter_alloc_sq(dev, qid, nvmeq);
955 if (result < 0)
956 goto release_cq;
957
Matthew Wilcox30010822011-01-20 09:10:15 -0500958 result = queue_request_irq(dev, nvmeq, "nvme");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500959 if (result < 0)
960 goto release_sq;
961
962 return nvmeq;
963
964 release_sq:
965 adapter_delete_sq(dev, qid);
966 release_cq:
967 adapter_delete_cq(dev, qid);
968 free_nvmeq:
969 dma_free_coherent(nvmeq->q_dmadev, CQ_SIZE(nvmeq->q_depth),
970 (void *)nvmeq->cqes, nvmeq->cq_dma_addr);
971 dma_free_coherent(nvmeq->q_dmadev, SQ_SIZE(nvmeq->q_depth),
972 nvmeq->sq_cmds, nvmeq->sq_dma_addr);
973 kfree(nvmeq);
Matthew Wilcox6f0f5442011-05-11 13:30:59 -0700974 return ERR_PTR(result);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500975}
976
977static int __devinit nvme_configure_admin_queue(struct nvme_dev *dev)
978{
979 int result;
980 u32 aqa;
Matthew Wilcox22605f92011-04-19 15:04:20 -0400981 u64 cap;
982 unsigned long timeout;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500983 struct nvme_queue *nvmeq;
984
985 dev->dbs = ((void __iomem *)dev->bar) + 4096;
986
987 nvmeq = nvme_alloc_queue(dev, 0, 64, 0);
Matthew Wilcox3f85d502011-02-01 08:39:04 -0500988 if (!nvmeq)
989 return -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500990
991 aqa = nvmeq->q_depth - 1;
992 aqa |= aqa << 16;
993
994 dev->ctrl_config = NVME_CC_ENABLE | NVME_CC_CSS_NVM;
995 dev->ctrl_config |= (PAGE_SHIFT - 12) << NVME_CC_MPS_SHIFT;
996 dev->ctrl_config |= NVME_CC_ARB_RR | NVME_CC_SHN_NONE;
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -0400997 dev->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500998
Shane Michael Matthews5911f202011-02-01 11:31:55 -0500999 writel(0, &dev->bar->cc);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001000 writel(aqa, &dev->bar->aqa);
1001 writeq(nvmeq->sq_dma_addr, &dev->bar->asq);
1002 writeq(nvmeq->cq_dma_addr, &dev->bar->acq);
1003 writel(dev->ctrl_config, &dev->bar->cc);
1004
Matthew Wilcox22605f92011-04-19 15:04:20 -04001005 cap = readq(&dev->bar->cap);
1006 timeout = ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001007 dev->db_stride = NVME_CAP_STRIDE(cap);
Matthew Wilcox22605f92011-04-19 15:04:20 -04001008
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001009 while (!(readl(&dev->bar->csts) & NVME_CSTS_RDY)) {
1010 msleep(100);
1011 if (fatal_signal_pending(current))
1012 return -EINTR;
Matthew Wilcox22605f92011-04-19 15:04:20 -04001013 if (time_after(jiffies, timeout)) {
1014 dev_err(&dev->pci_dev->dev,
1015 "Device not ready; aborting initialisation\n");
1016 return -ENODEV;
1017 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001018 }
1019
Matthew Wilcox30010822011-01-20 09:10:15 -05001020 result = queue_request_irq(dev, nvmeq, "nvme admin");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001021 dev->queues[0] = nvmeq;
1022 return result;
1023}
1024
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001025static struct nvme_iod *nvme_map_user_pages(struct nvme_dev *dev, int write,
1026 unsigned long addr, unsigned length)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001027{
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001028 int i, err, count, nents, offset;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001029 struct scatterlist *sg;
1030 struct page **pages;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001031 struct nvme_iod *iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001032
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001033 if (addr & 3)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001034 return ERR_PTR(-EINVAL);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001035 if (!length)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001036 return ERR_PTR(-EINVAL);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001037
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001038 offset = offset_in_page(addr);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001039 count = DIV_ROUND_UP(offset + length, PAGE_SIZE);
1040 pages = kcalloc(count, sizeof(*pages), GFP_KERNEL);
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001041
1042 err = get_user_pages_fast(addr, count, 1, pages);
1043 if (err < count) {
1044 count = err;
1045 err = -EFAULT;
1046 goto put_pages;
1047 }
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001048
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001049 iod = nvme_alloc_iod(count, length, GFP_KERNEL);
1050 sg = iod->sg;
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001051 sg_init_table(sg, count);
Matthew Wilcoxd0ba1e42011-09-13 17:01:39 -04001052 for (i = 0; i < count; i++) {
1053 sg_set_page(&sg[i], pages[i],
1054 min_t(int, length, PAGE_SIZE - offset), offset);
1055 length -= (PAGE_SIZE - offset);
1056 offset = 0;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001057 }
Matthew Wilcoxfe304c42012-01-06 13:49:25 -07001058 sg_mark_end(&sg[i - 1]);
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001059 iod->nents = count;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001060
1061 err = -ENOMEM;
1062 nents = dma_map_sg(&dev->pci_dev->dev, sg, count,
1063 write ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001064 if (!nents)
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001065 goto free_iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001066
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001067 kfree(pages);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001068 return iod;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001069
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001070 free_iod:
1071 kfree(iod);
Matthew Wilcox36c14ed2011-01-24 07:52:07 -05001072 put_pages:
1073 for (i = 0; i < count; i++)
1074 put_page(pages[i]);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001075 kfree(pages);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001076 return ERR_PTR(err);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001077}
1078
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001079static void nvme_unmap_user_pages(struct nvme_dev *dev, int write,
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001080 struct nvme_iod *iod)
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001081{
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001082 int i;
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001083
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001084 dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents,
1085 write ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001086
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001087 for (i = 0; i < iod->nents; i++)
1088 put_page(sg_page(&iod->sg[i]));
Matthew Wilcox7fc3cda2011-01-26 17:05:50 -05001089}
1090
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001091static int nvme_submit_io(struct nvme_ns *ns, struct nvme_user_io __user *uio)
1092{
1093 struct nvme_dev *dev = ns->dev;
1094 struct nvme_queue *nvmeq;
1095 struct nvme_user_io io;
1096 struct nvme_command c;
1097 unsigned length;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001098 int status;
1099 struct nvme_iod *iod;
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001100
1101 if (copy_from_user(&io, uio, sizeof(io)))
1102 return -EFAULT;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001103 length = (io.nblocks + 1) << ns->lba_shift;
1104
1105 switch (io.opcode) {
1106 case nvme_cmd_write:
1107 case nvme_cmd_read:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001108 case nvme_cmd_compare:
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001109 iod = nvme_map_user_pages(dev, io.opcode & 1, io.addr, length);
Matthew Wilcox64132142011-08-09 12:56:37 -04001110 break;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001111 default:
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001112 return -EINVAL;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001113 }
1114
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001115 if (IS_ERR(iod))
1116 return PTR_ERR(iod);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001117
1118 memset(&c, 0, sizeof(c));
1119 c.rw.opcode = io.opcode;
1120 c.rw.flags = io.flags;
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001121 c.rw.nsid = cpu_to_le32(ns->ns_id);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001122 c.rw.slba = cpu_to_le64(io.slba);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001123 c.rw.length = cpu_to_le16(io.nblocks);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001124 c.rw.control = cpu_to_le16(io.control);
1125 c.rw.dsmgmt = cpu_to_le16(io.dsmgmt);
Matthew Wilcox6c7d4942011-03-21 09:48:57 -04001126 c.rw.reftag = io.reftag;
1127 c.rw.apptag = io.apptag;
1128 c.rw.appmask = io.appmask;
Shane Michael Matthewse025344c2011-02-10 08:51:24 -05001129 /* XXX: metadata */
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001130 length = nvme_setup_prps(dev, &c.common, iod, length, GFP_KERNEL);
Shane Michael Matthewse025344c2011-02-10 08:51:24 -05001131
Matthew Wilcox040a93b2011-12-20 11:04:12 -05001132 nvmeq = get_nvmeq(dev);
Matthew Wilcoxfa922822011-03-16 16:29:00 -04001133 /*
1134 * Since nvme_submit_sync_cmd sleeps, we can't keep preemption
Matthew Wilcoxb1ad37e2011-02-04 16:14:30 -05001135 * disabled. We may be preempted at any point, and be rescheduled
1136 * to a different CPU. That will cause cacheline bouncing, but no
1137 * additional races since q_lock already protects against other CPUs.
1138 */
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001139 put_nvmeq(nvmeq);
Matthew Wilcoxb77954c2011-05-12 13:51:41 -04001140 if (length != (io.nblocks + 1) << ns->lba_shift)
1141 status = -ENOMEM;
1142 else
Matthew Wilcoxff976d72011-12-20 13:53:01 -05001143 status = nvme_submit_sync_cmd(nvmeq, &c, NULL, NVME_IO_TIMEOUT);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001144
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001145 nvme_unmap_user_pages(dev, io.opcode & 1, iod);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001146 nvme_free_iod(dev, iod);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001147 return status;
1148}
1149
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001150static int nvme_user_admin_cmd(struct nvme_ns *ns,
1151 struct nvme_admin_cmd __user *ucmd)
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001152{
1153 struct nvme_dev *dev = ns->dev;
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001154 struct nvme_admin_cmd cmd;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001155 struct nvme_command c;
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001156 int status, length;
1157 struct nvme_iod *iod;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001158
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001159 if (!capable(CAP_SYS_ADMIN))
1160 return -EACCES;
1161 if (copy_from_user(&cmd, ucmd, sizeof(cmd)))
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001162 return -EFAULT;
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001163
1164 memset(&c, 0, sizeof(c));
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001165 c.common.opcode = cmd.opcode;
1166 c.common.flags = cmd.flags;
1167 c.common.nsid = cpu_to_le32(cmd.nsid);
1168 c.common.cdw2[0] = cpu_to_le32(cmd.cdw2);
1169 c.common.cdw2[1] = cpu_to_le32(cmd.cdw3);
1170 c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);
1171 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11);
1172 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12);
1173 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13);
1174 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14);
1175 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15);
1176
1177 length = cmd.data_len;
1178 if (cmd.data_len) {
Matthew Wilcox49742182012-01-06 13:42:45 -07001179 iod = nvme_map_user_pages(dev, cmd.opcode & 1, cmd.addr,
1180 length);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001181 if (IS_ERR(iod))
1182 return PTR_ERR(iod);
1183 length = nvme_setup_prps(dev, &c.common, iod, length,
1184 GFP_KERNEL);
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001185 }
1186
1187 if (length != cmd.data_len)
Matthew Wilcoxb77954c2011-05-12 13:51:41 -04001188 status = -ENOMEM;
1189 else
1190 status = nvme_submit_admin_cmd(dev, &c, NULL);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001191
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001192 if (cmd.data_len) {
Matthew Wilcox1c2ad9f2012-01-06 13:52:56 -07001193 nvme_unmap_user_pages(dev, cmd.opcode & 1, iod);
Matthew Wilcoxeca18b22011-12-20 13:34:52 -05001194 nvme_free_iod(dev, iod);
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001195 }
Matthew Wilcox6ee44cd2011-02-03 10:58:26 -05001196 return status;
1197}
1198
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001199static int nvme_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
1200 unsigned long arg)
1201{
1202 struct nvme_ns *ns = bdev->bd_disk->private_data;
1203
1204 switch (cmd) {
Matthew Wilcox6bbf1ac2011-05-20 13:03:42 -04001205 case NVME_IOCTL_ID:
1206 return ns->ns_id;
1207 case NVME_IOCTL_ADMIN_CMD:
1208 return nvme_user_admin_cmd(ns, (void __user *)arg);
Matthew Wilcoxa53295b2011-02-01 16:13:29 -05001209 case NVME_IOCTL_SUBMIT_IO:
1210 return nvme_submit_io(ns, (void __user *)arg);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001211 default:
1212 return -ENOTTY;
1213 }
1214}
1215
1216static const struct block_device_operations nvme_fops = {
1217 .owner = THIS_MODULE,
1218 .ioctl = nvme_ioctl,
Matthew Wilcox49481682011-03-19 14:55:38 -04001219 .compat_ioctl = nvme_ioctl,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001220};
1221
Matthew Wilcox8de05532011-05-12 13:50:28 -04001222static void nvme_timeout_ios(struct nvme_queue *nvmeq)
1223{
1224 int depth = nvmeq->q_depth - 1;
1225 struct nvme_cmd_info *info = nvme_cmd_info(nvmeq);
1226 unsigned long now = jiffies;
1227 int cmdid;
1228
1229 for_each_set_bit(cmdid, nvmeq->cmdid_data, depth) {
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -04001230 void *ctx;
1231 nvme_completion_fn fn;
Matthew Wilcox8de05532011-05-12 13:50:28 -04001232 static struct nvme_completion cqe = { .status = cpu_to_le16(NVME_SC_ABORT_REQ) << 1, };
1233
1234 if (!time_after(now, info[cmdid].timeout))
1235 continue;
1236 dev_warn(nvmeq->q_dmadev, "Timing out I/O %d\n", cmdid);
Matthew Wilcoxc2f5b652011-10-15 07:33:46 -04001237 ctx = cancel_cmdid(nvmeq, cmdid, &fn);
Matthew Wilcox5c1281a2011-12-20 11:54:53 -05001238 fn(nvmeq->dev, ctx, &cqe);
Matthew Wilcox8de05532011-05-12 13:50:28 -04001239 }
1240}
1241
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001242static void nvme_resubmit_bios(struct nvme_queue *nvmeq)
1243{
1244 while (bio_list_peek(&nvmeq->sq_cong)) {
1245 struct bio *bio = bio_list_pop(&nvmeq->sq_cong);
1246 struct nvme_ns *ns = bio->bi_bdev->bd_disk->private_data;
1247 if (nvme_submit_bio_queue(nvmeq, ns, bio)) {
1248 bio_list_add_head(&nvmeq->sq_cong, bio);
1249 break;
1250 }
Matthew Wilcox3cb967c2011-03-16 16:45:49 -04001251 if (bio_list_empty(&nvmeq->sq_cong))
1252 remove_wait_queue(&nvmeq->sq_full,
1253 &nvmeq->sq_cong_wait);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001254 }
1255}
1256
1257static int nvme_kthread(void *data)
1258{
1259 struct nvme_dev *dev;
1260
1261 while (!kthread_should_stop()) {
1262 __set_current_state(TASK_RUNNING);
1263 spin_lock(&dev_list_lock);
1264 list_for_each_entry(dev, &dev_list, node) {
1265 int i;
1266 for (i = 0; i < dev->queue_count; i++) {
1267 struct nvme_queue *nvmeq = dev->queues[i];
Matthew Wilcox740216f2011-02-15 16:28:20 -05001268 if (!nvmeq)
1269 continue;
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001270 spin_lock_irq(&nvmeq->q_lock);
1271 if (nvme_process_cq(nvmeq))
1272 printk("process_cq did something\n");
Matthew Wilcox8de05532011-05-12 13:50:28 -04001273 nvme_timeout_ios(nvmeq);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001274 nvme_resubmit_bios(nvmeq);
1275 spin_unlock_irq(&nvmeq->q_lock);
1276 }
1277 }
1278 spin_unlock(&dev_list_lock);
1279 set_current_state(TASK_INTERRUPTIBLE);
1280 schedule_timeout(HZ);
1281 }
1282 return 0;
1283}
1284
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001285static DEFINE_IDA(nvme_index_ida);
1286
1287static int nvme_get_ns_idx(void)
1288{
1289 int index, error;
1290
1291 do {
1292 if (!ida_pre_get(&nvme_index_ida, GFP_KERNEL))
1293 return -1;
1294
1295 spin_lock(&dev_list_lock);
1296 error = ida_get_new(&nvme_index_ida, &index);
1297 spin_unlock(&dev_list_lock);
1298 } while (error == -EAGAIN);
1299
1300 if (error)
1301 index = -1;
1302 return index;
1303}
1304
1305static void nvme_put_ns_idx(int index)
1306{
1307 spin_lock(&dev_list_lock);
1308 ida_remove(&nvme_index_ida, index);
1309 spin_unlock(&dev_list_lock);
1310}
1311
1312static struct nvme_ns *nvme_alloc_ns(struct nvme_dev *dev, int nsid,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001313 struct nvme_id_ns *id, struct nvme_lba_range_type *rt)
1314{
1315 struct nvme_ns *ns;
1316 struct gendisk *disk;
1317 int lbaf;
1318
1319 if (rt->attributes & NVME_LBART_ATTRIB_HIDE)
1320 return NULL;
1321
1322 ns = kzalloc(sizeof(*ns), GFP_KERNEL);
1323 if (!ns)
1324 return NULL;
1325 ns->queue = blk_alloc_queue(GFP_KERNEL);
1326 if (!ns->queue)
1327 goto out_free_ns;
Matthew Wilcox4eeb9212012-01-10 14:35:08 -07001328 ns->queue->queue_flags = QUEUE_FLAG_DEFAULT;
1329 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue);
1330 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue);
1331/* queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, ns->queue); */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001332 blk_queue_make_request(ns->queue, nvme_make_request);
1333 ns->dev = dev;
1334 ns->queue->queuedata = ns;
1335
1336 disk = alloc_disk(NVME_MINORS);
1337 if (!disk)
1338 goto out_free_queue;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001339 ns->ns_id = nsid;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001340 ns->disk = disk;
1341 lbaf = id->flbas & 0xf;
1342 ns->lba_shift = id->lbaf[lbaf].ds;
1343
1344 disk->major = nvme_major;
1345 disk->minors = NVME_MINORS;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001346 disk->first_minor = NVME_MINORS * nvme_get_ns_idx();
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001347 disk->fops = &nvme_fops;
1348 disk->private_data = ns;
1349 disk->queue = ns->queue;
Matthew Wilcox388f0372011-02-01 12:49:38 -05001350 disk->driverfs_dev = &dev->pci_dev->dev;
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001351 sprintf(disk->disk_name, "nvme%dn%d", dev->instance, nsid);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001352 set_capacity(disk, le64_to_cpup(&id->nsze) << (ns->lba_shift - 9));
1353
1354 return ns;
1355
1356 out_free_queue:
1357 blk_cleanup_queue(ns->queue);
1358 out_free_ns:
1359 kfree(ns);
1360 return NULL;
1361}
1362
1363static void nvme_ns_free(struct nvme_ns *ns)
1364{
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001365 int index = ns->disk->first_minor / NVME_MINORS;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001366 put_disk(ns->disk);
Matthew Wilcox5aff9382011-05-06 08:45:47 -04001367 nvme_put_ns_idx(index);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001368 blk_cleanup_queue(ns->queue);
1369 kfree(ns);
1370}
1371
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05001372static int set_queue_count(struct nvme_dev *dev, int count)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001373{
1374 int status;
1375 u32 result;
Matthew Wilcoxb3b06812011-01-20 09:14:34 -05001376 u32 q_count = (count - 1) | ((count - 1) << 16);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001377
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001378 status = nvme_set_features(dev, NVME_FEAT_NUM_QUEUES, q_count, 0,
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001379 &result);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001380 if (status)
1381 return -EIO;
1382 return min(result & 0xffff, result >> 16) + 1;
1383}
1384
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001385static int __devinit nvme_setup_io_queues(struct nvme_dev *dev)
1386{
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001387 int result, cpu, i, nr_io_queues, db_bar_size;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001388
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001389 nr_io_queues = num_online_cpus();
1390 result = set_queue_count(dev, nr_io_queues);
Matthew Wilcox1b234842011-01-20 13:01:49 -05001391 if (result < 0)
1392 return result;
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001393 if (result < nr_io_queues)
1394 nr_io_queues = result;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001395
Matthew Wilcox1b234842011-01-20 13:01:49 -05001396 /* Deregister the admin queue's interrupt */
1397 free_irq(dev->entry[0].vector, dev->queues[0]);
1398
Matthew Wilcoxf1938f62011-10-20 17:00:41 -04001399 db_bar_size = 4096 + ((nr_io_queues + 1) << (dev->db_stride + 3));
1400 if (db_bar_size > 8192) {
1401 iounmap(dev->bar);
1402 dev->bar = ioremap(pci_resource_start(dev->pci_dev, 0),
1403 db_bar_size);
1404 dev->dbs = ((void __iomem *)dev->bar) + 4096;
1405 dev->queues[0]->q_db = dev->dbs;
1406 }
1407
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001408 for (i = 0; i < nr_io_queues; i++)
Matthew Wilcox1b234842011-01-20 13:01:49 -05001409 dev->entry[i].entry = i;
1410 for (;;) {
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001411 result = pci_enable_msix(dev->pci_dev, dev->entry,
1412 nr_io_queues);
Matthew Wilcox1b234842011-01-20 13:01:49 -05001413 if (result == 0) {
1414 break;
1415 } else if (result > 0) {
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001416 nr_io_queues = result;
Matthew Wilcox1b234842011-01-20 13:01:49 -05001417 continue;
1418 } else {
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001419 nr_io_queues = 1;
Matthew Wilcox1b234842011-01-20 13:01:49 -05001420 break;
1421 }
1422 }
1423
1424 result = queue_request_irq(dev, dev->queues[0], "nvme admin");
1425 /* XXX: handle failure here */
1426
1427 cpu = cpumask_first(cpu_online_mask);
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001428 for (i = 0; i < nr_io_queues; i++) {
Matthew Wilcox1b234842011-01-20 13:01:49 -05001429 irq_set_affinity_hint(dev->entry[i].vector, get_cpu_mask(cpu));
1430 cpu = cpumask_next(cpu, cpu_online_mask);
1431 }
1432
Matthew Wilcoxb348b7d2011-02-15 16:16:02 -05001433 for (i = 0; i < nr_io_queues; i++) {
Matthew Wilcox1b234842011-01-20 13:01:49 -05001434 dev->queues[i + 1] = nvme_create_queue(dev, i + 1,
1435 NVME_Q_DEPTH, i);
Matthew Wilcox6f0f5442011-05-11 13:30:59 -07001436 if (IS_ERR(dev->queues[i + 1]))
1437 return PTR_ERR(dev->queues[i + 1]);
Matthew Wilcox1b234842011-01-20 13:01:49 -05001438 dev->queue_count++;
1439 }
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001440
Matthew Wilcox9ecdc942011-03-16 16:52:19 -04001441 for (; i < num_possible_cpus(); i++) {
1442 int target = i % rounddown_pow_of_two(dev->queue_count - 1);
1443 dev->queues[i + 1] = dev->queues[target + 1];
1444 }
1445
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001446 return 0;
1447}
1448
1449static void nvme_free_queues(struct nvme_dev *dev)
1450{
1451 int i;
1452
1453 for (i = dev->queue_count - 1; i >= 0; i--)
1454 nvme_free_queue(dev, i);
1455}
1456
1457static int __devinit nvme_dev_add(struct nvme_dev *dev)
1458{
1459 int res, nn, i;
1460 struct nvme_ns *ns, *next;
Matthew Wilcox51814232011-02-01 16:18:08 -05001461 struct nvme_id_ctrl *ctrl;
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001462 struct nvme_id_ns *id_ns;
1463 void *mem;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001464 dma_addr_t dma_addr;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001465
1466 res = nvme_setup_io_queues(dev);
1467 if (res)
1468 return res;
1469
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001470 mem = dma_alloc_coherent(&dev->pci_dev->dev, 8192, &dma_addr,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001471 GFP_KERNEL);
1472
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001473 res = nvme_identify(dev, 0, 1, dma_addr);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001474 if (res) {
1475 res = -EIO;
1476 goto out_free;
1477 }
1478
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001479 ctrl = mem;
Matthew Wilcox51814232011-02-01 16:18:08 -05001480 nn = le32_to_cpup(&ctrl->nn);
1481 memcpy(dev->serial, ctrl->sn, sizeof(ctrl->sn));
1482 memcpy(dev->model, ctrl->mn, sizeof(ctrl->mn));
1483 memcpy(dev->firmware_rev, ctrl->fr, sizeof(ctrl->fr));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001484
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001485 id_ns = mem;
Matthew Wilcox2b2c1892011-10-07 13:10:13 -04001486 for (i = 1; i <= nn; i++) {
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001487 res = nvme_identify(dev, i, 0, dma_addr);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001488 if (res)
1489 continue;
1490
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001491 if (id_ns->ncap == 0)
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001492 continue;
1493
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001494 res = nvme_get_features(dev, NVME_FEAT_LBA_RANGE, i,
Matthew Wilcoxdf348132012-01-11 07:29:56 -07001495 dma_addr + 4096);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001496 if (res)
1497 continue;
1498
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001499 ns = nvme_alloc_ns(dev, i, mem, mem + 4096);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001500 if (ns)
1501 list_add_tail(&ns->list, &dev->namespaces);
1502 }
1503 list_for_each_entry(ns, &dev->namespaces, list)
1504 add_disk(ns->disk);
1505
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001506 goto out;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001507
1508 out_free:
1509 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
1510 list_del(&ns->list);
1511 nvme_ns_free(ns);
1512 }
1513
Matthew Wilcoxbc5fc7e2011-09-19 17:08:14 -04001514 out:
Matthew Wilcox684f5c22011-09-19 17:14:53 -04001515 dma_free_coherent(&dev->pci_dev->dev, 8192, mem, dma_addr);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001516 return res;
1517}
1518
1519static int nvme_dev_remove(struct nvme_dev *dev)
1520{
1521 struct nvme_ns *ns, *next;
1522
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001523 spin_lock(&dev_list_lock);
1524 list_del(&dev->node);
1525 spin_unlock(&dev_list_lock);
1526
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001527 /* TODO: wait all I/O finished or cancel them */
1528
1529 list_for_each_entry_safe(ns, next, &dev->namespaces, list) {
1530 list_del(&ns->list);
1531 del_gendisk(ns->disk);
1532 nvme_ns_free(ns);
1533 }
1534
1535 nvme_free_queues(dev);
1536
1537 return 0;
1538}
1539
Matthew Wilcox091b6092011-02-10 09:56:01 -05001540static int nvme_setup_prp_pools(struct nvme_dev *dev)
1541{
1542 struct device *dmadev = &dev->pci_dev->dev;
1543 dev->prp_page_pool = dma_pool_create("prp list page", dmadev,
1544 PAGE_SIZE, PAGE_SIZE, 0);
1545 if (!dev->prp_page_pool)
1546 return -ENOMEM;
1547
Matthew Wilcox99802a72011-02-10 10:30:34 -05001548 /* Optimisation for I/Os between 4k and 128k */
1549 dev->prp_small_pool = dma_pool_create("prp list 256", dmadev,
1550 256, 256, 0);
1551 if (!dev->prp_small_pool) {
1552 dma_pool_destroy(dev->prp_page_pool);
1553 return -ENOMEM;
1554 }
Matthew Wilcox091b6092011-02-10 09:56:01 -05001555 return 0;
1556}
1557
1558static void nvme_release_prp_pools(struct nvme_dev *dev)
1559{
1560 dma_pool_destroy(dev->prp_page_pool);
Matthew Wilcox99802a72011-02-10 10:30:34 -05001561 dma_pool_destroy(dev->prp_small_pool);
Matthew Wilcox091b6092011-02-10 09:56:01 -05001562}
1563
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001564/* XXX: Use an ida or something to let remove / add work correctly */
1565static void nvme_set_instance(struct nvme_dev *dev)
1566{
1567 static int instance;
1568 dev->instance = instance++;
1569}
1570
1571static void nvme_release_instance(struct nvme_dev *dev)
1572{
1573}
1574
1575static int __devinit nvme_probe(struct pci_dev *pdev,
1576 const struct pci_device_id *id)
1577{
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001578 int bars, result = -ENOMEM;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001579 struct nvme_dev *dev;
1580
1581 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1582 if (!dev)
1583 return -ENOMEM;
1584 dev->entry = kcalloc(num_possible_cpus(), sizeof(*dev->entry),
1585 GFP_KERNEL);
1586 if (!dev->entry)
1587 goto free;
Matthew Wilcox1b234842011-01-20 13:01:49 -05001588 dev->queues = kcalloc(num_possible_cpus() + 1, sizeof(void *),
1589 GFP_KERNEL);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001590 if (!dev->queues)
1591 goto free;
1592
Shane Michael Matthews0ee5a7d2011-02-01 08:49:30 -05001593 if (pci_enable_device_mem(pdev))
1594 goto free;
Matthew Wilcoxf64d3362011-02-01 09:01:59 -05001595 pci_set_master(pdev);
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001596 bars = pci_select_bars(pdev, IORESOURCE_MEM);
1597 if (pci_request_selected_regions(pdev, bars, "nvme"))
1598 goto disable;
Shane Michael Matthews0ee5a7d2011-02-01 08:49:30 -05001599
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001600 INIT_LIST_HEAD(&dev->namespaces);
1601 dev->pci_dev = pdev;
1602 pci_set_drvdata(pdev, dev);
Matthew Wilcox29303532011-02-01 16:23:39 -05001603 dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
1604 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001605 nvme_set_instance(dev);
Matthew Wilcox53c95772011-01-20 13:42:34 -05001606 dev->entry[0].vector = pdev->irq;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001607
Matthew Wilcox091b6092011-02-10 09:56:01 -05001608 result = nvme_setup_prp_pools(dev);
1609 if (result)
1610 goto disable_msix;
1611
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001612 dev->bar = ioremap(pci_resource_start(pdev, 0), 8192);
1613 if (!dev->bar) {
1614 result = -ENOMEM;
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001615 goto disable_msix;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001616 }
1617
1618 result = nvme_configure_admin_queue(dev);
1619 if (result)
1620 goto unmap;
1621 dev->queue_count++;
1622
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001623 spin_lock(&dev_list_lock);
1624 list_add(&dev->node, &dev_list);
1625 spin_unlock(&dev_list_lock);
1626
Matthew Wilcox740216f2011-02-15 16:28:20 -05001627 result = nvme_dev_add(dev);
1628 if (result)
1629 goto delete;
1630
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001631 return 0;
1632
1633 delete:
Matthew Wilcox740216f2011-02-15 16:28:20 -05001634 spin_lock(&dev_list_lock);
1635 list_del(&dev->node);
1636 spin_unlock(&dev_list_lock);
1637
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001638 nvme_free_queues(dev);
1639 unmap:
1640 iounmap(dev->bar);
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001641 disable_msix:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001642 pci_disable_msix(pdev);
1643 nvme_release_instance(dev);
Matthew Wilcox091b6092011-02-10 09:56:01 -05001644 nvme_release_prp_pools(dev);
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001645 disable:
Shane Michael Matthews0ee5a7d2011-02-01 08:49:30 -05001646 pci_disable_device(pdev);
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001647 pci_release_regions(pdev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001648 free:
1649 kfree(dev->queues);
1650 kfree(dev->entry);
1651 kfree(dev);
1652 return result;
1653}
1654
1655static void __devexit nvme_remove(struct pci_dev *pdev)
1656{
1657 struct nvme_dev *dev = pci_get_drvdata(pdev);
1658 nvme_dev_remove(dev);
1659 pci_disable_msix(pdev);
1660 iounmap(dev->bar);
1661 nvme_release_instance(dev);
Matthew Wilcox091b6092011-02-10 09:56:01 -05001662 nvme_release_prp_pools(dev);
Shane Michael Matthews0ee5a7d2011-02-01 08:49:30 -05001663 pci_disable_device(pdev);
Matthew Wilcox574e8b92011-02-01 16:24:35 -05001664 pci_release_regions(pdev);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001665 kfree(dev->queues);
1666 kfree(dev->entry);
1667 kfree(dev);
1668}
1669
1670/* These functions are yet to be implemented */
1671#define nvme_error_detected NULL
1672#define nvme_dump_registers NULL
1673#define nvme_link_reset NULL
1674#define nvme_slot_reset NULL
1675#define nvme_error_resume NULL
1676#define nvme_suspend NULL
1677#define nvme_resume NULL
1678
1679static struct pci_error_handlers nvme_err_handler = {
1680 .error_detected = nvme_error_detected,
1681 .mmio_enabled = nvme_dump_registers,
1682 .link_reset = nvme_link_reset,
1683 .slot_reset = nvme_slot_reset,
1684 .resume = nvme_error_resume,
1685};
1686
1687/* Move to pci_ids.h later */
1688#define PCI_CLASS_STORAGE_EXPRESS 0x010802
1689
1690static DEFINE_PCI_DEVICE_TABLE(nvme_id_table) = {
1691 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_EXPRESS, 0xffffff) },
1692 { 0, }
1693};
1694MODULE_DEVICE_TABLE(pci, nvme_id_table);
1695
1696static struct pci_driver nvme_driver = {
1697 .name = "nvme",
1698 .id_table = nvme_id_table,
1699 .probe = nvme_probe,
1700 .remove = __devexit_p(nvme_remove),
1701 .suspend = nvme_suspend,
1702 .resume = nvme_resume,
1703 .err_handler = &nvme_err_handler,
1704};
1705
1706static int __init nvme_init(void)
1707{
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001708 int result = -EBUSY;
1709
1710 nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
1711 if (IS_ERR(nvme_thread))
1712 return PTR_ERR(nvme_thread);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001713
1714 nvme_major = register_blkdev(nvme_major, "nvme");
1715 if (nvme_major <= 0)
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001716 goto kill_kthread;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001717
1718 result = pci_register_driver(&nvme_driver);
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001719 if (result)
1720 goto unregister_blkdev;
1721 return 0;
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001722
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001723 unregister_blkdev:
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001724 unregister_blkdev(nvme_major, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001725 kill_kthread:
1726 kthread_stop(nvme_thread);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001727 return result;
1728}
1729
1730static void __exit nvme_exit(void)
1731{
1732 pci_unregister_driver(&nvme_driver);
1733 unregister_blkdev(nvme_major, "nvme");
Matthew Wilcox1fa6aea2011-03-02 18:37:18 -05001734 kthread_stop(nvme_thread);
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001735}
1736
1737MODULE_AUTHOR("Matthew Wilcox <willy@linux.intel.com>");
1738MODULE_LICENSE("GPL");
Matthew Wilcox366e8212012-01-10 16:30:15 -05001739MODULE_VERSION("0.8");
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001740module_init(nvme_init);
1741module_exit(nvme_exit);