8ebb6dddb5
Add support for simple NVDIMM v1.2 namespaces from the UEFI version 2.7 specification. The combination of NVDIMM regions and labels can lead to a wide variety of namespace layouts. Here we support a simple subset of namespaces where each NVDIMM SPA range is composed of a single region per member dimm. Submitted by: D Scott Phillips <d.scott.phillips@intel.com> Discussed with: kib MFC after: 1 week Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D18736
14 lines
185 B
Makefile
14 lines
185 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/nvdimm
|
|
|
|
KMOD= nvdimm
|
|
SRCS= nvdimm.c \
|
|
nvdimm_nfit.c \
|
|
nvdimm_ns.c \
|
|
nvdimm_spa.c
|
|
|
|
SRCS+= acpi_if.h bus_if.h device_if.h
|
|
|
|
.include <bsd.kmod.mk>
|