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