]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - include/linux/nvme.h
NVMe: Correct the Controller Configuration settings
[karo-tx-linux.git] / include / linux / nvme.h
1 /*
2  * Definitions for the NVM Express interface
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 #ifndef _LINUX_NVME_H
20 #define _LINUX_NVME_H
21
22 #include <linux/types.h>
23
24 struct nvme_bar {
25         __u64                   cap;    /* Controller Capabilities */
26         __u32                   vs;     /* Version */
27         __u32                   intms;  /* Interrupt Mask Set */
28         __u32                   intmc;  /* Interrupt Mask Clear */
29         __u32                   cc;     /* Controller Configuration */
30         __u32                   rsvd1;  /* Reserved */
31         __u32                   csts;   /* Controller Status */
32         __u32                   rsvd2;  /* Reserved */
33         __u32                   aqa;    /* Admin Queue Attributes */
34         __u64                   asq;    /* Admin SQ Base Address */
35         __u64                   acq;    /* Admin CQ Base Address */
36 };
37
38 enum {
39         NVME_CC_ENABLE          = 1 << 0,
40         NVME_CC_CSS_NVM         = 0 << 4,
41         NVME_CC_MPS_SHIFT       = 7,
42         NVME_CC_ARB_RR          = 0 << 11,
43         NVME_CC_ARB_WRRU        = 1 << 11,
44         NVME_CC_ARB_VS          = 7 << 11,
45         NVME_CC_SHN_NONE        = 0 << 14,
46         NVME_CC_SHN_NORMAL      = 1 << 14,
47         NVME_CC_SHN_ABRUPT      = 2 << 14,
48         NVME_CC_IOSQES          = 6 << 16,
49         NVME_CC_IOCQES          = 4 << 20,
50         NVME_CSTS_RDY           = 1 << 0,
51         NVME_CSTS_CFS           = 1 << 1,
52         NVME_CSTS_SHST_NORMAL   = 0 << 2,
53         NVME_CSTS_SHST_OCCUR    = 1 << 2,
54         NVME_CSTS_SHST_CMPLT    = 2 << 2,
55 };
56
57 #define NVME_VS(major, minor)   (major << 16 | minor)
58
59 struct nvme_id_ctrl {
60         __le16                  vid;
61         __le16                  ssvid;
62         char                    sn[20];
63         char                    mn[40];
64         char                    fr[8];
65         __le32                  nn;
66         __u8                    rab;
67         __u8                    rsvd77[178];
68         __le16                  oacs;
69         __u8                    acl;
70         __u8                    aerl;
71         __u8                    frmw;
72         __u8                    lpa;
73         __u8                    elpe;
74         __u8                    npss;
75         __u8                    rsvd264[248];
76         __le64                  psd[32];
77         __le16                  oncs;
78         __le16                  fuses;
79         __u8                    fna;
80         __u8                    vwc;
81         __le16                  awun;
82         __le16                  awupf;
83         __u8                    rsvd778[246];
84         __u8                    cmdset[2048];
85         __u8                    vs[1024];
86 };
87
88 struct nvme_lbaf {
89         __le16                  ms;
90         __u8                    ds;
91         __u8                    rp;
92 };
93
94 struct nvme_id_ns {
95         __le64                  nsze;
96         __le64                  ncap;
97         __le64                  nuse;
98         __u8                    nsfeat;
99         __u8                    nlbaf;
100         __u8                    flbas;
101         __u8                    mc;
102         __u8                    dpc;
103         __u8                    dps;
104         __u8                    rsvd30[98];
105         struct nvme_lbaf        lbaf[16];
106         __u8                    rsvd192[192];
107         __u8                    vs[3712];
108 };
109
110 enum {
111         NVME_NS_FEAT_THIN       = 1 << 0,
112         NVME_LBAF_RP_BEST       = 0,
113         NVME_LBAF_RP_BETTER     = 1,
114         NVME_LBAF_RP_GOOD       = 2,
115         NVME_LBAF_RP_DEGRADED   = 3,
116 };
117
118 struct nvme_lba_range_type {
119         __u8                    type;
120         __u8                    attributes;
121         __u8                    rsvd2[14];
122         __u64                   slba;
123         __u64                   nlb;
124         __u8                    guid[16];
125         __u8                    rsvd48[16];
126 };
127
128 enum {
129         NVME_LBART_TYPE_FS      = 0x01,
130         NVME_LBART_TYPE_RAID    = 0x02,
131         NVME_LBART_TYPE_CACHE   = 0x03,
132         NVME_LBART_TYPE_SWAP    = 0x04,
133
134         NVME_LBART_ATTRIB_TEMP  = 1 << 0,
135         NVME_LBART_ATTRIB_HIDE  = 1 << 1,
136 };
137
138 /* I/O commands */
139
140 enum nvme_opcode {
141         nvme_cmd_flush          = 0x00,
142         nvme_cmd_write          = 0x01,
143         nvme_cmd_read           = 0x02,
144         nvme_cmd_write_uncor    = 0x04,
145         nvme_cmd_compare        = 0x05,
146         nvme_cmd_dsm            = 0x09,
147 };
148
149 struct nvme_common_command {
150         __u8                    opcode;
151         __u8                    flags;
152         __u16                   command_id;
153         __le32                  nsid;
154         __u64                   rsvd2;
155         __le64                  metadata;
156         __le64                  prp1;
157         __le64                  prp2;
158         __u32                   rsvd10[6];
159 };
160
161 struct nvme_rw_command {
162         __u8                    opcode;
163         __u8                    flags;
164         __u16                   command_id;
165         __le32                  nsid;
166         __u64                   rsvd2;
167         __le64                  metadata;
168         __le64                  prp1;
169         __le64                  prp2;
170         __le64                  slba;
171         __le16                  length;
172         __le16                  control;
173         __le32                  dsmgmt;
174         __le32                  reftag;
175         __le16                  apptag;
176         __le16                  appmask;
177 };
178
179 enum {
180         NVME_RW_LR                      = 1 << 15,
181         NVME_RW_FUA                     = 1 << 14,
182         NVME_RW_DSM_FREQ_UNSPEC         = 0,
183         NVME_RW_DSM_FREQ_TYPICAL        = 1,
184         NVME_RW_DSM_FREQ_RARE           = 2,
185         NVME_RW_DSM_FREQ_READS          = 3,
186         NVME_RW_DSM_FREQ_WRITES         = 4,
187         NVME_RW_DSM_FREQ_RW             = 5,
188         NVME_RW_DSM_FREQ_ONCE           = 6,
189         NVME_RW_DSM_FREQ_PREFETCH       = 7,
190         NVME_RW_DSM_FREQ_TEMP           = 8,
191         NVME_RW_DSM_LATENCY_NONE        = 0 << 4,
192         NVME_RW_DSM_LATENCY_IDLE        = 1 << 4,
193         NVME_RW_DSM_LATENCY_NORM        = 2 << 4,
194         NVME_RW_DSM_LATENCY_LOW         = 3 << 4,
195         NVME_RW_DSM_SEQ_REQ             = 1 << 6,
196         NVME_RW_DSM_COMPRESSED          = 1 << 7,
197 };
198
199 /* Admin commands */
200
201 enum nvme_admin_opcode {
202         nvme_admin_delete_sq            = 0x00,
203         nvme_admin_create_sq            = 0x01,
204         nvme_admin_get_log_page         = 0x02,
205         nvme_admin_delete_cq            = 0x04,
206         nvme_admin_create_cq            = 0x05,
207         nvme_admin_identify             = 0x06,
208         nvme_admin_abort_cmd            = 0x08,
209         nvme_admin_set_features         = 0x09,
210         nvme_admin_get_features         = 0x0a,
211         nvme_admin_async_event          = 0x0c,
212         nvme_admin_activate_fw          = 0x10,
213         nvme_admin_download_fw          = 0x11,
214         nvme_admin_format_nvm           = 0x80,
215         nvme_admin_security_send        = 0x81,
216         nvme_admin_security_recv        = 0x82,
217 };
218
219 enum {
220         NVME_QUEUE_PHYS_CONTIG  = (1 << 0),
221         NVME_CQ_IRQ_ENABLED     = (1 << 1),
222         NVME_SQ_PRIO_URGENT     = (0 << 1),
223         NVME_SQ_PRIO_HIGH       = (1 << 1),
224         NVME_SQ_PRIO_MEDIUM     = (2 << 1),
225         NVME_SQ_PRIO_LOW        = (3 << 1),
226         NVME_FEAT_ARBITRATION   = 0x01,
227         NVME_FEAT_POWER_MGMT    = 0x02,
228         NVME_FEAT_LBA_RANGE     = 0x03,
229         NVME_FEAT_TEMP_THRESH   = 0x04,
230         NVME_FEAT_ERR_RECOVERY  = 0x05,
231         NVME_FEAT_VOLATILE_WC   = 0x06,
232         NVME_FEAT_NUM_QUEUES    = 0x07,
233         NVME_FEAT_IRQ_COALESCE  = 0x08,
234         NVME_FEAT_IRQ_CONFIG    = 0x09,
235         NVME_FEAT_WRITE_ATOMIC  = 0x0a,
236         NVME_FEAT_ASYNC_EVENT   = 0x0b,
237         NVME_FEAT_SW_PROGRESS   = 0x0c,
238 };
239
240 struct nvme_identify {
241         __u8                    opcode;
242         __u8                    flags;
243         __u16                   command_id;
244         __le32                  nsid;
245         __u64                   rsvd2[2];
246         __le64                  prp1;
247         __le64                  prp2;
248         __le32                  cns;
249         __u32                   rsvd11[5];
250 };
251
252 struct nvme_features {
253         __u8                    opcode;
254         __u8                    flags;
255         __u16                   command_id;
256         __le32                  nsid;
257         __u64                   rsvd2[2];
258         __le64                  prp1;
259         __le64                  prp2;
260         __le32                  fid;
261         __le32                  dword11;
262         __u32                   rsvd12[4];
263 };
264
265 struct nvme_create_cq {
266         __u8                    opcode;
267         __u8                    flags;
268         __u16                   command_id;
269         __u32                   rsvd1[5];
270         __le64                  prp1;
271         __u64                   rsvd8;
272         __le16                  cqid;
273         __le16                  qsize;
274         __le16                  cq_flags;
275         __le16                  irq_vector;
276         __u32                   rsvd12[4];
277 };
278
279 struct nvme_create_sq {
280         __u8                    opcode;
281         __u8                    flags;
282         __u16                   command_id;
283         __u32                   rsvd1[5];
284         __le64                  prp1;
285         __u64                   rsvd8;
286         __le16                  sqid;
287         __le16                  qsize;
288         __le16                  sq_flags;
289         __le16                  cqid;
290         __u32                   rsvd12[4];
291 };
292
293 struct nvme_delete_queue {
294         __u8                    opcode;
295         __u8                    flags;
296         __u16                   command_id;
297         __u32                   rsvd1[9];
298         __le16                  qid;
299         __u16                   rsvd10;
300         __u32                   rsvd11[5];
301 };
302
303 struct nvme_download_firmware {
304         __u8                    opcode;
305         __u8                    flags;
306         __u16                   command_id;
307         __u32                   rsvd1[5];
308         __le64                  prp1;
309         __le64                  prp2;
310         __le32                  numd;
311         __le32                  offset;
312         __u32                   rsvd12[4];
313 };
314
315 struct nvme_command {
316         union {
317                 struct nvme_common_command common;
318                 struct nvme_rw_command rw;
319                 struct nvme_identify identify;
320                 struct nvme_features features;
321                 struct nvme_create_cq create_cq;
322                 struct nvme_create_sq create_sq;
323                 struct nvme_delete_queue delete_queue;
324                 struct nvme_download_firmware dlfw;
325         };
326 };
327
328 enum {
329         NVME_SC_SUCCESS                 = 0x0,
330         NVME_SC_INVALID_OPCODE          = 0x1,
331         NVME_SC_INVALID_FIELD           = 0x2,
332         NVME_SC_CMDID_CONFLICT          = 0x3,
333         NVME_SC_DATA_XFER_ERROR         = 0x4,
334         NVME_SC_POWER_LOSS              = 0x5,
335         NVME_SC_INTERNAL                = 0x6,
336         NVME_SC_ABORT_REQ               = 0x7,
337         NVME_SC_ABORT_QUEUE             = 0x8,
338         NVME_SC_FUSED_FAIL              = 0x9,
339         NVME_SC_FUSED_MISSING           = 0xa,
340         NVME_SC_INVALID_NS              = 0xb,
341         NVME_SC_LBA_RANGE               = 0x80,
342         NVME_SC_CAP_EXCEEDED            = 0x81,
343         NVME_SC_NS_NOT_READY            = 0x82,
344         NVME_SC_CQ_INVALID              = 0x100,
345         NVME_SC_QID_INVALID             = 0x101,
346         NVME_SC_QUEUE_SIZE              = 0x102,
347         NVME_SC_ABORT_LIMIT             = 0x103,
348         NVME_SC_ABORT_MISSING           = 0x104,
349         NVME_SC_ASYNC_LIMIT             = 0x105,
350         NVME_SC_FIRMWARE_SLOT           = 0x106,
351         NVME_SC_FIRMWARE_IMAGE          = 0x107,
352         NVME_SC_INVALID_VECTOR          = 0x108,
353         NVME_SC_INVALID_LOG_PAGE        = 0x109,
354         NVME_SC_INVALID_FORMAT          = 0x10a,
355         NVME_SC_BAD_ATTRIBUTES          = 0x180,
356         NVME_SC_WRITE_FAULT             = 0x280,
357         NVME_SC_READ_ERROR              = 0x281,
358         NVME_SC_GUARD_CHECK             = 0x282,
359         NVME_SC_APPTAG_CHECK            = 0x283,
360         NVME_SC_REFTAG_CHECK            = 0x284,
361         NVME_SC_COMPARE_FAILED          = 0x285,
362         NVME_SC_ACCESS_DENIED           = 0x286,
363 };
364
365 struct nvme_completion {
366         __le32  result;         /* Used by admin commands to return data */
367         __u32   rsvd;
368         __le16  sq_head;        /* how much of this queue may be reclaimed */
369         __le16  sq_id;          /* submission queue that generated this entry */
370         __u16   command_id;     /* of the command which completed */
371         __le16  status;         /* did the command fail, and if so, why? */
372 };
373
374 struct nvme_user_io {
375         __u8    opcode;
376         __u8    flags;
377         __u16   control;
378         __u16   nblocks;
379         __u16   rsvd;
380         __u64   metadata;
381         __u64   addr;
382         __u64   slba;
383         __u32   dsmgmt;
384         __u32   reftag;
385         __u16   apptag;
386         __u16   appmask;
387 };
388
389 struct nvme_dlfw {
390         __u64   addr;
391         __u32   length; /* In dwords */
392         __u32   offset; /* In dwords */
393 };
394
395 #define NVME_IOCTL_IDENTIFY_NS  _IOW('N', 0x40, struct nvme_id_ns)
396 #define NVME_IOCTL_IDENTIFY_CTRL _IOW('N', 0x41, struct nvme_id_ctrl)
397 #define NVME_IOCTL_GET_RANGE_TYPE _IOW('N', 0x42, struct nvme_lba_range_type)
398 #define NVME_IOCTL_SUBMIT_IO    _IOW('N', 0x43, struct nvme_user_io)
399 #define NVME_IOCTL_DOWNLOAD_FW  _IOW('N', 0x44, struct nvme_dlfw)
400 #define NVME_IOCTL_ACTIVATE_FW  _IO('N', 0x45)
401
402 #endif /* _LINUX_NVME_H */