mirror of https://github.com/acidanthera/audk.git
BaseTools: Bootable NVDIMM namespaces
Provided a mechanism for UEFI FW to identify and hand off bootable NVDIMM namespaces to the OS by standardizing the EFI device path. EFI device path for physical NVDIMM devices changed from an ACPI _ADR device to an ACPI NVDIMM device for correctness. (UEFI 2.8 mantis 1858) Signed-off-by: Oleksiy Yakovlev <oleksiyy@ami.com> Reviewed-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
This commit is contained in:
parent
8adad18a94
commit
5c7526f501
|
@ -719,6 +719,18 @@ typedef struct {
|
|||
UINT8 StopBits;
|
||||
} UART_DEVICE_PATH;
|
||||
|
||||
///
|
||||
/// NVDIMM Namespace Device Path SubType.
|
||||
///
|
||||
#define NVDIMM_NAMESPACE_DP 0x20
|
||||
typedef struct {
|
||||
EFI_DEVICE_PATH_PROTOCOL Header;
|
||||
///
|
||||
/// Namespace unique label identifier UUID.
|
||||
///
|
||||
EFI_GUID Uuid;
|
||||
} NVDIMM_NAMESPACE_DEVICE_PATH;
|
||||
|
||||
//
|
||||
// Use VENDOR_DEVICE_PATH struct
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue