mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg/CpuMpPei: Fix typo and add some comments
Cc: Feng Tian <feng.tian@intel.com> Cc: Michael Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan <jeff.fan@intel.com> Reviewed-by: Feng Tian <feng.tian@Intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19090 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
f40a7de450
commit
c972495ed0
|
@ -212,7 +212,7 @@ RestoreVolatileRegisters (
|
||||||
This function will be called from AP reset code if BSP uses WakeUpAP.
|
This function will be called from AP reset code if BSP uses WakeUpAP.
|
||||||
|
|
||||||
@param ExchangeInfo Pointer to the MP exchange info buffer
|
@param ExchangeInfo Pointer to the MP exchange info buffer
|
||||||
@param NumApsExecuting Number of curret executing AP
|
@param NumApsExecuting Number of current executing AP
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
EFIAPI
|
EFIAPI
|
||||||
|
@ -268,6 +268,9 @@ ApCFunction (
|
||||||
(PeiCpuMpData->ApFunction != 0)) {
|
(PeiCpuMpData->ApFunction != 0)) {
|
||||||
PeiCpuMpData->CpuData[ProcessorNumber].State = CpuStateBusy;
|
PeiCpuMpData->CpuData[ProcessorNumber].State = CpuStateBusy;
|
||||||
Procedure = (EFI_AP_PROCEDURE)(UINTN)PeiCpuMpData->ApFunction;
|
Procedure = (EFI_AP_PROCEDURE)(UINTN)PeiCpuMpData->ApFunction;
|
||||||
|
//
|
||||||
|
// Invoke AP function here
|
||||||
|
//
|
||||||
Procedure ((VOID *)(UINTN)PeiCpuMpData->ApFunctionArgument);
|
Procedure ((VOID *)(UINTN)PeiCpuMpData->ApFunctionArgument);
|
||||||
PeiCpuMpData->CpuData[ProcessorNumber].State = CpuStateIdle;
|
PeiCpuMpData->CpuData[ProcessorNumber].State = CpuStateIdle;
|
||||||
}
|
}
|
||||||
|
@ -612,7 +615,7 @@ CpuMpEndOfPeiCallback (
|
||||||
EFI_PEI_HOB_POINTERS Hob;
|
EFI_PEI_HOB_POINTERS Hob;
|
||||||
EFI_HOB_MEMORY_ALLOCATION *MemoryHob;
|
EFI_HOB_MEMORY_ALLOCATION *MemoryHob;
|
||||||
|
|
||||||
DEBUG ((EFI_D_INFO, "CpuMpPei: CpuMpEndOfPeiCallback () invokded\n"));
|
DEBUG ((EFI_D_INFO, "CpuMpPei: CpuMpEndOfPeiCallback () invoked\n"));
|
||||||
|
|
||||||
Status = PeiServicesGetBootMode (&BootMode);
|
Status = PeiServicesGetBootMode (&BootMode);
|
||||||
ASSERT_EFI_ERROR (Status);
|
ASSERT_EFI_ERROR (Status);
|
||||||
|
|
Loading…
Reference in New Issue