2 * Copyright (c) 2014-2016, Intel Corporation.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU Lesser General Public License,
6 * version 2.1, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT ANY
9 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
16 #include <linux/types.h>
18 struct nd_cmd_dimm_flags
{
23 struct nd_cmd_get_config_size
{
29 struct nd_cmd_get_config_data_hdr
{
36 struct nd_cmd_set_config_hdr
{
42 struct nd_cmd_vendor_hdr
{
48 struct nd_cmd_vendor_tail
{
54 struct nd_cmd_ars_cap
{
64 struct nd_cmd_ars_start
{
74 struct nd_cmd_ars_status
{
79 __u64 restart_address
;
84 struct nd_ars_record
{
89 } __packed records
[0];
92 struct nd_cmd_clear_error
{
101 ND_CMD_IMPLEMENTED
= 0,
105 ND_CMD_ARS_START
= 2,
106 ND_CMD_ARS_STATUS
= 3,
107 ND_CMD_CLEAR_ERROR
= 4,
109 /* per-dimm commands */
111 ND_CMD_SMART_THRESHOLD
= 2,
112 ND_CMD_DIMM_FLAGS
= 3,
113 ND_CMD_GET_CONFIG_SIZE
= 4,
114 ND_CMD_GET_CONFIG_DATA
= 5,
115 ND_CMD_SET_CONFIG_DATA
= 6,
116 ND_CMD_VENDOR_EFFECT_LOG_SIZE
= 7,
117 ND_CMD_VENDOR_EFFECT_LOG
= 8,
124 ND_ARS_PERSISTENT
= 2,
125 ND_ARS_RETURN_PREV_DATA
= 1 << 1,
126 ND_CONFIG_LOCKED
= 1,
129 static inline const char *nvdimm_bus_cmd_name(unsigned cmd
)
131 static const char * const names
[] = {
132 [ND_CMD_ARS_CAP
] = "ars_cap",
133 [ND_CMD_ARS_START
] = "ars_start",
134 [ND_CMD_ARS_STATUS
] = "ars_status",
135 [ND_CMD_CLEAR_ERROR
] = "clear_error",
136 [ND_CMD_CALL
] = "cmd_call",
139 if (cmd
< ARRAY_SIZE(names
) && names
[cmd
])
144 static inline const char *nvdimm_cmd_name(unsigned cmd
)
146 static const char * const names
[] = {
147 [ND_CMD_SMART
] = "smart",
148 [ND_CMD_SMART_THRESHOLD
] = "smart_thresh",
149 [ND_CMD_DIMM_FLAGS
] = "flags",
150 [ND_CMD_GET_CONFIG_SIZE
] = "get_size",
151 [ND_CMD_GET_CONFIG_DATA
] = "get_data",
152 [ND_CMD_SET_CONFIG_DATA
] = "set_data",
153 [ND_CMD_VENDOR_EFFECT_LOG_SIZE
] = "effect_size",
154 [ND_CMD_VENDOR_EFFECT_LOG
] = "effect_log",
155 [ND_CMD_VENDOR
] = "vendor",
156 [ND_CMD_CALL
] = "cmd_call",
159 if (cmd
< ARRAY_SIZE(names
) && names
[cmd
])
166 #define ND_IOCTL_DIMM_FLAGS _IOWR(ND_IOCTL, ND_CMD_DIMM_FLAGS,\
167 struct nd_cmd_dimm_flags)
169 #define ND_IOCTL_GET_CONFIG_SIZE _IOWR(ND_IOCTL, ND_CMD_GET_CONFIG_SIZE,\
170 struct nd_cmd_get_config_size)
172 #define ND_IOCTL_GET_CONFIG_DATA _IOWR(ND_IOCTL, ND_CMD_GET_CONFIG_DATA,\
173 struct nd_cmd_get_config_data_hdr)
175 #define ND_IOCTL_SET_CONFIG_DATA _IOWR(ND_IOCTL, ND_CMD_SET_CONFIG_DATA,\
176 struct nd_cmd_set_config_hdr)
178 #define ND_IOCTL_VENDOR _IOWR(ND_IOCTL, ND_CMD_VENDOR,\
179 struct nd_cmd_vendor_hdr)
181 #define ND_IOCTL_ARS_CAP _IOWR(ND_IOCTL, ND_CMD_ARS_CAP,\
182 struct nd_cmd_ars_cap)
184 #define ND_IOCTL_ARS_START _IOWR(ND_IOCTL, ND_CMD_ARS_START,\
185 struct nd_cmd_ars_start)
187 #define ND_IOCTL_ARS_STATUS _IOWR(ND_IOCTL, ND_CMD_ARS_STATUS,\
188 struct nd_cmd_ars_status)
190 #define ND_IOCTL_CLEAR_ERROR _IOWR(ND_IOCTL, ND_CMD_CLEAR_ERROR,\
191 struct nd_cmd_clear_error)
193 #define ND_DEVICE_DIMM 1 /* nd_dimm: container for "config data" */
194 #define ND_DEVICE_REGION_PMEM 2 /* nd_region: (parent of PMEM namespaces) */
195 #define ND_DEVICE_REGION_BLK 3 /* nd_region: (parent of BLK namespaces) */
196 #define ND_DEVICE_NAMESPACE_IO 4 /* legacy persistent memory */
197 #define ND_DEVICE_NAMESPACE_PMEM 5 /* PMEM namespace (may alias with BLK) */
198 #define ND_DEVICE_NAMESPACE_BLK 6 /* BLK namespace (may alias with PMEM) */
199 #define ND_DEVICE_DAX_PMEM 7 /* Device DAX interface to pmem */
201 enum nd_driver_flags
{
202 ND_DRIVER_DIMM
= 1 << ND_DEVICE_DIMM
,
203 ND_DRIVER_REGION_PMEM
= 1 << ND_DEVICE_REGION_PMEM
,
204 ND_DRIVER_REGION_BLK
= 1 << ND_DEVICE_REGION_BLK
,
205 ND_DRIVER_NAMESPACE_IO
= 1 << ND_DEVICE_NAMESPACE_IO
,
206 ND_DRIVER_NAMESPACE_PMEM
= 1 << ND_DEVICE_NAMESPACE_PMEM
,
207 ND_DRIVER_NAMESPACE_BLK
= 1 << ND_DEVICE_NAMESPACE_BLK
,
208 ND_DRIVER_DAX_PMEM
= 1 << ND_DEVICE_DAX_PMEM
,
212 ND_MIN_NAMESPACE_SIZE
= PAGE_SIZE
,
216 ARS_STATUS_MASK
= 0x0000FFFF,
217 ARS_EXT_STATUS_SHIFT
= 16,
223 * is a wrapper to a quasi pass thru interface for invoking firmware
224 * associated with nvdimms.
228 * nd_family corresponds to the firmware (e.g. DSM) interface.
230 * nd_command are the function index advertised by the firmware.
232 * nd_size_in is the size of the input parameters being passed to firmware
236 * nd_fw_size is the size of the data firmware wants to return for
237 * the call. If nd_fw_size is greater than size of nd_size_out, only
238 * the first nd_size_out bytes are returned.
242 __u64 nd_family
; /* family of commands */
244 __u32 nd_size_in
; /* INPUT: size of input args */
245 __u32 nd_size_out
; /* INPUT: size of payload */
246 __u32 nd_reserved2
[9]; /* reserved must be zero */
247 __u32 nd_fw_size
; /* OUTPUT: size fw wants to return */
248 unsigned char nd_payload
[]; /* Contents of call */
251 /* These NVDIMM families represent pre-standardization command sets */
252 #define NVDIMM_FAMILY_INTEL 0
253 #define NVDIMM_FAMILY_HPE1 1
254 #define NVDIMM_FAMILY_HPE2 2
255 #define NVDIMM_FAMILY_MSFT 3
257 #define ND_IOCTL_CALL _IOWR(ND_IOCTL, ND_CMD_CALL,\
260 #endif /* __NDCTL_H__ */