OvmfPkg: Use newly defined Unaccepted Memory Type
EFI_RESOURCE_MEMORY_UNACCEPTED has been officially defined in the PI 1.8 specification. So all temporary solutions have been replaced with the actual definition. Cc: Felix Polyudov <felixp@ami.com> Cc: Dhanaraj V <vdhanaraj@ami.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Signed-off-by: Sachin Ganesh <sachinganesh@ami.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> Reviewed-by: Tom Lendacky <thomas.lendacky@amd.com>
This commit is contained in:
committed by
mergify[bot]
parent
f3b0ee0cee
commit
b82c9631da
@@ -19,7 +19,7 @@
|
||||
#include <Library/TdxLib.h>
|
||||
#include <Library/TdxMailboxLib.h>
|
||||
#include <Library/SynchronizationLib.h>
|
||||
#include <Pi/PrePiHob.h>
|
||||
#include <Pi/PiHob.h>
|
||||
#include <WorkArea.h>
|
||||
#include <ConfidentialComputingGuestAttr.h>
|
||||
#include <Library/TdxHelperLib.h>
|
||||
@@ -351,7 +351,7 @@ AcceptMemoryForAPsStack (
|
||||
if (Hob.Header->HobType == EFI_HOB_TYPE_RESOURCE_DESCRIPTOR) {
|
||||
DEBUG ((DEBUG_INFO, "\nResourceType: 0x%x\n", Hob.ResourceDescriptor->ResourceType));
|
||||
|
||||
if (Hob.ResourceDescriptor->ResourceType == BZ3937_EFI_RESOURCE_MEMORY_UNACCEPTED) {
|
||||
if (Hob.ResourceDescriptor->ResourceType == EFI_RESOURCE_MEMORY_UNACCEPTED) {
|
||||
ResourceLength = Hob.ResourceDescriptor->ResourceLength;
|
||||
PhysicalStart = Hob.ResourceDescriptor->PhysicalStart;
|
||||
PhysicalEnd = PhysicalStart + ResourceLength;
|
||||
@@ -427,7 +427,7 @@ AcceptMemory (
|
||||
//
|
||||
while (!END_OF_HOB_LIST (Hob)) {
|
||||
if (Hob.Header->HobType == EFI_HOB_TYPE_RESOURCE_DESCRIPTOR) {
|
||||
if (Hob.ResourceDescriptor->ResourceType == BZ3937_EFI_RESOURCE_MEMORY_UNACCEPTED) {
|
||||
if (Hob.ResourceDescriptor->ResourceType == EFI_RESOURCE_MEMORY_UNACCEPTED) {
|
||||
PhysicalStart = Hob.ResourceDescriptor->PhysicalStart;
|
||||
PhysicalEnd = PhysicalStart + Hob.ResourceDescriptor->ResourceLength;
|
||||
|
||||
@@ -563,7 +563,7 @@ ValidateHobList (
|
||||
EFI_RESOURCE_MEMORY_MAPPED_IO_PORT,
|
||||
EFI_RESOURCE_MEMORY_RESERVED,
|
||||
EFI_RESOURCE_IO_RESERVED,
|
||||
BZ3937_EFI_RESOURCE_MEMORY_UNACCEPTED
|
||||
EFI_RESOURCE_MEMORY_UNACCEPTED
|
||||
};
|
||||
|
||||
if (VmmHobList == NULL) {
|
||||
|
Reference in New Issue
Block a user