TianoCore EDK2 master
Loading...
Searching...
No Matches
PlatformInit.c
Go to the documentation of this file.
1
9#include <PiPei.h>
10#include <Library/DebugLib.h>
12
20VOID
21EFIAPI
23 IN VOID *FspHobList,
24 IN VOID *StartOfRange,
25 IN VOID *EndOfRange
26 )
27{
28 //
29 // Platform initialization
30 // Enable Serial port here
31 //
33
34 DEBUG ((DEBUG_INFO, "PrintPeiCoreEntryPointParam in PlatformInit\n"));
35 DEBUG ((DEBUG_INFO, "FspHobList - 0x%x\n", FspHobList));
36 DEBUG ((DEBUG_INFO, "StartOfRange - 0x%x\n", StartOfRange));
37 DEBUG ((DEBUG_INFO, "EndOfRange - 0x%x\n", EndOfRange));
38}
RETURN_STATUS EFIAPI SerialPortInitialize(VOID)
Definition: SerialPortLib.c:25
#define IN
Definition: Base.h:279
#define DEBUG(Expression)
Definition: DebugLib.h:434
VOID EFIAPI PlatformInit(IN VOID *FspHobList, IN VOID *StartOfRange, IN VOID *EndOfRange)
Definition: PlatformInit.c:22