mirror of https://github.com/acidanthera/audk.git
Fix comments format error.Fsp1.1 update.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: "Yao, Jiewen" <jiewen.yao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16843 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
8c4cf6e769
commit
6ca9135a65
|
@ -43,7 +43,7 @@ UINT64 mIdtEntryTemplate = 0xffff8e000008ffe4ULL;
|
|||
@param[in] BootFirmwareVolume Base address of the Boot Firmware Volume.
|
||||
@param[in] PeiCore PeiCore entry point.
|
||||
@param[in] BootloaderStack Bootloader stack.
|
||||
@param[in] ApiIdx the index of API
|
||||
@param[in] ApiIdx the index of API.
|
||||
|
||||
@return This function never returns.
|
||||
|
||||
|
|
|
@ -109,6 +109,7 @@ InitializeFloatingPointUnits (
|
|||
@param[in] BootFirmwareVolume Base address of the Boot Firmware Volume.
|
||||
@param[in] PeiCore PeiCore entry point.
|
||||
@param[in] BootloaderStack Bootloader stack.
|
||||
@param[in] ApiIdx the index of API.
|
||||
|
||||
@return This function never returns.
|
||||
|
||||
|
|
|
@ -213,7 +213,7 @@ EFI_STATUS
|
|||
each FSP release.
|
||||
After FspMemInit completes its execution, it passes the pointer to the HobList and
|
||||
returns to the boot loader from where it was called. Bootloader is responsible to
|
||||
migrate it’s stack and data to Memory.
|
||||
migrate it's stack and data to Memory.
|
||||
FspMemoryInit, TempRamExit and FspSiliconInit APIs provide an alternate method to
|
||||
complete the silicon initialization and provides bootloader an opportunity to get
|
||||
control after system memory is available and before the temporary RAM is torn down.
|
||||
|
|
|
@ -182,7 +182,7 @@ GetFspInfoHeader (
|
|||
);
|
||||
|
||||
/**
|
||||
This function gets FSP API calling mode
|
||||
This function gets FSP API calling mode.
|
||||
|
||||
@retval API calling mode
|
||||
**/
|
||||
|
@ -193,7 +193,7 @@ GetFspApiCallingMode (
|
|||
);
|
||||
|
||||
/**
|
||||
This function sets FSP API calling mode
|
||||
This function sets FSP API calling mode.
|
||||
|
||||
@param[in] Mode API calling mode
|
||||
**/
|
||||
|
|
|
@ -38,7 +38,7 @@ FspMigrateTemporaryMemory (
|
|||
);
|
||||
|
||||
/**
|
||||
Set a new stack frame for the continuation function
|
||||
Set a new stack frame for the continuation function.
|
||||
|
||||
**/
|
||||
VOID
|
||||
|
|
|
@ -332,7 +332,7 @@ GetFspInfoHeader (
|
|||
}
|
||||
|
||||
/**
|
||||
This function gets FSP API calling mode
|
||||
This function gets FSP API calling mode.
|
||||
|
||||
@retval API calling mode
|
||||
**/
|
||||
|
@ -346,7 +346,7 @@ GetFspApiCallingMode (
|
|||
}
|
||||
|
||||
/**
|
||||
This function sets FSP API calling mode
|
||||
This function sets FSP API calling mode.
|
||||
|
||||
@param[in] Mode API calling mode
|
||||
**/
|
||||
|
|
|
@ -37,11 +37,25 @@
|
|||
|
||||
extern EFI_PEI_NOTIFY_DESCRIPTOR mS3EndOfPeiNotifyDesc;
|
||||
|
||||
/**
|
||||
Do FSP initialization based on FspApi version 1.
|
||||
|
||||
@param[in] FspHeader FSP header pointer.
|
||||
|
||||
@return FSP initialization status.
|
||||
**/
|
||||
EFI_STATUS
|
||||
PeiFspInitV1 (
|
||||
IN FSP_INFO_HEADER *FspHeader
|
||||
);
|
||||
|
||||
/**
|
||||
Do FSP initialization based on FspApi version 2.
|
||||
|
||||
@param[in] FspHeader FSP header pointer.
|
||||
|
||||
@return FSP initialization status.
|
||||
**/
|
||||
EFI_STATUS
|
||||
PeiFspInitV2 (
|
||||
IN FSP_INFO_HEADER *FspHeader
|
||||
|
|
Loading…
Reference in New Issue