CorebootModulePkg: Fix various typos
Fix various typos in CorebootModulePkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Coeur <coeur@gmx.fr> Reviewed-by: Benjamin You <benjamin.you@intel.com>
This commit is contained in:
committed by
Benjamin You
parent
68f87b2572
commit
06516768ed
@ -25,7 +25,7 @@ typedef RETURN_STATUS \
|
|||||||
@param Tag The tag id to be found
|
@param Tag The tag id to be found
|
||||||
|
|
||||||
@retval NULL The Tag is not found.
|
@retval NULL The Tag is not found.
|
||||||
@retval Others The poiter to the record found.
|
@retval Others The pointer to the record found.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
VOID *
|
VOID *
|
||||||
@ -51,7 +51,7 @@ CbParseMemoryInfo (
|
|||||||
IN CB_MEM_INFO_CALLBACK MemInfoCallback,
|
IN CB_MEM_INFO_CALLBACK MemInfoCallback,
|
||||||
IN VOID *pParam
|
IN VOID *pParam
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Acquire the coreboot memory table with the given table id
|
Acquire the coreboot memory table with the given table id
|
||||||
|
|
||||||
@ -67,11 +67,11 @@ CbParseMemoryInfo (
|
|||||||
RETURN_STATUS
|
RETURN_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
CbParseCbMemTable (
|
CbParseCbMemTable (
|
||||||
IN UINT32 TableId,
|
IN UINT32 TableId,
|
||||||
IN VOID** pMemTable,
|
IN VOID** pMemTable,
|
||||||
IN UINT32* pMemTableSize
|
IN UINT32* pMemTableSize
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Acquire the acpi table from coreboot
|
Acquire the acpi table from coreboot
|
||||||
|
|
||||||
@ -89,7 +89,7 @@ CbParseAcpiTable (
|
|||||||
IN VOID** pMemTable,
|
IN VOID** pMemTable,
|
||||||
IN UINT32* pMemTableSize
|
IN UINT32* pMemTableSize
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Acquire the smbios table from coreboot
|
Acquire the smbios table from coreboot
|
||||||
|
|
||||||
@ -107,14 +107,14 @@ CbParseSmbiosTable (
|
|||||||
IN VOID** pMemTable,
|
IN VOID** pMemTable,
|
||||||
IN UINT32* pMemTableSize
|
IN UINT32* pMemTableSize
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Find the required fadt information
|
Find the required fadt information
|
||||||
|
|
||||||
@param pPmCtrlReg Pointer to the address of power management control register
|
@param pPmCtrlReg Pointer to the address of power management control register
|
||||||
@param pPmTimerReg Pointer to the address of power management timer register
|
@param pPmTimerReg Pointer to the address of power management timer register
|
||||||
@param pResetReg Pointer to the address of system reset register
|
@param pResetReg Pointer to the address of system reset register
|
||||||
@param pResetValue Pointer to the value to be writen to the system reset register
|
@param pResetValue Pointer to the value to be written to the system reset register
|
||||||
@param pPmEvtReg Pointer to the address of power management event register
|
@param pPmEvtReg Pointer to the address of power management event register
|
||||||
@param pPmGpeEnReg Pointer to the address of power management GPE enable register
|
@param pPmGpeEnReg Pointer to the address of power management GPE enable register
|
||||||
|
|
||||||
@ -132,16 +132,16 @@ CbParseFadtInfo (
|
|||||||
IN UINTN* pPmEvtReg,
|
IN UINTN* pPmEvtReg,
|
||||||
IN UINTN* pPmGpeEnReg
|
IN UINTN* pPmGpeEnReg
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Find the serial port information
|
Find the serial port information
|
||||||
|
|
||||||
@param pRegBase Pointer to the base address of serial port registers
|
@param pRegBase Pointer to the base address of serial port registers
|
||||||
@param pRegAccessType Pointer to the access type of serial port registers
|
@param pRegAccessType Pointer to the access type of serial port registers
|
||||||
@param pRegWidth Pointer to the register width in bytes
|
@param pRegWidth Pointer to the register width in bytes
|
||||||
@param pBaudrate Pointer to the serial port baudrate
|
@param pBaudrate Pointer to the serial port baudrate
|
||||||
@param pInputHertz Pointer to the input clock frequency
|
@param pInputHertz Pointer to the input clock frequency
|
||||||
@param pUartPciAddr Pointer to the UART PCI bus, dev and func address
|
@param pUartPciAddr Pointer to the UART PCI bus, dev and func address
|
||||||
|
|
||||||
@retval RETURN_SUCCESS Successfully find the serial port information.
|
@retval RETURN_SUCCESS Successfully find the serial port information.
|
||||||
@retval RETURN_NOT_FOUND Failed to find the serial port information .
|
@retval RETURN_NOT_FOUND Failed to find the serial port information .
|
||||||
@ -150,12 +150,12 @@ CbParseFadtInfo (
|
|||||||
RETURN_STATUS
|
RETURN_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
CbParseSerialInfo (
|
CbParseSerialInfo (
|
||||||
OUT UINT32 *pRegBase,
|
OUT UINT32 *pRegBase,
|
||||||
OUT UINT32 *pRegAccessType,
|
OUT UINT32 *pRegAccessType,
|
||||||
OUT UINT32 *pRegWidth,
|
OUT UINT32 *pRegWidth,
|
||||||
OUT UINT32 *pBaudrate,
|
OUT UINT32 *pBaudrate,
|
||||||
OUT UINT32 *pInputHertz,
|
OUT UINT32 *pInputHertz,
|
||||||
OUT UINT32 *pUartPciAddr
|
OUT UINT32 *pUartPciAddr
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -174,7 +174,7 @@ CbParseGetCbHeader (
|
|||||||
IN UINTN Level,
|
IN UINTN Level,
|
||||||
IN VOID** HeaderPtr
|
IN VOID** HeaderPtr
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Find the video frame buffer information
|
Find the video frame buffer information
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#include <Library/BaseLib.h>
|
#include <Library/BaseLib.h>
|
||||||
|
|
||||||
//
|
//
|
||||||
// PCI Defintions.
|
// PCI Definitions.
|
||||||
//
|
//
|
||||||
#define PCI_BRIDGE_32_BIT_IO_SPACE 0x01
|
#define PCI_BRIDGE_32_BIT_IO_SPACE 0x01
|
||||||
|
|
||||||
@ -451,7 +451,7 @@ SerialPortWritable (
|
|||||||
// 0 0 No cable connected. Transmit
|
// 0 0 No cable connected. Transmit
|
||||||
// 0 1 No cable connected. Transmit
|
// 0 1 No cable connected. Transmit
|
||||||
// 1 0 Cable connected, but not clear to send. Wait
|
// 1 0 Cable connected, but not clear to send. Wait
|
||||||
// 1 1 Cable connected, and clar to send. Transmit
|
// 1 1 Cable connected, and clear to send. Transmit
|
||||||
//
|
//
|
||||||
return (BOOLEAN) ((SerialPortReadRegister (SerialRegisterBase, R_UART_MSR) & (B_UART_MSR_DSR | B_UART_MSR_CTS)) != (B_UART_MSR_DSR));
|
return (BOOLEAN) ((SerialPortReadRegister (SerialRegisterBase, R_UART_MSR) & (B_UART_MSR_DSR | B_UART_MSR_CTS)) != (B_UART_MSR_DSR));
|
||||||
}
|
}
|
||||||
@ -722,7 +722,7 @@ SerialPortRead (
|
|||||||
/**
|
/**
|
||||||
Polls a serial device to see if there is any data waiting to be read.
|
Polls a serial device to see if there is any data waiting to be read.
|
||||||
|
|
||||||
Polls aserial device to see if there is any data waiting to be read.
|
Polls a serial device to see if there is any data waiting to be read.
|
||||||
If there is data waiting to be read from the serial device, then TRUE is returned.
|
If there is data waiting to be read from the serial device, then TRUE is returned.
|
||||||
If there is no data waiting to be read from the serial device, then FALSE is returned.
|
If there is no data waiting to be read from the serial device, then FALSE is returned.
|
||||||
|
|
||||||
@ -903,13 +903,13 @@ SerialPortGetControl (
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Sets the baud rate, receive FIFO depth, transmit/receice time out, parity,
|
Sets the baud rate, receive FIFO depth, transmit/receive time out, parity,
|
||||||
data bits, and stop bits on a serial device.
|
data bits, and stop bits on a serial device.
|
||||||
|
|
||||||
@param BaudRate The requested baud rate. A BaudRate value of 0 will use the
|
@param BaudRate The requested baud rate. A BaudRate value of 0 will use the
|
||||||
device's default interface speed.
|
device's default interface speed.
|
||||||
On output, the value actually set.
|
On output, the value actually set.
|
||||||
@param ReveiveFifoDepth The requested depth of the FIFO on the receive side of the
|
@param ReceiveFifoDepth The requested depth of the FIFO on the receive side of the
|
||||||
serial interface. A ReceiveFifoDepth value of 0 will use
|
serial interface. A ReceiveFifoDepth value of 0 will use
|
||||||
the device's default FIFO depth.
|
the device's default FIFO depth.
|
||||||
On output, the value actually set.
|
On output, the value actually set.
|
||||||
@ -922,7 +922,7 @@ SerialPortGetControl (
|
|||||||
DefaultParity will use the device's default parity value.
|
DefaultParity will use the device's default parity value.
|
||||||
On output, the value actually set.
|
On output, the value actually set.
|
||||||
@param DataBits The number of data bits to use on the serial device. A DataBits
|
@param DataBits The number of data bits to use on the serial device. A DataBits
|
||||||
vaule of 0 will use the device's default data bit setting.
|
value of 0 will use the device's default data bit setting.
|
||||||
On output, the value actually set.
|
On output, the value actually set.
|
||||||
@param StopBits The number of stop bits to use on this serial device. A StopBits
|
@param StopBits The number of stop bits to use on this serial device. A StopBits
|
||||||
value of DefaultStopBits will use the device's default number of
|
value of DefaultStopBits will use the device's default number of
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
@param val The pointer to packed data.
|
@param val The pointer to packed data.
|
||||||
|
|
||||||
@return the UNIT64 value after convertion.
|
@return the UNIT64 value after conversion.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
UINT64
|
UINT64
|
||||||
@ -91,7 +91,7 @@ CbCheckSum16 (
|
|||||||
@param Tag The tag id to be found
|
@param Tag The tag id to be found
|
||||||
|
|
||||||
@retval NULL The Tag is not found.
|
@retval NULL The Tag is not found.
|
||||||
@retval Others The poiter to the record found.
|
@retval Others The pointer to the record found.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
VOID *
|
VOID *
|
||||||
@ -384,7 +384,7 @@ CbParseSmbiosTable (
|
|||||||
@param pPmCtrlReg Pointer to the address of power management control register
|
@param pPmCtrlReg Pointer to the address of power management control register
|
||||||
@param pPmTimerReg Pointer to the address of power management timer register
|
@param pPmTimerReg Pointer to the address of power management timer register
|
||||||
@param pResetReg Pointer to the address of system reset register
|
@param pResetReg Pointer to the address of system reset register
|
||||||
@param pResetValue Pointer to the value to be writen to the system reset register
|
@param pResetValue Pointer to the value to be written to the system reset register
|
||||||
@param pPmEvtReg Pointer to the address of power management event register
|
@param pPmEvtReg Pointer to the address of power management event register
|
||||||
@param pPmGpeEnReg Pointer to the address of power management GPE enable register
|
@param pPmGpeEnReg Pointer to the address of power management GPE enable register
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ typedef struct _EFI_SATA_CONTROLLER_PRIVATE_DATA {
|
|||||||
UINT8 DeviceCount;
|
UINT8 DeviceCount;
|
||||||
|
|
||||||
//
|
//
|
||||||
// The highest disqulified mode for each attached device,
|
// The highest disqualified mode for each attached device,
|
||||||
// From ATA/ATAPI spec, if a mode is not supported,
|
// From ATA/ATAPI spec, if a mode is not supported,
|
||||||
// the modes higher than it is also not supported
|
// the modes higher than it is also not supported
|
||||||
//
|
//
|
||||||
|
@ -146,7 +146,7 @@ FindImageBase (
|
|||||||
/**
|
/**
|
||||||
Find and return Pei Core entry point.
|
Find and return Pei Core entry point.
|
||||||
|
|
||||||
It also find SEC and PEI Core file debug inforamtion. It will report them if
|
It also find SEC and PEI Core file debug information. It will report them if
|
||||||
remote debug is enabled.
|
remote debug is enabled.
|
||||||
|
|
||||||
@param BootFirmwareVolumePtr Point to the boot firmware volume.
|
@param BootFirmwareVolumePtr Point to the boot firmware volume.
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#
|
#
|
||||||
# Abstract:
|
# Abstract:
|
||||||
#
|
#
|
||||||
# Switch the stack from temporary memory to permenent memory.
|
# Switch the stack from temporary memory to permanent memory.
|
||||||
#
|
#
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -36,20 +36,20 @@ ASM_PFX(SecSwitchStack):
|
|||||||
|
|
||||||
#
|
#
|
||||||
# !!CAUTION!! this function address's is pushed into stack after
|
# !!CAUTION!! this function address's is pushed into stack after
|
||||||
# migration of whole temporary memory, so need save it to permenent
|
# migration of whole temporary memory, so need save it to permanent
|
||||||
# memory at first!
|
# memory at first!
|
||||||
#
|
#
|
||||||
movl 20(%esp), %ebx # Save the first parameter
|
movl 20(%esp), %ebx # Save the first parameter
|
||||||
movl 24(%esp), %ecx # Save the second parameter
|
movl 24(%esp), %ecx # Save the second parameter
|
||||||
|
|
||||||
#
|
#
|
||||||
# Save this function's return address into permenent memory at first.
|
# Save this function's return address into permanent memory at first.
|
||||||
# Then, Fixup the esp point to permenent memory
|
# Then, Fixup the esp point to permanent memory
|
||||||
#
|
#
|
||||||
movl %esp, %eax
|
movl %esp, %eax
|
||||||
subl %ebx, %eax
|
subl %ebx, %eax
|
||||||
addl %ecx, %eax
|
addl %ecx, %eax
|
||||||
movl 0(%esp), %edx # copy pushed register's value to permenent memory
|
movl 0(%esp), %edx # copy pushed register's value to permanent memory
|
||||||
movl %edx, 0(%eax)
|
movl %edx, 0(%eax)
|
||||||
movl 4(%esp), %edx
|
movl 4(%esp), %edx
|
||||||
movl %edx, 4(%eax)
|
movl %edx, 4(%eax)
|
||||||
@ -57,17 +57,17 @@ ASM_PFX(SecSwitchStack):
|
|||||||
movl %edx, 8(%eax)
|
movl %edx, 8(%eax)
|
||||||
movl 12(%esp), %edx
|
movl 12(%esp), %edx
|
||||||
movl %edx, 12(%eax)
|
movl %edx, 12(%eax)
|
||||||
movl 16(%esp), %edx # Update this function's return address into permenent memory
|
movl 16(%esp), %edx # Update this function's return address into permanent memory
|
||||||
movl %edx, 16(%eax)
|
movl %edx, 16(%eax)
|
||||||
movl %eax, %esp # From now, esp is pointed to permenent memory
|
movl %eax, %esp # From now, esp is pointed to permanent memory
|
||||||
|
|
||||||
#
|
#
|
||||||
# Fixup the ebp point to permenent memory
|
# Fixup the ebp point to permanent memory
|
||||||
#
|
#
|
||||||
movl %ebp, %eax
|
movl %ebp, %eax
|
||||||
subl %ebx, %eax
|
subl %ebx, %eax
|
||||||
addl %ecx, %eax
|
addl %ecx, %eax
|
||||||
movl %eax, %ebp # From now, ebp is pointed to permenent memory
|
movl %eax, %ebp # From now, ebp is pointed to permanent memory
|
||||||
|
|
||||||
popl %edx
|
popl %edx
|
||||||
popl %ecx
|
popl %ecx
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
;
|
;
|
||||||
; Abstract:
|
; Abstract:
|
||||||
;
|
;
|
||||||
; Switch the stack from temporary memory to permenent memory.
|
; Switch the stack from temporary memory to permanent memory.
|
||||||
;
|
;
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ SecSwitchStack PROC
|
|||||||
|
|
||||||
;
|
;
|
||||||
; !!CAUTION!! this function address's is pushed into stack after
|
; !!CAUTION!! this function address's is pushed into stack after
|
||||||
; migration of whole temporary memory, so need save it to permenent
|
; migration of whole temporary memory, so need save it to permanent
|
||||||
; memory at first!
|
; memory at first!
|
||||||
;
|
;
|
||||||
|
|
||||||
@ -46,13 +46,13 @@ SecSwitchStack PROC
|
|||||||
mov ecx, [esp + 24] ; Save the second parameter
|
mov ecx, [esp + 24] ; Save the second parameter
|
||||||
|
|
||||||
;
|
;
|
||||||
; Save this function's return address into permenent memory at first.
|
; Save this function's return address into permanent memory at first.
|
||||||
; Then, Fixup the esp point to permenent memory
|
; Then, Fixup the esp point to permanent memory
|
||||||
;
|
;
|
||||||
mov eax, esp
|
mov eax, esp
|
||||||
sub eax, ebx
|
sub eax, ebx
|
||||||
add eax, ecx
|
add eax, ecx
|
||||||
mov edx, dword ptr [esp] ; copy pushed register's value to permenent memory
|
mov edx, dword ptr [esp] ; copy pushed register's value to permanent memory
|
||||||
mov dword ptr [eax], edx
|
mov dword ptr [eax], edx
|
||||||
mov edx, dword ptr [esp + 4]
|
mov edx, dword ptr [esp + 4]
|
||||||
mov dword ptr [eax + 4], edx
|
mov dword ptr [eax + 4], edx
|
||||||
@ -60,17 +60,17 @@ SecSwitchStack PROC
|
|||||||
mov dword ptr [eax + 8], edx
|
mov dword ptr [eax + 8], edx
|
||||||
mov edx, dword ptr [esp + 12]
|
mov edx, dword ptr [esp + 12]
|
||||||
mov dword ptr [eax + 12], edx
|
mov dword ptr [eax + 12], edx
|
||||||
mov edx, dword ptr [esp + 16] ; Update this function's return address into permenent memory
|
mov edx, dword ptr [esp + 16] ; Update this function's return address into permanent memory
|
||||||
mov dword ptr [eax + 16], edx
|
mov dword ptr [eax + 16], edx
|
||||||
mov esp, eax ; From now, esp is pointed to permenent memory
|
mov esp, eax ; From now, esp is pointed to permanent memory
|
||||||
|
|
||||||
;
|
;
|
||||||
; Fixup the ebp point to permenent memory
|
; Fixup the ebp point to permanent memory
|
||||||
;
|
;
|
||||||
mov eax, ebp
|
mov eax, ebp
|
||||||
sub eax, ebx
|
sub eax, ebx
|
||||||
add eax, ecx
|
add eax, ecx
|
||||||
mov ebp, eax ; From now, ebp is pointed to permenent memory
|
mov ebp, eax ; From now, ebp is pointed to permanent memory
|
||||||
|
|
||||||
pop edx
|
pop edx
|
||||||
pop ecx
|
pop ecx
|
||||||
|
@ -64,7 +64,7 @@ ASM_PFX(SecSwitchStack):
|
|||||||
mov esp, eax ; From now, esp is pointed to permanent memory
|
mov esp, eax ; From now, esp is pointed to permanent memory
|
||||||
|
|
||||||
;
|
;
|
||||||
; Fixup the ebp point to permenent memory
|
; Fixup the ebp point to permanent memory
|
||||||
;
|
;
|
||||||
mov eax, ebp
|
mov eax, ebp
|
||||||
sub eax, ebx
|
sub eax, ebx
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/** @file
|
/** @file
|
||||||
C funtions in SEC
|
C functions in SEC
|
||||||
|
|
||||||
Copyright (c) 2013, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2013, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
@ -57,7 +57,7 @@ SecStartupPhase2(
|
|||||||
|
|
||||||
|
|
||||||
@param SizeOfRam Size of the temporary memory available for use.
|
@param SizeOfRam Size of the temporary memory available for use.
|
||||||
@param TempRamBase Base address of tempory ram
|
@param TempRamBase Base address of temporary ram
|
||||||
@param BootFirmwareVolume Base address of the Boot Firmware Volume.
|
@param BootFirmwareVolume Base address of the Boot Firmware Volume.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
@ -100,7 +100,7 @@ SecStartup (
|
|||||||
// |-------------------|---->
|
// |-------------------|---->
|
||||||
// | |
|
// | |
|
||||||
// | |
|
// | |
|
||||||
// | Heap | PeiTemporayRamSize
|
// | Heap | PeiTemporaryRamSize
|
||||||
// | |
|
// | |
|
||||||
// | |
|
// | |
|
||||||
// |-------------------|----> TempRamBase
|
// |-------------------|----> TempRamBase
|
||||||
@ -219,11 +219,11 @@ SecTemporaryRamSupport (
|
|||||||
// |-------------------|---->
|
// |-------------------|---->
|
||||||
// | Stack | PeiStackSize
|
// | Stack | PeiStackSize
|
||||||
// |-------------------|---->
|
// |-------------------|---->
|
||||||
// | Heap | PeiTemporayRamSize
|
// | Heap | PeiTemporaryRamSize
|
||||||
// |-------------------|----> TempRamBase
|
// |-------------------|----> TempRamBase
|
||||||
//
|
//
|
||||||
// |-------------------|---->
|
// |-------------------|---->
|
||||||
// | Heap | PeiTemporayRamSize
|
// | Heap | PeiTemporaryRamSize
|
||||||
// |-------------------|---->
|
// |-------------------|---->
|
||||||
// | Stack | PeiStackSize
|
// | Stack | PeiStackSize
|
||||||
// |-------------------|----> PermanentMemoryBase
|
// |-------------------|----> PermanentMemoryBase
|
||||||
@ -276,8 +276,8 @@ SecTemporaryRamSupport (
|
|||||||
|
|
||||||
//
|
//
|
||||||
// SecSwitchStack function must be invoked after the memory migration
|
// SecSwitchStack function must be invoked after the memory migration
|
||||||
// immediatly, also we need fixup the stack change caused by new call into
|
// immediately, also we need fixup the stack change caused by new call into
|
||||||
// permenent memory.
|
// permanent memory.
|
||||||
//
|
//
|
||||||
SecSwitchStack (
|
SecSwitchStack (
|
||||||
(UINT32) (UINTN) OldStack,
|
(UINT32) (UINTN) OldStack,
|
||||||
|
@ -91,7 +91,7 @@ SecTemporaryRamSupport (
|
|||||||
the control is transferred to this function.
|
the control is transferred to this function.
|
||||||
|
|
||||||
@param SizeOfRam Size of the temporary memory available for use.
|
@param SizeOfRam Size of the temporary memory available for use.
|
||||||
@param TempRamBase Base address of tempory ram
|
@param TempRamBase Base address of temporary ram
|
||||||
@param BootFirmwareVolume Base address of the Boot Firmware Volume.
|
@param BootFirmwareVolume Base address of the Boot Firmware Volume.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
@ -105,7 +105,7 @@ SecStartup (
|
|||||||
/**
|
/**
|
||||||
Find and return Pei Core entry point.
|
Find and return Pei Core entry point.
|
||||||
|
|
||||||
It also find SEC and PEI Core file debug inforamtion. It will report them if
|
It also find SEC and PEI Core file debug information. It will report them if
|
||||||
remote debug is enabled.
|
remote debug is enabled.
|
||||||
|
|
||||||
@param BootFirmwareVolumePtr Point to the boot firmware volume.
|
@param BootFirmwareVolumePtr Point to the boot firmware volume.
|
||||||
|
Reference in New Issue
Block a user