2007-06-22 09:42:13 +02:00
|
|
|
/** @file
|
|
|
|
Entry point to a PEIM.
|
|
|
|
|
|
|
|
Copyright (c) 2006, Intel Corporation<BR>
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
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
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
Image entry point of Peim.
|
|
|
|
|
2008-10-31 08:22:44 +01:00
|
|
|
@param FileHandle Handle of the file being invoked.
|
|
|
|
Type EFI_PEI_FILE_HANDLE is defined in FfsFindNextFile().
|
|
|
|
@param PeiServices Describes the list of possible PEI Services.
|
2007-06-22 09:42:13 +02:00
|
|
|
|
|
|
|
@return Status returned by entry points of Peims.
|
|
|
|
|
|
|
|
**/
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wrapper of Peim image entry point.
|
|
|
|
|
2008-10-31 08:22:44 +01:00
|
|
|
@param FileHandle Handle of the file being invoked.
|
|
|
|
Type EFI_PEI_FILE_HANDLE is defined in FfsFindNextFile().
|
|
|
|
@param PeiServices Describes the list of possible PEI Services.
|
2007-06-22 09:42:13 +02:00
|
|
|
|
|
|
|
@return Status returned by entry points of Peims.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
EfiMain (
|
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
|
|
|
)
|
|
|
|
{
|
2008-10-28 10:07:50 +01:00
|
|
|
return _ModuleEntryPoint (FileHandle, PeiServices);
|
2007-06-22 09:42:13 +02:00
|
|
|
}
|