2 * Definitions for the NVM Express interface
3 * Copyright (c) 2011, Intel Corporation.
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.
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
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.
22 #include <linux/types.h>
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 */
38 #define NVME_CAP_MQES(cap) ((cap) & 0xffff)
39 #define NVME_CAP_TIMEOUT(cap) (((cap) >> 24) & 0xff)
40 #define NVME_CAP_STRIDE(cap) (((cap) >> 32) & 0xf)
41 #define NVME_CAP_MPSMIN(cap) (((cap) >> 48) & 0xf)
44 NVME_CC_ENABLE = 1 << 0,
45 NVME_CC_CSS_NVM = 0 << 4,
46 NVME_CC_MPS_SHIFT = 7,
47 NVME_CC_ARB_RR = 0 << 11,
48 NVME_CC_ARB_WRRU = 1 << 11,
49 NVME_CC_ARB_VS = 7 << 11,
50 NVME_CC_SHN_NONE = 0 << 14,
51 NVME_CC_SHN_NORMAL = 1 << 14,
52 NVME_CC_SHN_ABRUPT = 2 << 14,
53 NVME_CC_IOSQES = 6 << 16,
54 NVME_CC_IOCQES = 4 << 20,
55 NVME_CSTS_RDY = 1 << 0,
56 NVME_CSTS_CFS = 1 << 1,
57 NVME_CSTS_SHST_NORMAL = 0 << 2,
58 NVME_CSTS_SHST_OCCUR = 1 << 2,
59 NVME_CSTS_SHST_CMPLT = 2 << 2,
62 struct nvme_id_power_state {
63 __le16 max_power; /* centiwatts */
65 __le32 entry_lat; /* microseconds */
66 __le32 exit_lat; /* microseconds */
74 #define NVME_VS(major, minor) (major << 16 | minor)
106 struct nvme_id_power_state psd[32];
127 struct nvme_lbaf lbaf[16];
133 NVME_NS_FEAT_THIN = 1 << 0,
134 NVME_LBAF_RP_BEST = 0,
135 NVME_LBAF_RP_BETTER = 1,
136 NVME_LBAF_RP_GOOD = 2,
137 NVME_LBAF_RP_DEGRADED = 3,
140 struct nvme_lba_range_type {
151 NVME_LBART_TYPE_FS = 0x01,
152 NVME_LBART_TYPE_RAID = 0x02,
153 NVME_LBART_TYPE_CACHE = 0x03,
154 NVME_LBART_TYPE_SWAP = 0x04,
156 NVME_LBART_ATTRIB_TEMP = 1 << 0,
157 NVME_LBART_ATTRIB_HIDE = 1 << 1,
163 nvme_cmd_flush = 0x00,
164 nvme_cmd_write = 0x01,
165 nvme_cmd_read = 0x02,
166 nvme_cmd_write_uncor = 0x04,
167 nvme_cmd_compare = 0x05,
171 struct nvme_common_command {
183 struct nvme_rw_command {
202 NVME_RW_LR = 1 << 15,
203 NVME_RW_FUA = 1 << 14,
204 NVME_RW_DSM_FREQ_UNSPEC = 0,
205 NVME_RW_DSM_FREQ_TYPICAL = 1,
206 NVME_RW_DSM_FREQ_RARE = 2,
207 NVME_RW_DSM_FREQ_READS = 3,
208 NVME_RW_DSM_FREQ_WRITES = 4,
209 NVME_RW_DSM_FREQ_RW = 5,
210 NVME_RW_DSM_FREQ_ONCE = 6,
211 NVME_RW_DSM_FREQ_PREFETCH = 7,
212 NVME_RW_DSM_FREQ_TEMP = 8,
213 NVME_RW_DSM_LATENCY_NONE = 0 << 4,
214 NVME_RW_DSM_LATENCY_IDLE = 1 << 4,
215 NVME_RW_DSM_LATENCY_NORM = 2 << 4,
216 NVME_RW_DSM_LATENCY_LOW = 3 << 4,
217 NVME_RW_DSM_SEQ_REQ = 1 << 6,
218 NVME_RW_DSM_COMPRESSED = 1 << 7,
223 enum nvme_admin_opcode {
224 nvme_admin_delete_sq = 0x00,
225 nvme_admin_create_sq = 0x01,
226 nvme_admin_get_log_page = 0x02,
227 nvme_admin_delete_cq = 0x04,
228 nvme_admin_create_cq = 0x05,
229 nvme_admin_identify = 0x06,
230 nvme_admin_abort_cmd = 0x08,
231 nvme_admin_set_features = 0x09,
232 nvme_admin_get_features = 0x0a,
233 nvme_admin_async_event = 0x0c,
234 nvme_admin_activate_fw = 0x10,
235 nvme_admin_download_fw = 0x11,
236 nvme_admin_format_nvm = 0x80,
237 nvme_admin_security_send = 0x81,
238 nvme_admin_security_recv = 0x82,
242 NVME_QUEUE_PHYS_CONTIG = (1 << 0),
243 NVME_CQ_IRQ_ENABLED = (1 << 1),
244 NVME_SQ_PRIO_URGENT = (0 << 1),
245 NVME_SQ_PRIO_HIGH = (1 << 1),
246 NVME_SQ_PRIO_MEDIUM = (2 << 1),
247 NVME_SQ_PRIO_LOW = (3 << 1),
248 NVME_FEAT_ARBITRATION = 0x01,
249 NVME_FEAT_POWER_MGMT = 0x02,
250 NVME_FEAT_LBA_RANGE = 0x03,
251 NVME_FEAT_TEMP_THRESH = 0x04,
252 NVME_FEAT_ERR_RECOVERY = 0x05,
253 NVME_FEAT_VOLATILE_WC = 0x06,
254 NVME_FEAT_NUM_QUEUES = 0x07,
255 NVME_FEAT_IRQ_COALESCE = 0x08,
256 NVME_FEAT_IRQ_CONFIG = 0x09,
257 NVME_FEAT_WRITE_ATOMIC = 0x0a,
258 NVME_FEAT_ASYNC_EVENT = 0x0b,
259 NVME_FEAT_SW_PROGRESS = 0x0c,
262 struct nvme_identify {
274 struct nvme_features {
287 struct nvme_create_cq {
301 struct nvme_create_sq {
315 struct nvme_delete_queue {
325 struct nvme_download_firmware {
337 struct nvme_command {
339 struct nvme_common_command common;
340 struct nvme_rw_command rw;
341 struct nvme_identify identify;
342 struct nvme_features features;
343 struct nvme_create_cq create_cq;
344 struct nvme_create_sq create_sq;
345 struct nvme_delete_queue delete_queue;
346 struct nvme_download_firmware dlfw;
351 NVME_SC_SUCCESS = 0x0,
352 NVME_SC_INVALID_OPCODE = 0x1,
353 NVME_SC_INVALID_FIELD = 0x2,
354 NVME_SC_CMDID_CONFLICT = 0x3,
355 NVME_SC_DATA_XFER_ERROR = 0x4,
356 NVME_SC_POWER_LOSS = 0x5,
357 NVME_SC_INTERNAL = 0x6,
358 NVME_SC_ABORT_REQ = 0x7,
359 NVME_SC_ABORT_QUEUE = 0x8,
360 NVME_SC_FUSED_FAIL = 0x9,
361 NVME_SC_FUSED_MISSING = 0xa,
362 NVME_SC_INVALID_NS = 0xb,
363 NVME_SC_LBA_RANGE = 0x80,
364 NVME_SC_CAP_EXCEEDED = 0x81,
365 NVME_SC_NS_NOT_READY = 0x82,
366 NVME_SC_CQ_INVALID = 0x100,
367 NVME_SC_QID_INVALID = 0x101,
368 NVME_SC_QUEUE_SIZE = 0x102,
369 NVME_SC_ABORT_LIMIT = 0x103,
370 NVME_SC_ABORT_MISSING = 0x104,
371 NVME_SC_ASYNC_LIMIT = 0x105,
372 NVME_SC_FIRMWARE_SLOT = 0x106,
373 NVME_SC_FIRMWARE_IMAGE = 0x107,
374 NVME_SC_INVALID_VECTOR = 0x108,
375 NVME_SC_INVALID_LOG_PAGE = 0x109,
376 NVME_SC_INVALID_FORMAT = 0x10a,
377 NVME_SC_BAD_ATTRIBUTES = 0x180,
378 NVME_SC_WRITE_FAULT = 0x280,
379 NVME_SC_READ_ERROR = 0x281,
380 NVME_SC_GUARD_CHECK = 0x282,
381 NVME_SC_APPTAG_CHECK = 0x283,
382 NVME_SC_REFTAG_CHECK = 0x284,
383 NVME_SC_COMPARE_FAILED = 0x285,
384 NVME_SC_ACCESS_DENIED = 0x286,
387 struct nvme_completion {
388 __le32 result; /* Used by admin commands to return data */
390 __le16 sq_head; /* how much of this queue may be reclaimed */
391 __le16 sq_id; /* submission queue that generated this entry */
392 __u16 command_id; /* of the command which completed */
393 __le16 status; /* did the command fail, and if so, why? */
396 struct nvme_user_io {
411 struct nvme_admin_cmd {
432 #define NVME_IOCTL_ID _IO('N', 0x40)
433 #define NVME_IOCTL_ADMIN_CMD _IOWR('N', 0x41, struct nvme_admin_cmd)
434 #define NVME_IOCTL_SUBMIT_IO _IOW('N', 0x42, struct nvme_user_io)
436 #endif /* _LINUX_NVME_H */