blob: ad9014e4969366d46e72cf159ba9dfe46b6d3657 [file] [log] [blame]
Matthew Wilcox42c77682013-06-25 15:14:56 -04001/*
2 * Definitions for the NVM Express interface
Matthew Wilcox8757ad62014-04-11 10:37:39 -04003 * Copyright (c) 2011-2014, Intel Corporation.
Matthew Wilcox42c77682013-06-25 15:14:56 -04004 *
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.
Matthew Wilcox42c77682013-06-25 15:14:56 -040013 */
14
15#ifndef _UAPI_LINUX_NVME_H
16#define _UAPI_LINUX_NVME_H
17
18#include <linux/types.h>
19
20struct nvme_id_power_state {
21 __le16 max_power; /* centiwatts */
Keith Busch685585c2013-06-25 15:15:23 -060022 __u8 rsvd2;
23 __u8 flags;
Matthew Wilcox42c77682013-06-25 15:14:56 -040024 __le32 entry_lat; /* microseconds */
25 __le32 exit_lat; /* microseconds */
26 __u8 read_tput;
27 __u8 read_lat;
28 __u8 write_tput;
29 __u8 write_lat;
30 __u8 rsvd16[16];
31};
32
Keith Busch685585c2013-06-25 15:15:23 -060033enum {
34 NVME_PS_FLAGS_MAX_POWER_SCALE = 1 << 0,
35 NVME_PS_FLAGS_NON_OP_STATE = 1 << 1,
36};
37
Matthew Wilcox42c77682013-06-25 15:14:56 -040038struct nvme_id_ctrl {
39 __le16 vid;
40 __le16 ssvid;
41 char sn[20];
42 char mn[40];
43 char fr[8];
44 __u8 rab;
45 __u8 ieee[3];
46 __u8 mic;
47 __u8 mdts;
48 __u8 rsvd78[178];
49 __le16 oacs;
50 __u8 acl;
51 __u8 aerl;
52 __u8 frmw;
53 __u8 lpa;
54 __u8 elpe;
55 __u8 npss;
56 __u8 rsvd264[248];
57 __u8 sqes;
58 __u8 cqes;
59 __u8 rsvd514[2];
60 __le32 nn;
61 __le16 oncs;
62 __le16 fuses;
63 __u8 fna;
64 __u8 vwc;
65 __le16 awun;
66 __le16 awupf;
67 __u8 rsvd530[1518];
68 struct nvme_id_power_state psd[32];
69 __u8 vs[1024];
70};
71
72enum {
73 NVME_CTRL_ONCS_COMPARE = 1 << 0,
74 NVME_CTRL_ONCS_WRITE_UNCORRECTABLE = 1 << 1,
75 NVME_CTRL_ONCS_DSM = 1 << 2,
76};
77
78struct nvme_lbaf {
79 __le16 ms;
80 __u8 ds;
81 __u8 rp;
82};
83
84struct nvme_id_ns {
85 __le64 nsze;
86 __le64 ncap;
87 __le64 nuse;
88 __u8 nsfeat;
89 __u8 nlbaf;
90 __u8 flbas;
91 __u8 mc;
92 __u8 dpc;
93 __u8 dps;
94 __u8 rsvd30[98];
95 struct nvme_lbaf lbaf[16];
96 __u8 rsvd192[192];
97 __u8 vs[3712];
98};
99
100enum {
101 NVME_NS_FEAT_THIN = 1 << 0,
102 NVME_LBAF_RP_BEST = 0,
103 NVME_LBAF_RP_BETTER = 1,
104 NVME_LBAF_RP_GOOD = 2,
105 NVME_LBAF_RP_DEGRADED = 3,
106};
107
108struct nvme_smart_log {
109 __u8 critical_warning;
110 __u8 temperature[2];
111 __u8 avail_spare;
112 __u8 spare_thresh;
113 __u8 percent_used;
114 __u8 rsvd6[26];
115 __u8 data_units_read[16];
116 __u8 data_units_written[16];
117 __u8 host_reads[16];
118 __u8 host_writes[16];
119 __u8 ctrl_busy_time[16];
120 __u8 power_cycles[16];
121 __u8 power_on_hours[16];
122 __u8 unsafe_shutdowns[16];
123 __u8 media_errors[16];
124 __u8 num_err_log_entries[16];
125 __u8 rsvd192[320];
126};
127
128enum {
129 NVME_SMART_CRIT_SPARE = 1 << 0,
130 NVME_SMART_CRIT_TEMPERATURE = 1 << 1,
131 NVME_SMART_CRIT_RELIABILITY = 1 << 2,
132 NVME_SMART_CRIT_MEDIA = 1 << 3,
133 NVME_SMART_CRIT_VOLATILE_MEMORY = 1 << 4,
134};
135
136struct nvme_lba_range_type {
137 __u8 type;
138 __u8 attributes;
139 __u8 rsvd2[14];
140 __u64 slba;
141 __u64 nlb;
142 __u8 guid[16];
143 __u8 rsvd48[16];
144};
145
146enum {
147 NVME_LBART_TYPE_FS = 0x01,
148 NVME_LBART_TYPE_RAID = 0x02,
149 NVME_LBART_TYPE_CACHE = 0x03,
150 NVME_LBART_TYPE_SWAP = 0x04,
151
152 NVME_LBART_ATTRIB_TEMP = 1 << 0,
153 NVME_LBART_ATTRIB_HIDE = 1 << 1,
154};
155
156/* I/O commands */
157
158enum nvme_opcode {
159 nvme_cmd_flush = 0x00,
160 nvme_cmd_write = 0x01,
161 nvme_cmd_read = 0x02,
162 nvme_cmd_write_uncor = 0x04,
163 nvme_cmd_compare = 0x05,
164 nvme_cmd_dsm = 0x09,
165};
166
167struct nvme_common_command {
168 __u8 opcode;
169 __u8 flags;
170 __u16 command_id;
171 __le32 nsid;
172 __le32 cdw2[2];
173 __le64 metadata;
174 __le64 prp1;
175 __le64 prp2;
176 __le32 cdw10[6];
177};
178
179struct nvme_rw_command {
180 __u8 opcode;
181 __u8 flags;
182 __u16 command_id;
183 __le32 nsid;
184 __u64 rsvd2;
185 __le64 metadata;
186 __le64 prp1;
187 __le64 prp2;
188 __le64 slba;
189 __le16 length;
190 __le16 control;
191 __le32 dsmgmt;
192 __le32 reftag;
193 __le16 apptag;
194 __le16 appmask;
195};
196
197enum {
198 NVME_RW_LR = 1 << 15,
199 NVME_RW_FUA = 1 << 14,
200 NVME_RW_DSM_FREQ_UNSPEC = 0,
201 NVME_RW_DSM_FREQ_TYPICAL = 1,
202 NVME_RW_DSM_FREQ_RARE = 2,
203 NVME_RW_DSM_FREQ_READS = 3,
204 NVME_RW_DSM_FREQ_WRITES = 4,
205 NVME_RW_DSM_FREQ_RW = 5,
206 NVME_RW_DSM_FREQ_ONCE = 6,
207 NVME_RW_DSM_FREQ_PREFETCH = 7,
208 NVME_RW_DSM_FREQ_TEMP = 8,
209 NVME_RW_DSM_LATENCY_NONE = 0 << 4,
210 NVME_RW_DSM_LATENCY_IDLE = 1 << 4,
211 NVME_RW_DSM_LATENCY_NORM = 2 << 4,
212 NVME_RW_DSM_LATENCY_LOW = 3 << 4,
213 NVME_RW_DSM_SEQ_REQ = 1 << 6,
214 NVME_RW_DSM_COMPRESSED = 1 << 7,
215};
216
217struct nvme_dsm_cmd {
218 __u8 opcode;
219 __u8 flags;
220 __u16 command_id;
221 __le32 nsid;
222 __u64 rsvd2[2];
223 __le64 prp1;
224 __le64 prp2;
225 __le32 nr;
226 __le32 attributes;
227 __u32 rsvd12[4];
228};
229
230enum {
231 NVME_DSMGMT_IDR = 1 << 0,
232 NVME_DSMGMT_IDW = 1 << 1,
233 NVME_DSMGMT_AD = 1 << 2,
234};
235
236struct nvme_dsm_range {
237 __le32 cattr;
238 __le32 nlb;
239 __le64 slba;
240};
241
242/* Admin commands */
243
244enum nvme_admin_opcode {
245 nvme_admin_delete_sq = 0x00,
246 nvme_admin_create_sq = 0x01,
247 nvme_admin_get_log_page = 0x02,
248 nvme_admin_delete_cq = 0x04,
249 nvme_admin_create_cq = 0x05,
250 nvme_admin_identify = 0x06,
251 nvme_admin_abort_cmd = 0x08,
252 nvme_admin_set_features = 0x09,
253 nvme_admin_get_features = 0x0a,
254 nvme_admin_async_event = 0x0c,
255 nvme_admin_activate_fw = 0x10,
256 nvme_admin_download_fw = 0x11,
257 nvme_admin_format_nvm = 0x80,
258 nvme_admin_security_send = 0x81,
259 nvme_admin_security_recv = 0x82,
260};
261
262enum {
263 NVME_QUEUE_PHYS_CONTIG = (1 << 0),
264 NVME_CQ_IRQ_ENABLED = (1 << 1),
265 NVME_SQ_PRIO_URGENT = (0 << 1),
266 NVME_SQ_PRIO_HIGH = (1 << 1),
267 NVME_SQ_PRIO_MEDIUM = (2 << 1),
268 NVME_SQ_PRIO_LOW = (3 << 1),
269 NVME_FEAT_ARBITRATION = 0x01,
270 NVME_FEAT_POWER_MGMT = 0x02,
271 NVME_FEAT_LBA_RANGE = 0x03,
272 NVME_FEAT_TEMP_THRESH = 0x04,
273 NVME_FEAT_ERR_RECOVERY = 0x05,
274 NVME_FEAT_VOLATILE_WC = 0x06,
275 NVME_FEAT_NUM_QUEUES = 0x07,
276 NVME_FEAT_IRQ_COALESCE = 0x08,
277 NVME_FEAT_IRQ_CONFIG = 0x09,
278 NVME_FEAT_WRITE_ATOMIC = 0x0a,
279 NVME_FEAT_ASYNC_EVENT = 0x0b,
280 NVME_FEAT_SW_PROGRESS = 0x0c,
281 NVME_FWACT_REPL = (0 << 3),
282 NVME_FWACT_REPL_ACTV = (1 << 3),
283 NVME_FWACT_ACTV = (2 << 3),
284};
285
286struct nvme_identify {
287 __u8 opcode;
288 __u8 flags;
289 __u16 command_id;
290 __le32 nsid;
291 __u64 rsvd2[2];
292 __le64 prp1;
293 __le64 prp2;
294 __le32 cns;
295 __u32 rsvd11[5];
296};
297
298struct nvme_features {
299 __u8 opcode;
300 __u8 flags;
301 __u16 command_id;
302 __le32 nsid;
303 __u64 rsvd2[2];
304 __le64 prp1;
305 __le64 prp2;
306 __le32 fid;
307 __le32 dword11;
308 __u32 rsvd12[4];
309};
310
311struct nvme_create_cq {
312 __u8 opcode;
313 __u8 flags;
314 __u16 command_id;
315 __u32 rsvd1[5];
316 __le64 prp1;
317 __u64 rsvd8;
318 __le16 cqid;
319 __le16 qsize;
320 __le16 cq_flags;
321 __le16 irq_vector;
322 __u32 rsvd12[4];
323};
324
325struct nvme_create_sq {
326 __u8 opcode;
327 __u8 flags;
328 __u16 command_id;
329 __u32 rsvd1[5];
330 __le64 prp1;
331 __u64 rsvd8;
332 __le16 sqid;
333 __le16 qsize;
334 __le16 sq_flags;
335 __le16 cqid;
336 __u32 rsvd12[4];
337};
338
339struct nvme_delete_queue {
340 __u8 opcode;
341 __u8 flags;
342 __u16 command_id;
343 __u32 rsvd1[9];
344 __le16 qid;
345 __u16 rsvd10;
346 __u32 rsvd11[5];
347};
348
Keith Buschc30341d2013-12-10 13:10:38 -0700349struct nvme_abort_cmd {
350 __u8 opcode;
351 __u8 flags;
352 __u16 command_id;
353 __u32 rsvd1[9];
354 __le16 sqid;
355 __u16 cid;
356 __u32 rsvd11[5];
357};
358
Matthew Wilcox42c77682013-06-25 15:14:56 -0400359struct nvme_download_firmware {
360 __u8 opcode;
361 __u8 flags;
362 __u16 command_id;
363 __u32 rsvd1[5];
364 __le64 prp1;
365 __le64 prp2;
366 __le32 numd;
367 __le32 offset;
368 __u32 rsvd12[4];
369};
370
371struct nvme_format_cmd {
372 __u8 opcode;
373 __u8 flags;
374 __u16 command_id;
375 __le32 nsid;
376 __u64 rsvd2[4];
377 __le32 cdw10;
378 __u32 rsvd11[5];
379};
380
381struct nvme_command {
382 union {
383 struct nvme_common_command common;
384 struct nvme_rw_command rw;
385 struct nvme_identify identify;
386 struct nvme_features features;
387 struct nvme_create_cq create_cq;
388 struct nvme_create_sq create_sq;
389 struct nvme_delete_queue delete_queue;
390 struct nvme_download_firmware dlfw;
391 struct nvme_format_cmd format;
392 struct nvme_dsm_cmd dsm;
Keith Buschc30341d2013-12-10 13:10:38 -0700393 struct nvme_abort_cmd abort;
Matthew Wilcox42c77682013-06-25 15:14:56 -0400394 };
395};
396
397enum {
398 NVME_SC_SUCCESS = 0x0,
399 NVME_SC_INVALID_OPCODE = 0x1,
400 NVME_SC_INVALID_FIELD = 0x2,
401 NVME_SC_CMDID_CONFLICT = 0x3,
402 NVME_SC_DATA_XFER_ERROR = 0x4,
403 NVME_SC_POWER_LOSS = 0x5,
404 NVME_SC_INTERNAL = 0x6,
405 NVME_SC_ABORT_REQ = 0x7,
406 NVME_SC_ABORT_QUEUE = 0x8,
407 NVME_SC_FUSED_FAIL = 0x9,
408 NVME_SC_FUSED_MISSING = 0xa,
409 NVME_SC_INVALID_NS = 0xb,
410 NVME_SC_CMD_SEQ_ERROR = 0xc,
411 NVME_SC_LBA_RANGE = 0x80,
412 NVME_SC_CAP_EXCEEDED = 0x81,
413 NVME_SC_NS_NOT_READY = 0x82,
414 NVME_SC_CQ_INVALID = 0x100,
415 NVME_SC_QID_INVALID = 0x101,
416 NVME_SC_QUEUE_SIZE = 0x102,
417 NVME_SC_ABORT_LIMIT = 0x103,
418 NVME_SC_ABORT_MISSING = 0x104,
419 NVME_SC_ASYNC_LIMIT = 0x105,
420 NVME_SC_FIRMWARE_SLOT = 0x106,
421 NVME_SC_FIRMWARE_IMAGE = 0x107,
422 NVME_SC_INVALID_VECTOR = 0x108,
423 NVME_SC_INVALID_LOG_PAGE = 0x109,
424 NVME_SC_INVALID_FORMAT = 0x10a,
425 NVME_SC_BAD_ATTRIBUTES = 0x180,
426 NVME_SC_WRITE_FAULT = 0x280,
427 NVME_SC_READ_ERROR = 0x281,
428 NVME_SC_GUARD_CHECK = 0x282,
429 NVME_SC_APPTAG_CHECK = 0x283,
430 NVME_SC_REFTAG_CHECK = 0x284,
431 NVME_SC_COMPARE_FAILED = 0x285,
432 NVME_SC_ACCESS_DENIED = 0x286,
Keith Buschedd10d32014-04-03 16:45:23 -0600433 NVME_SC_DNR = 0x4000,
Matthew Wilcox42c77682013-06-25 15:14:56 -0400434};
435
436struct nvme_completion {
437 __le32 result; /* Used by admin commands to return data */
438 __u32 rsvd;
439 __le16 sq_head; /* how much of this queue may be reclaimed */
440 __le16 sq_id; /* submission queue that generated this entry */
441 __u16 command_id; /* of the command which completed */
442 __le16 status; /* did the command fail, and if so, why? */
443};
444
445struct nvme_user_io {
446 __u8 opcode;
447 __u8 flags;
448 __u16 control;
449 __u16 nblocks;
450 __u16 rsvd;
451 __u64 metadata;
452 __u64 addr;
453 __u64 slba;
454 __u32 dsmgmt;
455 __u32 reftag;
456 __u16 apptag;
457 __u16 appmask;
458};
459
460struct nvme_admin_cmd {
461 __u8 opcode;
462 __u8 flags;
463 __u16 rsvd1;
464 __u32 nsid;
465 __u32 cdw2;
466 __u32 cdw3;
467 __u64 metadata;
468 __u64 addr;
469 __u32 metadata_len;
470 __u32 data_len;
471 __u32 cdw10;
472 __u32 cdw11;
473 __u32 cdw12;
474 __u32 cdw13;
475 __u32 cdw14;
476 __u32 cdw15;
477 __u32 timeout_ms;
478 __u32 result;
479};
480
481#define NVME_IOCTL_ID _IO('N', 0x40)
482#define NVME_IOCTL_ADMIN_CMD _IOWR('N', 0x41, struct nvme_admin_cmd)
483#define NVME_IOCTL_SUBMIT_IO _IOW('N', 0x42, struct nvme_user_io)
484
485#endif /* _UAPI_LINUX_NVME_H */