2007-06-22 09:42:13 +02:00
|
|
|
/** @file
|
|
|
|
Entry point to a PEIM.
|
|
|
|
|
2010-04-23 18:37:43 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-06-22 09:42:13 +02:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
2010-06-30 02:13:25 +02:00
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
2007-06-22 09:42:13 +02:00
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
2007-07-20 08:28:14 +02:00
|
|
|
|
2007-06-22 18:22:26 +02:00
|
|
|
#include <PiPei.h>
|
2007-07-20 08:28:14 +02:00
|
|
|
|
|
|
|
|
2007-06-22 18:22:26 +02:00
|
|
|
#include <Library/PeimEntryPoint.h>
|
|
|
|
#include <Library/DebugLib.h>
|
2007-06-22 09:42:13 +02:00
|
|
|
|
|
|
|
/**
|
2008-12-12 09:51:16 +01:00
|
|
|
The entry point of PE/COFF Image for a PEIM.
|
|
|
|
|
|
|
|
This function is the entry point for a PEIM. This function must call ProcessLibraryConstructorList()
|
|
|
|
and ProcessModuleEntryPointList(). The return value from ProcessModuleEntryPointList() is returned.
|
|
|
|
If _gPeimRevision is not zero and PeiServices->Hdr.Revision is less than _gPeimRevison, then ASSERT().
|
2007-06-22 09:42:13 +02:00
|
|
|
|
2008-10-31 08:22:44 +01:00
|
|
|
@param FileHandle Handle of the file being invoked.
|
|
|
|
@param PeiServices Describes the list of possible PEI Services.
|
2007-06-22 09:42:13 +02:00
|
|
|
|
2008-12-10 04:10:07 +01:00
|
|
|
@retval EFI_SUCCESS The PEIM executed normally.
|
|
|
|
@retval !EFI_SUCCESS The PEIM failed to execute normally.
|
2007-06-22 09:42:13 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
_ModuleEntryPoint (
|
2008-10-28 10:07:50 +01:00
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices
|
2007-06-22 09:42:13 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
if (_gPeimRevision != 0) {
|
|
|
|
//
|
|
|
|
// Make sure that the PEI spec revision of the platform is >= PEI spec revision of the driver
|
|
|
|
//
|
|
|
|
ASSERT ((*PeiServices)->Hdr.Revision >= _gPeimRevision);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Call constructor for all libraries
|
|
|
|
//
|
2008-10-28 10:07:50 +01:00
|
|
|
ProcessLibraryConstructorList (FileHandle, PeiServices);
|
2007-06-22 09:42:13 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Call the driver entry point
|
|
|
|
//
|
2008-10-28 10:07:50 +01:00
|
|
|
return ProcessModuleEntryPointList (FileHandle, PeiServices);
|
2007-06-22 09:42:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-12-10 04:10:07 +01:00
|
|
|
Required by the EBC compiler and identical in functionality to _ModuleEntryPoint().
|
2008-12-12 09:51:16 +01:00
|
|
|
|
|
|
|
This function is required to call _ModuleEntryPoint() passing in FileHandle and PeiServices.
|
2007-06-22 09:42:13 +02:00
|
|
|
|
2008-10-31 08:22:44 +01:00
|
|
|
@param FileHandle Handle of the file being invoked.
|
|
|
|
@param PeiServices Describes the list of possible PEI Services.
|
2007-06-22 09:42:13 +02:00
|
|
|
|
2008-12-10 04:10:07 +01:00
|
|
|
@retval EFI_SUCCESS The PEIM executed normally.
|
|
|
|
@retval !EFI_SUCCESS The PEIM failed to execute normally.
|
2007-06-22 09:42:13 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
EfiMain (
|
2008-12-10 04:10:07 +01:00
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices
|
2007-06-22 09:42:13 +02:00
|
|
|
)
|
|
|
|
{
|
2008-10-28 10:07:50 +01:00
|
|
|
return _ModuleEntryPoint (FileHandle, PeiServices);
|
2007-06-22 09:42:13 +02:00
|
|
|
}
|