diff options
| author | Dan Williams <dan.j.williams@intel.com> | 2015-05-31 15:02:11 -0400 |
|---|---|---|
| committer | Dan Williams <dan.j.williams@intel.com> | 2015-06-24 21:24:10 -0400 |
| commit | 3d88002e4a7bd40f355550284c6cd140e6fe29dc (patch) | |
| tree | 5934604ed6e21153ada873c7042c4037ef20ecdc /include/uapi/linux | |
| parent | 1f7df6f88b9245a7f2d0f8ecbc97dc88c8d0d8e1 (diff) | |
libnvdimm: support for legacy (non-aliasing) nvdimms
The libnvdimm region driver is an intermediary driver that translates
non-volatile "region"s into "namespace" sub-devices that are surfaced by
persistent memory block-device drivers (PMEM and BLK).
ACPI 6 introduces the concept that a given nvdimm may simultaneously
offer multiple access modes to its media through direct PMEM load/store
access, or windowed BLK mode. Existing nvdimms mostly implement a PMEM
interface, some offer a BLK-like mode, but never both as ACPI 6 defines.
If an nvdimm is single interfaced, then there is no need for dimm
metadata labels. For these devices we can take the region boundaries
directly to create a child namespace device (nd_namespace_io).
Acked-by: Christoph Hellwig <hch@lst.de>
Tested-by: Toshi Kani <toshi.kani@hp.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/ndctl.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/uapi/linux/ndctl.h b/include/uapi/linux/ndctl.h index 37640916d146..174b6371dcc1 100644 --- a/include/uapi/linux/ndctl.h +++ b/include/uapi/linux/ndctl.h | |||
| @@ -177,8 +177,18 @@ static inline const char *nvdimm_cmd_name(unsigned cmd) | |||
| 177 | 177 | ||
| 178 | 178 | ||
| 179 | #define ND_DEVICE_DIMM 1 /* nd_dimm: container for "config data" */ | 179 | #define ND_DEVICE_DIMM 1 /* nd_dimm: container for "config data" */ |
| 180 | #define ND_DEVICE_REGION_PMEM 2 /* nd_region: (parent of PMEM namespaces) */ | ||
| 181 | #define ND_DEVICE_REGION_BLK 3 /* nd_region: (parent of BLK namespaces) */ | ||
| 182 | #define ND_DEVICE_NAMESPACE_IO 4 /* legacy persistent memory */ | ||
| 183 | #define ND_DEVICE_NAMESPACE_PMEM 5 /* PMEM namespace (may alias with BLK) */ | ||
| 184 | #define ND_DEVICE_NAMESPACE_BLK 6 /* BLK namespace (may alias with PMEM) */ | ||
| 180 | 185 | ||
| 181 | enum nd_driver_flags { | 186 | enum nd_driver_flags { |
| 182 | ND_DRIVER_DIMM = 1 << ND_DEVICE_DIMM, | 187 | ND_DRIVER_DIMM = 1 << ND_DEVICE_DIMM, |
| 188 | ND_DRIVER_REGION_PMEM = 1 << ND_DEVICE_REGION_PMEM, | ||
| 189 | ND_DRIVER_REGION_BLK = 1 << ND_DEVICE_REGION_BLK, | ||
| 190 | ND_DRIVER_NAMESPACE_IO = 1 << ND_DEVICE_NAMESPACE_IO, | ||
| 191 | ND_DRIVER_NAMESPACE_PMEM = 1 << ND_DEVICE_NAMESPACE_PMEM, | ||
| 192 | ND_DRIVER_NAMESPACE_BLK = 1 << ND_DEVICE_NAMESPACE_BLK, | ||
| 183 | }; | 193 | }; |
| 184 | #endif /* __NDCTL_H__ */ | 194 | #endif /* __NDCTL_H__ */ |
