mirror of https://github.com/acidanthera/audk.git
OvmfPkg/PlatformPei: Refactor MaxCpuCountInitialization
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3863 MaxCpuCountInitialization is splitted into two: - PlatformMaxCpuCountInitialization is for PlatformInitLib - MaxCpuCountInitialization is for PlatformPei. It calls PlatformMaxCpuCountInitialization then sets PCDs. Cc: Ard Biesheuvel <ardb+tianocore@kernel.org> Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Brijesh Singh <brijesh.singh@amd.com> Cc: Erdem Aktas <erdemaktas@google.com> Cc: James Bottomley <jejb@linux.ibm.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Tom Lendacky <thomas.lendacky@amd.com> Cc: Gerd Hoffmann <kraxel@redhat.com> Cc: Sebastien Boeuf <sebastien.boeuf@intel.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> Signed-off-by: Min Xu <min.m.xu@intel.com>
This commit is contained in:
parent
3dd47f9544
commit
432e4acd87
|
@ -539,16 +539,15 @@ Q35BoardVerification (
|
|||
|
||||
/**
|
||||
Fetch the boot CPU count and the possible CPU count from QEMU, and expose
|
||||
them to UefiCpuPkg modules. Set the mMaxCpuCount variable.
|
||||
them to UefiCpuPkg modules. Set the MaxCpuCount field in PlatformInfoHob.
|
||||
**/
|
||||
VOID
|
||||
MaxCpuCountInitialization (
|
||||
PlatformMaxCpuCountInitialization (
|
||||
IN OUT EFI_HOB_PLATFORM_INFO *PlatformInfoHob
|
||||
)
|
||||
{
|
||||
UINT16 BootCpuCount;
|
||||
UINT32 MaxCpuCount;
|
||||
RETURN_STATUS PcdStatus;
|
||||
UINT16 BootCpuCount;
|
||||
UINT32 MaxCpuCount;
|
||||
|
||||
//
|
||||
// Try to fetch the boot CPU count.
|
||||
|
@ -705,15 +704,29 @@ MaxCpuCountInitialization (
|
|||
));
|
||||
ASSERT (BootCpuCount <= MaxCpuCount);
|
||||
|
||||
PcdStatus = PcdSet32S (PcdCpuBootLogicalProcessorNumber, BootCpuCount);
|
||||
ASSERT_RETURN_ERROR (PcdStatus);
|
||||
PcdStatus = PcdSet32S (PcdCpuMaxLogicalProcessorNumber, MaxCpuCount);
|
||||
ASSERT_RETURN_ERROR (PcdStatus);
|
||||
|
||||
PlatformInfoHob->PcdCpuMaxLogicalProcessorNumber = MaxCpuCount;
|
||||
PlatformInfoHob->PcdCpuBootLogicalProcessorNumber = BootCpuCount;
|
||||
}
|
||||
|
||||
/**
|
||||
Fetch the boot CPU count and the possible CPU count from QEMU, and expose
|
||||
them to UefiCpuPkg modules. Set the MaxCpuCount field in PlatformInfoHob.
|
||||
**/
|
||||
VOID
|
||||
MaxCpuCountInitialization (
|
||||
IN OUT EFI_HOB_PLATFORM_INFO *PlatformInfoHob
|
||||
)
|
||||
{
|
||||
RETURN_STATUS PcdStatus;
|
||||
|
||||
PlatformMaxCpuCountInitialization (PlatformInfoHob);
|
||||
|
||||
PcdStatus = PcdSet32S (PcdCpuBootLogicalProcessorNumber, PlatformInfoHob->PcdCpuBootLogicalProcessorNumber);
|
||||
ASSERT_RETURN_ERROR (PcdStatus);
|
||||
PcdStatus = PcdSet32S (PcdCpuMaxLogicalProcessorNumber, PlatformInfoHob->PcdCpuMaxLogicalProcessorNumber);
|
||||
ASSERT_RETURN_ERROR (PcdStatus);
|
||||
}
|
||||
|
||||
/**
|
||||
Perform Platform PEI initialization.
|
||||
|
||||
|
|
Loading…
Reference in New Issue