Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 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 */ |
Matthew Wilcox | 897cfe1 | 2011-02-14 12:20:15 -0500 | [diff] [blame] | 27 | __u32 intms; /* Interrupt Mask Set */ |
| 28 | __u32 intmc; /* Interrupt Mask Clear */ |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 29 | __u32 cc; /* Controller Configuration */ |
Matthew Wilcox | 897cfe1 | 2011-02-14 12:20:15 -0500 | [diff] [blame] | 30 | __u32 rsvd1; /* Reserved */ |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 31 | __u32 csts; /* Controller Status */ |
Matthew Wilcox | 897cfe1 | 2011-02-14 12:20:15 -0500 | [diff] [blame] | 32 | __u32 rsvd2; /* Reserved */ |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 33 | __u32 aqa; /* Admin Queue Attributes */ |
| 34 | __u64 asq; /* Admin SQ Base Address */ |
| 35 | __u64 acq; /* Admin CQ Base Address */ |
| 36 | }; |
| 37 | |
Keith Busch | a0cadb8 | 2012-07-27 13:57:23 -0400 | [diff] [blame] | 38 | #define NVME_CAP_MQES(cap) ((cap) & 0xffff) |
Matthew Wilcox | 22605f9 | 2011-04-19 15:04:20 -0400 | [diff] [blame] | 39 | #define NVME_CAP_TIMEOUT(cap) (((cap) >> 24) & 0xff) |
Matthew Wilcox | f1938f6 | 2011-10-20 17:00:41 -0400 | [diff] [blame] | 40 | #define NVME_CAP_STRIDE(cap) (((cap) >> 32) & 0xf) |
Keith Busch | 8fc23e0 | 2012-07-26 11:29:57 -0600 | [diff] [blame] | 41 | #define NVME_CAP_MPSMIN(cap) (((cap) >> 48) & 0xf) |
Matthew Wilcox | 22605f9 | 2011-04-19 15:04:20 -0400 | [diff] [blame] | 42 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 43 | enum { |
| 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, |
Matthew Wilcox | 7f53f9d | 2011-03-22 15:55:45 -0400 | [diff] [blame] | 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, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 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, |
| 60 | }; |
| 61 | |
Matthew Wilcox | 010e646 | 2011-11-04 16:24:23 -0400 | [diff] [blame] | 62 | struct nvme_id_power_state { |
| 63 | __le16 max_power; /* centiwatts */ |
| 64 | __u16 rsvd2; |
| 65 | __le32 entry_lat; /* microseconds */ |
| 66 | __le32 exit_lat; /* microseconds */ |
| 67 | __u8 read_tput; |
| 68 | __u8 read_lat; |
| 69 | __u8 write_tput; |
| 70 | __u8 write_lat; |
| 71 | __u8 rsvd16[16]; |
| 72 | }; |
| 73 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 74 | #define NVME_VS(major, minor) (major << 16 | minor) |
| 75 | |
| 76 | struct nvme_id_ctrl { |
| 77 | __le16 vid; |
| 78 | __le16 ssvid; |
| 79 | char sn[20]; |
| 80 | char mn[40]; |
| 81 | char fr[8]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 82 | __u8 rab; |
Matthew Wilcox | 010e646 | 2011-11-04 16:24:23 -0400 | [diff] [blame] | 83 | __u8 ieee[3]; |
| 84 | __u8 mic; |
| 85 | __u8 mdts; |
| 86 | __u8 rsvd78[178]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 87 | __le16 oacs; |
| 88 | __u8 acl; |
| 89 | __u8 aerl; |
| 90 | __u8 frmw; |
| 91 | __u8 lpa; |
| 92 | __u8 elpe; |
| 93 | __u8 npss; |
| 94 | __u8 rsvd264[248]; |
Matthew Wilcox | 010e646 | 2011-11-04 16:24:23 -0400 | [diff] [blame] | 95 | __u8 sqes; |
| 96 | __u8 cqes; |
| 97 | __u8 rsvd514[2]; |
| 98 | __le32 nn; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 99 | __le16 oncs; |
| 100 | __le16 fuses; |
| 101 | __u8 fna; |
| 102 | __u8 vwc; |
| 103 | __le16 awun; |
| 104 | __le16 awupf; |
Matthew Wilcox | 010e646 | 2011-11-04 16:24:23 -0400 | [diff] [blame] | 105 | __u8 rsvd530[1518]; |
| 106 | struct nvme_id_power_state psd[32]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 107 | __u8 vs[1024]; |
| 108 | }; |
| 109 | |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 110 | enum { |
| 111 | NVME_CTRL_ONCS_COMPARE = 1 << 0, |
| 112 | NVME_CTRL_ONCS_WRITE_UNCORRECTABLE = 1 << 1, |
| 113 | NVME_CTRL_ONCS_DSM = 1 << 2, |
| 114 | }; |
| 115 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 116 | struct nvme_lbaf { |
| 117 | __le16 ms; |
| 118 | __u8 ds; |
| 119 | __u8 rp; |
| 120 | }; |
| 121 | |
| 122 | struct nvme_id_ns { |
| 123 | __le64 nsze; |
| 124 | __le64 ncap; |
| 125 | __le64 nuse; |
| 126 | __u8 nsfeat; |
| 127 | __u8 nlbaf; |
| 128 | __u8 flbas; |
| 129 | __u8 mc; |
| 130 | __u8 dpc; |
| 131 | __u8 dps; |
| 132 | __u8 rsvd30[98]; |
| 133 | struct nvme_lbaf lbaf[16]; |
| 134 | __u8 rsvd192[192]; |
| 135 | __u8 vs[3712]; |
| 136 | }; |
| 137 | |
| 138 | enum { |
| 139 | NVME_NS_FEAT_THIN = 1 << 0, |
| 140 | NVME_LBAF_RP_BEST = 0, |
| 141 | NVME_LBAF_RP_BETTER = 1, |
| 142 | NVME_LBAF_RP_GOOD = 2, |
| 143 | NVME_LBAF_RP_DEGRADED = 3, |
| 144 | }; |
| 145 | |
Keith Busch | 6ecec74 | 2012-09-26 12:49:27 -0600 | [diff] [blame] | 146 | struct nvme_smart_log { |
| 147 | __u8 critical_warning; |
| 148 | __u8 temperature[2]; |
| 149 | __u8 avail_spare; |
| 150 | __u8 spare_thresh; |
| 151 | __u8 percent_used; |
| 152 | __u8 rsvd6[26]; |
| 153 | __u8 data_units_read[16]; |
| 154 | __u8 data_units_written[16]; |
| 155 | __u8 host_reads[16]; |
| 156 | __u8 host_writes[16]; |
| 157 | __u8 ctrl_busy_time[16]; |
| 158 | __u8 power_cycles[16]; |
| 159 | __u8 power_on_hours[16]; |
| 160 | __u8 unsafe_shutdowns[16]; |
| 161 | __u8 media_errors[16]; |
| 162 | __u8 num_err_log_entries[16]; |
| 163 | __u8 rsvd192[320]; |
| 164 | }; |
| 165 | |
| 166 | enum { |
| 167 | NVME_SMART_CRIT_SPARE = 1 << 0, |
| 168 | NVME_SMART_CRIT_TEMPERATURE = 1 << 1, |
| 169 | NVME_SMART_CRIT_RELIABILITY = 1 << 2, |
| 170 | NVME_SMART_CRIT_MEDIA = 1 << 3, |
| 171 | NVME_SMART_CRIT_VOLATILE_MEMORY = 1 << 4, |
| 172 | }; |
| 173 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 174 | struct nvme_lba_range_type { |
| 175 | __u8 type; |
| 176 | __u8 attributes; |
| 177 | __u8 rsvd2[14]; |
| 178 | __u64 slba; |
| 179 | __u64 nlb; |
| 180 | __u8 guid[16]; |
| 181 | __u8 rsvd48[16]; |
| 182 | }; |
| 183 | |
| 184 | enum { |
| 185 | NVME_LBART_TYPE_FS = 0x01, |
| 186 | NVME_LBART_TYPE_RAID = 0x02, |
| 187 | NVME_LBART_TYPE_CACHE = 0x03, |
| 188 | NVME_LBART_TYPE_SWAP = 0x04, |
| 189 | |
| 190 | NVME_LBART_ATTRIB_TEMP = 1 << 0, |
| 191 | NVME_LBART_ATTRIB_HIDE = 1 << 1, |
| 192 | }; |
| 193 | |
| 194 | /* I/O commands */ |
| 195 | |
| 196 | enum nvme_opcode { |
| 197 | nvme_cmd_flush = 0x00, |
| 198 | nvme_cmd_write = 0x01, |
| 199 | nvme_cmd_read = 0x02, |
| 200 | nvme_cmd_write_uncor = 0x04, |
| 201 | nvme_cmd_compare = 0x05, |
| 202 | nvme_cmd_dsm = 0x09, |
| 203 | }; |
| 204 | |
Matthew Wilcox | 7b4fe9b | 2011-01-26 10:01:21 -0500 | [diff] [blame] | 205 | struct nvme_common_command { |
| 206 | __u8 opcode; |
| 207 | __u8 flags; |
| 208 | __u16 command_id; |
| 209 | __le32 nsid; |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 210 | __u32 cdw2[2]; |
Matthew Wilcox | 7b4fe9b | 2011-01-26 10:01:21 -0500 | [diff] [blame] | 211 | __le64 metadata; |
| 212 | __le64 prp1; |
| 213 | __le64 prp2; |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 214 | __u32 cdw10[6]; |
Matthew Wilcox | 7b4fe9b | 2011-01-26 10:01:21 -0500 | [diff] [blame] | 215 | }; |
| 216 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 217 | struct nvme_rw_command { |
| 218 | __u8 opcode; |
| 219 | __u8 flags; |
| 220 | __u16 command_id; |
| 221 | __le32 nsid; |
| 222 | __u64 rsvd2; |
| 223 | __le64 metadata; |
| 224 | __le64 prp1; |
| 225 | __le64 prp2; |
| 226 | __le64 slba; |
| 227 | __le16 length; |
| 228 | __le16 control; |
| 229 | __le32 dsmgmt; |
| 230 | __le32 reftag; |
| 231 | __le16 apptag; |
| 232 | __le16 appmask; |
| 233 | }; |
| 234 | |
| 235 | enum { |
| 236 | NVME_RW_LR = 1 << 15, |
| 237 | NVME_RW_FUA = 1 << 14, |
| 238 | NVME_RW_DSM_FREQ_UNSPEC = 0, |
| 239 | NVME_RW_DSM_FREQ_TYPICAL = 1, |
| 240 | NVME_RW_DSM_FREQ_RARE = 2, |
| 241 | NVME_RW_DSM_FREQ_READS = 3, |
| 242 | NVME_RW_DSM_FREQ_WRITES = 4, |
| 243 | NVME_RW_DSM_FREQ_RW = 5, |
| 244 | NVME_RW_DSM_FREQ_ONCE = 6, |
| 245 | NVME_RW_DSM_FREQ_PREFETCH = 7, |
| 246 | NVME_RW_DSM_FREQ_TEMP = 8, |
| 247 | NVME_RW_DSM_LATENCY_NONE = 0 << 4, |
| 248 | NVME_RW_DSM_LATENCY_IDLE = 1 << 4, |
| 249 | NVME_RW_DSM_LATENCY_NORM = 2 << 4, |
| 250 | NVME_RW_DSM_LATENCY_LOW = 3 << 4, |
| 251 | NVME_RW_DSM_SEQ_REQ = 1 << 6, |
| 252 | NVME_RW_DSM_COMPRESSED = 1 << 7, |
| 253 | }; |
| 254 | |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 255 | struct nvme_dsm_cmd { |
| 256 | __u8 opcode; |
| 257 | __u8 flags; |
| 258 | __u16 command_id; |
| 259 | __le32 nsid; |
| 260 | __u64 rsvd2[2]; |
| 261 | __le64 prp1; |
| 262 | __le64 prp2; |
| 263 | __le32 nr; |
| 264 | __le32 attributes; |
| 265 | __u32 rsvd12[4]; |
| 266 | }; |
| 267 | |
| 268 | enum { |
| 269 | NVME_DSMGMT_IDR = 1 << 0, |
| 270 | NVME_DSMGMT_IDW = 1 << 1, |
| 271 | NVME_DSMGMT_AD = 1 << 2, |
| 272 | }; |
| 273 | |
| 274 | struct nvme_dsm_range { |
| 275 | __le32 cattr; |
| 276 | __le32 nlb; |
| 277 | __le64 slba; |
| 278 | }; |
| 279 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 280 | /* Admin commands */ |
| 281 | |
| 282 | enum nvme_admin_opcode { |
| 283 | nvme_admin_delete_sq = 0x00, |
| 284 | nvme_admin_create_sq = 0x01, |
Krzysztof Wierzbicki | 2ddc4f7 | 2011-02-28 08:27:13 +0100 | [diff] [blame] | 285 | nvme_admin_get_log_page = 0x02, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 286 | nvme_admin_delete_cq = 0x04, |
| 287 | nvme_admin_create_cq = 0x05, |
| 288 | nvme_admin_identify = 0x06, |
| 289 | nvme_admin_abort_cmd = 0x08, |
| 290 | nvme_admin_set_features = 0x09, |
Krzysztof Wierzbicki | 2ddc4f7 | 2011-02-28 08:27:13 +0100 | [diff] [blame] | 291 | nvme_admin_get_features = 0x0a, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 292 | nvme_admin_async_event = 0x0c, |
Krzysztof Wierzbicki | 2ddc4f7 | 2011-02-28 08:27:13 +0100 | [diff] [blame] | 293 | nvme_admin_activate_fw = 0x10, |
| 294 | nvme_admin_download_fw = 0x11, |
| 295 | nvme_admin_format_nvm = 0x80, |
| 296 | nvme_admin_security_send = 0x81, |
| 297 | nvme_admin_security_recv = 0x82, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 298 | }; |
| 299 | |
| 300 | enum { |
| 301 | NVME_QUEUE_PHYS_CONTIG = (1 << 0), |
| 302 | NVME_CQ_IRQ_ENABLED = (1 << 1), |
| 303 | NVME_SQ_PRIO_URGENT = (0 << 1), |
| 304 | NVME_SQ_PRIO_HIGH = (1 << 1), |
| 305 | NVME_SQ_PRIO_MEDIUM = (2 << 1), |
| 306 | NVME_SQ_PRIO_LOW = (3 << 1), |
| 307 | NVME_FEAT_ARBITRATION = 0x01, |
| 308 | NVME_FEAT_POWER_MGMT = 0x02, |
| 309 | NVME_FEAT_LBA_RANGE = 0x03, |
| 310 | NVME_FEAT_TEMP_THRESH = 0x04, |
| 311 | NVME_FEAT_ERR_RECOVERY = 0x05, |
| 312 | NVME_FEAT_VOLATILE_WC = 0x06, |
| 313 | NVME_FEAT_NUM_QUEUES = 0x07, |
| 314 | NVME_FEAT_IRQ_COALESCE = 0x08, |
| 315 | NVME_FEAT_IRQ_CONFIG = 0x09, |
| 316 | NVME_FEAT_WRITE_ATOMIC = 0x0a, |
| 317 | NVME_FEAT_ASYNC_EVENT = 0x0b, |
| 318 | NVME_FEAT_SW_PROGRESS = 0x0c, |
| 319 | }; |
| 320 | |
| 321 | struct nvme_identify { |
| 322 | __u8 opcode; |
| 323 | __u8 flags; |
| 324 | __u16 command_id; |
| 325 | __le32 nsid; |
| 326 | __u64 rsvd2[2]; |
| 327 | __le64 prp1; |
| 328 | __le64 prp2; |
| 329 | __le32 cns; |
| 330 | __u32 rsvd11[5]; |
| 331 | }; |
| 332 | |
| 333 | struct nvme_features { |
| 334 | __u8 opcode; |
| 335 | __u8 flags; |
| 336 | __u16 command_id; |
| 337 | __le32 nsid; |
| 338 | __u64 rsvd2[2]; |
| 339 | __le64 prp1; |
| 340 | __le64 prp2; |
| 341 | __le32 fid; |
| 342 | __le32 dword11; |
| 343 | __u32 rsvd12[4]; |
| 344 | }; |
| 345 | |
| 346 | struct nvme_create_cq { |
| 347 | __u8 opcode; |
| 348 | __u8 flags; |
| 349 | __u16 command_id; |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 350 | __u32 rsvd1[5]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 351 | __le64 prp1; |
| 352 | __u64 rsvd8; |
| 353 | __le16 cqid; |
| 354 | __le16 qsize; |
| 355 | __le16 cq_flags; |
| 356 | __le16 irq_vector; |
| 357 | __u32 rsvd12[4]; |
| 358 | }; |
| 359 | |
| 360 | struct nvme_create_sq { |
| 361 | __u8 opcode; |
| 362 | __u8 flags; |
| 363 | __u16 command_id; |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 364 | __u32 rsvd1[5]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 365 | __le64 prp1; |
| 366 | __u64 rsvd8; |
| 367 | __le16 sqid; |
| 368 | __le16 qsize; |
| 369 | __le16 sq_flags; |
| 370 | __le16 cqid; |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 371 | __u32 rsvd12[4]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 372 | }; |
| 373 | |
| 374 | struct nvme_delete_queue { |
| 375 | __u8 opcode; |
| 376 | __u8 flags; |
| 377 | __u16 command_id; |
| 378 | __u32 rsvd1[9]; |
| 379 | __le16 qid; |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 380 | __u16 rsvd10; |
| 381 | __u32 rsvd11[5]; |
| 382 | }; |
| 383 | |
| 384 | struct nvme_download_firmware { |
| 385 | __u8 opcode; |
| 386 | __u8 flags; |
| 387 | __u16 command_id; |
| 388 | __u32 rsvd1[5]; |
| 389 | __le64 prp1; |
| 390 | __le64 prp2; |
| 391 | __le32 numd; |
| 392 | __le32 offset; |
| 393 | __u32 rsvd12[4]; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 394 | }; |
| 395 | |
Vishal Verma | f8ebf84 | 2013-03-27 07:13:41 -0400 | [diff] [blame^] | 396 | struct nvme_format_cmd { |
| 397 | __u8 opcode; |
| 398 | __u8 flags; |
| 399 | __u16 command_id; |
| 400 | __le32 nsid; |
| 401 | __u64 rsvd2[4]; |
| 402 | __le32 cdw10; |
| 403 | __u32 rsvd11[5]; |
| 404 | }; |
| 405 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 406 | struct nvme_command { |
| 407 | union { |
| 408 | struct nvme_common_command common; |
| 409 | struct nvme_rw_command rw; |
| 410 | struct nvme_identify identify; |
| 411 | struct nvme_features features; |
| 412 | struct nvme_create_cq create_cq; |
| 413 | struct nvme_create_sq create_sq; |
| 414 | struct nvme_delete_queue delete_queue; |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 415 | struct nvme_download_firmware dlfw; |
Vishal Verma | f8ebf84 | 2013-03-27 07:13:41 -0400 | [diff] [blame^] | 416 | struct nvme_format_cmd format; |
Keith Busch | 0e5e4f0 | 2012-11-09 16:33:05 -0700 | [diff] [blame] | 417 | struct nvme_dsm_cmd dsm; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 418 | }; |
| 419 | }; |
| 420 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 421 | enum { |
| 422 | NVME_SC_SUCCESS = 0x0, |
| 423 | NVME_SC_INVALID_OPCODE = 0x1, |
| 424 | NVME_SC_INVALID_FIELD = 0x2, |
| 425 | NVME_SC_CMDID_CONFLICT = 0x3, |
| 426 | NVME_SC_DATA_XFER_ERROR = 0x4, |
| 427 | NVME_SC_POWER_LOSS = 0x5, |
| 428 | NVME_SC_INTERNAL = 0x6, |
| 429 | NVME_SC_ABORT_REQ = 0x7, |
| 430 | NVME_SC_ABORT_QUEUE = 0x8, |
| 431 | NVME_SC_FUSED_FAIL = 0x9, |
| 432 | NVME_SC_FUSED_MISSING = 0xa, |
Matthew Wilcox | 7a63e07 | 2011-02-03 09:20:57 -0500 | [diff] [blame] | 433 | NVME_SC_INVALID_NS = 0xb, |
Vishal Verma | f8ebf84 | 2013-03-27 07:13:41 -0400 | [diff] [blame^] | 434 | NVME_SC_CMD_SEQ_ERROR = 0xc, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 435 | NVME_SC_LBA_RANGE = 0x80, |
| 436 | NVME_SC_CAP_EXCEEDED = 0x81, |
| 437 | NVME_SC_NS_NOT_READY = 0x82, |
| 438 | NVME_SC_CQ_INVALID = 0x100, |
| 439 | NVME_SC_QID_INVALID = 0x101, |
| 440 | NVME_SC_QUEUE_SIZE = 0x102, |
Matthew Wilcox | 7a63e07 | 2011-02-03 09:20:57 -0500 | [diff] [blame] | 441 | NVME_SC_ABORT_LIMIT = 0x103, |
| 442 | NVME_SC_ABORT_MISSING = 0x104, |
| 443 | NVME_SC_ASYNC_LIMIT = 0x105, |
| 444 | NVME_SC_FIRMWARE_SLOT = 0x106, |
| 445 | NVME_SC_FIRMWARE_IMAGE = 0x107, |
| 446 | NVME_SC_INVALID_VECTOR = 0x108, |
| 447 | NVME_SC_INVALID_LOG_PAGE = 0x109, |
| 448 | NVME_SC_INVALID_FORMAT = 0x10a, |
| 449 | NVME_SC_BAD_ATTRIBUTES = 0x180, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 450 | NVME_SC_WRITE_FAULT = 0x280, |
| 451 | NVME_SC_READ_ERROR = 0x281, |
Matthew Wilcox | 7a63e07 | 2011-02-03 09:20:57 -0500 | [diff] [blame] | 452 | NVME_SC_GUARD_CHECK = 0x282, |
| 453 | NVME_SC_APPTAG_CHECK = 0x283, |
| 454 | NVME_SC_REFTAG_CHECK = 0x284, |
| 455 | NVME_SC_COMPARE_FAILED = 0x285, |
| 456 | NVME_SC_ACCESS_DENIED = 0x286, |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 457 | }; |
| 458 | |
| 459 | struct nvme_completion { |
| 460 | __le32 result; /* Used by admin commands to return data */ |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 461 | __u32 rsvd; |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 462 | __le16 sq_head; /* how much of this queue may be reclaimed */ |
| 463 | __le16 sq_id; /* submission queue that generated this entry */ |
| 464 | __u16 command_id; /* of the command which completed */ |
| 465 | __le16 status; /* did the command fail, and if so, why? */ |
| 466 | }; |
| 467 | |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 468 | struct nvme_user_io { |
| 469 | __u8 opcode; |
| 470 | __u8 flags; |
| 471 | __u16 control; |
Matthew Wilcox | 6c7d494 | 2011-03-21 09:48:57 -0400 | [diff] [blame] | 472 | __u16 nblocks; |
| 473 | __u16 rsvd; |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 474 | __u64 metadata; |
| 475 | __u64 addr; |
| 476 | __u64 slba; |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 477 | __u32 dsmgmt; |
| 478 | __u32 reftag; |
| 479 | __u16 apptag; |
| 480 | __u16 appmask; |
Matthew Wilcox | a53295b | 2011-02-01 16:13:29 -0500 | [diff] [blame] | 481 | }; |
| 482 | |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 483 | struct nvme_admin_cmd { |
| 484 | __u8 opcode; |
| 485 | __u8 flags; |
| 486 | __u16 rsvd1; |
| 487 | __u32 nsid; |
| 488 | __u32 cdw2; |
| 489 | __u32 cdw3; |
| 490 | __u64 metadata; |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 491 | __u64 addr; |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 492 | __u32 metadata_len; |
| 493 | __u32 data_len; |
| 494 | __u32 cdw10; |
| 495 | __u32 cdw11; |
| 496 | __u32 cdw12; |
| 497 | __u32 cdw13; |
| 498 | __u32 cdw14; |
| 499 | __u32 cdw15; |
| 500 | __u32 timeout_ms; |
| 501 | __u32 result; |
Matthew Wilcox | 6ee44cd | 2011-02-03 10:58:26 -0500 | [diff] [blame] | 502 | }; |
| 503 | |
Matthew Wilcox | 6bbf1ac | 2011-05-20 13:03:42 -0400 | [diff] [blame] | 504 | #define NVME_IOCTL_ID _IO('N', 0x40) |
| 505 | #define NVME_IOCTL_ADMIN_CMD _IOWR('N', 0x41, struct nvme_admin_cmd) |
| 506 | #define NVME_IOCTL_SUBMIT_IO _IOW('N', 0x42, struct nvme_user_io) |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 507 | |
Vishal Verma | 13c3b0f | 2013-03-04 18:40:57 -0700 | [diff] [blame] | 508 | #ifdef __KERNEL__ |
| 509 | #include <linux/pci.h> |
| 510 | |
| 511 | #define NVME_IO_TIMEOUT (5 * HZ) |
| 512 | |
| 513 | /* |
| 514 | * Represents an NVM Express device. Each nvme_dev is a PCI function. |
| 515 | */ |
| 516 | struct nvme_dev { |
| 517 | struct list_head node; |
| 518 | struct nvme_queue **queues; |
| 519 | u32 __iomem *dbs; |
| 520 | struct pci_dev *pci_dev; |
| 521 | struct dma_pool *prp_page_pool; |
| 522 | struct dma_pool *prp_small_pool; |
| 523 | int instance; |
| 524 | int queue_count; |
| 525 | int db_stride; |
| 526 | u32 ctrl_config; |
| 527 | struct msix_entry *entry; |
| 528 | struct nvme_bar __iomem *bar; |
| 529 | struct list_head namespaces; |
| 530 | char serial[20]; |
| 531 | char model[40]; |
| 532 | char firmware_rev[8]; |
| 533 | u32 max_hw_sectors; |
| 534 | u16 oncs; |
| 535 | }; |
| 536 | |
| 537 | /* |
| 538 | * An NVM Express namespace is equivalent to a SCSI LUN |
| 539 | */ |
| 540 | struct nvme_ns { |
| 541 | struct list_head list; |
| 542 | |
| 543 | struct nvme_dev *dev; |
| 544 | struct request_queue *queue; |
| 545 | struct gendisk *disk; |
| 546 | |
| 547 | int ns_id; |
| 548 | int lba_shift; |
| 549 | }; |
| 550 | |
| 551 | /* |
| 552 | * The nvme_iod describes the data in an I/O, including the list of PRP |
| 553 | * entries. You can't see it in this data structure because C doesn't let |
| 554 | * me express that. Use nvme_alloc_iod to ensure there's enough space |
| 555 | * allocated to store the PRP list. |
| 556 | */ |
| 557 | struct nvme_iod { |
| 558 | void *private; /* For the use of the submitter of the I/O */ |
| 559 | int npages; /* In the PRP list. 0 means small pool in use */ |
| 560 | int offset; /* Of PRP list */ |
| 561 | int nents; /* Used in scatterlist */ |
| 562 | int length; /* Of data, in bytes */ |
| 563 | dma_addr_t first_dma; |
| 564 | struct scatterlist sg[0]; |
| 565 | }; |
| 566 | #endif |
| 567 | |
Matthew Wilcox | b60503b | 2011-01-20 12:50:14 -0500 | [diff] [blame] | 568 | #endif /* _LINUX_NVME_H */ |