blob: a50173ca1d729aba84bc00c2572b40a91ec93140 [file] [log] [blame]
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05001/*
2 * Definitions for the NVM Express interface
Matthew Wilcox42c77682013-06-25 15:14:56 -04003 * Copyright (c) 2011-2013, Intel Corporation.
Matthew Wilcoxb60503b2011-01-20 12:50:14 -05004 *
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#ifndef _LINUX_NVME_H
20#define _LINUX_NVME_H
21
Matthew Wilcox42c77682013-06-25 15:14:56 -040022#include <uapi/linux/nvme.h>
23#include <linux/pci.h>
24#include <linux/miscdevice.h>
25#include <linux/kref.h>
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050026
27struct nvme_bar {
28 __u64 cap; /* Controller Capabilities */
29 __u32 vs; /* Version */
Matthew Wilcox897cfe12011-02-14 12:20:15 -050030 __u32 intms; /* Interrupt Mask Set */
31 __u32 intmc; /* Interrupt Mask Clear */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050032 __u32 cc; /* Controller Configuration */
Matthew Wilcox897cfe12011-02-14 12:20:15 -050033 __u32 rsvd1; /* Reserved */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050034 __u32 csts; /* Controller Status */
Matthew Wilcox897cfe12011-02-14 12:20:15 -050035 __u32 rsvd2; /* Reserved */
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050036 __u32 aqa; /* Admin Queue Attributes */
37 __u64 asq; /* Admin SQ Base Address */
38 __u64 acq; /* Admin CQ Base Address */
39};
40
Keith Buscha0cadb82012-07-27 13:57:23 -040041#define NVME_CAP_MQES(cap) ((cap) & 0xffff)
Matthew Wilcox22605f92011-04-19 15:04:20 -040042#define NVME_CAP_TIMEOUT(cap) (((cap) >> 24) & 0xff)
Matthew Wilcoxf1938f62011-10-20 17:00:41 -040043#define NVME_CAP_STRIDE(cap) (((cap) >> 32) & 0xf)
Keith Busch8fc23e02012-07-26 11:29:57 -060044#define NVME_CAP_MPSMIN(cap) (((cap) >> 48) & 0xf)
Matthew Wilcox22605f92011-04-19 15:04:20 -040045
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050046enum {
47 NVME_CC_ENABLE = 1 << 0,
48 NVME_CC_CSS_NVM = 0 << 4,
49 NVME_CC_MPS_SHIFT = 7,
50 NVME_CC_ARB_RR = 0 << 11,
51 NVME_CC_ARB_WRRU = 1 << 11,
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -040052 NVME_CC_ARB_VS = 7 << 11,
53 NVME_CC_SHN_NONE = 0 << 14,
54 NVME_CC_SHN_NORMAL = 1 << 14,
55 NVME_CC_SHN_ABRUPT = 2 << 14,
Keith Busch1894d8f2013-07-15 15:02:22 -060056 NVME_CC_SHN_MASK = 3 << 14,
Matthew Wilcox7f53f9d2011-03-22 15:55:45 -040057 NVME_CC_IOSQES = 6 << 16,
58 NVME_CC_IOCQES = 4 << 20,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050059 NVME_CSTS_RDY = 1 << 0,
60 NVME_CSTS_CFS = 1 << 1,
61 NVME_CSTS_SHST_NORMAL = 0 << 2,
62 NVME_CSTS_SHST_OCCUR = 1 << 2,
63 NVME_CSTS_SHST_CMPLT = 2 << 2,
Keith Busch1894d8f2013-07-15 15:02:22 -060064 NVME_CSTS_SHST_MASK = 3 << 2,
Matthew Wilcoxb60503b2011-01-20 12:50:14 -050065};
66
67#define NVME_VS(major, minor) (major << 16 | minor)
68
Keith Buschb3550842014-04-04 11:43:36 -060069extern unsigned char io_timeout;
70#define NVME_IO_TIMEOUT (io_timeout * HZ)
Vishal Verma13c3b0f2013-03-04 18:40:57 -070071
72/*
73 * Represents an NVM Express device. Each nvme_dev is a PCI function.
74 */
75struct nvme_dev {
76 struct list_head node;
Keith Busch5a92e702014-02-21 14:13:44 -070077 struct nvme_queue __rcu **queues;
Keith Busch42f61422014-03-24 10:46:25 -060078 unsigned short __percpu *io_queue;
Vishal Verma13c3b0f2013-03-04 18:40:57 -070079 u32 __iomem *dbs;
80 struct pci_dev *pci_dev;
81 struct dma_pool *prp_page_pool;
82 struct dma_pool *prp_small_pool;
83 int instance;
Keith Busch42f61422014-03-24 10:46:25 -060084 unsigned queue_count;
85 unsigned online_queues;
86 unsigned max_qid;
87 int q_depth;
Haiyan Hub80d5cc2013-09-10 11:25:37 +080088 u32 db_stride;
Vishal Verma13c3b0f2013-03-04 18:40:57 -070089 u32 ctrl_config;
90 struct msix_entry *entry;
91 struct nvme_bar __iomem *bar;
92 struct list_head namespaces;
Keith Busch5e82e952013-02-19 10:17:58 -070093 struct kref kref;
94 struct miscdevice miscdev;
Tejun Heo9ca97372014-03-07 10:24:49 -050095 work_func_t reset_workfn;
Keith Busch9a6b9452013-12-10 13:10:36 -070096 struct work_struct reset_work;
Keith Busch33b1e952014-03-24 10:46:26 -060097 struct notifier_block nb;
Keith Busch5e82e952013-02-19 10:17:58 -070098 char name[12];
Vishal Verma13c3b0f2013-03-04 18:40:57 -070099 char serial[20];
100 char model[40];
101 char firmware_rev[8];
102 u32 max_hw_sectors;
Keith Busch159b67d2013-04-09 17:13:20 -0600103 u32 stripe_size;
Vishal Verma13c3b0f2013-03-04 18:40:57 -0700104 u16 oncs;
Keith Buschc30341d2013-12-10 13:10:38 -0700105 u16 abort_limit;
Keith Buschd4b4ff82013-12-10 13:10:37 -0700106 u8 initialized;
Vishal Verma13c3b0f2013-03-04 18:40:57 -0700107};
108
109/*
110 * An NVM Express namespace is equivalent to a SCSI LUN
111 */
112struct nvme_ns {
113 struct list_head list;
114
115 struct nvme_dev *dev;
116 struct request_queue *queue;
117 struct gendisk *disk;
118
Matthew Wilcoxc3bfe712013-07-08 17:26:25 -0400119 unsigned ns_id;
Vishal Verma13c3b0f2013-03-04 18:40:57 -0700120 int lba_shift;
Keith Buschf410c682013-04-23 17:23:59 -0600121 int ms;
Vishal Verma5d0f6132013-03-04 18:40:58 -0700122 u64 mode_select_num_blocks;
123 u32 mode_select_block_len;
Vishal Verma13c3b0f2013-03-04 18:40:57 -0700124};
125
126/*
127 * The nvme_iod describes the data in an I/O, including the list of PRP
128 * entries. You can't see it in this data structure because C doesn't let
129 * me express that. Use nvme_alloc_iod to ensure there's enough space
130 * allocated to store the PRP list.
131 */
132struct nvme_iod {
133 void *private; /* For the use of the submitter of the I/O */
134 int npages; /* In the PRP list. 0 means small pool in use */
135 int offset; /* Of PRP list */
136 int nents; /* Used in scatterlist */
137 int length; /* Of data, in bytes */
Keith Busch61982212013-05-29 15:59:39 -0600138 unsigned long start_time;
Vishal Verma13c3b0f2013-03-04 18:40:57 -0700139 dma_addr_t first_dma;
Keith Buschedd10d32014-04-03 16:45:23 -0600140 struct list_head node;
Vishal Verma13c3b0f2013-03-04 18:40:57 -0700141 struct scatterlist sg[0];
142};
Vishal Verma5d0f6132013-03-04 18:40:58 -0700143
Matthew Wilcox063cc6d2013-03-27 21:28:22 -0400144static inline u64 nvme_block_nr(struct nvme_ns *ns, sector_t sector)
145{
146 return (sector >> (ns->lba_shift - 9));
147}
148
Vishal Verma5d0f6132013-03-04 18:40:58 -0700149/**
150 * nvme_free_iod - frees an nvme_iod
151 * @dev: The device that the I/O was submitted to
152 * @iod: The memory to free
153 */
154void nvme_free_iod(struct nvme_dev *dev, struct nvme_iod *iod);
155
Keith Buschedd10d32014-04-03 16:45:23 -0600156int nvme_setup_prps(struct nvme_dev *, struct nvme_iod *, int , gfp_t);
Vishal Verma5d0f6132013-03-04 18:40:58 -0700157struct nvme_iod *nvme_map_user_pages(struct nvme_dev *dev, int write,
158 unsigned long addr, unsigned length);
159void nvme_unmap_user_pages(struct nvme_dev *dev, int write,
160 struct nvme_iod *iod);
Keith Busch4f5099a2014-03-03 16:39:13 -0700161int nvme_submit_io_cmd(struct nvme_dev *, struct nvme_command *, u32 *);
Vishal Verma5d0f6132013-03-04 18:40:58 -0700162int nvme_submit_flush_data(struct nvme_queue *nvmeq, struct nvme_ns *ns);
163int nvme_submit_admin_cmd(struct nvme_dev *, struct nvme_command *,
164 u32 *result);
165int nvme_identify(struct nvme_dev *, unsigned nsid, unsigned cns,
166 dma_addr_t dma_addr);
167int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid,
168 dma_addr_t dma_addr, u32 *result);
169int nvme_set_features(struct nvme_dev *dev, unsigned fid, unsigned dword11,
170 dma_addr_t dma_addr, u32 *result);
171
172struct sg_io_hdr;
173
174int nvme_sg_io(struct nvme_ns *ns, struct sg_io_hdr __user *u_hdr);
Keith Busch320a3822013-10-23 13:07:34 -0600175int nvme_sg_io32(struct nvme_ns *ns, unsigned long arg);
Vishal Verma5d0f6132013-03-04 18:40:58 -0700176int nvme_sg_get_version_num(int __user *ip);
177
Matthew Wilcoxb60503b2011-01-20 12:50:14 -0500178#endif /* _LINUX_NVME_H */