1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (C) 2012-2013 Intel Corporation 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 */ 28 29 #ifndef __NVME_H__ 30 #define __NVME_H__ 31 32 #ifdef _KERNEL 33 #include <sys/types.h> 34 #endif 35 36 #include <sys/param.h> 37 #include <sys/endian.h> 38 39 #define NVME_PASSTHROUGH_CMD _IOWR('n', 0, struct nvme_pt_command) 40 #define NVME_RESET_CONTROLLER _IO('n', 1) 41 #define NVME_GET_NSID _IOR('n', 2, struct nvme_get_nsid) 42 #define NVME_GET_MAX_XFER_SIZE _IOR('n', 3, uint64_t) 43 44 #define NVME_IO_TEST _IOWR('n', 100, struct nvme_io_test) 45 #define NVME_BIO_TEST _IOWR('n', 101, struct nvme_io_test) 46 47 /* 48 * Macros to deal with NVME revisions, as defined VS register 49 */ 50 #define NVME_REV(x, y) (((x) << 16) | ((y) << 8)) 51 #define NVME_MAJOR(r) (((r) >> 16) & 0xffff) 52 #define NVME_MINOR(r) (((r) >> 8) & 0xff) 53 54 /* 55 * Use to mark a command to apply to all namespaces, or to retrieve global 56 * log pages. 57 */ 58 #define NVME_GLOBAL_NAMESPACE_TAG ((uint32_t)0xFFFFFFFF) 59 60 /* Host memory buffer sizes are always in 4096 byte chunks */ 61 #define NVME_HMB_UNITS 4096 62 63 /* Many items are expressed in terms of power of two times MPS */ 64 #define NVME_MPS_SHIFT 12 65 66 /* Register field definitions */ 67 #define NVME_CAP_LO_REG_MQES_SHIFT (0) 68 #define NVME_CAP_LO_REG_MQES_MASK (0xFFFF) 69 #define NVME_CAP_LO_REG_CQR_SHIFT (16) 70 #define NVME_CAP_LO_REG_CQR_MASK (0x1) 71 #define NVME_CAP_LO_REG_AMS_SHIFT (17) 72 #define NVME_CAP_LO_REG_AMS_MASK (0x3) 73 #define NVME_CAP_LO_REG_TO_SHIFT (24) 74 #define NVME_CAP_LO_REG_TO_MASK (0xFF) 75 #define NVME_CAP_LO_MQES(x) \ 76 NVMEV(NVME_CAP_LO_REG_MQES, x) 77 #define NVME_CAP_LO_CQR(x) \ 78 NVMEV(NVME_CAP_LO_REG_CQR, x) 79 #define NVME_CAP_LO_AMS(x) \ 80 NVMEV(NVME_CAP_LO_REG_AMS, x) 81 #define NVME_CAP_LO_TO(x) \ 82 NVMEV(NVME_CAP_LO_REG_TO, x) 83 84 #define NVME_CAP_HI_REG_DSTRD_SHIFT (0) 85 #define NVME_CAP_HI_REG_DSTRD_MASK (0xF) 86 #define NVME_CAP_HI_REG_NSSRS_SHIFT (4) 87 #define NVME_CAP_HI_REG_NSSRS_MASK (0x1) 88 #define NVME_CAP_HI_REG_CSS_SHIFT (5) 89 #define NVME_CAP_HI_REG_CSS_MASK (0xff) 90 #define NVME_CAP_HI_REG_CSS_NVM_SHIFT (5) 91 #define NVME_CAP_HI_REG_CSS_NVM_MASK (0x1) 92 #define NVME_CAP_HI_REG_BPS_SHIFT (13) 93 #define NVME_CAP_HI_REG_BPS_MASK (0x1) 94 #define NVME_CAP_HI_REG_CPS_SHIFT (14) 95 #define NVME_CAP_HI_REG_CPS_MASK (0x3) 96 #define NVME_CAP_HI_REG_MPSMIN_SHIFT (16) 97 #define NVME_CAP_HI_REG_MPSMIN_MASK (0xF) 98 #define NVME_CAP_HI_REG_MPSMAX_SHIFT (20) 99 #define NVME_CAP_HI_REG_MPSMAX_MASK (0xF) 100 #define NVME_CAP_HI_REG_PMRS_SHIFT (24) 101 #define NVME_CAP_HI_REG_PMRS_MASK (0x1) 102 #define NVME_CAP_HI_REG_CMBS_SHIFT (25) 103 #define NVME_CAP_HI_REG_CMBS_MASK (0x1) 104 #define NVME_CAP_HI_REG_NSSS_SHIFT (26) 105 #define NVME_CAP_HI_REG_NSSS_MASK (0x1) 106 #define NVME_CAP_HI_REG_CRWMS_SHIFT (27) 107 #define NVME_CAP_HI_REG_CRWMS_MASK (0x1) 108 #define NVME_CAP_HI_REG_CRIMS_SHIFT (28) 109 #define NVME_CAP_HI_REG_CRIMS_MASK (0x1) 110 #define NVME_CAP_HI_DSTRD(x) \ 111 NVMEV(NVME_CAP_HI_REG_DSTRD, x) 112 #define NVME_CAP_HI_NSSRS(x) \ 113 NVMEV(NVME_CAP_HI_REG_NSSRS, x) 114 #define NVME_CAP_HI_CSS(x) \ 115 NVMEV(NVME_CAP_HI_REG_CSS, x) 116 #define NVME_CAP_HI_CSS_NVM(x) \ 117 NVMEV(NVME_CAP_HI_REG_CSS_NVM, x) 118 #define NVME_CAP_HI_BPS(x) \ 119 NVMEV(NVME_CAP_HI_REG_BPS, x) 120 #define NVME_CAP_HI_CPS(x) \ 121 NVMEV(NVME_CAP_HI_REG_CPS, x) 122 #define NVME_CAP_HI_MPSMIN(x) \ 123 NVMEV(NVME_CAP_HI_REG_MPSMIN, x) 124 #define NVME_CAP_HI_MPSMAX(x) \ 125 NVMEV(NVME_CAP_HI_REG_MPSMAX, x) 126 #define NVME_CAP_HI_PMRS(x) \ 127 NVMEV(NVME_CAP_HI_REG_PMRS, x) 128 #define NVME_CAP_HI_CMBS(x) \ 129 NVMEV(NVME_CAP_HI_REG_CMBS, x) 130 #define NVME_CAP_HI_NSSS(x) \ 131 NVMEV(NVME_CAP_HI_REG_NSSS, x) 132 #define NVME_CAP_HI_CRWMS(x) \ 133 NVMEV(NVME_CAP_HI_REG_CRWMS, x) 134 #define NVME_CAP_HI_CRIMS(x) \ 135 NVMEV(NVME_CAP_HI_REG_CRIMS, x) 136 137 #define NVME_CC_REG_EN_SHIFT (0) 138 #define NVME_CC_REG_EN_MASK (0x1) 139 #define NVME_CC_REG_CSS_SHIFT (4) 140 #define NVME_CC_REG_CSS_MASK (0x7) 141 #define NVME_CC_REG_MPS_SHIFT (7) 142 #define NVME_CC_REG_MPS_MASK (0xF) 143 #define NVME_CC_REG_AMS_SHIFT (11) 144 #define NVME_CC_REG_AMS_MASK (0x7) 145 #define NVME_CC_REG_SHN_SHIFT (14) 146 #define NVME_CC_REG_SHN_MASK (0x3) 147 #define NVME_CC_REG_IOSQES_SHIFT (16) 148 #define NVME_CC_REG_IOSQES_MASK (0xF) 149 #define NVME_CC_REG_IOCQES_SHIFT (20) 150 #define NVME_CC_REG_IOCQES_MASK (0xF) 151 #define NVME_CC_REG_CRIME_SHIFT (24) 152 #define NVME_CC_REG_CRIME_MASK (0x1) 153 154 #define NVME_CSTS_REG_RDY_SHIFT (0) 155 #define NVME_CSTS_REG_RDY_MASK (0x1) 156 #define NVME_CSTS_REG_CFS_SHIFT (1) 157 #define NVME_CSTS_REG_CFS_MASK (0x1) 158 #define NVME_CSTS_REG_SHST_SHIFT (2) 159 #define NVME_CSTS_REG_SHST_MASK (0x3) 160 #define NVME_CSTS_REG_NVSRO_SHIFT (4) 161 #define NVME_CSTS_REG_NVSRO_MASK (0x1) 162 #define NVME_CSTS_REG_PP_SHIFT (5) 163 #define NVME_CSTS_REG_PP_MASK (0x1) 164 #define NVME_CSTS_REG_ST_SHIFT (6) 165 #define NVME_CSTS_REG_ST_MASK (0x1) 166 167 #define NVME_CSTS_GET_SHST(csts) \ 168 NVMEV(NVME_CSTS_REG_SHST, csts) 169 170 #define NVME_AQA_REG_ASQS_SHIFT (0) 171 #define NVME_AQA_REG_ASQS_MASK (0xFFF) 172 #define NVME_AQA_REG_ACQS_SHIFT (16) 173 #define NVME_AQA_REG_ACQS_MASK (0xFFF) 174 175 #define NVME_PMRCAP_REG_RDS_SHIFT (3) 176 #define NVME_PMRCAP_REG_RDS_MASK (0x1) 177 #define NVME_PMRCAP_REG_WDS_SHIFT (4) 178 #define NVME_PMRCAP_REG_WDS_MASK (0x1) 179 #define NVME_PMRCAP_REG_BIR_SHIFT (5) 180 #define NVME_PMRCAP_REG_BIR_MASK (0x7) 181 #define NVME_PMRCAP_REG_PMRTU_SHIFT (8) 182 #define NVME_PMRCAP_REG_PMRTU_MASK (0x3) 183 #define NVME_PMRCAP_REG_PMRWBM_SHIFT (10) 184 #define NVME_PMRCAP_REG_PMRWBM_MASK (0xf) 185 #define NVME_PMRCAP_REG_PMRTO_SHIFT (16) 186 #define NVME_PMRCAP_REG_PMRTO_MASK (0xff) 187 #define NVME_PMRCAP_REG_CMSS_SHIFT (24) 188 #define NVME_PMRCAP_REG_CMSS_MASK (0x1) 189 190 #define NVME_PMRCAP_RDS(x) \ 191 NVMEV(NVME_PMRCAP_REG_RDS, x) 192 #define NVME_PMRCAP_WDS(x) \ 193 NVMEV(NVME_PMRCAP_REG_WDS, x) 194 #define NVME_PMRCAP_BIR(x) \ 195 NVMEV(NVME_PMRCAP_REG_BIR, x) 196 #define NVME_PMRCAP_PMRTU(x) \ 197 NVMEV(NVME_PMRCAP_REG_PMRTU, x) 198 #define NVME_PMRCAP_PMRWBM(x) \ 199 NVMEV(NVME_PMRCAP_REG_PMRWBM, x) 200 #define NVME_PMRCAP_PMRTO(x) \ 201 NVMEV(NVME_PMRCAP_REG_PMRTO, x) 202 #define NVME_PMRCAP_CMSS(x) \ 203 NVMEV(NVME_PMRCAP_REG_CMSS, x) 204 205 /* Command field definitions */ 206 207 #define NVME_CMD_FUSE_SHIFT (8) 208 #define NVME_CMD_FUSE_MASK (0x3) 209 210 #define NVME_STATUS_P_SHIFT (0) 211 #define NVME_STATUS_P_MASK (0x1) 212 #define NVME_STATUS_SC_SHIFT (1) 213 #define NVME_STATUS_SC_MASK (0xFF) 214 #define NVME_STATUS_SCT_SHIFT (9) 215 #define NVME_STATUS_SCT_MASK (0x7) 216 #define NVME_STATUS_CRD_SHIFT (12) 217 #define NVME_STATUS_CRD_MASK (0x3) 218 #define NVME_STATUS_M_SHIFT (14) 219 #define NVME_STATUS_M_MASK (0x1) 220 #define NVME_STATUS_DNR_SHIFT (15) 221 #define NVME_STATUS_DNR_MASK (0x1) 222 223 #define NVME_STATUS_GET_P(st) \ 224 NVMEV(NVME_STATUS_P, st) 225 #define NVME_STATUS_GET_SC(st) \ 226 NVMEV(NVME_STATUS_SC, st) 227 #define NVME_STATUS_GET_SCT(st) \ 228 NVMEV(NVME_STATUS_SCT, st) 229 #define NVME_STATUS_GET_CRD(st) \ 230 NVMEV(NVME_STATUS_CRD, st) 231 #define NVME_STATUS_GET_M(st) \ 232 NVMEV(NVME_STATUS_M, st) 233 #define NVME_STATUS_GET_DNR(st) \ 234 NVMEV(NVME_STATUS_DNR, st) 235 236 #define NVME_PWR_ST_MPS_SHIFT (0) 237 #define NVME_PWR_ST_MPS_MASK (0x1) 238 #define NVME_PWR_ST_NOPS_SHIFT (1) 239 #define NVME_PWR_ST_NOPS_MASK (0x1) 240 #define NVME_PWR_ST_RRT_SHIFT (0) 241 #define NVME_PWR_ST_RRT_MASK (0x1F) 242 #define NVME_PWR_ST_RRL_SHIFT (0) 243 #define NVME_PWR_ST_RRL_MASK (0x1F) 244 #define NVME_PWR_ST_RWT_SHIFT (0) 245 #define NVME_PWR_ST_RWT_MASK (0x1F) 246 #define NVME_PWR_ST_RWL_SHIFT (0) 247 #define NVME_PWR_ST_RWL_MASK (0x1F) 248 #define NVME_PWR_ST_IPS_SHIFT (6) 249 #define NVME_PWR_ST_IPS_MASK (0x3) 250 #define NVME_PWR_ST_APW_SHIFT (0) 251 #define NVME_PWR_ST_APW_MASK (0x7) 252 #define NVME_PWR_ST_APS_SHIFT (6) 253 #define NVME_PWR_ST_APS_MASK (0x3) 254 255 /** Controller Multi-path I/O and Namespace Sharing Capabilities */ 256 /* More then one port */ 257 #define NVME_CTRLR_DATA_MIC_MPORTS_SHIFT (0) 258 #define NVME_CTRLR_DATA_MIC_MPORTS_MASK (0x1) 259 /* More then one controller */ 260 #define NVME_CTRLR_DATA_MIC_MCTRLRS_SHIFT (1) 261 #define NVME_CTRLR_DATA_MIC_MCTRLRS_MASK (0x1) 262 /* SR-IOV Virtual Function */ 263 #define NVME_CTRLR_DATA_MIC_SRIOVVF_SHIFT (2) 264 #define NVME_CTRLR_DATA_MIC_SRIOVVF_MASK (0x1) 265 /* Asymmetric Namespace Access Reporting */ 266 #define NVME_CTRLR_DATA_MIC_ANAR_SHIFT (3) 267 #define NVME_CTRLR_DATA_MIC_ANAR_MASK (0x1) 268 269 /** OAES - Optional Asynchronous Events Supported */ 270 /* supports Namespace Attribute Notices event */ 271 #define NVME_CTRLR_DATA_OAES_NS_ATTR_SHIFT (8) 272 #define NVME_CTRLR_DATA_OAES_NS_ATTR_MASK (0x1) 273 /* supports Firmware Activation Notices event */ 274 #define NVME_CTRLR_DATA_OAES_FW_ACTIVATE_SHIFT (9) 275 #define NVME_CTRLR_DATA_OAES_FW_ACTIVATE_MASK (0x1) 276 /* supports Asymmetric Namespace Access Change Notices event */ 277 #define NVME_CTRLR_DATA_OAES_ASYM_NS_CHANGE_SHIFT (11) 278 #define NVME_CTRLR_DATA_OAES_ASYM_NS_CHANGE_MASK (0x1) 279 /* supports Predictable Latency Event Aggregate Log Change Notices event */ 280 #define NVME_CTRLR_DATA_OAES_PREDICT_LATENCY_SHIFT (12) 281 #define NVME_CTRLR_DATA_OAES_PREDICT_LATENCY_MASK (0x1) 282 /* supports LBA Status Information Notices event */ 283 #define NVME_CTRLR_DATA_OAES_LBA_STATUS_SHIFT (13) 284 #define NVME_CTRLR_DATA_OAES_LBA_STATUS_MASK (0x1) 285 /* supports Endurance Group Event Aggregate Log Page Changes Notices event */ 286 #define NVME_CTRLR_DATA_OAES_ENDURANCE_GROUP_SHIFT (14) 287 #define NVME_CTRLR_DATA_OAES_ENDURANCE_GROUP_MASK (0x1) 288 /* supports Normal NVM Subsystem Shutdown event */ 289 #define NVME_CTRLR_DATA_OAES_NORMAL_SHUTDOWN_SHIFT (15) 290 #define NVME_CTRLR_DATA_OAES_NORMAL_SHUTDOWN_MASK (0x1) 291 /* supports Zone Descriptor Changed Notices event */ 292 #define NVME_CTRLR_DATA_OAES_ZONE_DESC_CHANGE_SHIFT (27) 293 #define NVME_CTRLR_DATA_OAES_ZONE_DESC_CHANGE_MASK (0x1) 294 /* supports Discovery Log Page Change Notification event */ 295 #define NVME_CTRLR_DATA_OAES_LOG_PAGE_CHANGE_SHIFT (31) 296 #define NVME_CTRLR_DATA_OAES_LOG_PAGE_CHANGE_MASK (0x1) 297 298 /** OACS - optional admin command support */ 299 /* supports security send/receive commands */ 300 #define NVME_CTRLR_DATA_OACS_SECURITY_SHIFT (0) 301 #define NVME_CTRLR_DATA_OACS_SECURITY_MASK (0x1) 302 /* supports format nvm command */ 303 #define NVME_CTRLR_DATA_OACS_FORMAT_SHIFT (1) 304 #define NVME_CTRLR_DATA_OACS_FORMAT_MASK (0x1) 305 /* supports firmware activate/download commands */ 306 #define NVME_CTRLR_DATA_OACS_FIRMWARE_SHIFT (2) 307 #define NVME_CTRLR_DATA_OACS_FIRMWARE_MASK (0x1) 308 /* supports namespace management commands */ 309 #define NVME_CTRLR_DATA_OACS_NSMGMT_SHIFT (3) 310 #define NVME_CTRLR_DATA_OACS_NSMGMT_MASK (0x1) 311 /* supports Device Self-test command */ 312 #define NVME_CTRLR_DATA_OACS_SELFTEST_SHIFT (4) 313 #define NVME_CTRLR_DATA_OACS_SELFTEST_MASK (0x1) 314 /* supports Directives */ 315 #define NVME_CTRLR_DATA_OACS_DIRECTIVES_SHIFT (5) 316 #define NVME_CTRLR_DATA_OACS_DIRECTIVES_MASK (0x1) 317 /* supports NVMe-MI Send/Receive */ 318 #define NVME_CTRLR_DATA_OACS_NVMEMI_SHIFT (6) 319 #define NVME_CTRLR_DATA_OACS_NVMEMI_MASK (0x1) 320 /* supports Virtualization Management */ 321 #define NVME_CTRLR_DATA_OACS_VM_SHIFT (7) 322 #define NVME_CTRLR_DATA_OACS_VM_MASK (0x1) 323 /* supports Doorbell Buffer Config */ 324 #define NVME_CTRLR_DATA_OACS_DBBUFFER_SHIFT (8) 325 #define NVME_CTRLR_DATA_OACS_DBBUFFER_MASK (0x1) 326 /* supports Get LBA Status */ 327 #define NVME_CTRLR_DATA_OACS_GETLBA_SHIFT (9) 328 #define NVME_CTRLR_DATA_OACS_GETLBA_MASK (0x1) 329 330 /** firmware updates */ 331 /* first slot is read-only */ 332 #define NVME_CTRLR_DATA_FRMW_SLOT1_RO_SHIFT (0) 333 #define NVME_CTRLR_DATA_FRMW_SLOT1_RO_MASK (0x1) 334 /* number of firmware slots */ 335 #define NVME_CTRLR_DATA_FRMW_NUM_SLOTS_SHIFT (1) 336 #define NVME_CTRLR_DATA_FRMW_NUM_SLOTS_MASK (0x7) 337 /* firmware activation without reset */ 338 #define NVME_CTRLR_DATA_FRMW_ACT_WO_RESET_SHIFT (4) 339 #define NVME_CTRLR_DATA_FRMW_ACT_WO_RESET_MASK (0x1) 340 341 /** log page attributes */ 342 /* per namespace smart/health log page */ 343 #define NVME_CTRLR_DATA_LPA_NS_SMART_SHIFT (0) 344 #define NVME_CTRLR_DATA_LPA_NS_SMART_MASK (0x1) 345 346 /** AVSCC - admin vendor specific command configuration */ 347 /* admin vendor specific commands use spec format */ 348 #define NVME_CTRLR_DATA_AVSCC_SPEC_FORMAT_SHIFT (0) 349 #define NVME_CTRLR_DATA_AVSCC_SPEC_FORMAT_MASK (0x1) 350 351 /** Autonomous Power State Transition Attributes */ 352 /* Autonomous Power State Transitions supported */ 353 #define NVME_CTRLR_DATA_APSTA_APST_SUPP_SHIFT (0) 354 #define NVME_CTRLR_DATA_APSTA_APST_SUPP_MASK (0x1) 355 356 /** Sanitize Capabilities */ 357 /* Crypto Erase Support */ 358 #define NVME_CTRLR_DATA_SANICAP_CES_SHIFT (0) 359 #define NVME_CTRLR_DATA_SANICAP_CES_MASK (0x1) 360 /* Block Erase Support */ 361 #define NVME_CTRLR_DATA_SANICAP_BES_SHIFT (1) 362 #define NVME_CTRLR_DATA_SANICAP_BES_MASK (0x1) 363 /* Overwrite Support */ 364 #define NVME_CTRLR_DATA_SANICAP_OWS_SHIFT (2) 365 #define NVME_CTRLR_DATA_SANICAP_OWS_MASK (0x1) 366 /* No-Deallocate Inhibited */ 367 #define NVME_CTRLR_DATA_SANICAP_NDI_SHIFT (29) 368 #define NVME_CTRLR_DATA_SANICAP_NDI_MASK (0x1) 369 /* No-Deallocate Modifies Media After Sanitize */ 370 #define NVME_CTRLR_DATA_SANICAP_NODMMAS_SHIFT (30) 371 #define NVME_CTRLR_DATA_SANICAP_NODMMAS_MASK (0x3) 372 #define NVME_CTRLR_DATA_SANICAP_NODMMAS_UNDEF (0) 373 #define NVME_CTRLR_DATA_SANICAP_NODMMAS_NO (1) 374 #define NVME_CTRLR_DATA_SANICAP_NODMMAS_YES (2) 375 376 /** submission queue entry size */ 377 #define NVME_CTRLR_DATA_SQES_MIN_SHIFT (0) 378 #define NVME_CTRLR_DATA_SQES_MIN_MASK (0xF) 379 #define NVME_CTRLR_DATA_SQES_MAX_SHIFT (4) 380 #define NVME_CTRLR_DATA_SQES_MAX_MASK (0xF) 381 382 /** completion queue entry size */ 383 #define NVME_CTRLR_DATA_CQES_MIN_SHIFT (0) 384 #define NVME_CTRLR_DATA_CQES_MIN_MASK (0xF) 385 #define NVME_CTRLR_DATA_CQES_MAX_SHIFT (4) 386 #define NVME_CTRLR_DATA_CQES_MAX_MASK (0xF) 387 388 /** optional nvm command support */ 389 #define NVME_CTRLR_DATA_ONCS_COMPARE_SHIFT (0) 390 #define NVME_CTRLR_DATA_ONCS_COMPARE_MASK (0x1) 391 #define NVME_CTRLR_DATA_ONCS_WRITE_UNC_SHIFT (1) 392 #define NVME_CTRLR_DATA_ONCS_WRITE_UNC_MASK (0x1) 393 #define NVME_CTRLR_DATA_ONCS_DSM_SHIFT (2) 394 #define NVME_CTRLR_DATA_ONCS_DSM_MASK (0x1) 395 #define NVME_CTRLR_DATA_ONCS_WRZERO_SHIFT (3) 396 #define NVME_CTRLR_DATA_ONCS_WRZERO_MASK (0x1) 397 #define NVME_CTRLR_DATA_ONCS_SAVEFEAT_SHIFT (4) 398 #define NVME_CTRLR_DATA_ONCS_SAVEFEAT_MASK (0x1) 399 #define NVME_CTRLR_DATA_ONCS_RESERV_SHIFT (5) 400 #define NVME_CTRLR_DATA_ONCS_RESERV_MASK (0x1) 401 #define NVME_CTRLR_DATA_ONCS_TIMESTAMP_SHIFT (6) 402 #define NVME_CTRLR_DATA_ONCS_TIMESTAMP_MASK (0x1) 403 #define NVME_CTRLR_DATA_ONCS_VERIFY_SHIFT (7) 404 #define NVME_CTRLR_DATA_ONCS_VERIFY_MASK (0x1) 405 406 /** Fused Operation Support */ 407 #define NVME_CTRLR_DATA_FUSES_CNW_SHIFT (0) 408 #define NVME_CTRLR_DATA_FUSES_CNW_MASK (0x1) 409 410 /** Format NVM Attributes */ 411 #define NVME_CTRLR_DATA_FNA_FORMAT_ALL_SHIFT (0) 412 #define NVME_CTRLR_DATA_FNA_FORMAT_ALL_MASK (0x1) 413 #define NVME_CTRLR_DATA_FNA_ERASE_ALL_SHIFT (1) 414 #define NVME_CTRLR_DATA_FNA_ERASE_ALL_MASK (0x1) 415 #define NVME_CTRLR_DATA_FNA_CRYPTO_ERASE_SHIFT (2) 416 #define NVME_CTRLR_DATA_FNA_CRYPTO_ERASE_MASK (0x1) 417 418 /** volatile write cache */ 419 /* volatile write cache present */ 420 #define NVME_CTRLR_DATA_VWC_PRESENT_SHIFT (0) 421 #define NVME_CTRLR_DATA_VWC_PRESENT_MASK (0x1) 422 /* flush all namespaces supported */ 423 #define NVME_CTRLR_DATA_VWC_ALL_SHIFT (1) 424 #define NVME_CTRLR_DATA_VWC_ALL_MASK (0x3) 425 #define NVME_CTRLR_DATA_VWC_ALL_UNKNOWN (0) 426 #define NVME_CTRLR_DATA_VWC_ALL_NO (2) 427 #define NVME_CTRLR_DATA_VWC_ALL_YES (3) 428 429 /** namespace features */ 430 /* thin provisioning */ 431 #define NVME_NS_DATA_NSFEAT_THIN_PROV_SHIFT (0) 432 #define NVME_NS_DATA_NSFEAT_THIN_PROV_MASK (0x1) 433 /* NAWUN, NAWUPF, and NACWU fields are valid */ 434 #define NVME_NS_DATA_NSFEAT_NA_FIELDS_SHIFT (1) 435 #define NVME_NS_DATA_NSFEAT_NA_FIELDS_MASK (0x1) 436 /* Deallocated or Unwritten Logical Block errors supported */ 437 #define NVME_NS_DATA_NSFEAT_DEALLOC_SHIFT (2) 438 #define NVME_NS_DATA_NSFEAT_DEALLOC_MASK (0x1) 439 /* NGUID and EUI64 fields are not reusable */ 440 #define NVME_NS_DATA_NSFEAT_NO_ID_REUSE_SHIFT (3) 441 #define NVME_NS_DATA_NSFEAT_NO_ID_REUSE_MASK (0x1) 442 /* NPWG, NPWA, NPDG, NPDA, and NOWS are valid */ 443 #define NVME_NS_DATA_NSFEAT_NPVALID_SHIFT (4) 444 #define NVME_NS_DATA_NSFEAT_NPVALID_MASK (0x1) 445 446 /** formatted lba size */ 447 #define NVME_NS_DATA_FLBAS_FORMAT_SHIFT (0) 448 #define NVME_NS_DATA_FLBAS_FORMAT_MASK (0xF) 449 #define NVME_NS_DATA_FLBAS_EXTENDED_SHIFT (4) 450 #define NVME_NS_DATA_FLBAS_EXTENDED_MASK (0x1) 451 452 /** metadata capabilities */ 453 /* metadata can be transferred as part of data prp list */ 454 #define NVME_NS_DATA_MC_EXTENDED_SHIFT (0) 455 #define NVME_NS_DATA_MC_EXTENDED_MASK (0x1) 456 /* metadata can be transferred with separate metadata pointer */ 457 #define NVME_NS_DATA_MC_POINTER_SHIFT (1) 458 #define NVME_NS_DATA_MC_POINTER_MASK (0x1) 459 460 /** end-to-end data protection capabilities */ 461 /* protection information type 1 */ 462 #define NVME_NS_DATA_DPC_PIT1_SHIFT (0) 463 #define NVME_NS_DATA_DPC_PIT1_MASK (0x1) 464 /* protection information type 2 */ 465 #define NVME_NS_DATA_DPC_PIT2_SHIFT (1) 466 #define NVME_NS_DATA_DPC_PIT2_MASK (0x1) 467 /* protection information type 3 */ 468 #define NVME_NS_DATA_DPC_PIT3_SHIFT (2) 469 #define NVME_NS_DATA_DPC_PIT3_MASK (0x1) 470 /* first eight bytes of metadata */ 471 #define NVME_NS_DATA_DPC_MD_START_SHIFT (3) 472 #define NVME_NS_DATA_DPC_MD_START_MASK (0x1) 473 /* last eight bytes of metadata */ 474 #define NVME_NS_DATA_DPC_MD_END_SHIFT (4) 475 #define NVME_NS_DATA_DPC_MD_END_MASK (0x1) 476 477 /** end-to-end data protection type settings */ 478 /* protection information type */ 479 #define NVME_NS_DATA_DPS_PIT_SHIFT (0) 480 #define NVME_NS_DATA_DPS_PIT_MASK (0x7) 481 /* 1 == protection info transferred at start of metadata */ 482 /* 0 == protection info transferred at end of metadata */ 483 #define NVME_NS_DATA_DPS_MD_START_SHIFT (3) 484 #define NVME_NS_DATA_DPS_MD_START_MASK (0x1) 485 486 /** Namespace Multi-path I/O and Namespace Sharing Capabilities */ 487 /* the namespace may be attached to two or more controllers */ 488 #define NVME_NS_DATA_NMIC_MAY_BE_SHARED_SHIFT (0) 489 #define NVME_NS_DATA_NMIC_MAY_BE_SHARED_MASK (0x1) 490 491 /** Reservation Capabilities */ 492 /* Persist Through Power Loss */ 493 #define NVME_NS_DATA_RESCAP_PTPL_SHIFT (0) 494 #define NVME_NS_DATA_RESCAP_PTPL_MASK (0x1) 495 /* supports the Write Exclusive */ 496 #define NVME_NS_DATA_RESCAP_WR_EX_SHIFT (1) 497 #define NVME_NS_DATA_RESCAP_WR_EX_MASK (0x1) 498 /* supports the Exclusive Access */ 499 #define NVME_NS_DATA_RESCAP_EX_AC_SHIFT (2) 500 #define NVME_NS_DATA_RESCAP_EX_AC_MASK (0x1) 501 /* supports the Write Exclusive – Registrants Only */ 502 #define NVME_NS_DATA_RESCAP_WR_EX_RO_SHIFT (3) 503 #define NVME_NS_DATA_RESCAP_WR_EX_RO_MASK (0x1) 504 /* supports the Exclusive Access - Registrants Only */ 505 #define NVME_NS_DATA_RESCAP_EX_AC_RO_SHIFT (4) 506 #define NVME_NS_DATA_RESCAP_EX_AC_RO_MASK (0x1) 507 /* supports the Write Exclusive – All Registrants */ 508 #define NVME_NS_DATA_RESCAP_WR_EX_AR_SHIFT (5) 509 #define NVME_NS_DATA_RESCAP_WR_EX_AR_MASK (0x1) 510 /* supports the Exclusive Access - All Registrants */ 511 #define NVME_NS_DATA_RESCAP_EX_AC_AR_SHIFT (6) 512 #define NVME_NS_DATA_RESCAP_EX_AC_AR_MASK (0x1) 513 /* Ignore Existing Key is used as defined in revision 1.3 or later */ 514 #define NVME_NS_DATA_RESCAP_IEKEY13_SHIFT (7) 515 #define NVME_NS_DATA_RESCAP_IEKEY13_MASK (0x1) 516 517 /** Format Progress Indicator */ 518 /* percentage of the Format NVM command that remains to be completed */ 519 #define NVME_NS_DATA_FPI_PERC_SHIFT (0) 520 #define NVME_NS_DATA_FPI_PERC_MASK (0x7f) 521 /* namespace supports the Format Progress Indicator */ 522 #define NVME_NS_DATA_FPI_SUPP_SHIFT (7) 523 #define NVME_NS_DATA_FPI_SUPP_MASK (0x1) 524 525 /** Deallocate Logical Block Features */ 526 /* deallocated logical block read behavior */ 527 #define NVME_NS_DATA_DLFEAT_READ_SHIFT (0) 528 #define NVME_NS_DATA_DLFEAT_READ_MASK (0x07) 529 #define NVME_NS_DATA_DLFEAT_READ_NR (0x00) 530 #define NVME_NS_DATA_DLFEAT_READ_00 (0x01) 531 #define NVME_NS_DATA_DLFEAT_READ_FF (0x02) 532 /* supports the Deallocate bit in the Write Zeroes */ 533 #define NVME_NS_DATA_DLFEAT_DWZ_SHIFT (3) 534 #define NVME_NS_DATA_DLFEAT_DWZ_MASK (0x01) 535 /* Guard field for deallocated logical blocks is set to the CRC */ 536 #define NVME_NS_DATA_DLFEAT_GCRC_SHIFT (4) 537 #define NVME_NS_DATA_DLFEAT_GCRC_MASK (0x01) 538 539 /** lba format support */ 540 /* metadata size */ 541 #define NVME_NS_DATA_LBAF_MS_SHIFT (0) 542 #define NVME_NS_DATA_LBAF_MS_MASK (0xFFFF) 543 /* lba data size */ 544 #define NVME_NS_DATA_LBAF_LBADS_SHIFT (16) 545 #define NVME_NS_DATA_LBAF_LBADS_MASK (0xFF) 546 /* relative performance */ 547 #define NVME_NS_DATA_LBAF_RP_SHIFT (24) 548 #define NVME_NS_DATA_LBAF_RP_MASK (0x3) 549 550 enum nvme_critical_warning_state { 551 NVME_CRIT_WARN_ST_AVAILABLE_SPARE = 0x1, 552 NVME_CRIT_WARN_ST_TEMPERATURE = 0x2, 553 NVME_CRIT_WARN_ST_DEVICE_RELIABILITY = 0x4, 554 NVME_CRIT_WARN_ST_READ_ONLY = 0x8, 555 NVME_CRIT_WARN_ST_VOLATILE_MEMORY_BACKUP = 0x10, 556 }; 557 #define NVME_CRIT_WARN_ST_RESERVED_MASK (0xE0) 558 #define NVME_ASYNC_EVENT_NS_ATTRIBUTE (0x100) 559 #define NVME_ASYNC_EVENT_FW_ACTIVATE (0x200) 560 561 /* slot for current FW */ 562 #define NVME_FIRMWARE_PAGE_AFI_SLOT_SHIFT (0) 563 #define NVME_FIRMWARE_PAGE_AFI_SLOT_MASK (0x7) 564 565 /* Commands Supported and Effects */ 566 #define NVME_CE_PAGE_CSUP_SHIFT (0) 567 #define NVME_CE_PAGE_CSUP_MASK (0x1) 568 #define NVME_CE_PAGE_LBCC_SHIFT (1) 569 #define NVME_CE_PAGE_LBCC_MASK (0x1) 570 #define NVME_CE_PAGE_NCC_SHIFT (2) 571 #define NVME_CE_PAGE_NCC_MASK (0x1) 572 #define NVME_CE_PAGE_NIC_SHIFT (3) 573 #define NVME_CE_PAGE_NIC_MASK (0x1) 574 #define NVME_CE_PAGE_CCC_SHIFT (4) 575 #define NVME_CE_PAGE_CCC_MASK (0x1) 576 #define NVME_CE_PAGE_CSE_SHIFT (16) 577 #define NVME_CE_PAGE_CSE_MASK (0x7) 578 #define NVME_CE_PAGE_UUID_SHIFT (19) 579 #define NVME_CE_PAGE_UUID_MASK (0x1) 580 581 /* Sanitize Status */ 582 #define NVME_SS_PAGE_SSTAT_STATUS_SHIFT (0) 583 #define NVME_SS_PAGE_SSTAT_STATUS_MASK (0x7) 584 #define NVME_SS_PAGE_SSTAT_STATUS_NEVER (0) 585 #define NVME_SS_PAGE_SSTAT_STATUS_COMPLETED (1) 586 #define NVME_SS_PAGE_SSTAT_STATUS_INPROG (2) 587 #define NVME_SS_PAGE_SSTAT_STATUS_FAILED (3) 588 #define NVME_SS_PAGE_SSTAT_STATUS_COMPLETEDWD (4) 589 #define NVME_SS_PAGE_SSTAT_PASSES_SHIFT (3) 590 #define NVME_SS_PAGE_SSTAT_PASSES_MASK (0x1f) 591 #define NVME_SS_PAGE_SSTAT_GDE_SHIFT (8) 592 #define NVME_SS_PAGE_SSTAT_GDE_MASK (0x1) 593 594 /* Features */ 595 /* Get Features */ 596 #define NVME_FEAT_GET_SEL_SHIFT (8) 597 #define NVME_FEAT_GET_SEL_MASK (0x7) 598 #define NVME_FEAT_GET_FID_SHIFT (0) 599 #define NVME_FEAT_GET_FID_MASK (0xff) 600 601 /* Set Features */ 602 #define NVME_FEAT_SET_SV_SHIFT (31) 603 #define NVME_FEAT_SET_SV_MASK (0x1) 604 #define NVME_FEAT_SET_FID_SHIFT (0) 605 #define NVME_FEAT_SET_FID_MASK (0xff) 606 607 /* Helper macro to combine *_MASK and *_SHIFT defines */ 608 #define NVMEM(name) (name##_MASK << name##_SHIFT) 609 610 /* Helper macro to extract value from x */ 611 #define NVMEV(name, x) (((x) >> name##_SHIFT) & name##_MASK) 612 613 /* Helper macro to construct a field value */ 614 #define NVMEF(name, x) (((x) & name##_MASK) << name##_SHIFT) 615 616 /* CC register SHN field values */ 617 enum shn_value { 618 NVME_SHN_NORMAL = 0x1, 619 NVME_SHN_ABRUPT = 0x2, 620 }; 621 622 /* CSTS register SHST field values */ 623 enum shst_value { 624 NVME_SHST_NORMAL = 0x0, 625 NVME_SHST_OCCURRING = 0x1, 626 NVME_SHST_COMPLETE = 0x2, 627 }; 628 629 struct nvme_registers { 630 uint32_t cap_lo; /* controller capabilities */ 631 uint32_t cap_hi; 632 uint32_t vs; /* version */ 633 uint32_t intms; /* interrupt mask set */ 634 uint32_t intmc; /* interrupt mask clear */ 635 uint32_t cc; /* controller configuration */ 636 uint32_t reserved1; 637 uint32_t csts; /* controller status */ 638 uint32_t nssr; /* NVM Subsystem Reset */ 639 uint32_t aqa; /* admin queue attributes */ 640 uint64_t asq; /* admin submission queue base addr */ 641 uint64_t acq; /* admin completion queue base addr */ 642 uint32_t cmbloc; /* Controller Memory Buffer Location */ 643 uint32_t cmbsz; /* Controller Memory Buffer Size */ 644 uint32_t bpinfo; /* Boot Partition Information */ 645 uint32_t bprsel; /* Boot Partition Read Select */ 646 uint64_t bpmbl; /* Boot Partition Memory Buffer Location */ 647 uint64_t cmbmsc; /* Controller Memory Buffer Memory Space Control */ 648 uint32_t cmbsts; /* Controller Memory Buffer Status */ 649 uint32_t cmbebs; /* Controller Memory Buffer Elasticity Buffer Size */ 650 uint32_t cmbswtp;/* Controller Memory Buffer Sustained Write Throughput */ 651 uint32_t nssd; /* NVM Subsystem Shutdown */ 652 uint32_t crto; /* Controller Ready Timeouts */ 653 uint8_t reserved3[3476]; /* 6Ch - DFFh */ 654 uint32_t pmrcap; /* Persistent Memory Capabilities */ 655 uint32_t pmrctl; /* Persistent Memory Region Control */ 656 uint32_t pmrsts; /* Persistent Memory Region Status */ 657 uint32_t pmrebs; /* Persistent Memory Region Elasticity Buffer Size */ 658 uint32_t pmrswtp; /* Persistent Memory Region Sustained Write Throughput */ 659 uint32_t pmrmsc_lo; /* Persistent Memory Region Controller Memory Space Control */ 660 uint32_t pmrmsc_hi; 661 uint8_t reserved4[484]; /* E1Ch - FFFh */ 662 struct { 663 uint32_t sq_tdbl; /* submission queue tail doorbell */ 664 uint32_t cq_hdbl; /* completion queue head doorbell */ 665 } doorbell[1]; 666 }; 667 668 _Static_assert(sizeof(struct nvme_registers) == 0x1008, "bad size for nvme_registers"); 669 670 struct nvme_command { 671 /* dword 0 */ 672 uint8_t opc; /* opcode */ 673 uint8_t fuse; /* fused operation */ 674 uint16_t cid; /* command identifier */ 675 676 /* dword 1 */ 677 uint32_t nsid; /* namespace identifier */ 678 679 /* dword 2-3 */ 680 uint32_t rsvd2; 681 uint32_t rsvd3; 682 683 /* dword 4-5 */ 684 uint64_t mptr; /* metadata pointer */ 685 686 /* dword 6-7 */ 687 uint64_t prp1; /* prp entry 1 */ 688 689 /* dword 8-9 */ 690 uint64_t prp2; /* prp entry 2 */ 691 692 /* dword 10-15 */ 693 uint32_t cdw10; /* command-specific */ 694 uint32_t cdw11; /* command-specific */ 695 uint32_t cdw12; /* command-specific */ 696 uint32_t cdw13; /* command-specific */ 697 uint32_t cdw14; /* command-specific */ 698 uint32_t cdw15; /* command-specific */ 699 }; 700 701 _Static_assert(sizeof(struct nvme_command) == 16 * 4, "bad size for nvme_command"); 702 703 struct nvme_completion { 704 /* dword 0 */ 705 uint32_t cdw0; /* command-specific */ 706 707 /* dword 1 */ 708 uint32_t rsvd1; 709 710 /* dword 2 */ 711 uint16_t sqhd; /* submission queue head pointer */ 712 uint16_t sqid; /* submission queue identifier */ 713 714 /* dword 3 */ 715 uint16_t cid; /* command identifier */ 716 uint16_t status; 717 } __aligned(8); /* riscv: nvme_qpair_process_completions has better code gen */ 718 719 _Static_assert(sizeof(struct nvme_completion) == 4 * 4, "bad size for nvme_completion"); 720 721 struct nvme_dsm_range { 722 uint32_t attributes; 723 uint32_t length; 724 uint64_t starting_lba; 725 }; 726 727 /* Largest DSM Trim that can be done */ 728 #define NVME_MAX_DSM_TRIM 4096 729 730 _Static_assert(sizeof(struct nvme_dsm_range) == 16, "bad size for nvme_dsm_ranage"); 731 732 /* status code types */ 733 enum nvme_status_code_type { 734 NVME_SCT_GENERIC = 0x0, 735 NVME_SCT_COMMAND_SPECIFIC = 0x1, 736 NVME_SCT_MEDIA_ERROR = 0x2, 737 NVME_SCT_PATH_RELATED = 0x3, 738 /* 0x3-0x6 - reserved */ 739 NVME_SCT_VENDOR_SPECIFIC = 0x7, 740 }; 741 742 /* generic command status codes */ 743 enum nvme_generic_command_status_code { 744 NVME_SC_SUCCESS = 0x00, 745 NVME_SC_INVALID_OPCODE = 0x01, 746 NVME_SC_INVALID_FIELD = 0x02, 747 NVME_SC_COMMAND_ID_CONFLICT = 0x03, 748 NVME_SC_DATA_TRANSFER_ERROR = 0x04, 749 NVME_SC_ABORTED_POWER_LOSS = 0x05, 750 NVME_SC_INTERNAL_DEVICE_ERROR = 0x06, 751 NVME_SC_ABORTED_BY_REQUEST = 0x07, 752 NVME_SC_ABORTED_SQ_DELETION = 0x08, 753 NVME_SC_ABORTED_FAILED_FUSED = 0x09, 754 NVME_SC_ABORTED_MISSING_FUSED = 0x0a, 755 NVME_SC_INVALID_NAMESPACE_OR_FORMAT = 0x0b, 756 NVME_SC_COMMAND_SEQUENCE_ERROR = 0x0c, 757 NVME_SC_INVALID_SGL_SEGMENT_DESCR = 0x0d, 758 NVME_SC_INVALID_NUMBER_OF_SGL_DESCR = 0x0e, 759 NVME_SC_DATA_SGL_LENGTH_INVALID = 0x0f, 760 NVME_SC_METADATA_SGL_LENGTH_INVALID = 0x10, 761 NVME_SC_SGL_DESCRIPTOR_TYPE_INVALID = 0x11, 762 NVME_SC_INVALID_USE_OF_CMB = 0x12, 763 NVME_SC_PRP_OFFET_INVALID = 0x13, 764 NVME_SC_ATOMIC_WRITE_UNIT_EXCEEDED = 0x14, 765 NVME_SC_OPERATION_DENIED = 0x15, 766 NVME_SC_SGL_OFFSET_INVALID = 0x16, 767 /* 0x17 - reserved */ 768 NVME_SC_HOST_ID_INCONSISTENT_FORMAT = 0x18, 769 NVME_SC_KEEP_ALIVE_TIMEOUT_EXPIRED = 0x19, 770 NVME_SC_KEEP_ALIVE_TIMEOUT_INVALID = 0x1a, 771 NVME_SC_ABORTED_DUE_TO_PREEMPT = 0x1b, 772 NVME_SC_SANITIZE_FAILED = 0x1c, 773 NVME_SC_SANITIZE_IN_PROGRESS = 0x1d, 774 NVME_SC_SGL_DATA_BLOCK_GRAN_INVALID = 0x1e, 775 NVME_SC_NOT_SUPPORTED_IN_CMB = 0x1f, 776 NVME_SC_NAMESPACE_IS_WRITE_PROTECTED = 0x20, 777 NVME_SC_COMMAND_INTERRUPTED = 0x21, 778 NVME_SC_TRANSIENT_TRANSPORT_ERROR = 0x22, 779 780 NVME_SC_LBA_OUT_OF_RANGE = 0x80, 781 NVME_SC_CAPACITY_EXCEEDED = 0x81, 782 NVME_SC_NAMESPACE_NOT_READY = 0x82, 783 NVME_SC_RESERVATION_CONFLICT = 0x83, 784 NVME_SC_FORMAT_IN_PROGRESS = 0x84, 785 }; 786 787 /* command specific status codes */ 788 enum nvme_command_specific_status_code { 789 NVME_SC_COMPLETION_QUEUE_INVALID = 0x00, 790 NVME_SC_INVALID_QUEUE_IDENTIFIER = 0x01, 791 NVME_SC_MAXIMUM_QUEUE_SIZE_EXCEEDED = 0x02, 792 NVME_SC_ABORT_COMMAND_LIMIT_EXCEEDED = 0x03, 793 /* 0x04 - reserved */ 794 NVME_SC_ASYNC_EVENT_REQUEST_LIMIT_EXCEEDED = 0x05, 795 NVME_SC_INVALID_FIRMWARE_SLOT = 0x06, 796 NVME_SC_INVALID_FIRMWARE_IMAGE = 0x07, 797 NVME_SC_INVALID_INTERRUPT_VECTOR = 0x08, 798 NVME_SC_INVALID_LOG_PAGE = 0x09, 799 NVME_SC_INVALID_FORMAT = 0x0a, 800 NVME_SC_FIRMWARE_REQUIRES_RESET = 0x0b, 801 NVME_SC_INVALID_QUEUE_DELETION = 0x0c, 802 NVME_SC_FEATURE_NOT_SAVEABLE = 0x0d, 803 NVME_SC_FEATURE_NOT_CHANGEABLE = 0x0e, 804 NVME_SC_FEATURE_NOT_NS_SPECIFIC = 0x0f, 805 NVME_SC_FW_ACT_REQUIRES_NVMS_RESET = 0x10, 806 NVME_SC_FW_ACT_REQUIRES_RESET = 0x11, 807 NVME_SC_FW_ACT_REQUIRES_TIME = 0x12, 808 NVME_SC_FW_ACT_PROHIBITED = 0x13, 809 NVME_SC_OVERLAPPING_RANGE = 0x14, 810 NVME_SC_NS_INSUFFICIENT_CAPACITY = 0x15, 811 NVME_SC_NS_ID_UNAVAILABLE = 0x16, 812 /* 0x17 - reserved */ 813 NVME_SC_NS_ALREADY_ATTACHED = 0x18, 814 NVME_SC_NS_IS_PRIVATE = 0x19, 815 NVME_SC_NS_NOT_ATTACHED = 0x1a, 816 NVME_SC_THIN_PROV_NOT_SUPPORTED = 0x1b, 817 NVME_SC_CTRLR_LIST_INVALID = 0x1c, 818 NVME_SC_SELF_TEST_IN_PROGRESS = 0x1d, 819 NVME_SC_BOOT_PART_WRITE_PROHIB = 0x1e, 820 NVME_SC_INVALID_CTRLR_ID = 0x1f, 821 NVME_SC_INVALID_SEC_CTRLR_STATE = 0x20, 822 NVME_SC_INVALID_NUM_OF_CTRLR_RESRC = 0x21, 823 NVME_SC_INVALID_RESOURCE_ID = 0x22, 824 NVME_SC_SANITIZE_PROHIBITED_WPMRE = 0x23, 825 NVME_SC_ANA_GROUP_ID_INVALID = 0x24, 826 NVME_SC_ANA_ATTACH_FAILED = 0x25, 827 828 NVME_SC_CONFLICTING_ATTRIBUTES = 0x80, 829 NVME_SC_INVALID_PROTECTION_INFO = 0x81, 830 NVME_SC_ATTEMPTED_WRITE_TO_RO_PAGE = 0x82, 831 }; 832 833 /* media error status codes */ 834 enum nvme_media_error_status_code { 835 NVME_SC_WRITE_FAULTS = 0x80, 836 NVME_SC_UNRECOVERED_READ_ERROR = 0x81, 837 NVME_SC_GUARD_CHECK_ERROR = 0x82, 838 NVME_SC_APPLICATION_TAG_CHECK_ERROR = 0x83, 839 NVME_SC_REFERENCE_TAG_CHECK_ERROR = 0x84, 840 NVME_SC_COMPARE_FAILURE = 0x85, 841 NVME_SC_ACCESS_DENIED = 0x86, 842 NVME_SC_DEALLOCATED_OR_UNWRITTEN = 0x87, 843 }; 844 845 /* path related status codes */ 846 enum nvme_path_related_status_code { 847 NVME_SC_INTERNAL_PATH_ERROR = 0x00, 848 NVME_SC_ASYMMETRIC_ACCESS_PERSISTENT_LOSS = 0x01, 849 NVME_SC_ASYMMETRIC_ACCESS_INACCESSIBLE = 0x02, 850 NVME_SC_ASYMMETRIC_ACCESS_TRANSITION = 0x03, 851 NVME_SC_CONTROLLER_PATHING_ERROR = 0x60, 852 NVME_SC_HOST_PATHING_ERROR = 0x70, 853 NVME_SC_COMMAND_ABORTED_BY_HOST = 0x71, 854 }; 855 856 /* admin opcodes */ 857 enum nvme_admin_opcode { 858 NVME_OPC_DELETE_IO_SQ = 0x00, 859 NVME_OPC_CREATE_IO_SQ = 0x01, 860 NVME_OPC_GET_LOG_PAGE = 0x02, 861 /* 0x03 - reserved */ 862 NVME_OPC_DELETE_IO_CQ = 0x04, 863 NVME_OPC_CREATE_IO_CQ = 0x05, 864 NVME_OPC_IDENTIFY = 0x06, 865 /* 0x07 - reserved */ 866 NVME_OPC_ABORT = 0x08, 867 NVME_OPC_SET_FEATURES = 0x09, 868 NVME_OPC_GET_FEATURES = 0x0a, 869 /* 0x0b - reserved */ 870 NVME_OPC_ASYNC_EVENT_REQUEST = 0x0c, 871 NVME_OPC_NAMESPACE_MANAGEMENT = 0x0d, 872 /* 0x0e-0x0f - reserved */ 873 NVME_OPC_FIRMWARE_ACTIVATE = 0x10, 874 NVME_OPC_FIRMWARE_IMAGE_DOWNLOAD = 0x11, 875 /* 0x12-0x13 - reserved */ 876 NVME_OPC_DEVICE_SELF_TEST = 0x14, 877 NVME_OPC_NAMESPACE_ATTACHMENT = 0x15, 878 /* 0x16-0x17 - reserved */ 879 NVME_OPC_KEEP_ALIVE = 0x18, 880 NVME_OPC_DIRECTIVE_SEND = 0x19, 881 NVME_OPC_DIRECTIVE_RECEIVE = 0x1a, 882 /* 0x1b - reserved */ 883 NVME_OPC_VIRTUALIZATION_MANAGEMENT = 0x1c, 884 NVME_OPC_NVME_MI_SEND = 0x1d, 885 NVME_OPC_NVME_MI_RECEIVE = 0x1e, 886 /* 0x1f - reserved */ 887 NVME_OPC_CAPACITY_MANAGEMENT = 0x20, 888 /* 0x21-0x23 - reserved */ 889 NVME_OPC_LOCKDOWN = 0x24, 890 /* 0x25-0x7b - reserved */ 891 NVME_OPC_DOORBELL_BUFFER_CONFIG = 0x7c, 892 /* 0x7d-0x7e - reserved */ 893 NVME_OPC_FABRICS_COMMANDS = 0x7f, 894 895 NVME_OPC_FORMAT_NVM = 0x80, 896 NVME_OPC_SECURITY_SEND = 0x81, 897 NVME_OPC_SECURITY_RECEIVE = 0x82, 898 /* 0x83 - reserved */ 899 NVME_OPC_SANITIZE = 0x84, 900 /* 0x85 - reserved */ 901 NVME_OPC_GET_LBA_STATUS = 0x86, 902 }; 903 904 /* nvme nvm opcodes */ 905 enum nvme_nvm_opcode { 906 NVME_OPC_FLUSH = 0x00, 907 NVME_OPC_WRITE = 0x01, 908 NVME_OPC_READ = 0x02, 909 /* 0x03 - reserved */ 910 NVME_OPC_WRITE_UNCORRECTABLE = 0x04, 911 NVME_OPC_COMPARE = 0x05, 912 /* 0x06-0x07 - reserved */ 913 NVME_OPC_WRITE_ZEROES = 0x08, 914 NVME_OPC_DATASET_MANAGEMENT = 0x09, 915 /* 0x0a-0x0b - reserved */ 916 NVME_OPC_VERIFY = 0x0c, 917 NVME_OPC_RESERVATION_REGISTER = 0x0d, 918 NVME_OPC_RESERVATION_REPORT = 0x0e, 919 /* 0x0f-0x10 - reserved */ 920 NVME_OPC_RESERVATION_ACQUIRE = 0x11, 921 /* 0x12-0x14 - reserved */ 922 NVME_OPC_RESERVATION_RELEASE = 0x15, 923 /* 0x16-0x18 - reserved */ 924 NVME_OPC_COPY = 0x19, 925 }; 926 927 enum nvme_feature { 928 /* 0x00 - reserved */ 929 NVME_FEAT_ARBITRATION = 0x01, 930 NVME_FEAT_POWER_MANAGEMENT = 0x02, 931 NVME_FEAT_LBA_RANGE_TYPE = 0x03, 932 NVME_FEAT_TEMPERATURE_THRESHOLD = 0x04, 933 NVME_FEAT_ERROR_RECOVERY = 0x05, 934 NVME_FEAT_VOLATILE_WRITE_CACHE = 0x06, 935 NVME_FEAT_NUMBER_OF_QUEUES = 0x07, 936 NVME_FEAT_INTERRUPT_COALESCING = 0x08, 937 NVME_FEAT_INTERRUPT_VECTOR_CONFIGURATION = 0x09, 938 NVME_FEAT_WRITE_ATOMICITY = 0x0A, 939 NVME_FEAT_ASYNC_EVENT_CONFIGURATION = 0x0B, 940 NVME_FEAT_AUTONOMOUS_POWER_STATE_TRANSITION = 0x0C, 941 NVME_FEAT_HOST_MEMORY_BUFFER = 0x0D, 942 NVME_FEAT_TIMESTAMP = 0x0E, 943 NVME_FEAT_KEEP_ALIVE_TIMER = 0x0F, 944 NVME_FEAT_HOST_CONTROLLED_THERMAL_MGMT = 0x10, 945 NVME_FEAT_NON_OP_POWER_STATE_CONFIG = 0x11, 946 NVME_FEAT_READ_RECOVERY_LEVEL_CONFIG = 0x12, 947 NVME_FEAT_PREDICTABLE_LATENCY_MODE_CONFIG = 0x13, 948 NVME_FEAT_PREDICTABLE_LATENCY_MODE_WINDOW = 0x14, 949 NVME_FEAT_LBA_STATUS_INFORMATION_ATTRIBUTES = 0x15, 950 NVME_FEAT_HOST_BEHAVIOR_SUPPORT = 0x16, 951 NVME_FEAT_SANITIZE_CONFIG = 0x17, 952 NVME_FEAT_ENDURANCE_GROUP_EVENT_CONFIGURATION = 0x18, 953 /* 0x19-0x77 - reserved */ 954 /* 0x78-0x7f - NVMe Management Interface */ 955 NVME_FEAT_SOFTWARE_PROGRESS_MARKER = 0x80, 956 NVME_FEAT_HOST_IDENTIFIER = 0x81, 957 NVME_FEAT_RESERVATION_NOTIFICATION_MASK = 0x82, 958 NVME_FEAT_RESERVATION_PERSISTENCE = 0x83, 959 NVME_FEAT_NAMESPACE_WRITE_PROTECTION_CONFIG = 0x84, 960 /* 0x85-0xBF - command set specific (reserved) */ 961 /* 0xC0-0xFF - vendor specific */ 962 }; 963 964 enum nvme_dsm_attribute { 965 NVME_DSM_ATTR_INTEGRAL_READ = 0x1, 966 NVME_DSM_ATTR_INTEGRAL_WRITE = 0x2, 967 NVME_DSM_ATTR_DEALLOCATE = 0x4, 968 }; 969 970 enum nvme_activate_action { 971 NVME_AA_REPLACE_NO_ACTIVATE = 0x0, 972 NVME_AA_REPLACE_ACTIVATE = 0x1, 973 NVME_AA_ACTIVATE = 0x2, 974 }; 975 976 struct nvme_power_state { 977 /** Maximum Power */ 978 uint16_t mp; /* Maximum Power */ 979 uint8_t ps_rsvd1; 980 uint8_t mps_nops; /* Max Power Scale, Non-Operational State */ 981 982 uint32_t enlat; /* Entry Latency */ 983 uint32_t exlat; /* Exit Latency */ 984 985 uint8_t rrt; /* Relative Read Throughput */ 986 uint8_t rrl; /* Relative Read Latency */ 987 uint8_t rwt; /* Relative Write Throughput */ 988 uint8_t rwl; /* Relative Write Latency */ 989 990 uint16_t idlp; /* Idle Power */ 991 uint8_t ips; /* Idle Power Scale */ 992 uint8_t ps_rsvd8; 993 994 uint16_t actp; /* Active Power */ 995 uint8_t apw_aps; /* Active Power Workload, Active Power Scale */ 996 uint8_t ps_rsvd10[9]; 997 } __packed; 998 999 _Static_assert(sizeof(struct nvme_power_state) == 32, "bad size for nvme_power_state"); 1000 1001 #define NVME_SERIAL_NUMBER_LENGTH 20 1002 #define NVME_MODEL_NUMBER_LENGTH 40 1003 #define NVME_FIRMWARE_REVISION_LENGTH 8 1004 1005 struct nvme_controller_data { 1006 /* bytes 0-255: controller capabilities and features */ 1007 1008 /** pci vendor id */ 1009 uint16_t vid; 1010 1011 /** pci subsystem vendor id */ 1012 uint16_t ssvid; 1013 1014 /** serial number */ 1015 uint8_t sn[NVME_SERIAL_NUMBER_LENGTH]; 1016 1017 /** model number */ 1018 uint8_t mn[NVME_MODEL_NUMBER_LENGTH]; 1019 1020 /** firmware revision */ 1021 uint8_t fr[NVME_FIRMWARE_REVISION_LENGTH]; 1022 1023 /** recommended arbitration burst */ 1024 uint8_t rab; 1025 1026 /** ieee oui identifier */ 1027 uint8_t ieee[3]; 1028 1029 /** multi-interface capabilities */ 1030 uint8_t mic; 1031 1032 /** maximum data transfer size */ 1033 uint8_t mdts; 1034 1035 /** Controller ID */ 1036 uint16_t ctrlr_id; 1037 1038 /** Version */ 1039 uint32_t ver; 1040 1041 /** RTD3 Resume Latency */ 1042 uint32_t rtd3r; 1043 1044 /** RTD3 Enter Latency */ 1045 uint32_t rtd3e; 1046 1047 /** Optional Asynchronous Events Supported */ 1048 uint32_t oaes; /* bitfield really */ 1049 1050 /** Controller Attributes */ 1051 uint32_t ctratt; /* bitfield really */ 1052 1053 /** Read Recovery Levels Supported */ 1054 uint16_t rrls; 1055 1056 uint8_t reserved1[9]; 1057 1058 /** Controller Type */ 1059 uint8_t cntrltype; 1060 1061 /** FRU Globally Unique Identifier */ 1062 uint8_t fguid[16]; 1063 1064 /** Command Retry Delay Time 1 */ 1065 uint16_t crdt1; 1066 1067 /** Command Retry Delay Time 2 */ 1068 uint16_t crdt2; 1069 1070 /** Command Retry Delay Time 3 */ 1071 uint16_t crdt3; 1072 1073 uint8_t reserved2[122]; 1074 1075 /* bytes 256-511: admin command set attributes */ 1076 1077 /** optional admin command support */ 1078 uint16_t oacs; 1079 1080 /** abort command limit */ 1081 uint8_t acl; 1082 1083 /** asynchronous event request limit */ 1084 uint8_t aerl; 1085 1086 /** firmware updates */ 1087 uint8_t frmw; 1088 1089 /** log page attributes */ 1090 uint8_t lpa; 1091 1092 /** error log page entries */ 1093 uint8_t elpe; 1094 1095 /** number of power states supported */ 1096 uint8_t npss; 1097 1098 /** admin vendor specific command configuration */ 1099 uint8_t avscc; 1100 1101 /** Autonomous Power State Transition Attributes */ 1102 uint8_t apsta; 1103 1104 /** Warning Composite Temperature Threshold */ 1105 uint16_t wctemp; 1106 1107 /** Critical Composite Temperature Threshold */ 1108 uint16_t cctemp; 1109 1110 /** Maximum Time for Firmware Activation */ 1111 uint16_t mtfa; 1112 1113 /** Host Memory Buffer Preferred Size */ 1114 uint32_t hmpre; 1115 1116 /** Host Memory Buffer Minimum Size */ 1117 uint32_t hmmin; 1118 1119 /** Name space capabilities */ 1120 struct { 1121 /* if nsmgmt, report tnvmcap and unvmcap */ 1122 uint8_t tnvmcap[16]; 1123 uint8_t unvmcap[16]; 1124 } __packed untncap; 1125 1126 /** Replay Protected Memory Block Support */ 1127 uint32_t rpmbs; /* Really a bitfield */ 1128 1129 /** Extended Device Self-test Time */ 1130 uint16_t edstt; 1131 1132 /** Device Self-test Options */ 1133 uint8_t dsto; /* Really a bitfield */ 1134 1135 /** Firmware Update Granularity */ 1136 uint8_t fwug; 1137 1138 /** Keep Alive Support */ 1139 uint16_t kas; 1140 1141 /** Host Controlled Thermal Management Attributes */ 1142 uint16_t hctma; /* Really a bitfield */ 1143 1144 /** Minimum Thermal Management Temperature */ 1145 uint16_t mntmt; 1146 1147 /** Maximum Thermal Management Temperature */ 1148 uint16_t mxtmt; 1149 1150 /** Sanitize Capabilities */ 1151 uint32_t sanicap; /* Really a bitfield */ 1152 1153 /** Host Memory Buffer Minimum Descriptor Entry Size */ 1154 uint32_t hmminds; 1155 1156 /** Host Memory Maximum Descriptors Entries */ 1157 uint16_t hmmaxd; 1158 1159 /** NVM Set Identifier Maximum */ 1160 uint16_t nsetidmax; 1161 1162 /** Endurance Group Identifier Maximum */ 1163 uint16_t endgidmax; 1164 1165 /** ANA Transition Time */ 1166 uint8_t anatt; 1167 1168 /** Asymmetric Namespace Access Capabilities */ 1169 uint8_t anacap; 1170 1171 /** ANA Group Identifier Maximum */ 1172 uint32_t anagrpmax; 1173 1174 /** Number of ANA Group Identifiers */ 1175 uint32_t nanagrpid; 1176 1177 /** Persistent Event Log Size */ 1178 uint32_t pels; 1179 1180 uint8_t reserved3[156]; 1181 /* bytes 512-703: nvm command set attributes */ 1182 1183 /** submission queue entry size */ 1184 uint8_t sqes; 1185 1186 /** completion queue entry size */ 1187 uint8_t cqes; 1188 1189 /** Maximum Outstanding Commands */ 1190 uint16_t maxcmd; 1191 1192 /** number of namespaces */ 1193 uint32_t nn; 1194 1195 /** optional nvm command support */ 1196 uint16_t oncs; 1197 1198 /** fused operation support */ 1199 uint16_t fuses; 1200 1201 /** format nvm attributes */ 1202 uint8_t fna; 1203 1204 /** volatile write cache */ 1205 uint8_t vwc; 1206 1207 /** Atomic Write Unit Normal */ 1208 uint16_t awun; 1209 1210 /** Atomic Write Unit Power Fail */ 1211 uint16_t awupf; 1212 1213 /** NVM Vendor Specific Command Configuration */ 1214 uint8_t nvscc; 1215 1216 /** Namespace Write Protection Capabilities */ 1217 uint8_t nwpc; 1218 1219 /** Atomic Compare & Write Unit */ 1220 uint16_t acwu; 1221 uint16_t reserved6; 1222 1223 /** SGL Support */ 1224 uint32_t sgls; 1225 1226 /** Maximum Number of Allowed Namespaces */ 1227 uint32_t mnan; 1228 1229 /* bytes 540-767: Reserved */ 1230 uint8_t reserved7[224]; 1231 1232 /** NVM Subsystem NVMe Qualified Name */ 1233 uint8_t subnqn[256]; 1234 1235 /* bytes 1024-1791: Reserved */ 1236 uint8_t reserved8[768]; 1237 1238 /* bytes 1792-2047: NVMe over Fabrics specification */ 1239 uint8_t reserved9[256]; 1240 1241 /* bytes 2048-3071: power state descriptors */ 1242 struct nvme_power_state power_state[32]; 1243 1244 /* bytes 3072-4095: vendor specific */ 1245 uint8_t vs[1024]; 1246 } __packed __aligned(4); 1247 1248 _Static_assert(sizeof(struct nvme_controller_data) == 4096, "bad size for nvme_controller_data"); 1249 1250 struct nvme_namespace_data { 1251 /** namespace size */ 1252 uint64_t nsze; 1253 1254 /** namespace capacity */ 1255 uint64_t ncap; 1256 1257 /** namespace utilization */ 1258 uint64_t nuse; 1259 1260 /** namespace features */ 1261 uint8_t nsfeat; 1262 1263 /** number of lba formats */ 1264 uint8_t nlbaf; 1265 1266 /** formatted lba size */ 1267 uint8_t flbas; 1268 1269 /** metadata capabilities */ 1270 uint8_t mc; 1271 1272 /** end-to-end data protection capabilities */ 1273 uint8_t dpc; 1274 1275 /** end-to-end data protection type settings */ 1276 uint8_t dps; 1277 1278 /** Namespace Multi-path I/O and Namespace Sharing Capabilities */ 1279 uint8_t nmic; 1280 1281 /** Reservation Capabilities */ 1282 uint8_t rescap; 1283 1284 /** Format Progress Indicator */ 1285 uint8_t fpi; 1286 1287 /** Deallocate Logical Block Features */ 1288 uint8_t dlfeat; 1289 1290 /** Namespace Atomic Write Unit Normal */ 1291 uint16_t nawun; 1292 1293 /** Namespace Atomic Write Unit Power Fail */ 1294 uint16_t nawupf; 1295 1296 /** Namespace Atomic Compare & Write Unit */ 1297 uint16_t nacwu; 1298 1299 /** Namespace Atomic Boundary Size Normal */ 1300 uint16_t nabsn; 1301 1302 /** Namespace Atomic Boundary Offset */ 1303 uint16_t nabo; 1304 1305 /** Namespace Atomic Boundary Size Power Fail */ 1306 uint16_t nabspf; 1307 1308 /** Namespace Optimal IO Boundary */ 1309 uint16_t noiob; 1310 1311 /** NVM Capacity */ 1312 uint8_t nvmcap[16]; 1313 1314 /** Namespace Preferred Write Granularity */ 1315 uint16_t npwg; 1316 1317 /** Namespace Preferred Write Alignment */ 1318 uint16_t npwa; 1319 1320 /** Namespace Preferred Deallocate Granularity */ 1321 uint16_t npdg; 1322 1323 /** Namespace Preferred Deallocate Alignment */ 1324 uint16_t npda; 1325 1326 /** Namespace Optimal Write Size */ 1327 uint16_t nows; 1328 1329 /* bytes 74-91: Reserved */ 1330 uint8_t reserved5[18]; 1331 1332 /** ANA Group Identifier */ 1333 uint32_t anagrpid; 1334 1335 /* bytes 96-98: Reserved */ 1336 uint8_t reserved6[3]; 1337 1338 /** Namespace Attributes */ 1339 uint8_t nsattr; 1340 1341 /** NVM Set Identifier */ 1342 uint16_t nvmsetid; 1343 1344 /** Endurance Group Identifier */ 1345 uint16_t endgid; 1346 1347 /** Namespace Globally Unique Identifier */ 1348 uint8_t nguid[16]; 1349 1350 /** IEEE Extended Unique Identifier */ 1351 uint8_t eui64[8]; 1352 1353 /** lba format support */ 1354 uint32_t lbaf[16]; 1355 1356 uint8_t reserved7[192]; 1357 1358 uint8_t vendor_specific[3712]; 1359 } __packed __aligned(4); 1360 1361 _Static_assert(sizeof(struct nvme_namespace_data) == 4096, "bad size for nvme_namepsace_data"); 1362 1363 enum nvme_log_page { 1364 /* 0x00 - reserved */ 1365 NVME_LOG_ERROR = 0x01, 1366 NVME_LOG_HEALTH_INFORMATION = 0x02, 1367 NVME_LOG_FIRMWARE_SLOT = 0x03, 1368 NVME_LOG_CHANGED_NAMESPACE = 0x04, 1369 NVME_LOG_COMMAND_EFFECT = 0x05, 1370 NVME_LOG_DEVICE_SELF_TEST = 0x06, 1371 NVME_LOG_TELEMETRY_HOST_INITIATED = 0x07, 1372 NVME_LOG_TELEMETRY_CONTROLLER_INITIATED = 0x08, 1373 NVME_LOG_ENDURANCE_GROUP_INFORMATION = 0x09, 1374 NVME_LOG_PREDICTABLE_LATENCY_PER_NVM_SET = 0x0a, 1375 NVME_LOG_PREDICTABLE_LATENCY_EVENT_AGGREGATE = 0x0b, 1376 NVME_LOG_ASYMMETRIC_NAMESPACE_ACCESS = 0x0c, 1377 NVME_LOG_PERSISTENT_EVENT_LOG = 0x0d, 1378 NVME_LOG_LBA_STATUS_INFORMATION = 0x0e, 1379 NVME_LOG_ENDURANCE_GROUP_EVENT_AGGREGATE = 0x0f, 1380 /* 0x06-0x7F - reserved */ 1381 /* 0x80-0xBF - I/O command set specific */ 1382 NVME_LOG_RES_NOTIFICATION = 0x80, 1383 NVME_LOG_SANITIZE_STATUS = 0x81, 1384 /* 0x82-0xBF - reserved */ 1385 /* 0xC0-0xFF - vendor specific */ 1386 1387 /* 1388 * The following are Intel Specific log pages, but they seem 1389 * to be widely implemented. 1390 */ 1391 INTEL_LOG_READ_LAT_LOG = 0xc1, 1392 INTEL_LOG_WRITE_LAT_LOG = 0xc2, 1393 INTEL_LOG_TEMP_STATS = 0xc5, 1394 INTEL_LOG_ADD_SMART = 0xca, 1395 INTEL_LOG_DRIVE_MKT_NAME = 0xdd, 1396 1397 /* 1398 * HGST log page, with lots ofs sub pages. 1399 */ 1400 HGST_INFO_LOG = 0xc1, 1401 }; 1402 1403 struct nvme_error_information_entry { 1404 uint64_t error_count; 1405 uint16_t sqid; 1406 uint16_t cid; 1407 uint16_t status; 1408 uint16_t error_location; 1409 uint64_t lba; 1410 uint32_t nsid; 1411 uint8_t vendor_specific; 1412 uint8_t trtype; 1413 uint16_t reserved30; 1414 uint64_t csi; 1415 uint16_t ttsi; 1416 uint8_t reserved[22]; 1417 } __packed __aligned(4); 1418 1419 _Static_assert(sizeof(struct nvme_error_information_entry) == 64, "bad size for nvme_error_information_entry"); 1420 1421 struct nvme_health_information_page { 1422 uint8_t critical_warning; 1423 uint16_t temperature; 1424 uint8_t available_spare; 1425 uint8_t available_spare_threshold; 1426 uint8_t percentage_used; 1427 1428 uint8_t reserved[26]; 1429 1430 /* 1431 * Note that the following are 128-bit values, but are 1432 * defined as an array of 2 64-bit values. 1433 */ 1434 /* Data Units Read is always in 512-byte units. */ 1435 uint64_t data_units_read[2]; 1436 /* Data Units Written is always in 512-byte units. */ 1437 uint64_t data_units_written[2]; 1438 /* For NVM command set, this includes Compare commands. */ 1439 uint64_t host_read_commands[2]; 1440 uint64_t host_write_commands[2]; 1441 /* Controller Busy Time is reported in minutes. */ 1442 uint64_t controller_busy_time[2]; 1443 uint64_t power_cycles[2]; 1444 uint64_t power_on_hours[2]; 1445 uint64_t unsafe_shutdowns[2]; 1446 uint64_t media_errors[2]; 1447 uint64_t num_error_info_log_entries[2]; 1448 uint32_t warning_temp_time; 1449 uint32_t error_temp_time; 1450 uint16_t temp_sensor[8]; 1451 /* Thermal Management Temperature 1 Transition Count */ 1452 uint32_t tmt1tc; 1453 /* Thermal Management Temperature 2 Transition Count */ 1454 uint32_t tmt2tc; 1455 /* Total Time For Thermal Management Temperature 1 */ 1456 uint32_t ttftmt1; 1457 /* Total Time For Thermal Management Temperature 2 */ 1458 uint32_t ttftmt2; 1459 1460 uint8_t reserved2[280]; 1461 } __packed __aligned(4); 1462 1463 _Static_assert(sizeof(struct nvme_health_information_page) == 512, "bad size for nvme_health_information_page"); 1464 1465 struct nvme_firmware_page { 1466 uint8_t afi; 1467 uint8_t reserved[7]; 1468 uint64_t revision[7]; /* revisions for 7 slots */ 1469 uint8_t reserved2[448]; 1470 } __packed __aligned(4); 1471 1472 _Static_assert(sizeof(struct nvme_firmware_page) == 512, "bad size for nvme_firmware_page"); 1473 1474 struct nvme_ns_list { 1475 uint32_t ns[1024]; 1476 } __packed __aligned(4); 1477 1478 _Static_assert(sizeof(struct nvme_ns_list) == 4096, "bad size for nvme_ns_list"); 1479 1480 struct nvme_command_effects_page { 1481 uint32_t acs[256]; 1482 uint32_t iocs[256]; 1483 uint8_t reserved[2048]; 1484 } __packed __aligned(4); 1485 1486 _Static_assert(sizeof(struct nvme_command_effects_page) == 4096, 1487 "bad size for nvme_command_effects_page"); 1488 1489 struct nvme_device_self_test_page { 1490 uint8_t curr_operation; 1491 uint8_t curr_compl; 1492 uint8_t rsvd2[2]; 1493 struct { 1494 uint8_t status; 1495 uint8_t segment_num; 1496 uint8_t valid_diag_info; 1497 uint8_t rsvd3; 1498 uint64_t poh; 1499 uint32_t nsid; 1500 /* Define as an array to simplify alignment issues */ 1501 uint8_t failing_lba[8]; 1502 uint8_t status_code_type; 1503 uint8_t status_code; 1504 uint8_t vendor_specific[2]; 1505 } __packed result[20]; 1506 } __packed __aligned(4); 1507 1508 _Static_assert(sizeof(struct nvme_device_self_test_page) == 564, 1509 "bad size for nvme_device_self_test_page"); 1510 1511 struct nvme_res_notification_page { 1512 uint64_t log_page_count; 1513 uint8_t log_page_type; 1514 uint8_t available_log_pages; 1515 uint8_t reserved2; 1516 uint32_t nsid; 1517 uint8_t reserved[48]; 1518 } __packed __aligned(4); 1519 1520 _Static_assert(sizeof(struct nvme_res_notification_page) == 64, 1521 "bad size for nvme_res_notification_page"); 1522 1523 struct nvme_sanitize_status_page { 1524 uint16_t sprog; 1525 uint16_t sstat; 1526 uint32_t scdw10; 1527 uint32_t etfo; 1528 uint32_t etfbe; 1529 uint32_t etfce; 1530 uint32_t etfownd; 1531 uint32_t etfbewnd; 1532 uint32_t etfcewnd; 1533 uint8_t reserved[480]; 1534 } __packed __aligned(4); 1535 1536 _Static_assert(sizeof(struct nvme_sanitize_status_page) == 512, 1537 "bad size for nvme_sanitize_status_page"); 1538 1539 struct intel_log_temp_stats { 1540 uint64_t current; 1541 uint64_t overtemp_flag_last; 1542 uint64_t overtemp_flag_life; 1543 uint64_t max_temp; 1544 uint64_t min_temp; 1545 uint64_t _rsvd[5]; 1546 uint64_t max_oper_temp; 1547 uint64_t min_oper_temp; 1548 uint64_t est_offset; 1549 } __packed __aligned(4); 1550 1551 _Static_assert(sizeof(struct intel_log_temp_stats) == 13 * 8, "bad size for intel_log_temp_stats"); 1552 1553 struct nvme_resv_reg_ctrlr { 1554 uint16_t ctrlr_id; /* Controller ID */ 1555 uint8_t rcsts; /* Reservation Status */ 1556 uint8_t reserved3[5]; 1557 uint64_t hostid; /* Host Identifier */ 1558 uint64_t rkey; /* Reservation Key */ 1559 } __packed __aligned(4); 1560 1561 _Static_assert(sizeof(struct nvme_resv_reg_ctrlr) == 24, "bad size for nvme_resv_reg_ctrlr"); 1562 1563 struct nvme_resv_reg_ctrlr_ext { 1564 uint16_t ctrlr_id; /* Controller ID */ 1565 uint8_t rcsts; /* Reservation Status */ 1566 uint8_t reserved3[5]; 1567 uint64_t rkey; /* Reservation Key */ 1568 uint64_t hostid[2]; /* Host Identifier */ 1569 uint8_t reserved32[32]; 1570 } __packed __aligned(4); 1571 1572 _Static_assert(sizeof(struct nvme_resv_reg_ctrlr_ext) == 64, "bad size for nvme_resv_reg_ctrlr_ext"); 1573 1574 struct nvme_resv_status { 1575 uint32_t gen; /* Generation */ 1576 uint8_t rtype; /* Reservation Type */ 1577 uint8_t regctl[2]; /* Number of Registered Controllers */ 1578 uint8_t reserved7[2]; 1579 uint8_t ptpls; /* Persist Through Power Loss State */ 1580 uint8_t reserved10[14]; 1581 struct nvme_resv_reg_ctrlr ctrlr[0]; 1582 } __packed __aligned(4); 1583 1584 _Static_assert(sizeof(struct nvme_resv_status) == 24, "bad size for nvme_resv_status"); 1585 1586 struct nvme_resv_status_ext { 1587 uint32_t gen; /* Generation */ 1588 uint8_t rtype; /* Reservation Type */ 1589 uint8_t regctl[2]; /* Number of Registered Controllers */ 1590 uint8_t reserved7[2]; 1591 uint8_t ptpls; /* Persist Through Power Loss State */ 1592 uint8_t reserved10[14]; 1593 uint8_t reserved24[40]; 1594 struct nvme_resv_reg_ctrlr_ext ctrlr[0]; 1595 } __packed __aligned(4); 1596 1597 _Static_assert(sizeof(struct nvme_resv_status_ext) == 64, "bad size for nvme_resv_status_ext"); 1598 1599 #define NVME_TEST_MAX_THREADS 128 1600 1601 struct nvme_io_test { 1602 enum nvme_nvm_opcode opc; 1603 uint32_t size; 1604 uint32_t time; /* in seconds */ 1605 uint32_t num_threads; 1606 uint32_t flags; 1607 uint64_t io_completed[NVME_TEST_MAX_THREADS]; 1608 }; 1609 1610 enum nvme_io_test_flags { 1611 /* 1612 * Specifies whether dev_refthread/dev_relthread should be 1613 * called during NVME_BIO_TEST. Ignored for other test 1614 * types. 1615 */ 1616 NVME_TEST_FLAG_REFTHREAD = 0x1, 1617 }; 1618 1619 struct nvme_pt_command { 1620 /* 1621 * cmd is used to specify a passthrough command to a controller or 1622 * namespace. 1623 * 1624 * The following fields from cmd may be specified by the caller: 1625 * * opc (opcode) 1626 * * nsid (namespace id) - for admin commands only 1627 * * cdw10-cdw15 1628 * 1629 * Remaining fields must be set to 0 by the caller. 1630 */ 1631 struct nvme_command cmd; 1632 1633 /* 1634 * cpl returns completion status for the passthrough command 1635 * specified by cmd. 1636 * 1637 * The following fields will be filled out by the driver, for 1638 * consumption by the caller: 1639 * * cdw0 1640 * * status (except for phase) 1641 * 1642 * Remaining fields will be set to 0 by the driver. 1643 */ 1644 struct nvme_completion cpl; 1645 1646 /* buf is the data buffer associated with this passthrough command. */ 1647 void * buf; 1648 1649 /* 1650 * len is the length of the data buffer associated with this 1651 * passthrough command. 1652 */ 1653 uint32_t len; 1654 1655 /* 1656 * is_read = 1 if the passthrough command will read data into the 1657 * supplied buffer from the controller. 1658 * 1659 * is_read = 0 if the passthrough command will write data from the 1660 * supplied buffer to the controller. 1661 */ 1662 uint32_t is_read; 1663 1664 /* 1665 * driver_lock is used by the driver only. It must be set to 0 1666 * by the caller. 1667 */ 1668 struct mtx * driver_lock; 1669 }; 1670 1671 struct nvme_get_nsid { 1672 char cdev[SPECNAMELEN + 1]; 1673 uint32_t nsid; 1674 }; 1675 1676 struct nvme_hmb_desc { 1677 uint64_t addr; 1678 uint32_t size; 1679 uint32_t reserved; 1680 }; 1681 1682 #define nvme_completion_is_error(cpl) \ 1683 (NVME_STATUS_GET_SC((cpl)->status) != 0 || NVME_STATUS_GET_SCT((cpl)->status) != 0) 1684 1685 void nvme_strvis(uint8_t *dst, const uint8_t *src, int dstlen, int srclen); 1686 1687 #ifdef _KERNEL 1688 1689 struct bio; 1690 struct thread; 1691 1692 struct nvme_namespace; 1693 struct nvme_controller; 1694 struct nvme_consumer; 1695 1696 typedef void (*nvme_cb_fn_t)(void *, const struct nvme_completion *); 1697 1698 typedef void *(*nvme_cons_ns_fn_t)(struct nvme_namespace *, void *); 1699 typedef void *(*nvme_cons_ctrlr_fn_t)(struct nvme_controller *); 1700 typedef void (*nvme_cons_async_fn_t)(void *, const struct nvme_completion *, 1701 uint32_t, void *, uint32_t); 1702 typedef void (*nvme_cons_fail_fn_t)(void *); 1703 1704 enum nvme_namespace_flags { 1705 NVME_NS_DEALLOCATE_SUPPORTED = 0x1, 1706 NVME_NS_FLUSH_SUPPORTED = 0x2, 1707 }; 1708 1709 int nvme_ctrlr_passthrough_cmd(struct nvme_controller *ctrlr, 1710 struct nvme_pt_command *pt, 1711 uint32_t nsid, int is_user_buffer, 1712 int is_admin_cmd); 1713 1714 /* Admin functions */ 1715 void nvme_ctrlr_cmd_set_feature(struct nvme_controller *ctrlr, 1716 uint8_t feature, uint32_t cdw11, 1717 uint32_t cdw12, uint32_t cdw13, 1718 uint32_t cdw14, uint32_t cdw15, 1719 void *payload, uint32_t payload_size, 1720 nvme_cb_fn_t cb_fn, void *cb_arg); 1721 void nvme_ctrlr_cmd_get_feature(struct nvme_controller *ctrlr, 1722 uint8_t feature, uint32_t cdw11, 1723 void *payload, uint32_t payload_size, 1724 nvme_cb_fn_t cb_fn, void *cb_arg); 1725 void nvme_ctrlr_cmd_get_log_page(struct nvme_controller *ctrlr, 1726 uint8_t log_page, uint32_t nsid, 1727 void *payload, uint32_t payload_size, 1728 nvme_cb_fn_t cb_fn, void *cb_arg); 1729 1730 /* NVM I/O functions */ 1731 int nvme_ns_cmd_write(struct nvme_namespace *ns, void *payload, 1732 uint64_t lba, uint32_t lba_count, nvme_cb_fn_t cb_fn, 1733 void *cb_arg); 1734 int nvme_ns_cmd_write_bio(struct nvme_namespace *ns, struct bio *bp, 1735 nvme_cb_fn_t cb_fn, void *cb_arg); 1736 int nvme_ns_cmd_read(struct nvme_namespace *ns, void *payload, 1737 uint64_t lba, uint32_t lba_count, nvme_cb_fn_t cb_fn, 1738 void *cb_arg); 1739 int nvme_ns_cmd_read_bio(struct nvme_namespace *ns, struct bio *bp, 1740 nvme_cb_fn_t cb_fn, void *cb_arg); 1741 int nvme_ns_cmd_deallocate(struct nvme_namespace *ns, void *payload, 1742 uint8_t num_ranges, nvme_cb_fn_t cb_fn, 1743 void *cb_arg); 1744 int nvme_ns_cmd_flush(struct nvme_namespace *ns, nvme_cb_fn_t cb_fn, 1745 void *cb_arg); 1746 int nvme_ns_dump(struct nvme_namespace *ns, void *virt, off_t offset, 1747 size_t len); 1748 1749 /* Registration functions */ 1750 struct nvme_consumer * nvme_register_consumer(nvme_cons_ns_fn_t ns_fn, 1751 nvme_cons_ctrlr_fn_t ctrlr_fn, 1752 nvme_cons_async_fn_t async_fn, 1753 nvme_cons_fail_fn_t fail_fn); 1754 void nvme_unregister_consumer(struct nvme_consumer *consumer); 1755 1756 /* Controller helper functions */ 1757 device_t nvme_ctrlr_get_device(struct nvme_controller *ctrlr); 1758 const struct nvme_controller_data * 1759 nvme_ctrlr_get_data(struct nvme_controller *ctrlr); 1760 static inline bool 1761 nvme_ctrlr_has_dataset_mgmt(const struct nvme_controller_data *cd) 1762 { 1763 /* Assumes cd was byte swapped by nvme_controller_data_swapbytes() */ 1764 return (NVMEV(NVME_CTRLR_DATA_ONCS_DSM, cd->oncs) != 0); 1765 } 1766 1767 /* Namespace helper functions */ 1768 uint32_t nvme_ns_get_max_io_xfer_size(struct nvme_namespace *ns); 1769 uint32_t nvme_ns_get_sector_size(struct nvme_namespace *ns); 1770 uint64_t nvme_ns_get_num_sectors(struct nvme_namespace *ns); 1771 uint64_t nvme_ns_get_size(struct nvme_namespace *ns); 1772 uint32_t nvme_ns_get_flags(struct nvme_namespace *ns); 1773 const char * nvme_ns_get_serial_number(struct nvme_namespace *ns); 1774 const char * nvme_ns_get_model_number(struct nvme_namespace *ns); 1775 const struct nvme_namespace_data * 1776 nvme_ns_get_data(struct nvme_namespace *ns); 1777 uint32_t nvme_ns_get_stripesize(struct nvme_namespace *ns); 1778 1779 int nvme_ns_bio_process(struct nvme_namespace *ns, struct bio *bp, 1780 nvme_cb_fn_t cb_fn); 1781 int nvme_ns_ioctl_process(struct nvme_namespace *ns, u_long cmd, 1782 caddr_t arg, int flag, struct thread *td); 1783 1784 /* 1785 * Command building helper functions -- shared with CAM 1786 * These functions assume allocator zeros out cmd structure 1787 * CAM's xpt_get_ccb and the request allocator for nvme both 1788 * do zero'd allocations. 1789 */ 1790 static inline 1791 void nvme_ns_flush_cmd(struct nvme_command *cmd, uint32_t nsid) 1792 { 1793 1794 cmd->opc = NVME_OPC_FLUSH; 1795 cmd->nsid = htole32(nsid); 1796 } 1797 1798 static inline 1799 void nvme_ns_rw_cmd(struct nvme_command *cmd, uint32_t rwcmd, uint32_t nsid, 1800 uint64_t lba, uint32_t count) 1801 { 1802 cmd->opc = rwcmd; 1803 cmd->nsid = htole32(nsid); 1804 cmd->cdw10 = htole32(lba & 0xffffffffu); 1805 cmd->cdw11 = htole32(lba >> 32); 1806 cmd->cdw12 = htole32(count-1); 1807 } 1808 1809 static inline 1810 void nvme_ns_write_cmd(struct nvme_command *cmd, uint32_t nsid, 1811 uint64_t lba, uint32_t count) 1812 { 1813 nvme_ns_rw_cmd(cmd, NVME_OPC_WRITE, nsid, lba, count); 1814 } 1815 1816 static inline 1817 void nvme_ns_read_cmd(struct nvme_command *cmd, uint32_t nsid, 1818 uint64_t lba, uint32_t count) 1819 { 1820 nvme_ns_rw_cmd(cmd, NVME_OPC_READ, nsid, lba, count); 1821 } 1822 1823 static inline 1824 void nvme_ns_trim_cmd(struct nvme_command *cmd, uint32_t nsid, 1825 uint32_t num_ranges) 1826 { 1827 cmd->opc = NVME_OPC_DATASET_MANAGEMENT; 1828 cmd->nsid = htole32(nsid); 1829 cmd->cdw10 = htole32(num_ranges - 1); 1830 cmd->cdw11 = htole32(NVME_DSM_ATTR_DEALLOCATE); 1831 } 1832 1833 extern int nvme_use_nvd; 1834 1835 #endif /* _KERNEL */ 1836 1837 /* Endianess conversion functions for NVMe structs */ 1838 static inline 1839 void nvme_completion_swapbytes(struct nvme_completion *s __unused) 1840 { 1841 #if _BYTE_ORDER != _LITTLE_ENDIAN 1842 1843 s->cdw0 = le32toh(s->cdw0); 1844 /* omit rsvd1 */ 1845 s->sqhd = le16toh(s->sqhd); 1846 s->sqid = le16toh(s->sqid); 1847 /* omit cid */ 1848 s->status = le16toh(s->status); 1849 #endif 1850 } 1851 1852 static inline 1853 void nvme_power_state_swapbytes(struct nvme_power_state *s __unused) 1854 { 1855 #if _BYTE_ORDER != _LITTLE_ENDIAN 1856 1857 s->mp = le16toh(s->mp); 1858 s->enlat = le32toh(s->enlat); 1859 s->exlat = le32toh(s->exlat); 1860 s->idlp = le16toh(s->idlp); 1861 s->actp = le16toh(s->actp); 1862 #endif 1863 } 1864 1865 static inline 1866 void nvme_controller_data_swapbytes(struct nvme_controller_data *s __unused) 1867 { 1868 #if _BYTE_ORDER != _LITTLE_ENDIAN 1869 int i; 1870 1871 s->vid = le16toh(s->vid); 1872 s->ssvid = le16toh(s->ssvid); 1873 s->ctrlr_id = le16toh(s->ctrlr_id); 1874 s->ver = le32toh(s->ver); 1875 s->rtd3r = le32toh(s->rtd3r); 1876 s->rtd3e = le32toh(s->rtd3e); 1877 s->oaes = le32toh(s->oaes); 1878 s->ctratt = le32toh(s->ctratt); 1879 s->rrls = le16toh(s->rrls); 1880 s->crdt1 = le16toh(s->crdt1); 1881 s->crdt2 = le16toh(s->crdt2); 1882 s->crdt3 = le16toh(s->crdt3); 1883 s->oacs = le16toh(s->oacs); 1884 s->wctemp = le16toh(s->wctemp); 1885 s->cctemp = le16toh(s->cctemp); 1886 s->mtfa = le16toh(s->mtfa); 1887 s->hmpre = le32toh(s->hmpre); 1888 s->hmmin = le32toh(s->hmmin); 1889 s->rpmbs = le32toh(s->rpmbs); 1890 s->edstt = le16toh(s->edstt); 1891 s->kas = le16toh(s->kas); 1892 s->hctma = le16toh(s->hctma); 1893 s->mntmt = le16toh(s->mntmt); 1894 s->mxtmt = le16toh(s->mxtmt); 1895 s->sanicap = le32toh(s->sanicap); 1896 s->hmminds = le32toh(s->hmminds); 1897 s->hmmaxd = le16toh(s->hmmaxd); 1898 s->nsetidmax = le16toh(s->nsetidmax); 1899 s->endgidmax = le16toh(s->endgidmax); 1900 s->anagrpmax = le32toh(s->anagrpmax); 1901 s->nanagrpid = le32toh(s->nanagrpid); 1902 s->pels = le32toh(s->pels); 1903 s->maxcmd = le16toh(s->maxcmd); 1904 s->nn = le32toh(s->nn); 1905 s->oncs = le16toh(s->oncs); 1906 s->fuses = le16toh(s->fuses); 1907 s->awun = le16toh(s->awun); 1908 s->awupf = le16toh(s->awupf); 1909 s->acwu = le16toh(s->acwu); 1910 s->sgls = le32toh(s->sgls); 1911 s->mnan = le32toh(s->mnan); 1912 for (i = 0; i < 32; i++) 1913 nvme_power_state_swapbytes(&s->power_state[i]); 1914 #endif 1915 } 1916 1917 static inline 1918 void nvme_namespace_data_swapbytes(struct nvme_namespace_data *s __unused) 1919 { 1920 #if _BYTE_ORDER != _LITTLE_ENDIAN 1921 int i; 1922 1923 s->nsze = le64toh(s->nsze); 1924 s->ncap = le64toh(s->ncap); 1925 s->nuse = le64toh(s->nuse); 1926 s->nawun = le16toh(s->nawun); 1927 s->nawupf = le16toh(s->nawupf); 1928 s->nacwu = le16toh(s->nacwu); 1929 s->nabsn = le16toh(s->nabsn); 1930 s->nabo = le16toh(s->nabo); 1931 s->nabspf = le16toh(s->nabspf); 1932 s->noiob = le16toh(s->noiob); 1933 s->npwg = le16toh(s->npwg); 1934 s->npwa = le16toh(s->npwa); 1935 s->npdg = le16toh(s->npdg); 1936 s->npda = le16toh(s->npda); 1937 s->nows = le16toh(s->nows); 1938 s->anagrpid = le32toh(s->anagrpid); 1939 s->nvmsetid = le16toh(s->nvmsetid); 1940 s->endgid = le16toh(s->endgid); 1941 for (i = 0; i < 16; i++) 1942 s->lbaf[i] = le32toh(s->lbaf[i]); 1943 #endif 1944 } 1945 1946 static inline 1947 void nvme_error_information_entry_swapbytes( 1948 struct nvme_error_information_entry *s __unused) 1949 { 1950 #if _BYTE_ORDER != _LITTLE_ENDIAN 1951 1952 s->error_count = le64toh(s->error_count); 1953 s->sqid = le16toh(s->sqid); 1954 s->cid = le16toh(s->cid); 1955 s->status = le16toh(s->status); 1956 s->error_location = le16toh(s->error_location); 1957 s->lba = le64toh(s->lba); 1958 s->nsid = le32toh(s->nsid); 1959 s->csi = le64toh(s->csi); 1960 s->ttsi = le16toh(s->ttsi); 1961 #endif 1962 } 1963 1964 static inline 1965 void nvme_le128toh(void *p __unused) 1966 { 1967 #if _BYTE_ORDER != _LITTLE_ENDIAN 1968 /* Swap 16 bytes in place */ 1969 char *tmp = (char*)p; 1970 char b; 1971 int i; 1972 for (i = 0; i < 8; i++) { 1973 b = tmp[i]; 1974 tmp[i] = tmp[15-i]; 1975 tmp[15-i] = b; 1976 } 1977 #endif 1978 } 1979 1980 static inline 1981 void nvme_health_information_page_swapbytes( 1982 struct nvme_health_information_page *s __unused) 1983 { 1984 #if _BYTE_ORDER != _LITTLE_ENDIAN 1985 int i; 1986 1987 s->temperature = le16toh(s->temperature); 1988 nvme_le128toh((void *)s->data_units_read); 1989 nvme_le128toh((void *)s->data_units_written); 1990 nvme_le128toh((void *)s->host_read_commands); 1991 nvme_le128toh((void *)s->host_write_commands); 1992 nvme_le128toh((void *)s->controller_busy_time); 1993 nvme_le128toh((void *)s->power_cycles); 1994 nvme_le128toh((void *)s->power_on_hours); 1995 nvme_le128toh((void *)s->unsafe_shutdowns); 1996 nvme_le128toh((void *)s->media_errors); 1997 nvme_le128toh((void *)s->num_error_info_log_entries); 1998 s->warning_temp_time = le32toh(s->warning_temp_time); 1999 s->error_temp_time = le32toh(s->error_temp_time); 2000 for (i = 0; i < 8; i++) 2001 s->temp_sensor[i] = le16toh(s->temp_sensor[i]); 2002 s->tmt1tc = le32toh(s->tmt1tc); 2003 s->tmt2tc = le32toh(s->tmt2tc); 2004 s->ttftmt1 = le32toh(s->ttftmt1); 2005 s->ttftmt2 = le32toh(s->ttftmt2); 2006 #endif 2007 } 2008 2009 static inline 2010 void nvme_firmware_page_swapbytes(struct nvme_firmware_page *s __unused) 2011 { 2012 #if _BYTE_ORDER != _LITTLE_ENDIAN 2013 int i; 2014 2015 for (i = 0; i < 7; i++) 2016 s->revision[i] = le64toh(s->revision[i]); 2017 #endif 2018 } 2019 2020 static inline 2021 void nvme_ns_list_swapbytes(struct nvme_ns_list *s __unused) 2022 { 2023 #if _BYTE_ORDER != _LITTLE_ENDIAN 2024 int i; 2025 2026 for (i = 0; i < 1024; i++) 2027 s->ns[i] = le32toh(s->ns[i]); 2028 #endif 2029 } 2030 2031 static inline 2032 void nvme_command_effects_page_swapbytes( 2033 struct nvme_command_effects_page *s __unused) 2034 { 2035 #if _BYTE_ORDER != _LITTLE_ENDIAN 2036 int i; 2037 2038 for (i = 0; i < 256; i++) 2039 s->acs[i] = le32toh(s->acs[i]); 2040 for (i = 0; i < 256; i++) 2041 s->iocs[i] = le32toh(s->iocs[i]); 2042 #endif 2043 } 2044 2045 static inline 2046 void nvme_res_notification_page_swapbytes( 2047 struct nvme_res_notification_page *s __unused) 2048 { 2049 #if _BYTE_ORDER != _LITTLE_ENDIAN 2050 s->log_page_count = le64toh(s->log_page_count); 2051 s->nsid = le32toh(s->nsid); 2052 #endif 2053 } 2054 2055 static inline 2056 void nvme_sanitize_status_page_swapbytes( 2057 struct nvme_sanitize_status_page *s __unused) 2058 { 2059 #if _BYTE_ORDER != _LITTLE_ENDIAN 2060 s->sprog = le16toh(s->sprog); 2061 s->sstat = le16toh(s->sstat); 2062 s->scdw10 = le32toh(s->scdw10); 2063 s->etfo = le32toh(s->etfo); 2064 s->etfbe = le32toh(s->etfbe); 2065 s->etfce = le32toh(s->etfce); 2066 s->etfownd = le32toh(s->etfownd); 2067 s->etfbewnd = le32toh(s->etfbewnd); 2068 s->etfcewnd = le32toh(s->etfcewnd); 2069 #endif 2070 } 2071 2072 static inline 2073 void intel_log_temp_stats_swapbytes(struct intel_log_temp_stats *s __unused) 2074 { 2075 #if _BYTE_ORDER != _LITTLE_ENDIAN 2076 2077 s->current = le64toh(s->current); 2078 s->overtemp_flag_last = le64toh(s->overtemp_flag_last); 2079 s->overtemp_flag_life = le64toh(s->overtemp_flag_life); 2080 s->max_temp = le64toh(s->max_temp); 2081 s->min_temp = le64toh(s->min_temp); 2082 /* omit _rsvd[] */ 2083 s->max_oper_temp = le64toh(s->max_oper_temp); 2084 s->min_oper_temp = le64toh(s->min_oper_temp); 2085 s->est_offset = le64toh(s->est_offset); 2086 #endif 2087 } 2088 2089 static inline 2090 void nvme_resv_status_swapbytes(struct nvme_resv_status *s __unused, 2091 size_t size __unused) 2092 { 2093 #if _BYTE_ORDER != _LITTLE_ENDIAN 2094 size_t i, n; 2095 2096 s->gen = le32toh(s->gen); 2097 n = (s->regctl[1] << 8) | s->regctl[0]; 2098 n = MIN(n, (size - sizeof(s)) / sizeof(s->ctrlr[0])); 2099 for (i = 0; i < n; i++) { 2100 s->ctrlr[i].ctrlr_id = le16toh(s->ctrlr[i].ctrlr_id); 2101 s->ctrlr[i].hostid = le64toh(s->ctrlr[i].hostid); 2102 s->ctrlr[i].rkey = le64toh(s->ctrlr[i].rkey); 2103 } 2104 #endif 2105 } 2106 2107 static inline 2108 void nvme_resv_status_ext_swapbytes(struct nvme_resv_status_ext *s __unused, 2109 size_t size __unused) 2110 { 2111 #if _BYTE_ORDER != _LITTLE_ENDIAN 2112 size_t i, n; 2113 2114 s->gen = le32toh(s->gen); 2115 n = (s->regctl[1] << 8) | s->regctl[0]; 2116 n = MIN(n, (size - sizeof(s)) / sizeof(s->ctrlr[0])); 2117 for (i = 0; i < n; i++) { 2118 s->ctrlr[i].ctrlr_id = le16toh(s->ctrlr[i].ctrlr_id); 2119 s->ctrlr[i].rkey = le64toh(s->ctrlr[i].rkey); 2120 nvme_le128toh((void *)s->ctrlr[i].hostid); 2121 } 2122 #endif 2123 } 2124 2125 static inline void 2126 nvme_device_self_test_swapbytes(struct nvme_device_self_test_page *s __unused) 2127 { 2128 #if _BYTE_ORDER != _LITTLE_ENDIAN 2129 uint8_t *tmp; 2130 uint32_t r, i; 2131 uint8_t b; 2132 2133 for (r = 0; r < 20; r++) { 2134 s->result[r].poh = le64toh(s->result[r].poh); 2135 s->result[r].nsid = le32toh(s->result[r].nsid); 2136 /* Unaligned 64-bit loads fail on some architectures */ 2137 tmp = s->result[r].failing_lba; 2138 for (i = 0; i < 4; i++) { 2139 b = tmp[i]; 2140 tmp[i] = tmp[7-i]; 2141 tmp[7-i] = b; 2142 } 2143 } 2144 #endif 2145 } 2146 #endif /* __NVME_H__ */ 2147