mirror of https://github.com/acidanthera/audk.git
MdeModulePkg DxeCore: Add memory more reliable support.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17400 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e919c766d5
commit
74705ca53e
|
@ -96,6 +96,7 @@ GCD_ATTRIBUTE_CONVERSION_ENTRY mAttributeConversionTable[] = {
|
||||||
{ EFI_RESOURCE_ATTRIBUTE_INITIALIZED, EFI_MEMORY_INITIALIZED, FALSE },
|
{ EFI_RESOURCE_ATTRIBUTE_INITIALIZED, EFI_MEMORY_INITIALIZED, FALSE },
|
||||||
{ EFI_RESOURCE_ATTRIBUTE_TESTED, EFI_MEMORY_TESTED, FALSE },
|
{ EFI_RESOURCE_ATTRIBUTE_TESTED, EFI_MEMORY_TESTED, FALSE },
|
||||||
{ EFI_RESOURCE_ATTRIBUTE_PERSISTABLE, EFI_MEMORY_NV, TRUE },
|
{ EFI_RESOURCE_ATTRIBUTE_PERSISTABLE, EFI_MEMORY_NV, TRUE },
|
||||||
|
{ EFI_RESOURCE_ATTRIBUTE_MORE_RELIABLE, EFI_MEMORY_MORE_RELIABLE, TRUE },
|
||||||
{ 0, 0, FALSE }
|
{ 0, 0, FALSE }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -108,6 +109,7 @@ GLOBAL_REMOVE_IF_UNREFERENCED CONST CHAR8 *mGcdMemoryTypeNames[] = {
|
||||||
"SystemMem", // EfiGcdMemoryTypeSystemMemory
|
"SystemMem", // EfiGcdMemoryTypeSystemMemory
|
||||||
"MMIO ", // EfiGcdMemoryTypeMemoryMappedIo
|
"MMIO ", // EfiGcdMemoryTypeMemoryMappedIo
|
||||||
"PersistentMem",// EfiGcdMemoryTypePersistentMemory
|
"PersistentMem",// EfiGcdMemoryTypePersistentMemory
|
||||||
|
"MoreRelia", // EfiGcdMemoryTypeMoreReliable
|
||||||
"Unknown " // EfiGcdMemoryTypeMaximum
|
"Unknown " // EfiGcdMemoryTypeMaximum
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1383,9 +1385,9 @@ CoreAddMemorySpace (
|
||||||
|
|
||||||
Status = CoreInternalAddMemorySpace (GcdMemoryType, BaseAddress, Length, Capabilities);
|
Status = CoreInternalAddMemorySpace (GcdMemoryType, BaseAddress, Length, Capabilities);
|
||||||
|
|
||||||
if (!EFI_ERROR (Status) && GcdMemoryType == EfiGcdMemoryTypeSystemMemory) {
|
if (!EFI_ERROR (Status) && ((GcdMemoryType == EfiGcdMemoryTypeSystemMemory) || (GcdMemoryType == EfiGcdMemoryTypeMoreReliable))) {
|
||||||
|
|
||||||
PageBaseAddress = PageAlignLength (BaseAddress);
|
PageBaseAddress = PageAlignAddress (BaseAddress);
|
||||||
PageLength = PageAlignLength (BaseAddress + Length - PageBaseAddress);
|
PageLength = PageAlignLength (BaseAddress + Length - PageBaseAddress);
|
||||||
|
|
||||||
Status = CoreAllocateMemorySpace (
|
Status = CoreAllocateMemorySpace (
|
||||||
|
@ -1991,7 +1993,7 @@ CoreConvertResourceDescriptorHobAttributesToCapabilities (
|
||||||
// Convert the Resource HOB Attributes to an EFI Memory Capabilities mask
|
// Convert the Resource HOB Attributes to an EFI Memory Capabilities mask
|
||||||
//
|
//
|
||||||
for (Capabilities = 0, Conversion = mAttributeConversionTable; Conversion->Attribute != 0; Conversion++) {
|
for (Capabilities = 0, Conversion = mAttributeConversionTable; Conversion->Attribute != 0; Conversion++) {
|
||||||
if (Conversion->Memory || (GcdMemoryType != EfiGcdMemoryTypeSystemMemory)) {
|
if (Conversion->Memory || ((GcdMemoryType != EfiGcdMemoryTypeSystemMemory) && (GcdMemoryType != EfiGcdMemoryTypeMoreReliable))) {
|
||||||
if (Attributes & Conversion->Attribute) {
|
if (Attributes & Conversion->Attribute) {
|
||||||
Capabilities |= Conversion->Capability;
|
Capabilities |= Conversion->Capability;
|
||||||
}
|
}
|
||||||
|
@ -2245,7 +2247,11 @@ CoreInitializeMemoryServices (
|
||||||
//
|
//
|
||||||
// Convert the Resource HOB Attributes to an EFI Memory Capabilities mask
|
// Convert the Resource HOB Attributes to an EFI Memory Capabilities mask
|
||||||
//
|
//
|
||||||
|
if ((Attributes & EFI_RESOURCE_ATTRIBUTE_MORE_RELIABLE) == EFI_RESOURCE_ATTRIBUTE_MORE_RELIABLE) {
|
||||||
|
Capabilities = CoreConvertResourceDescriptorHobAttributesToCapabilities (EfiGcdMemoryTypeMoreReliable, Attributes);
|
||||||
|
} else {
|
||||||
Capabilities = CoreConvertResourceDescriptorHobAttributesToCapabilities (EfiGcdMemoryTypeSystemMemory, Attributes);
|
Capabilities = CoreConvertResourceDescriptorHobAttributesToCapabilities (EfiGcdMemoryTypeSystemMemory, Attributes);
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Declare the very first memory region, so the EFI Memory Services are available.
|
// Declare the very first memory region, so the EFI Memory Services are available.
|
||||||
|
@ -2358,8 +2364,12 @@ CoreInitializeGcdServices (
|
||||||
switch (ResourceHob->ResourceType) {
|
switch (ResourceHob->ResourceType) {
|
||||||
case EFI_RESOURCE_SYSTEM_MEMORY:
|
case EFI_RESOURCE_SYSTEM_MEMORY:
|
||||||
if ((ResourceHob->ResourceAttribute & MEMORY_ATTRIBUTE_MASK) == TESTED_MEMORY_ATTRIBUTES) {
|
if ((ResourceHob->ResourceAttribute & MEMORY_ATTRIBUTE_MASK) == TESTED_MEMORY_ATTRIBUTES) {
|
||||||
|
if ((ResourceHob->ResourceAttribute & EFI_RESOURCE_ATTRIBUTE_MORE_RELIABLE) == EFI_RESOURCE_ATTRIBUTE_MORE_RELIABLE) {
|
||||||
|
GcdMemoryType = EfiGcdMemoryTypeMoreReliable;
|
||||||
|
} else {
|
||||||
GcdMemoryType = EfiGcdMemoryTypeSystemMemory;
|
GcdMemoryType = EfiGcdMemoryTypeSystemMemory;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if ((ResourceHob->ResourceAttribute & MEMORY_ATTRIBUTE_MASK) == INITIALIZED_MEMORY_ATTRIBUTES) {
|
if ((ResourceHob->ResourceAttribute & MEMORY_ATTRIBUTE_MASK) == INITIALIZED_MEMORY_ATTRIBUTES) {
|
||||||
GcdMemoryType = EfiGcdMemoryTypeReserved;
|
GcdMemoryType = EfiGcdMemoryTypeReserved;
|
||||||
}
|
}
|
||||||
|
@ -2421,15 +2431,20 @@ CoreInitializeGcdServices (
|
||||||
//
|
//
|
||||||
// Allocate first memory region from the GCD by the DXE core
|
// Allocate first memory region from the GCD by the DXE core
|
||||||
//
|
//
|
||||||
|
Status = CoreGetMemorySpaceDescriptor (MemoryBaseAddress, &Descriptor);
|
||||||
|
if (!EFI_ERROR (Status)) {
|
||||||
|
ASSERT ((Descriptor.GcdMemoryType == EfiGcdMemoryTypeSystemMemory) ||
|
||||||
|
(Descriptor.GcdMemoryType == EfiGcdMemoryTypeMoreReliable));
|
||||||
Status = CoreAllocateMemorySpace (
|
Status = CoreAllocateMemorySpace (
|
||||||
EfiGcdAllocateAddress,
|
EfiGcdAllocateAddress,
|
||||||
EfiGcdMemoryTypeSystemMemory,
|
Descriptor.GcdMemoryType,
|
||||||
0,
|
0,
|
||||||
MemoryLength,
|
MemoryLength,
|
||||||
&MemoryBaseAddress,
|
&MemoryBaseAddress,
|
||||||
gDxeCoreImageHandle,
|
gDxeCoreImageHandle,
|
||||||
NULL
|
NULL
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Walk the HOB list and allocate all memory space that is consumed by memory allocation HOBs,
|
// Walk the HOB list and allocate all memory space that is consumed by memory allocation HOBs,
|
||||||
|
@ -2450,7 +2465,9 @@ CoreInitializeGcdServices (
|
||||||
gDxeCoreImageHandle,
|
gDxeCoreImageHandle,
|
||||||
NULL
|
NULL
|
||||||
);
|
);
|
||||||
if (!EFI_ERROR (Status) && Descriptor.GcdMemoryType == EfiGcdMemoryTypeSystemMemory) {
|
if (!EFI_ERROR (Status) &&
|
||||||
|
((Descriptor.GcdMemoryType == EfiGcdMemoryTypeSystemMemory) ||
|
||||||
|
(Descriptor.GcdMemoryType == EfiGcdMemoryTypeMoreReliable))) {
|
||||||
CoreAddMemoryDescriptor (
|
CoreAddMemoryDescriptor (
|
||||||
MemoryHob->AllocDescriptor.MemoryType,
|
MemoryHob->AllocDescriptor.MemoryType,
|
||||||
MemoryHob->AllocDescriptor.MemoryBaseAddress,
|
MemoryHob->AllocDescriptor.MemoryBaseAddress,
|
||||||
|
@ -2495,7 +2512,8 @@ CoreInitializeGcdServices (
|
||||||
ASSERT (Status == EFI_SUCCESS);
|
ASSERT (Status == EFI_SUCCESS);
|
||||||
|
|
||||||
for (Index = 0; Index < NumberOfDescriptors; Index++) {
|
for (Index = 0; Index < NumberOfDescriptors; Index++) {
|
||||||
if (MemorySpaceMap[Index].GcdMemoryType == EfiGcdMemoryTypeSystemMemory) {
|
if ((MemorySpaceMap[Index].GcdMemoryType == EfiGcdMemoryTypeSystemMemory) ||
|
||||||
|
(MemorySpaceMap[Index].GcdMemoryType == EfiGcdMemoryTypeMoreReliable)) {
|
||||||
if (MemorySpaceMap[Index].ImageHandle == NULL) {
|
if (MemorySpaceMap[Index].ImageHandle == NULL) {
|
||||||
BaseAddress = PageAlignAddress (MemorySpaceMap[Index].BaseAddress);
|
BaseAddress = PageAlignAddress (MemorySpaceMap[Index].BaseAddress);
|
||||||
Length = PageAlignLength (MemorySpaceMap[Index].BaseAddress + MemorySpaceMap[Index].Length - BaseAddress);
|
Length = PageAlignLength (MemorySpaceMap[Index].BaseAddress + MemorySpaceMap[Index].Length - BaseAddress);
|
||||||
|
@ -2510,7 +2528,7 @@ CoreInitializeGcdServices (
|
||||||
);
|
);
|
||||||
Status = CoreAllocateMemorySpace (
|
Status = CoreAllocateMemorySpace (
|
||||||
EfiGcdAllocateAddress,
|
EfiGcdAllocateAddress,
|
||||||
EfiGcdMemoryTypeSystemMemory,
|
MemorySpaceMap[Index].GcdMemoryType,
|
||||||
0,
|
0,
|
||||||
Length,
|
Length,
|
||||||
&BaseAddress,
|
&BaseAddress,
|
||||||
|
|
|
@ -416,7 +416,11 @@ PromoteMemoryResource (
|
||||||
//
|
//
|
||||||
// Update the GCD map
|
// Update the GCD map
|
||||||
//
|
//
|
||||||
|
if ((Entry->Capabilities & EFI_MEMORY_MORE_RELIABLE) == EFI_MEMORY_MORE_RELIABLE) {
|
||||||
|
Entry->GcdMemoryType = EfiGcdMemoryTypeMoreReliable;
|
||||||
|
} else {
|
||||||
Entry->GcdMemoryType = EfiGcdMemoryTypeSystemMemory;
|
Entry->GcdMemoryType = EfiGcdMemoryTypeSystemMemory;
|
||||||
|
}
|
||||||
Entry->Capabilities |= EFI_MEMORY_TESTED;
|
Entry->Capabilities |= EFI_MEMORY_TESTED;
|
||||||
Entry->ImageHandle = gDxeCoreImageHandle;
|
Entry->ImageHandle = gDxeCoreImageHandle;
|
||||||
Entry->DeviceHandle = NULL;
|
Entry->DeviceHandle = NULL;
|
||||||
|
|
Loading…
Reference in New Issue