2 * Definitions for the NVM Express interface
3 * Copyright (c) 2011-2014, 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
15 #ifndef _UAPI_LINUX_NVME_H
16 #define _UAPI_LINUX_NVME_H
18 #include <linux/types.h>
20 struct nvme_id_power_state {
21 __le16 max_power; /* centiwatts */
24 __le32 entry_lat; /* microseconds */
25 __le32 exit_lat; /* microseconds */
34 __u8 active_work_scale;
39 NVME_PS_FLAGS_MAX_POWER_SCALE = 1 << 0,
40 NVME_PS_FLAGS_NON_OP_STATE = 1 << 1,
84 struct nvme_id_power_state psd[32];
89 NVME_CTRL_ONCS_COMPARE = 1 << 0,
90 NVME_CTRL_ONCS_WRITE_UNCORRECTABLE = 1 << 1,
91 NVME_CTRL_ONCS_DSM = 1 << 2,
92 NVME_CTRL_VWC_PRESENT = 1 << 0,
120 struct nvme_lbaf lbaf[16];
126 NVME_NS_FEAT_THIN = 1 << 0,
127 NVME_LBAF_RP_BEST = 0,
128 NVME_LBAF_RP_BETTER = 1,
129 NVME_LBAF_RP_GOOD = 2,
130 NVME_LBAF_RP_DEGRADED = 3,
133 struct nvme_smart_log {
134 __u8 critical_warning;
140 __u8 data_units_read[16];
141 __u8 data_units_written[16];
143 __u8 host_writes[16];
144 __u8 ctrl_busy_time[16];
145 __u8 power_cycles[16];
146 __u8 power_on_hours[16];
147 __u8 unsafe_shutdowns[16];
148 __u8 media_errors[16];
149 __u8 num_err_log_entries[16];
150 __le32 warning_temp_time;
151 __le32 critical_comp_time;
152 __le16 temp_sensor[8];
157 NVME_SMART_CRIT_SPARE = 1 << 0,
158 NVME_SMART_CRIT_TEMPERATURE = 1 << 1,
159 NVME_SMART_CRIT_RELIABILITY = 1 << 2,
160 NVME_SMART_CRIT_MEDIA = 1 << 3,
161 NVME_SMART_CRIT_VOLATILE_MEMORY = 1 << 4,
164 struct nvme_lba_range_type {
175 NVME_LBART_TYPE_FS = 0x01,
176 NVME_LBART_TYPE_RAID = 0x02,
177 NVME_LBART_TYPE_CACHE = 0x03,
178 NVME_LBART_TYPE_SWAP = 0x04,
180 NVME_LBART_ATTRIB_TEMP = 1 << 0,
181 NVME_LBART_ATTRIB_HIDE = 1 << 1,
187 nvme_cmd_flush = 0x00,
188 nvme_cmd_write = 0x01,
189 nvme_cmd_read = 0x02,
190 nvme_cmd_write_uncor = 0x04,
191 nvme_cmd_compare = 0x05,
195 struct nvme_common_command {
207 struct nvme_rw_command {
226 NVME_RW_LR = 1 << 15,
227 NVME_RW_FUA = 1 << 14,
228 NVME_RW_DSM_FREQ_UNSPEC = 0,
229 NVME_RW_DSM_FREQ_TYPICAL = 1,
230 NVME_RW_DSM_FREQ_RARE = 2,
231 NVME_RW_DSM_FREQ_READS = 3,
232 NVME_RW_DSM_FREQ_WRITES = 4,
233 NVME_RW_DSM_FREQ_RW = 5,
234 NVME_RW_DSM_FREQ_ONCE = 6,
235 NVME_RW_DSM_FREQ_PREFETCH = 7,
236 NVME_RW_DSM_FREQ_TEMP = 8,
237 NVME_RW_DSM_LATENCY_NONE = 0 << 4,
238 NVME_RW_DSM_LATENCY_IDLE = 1 << 4,
239 NVME_RW_DSM_LATENCY_NORM = 2 << 4,
240 NVME_RW_DSM_LATENCY_LOW = 3 << 4,
241 NVME_RW_DSM_SEQ_REQ = 1 << 6,
242 NVME_RW_DSM_COMPRESSED = 1 << 7,
245 struct nvme_dsm_cmd {
259 NVME_DSMGMT_IDR = 1 << 0,
260 NVME_DSMGMT_IDW = 1 << 1,
261 NVME_DSMGMT_AD = 1 << 2,
264 struct nvme_dsm_range {
272 enum nvme_admin_opcode {
273 nvme_admin_delete_sq = 0x00,
274 nvme_admin_create_sq = 0x01,
275 nvme_admin_get_log_page = 0x02,
276 nvme_admin_delete_cq = 0x04,
277 nvme_admin_create_cq = 0x05,
278 nvme_admin_identify = 0x06,
279 nvme_admin_abort_cmd = 0x08,
280 nvme_admin_set_features = 0x09,
281 nvme_admin_get_features = 0x0a,
282 nvme_admin_async_event = 0x0c,
283 nvme_admin_activate_fw = 0x10,
284 nvme_admin_download_fw = 0x11,
285 nvme_admin_format_nvm = 0x80,
286 nvme_admin_security_send = 0x81,
287 nvme_admin_security_recv = 0x82,
291 NVME_QUEUE_PHYS_CONTIG = (1 << 0),
292 NVME_CQ_IRQ_ENABLED = (1 << 1),
293 NVME_SQ_PRIO_URGENT = (0 << 1),
294 NVME_SQ_PRIO_HIGH = (1 << 1),
295 NVME_SQ_PRIO_MEDIUM = (2 << 1),
296 NVME_SQ_PRIO_LOW = (3 << 1),
297 NVME_FEAT_ARBITRATION = 0x01,
298 NVME_FEAT_POWER_MGMT = 0x02,
299 NVME_FEAT_LBA_RANGE = 0x03,
300 NVME_FEAT_TEMP_THRESH = 0x04,
301 NVME_FEAT_ERR_RECOVERY = 0x05,
302 NVME_FEAT_VOLATILE_WC = 0x06,
303 NVME_FEAT_NUM_QUEUES = 0x07,
304 NVME_FEAT_IRQ_COALESCE = 0x08,
305 NVME_FEAT_IRQ_CONFIG = 0x09,
306 NVME_FEAT_WRITE_ATOMIC = 0x0a,
307 NVME_FEAT_ASYNC_EVENT = 0x0b,
308 NVME_FEAT_SW_PROGRESS = 0x0c,
309 NVME_LOG_ERROR = 0x01,
310 NVME_LOG_SMART = 0x02,
311 NVME_LOG_FW_SLOT = 0x03,
312 NVME_LOG_RESERVATION = 0x80,
313 NVME_FWACT_REPL = (0 << 3),
314 NVME_FWACT_REPL_ACTV = (1 << 3),
315 NVME_FWACT_ACTV = (2 << 3),
318 struct nvme_identify {
330 struct nvme_features {
343 struct nvme_create_cq {
357 struct nvme_create_sq {
371 struct nvme_delete_queue {
381 struct nvme_abort_cmd {
391 struct nvme_download_firmware {
403 struct nvme_format_cmd {
413 struct nvme_command {
415 struct nvme_common_command common;
416 struct nvme_rw_command rw;
417 struct nvme_identify identify;
418 struct nvme_features features;
419 struct nvme_create_cq create_cq;
420 struct nvme_create_sq create_sq;
421 struct nvme_delete_queue delete_queue;
422 struct nvme_download_firmware dlfw;
423 struct nvme_format_cmd format;
424 struct nvme_dsm_cmd dsm;
425 struct nvme_abort_cmd abort;
430 NVME_SC_SUCCESS = 0x0,
431 NVME_SC_INVALID_OPCODE = 0x1,
432 NVME_SC_INVALID_FIELD = 0x2,
433 NVME_SC_CMDID_CONFLICT = 0x3,
434 NVME_SC_DATA_XFER_ERROR = 0x4,
435 NVME_SC_POWER_LOSS = 0x5,
436 NVME_SC_INTERNAL = 0x6,
437 NVME_SC_ABORT_REQ = 0x7,
438 NVME_SC_ABORT_QUEUE = 0x8,
439 NVME_SC_FUSED_FAIL = 0x9,
440 NVME_SC_FUSED_MISSING = 0xa,
441 NVME_SC_INVALID_NS = 0xb,
442 NVME_SC_CMD_SEQ_ERROR = 0xc,
443 NVME_SC_SGL_INVALID_LAST = 0xd,
444 NVME_SC_SGL_INVALID_COUNT = 0xe,
445 NVME_SC_SGL_INVALID_DATA = 0xf,
446 NVME_SC_SGL_INVALID_METADATA = 0x10,
447 NVME_SC_SGL_INVALID_TYPE = 0x11,
448 NVME_SC_LBA_RANGE = 0x80,
449 NVME_SC_CAP_EXCEEDED = 0x81,
450 NVME_SC_NS_NOT_READY = 0x82,
451 NVME_SC_RESERVATION_CONFLICT = 0x83,
452 NVME_SC_CQ_INVALID = 0x100,
453 NVME_SC_QID_INVALID = 0x101,
454 NVME_SC_QUEUE_SIZE = 0x102,
455 NVME_SC_ABORT_LIMIT = 0x103,
456 NVME_SC_ABORT_MISSING = 0x104,
457 NVME_SC_ASYNC_LIMIT = 0x105,
458 NVME_SC_FIRMWARE_SLOT = 0x106,
459 NVME_SC_FIRMWARE_IMAGE = 0x107,
460 NVME_SC_INVALID_VECTOR = 0x108,
461 NVME_SC_INVALID_LOG_PAGE = 0x109,
462 NVME_SC_INVALID_FORMAT = 0x10a,
463 NVME_SC_FIRMWARE_NEEDS_RESET = 0x10b,
464 NVME_SC_INVALID_QUEUE = 0x10c,
465 NVME_SC_FEATURE_NOT_SAVEABLE = 0x10d,
466 NVME_SC_FEATURE_NOT_CHANGEABLE = 0x10e,
467 NVME_SC_FEATURE_NOT_PER_NS = 0x10f,
468 NVME_SC_FW_NEEDS_RESET_SUBSYS = 0x110,
469 NVME_SC_BAD_ATTRIBUTES = 0x180,
470 NVME_SC_INVALID_PI = 0x181,
471 NVME_SC_READ_ONLY = 0x182,
472 NVME_SC_WRITE_FAULT = 0x280,
473 NVME_SC_READ_ERROR = 0x281,
474 NVME_SC_GUARD_CHECK = 0x282,
475 NVME_SC_APPTAG_CHECK = 0x283,
476 NVME_SC_REFTAG_CHECK = 0x284,
477 NVME_SC_COMPARE_FAILED = 0x285,
478 NVME_SC_ACCESS_DENIED = 0x286,
479 NVME_SC_DNR = 0x4000,
482 struct nvme_completion {
483 __le32 result; /* Used by admin commands to return data */
485 __le16 sq_head; /* how much of this queue may be reclaimed */
486 __le16 sq_id; /* submission queue that generated this entry */
487 __u16 command_id; /* of the command which completed */
488 __le16 status; /* did the command fail, and if so, why? */
491 struct nvme_user_io {
506 struct nvme_passthru_cmd {
527 #define nvme_admin_cmd nvme_passthru_cmd
529 #define NVME_IOCTL_ID _IO('N', 0x40)
530 #define NVME_IOCTL_ADMIN_CMD _IOWR('N', 0x41, struct nvme_admin_cmd)
531 #define NVME_IOCTL_SUBMIT_IO _IOW('N', 0x42, struct nvme_user_io)
532 #define NVME_IOCTL_IO_CMD _IOWR('N', 0x43, struct nvme_passthru_cmd)
534 #endif /* _UAPI_LINUX_NVME_H */