]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/nvme/nvme.h
MFC r350523, r350524: Add IOCTL to translate nvdX into nvmeY and NSID.
[FreeBSD/FreeBSD.git] / sys / dev / nvme / nvme.h
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
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  * $FreeBSD$
29  */
30
31 #ifndef __NVME_H__
32 #define __NVME_H__
33
34 #ifdef _KERNEL
35 #include <sys/types.h>
36 #endif
37
38 #include <sys/param.h>
39 #include <sys/endian.h>
40
41 #define NVME_PASSTHROUGH_CMD            _IOWR('n', 0, struct nvme_pt_command)
42 #define NVME_RESET_CONTROLLER           _IO('n', 1)
43 #define NVME_GET_NSID                   _IOR('n', 2, struct nvme_get_nsid)
44
45 #define NVME_IO_TEST                    _IOWR('n', 100, struct nvme_io_test)
46 #define NVME_BIO_TEST                   _IOWR('n', 101, struct nvme_io_test)
47
48 /*
49  * Macros to deal with NVME revisions, as defined VS register
50  */
51 #define NVME_REV(x, y)                  (((x) << 16) | ((y) << 8))
52 #define NVME_MAJOR(r)                   (((r) >> 16) & 0xffff)
53 #define NVME_MINOR(r)                   (((r) >> 8) & 0xff)
54
55 /*
56  * Use to mark a command to apply to all namespaces, or to retrieve global
57  *  log pages.
58  */
59 #define NVME_GLOBAL_NAMESPACE_TAG       ((uint32_t)0xFFFFFFFF)
60
61 /* Cap nvme to 1MB transfers driver explodes with larger sizes */
62 #define NVME_MAX_XFER_SIZE              (MAXPHYS < (1<<20) ? MAXPHYS : (1<<20))
63
64 /* Register field definitions */
65 #define NVME_CAP_LO_REG_MQES_SHIFT                      (0)
66 #define NVME_CAP_LO_REG_MQES_MASK                       (0xFFFF)
67 #define NVME_CAP_LO_REG_CQR_SHIFT                       (16)
68 #define NVME_CAP_LO_REG_CQR_MASK                        (0x1)
69 #define NVME_CAP_LO_REG_AMS_SHIFT                       (17)
70 #define NVME_CAP_LO_REG_AMS_MASK                        (0x3)
71 #define NVME_CAP_LO_REG_TO_SHIFT                        (24)
72 #define NVME_CAP_LO_REG_TO_MASK                         (0xFF)
73 #define NVME_CAP_LO_MQES(x) \
74         (((x) >> NVME_CAP_LO_REG_MQES_SHIFT) & NVME_CAP_LO_REG_MQES_MASK)
75 #define NVME_CAP_LO_CQR(x) \
76         (((x) >> NVME_CAP_LO_REG_CQR_SHIFT) & NVME_CAP_LO_REG_CQR_MASK)
77 #define NVME_CAP_LO_AMS(x) \
78         (((x) >> NVME_CAP_LO_REG_AMS_SHIFT) & NVME_CAP_LO_REG_AMS_MASK)
79 #define NVME_CAP_LO_TO(x) \
80         (((x) >> NVME_CAP_LO_REG_TO_SHIFT) & NVME_CAP_LO_REG_TO_MASK)
81
82 #define NVME_CAP_HI_REG_DSTRD_SHIFT                     (0)
83 #define NVME_CAP_HI_REG_DSTRD_MASK                      (0xF)
84 #define NVME_CAP_HI_REG_CSS_NVM_SHIFT                   (5)
85 #define NVME_CAP_HI_REG_CSS_NVM_MASK                    (0x1)
86 #define NVME_CAP_HI_REG_MPSMIN_SHIFT                    (16)
87 #define NVME_CAP_HI_REG_MPSMIN_MASK                     (0xF)
88 #define NVME_CAP_HI_REG_MPSMAX_SHIFT                    (20)
89 #define NVME_CAP_HI_REG_MPSMAX_MASK                     (0xF)
90 #define NVME_CAP_HI_DSTRD(x) \
91         (((x) >> NVME_CAP_HI_REG_DSTRD_SHIFT) & NVME_CAP_HI_REG_DSTRD_MASK)
92 #define NVME_CAP_HI_CSS_NVM(x) \
93         (((x) >> NVME_CAP_HI_REG_CSS_NVM_SHIFT) & NVME_CAP_HI_REG_CSS_NVM_MASK)
94 #define NVME_CAP_HI_MPSMIN(x) \
95         (((x) >> NVME_CAP_HI_REG_MPSMIN_SHIFT) & NVME_CAP_HI_REG_MPSMIN_MASK)
96 #define NVME_CAP_HI_MPSMAX(x) \
97         (((x) >> NVME_CAP_HI_REG_MPSMAX_SHIFT) & NVME_CAP_HI_REG_MPSMAX_MASK)
98
99 #define NVME_CC_REG_EN_SHIFT                            (0)
100 #define NVME_CC_REG_EN_MASK                             (0x1)
101 #define NVME_CC_REG_CSS_SHIFT                           (4)
102 #define NVME_CC_REG_CSS_MASK                            (0x7)
103 #define NVME_CC_REG_MPS_SHIFT                           (7)
104 #define NVME_CC_REG_MPS_MASK                            (0xF)
105 #define NVME_CC_REG_AMS_SHIFT                           (11)
106 #define NVME_CC_REG_AMS_MASK                            (0x7)
107 #define NVME_CC_REG_SHN_SHIFT                           (14)
108 #define NVME_CC_REG_SHN_MASK                            (0x3)
109 #define NVME_CC_REG_IOSQES_SHIFT                        (16)
110 #define NVME_CC_REG_IOSQES_MASK                         (0xF)
111 #define NVME_CC_REG_IOCQES_SHIFT                        (20)
112 #define NVME_CC_REG_IOCQES_MASK                         (0xF)
113
114 #define NVME_CSTS_REG_RDY_SHIFT                         (0)
115 #define NVME_CSTS_REG_RDY_MASK                          (0x1)
116 #define NVME_CSTS_REG_CFS_SHIFT                         (1)
117 #define NVME_CSTS_REG_CFS_MASK                          (0x1)
118 #define NVME_CSTS_REG_SHST_SHIFT                        (2)
119 #define NVME_CSTS_REG_SHST_MASK                         (0x3)
120
121 #define NVME_CSTS_GET_SHST(csts)                        (((csts) >> NVME_CSTS_REG_SHST_SHIFT) & NVME_CSTS_REG_SHST_MASK)
122
123 #define NVME_AQA_REG_ASQS_SHIFT                         (0)
124 #define NVME_AQA_REG_ASQS_MASK                          (0xFFF)
125 #define NVME_AQA_REG_ACQS_SHIFT                         (16)
126 #define NVME_AQA_REG_ACQS_MASK                          (0xFFF)
127
128 /* Command field definitions */
129
130 #define NVME_CMD_FUSE_SHIFT                             (8)
131 #define NVME_CMD_FUSE_MASK                              (0x3)
132
133 #define NVME_STATUS_P_SHIFT                             (0)
134 #define NVME_STATUS_P_MASK                              (0x1)
135 #define NVME_STATUS_SC_SHIFT                            (1)
136 #define NVME_STATUS_SC_MASK                             (0xFF)
137 #define NVME_STATUS_SCT_SHIFT                           (9)
138 #define NVME_STATUS_SCT_MASK                            (0x7)
139 #define NVME_STATUS_M_SHIFT                             (14)
140 #define NVME_STATUS_M_MASK                              (0x1)
141 #define NVME_STATUS_DNR_SHIFT                           (15)
142 #define NVME_STATUS_DNR_MASK                            (0x1)
143
144 #define NVME_STATUS_GET_P(st)                           (((st) >> NVME_STATUS_P_SHIFT) & NVME_STATUS_P_MASK)
145 #define NVME_STATUS_GET_SC(st)                          (((st) >> NVME_STATUS_SC_SHIFT) & NVME_STATUS_SC_MASK)
146 #define NVME_STATUS_GET_SCT(st)                         (((st) >> NVME_STATUS_SCT_SHIFT) & NVME_STATUS_SCT_MASK)
147 #define NVME_STATUS_GET_M(st)                           (((st) >> NVME_STATUS_M_SHIFT) & NVME_STATUS_M_MASK)
148 #define NVME_STATUS_GET_DNR(st)                         (((st) >> NVME_STATUS_DNR_SHIFT) & NVME_STATUS_DNR_MASK)
149
150 #define NVME_PWR_ST_MPS_SHIFT                           (0)
151 #define NVME_PWR_ST_MPS_MASK                            (0x1)
152 #define NVME_PWR_ST_NOPS_SHIFT                          (1)
153 #define NVME_PWR_ST_NOPS_MASK                           (0x1)
154 #define NVME_PWR_ST_RRT_SHIFT                           (0)
155 #define NVME_PWR_ST_RRT_MASK                            (0x1F)
156 #define NVME_PWR_ST_RRL_SHIFT                           (0)
157 #define NVME_PWR_ST_RRL_MASK                            (0x1F)
158 #define NVME_PWR_ST_RWT_SHIFT                           (0)
159 #define NVME_PWR_ST_RWT_MASK                            (0x1F)
160 #define NVME_PWR_ST_RWL_SHIFT                           (0)
161 #define NVME_PWR_ST_RWL_MASK                            (0x1F)
162 #define NVME_PWR_ST_IPS_SHIFT                           (6)
163 #define NVME_PWR_ST_IPS_MASK                            (0x3)
164 #define NVME_PWR_ST_APW_SHIFT                           (0)
165 #define NVME_PWR_ST_APW_MASK                            (0x7)
166 #define NVME_PWR_ST_APS_SHIFT                           (6)
167 #define NVME_PWR_ST_APS_MASK                            (0x3)
168
169 /** Controller Multi-path I/O and Namespace Sharing Capabilities */
170 /* More then one port */
171 #define NVME_CTRLR_DATA_MIC_MPORTS_SHIFT                (0)
172 #define NVME_CTRLR_DATA_MIC_MPORTS_MASK                 (0x1)
173 /* More then one controller */
174 #define NVME_CTRLR_DATA_MIC_MCTRLRS_SHIFT               (1)
175 #define NVME_CTRLR_DATA_MIC_MCTRLRS_MASK                (0x1)
176 /* SR-IOV Virtual Function */
177 #define NVME_CTRLR_DATA_MIC_SRIOVVF_SHIFT               (2)
178 #define NVME_CTRLR_DATA_MIC_SRIOVVF_MASK                (0x1)
179 /* Asymmetric Namespace Access Reporting */
180 #define NVME_CTRLR_DATA_MIC_ANAR_SHIFT                  (3)
181 #define NVME_CTRLR_DATA_MIC_ANAR_MASK                   (0x1)
182
183 /** OACS - optional admin command support */
184 /* supports security send/receive commands */
185 #define NVME_CTRLR_DATA_OACS_SECURITY_SHIFT             (0)
186 #define NVME_CTRLR_DATA_OACS_SECURITY_MASK              (0x1)
187 /* supports format nvm command */
188 #define NVME_CTRLR_DATA_OACS_FORMAT_SHIFT               (1)
189 #define NVME_CTRLR_DATA_OACS_FORMAT_MASK                (0x1)
190 /* supports firmware activate/download commands */
191 #define NVME_CTRLR_DATA_OACS_FIRMWARE_SHIFT             (2)
192 #define NVME_CTRLR_DATA_OACS_FIRMWARE_MASK              (0x1)
193 /* supports namespace management commands */
194 #define NVME_CTRLR_DATA_OACS_NSMGMT_SHIFT               (3)
195 #define NVME_CTRLR_DATA_OACS_NSMGMT_MASK                (0x1)
196 /* supports Device Self-test command */
197 #define NVME_CTRLR_DATA_OACS_SELFTEST_SHIFT             (4)
198 #define NVME_CTRLR_DATA_OACS_SELFTEST_MASK              (0x1)
199 /* supports Directives */
200 #define NVME_CTRLR_DATA_OACS_DIRECTIVES_SHIFT           (5)
201 #define NVME_CTRLR_DATA_OACS_DIRECTIVES_MASK            (0x1)
202 /* supports NVMe-MI Send/Receive */
203 #define NVME_CTRLR_DATA_OACS_NVMEMI_SHIFT               (6)
204 #define NVME_CTRLR_DATA_OACS_NVMEMI_MASK                (0x1)
205 /* supports Virtualization Management */
206 #define NVME_CTRLR_DATA_OACS_VM_SHIFT                   (7)
207 #define NVME_CTRLR_DATA_OACS_VM_MASK                    (0x1)
208 /* supports Doorbell Buffer Config */
209 #define NVME_CTRLR_DATA_OACS_DBBUFFER_SHIFT             (8)
210 #define NVME_CTRLR_DATA_OACS_DBBUFFER_MASK              (0x1)
211 /* supports Get LBA Status */
212 #define NVME_CTRLR_DATA_OACS_GETLBA_SHIFT               (9)
213 #define NVME_CTRLR_DATA_OACS_GETLBA_MASK                (0x1)
214
215 /** firmware updates */
216 /* first slot is read-only */
217 #define NVME_CTRLR_DATA_FRMW_SLOT1_RO_SHIFT             (0)
218 #define NVME_CTRLR_DATA_FRMW_SLOT1_RO_MASK              (0x1)
219 /* number of firmware slots */
220 #define NVME_CTRLR_DATA_FRMW_NUM_SLOTS_SHIFT            (1)
221 #define NVME_CTRLR_DATA_FRMW_NUM_SLOTS_MASK             (0x7)
222 /* firmware activation without reset */
223 #define NVME_CTRLR_DATA_FRMW_ACT_WO_RESET_SHIFT         (4)
224 #define NVME_CTRLR_DATA_FRMW_ACT_WO_RESET_MASK          (0x1)
225
226 /** log page attributes */
227 /* per namespace smart/health log page */
228 #define NVME_CTRLR_DATA_LPA_NS_SMART_SHIFT              (0)
229 #define NVME_CTRLR_DATA_LPA_NS_SMART_MASK               (0x1)
230
231 /** AVSCC - admin vendor specific command configuration */
232 /* admin vendor specific commands use spec format */
233 #define NVME_CTRLR_DATA_AVSCC_SPEC_FORMAT_SHIFT         (0)
234 #define NVME_CTRLR_DATA_AVSCC_SPEC_FORMAT_MASK          (0x1)
235
236 /** Autonomous Power State Transition Attributes */
237 /* Autonomous Power State Transitions supported */
238 #define NVME_CTRLR_DATA_APSTA_APST_SUPP_SHIFT           (0)
239 #define NVME_CTRLR_DATA_APSTA_APST_SUPP_MASK            (0x1)
240
241 /** Sanitize Capabilities */
242 /* Crypto Erase Support  */
243 #define NVME_CTRLR_DATA_SANICAP_CES_SHIFT               (0)
244 #define NVME_CTRLR_DATA_SANICAP_CES_MASK                (0x1)
245 /* Block Erase Support */
246 #define NVME_CTRLR_DATA_SANICAP_BES_SHIFT               (1)
247 #define NVME_CTRLR_DATA_SANICAP_BES_MASK                (0x1)
248 /* Overwrite Support */
249 #define NVME_CTRLR_DATA_SANICAP_OWS_SHIFT               (2)
250 #define NVME_CTRLR_DATA_SANICAP_OWS_MASK                (0x1)
251 /* No-Deallocate Inhibited  */
252 #define NVME_CTRLR_DATA_SANICAP_NDI_SHIFT               (29)
253 #define NVME_CTRLR_DATA_SANICAP_NDI_MASK                (0x1)
254 /* No-Deallocate Modifies Media After Sanitize */
255 #define NVME_CTRLR_DATA_SANICAP_NODMMAS_SHIFT           (30)
256 #define NVME_CTRLR_DATA_SANICAP_NODMMAS_MASK            (0x3)
257 #define NVME_CTRLR_DATA_SANICAP_NODMMAS_UNDEF           (0)
258 #define NVME_CTRLR_DATA_SANICAP_NODMMAS_NO              (1)
259 #define NVME_CTRLR_DATA_SANICAP_NODMMAS_YES             (2)
260
261 /** submission queue entry size */
262 #define NVME_CTRLR_DATA_SQES_MIN_SHIFT                  (0)
263 #define NVME_CTRLR_DATA_SQES_MIN_MASK                   (0xF)
264 #define NVME_CTRLR_DATA_SQES_MAX_SHIFT                  (4)
265 #define NVME_CTRLR_DATA_SQES_MAX_MASK                   (0xF)
266
267 /** completion queue entry size */
268 #define NVME_CTRLR_DATA_CQES_MIN_SHIFT                  (0)
269 #define NVME_CTRLR_DATA_CQES_MIN_MASK                   (0xF)
270 #define NVME_CTRLR_DATA_CQES_MAX_SHIFT                  (4)
271 #define NVME_CTRLR_DATA_CQES_MAX_MASK                   (0xF)
272
273 /** optional nvm command support */
274 #define NVME_CTRLR_DATA_ONCS_COMPARE_SHIFT              (0)
275 #define NVME_CTRLR_DATA_ONCS_COMPARE_MASK               (0x1)
276 #define NVME_CTRLR_DATA_ONCS_WRITE_UNC_SHIFT            (1)
277 #define NVME_CTRLR_DATA_ONCS_WRITE_UNC_MASK             (0x1)
278 #define NVME_CTRLR_DATA_ONCS_DSM_SHIFT                  (2)
279 #define NVME_CTRLR_DATA_ONCS_DSM_MASK                   (0x1)
280 #define NVME_CTRLR_DATA_ONCS_WRZERO_SHIFT               (3)
281 #define NVME_CTRLR_DATA_ONCS_WRZERO_MASK                (0x1)
282 #define NVME_CTRLR_DATA_ONCS_SAVEFEAT_SHIFT             (4)
283 #define NVME_CTRLR_DATA_ONCS_SAVEFEAT_MASK              (0x1)
284 #define NVME_CTRLR_DATA_ONCS_RESERV_SHIFT               (5)
285 #define NVME_CTRLR_DATA_ONCS_RESERV_MASK                (0x1)
286 #define NVME_CTRLR_DATA_ONCS_TIMESTAMP_SHIFT            (6)
287 #define NVME_CTRLR_DATA_ONCS_TIMESTAMP_MASK             (0x1)
288 #define NVME_CTRLR_DATA_ONCS_VERIFY_SHIFT               (7)
289 #define NVME_CTRLR_DATA_ONCS_VERIFY_MASK                (0x1)
290
291 /** Fused Operation Support */
292 #define NVME_CTRLR_DATA_FUSES_CNW_SHIFT         (0)
293 #define NVME_CTRLR_DATA_FUSES_CNW_MASK          (0x1)
294
295 /** Format NVM Attributes */
296 #define NVME_CTRLR_DATA_FNA_FORMAT_ALL_SHIFT            (0)
297 #define NVME_CTRLR_DATA_FNA_FORMAT_ALL_MASK             (0x1)
298 #define NVME_CTRLR_DATA_FNA_ERASE_ALL_SHIFT             (1)
299 #define NVME_CTRLR_DATA_FNA_ERASE_ALL_MASK              (0x1)
300 #define NVME_CTRLR_DATA_FNA_CRYPTO_ERASE_SHIFT          (2)
301 #define NVME_CTRLR_DATA_FNA_CRYPTO_ERASE_MASK           (0x1)
302
303 /** volatile write cache */
304 /* volatile write cache present */
305 #define NVME_CTRLR_DATA_VWC_PRESENT_SHIFT               (0)
306 #define NVME_CTRLR_DATA_VWC_PRESENT_MASK                (0x1)
307 /* flush all namespaces supported */
308 #define NVME_CTRLR_DATA_VWC_ALL_SHIFT                   (1)
309 #define NVME_CTRLR_DATA_VWC_ALL_MASK                    (0x3)
310 #define NVME_CTRLR_DATA_VWC_ALL_UNKNOWN                 (0)
311 #define NVME_CTRLR_DATA_VWC_ALL_NO                      (2)
312 #define NVME_CTRLR_DATA_VWC_ALL_YES                     (3)
313
314 /** namespace features */
315 /* thin provisioning */
316 #define NVME_NS_DATA_NSFEAT_THIN_PROV_SHIFT             (0)
317 #define NVME_NS_DATA_NSFEAT_THIN_PROV_MASK              (0x1)
318 /* NAWUN, NAWUPF, and NACWU fields are valid */
319 #define NVME_NS_DATA_NSFEAT_NA_FIELDS_SHIFT             (1)
320 #define NVME_NS_DATA_NSFEAT_NA_FIELDS_MASK              (0x1)
321 /* Deallocated or Unwritten Logical Block errors supported */
322 #define NVME_NS_DATA_NSFEAT_DEALLOC_SHIFT               (2)
323 #define NVME_NS_DATA_NSFEAT_DEALLOC_MASK                (0x1)
324 /* NGUID and EUI64 fields are not reusable */
325 #define NVME_NS_DATA_NSFEAT_NO_ID_REUSE_SHIFT           (3)
326 #define NVME_NS_DATA_NSFEAT_NO_ID_REUSE_MASK            (0x1)
327 /* NPWG, NPWA, NPDG, NPDA, and NOWS are valid */
328 #define NVME_NS_DATA_NSFEAT_NPVALID_SHIFT               (4)
329 #define NVME_NS_DATA_NSFEAT_NPVALID_MASK                (0x1)
330
331 /** formatted lba size */
332 #define NVME_NS_DATA_FLBAS_FORMAT_SHIFT                 (0)
333 #define NVME_NS_DATA_FLBAS_FORMAT_MASK                  (0xF)
334 #define NVME_NS_DATA_FLBAS_EXTENDED_SHIFT               (4)
335 #define NVME_NS_DATA_FLBAS_EXTENDED_MASK                (0x1)
336
337 /** metadata capabilities */
338 /* metadata can be transferred as part of data prp list */
339 #define NVME_NS_DATA_MC_EXTENDED_SHIFT                  (0)
340 #define NVME_NS_DATA_MC_EXTENDED_MASK                   (0x1)
341 /* metadata can be transferred with separate metadata pointer */
342 #define NVME_NS_DATA_MC_POINTER_SHIFT                   (1)
343 #define NVME_NS_DATA_MC_POINTER_MASK                    (0x1)
344
345 /** end-to-end data protection capabilities */
346 /* protection information type 1 */
347 #define NVME_NS_DATA_DPC_PIT1_SHIFT                     (0)
348 #define NVME_NS_DATA_DPC_PIT1_MASK                      (0x1)
349 /* protection information type 2 */
350 #define NVME_NS_DATA_DPC_PIT2_SHIFT                     (1)
351 #define NVME_NS_DATA_DPC_PIT2_MASK                      (0x1)
352 /* protection information type 3 */
353 #define NVME_NS_DATA_DPC_PIT3_SHIFT                     (2)
354 #define NVME_NS_DATA_DPC_PIT3_MASK                      (0x1)
355 /* first eight bytes of metadata */
356 #define NVME_NS_DATA_DPC_MD_START_SHIFT                 (3)
357 #define NVME_NS_DATA_DPC_MD_START_MASK                  (0x1)
358 /* last eight bytes of metadata */
359 #define NVME_NS_DATA_DPC_MD_END_SHIFT                   (4)
360 #define NVME_NS_DATA_DPC_MD_END_MASK                    (0x1)
361
362 /** end-to-end data protection type settings */
363 /* protection information type */
364 #define NVME_NS_DATA_DPS_PIT_SHIFT                      (0)
365 #define NVME_NS_DATA_DPS_PIT_MASK                       (0x7)
366 /* 1 == protection info transferred at start of metadata */
367 /* 0 == protection info transferred at end of metadata */
368 #define NVME_NS_DATA_DPS_MD_START_SHIFT                 (3)
369 #define NVME_NS_DATA_DPS_MD_START_MASK                  (0x1)
370
371 /** Namespace Multi-path I/O and Namespace Sharing Capabilities */
372 /* the namespace may be attached to two or more controllers */
373 #define NVME_NS_DATA_NMIC_MAY_BE_SHARED_SHIFT           (0)
374 #define NVME_NS_DATA_NMIC_MAY_BE_SHARED_MASK            (0x1)
375
376 /** Reservation Capabilities */
377 /* Persist Through Power Loss */
378 #define NVME_NS_DATA_RESCAP_PTPL_SHIFT          (0)
379 #define NVME_NS_DATA_RESCAP_PTPL_MASK           (0x1)
380 /* supports the Write Exclusive */
381 #define NVME_NS_DATA_RESCAP_WR_EX_SHIFT         (1)
382 #define NVME_NS_DATA_RESCAP_WR_EX_MASK          (0x1)
383 /* supports the Exclusive Access */
384 #define NVME_NS_DATA_RESCAP_EX_AC_SHIFT         (2)
385 #define NVME_NS_DATA_RESCAP_EX_AC_MASK          (0x1)
386 /* supports the Write Exclusive â€“ Registrants Only */
387 #define NVME_NS_DATA_RESCAP_WR_EX_RO_SHIFT      (3)
388 #define NVME_NS_DATA_RESCAP_WR_EX_RO_MASK       (0x1)
389 /* supports the Exclusive Access - Registrants Only */
390 #define NVME_NS_DATA_RESCAP_EX_AC_RO_SHIFT      (4)
391 #define NVME_NS_DATA_RESCAP_EX_AC_RO_MASK       (0x1)
392 /* supports the Write Exclusive â€“ All Registrants */
393 #define NVME_NS_DATA_RESCAP_WR_EX_AR_SHIFT      (5)
394 #define NVME_NS_DATA_RESCAP_WR_EX_AR_MASK       (0x1)
395 /* supports the Exclusive Access - All Registrants */
396 #define NVME_NS_DATA_RESCAP_EX_AC_AR_SHIFT      (6)
397 #define NVME_NS_DATA_RESCAP_EX_AC_AR_MASK       (0x1)
398 /* Ignore Existing Key is used as defined in revision 1.3 or later */
399 #define NVME_NS_DATA_RESCAP_IEKEY13_SHIFT       (7)
400 #define NVME_NS_DATA_RESCAP_IEKEY13_MASK        (0x1)
401
402 /** Format Progress Indicator */
403 /* percentage of the Format NVM command that remains to be completed */
404 #define NVME_NS_DATA_FPI_PERC_SHIFT             (0)
405 #define NVME_NS_DATA_FPI_PERC_MASK              (0x7f)
406 /* namespace supports the Format Progress Indicator */
407 #define NVME_NS_DATA_FPI_SUPP_SHIFT             (7)
408 #define NVME_NS_DATA_FPI_SUPP_MASK              (0x1)
409
410 /** Deallocate Logical Block Features */
411 /* deallocated logical block read behavior */
412 #define NVME_NS_DATA_DLFEAT_READ_SHIFT          (0)
413 #define NVME_NS_DATA_DLFEAT_READ_MASK           (0x07)
414 #define NVME_NS_DATA_DLFEAT_READ_NR             (0x00)
415 #define NVME_NS_DATA_DLFEAT_READ_00             (0x01)
416 #define NVME_NS_DATA_DLFEAT_READ_FF             (0x02)
417 /* supports the Deallocate bit in the Write Zeroes */
418 #define NVME_NS_DATA_DLFEAT_DWZ_SHIFT           (3)
419 #define NVME_NS_DATA_DLFEAT_DWZ_MASK            (0x01)
420 /* Guard field for deallocated logical blocks is set to the CRC  */
421 #define NVME_NS_DATA_DLFEAT_GCRC_SHIFT          (4)
422 #define NVME_NS_DATA_DLFEAT_GCRC_MASK           (0x01)
423
424 /** lba format support */
425 /* metadata size */
426 #define NVME_NS_DATA_LBAF_MS_SHIFT                      (0)
427 #define NVME_NS_DATA_LBAF_MS_MASK                       (0xFFFF)
428 /* lba data size */
429 #define NVME_NS_DATA_LBAF_LBADS_SHIFT                   (16)
430 #define NVME_NS_DATA_LBAF_LBADS_MASK                    (0xFF)
431 /* relative performance */
432 #define NVME_NS_DATA_LBAF_RP_SHIFT                      (24)
433 #define NVME_NS_DATA_LBAF_RP_MASK                       (0x3)
434
435 enum nvme_critical_warning_state {
436         NVME_CRIT_WARN_ST_AVAILABLE_SPARE               = 0x1,
437         NVME_CRIT_WARN_ST_TEMPERATURE                   = 0x2,
438         NVME_CRIT_WARN_ST_DEVICE_RELIABILITY            = 0x4,
439         NVME_CRIT_WARN_ST_READ_ONLY                     = 0x8,
440         NVME_CRIT_WARN_ST_VOLATILE_MEMORY_BACKUP        = 0x10,
441 };
442 #define NVME_CRIT_WARN_ST_RESERVED_MASK                 (0xE0)
443
444 /* slot for current FW */
445 #define NVME_FIRMWARE_PAGE_AFI_SLOT_SHIFT               (0)
446 #define NVME_FIRMWARE_PAGE_AFI_SLOT_MASK                (0x7)
447
448 /* CC register SHN field values */
449 enum shn_value {
450         NVME_SHN_NORMAL         = 0x1,
451         NVME_SHN_ABRUPT         = 0x2,
452 };
453
454 /* CSTS register SHST field values */
455 enum shst_value {
456         NVME_SHST_NORMAL        = 0x0,
457         NVME_SHST_OCCURRING     = 0x1,
458         NVME_SHST_COMPLETE      = 0x2,
459 };
460
461 struct nvme_registers
462 {
463         /** controller capabilities */
464         uint32_t                cap_lo;
465         uint32_t                cap_hi;
466
467         uint32_t                vs;     /* version */
468         uint32_t                intms;  /* interrupt mask set */
469         uint32_t                intmc;  /* interrupt mask clear */
470
471         /** controller configuration */
472         uint32_t                cc;
473
474         uint32_t                reserved1;
475
476         /** controller status */
477         uint32_t                csts;
478
479         uint32_t                reserved2;
480
481         /** admin queue attributes */
482         uint32_t                aqa;
483
484         uint64_t                asq;    /* admin submission queue base addr */
485         uint64_t                acq;    /* admin completion queue base addr */
486         uint32_t                reserved3[0x3f2];
487
488         struct {
489             uint32_t            sq_tdbl; /* submission queue tail doorbell */
490             uint32_t            cq_hdbl; /* completion queue head doorbell */
491         } doorbell[1] __packed;
492 } __packed;
493
494 _Static_assert(sizeof(struct nvme_registers) == 0x1008, "bad size for nvme_registers");
495
496 struct nvme_command
497 {
498         /* dword 0 */
499         uint8_t opc;            /* opcode */
500         uint8_t fuse;           /* fused operation */
501         uint16_t cid;           /* command identifier */
502
503         /* dword 1 */
504         uint32_t nsid;          /* namespace identifier */
505
506         /* dword 2-3 */
507         uint32_t rsvd2;
508         uint32_t rsvd3;
509
510         /* dword 4-5 */
511         uint64_t mptr;          /* metadata pointer */
512
513         /* dword 6-7 */
514         uint64_t prp1;          /* prp entry 1 */
515
516         /* dword 8-9 */
517         uint64_t prp2;          /* prp entry 2 */
518
519         /* dword 10-15 */
520         uint32_t cdw10;         /* command-specific */
521         uint32_t cdw11;         /* command-specific */
522         uint32_t cdw12;         /* command-specific */
523         uint32_t cdw13;         /* command-specific */
524         uint32_t cdw14;         /* command-specific */
525         uint32_t cdw15;         /* command-specific */
526 } __packed;
527
528 _Static_assert(sizeof(struct nvme_command) == 16 * 4, "bad size for nvme_command");
529
530 struct nvme_completion {
531
532         /* dword 0 */
533         uint32_t                cdw0;   /* command-specific */
534
535         /* dword 1 */
536         uint32_t                rsvd1;
537
538         /* dword 2 */
539         uint16_t                sqhd;   /* submission queue head pointer */
540         uint16_t                sqid;   /* submission queue identifier */
541
542         /* dword 3 */
543         uint16_t                cid;    /* command identifier */
544         uint16_t                status;
545 } __packed;
546
547 _Static_assert(sizeof(struct nvme_completion) == 4 * 4, "bad size for nvme_completion");
548
549 struct nvme_dsm_range {
550         uint32_t attributes;
551         uint32_t length;
552         uint64_t starting_lba;
553 } __packed;
554
555 /* Largest DSM Trim that can be done */
556 #define NVME_MAX_DSM_TRIM               4096
557
558 _Static_assert(sizeof(struct nvme_dsm_range) == 16, "bad size for nvme_dsm_ranage");
559
560 /* status code types */
561 enum nvme_status_code_type {
562         NVME_SCT_GENERIC                = 0x0,
563         NVME_SCT_COMMAND_SPECIFIC       = 0x1,
564         NVME_SCT_MEDIA_ERROR            = 0x2,
565         /* 0x3-0x6 - reserved */
566         NVME_SCT_VENDOR_SPECIFIC        = 0x7,
567 };
568
569 /* generic command status codes */
570 enum nvme_generic_command_status_code {
571         NVME_SC_SUCCESS                         = 0x00,
572         NVME_SC_INVALID_OPCODE                  = 0x01,
573         NVME_SC_INVALID_FIELD                   = 0x02,
574         NVME_SC_COMMAND_ID_CONFLICT             = 0x03,
575         NVME_SC_DATA_TRANSFER_ERROR             = 0x04,
576         NVME_SC_ABORTED_POWER_LOSS              = 0x05,
577         NVME_SC_INTERNAL_DEVICE_ERROR           = 0x06,
578         NVME_SC_ABORTED_BY_REQUEST              = 0x07,
579         NVME_SC_ABORTED_SQ_DELETION             = 0x08,
580         NVME_SC_ABORTED_FAILED_FUSED            = 0x09,
581         NVME_SC_ABORTED_MISSING_FUSED           = 0x0a,
582         NVME_SC_INVALID_NAMESPACE_OR_FORMAT     = 0x0b,
583         NVME_SC_COMMAND_SEQUENCE_ERROR          = 0x0c,
584         NVME_SC_INVALID_SGL_SEGMENT_DESCR       = 0x0d,
585         NVME_SC_INVALID_NUMBER_OF_SGL_DESCR     = 0x0e,
586         NVME_SC_DATA_SGL_LENGTH_INVALID         = 0x0f,
587         NVME_SC_METADATA_SGL_LENGTH_INVALID     = 0x10,
588         NVME_SC_SGL_DESCRIPTOR_TYPE_INVALID     = 0x11,
589         NVME_SC_INVALID_USE_OF_CMB              = 0x12,
590         NVME_SC_PRP_OFFET_INVALID               = 0x13,
591         NVME_SC_ATOMIC_WRITE_UNIT_EXCEEDED      = 0x14,
592         NVME_SC_OPERATION_DENIED                = 0x15,
593         NVME_SC_SGL_OFFSET_INVALID              = 0x16,
594         /* 0x17 - reserved */
595         NVME_SC_HOST_ID_INCONSISTENT_FORMAT     = 0x18,
596         NVME_SC_KEEP_ALIVE_TIMEOUT_EXPIRED      = 0x19,
597         NVME_SC_KEEP_ALIVE_TIMEOUT_INVALID      = 0x1a,
598         NVME_SC_ABORTED_DUE_TO_PREEMPT          = 0x1b,
599         NVME_SC_SANITIZE_FAILED                 = 0x1c,
600         NVME_SC_SANITIZE_IN_PROGRESS            = 0x1d,
601         NVME_SC_SGL_DATA_BLOCK_GRAN_INVALID     = 0x1e,
602         NVME_SC_NOT_SUPPORTED_IN_CMB            = 0x1f,
603
604         NVME_SC_LBA_OUT_OF_RANGE                = 0x80,
605         NVME_SC_CAPACITY_EXCEEDED               = 0x81,
606         NVME_SC_NAMESPACE_NOT_READY             = 0x82,
607         NVME_SC_RESERVATION_CONFLICT            = 0x83,
608         NVME_SC_FORMAT_IN_PROGRESS              = 0x84,
609 };
610
611 /* command specific status codes */
612 enum nvme_command_specific_status_code {
613         NVME_SC_COMPLETION_QUEUE_INVALID        = 0x00,
614         NVME_SC_INVALID_QUEUE_IDENTIFIER        = 0x01,
615         NVME_SC_MAXIMUM_QUEUE_SIZE_EXCEEDED     = 0x02,
616         NVME_SC_ABORT_COMMAND_LIMIT_EXCEEDED    = 0x03,
617         /* 0x04 - reserved */
618         NVME_SC_ASYNC_EVENT_REQUEST_LIMIT_EXCEEDED = 0x05,
619         NVME_SC_INVALID_FIRMWARE_SLOT           = 0x06,
620         NVME_SC_INVALID_FIRMWARE_IMAGE          = 0x07,
621         NVME_SC_INVALID_INTERRUPT_VECTOR        = 0x08,
622         NVME_SC_INVALID_LOG_PAGE                = 0x09,
623         NVME_SC_INVALID_FORMAT                  = 0x0a,
624         NVME_SC_FIRMWARE_REQUIRES_RESET         = 0x0b,
625         NVME_SC_INVALID_QUEUE_DELETION          = 0x0c,
626         NVME_SC_FEATURE_NOT_SAVEABLE            = 0x0d,
627         NVME_SC_FEATURE_NOT_CHANGEABLE          = 0x0e,
628         NVME_SC_FEATURE_NOT_NS_SPECIFIC         = 0x0f,
629         NVME_SC_FW_ACT_REQUIRES_NVMS_RESET      = 0x10,
630         NVME_SC_FW_ACT_REQUIRES_RESET           = 0x11,
631         NVME_SC_FW_ACT_REQUIRES_TIME            = 0x12,
632         NVME_SC_FW_ACT_PROHIBITED               = 0x13,
633         NVME_SC_OVERLAPPING_RANGE               = 0x14,
634         NVME_SC_NS_INSUFFICIENT_CAPACITY        = 0x15,
635         NVME_SC_NS_ID_UNAVAILABLE               = 0x16,
636         /* 0x17 - reserved */
637         NVME_SC_NS_ALREADY_ATTACHED             = 0x18,
638         NVME_SC_NS_IS_PRIVATE                   = 0x19,
639         NVME_SC_NS_NOT_ATTACHED                 = 0x1a,
640         NVME_SC_THIN_PROV_NOT_SUPPORTED         = 0x1b,
641         NVME_SC_CTRLR_LIST_INVALID              = 0x1c,
642         NVME_SC_SELT_TEST_IN_PROGRESS           = 0x1d,
643         NVME_SC_BOOT_PART_WRITE_PROHIB          = 0x1e,
644         NVME_SC_INVALID_CTRLR_ID                = 0x1f,
645         NVME_SC_INVALID_SEC_CTRLR_STATE         = 0x20,
646         NVME_SC_INVALID_NUM_OF_CTRLR_RESRC      = 0x21,
647         NVME_SC_INVALID_RESOURCE_ID             = 0x22,
648
649         NVME_SC_CONFLICTING_ATTRIBUTES          = 0x80,
650         NVME_SC_INVALID_PROTECTION_INFO         = 0x81,
651         NVME_SC_ATTEMPTED_WRITE_TO_RO_PAGE      = 0x82,
652 };
653
654 /* media error status codes */
655 enum nvme_media_error_status_code {
656         NVME_SC_WRITE_FAULTS                    = 0x80,
657         NVME_SC_UNRECOVERED_READ_ERROR          = 0x81,
658         NVME_SC_GUARD_CHECK_ERROR               = 0x82,
659         NVME_SC_APPLICATION_TAG_CHECK_ERROR     = 0x83,
660         NVME_SC_REFERENCE_TAG_CHECK_ERROR       = 0x84,
661         NVME_SC_COMPARE_FAILURE                 = 0x85,
662         NVME_SC_ACCESS_DENIED                   = 0x86,
663         NVME_SC_DEALLOCATED_OR_UNWRITTEN        = 0x87,
664 };
665
666 /* admin opcodes */
667 enum nvme_admin_opcode {
668         NVME_OPC_DELETE_IO_SQ                   = 0x00,
669         NVME_OPC_CREATE_IO_SQ                   = 0x01,
670         NVME_OPC_GET_LOG_PAGE                   = 0x02,
671         /* 0x03 - reserved */
672         NVME_OPC_DELETE_IO_CQ                   = 0x04,
673         NVME_OPC_CREATE_IO_CQ                   = 0x05,
674         NVME_OPC_IDENTIFY                       = 0x06,
675         /* 0x07 - reserved */
676         NVME_OPC_ABORT                          = 0x08,
677         NVME_OPC_SET_FEATURES                   = 0x09,
678         NVME_OPC_GET_FEATURES                   = 0x0a,
679         /* 0x0b - reserved */
680         NVME_OPC_ASYNC_EVENT_REQUEST            = 0x0c,
681         NVME_OPC_NAMESPACE_MANAGEMENT           = 0x0d,
682         /* 0x0e-0x0f - reserved */
683         NVME_OPC_FIRMWARE_ACTIVATE              = 0x10,
684         NVME_OPC_FIRMWARE_IMAGE_DOWNLOAD        = 0x11,
685         NVME_OPC_DEVICE_SELF_TEST               = 0x14,
686         NVME_OPC_NAMESPACE_ATTACHMENT           = 0x15,
687         NVME_OPC_KEEP_ALIVE                     = 0x18,
688         NVME_OPC_DIRECTIVE_SEND                 = 0x19,
689         NVME_OPC_DIRECTIVE_RECEIVE              = 0x1a,
690         NVME_OPC_VIRTUALIZATION_MANAGEMENT      = 0x1c,
691         NVME_OPC_NVME_MI_SEND                   = 0x1d,
692         NVME_OPC_NVME_MI_RECEIVE                = 0x1e,
693         NVME_OPC_DOORBELL_BUFFER_CONFIG         = 0x7c,
694
695         NVME_OPC_FORMAT_NVM                     = 0x80,
696         NVME_OPC_SECURITY_SEND                  = 0x81,
697         NVME_OPC_SECURITY_RECEIVE               = 0x82,
698         NVME_OPC_SANITIZE                       = 0x84,
699 };
700
701 /* nvme nvm opcodes */
702 enum nvme_nvm_opcode {
703         NVME_OPC_FLUSH                          = 0x00,
704         NVME_OPC_WRITE                          = 0x01,
705         NVME_OPC_READ                           = 0x02,
706         /* 0x03 - reserved */
707         NVME_OPC_WRITE_UNCORRECTABLE            = 0x04,
708         NVME_OPC_COMPARE                        = 0x05,
709         /* 0x06 - reserved */
710         NVME_OPC_WRITE_ZEROES                   = 0x08,
711         /* 0x07 - reserved */
712         NVME_OPC_DATASET_MANAGEMENT             = 0x09,
713         /* 0x0a-0x0c - reserved */
714         NVME_OPC_RESERVATION_REGISTER           = 0x0d,
715         NVME_OPC_RESERVATION_REPORT             = 0x0e,
716         /* 0x0f-0x10 - reserved */
717         NVME_OPC_RESERVATION_ACQUIRE            = 0x11,
718         /* 0x12-0x14 - reserved */
719         NVME_OPC_RESERVATION_RELEASE            = 0x15,
720 };
721
722 enum nvme_feature {
723         /* 0x00 - reserved */
724         NVME_FEAT_ARBITRATION                   = 0x01,
725         NVME_FEAT_POWER_MANAGEMENT              = 0x02,
726         NVME_FEAT_LBA_RANGE_TYPE                = 0x03,
727         NVME_FEAT_TEMPERATURE_THRESHOLD         = 0x04,
728         NVME_FEAT_ERROR_RECOVERY                = 0x05,
729         NVME_FEAT_VOLATILE_WRITE_CACHE          = 0x06,
730         NVME_FEAT_NUMBER_OF_QUEUES              = 0x07,
731         NVME_FEAT_INTERRUPT_COALESCING          = 0x08,
732         NVME_FEAT_INTERRUPT_VECTOR_CONFIGURATION = 0x09,
733         NVME_FEAT_WRITE_ATOMICITY               = 0x0A,
734         NVME_FEAT_ASYNC_EVENT_CONFIGURATION     = 0x0B,
735         NVME_FEAT_AUTONOMOUS_POWER_STATE_TRANSITION = 0x0C,
736         NVME_FEAT_HOST_MEMORY_BUFFER            = 0x0D,
737         NVME_FEAT_TIMESTAMP                     = 0x0E,
738         NVME_FEAT_KEEP_ALIVE_TIMER              = 0x0F,
739         NVME_FEAT_HOST_CONTROLLED_THERMAL_MGMT  = 0x10,
740         NVME_FEAT_NON_OP_POWER_STATE_CONFIG     = 0x11,
741         /* 0x12-0x77 - reserved */
742         /* 0x78-0x7f - NVMe Management Interface */
743         NVME_FEAT_SOFTWARE_PROGRESS_MARKER      = 0x80,
744         /* 0x81-0xBF - command set specific (reserved) */
745         /* 0xC0-0xFF - vendor specific */
746 };
747
748 enum nvme_dsm_attribute {
749         NVME_DSM_ATTR_INTEGRAL_READ             = 0x1,
750         NVME_DSM_ATTR_INTEGRAL_WRITE            = 0x2,
751         NVME_DSM_ATTR_DEALLOCATE                = 0x4,
752 };
753
754 enum nvme_activate_action {
755         NVME_AA_REPLACE_NO_ACTIVATE             = 0x0,
756         NVME_AA_REPLACE_ACTIVATE                = 0x1,
757         NVME_AA_ACTIVATE                        = 0x2,
758 };
759
760 struct nvme_power_state {
761         /** Maximum Power */
762         uint16_t        mp;                     /* Maximum Power */
763         uint8_t         ps_rsvd1;
764         uint8_t         mps_nops;               /* Max Power Scale, Non-Operational State */
765
766         uint32_t        enlat;                  /* Entry Latency */
767         uint32_t        exlat;                  /* Exit Latency */
768
769         uint8_t         rrt;                    /* Relative Read Throughput */
770         uint8_t         rrl;                    /* Relative Read Latency */
771         uint8_t         rwt;                    /* Relative Write Throughput */
772         uint8_t         rwl;                    /* Relative Write Latency */
773
774         uint16_t        idlp;                   /* Idle Power */
775         uint8_t         ips;                    /* Idle Power Scale */
776         uint8_t         ps_rsvd8;
777
778         uint16_t        actp;                   /* Active Power */
779         uint8_t         apw_aps;                /* Active Power Workload, Active Power Scale */
780         uint8_t         ps_rsvd10[9];
781 } __packed;
782
783 _Static_assert(sizeof(struct nvme_power_state) == 32, "bad size for nvme_power_state");
784
785 #define NVME_SERIAL_NUMBER_LENGTH       20
786 #define NVME_MODEL_NUMBER_LENGTH        40
787 #define NVME_FIRMWARE_REVISION_LENGTH   8
788
789 struct nvme_controller_data {
790
791         /* bytes 0-255: controller capabilities and features */
792
793         /** pci vendor id */
794         uint16_t                vid;
795
796         /** pci subsystem vendor id */
797         uint16_t                ssvid;
798
799         /** serial number */
800         uint8_t                 sn[NVME_SERIAL_NUMBER_LENGTH];
801
802         /** model number */
803         uint8_t                 mn[NVME_MODEL_NUMBER_LENGTH];
804
805         /** firmware revision */
806         uint8_t                 fr[NVME_FIRMWARE_REVISION_LENGTH];
807
808         /** recommended arbitration burst */
809         uint8_t                 rab;
810
811         /** ieee oui identifier */
812         uint8_t                 ieee[3];
813
814         /** multi-interface capabilities */
815         uint8_t                 mic;
816
817         /** maximum data transfer size */
818         uint8_t                 mdts;
819
820         /** Controller ID */
821         uint16_t                ctrlr_id;
822
823         /** Version */
824         uint32_t                ver;
825
826         /** RTD3 Resume Latency */
827         uint32_t                rtd3r;
828
829         /** RTD3 Enter Latency */
830         uint32_t                rtd3e;
831
832         /** Optional Asynchronous Events Supported */
833         uint32_t                oaes;   /* bitfield really */
834
835         /** Controller Attributes */
836         uint32_t                ctratt; /* bitfield really */
837
838         /** Read Recovery Levels Supported */
839         uint16_t                rrls;
840
841         uint8_t                 reserved1[9];
842
843         /** Controller Type */
844         uint8_t                 cntrltype;
845
846         /** FRU Globally Unique Identifier */
847         uint8_t                 fguid[16];
848
849         /** Command Retry Delay Time 1 */
850         uint16_t                crdt1;
851
852         /** Command Retry Delay Time 2 */
853         uint16_t                crdt2;
854
855         /** Command Retry Delay Time 3 */
856         uint16_t                crdt3;
857
858         uint8_t                 reserved2[122];
859
860         /* bytes 256-511: admin command set attributes */
861
862         /** optional admin command support */
863         uint16_t                oacs;
864
865         /** abort command limit */
866         uint8_t                 acl;
867
868         /** asynchronous event request limit */
869         uint8_t                 aerl;
870
871         /** firmware updates */
872         uint8_t                 frmw;
873
874         /** log page attributes */
875         uint8_t                 lpa;
876
877         /** error log page entries */
878         uint8_t                 elpe;
879
880         /** number of power states supported */
881         uint8_t                 npss;
882
883         /** admin vendor specific command configuration */
884         uint8_t                 avscc;
885
886         /** Autonomous Power State Transition Attributes */
887         uint8_t                 apsta;
888
889         /** Warning Composite Temperature Threshold */
890         uint16_t                wctemp;
891
892         /** Critical Composite Temperature Threshold */
893         uint16_t                cctemp;
894
895         /** Maximum Time for Firmware Activation */
896         uint16_t                mtfa;
897
898         /** Host Memory Buffer Preferred Size */
899         uint32_t                hmpre;
900
901         /** Host Memory Buffer Minimum Size */
902         uint32_t                hmmin;
903
904         /** Name space capabilities  */
905         struct {
906                 /* if nsmgmt, report tnvmcap and unvmcap */
907                 uint8_t    tnvmcap[16];
908                 uint8_t    unvmcap[16];
909         } __packed untncap;
910
911         /** Replay Protected Memory Block Support */
912         uint32_t                rpmbs; /* Really a bitfield */
913
914         /** Extended Device Self-test Time */
915         uint16_t                edstt;
916
917         /** Device Self-test Options */
918         uint8_t                 dsto; /* Really a bitfield */
919
920         /** Firmware Update Granularity */
921         uint8_t                 fwug;
922
923         /** Keep Alive Support */
924         uint16_t                kas;
925
926         /** Host Controlled Thermal Management Attributes */
927         uint16_t                hctma; /* Really a bitfield */
928
929         /** Minimum Thermal Management Temperature */
930         uint16_t                mntmt;
931
932         /** Maximum Thermal Management Temperature */
933         uint16_t                mxtmt;
934
935         /** Sanitize Capabilities */
936         uint32_t                sanicap; /* Really a bitfield */
937
938         /** Host Memory Buffer Minimum Descriptor Entry Size */
939         uint32_t                hmminds;
940
941         /** Host Memory Maximum Descriptors Entries */
942         uint16_t                hmmaxd;
943
944         /** NVM Set Identifier Maximum */
945         uint16_t                nsetidmax;
946
947         /** Endurance Group Identifier Maximum */
948         uint16_t                endgidmax;
949
950         /** ANA Transition Time */
951         uint8_t                 anatt;
952
953         /** Asymmetric Namespace Access Capabilities */
954         uint8_t                 anacap;
955
956         /** ANA Group Identifier Maximum */
957         uint32_t                anagrpmax;
958
959         /** Number of ANA Group Identifiers */
960         uint32_t                nanagrpid;
961
962         /** Persistent Event Log Size */
963         uint32_t                pels;
964
965         uint8_t                 reserved3[156];
966         /* bytes 512-703: nvm command set attributes */
967
968         /** submission queue entry size */
969         uint8_t                 sqes;
970
971         /** completion queue entry size */
972         uint8_t                 cqes;
973
974         /** Maximum Outstanding Commands */
975         uint16_t                maxcmd;
976
977         /** number of namespaces */
978         uint32_t                nn;
979
980         /** optional nvm command support */
981         uint16_t                oncs;
982
983         /** fused operation support */
984         uint16_t                fuses;
985
986         /** format nvm attributes */
987         uint8_t                 fna;
988
989         /** volatile write cache */
990         uint8_t                 vwc;
991
992         /** Atomic Write Unit Normal */
993         uint16_t                awun;
994
995         /** Atomic Write Unit Power Fail */
996         uint16_t                awupf;
997
998         /** NVM Vendor Specific Command Configuration */
999         uint8_t                 nvscc;
1000
1001         /** Namespace Write Protection Capabilities */
1002         uint8_t                 nwpc;
1003
1004         /** Atomic Compare & Write Unit */
1005         uint16_t                acwu;
1006         uint16_t                reserved6;
1007
1008         /** SGL Support */
1009         uint32_t                sgls;
1010
1011         /** Maximum Number of Allowed Namespaces */
1012         uint32_t                mnan;
1013
1014         /* bytes 540-767: Reserved */
1015         uint8_t                 reserved7[224];
1016
1017         /** NVM Subsystem NVMe Qualified Name */
1018         uint8_t                 subnqn[256];
1019
1020         /* bytes 1024-1791: Reserved */
1021         uint8_t                 reserved8[768];
1022
1023         /* bytes 1792-2047: NVMe over Fabrics specification */
1024         uint8_t                 reserved9[256];
1025
1026         /* bytes 2048-3071: power state descriptors */
1027         struct nvme_power_state power_state[32];
1028
1029         /* bytes 3072-4095: vendor specific */
1030         uint8_t                 vs[1024];
1031 } __packed __aligned(4);
1032
1033 _Static_assert(sizeof(struct nvme_controller_data) == 4096, "bad size for nvme_controller_data");
1034
1035 struct nvme_namespace_data {
1036
1037         /** namespace size */
1038         uint64_t                nsze;
1039
1040         /** namespace capacity */
1041         uint64_t                ncap;
1042
1043         /** namespace utilization */
1044         uint64_t                nuse;
1045
1046         /** namespace features */
1047         uint8_t                 nsfeat;
1048
1049         /** number of lba formats */
1050         uint8_t                 nlbaf;
1051
1052         /** formatted lba size */
1053         uint8_t                 flbas;
1054
1055         /** metadata capabilities */
1056         uint8_t                 mc;
1057
1058         /** end-to-end data protection capabilities */
1059         uint8_t                 dpc;
1060
1061         /** end-to-end data protection type settings */
1062         uint8_t                 dps;
1063
1064         /** Namespace Multi-path I/O and Namespace Sharing Capabilities */
1065         uint8_t                 nmic;
1066
1067         /** Reservation Capabilities */
1068         uint8_t                 rescap;
1069
1070         /** Format Progress Indicator */
1071         uint8_t                 fpi;
1072
1073         /** Deallocate Logical Block Features */
1074         uint8_t                 dlfeat;
1075
1076         /** Namespace Atomic Write Unit Normal  */
1077         uint16_t                nawun;
1078
1079         /** Namespace Atomic Write Unit Power Fail */
1080         uint16_t                nawupf;
1081
1082         /** Namespace Atomic Compare & Write Unit */
1083         uint16_t                nacwu;
1084
1085         /** Namespace Atomic Boundary Size Normal */
1086         uint16_t                nabsn;
1087
1088         /** Namespace Atomic Boundary Offset */
1089         uint16_t                nabo;
1090
1091         /** Namespace Atomic Boundary Size Power Fail */
1092         uint16_t                nabspf;
1093
1094         /** Namespace Optimal IO Boundary */
1095         uint16_t                noiob;
1096
1097         /** NVM Capacity */
1098         uint8_t                 nvmcap[16];
1099
1100         /** Namespace Preferred Write Granularity  */
1101         uint16_t                npwg;
1102
1103         /** Namespace Preferred Write Alignment */
1104         uint16_t                npwa;
1105
1106         /** Namespace Preferred Deallocate Granularity */
1107         uint16_t                npdg;
1108
1109         /** Namespace Preferred Deallocate Alignment */
1110         uint16_t                npda;
1111
1112         /** Namespace Optimal Write Size */
1113         uint16_t                nows;
1114
1115         /* bytes 74-91: Reserved */
1116         uint8_t                 reserved5[18];
1117
1118         /** ANA Group Identifier */
1119         uint32_t                anagrpid;
1120
1121         /* bytes 96-98: Reserved */
1122         uint8_t                 reserved6[3];
1123
1124         /** Namespace Attributes */
1125         uint8_t                 nsattr;
1126
1127         /** NVM Set Identifier */
1128         uint16_t                nvmsetid;
1129
1130         /** Endurance Group Identifier */
1131         uint16_t                endgid;
1132
1133         /** Namespace Globally Unique Identifier */
1134         uint8_t                 nguid[16];
1135
1136         /** IEEE Extended Unique Identifier */
1137         uint8_t                 eui64[8];
1138
1139         /** lba format support */
1140         uint32_t                lbaf[16];
1141
1142         uint8_t                 reserved7[192];
1143
1144         uint8_t                 vendor_specific[3712];
1145 } __packed __aligned(4);
1146
1147 _Static_assert(sizeof(struct nvme_namespace_data) == 4096, "bad size for nvme_namepsace_data");
1148
1149 enum nvme_log_page {
1150
1151         /* 0x00 - reserved */
1152         NVME_LOG_ERROR                  = 0x01,
1153         NVME_LOG_HEALTH_INFORMATION     = 0x02,
1154         NVME_LOG_FIRMWARE_SLOT          = 0x03,
1155         NVME_LOG_CHANGED_NAMESPACE      = 0x04,
1156         NVME_LOG_COMMAND_EFFECT         = 0x05,
1157         /* 0x06-0x7F - reserved */
1158         /* 0x80-0xBF - I/O command set specific */
1159         NVME_LOG_RES_NOTIFICATION       = 0x80,
1160         /* 0xC0-0xFF - vendor specific */
1161
1162         /*
1163          * The following are Intel Specific log pages, but they seem
1164          * to be widely implemented.
1165          */
1166         INTEL_LOG_READ_LAT_LOG          = 0xc1,
1167         INTEL_LOG_WRITE_LAT_LOG         = 0xc2,
1168         INTEL_LOG_TEMP_STATS            = 0xc5,
1169         INTEL_LOG_ADD_SMART             = 0xca,
1170         INTEL_LOG_DRIVE_MKT_NAME        = 0xdd,
1171
1172         /*
1173          * HGST log page, with lots ofs sub pages.
1174          */
1175         HGST_INFO_LOG                   = 0xc1,
1176 };
1177
1178 struct nvme_error_information_entry {
1179
1180         uint64_t                error_count;
1181         uint16_t                sqid;
1182         uint16_t                cid;
1183         uint16_t                status;
1184         uint16_t                error_location;
1185         uint64_t                lba;
1186         uint32_t                nsid;
1187         uint8_t                 vendor_specific;
1188         uint8_t                 reserved[35];
1189 } __packed __aligned(4);
1190
1191 _Static_assert(sizeof(struct nvme_error_information_entry) == 64, "bad size for nvme_error_information_entry");
1192
1193 struct nvme_health_information_page {
1194
1195         uint8_t                 critical_warning;
1196         uint16_t                temperature;
1197         uint8_t                 available_spare;
1198         uint8_t                 available_spare_threshold;
1199         uint8_t                 percentage_used;
1200
1201         uint8_t                 reserved[26];
1202
1203         /*
1204          * Note that the following are 128-bit values, but are
1205          *  defined as an array of 2 64-bit values.
1206          */
1207         /* Data Units Read is always in 512-byte units. */
1208         uint64_t                data_units_read[2];
1209         /* Data Units Written is always in 512-byte units. */
1210         uint64_t                data_units_written[2];
1211         /* For NVM command set, this includes Compare commands. */
1212         uint64_t                host_read_commands[2];
1213         uint64_t                host_write_commands[2];
1214         /* Controller Busy Time is reported in minutes. */
1215         uint64_t                controller_busy_time[2];
1216         uint64_t                power_cycles[2];
1217         uint64_t                power_on_hours[2];
1218         uint64_t                unsafe_shutdowns[2];
1219         uint64_t                media_errors[2];
1220         uint64_t                num_error_info_log_entries[2];
1221         uint32_t                warning_temp_time;
1222         uint32_t                error_temp_time;
1223         uint16_t                temp_sensor[8];
1224
1225         uint8_t                 reserved2[296];
1226 } __packed __aligned(4);
1227
1228 _Static_assert(sizeof(struct nvme_health_information_page) == 512, "bad size for nvme_health_information_page");
1229
1230 struct nvme_firmware_page {
1231
1232         uint8_t                 afi;
1233         uint8_t                 reserved[7];
1234         uint64_t                revision[7]; /* revisions for 7 slots */
1235         uint8_t                 reserved2[448];
1236 } __packed __aligned(4);
1237
1238 _Static_assert(sizeof(struct nvme_firmware_page) == 512, "bad size for nvme_firmware_page");
1239
1240 struct nvme_ns_list {
1241         uint32_t                ns[1024];
1242 } __packed __aligned(4);
1243
1244 _Static_assert(sizeof(struct nvme_ns_list) == 4096, "bad size for nvme_ns_list");
1245
1246 struct intel_log_temp_stats
1247 {
1248         uint64_t        current;
1249         uint64_t        overtemp_flag_last;
1250         uint64_t        overtemp_flag_life;
1251         uint64_t        max_temp;
1252         uint64_t        min_temp;
1253         uint64_t        _rsvd[5];
1254         uint64_t        max_oper_temp;
1255         uint64_t        min_oper_temp;
1256         uint64_t        est_offset;
1257 } __packed __aligned(4);
1258
1259 _Static_assert(sizeof(struct intel_log_temp_stats) == 13 * 8, "bad size for intel_log_temp_stats");
1260
1261 #define NVME_TEST_MAX_THREADS   128
1262
1263 struct nvme_io_test {
1264
1265         enum nvme_nvm_opcode    opc;
1266         uint32_t                size;
1267         uint32_t                time;   /* in seconds */
1268         uint32_t                num_threads;
1269         uint32_t                flags;
1270         uint64_t                io_completed[NVME_TEST_MAX_THREADS];
1271 };
1272
1273 enum nvme_io_test_flags {
1274
1275         /*
1276          * Specifies whether dev_refthread/dev_relthread should be
1277          *  called during NVME_BIO_TEST.  Ignored for other test
1278          *  types.
1279          */
1280         NVME_TEST_FLAG_REFTHREAD =      0x1,
1281 };
1282
1283 struct nvme_pt_command {
1284
1285         /*
1286          * cmd is used to specify a passthrough command to a controller or
1287          *  namespace.
1288          *
1289          * The following fields from cmd may be specified by the caller:
1290          *      * opc  (opcode)
1291          *      * nsid (namespace id) - for admin commands only
1292          *      * cdw10-cdw15
1293          *
1294          * Remaining fields must be set to 0 by the caller.
1295          */
1296         struct nvme_command     cmd;
1297
1298         /*
1299          * cpl returns completion status for the passthrough command
1300          *  specified by cmd.
1301          *
1302          * The following fields will be filled out by the driver, for
1303          *  consumption by the caller:
1304          *      * cdw0
1305          *      * status (except for phase)
1306          *
1307          * Remaining fields will be set to 0 by the driver.
1308          */
1309         struct nvme_completion  cpl;
1310
1311         /* buf is the data buffer associated with this passthrough command. */
1312         void *                  buf;
1313
1314         /*
1315          * len is the length of the data buffer associated with this
1316          *  passthrough command.
1317          */
1318         uint32_t                len;
1319
1320         /*
1321          * is_read = 1 if the passthrough command will read data into the
1322          *  supplied buffer from the controller.
1323          *
1324          * is_read = 0 if the passthrough command will write data from the
1325          *  supplied buffer to the controller.
1326          */
1327         uint32_t                is_read;
1328
1329         /*
1330          * driver_lock is used by the driver only.  It must be set to 0
1331          *  by the caller.
1332          */
1333         struct mtx *            driver_lock;
1334 };
1335
1336 struct nvme_get_nsid {
1337         char            cdev[SPECNAMELEN + 1];
1338         uint32_t        nsid;
1339 };
1340
1341 #define nvme_completion_is_error(cpl)                                   \
1342         (NVME_STATUS_GET_SC((cpl)->status) != 0 || NVME_STATUS_GET_SCT((cpl)->status) != 0)
1343
1344 void    nvme_strvis(uint8_t *dst, const uint8_t *src, int dstlen, int srclen);
1345
1346 #ifdef _KERNEL
1347
1348 struct bio;
1349 struct thread;
1350
1351 struct nvme_namespace;
1352 struct nvme_controller;
1353 struct nvme_consumer;
1354
1355 typedef void (*nvme_cb_fn_t)(void *, const struct nvme_completion *);
1356
1357 typedef void *(*nvme_cons_ns_fn_t)(struct nvme_namespace *, void *);
1358 typedef void *(*nvme_cons_ctrlr_fn_t)(struct nvme_controller *);
1359 typedef void (*nvme_cons_async_fn_t)(void *, const struct nvme_completion *,
1360                                      uint32_t, void *, uint32_t);
1361 typedef void (*nvme_cons_fail_fn_t)(void *);
1362
1363 enum nvme_namespace_flags {
1364         NVME_NS_DEALLOCATE_SUPPORTED    = 0x1,
1365         NVME_NS_FLUSH_SUPPORTED         = 0x2,
1366 };
1367
1368 int     nvme_ctrlr_passthrough_cmd(struct nvme_controller *ctrlr,
1369                                    struct nvme_pt_command *pt,
1370                                    uint32_t nsid, int is_user_buffer,
1371                                    int is_admin_cmd);
1372
1373 /* Admin functions */
1374 void    nvme_ctrlr_cmd_set_feature(struct nvme_controller *ctrlr,
1375                                    uint8_t feature, uint32_t cdw11,
1376                                    void *payload, uint32_t payload_size,
1377                                    nvme_cb_fn_t cb_fn, void *cb_arg);
1378 void    nvme_ctrlr_cmd_get_feature(struct nvme_controller *ctrlr,
1379                                    uint8_t feature, uint32_t cdw11,
1380                                    void *payload, uint32_t payload_size,
1381                                    nvme_cb_fn_t cb_fn, void *cb_arg);
1382 void    nvme_ctrlr_cmd_get_log_page(struct nvme_controller *ctrlr,
1383                                     uint8_t log_page, uint32_t nsid,
1384                                     void *payload, uint32_t payload_size,
1385                                     nvme_cb_fn_t cb_fn, void *cb_arg);
1386
1387 /* NVM I/O functions */
1388 int     nvme_ns_cmd_write(struct nvme_namespace *ns, void *payload,
1389                           uint64_t lba, uint32_t lba_count, nvme_cb_fn_t cb_fn,
1390                           void *cb_arg);
1391 int     nvme_ns_cmd_write_bio(struct nvme_namespace *ns, struct bio *bp,
1392                               nvme_cb_fn_t cb_fn, void *cb_arg);
1393 int     nvme_ns_cmd_read(struct nvme_namespace *ns, void *payload,
1394                          uint64_t lba, uint32_t lba_count, nvme_cb_fn_t cb_fn,
1395                          void *cb_arg);
1396 int     nvme_ns_cmd_read_bio(struct nvme_namespace *ns, struct bio *bp,
1397                               nvme_cb_fn_t cb_fn, void *cb_arg);
1398 int     nvme_ns_cmd_deallocate(struct nvme_namespace *ns, void *payload,
1399                                uint8_t num_ranges, nvme_cb_fn_t cb_fn,
1400                                void *cb_arg);
1401 int     nvme_ns_cmd_flush(struct nvme_namespace *ns, nvme_cb_fn_t cb_fn,
1402                           void *cb_arg);
1403 int     nvme_ns_dump(struct nvme_namespace *ns, void *virt, off_t offset,
1404                      size_t len);
1405
1406 /* Registration functions */
1407 struct nvme_consumer *  nvme_register_consumer(nvme_cons_ns_fn_t    ns_fn,
1408                                                nvme_cons_ctrlr_fn_t ctrlr_fn,
1409                                                nvme_cons_async_fn_t async_fn,
1410                                                nvme_cons_fail_fn_t  fail_fn);
1411 void            nvme_unregister_consumer(struct nvme_consumer *consumer);
1412
1413 /* Controller helper functions */
1414 device_t        nvme_ctrlr_get_device(struct nvme_controller *ctrlr);
1415 const struct nvme_controller_data *
1416                 nvme_ctrlr_get_data(struct nvme_controller *ctrlr);
1417 static inline bool
1418 nvme_ctrlr_has_dataset_mgmt(const struct nvme_controller_data *cd)
1419 {
1420         /* Assumes cd was byte swapped by nvme_controller_data_swapbytes() */
1421         return ((cd->oncs >> NVME_CTRLR_DATA_ONCS_DSM_SHIFT) &
1422                 NVME_CTRLR_DATA_ONCS_DSM_MASK);
1423 }
1424
1425 /* Namespace helper functions */
1426 uint32_t        nvme_ns_get_max_io_xfer_size(struct nvme_namespace *ns);
1427 uint32_t        nvme_ns_get_sector_size(struct nvme_namespace *ns);
1428 uint64_t        nvme_ns_get_num_sectors(struct nvme_namespace *ns);
1429 uint64_t        nvme_ns_get_size(struct nvme_namespace *ns);
1430 uint32_t        nvme_ns_get_flags(struct nvme_namespace *ns);
1431 const char *    nvme_ns_get_serial_number(struct nvme_namespace *ns);
1432 const char *    nvme_ns_get_model_number(struct nvme_namespace *ns);
1433 const struct nvme_namespace_data *
1434                 nvme_ns_get_data(struct nvme_namespace *ns);
1435 uint32_t        nvme_ns_get_stripesize(struct nvme_namespace *ns);
1436
1437 int     nvme_ns_bio_process(struct nvme_namespace *ns, struct bio *bp,
1438                             nvme_cb_fn_t cb_fn);
1439 int     nvme_ns_ioctl_process(struct nvme_namespace *ns, u_long cmd,
1440     caddr_t arg, int flag, struct thread *td);
1441
1442 /*
1443  * Command building helper functions -- shared with CAM
1444  * These functions assume allocator zeros out cmd structure
1445  * CAM's xpt_get_ccb and the request allocator for nvme both
1446  * do zero'd allocations.
1447  */
1448 static inline
1449 void    nvme_ns_flush_cmd(struct nvme_command *cmd, uint32_t nsid)
1450 {
1451
1452         cmd->opc = NVME_OPC_FLUSH;
1453         cmd->nsid = htole32(nsid);
1454 }
1455
1456 static inline
1457 void    nvme_ns_rw_cmd(struct nvme_command *cmd, uint32_t rwcmd, uint32_t nsid,
1458     uint64_t lba, uint32_t count)
1459 {
1460         cmd->opc = rwcmd;
1461         cmd->nsid = htole32(nsid);
1462         cmd->cdw10 = htole32(lba & 0xffffffffu);
1463         cmd->cdw11 = htole32(lba >> 32);
1464         cmd->cdw12 = htole32(count-1);
1465 }
1466
1467 static inline
1468 void    nvme_ns_write_cmd(struct nvme_command *cmd, uint32_t nsid,
1469     uint64_t lba, uint32_t count)
1470 {
1471         nvme_ns_rw_cmd(cmd, NVME_OPC_WRITE, nsid, lba, count);
1472 }
1473
1474 static inline
1475 void    nvme_ns_read_cmd(struct nvme_command *cmd, uint32_t nsid,
1476     uint64_t lba, uint32_t count)
1477 {
1478         nvme_ns_rw_cmd(cmd, NVME_OPC_READ, nsid, lba, count);
1479 }
1480
1481 static inline
1482 void    nvme_ns_trim_cmd(struct nvme_command *cmd, uint32_t nsid,
1483     uint32_t num_ranges)
1484 {
1485         cmd->opc = NVME_OPC_DATASET_MANAGEMENT;
1486         cmd->nsid = htole32(nsid);
1487         cmd->cdw10 = htole32(num_ranges - 1);
1488         cmd->cdw11 = htole32(NVME_DSM_ATTR_DEALLOCATE);
1489 }
1490
1491 extern int nvme_use_nvd;
1492
1493 #endif /* _KERNEL */
1494
1495 /* Endianess conversion functions for NVMe structs */
1496 static inline
1497 void    nvme_completion_swapbytes(struct nvme_completion *s)
1498 {
1499
1500         s->cdw0 = le32toh(s->cdw0);
1501         /* omit rsvd1 */
1502         s->sqhd = le16toh(s->sqhd);
1503         s->sqid = le16toh(s->sqid);
1504         /* omit cid */
1505         s->status = le16toh(s->status);
1506 }
1507
1508 static inline
1509 void    nvme_power_state_swapbytes(struct nvme_power_state *s)
1510 {
1511
1512         s->mp = le16toh(s->mp);
1513         s->enlat = le32toh(s->enlat);
1514         s->exlat = le32toh(s->exlat);
1515         s->idlp = le16toh(s->idlp);
1516         s->actp = le16toh(s->actp);
1517 }
1518
1519 static inline
1520 void    nvme_controller_data_swapbytes(struct nvme_controller_data *s)
1521 {
1522         int i;
1523
1524         s->vid = le16toh(s->vid);
1525         s->ssvid = le16toh(s->ssvid);
1526         s->ctrlr_id = le16toh(s->ctrlr_id);
1527         s->ver = le32toh(s->ver);
1528         s->rtd3r = le32toh(s->rtd3r);
1529         s->rtd3e = le32toh(s->rtd3e);
1530         s->oaes = le32toh(s->oaes);
1531         s->ctratt = le32toh(s->ctratt);
1532         s->rrls = le16toh(s->rrls);
1533         s->crdt1 = le16toh(s->crdt1);
1534         s->crdt2 = le16toh(s->crdt2);
1535         s->crdt3 = le16toh(s->crdt3);
1536         s->oacs = le16toh(s->oacs);
1537         s->wctemp = le16toh(s->wctemp);
1538         s->cctemp = le16toh(s->cctemp);
1539         s->mtfa = le16toh(s->mtfa);
1540         s->hmpre = le32toh(s->hmpre);
1541         s->hmmin = le32toh(s->hmmin);
1542         s->rpmbs = le32toh(s->rpmbs);
1543         s->edstt = le16toh(s->edstt);
1544         s->kas = le16toh(s->kas);
1545         s->hctma = le16toh(s->hctma);
1546         s->mntmt = le16toh(s->mntmt);
1547         s->mxtmt = le16toh(s->mxtmt);
1548         s->sanicap = le32toh(s->sanicap);
1549         s->hmminds = le32toh(s->hmminds);
1550         s->hmmaxd = le16toh(s->hmmaxd);
1551         s->nsetidmax = le16toh(s->nsetidmax);
1552         s->endgidmax = le16toh(s->endgidmax);
1553         s->anagrpmax = le32toh(s->anagrpmax);
1554         s->nanagrpid = le32toh(s->nanagrpid);
1555         s->pels = le32toh(s->pels);
1556         s->maxcmd = le16toh(s->maxcmd);
1557         s->nn = le32toh(s->nn);
1558         s->oncs = le16toh(s->oncs);
1559         s->fuses = le16toh(s->fuses);
1560         s->awun = le16toh(s->awun);
1561         s->awupf = le16toh(s->awupf);
1562         s->acwu = le16toh(s->acwu);
1563         s->sgls = le32toh(s->sgls);
1564         s->mnan = le32toh(s->mnan);
1565         for (i = 0; i < 32; i++)
1566                 nvme_power_state_swapbytes(&s->power_state[i]);
1567 }
1568
1569 static inline
1570 void    nvme_namespace_data_swapbytes(struct nvme_namespace_data *s)
1571 {
1572         int i;
1573
1574         s->nsze = le64toh(s->nsze);
1575         s->ncap = le64toh(s->ncap);
1576         s->nuse = le64toh(s->nuse);
1577         s->nawun = le16toh(s->nawun);
1578         s->nawupf = le16toh(s->nawupf);
1579         s->nacwu = le16toh(s->nacwu);
1580         s->nabsn = le16toh(s->nabsn);
1581         s->nabo = le16toh(s->nabo);
1582         s->nabspf = le16toh(s->nabspf);
1583         s->noiob = le16toh(s->noiob);
1584         s->npwg = le16toh(s->npwg);
1585         s->npwa = le16toh(s->npwa);
1586         s->npdg = le16toh(s->npdg);
1587         s->npda = le16toh(s->npda);
1588         s->nows = le16toh(s->nows);
1589         s->anagrpid = le32toh(s->anagrpid);
1590         s->nvmsetid = le16toh(s->nvmsetid);
1591         s->endgid = le16toh(s->endgid);
1592         for (i = 0; i < 16; i++)
1593                 s->lbaf[i] = le32toh(s->lbaf[i]);
1594 }
1595
1596 static inline
1597 void    nvme_error_information_entry_swapbytes(struct nvme_error_information_entry *s)
1598 {
1599
1600         s->error_count = le64toh(s->error_count);
1601         s->sqid = le16toh(s->sqid);
1602         s->cid = le16toh(s->cid);
1603         s->status = le16toh(s->status);
1604         s->error_location = le16toh(s->error_location);
1605         s->lba = le64toh(s->lba);
1606         s->nsid = le32toh(s->nsid);
1607 }
1608
1609 static inline
1610 void    nvme_le128toh(void *p)
1611 {
1612 #if _BYTE_ORDER != _LITTLE_ENDIAN
1613         /* Swap 16 bytes in place */
1614         char *tmp = (char*)p;
1615         char b;
1616         int i;
1617         for (i = 0; i < 8; i++) {
1618                 b = tmp[i];
1619                 tmp[i] = tmp[15-i];
1620                 tmp[15-i] = b;
1621         }
1622 #else
1623         (void)p;
1624 #endif
1625 }
1626
1627 static inline
1628 void    nvme_health_information_page_swapbytes(struct nvme_health_information_page *s)
1629 {
1630         int i;
1631
1632         s->temperature = le16toh(s->temperature);
1633         nvme_le128toh((void *)s->data_units_read);
1634         nvme_le128toh((void *)s->data_units_written);
1635         nvme_le128toh((void *)s->host_read_commands);
1636         nvme_le128toh((void *)s->host_write_commands);
1637         nvme_le128toh((void *)s->controller_busy_time);
1638         nvme_le128toh((void *)s->power_cycles);
1639         nvme_le128toh((void *)s->power_on_hours);
1640         nvme_le128toh((void *)s->unsafe_shutdowns);
1641         nvme_le128toh((void *)s->media_errors);
1642         nvme_le128toh((void *)s->num_error_info_log_entries);
1643         s->warning_temp_time = le32toh(s->warning_temp_time);
1644         s->error_temp_time = le32toh(s->error_temp_time);
1645         for (i = 0; i < 8; i++)
1646                 s->temp_sensor[i] = le16toh(s->temp_sensor[i]);
1647 }
1648
1649
1650 static inline
1651 void    nvme_firmware_page_swapbytes(struct nvme_firmware_page *s)
1652 {
1653         int i;
1654
1655         for (i = 0; i < 7; i++)
1656                 s->revision[i] = le64toh(s->revision[i]);
1657 }
1658
1659 static inline
1660 void    nvme_ns_list_swapbytes(struct nvme_ns_list *s)
1661 {
1662         int i;
1663
1664         for (i = 0; i < 1024; i++)
1665                 s->ns[i] = le32toh(s->ns[i]);
1666 }
1667
1668 static inline
1669 void    intel_log_temp_stats_swapbytes(struct intel_log_temp_stats *s)
1670 {
1671
1672         s->current = le64toh(s->current);
1673         s->overtemp_flag_last = le64toh(s->overtemp_flag_last);
1674         s->overtemp_flag_life = le64toh(s->overtemp_flag_life);
1675         s->max_temp = le64toh(s->max_temp);
1676         s->min_temp = le64toh(s->min_temp);
1677         /* omit _rsvd[] */
1678         s->max_oper_temp = le64toh(s->max_oper_temp);
1679         s->min_oper_temp = le64toh(s->min_oper_temp);
1680         s->est_offset = le64toh(s->est_offset);
1681 }
1682
1683 #endif /* __NVME_H__ */