2008-03-19 10:01:03 +01:00
|
|
|
/** @file
|
2008-07-16 11:40:06 +02:00
|
|
|
Definition of Pei Core Structures and Services
|
|
|
|
|
2010-04-24 11:49:11 +02:00
|
|
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-07-04 09:51:48 +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
|
|
|
|
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.
|
|
|
|
|
2008-03-19 10:01:03 +01:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
#ifndef _PEI_MAIN_H_
|
|
|
|
#define _PEI_MAIN_H_
|
|
|
|
|
2007-07-10 18:13:56 +02:00
|
|
|
#include <PiPei.h>
|
|
|
|
#include <Ppi/DxeIpl.h>
|
|
|
|
#include <Ppi/MemoryDiscovered.h>
|
|
|
|
#include <Ppi/StatusCode.h>
|
|
|
|
#include <Ppi/Reset.h>
|
2007-09-24 13:38:43 +02:00
|
|
|
#include <Ppi/FirmwareVolume.h>
|
|
|
|
#include <Ppi/FirmwareVolumeInfo.h>
|
|
|
|
#include <Ppi/Decompress.h>
|
|
|
|
#include <Ppi/GuidedSectionExtraction.h>
|
|
|
|
#include <Ppi/LoadFile.h>
|
|
|
|
#include <Ppi/Security2.h>
|
2008-02-29 19:24:43 +01:00
|
|
|
#include <Ppi/TemporaryRamSupport.h>
|
2007-07-10 18:13:56 +02:00
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/PeiCoreEntryPoint.h>
|
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
#include <Library/HobLib.h>
|
|
|
|
#include <Library/PerformanceLib.h>
|
|
|
|
#include <Library/PeiServicesLib.h>
|
|
|
|
#include <Library/ReportStatusCodeLib.h>
|
2007-09-28 10:48:41 +02:00
|
|
|
#include <Library/PeCoffLib.h>
|
2007-07-10 18:13:56 +02:00
|
|
|
#include <Library/PeCoffGetEntryPointLib.h>
|
|
|
|
#include <Library/BaseMemoryLib.h>
|
2007-09-24 13:38:43 +02:00
|
|
|
#include <Library/CacheMaintenanceLib.h>
|
2007-07-10 18:13:56 +02:00
|
|
|
#include <Library/TimerLib.h>
|
2007-10-15 13:15:39 +02:00
|
|
|
#include <Library/PcdLib.h>
|
2007-08-10 11:49:49 +02:00
|
|
|
#include <IndustryStandard/PeImage.h>
|
2007-08-30 10:20:57 +02:00
|
|
|
#include <Library/PeiServicesTablePointerLib.h>
|
2007-09-24 13:38:43 +02:00
|
|
|
#include <Library/MemoryAllocationLib.h>
|
|
|
|
#include <Guid/FirmwareFileSystem2.h>
|
|
|
|
#include <Guid/AprioriFileName.h>
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 04:17:45 +02:00
|
|
|
///
|
|
|
|
/// It is an FFS type extension used for PeiFindFileEx. It indicates current
|
|
|
|
/// Ffs searching is for all PEIMs can be dispatched by PeiCore.
|
|
|
|
///
|
2007-08-30 09:35:09 +02:00
|
|
|
#define PEI_CORE_INTERNAL_FFS_FILE_DISPATCH_TYPE 0xff
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
///
|
|
|
|
/// Pei Core private data structures
|
|
|
|
///
|
2007-07-04 09:51:48 +02:00
|
|
|
typedef union {
|
|
|
|
EFI_PEI_PPI_DESCRIPTOR *Ppi;
|
|
|
|
EFI_PEI_NOTIFY_DESCRIPTOR *Notify;
|
|
|
|
VOID *Raw;
|
|
|
|
} PEI_PPI_LIST_POINTERS;
|
|
|
|
|
2008-07-23 11:15:14 +02:00
|
|
|
///
|
2008-08-08 03:35:46 +02:00
|
|
|
/// PPI database structure which contains two link: PpiList and NotifyList. PpiList
|
|
|
|
/// is in head of PpiListPtrs array and notify is in end of PpiListPtrs.
|
2008-07-23 11:15:14 +02:00
|
|
|
///
|
2007-07-04 09:51:48 +02:00
|
|
|
typedef struct {
|
2008-08-08 03:35:46 +02:00
|
|
|
///
|
|
|
|
/// index of end of PpiList link list.
|
|
|
|
///
|
2007-07-04 09:51:48 +02:00
|
|
|
INTN PpiListEnd;
|
2008-08-08 03:35:46 +02:00
|
|
|
///
|
|
|
|
/// index of end of notify link list.
|
|
|
|
///
|
2007-07-04 09:51:48 +02:00
|
|
|
INTN NotifyListEnd;
|
2008-08-08 03:35:46 +02:00
|
|
|
///
|
|
|
|
/// index of the dispatched notify list.
|
|
|
|
///
|
2007-07-04 09:51:48 +02:00
|
|
|
INTN DispatchListEnd;
|
2008-08-08 03:35:46 +02:00
|
|
|
///
|
|
|
|
/// index of last installed Ppi description in PpiList link list.
|
|
|
|
///
|
2007-07-04 09:51:48 +02:00
|
|
|
INTN LastDispatchedInstall;
|
2008-08-08 03:35:46 +02:00
|
|
|
///
|
|
|
|
/// index of last dispatched notify in Notify link list.
|
|
|
|
///
|
2007-07-04 09:51:48 +02:00
|
|
|
INTN LastDispatchedNotify;
|
2008-08-08 03:35:46 +02:00
|
|
|
///
|
|
|
|
/// Ppi database.
|
|
|
|
///
|
2008-04-14 07:39:13 +02:00
|
|
|
PEI_PPI_LIST_POINTERS PpiListPtrs[FixedPcdGet32 (PcdPeiCoreMaxPpiSupported)];
|
2007-07-04 09:51:48 +02:00
|
|
|
} PEI_PPI_DATABASE;
|
|
|
|
|
2007-08-30 09:35:09 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// PEI_CORE_FV_HANDE.PeimState
|
|
|
|
// Do not change these values as there is code doing math to change states.
|
|
|
|
// Look for Private->Fv[FvCount].PeimState[PeimCount]++;
|
|
|
|
//
|
|
|
|
#define PEIM_STATE_NOT_DISPATCHED 0x00
|
|
|
|
#define PEIM_STATE_DISPATCHED 0x01
|
|
|
|
#define PEIM_STATE_REGISITER_FOR_SHADOW 0x02
|
|
|
|
#define PEIM_STATE_DONE 0x03
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
EFI_FIRMWARE_VOLUME_HEADER *FvHeader;
|
2009-11-11 04:27:39 +01:00
|
|
|
EFI_PEI_FIRMWARE_VOLUME_PPI *FvPpi;
|
|
|
|
EFI_PEI_FV_HANDLE FvHandle;
|
2007-12-26 03:43:28 +01:00
|
|
|
UINT8 PeimState[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];
|
2007-10-15 13:15:39 +02:00
|
|
|
EFI_PEI_FILE_HANDLE FvFileHandles[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];
|
2007-08-30 09:35:09 +02:00
|
|
|
BOOLEAN ScanFv;
|
|
|
|
} PEI_CORE_FV_HANDLE;
|
|
|
|
|
2009-12-25 03:28:47 +01:00
|
|
|
typedef struct {
|
|
|
|
EFI_GUID FvFormat;
|
|
|
|
VOID *FvInfo;
|
|
|
|
UINT32 FvInfoSize;
|
|
|
|
EFI_PEI_NOTIFY_DESCRIPTOR NotifyDescriptor;
|
|
|
|
} PEI_CORE_UNKNOW_FORMAT_FV_INFO;
|
|
|
|
|
2007-12-06 10:52:27 +01:00
|
|
|
#define CACHE_SETION_MAX_NUMBER 0x10
|
|
|
|
typedef struct {
|
|
|
|
EFI_COMMON_SECTION_HEADER* Section[CACHE_SETION_MAX_NUMBER];
|
|
|
|
VOID* SectionData[CACHE_SETION_MAX_NUMBER];
|
|
|
|
UINTN SectionSize[CACHE_SETION_MAX_NUMBER];
|
|
|
|
UINTN AllSectionCount;
|
|
|
|
UINTN SectionIndex;
|
|
|
|
} CACHE_SECTION_DATA;
|
|
|
|
|
2010-05-12 00:11:31 +02:00
|
|
|
///
|
|
|
|
/// Forward declaration for PEI_CORE_INSTANCE
|
|
|
|
///
|
|
|
|
typedef struct _PEI_CORE_INSTANCE PEI_CORE_INSTANCE;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Function Pointer type for PeiCore function.
|
|
|
|
@param SecCoreData Points to a data structure containing SEC to PEI handoff data, such as the size
|
|
|
|
and location of temporary RAM, the stack location and the BFV location.
|
|
|
|
@param PpiList Points to a list of one or more PPI descriptors to be installed initially by the PEI core.
|
|
|
|
An empty PPI list consists of a single descriptor with the end-tag
|
|
|
|
EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST. As part of its initialization
|
|
|
|
phase, the PEI Foundation will add these SEC-hosted PPIs to its PPI database such
|
|
|
|
that both the PEI Foundation and any modules can leverage the associated service
|
|
|
|
calls and/or code in these early PPIs
|
|
|
|
@param OldCoreData Pointer to old core data that is used to initialize the
|
|
|
|
core's data areas.
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
|
|
|
(EFIAPI *PEICORE_FUNCTION_POINTER)(
|
|
|
|
IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
|
|
|
|
IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList,
|
|
|
|
IN PEI_CORE_INSTANCE *OldCoreData
|
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-12-16 16:34:21 +01:00
|
|
|
#define PEI_CORE_HANDLE_SIGNATURE SIGNATURE_32('P','e','i','C')
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-23 11:15:14 +02:00
|
|
|
///
|
|
|
|
/// Pei Core private data structure instance
|
|
|
|
///
|
2010-05-12 00:11:31 +02:00
|
|
|
struct _PEI_CORE_INSTANCE {
|
2007-07-04 09:51:48 +02:00
|
|
|
UINTN Signature;
|
2009-11-11 04:27:39 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Point to ServiceTableShadow
|
|
|
|
///
|
2010-02-11 03:33:16 +01:00
|
|
|
EFI_PEI_SERVICES *Ps;
|
2007-07-04 09:51:48 +02:00
|
|
|
PEI_PPI_DATABASE PpiData;
|
2009-11-11 04:27:39 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// The count of FVs which contains FFS and could be dispatched by PeiCore.
|
|
|
|
///
|
2007-08-30 09:35:09 +02:00
|
|
|
UINTN FvCount;
|
2009-11-11 04:27:39 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// The instance arrary for FVs which contains FFS and could be dispatched by PeiCore.
|
|
|
|
///
|
2007-10-15 13:15:39 +02:00
|
|
|
PEI_CORE_FV_HANDLE Fv[FixedPcdGet32 (PcdPeiCoreMaxFvSupported)];
|
2009-12-25 03:28:47 +01:00
|
|
|
PEI_CORE_UNKNOW_FORMAT_FV_INFO UnknownFvInfo[FixedPcdGet32 (PcdPeiCoreMaxFvSupported)];
|
|
|
|
UINTN UnknownFvInfoCount;
|
|
|
|
|
2007-10-15 13:15:39 +02:00
|
|
|
EFI_PEI_FILE_HANDLE CurrentFvFileHandles[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];
|
2007-08-30 09:35:09 +02:00
|
|
|
UINTN AprioriCount;
|
2007-12-26 03:43:28 +01:00
|
|
|
UINTN CurrentPeimFvCount;
|
2007-08-30 09:35:09 +02:00
|
|
|
UINTN CurrentPeimCount;
|
|
|
|
EFI_PEI_FILE_HANDLE CurrentFileHandle;
|
2008-08-18 10:38:00 +02:00
|
|
|
BOOLEAN PeimNeedingDispatch;
|
|
|
|
BOOLEAN PeimDispatchOnThisPass;
|
|
|
|
BOOLEAN PeimDispatcherReenter;
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_PEI_HOB_POINTERS HobList;
|
|
|
|
BOOLEAN SwitchStackSignal;
|
|
|
|
BOOLEAN PeiMemoryInstalled;
|
|
|
|
VOID *CpuIo;
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_PEI_SECURITY2_PPI *PrivateSecurityPpi;
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_PEI_SERVICES ServiceTableShadow;
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_PEI_PPI_DESCRIPTOR *XipLoadFile;
|
2008-02-29 19:24:43 +01:00
|
|
|
EFI_PHYSICAL_ADDRESS PhysicalMemoryBegin;
|
|
|
|
UINT64 PhysicalMemoryLength;
|
|
|
|
EFI_PHYSICAL_ADDRESS FreePhysicalMemoryTop;
|
2010-05-12 00:11:31 +02:00
|
|
|
UINTN HeapOffset;
|
|
|
|
BOOLEAN HeapOffsetPositive;
|
|
|
|
PEICORE_FUNCTION_POINTER ShadowedPeiCore;
|
2007-12-06 10:52:27 +01:00
|
|
|
CACHE_SECTION_DATA CacheSection;
|
2010-02-05 08:54:16 +01:00
|
|
|
//
|
|
|
|
// For Loading modules at fixed address feature to cache the top address below which the
|
|
|
|
// Runtime code, boot time code and PEI memory will be placed. Please note that the offset between this field
|
2010-02-11 03:33:16 +01:00
|
|
|
// and Ps should not be changed since maybe user could get this top address by using the offet to Ps.
|
2010-02-05 08:54:16 +01:00
|
|
|
//
|
|
|
|
EFI_PHYSICAL_ADDRESS LoadModuleAtFixAddressTopAddress;
|
|
|
|
//
|
|
|
|
// The field is define for Loading modules at fixed address feature to tracker the PEI code
|
|
|
|
// memory range usage. It is a bit mapped array in which every bit indicates the correspoding memory page
|
|
|
|
// available or not.
|
|
|
|
//
|
|
|
|
UINT64 *PeiCodeMemoryRangeUsageBitMap;
|
2010-02-22 06:48:06 +01:00
|
|
|
//
|
|
|
|
// This field points to the shadowed image read function
|
|
|
|
//
|
|
|
|
PE_COFF_LOADER_READ_FILE ShadowedImageRead;
|
2010-05-12 00:11:31 +02:00
|
|
|
};
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-23 11:15:14 +02:00
|
|
|
///
|
|
|
|
/// Pei Core Instance Data Macros
|
|
|
|
///
|
2007-07-04 09:51:48 +02:00
|
|
|
#define PEI_CORE_INSTANCE_FROM_PS_THIS(a) \
|
2010-02-11 03:33:16 +01:00
|
|
|
CR(a, PEI_CORE_INSTANCE, Ps, PEI_CORE_HANDLE_SIGNATURE)
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
///
|
|
|
|
/// Union of temporarily used function pointers (to save stack space)
|
|
|
|
///
|
2007-07-04 09:51:48 +02:00
|
|
|
typedef union {
|
2008-08-08 04:17:45 +02:00
|
|
|
PEICORE_FUNCTION_POINTER PeiCore;
|
2007-08-13 19:47:57 +02:00
|
|
|
EFI_PEIM_ENTRY_POINT2 PeimEntry;
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_PEIM_NOTIFY_ENTRY_POINT PeimNotifyEntry;
|
|
|
|
EFI_DXE_IPL_PPI *DxeIpl;
|
|
|
|
EFI_PEI_PPI_DESCRIPTOR *PpiDescriptor;
|
|
|
|
EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor;
|
|
|
|
VOID *Raw;
|
|
|
|
} PEI_CORE_TEMP_POINTERS;
|
|
|
|
|
2007-09-14 09:01:26 +02:00
|
|
|
typedef struct {
|
|
|
|
CONST EFI_SEC_PEI_HAND_OFF *SecCoreData;
|
|
|
|
EFI_PEI_PPI_DESCRIPTOR *PpiList;
|
|
|
|
VOID *Data;
|
|
|
|
} PEI_CORE_PARAMETERS;
|
|
|
|
|
2007-07-04 09:51:48 +02:00
|
|
|
//
|
|
|
|
// PeiCore function
|
|
|
|
//
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
The entry routine to Pei Core, invoked by PeiMain during transition
|
|
|
|
from SEC to PEI. After switching stack in the PEI core, it will restart
|
|
|
|
with the old core data.
|
|
|
|
|
|
|
|
|
2008-11-17 03:41:18 +01:00
|
|
|
@param SecCoreData Points to a data structure containing SEC to PEI handoff data, such as the size
|
2009-01-20 04:01:41 +01:00
|
|
|
and location of temporary RAM, the stack location and the BFV location.
|
2008-07-16 11:40:06 +02:00
|
|
|
@param PpiList Points to a list of one or more PPI descriptors to be installed initially by the PEI core.
|
|
|
|
An empty PPI list consists of a single descriptor with the end-tag
|
|
|
|
EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST. As part of its initialization
|
|
|
|
phase, the PEI Foundation will add these SEC-hosted PPIs to its PPI database such
|
|
|
|
that both the PEI Foundation and any modules can leverage the associated service
|
|
|
|
calls and/or code in these early PPIs
|
|
|
|
@param Data Pointer to old core data that is used to initialize the
|
2007-07-04 09:51:48 +02:00
|
|
|
core's data areas.
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2008-10-28 10:07:50 +01:00
|
|
|
VOID
|
2008-07-16 11:40:06 +02:00
|
|
|
EFIAPI
|
|
|
|
PeiCore (
|
|
|
|
IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
|
2008-10-20 15:33:43 +02:00
|
|
|
IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList,
|
2008-07-16 11:40:06 +02:00
|
|
|
IN VOID *Data
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Dispatcher support functions
|
|
|
|
//
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
This is the POSTFIX version of the dependency evaluator. When a
|
|
|
|
PUSH [PPI GUID] is encountered, a pointer to the GUID is stored on
|
|
|
|
the evaluation stack. When that entry is poped from the evaluation
|
|
|
|
stack, the PPI is checked if it is installed. This method allows
|
|
|
|
some time savings as not all PPIs must be checked for certain
|
|
|
|
operation types (AND, OR).
|
|
|
|
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
2008-07-16 11:40:06 +02:00
|
|
|
@param DependencyExpression Pointer to a dependency expression. The Grammar adheres to
|
|
|
|
the BNF described above and is stored in postfix notation.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval TRUE if it is a well-formed Grammar
|
|
|
|
@retval FALSE if the dependency expression overflows the evaluation stack
|
|
|
|
if the dependency expression underflows the evaluation stack
|
|
|
|
if the dependency expression is not a well-formed Grammar.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
PeimDispatchReadiness (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN VOID *DependencyExpression
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
Conduct PEIM dispatch.
|
|
|
|
|
2008-08-08 05:05:03 +02:00
|
|
|
@param SecCoreData Pointer to the data structure containing SEC to PEI handoff data
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PrivateData Pointer to the private data passed in from caller
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
VOID
|
2007-07-04 09:51:48 +02:00
|
|
|
PeiDispatcher (
|
2007-09-12 11:52:37 +02:00
|
|
|
IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
|
2007-09-24 13:38:43 +02:00
|
|
|
IN PEI_CORE_INSTANCE *PrivateData
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
Initialize the Dispatcher's data members
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param PrivateData PeiCore's private data structure
|
|
|
|
@param OldCoreData Old data from SecCore
|
|
|
|
NULL if being run in non-permament memory mode.
|
2008-12-03 09:52:39 +01:00
|
|
|
@param SecCoreData Points to a data structure containing SEC to PEI handoff data, such as the size
|
|
|
|
and location of temporary RAM, the stack location and the BFV location.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
VOID
|
|
|
|
InitializeDispatcherData (
|
2007-09-24 13:38:43 +02:00
|
|
|
IN PEI_CORE_INSTANCE *PrivateData,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN PEI_CORE_INSTANCE *OldCoreData,
|
2007-09-12 11:52:37 +02:00
|
|
|
IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
This routine parses the Dependency Expression, if available, and
|
|
|
|
decides if the module can be executed.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param Private PeiCore's private data structure
|
|
|
|
@param FileHandle PEIM's file handle
|
2008-08-08 05:05:03 +02:00
|
|
|
@param PeimCount The index of last dispatched PEIM.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 05:05:03 +02:00
|
|
|
@retval TRUE Can be dispatched
|
|
|
|
@retval FALSE Cannot be dispatched
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
BOOLEAN
|
|
|
|
DepexSatisfied (
|
2007-09-24 13:38:43 +02:00
|
|
|
IN PEI_CORE_INSTANCE *Private,
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
IN UINTN PeimCount
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// PPI support functions
|
|
|
|
//
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
|
|
|
|
Initialize PPI services.
|
|
|
|
|
|
|
|
@param PrivateData Pointer to the PEI Core data.
|
|
|
|
@param OldCoreData Pointer to old PEI Core data.
|
|
|
|
NULL if being run in non-permament memory mode.
|
|
|
|
|
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
VOID
|
|
|
|
InitializePpiServices (
|
2007-09-24 13:38:43 +02:00
|
|
|
IN PEI_CORE_INSTANCE *PrivateData,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN PEI_CORE_INSTANCE *OldCoreData
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2009-04-08 10:14:09 +02:00
|
|
|
Migrate the Hob list from the temporary memory stack to PEI installed memory.
|
2008-08-08 05:05:03 +02:00
|
|
|
|
|
|
|
@param PrivateData Pointer to PeiCore's private data structure.
|
|
|
|
@param OldCheckingBottom Bottom of temporary memory range. All Ppi in this range
|
|
|
|
will be fixup for PpiData and PpiDescriptor pointer.
|
|
|
|
@param OldCheckingTop Top of temporary memory range. All Ppi in this range
|
|
|
|
will be fixup for PpiData and PpiDescriptor.
|
2008-07-19 17:56:49 +02:00
|
|
|
@param Fixup The address difference between
|
|
|
|
the new Hob list and old Hob list.
|
2010-05-12 00:11:31 +02:00
|
|
|
@param FixupPositive TRUE if new Hob list is above the old Hob list.
|
|
|
|
Otherwise FALSE.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
VOID
|
|
|
|
ConvertPpiPointers (
|
2008-07-23 11:15:14 +02:00
|
|
|
IN PEI_CORE_INSTANCE *PrivateData,
|
|
|
|
IN UINTN OldCheckingBottom,
|
|
|
|
IN UINTN OldCheckingTop,
|
2010-05-12 00:11:31 +02:00
|
|
|
IN UINTN Fixup,
|
|
|
|
IN BOOLEAN FixupPositive
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 05:05:03 +02:00
|
|
|
Install PPI services. It is implementation of EFI_PEI_SERVICE.InstallPpi.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 04:17:45 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param PpiList Pointer to ppi array that want to be installed.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 04:17:45 +02:00
|
|
|
@retval EFI_SUCCESS if all PPIs in PpiList are successfully installed.
|
|
|
|
@retval EFI_INVALID_PARAMETER if PpiList is NULL pointer
|
2008-08-08 05:05:03 +02:00
|
|
|
if any PPI in PpiList is not valid
|
2008-08-08 04:17:45 +02:00
|
|
|
@retval EFI_OUT_OF_RESOURCES if there is no more memory resource to install PPI
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiInstallPpi (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Re-Install PPI services.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param OldPpi Pointer to the old PEI PPI Descriptors.
|
|
|
|
@param NewPpi Pointer to the new PEI PPI Descriptors.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@retval EFI_SUCCESS if the operation was successful
|
|
|
|
@retval EFI_INVALID_PARAMETER if OldPpi or NewPpi is NULL
|
2008-08-08 05:05:03 +02:00
|
|
|
if NewPpi is not valid
|
2008-08-08 03:35:46 +02:00
|
|
|
@retval EFI_NOT_FOUND if the PPI was not in the database
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiReInstallPpi (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_PPI_DESCRIPTOR *OldPpi,
|
|
|
|
IN CONST EFI_PEI_PPI_DESCRIPTOR *NewPpi
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Locate a given named PPI.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param Guid Pointer to GUID of the PPI.
|
|
|
|
@param Instance Instance Number to discover.
|
|
|
|
@param PpiDescriptor Pointer to reference the found descriptor. If not NULL,
|
2008-07-16 11:40:06 +02:00
|
|
|
returns a pointer to the descriptor (includes flags, etc)
|
2008-08-08 03:35:46 +02:00
|
|
|
@param Ppi Pointer to reference the found PPI
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_SUCCESS if the PPI is in the database
|
|
|
|
@retval EFI_NOT_FOUND if the PPI is not in the database
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiLocatePpi (
|
2008-08-08 03:35:46 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_GUID *Guid,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN UINTN Instance,
|
|
|
|
IN OUT EFI_PEI_PPI_DESCRIPTOR **PpiDescriptor,
|
|
|
|
IN OUT VOID **Ppi
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Install a notification for a given PPI.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param NotifyList Pointer to list of Descriptors to notify upon.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_SUCCESS if successful
|
|
|
|
@retval EFI_OUT_OF_RESOURCES if no space in the database
|
|
|
|
@retval EFI_INVALID_PARAMETER if not a good decriptor
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiNotifyPpi (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Process the Notify List at dispatch level.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param PrivateData PeiCore's private data structure.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
VOID
|
|
|
|
ProcessNotifyList (
|
2007-09-24 13:38:43 +02:00
|
|
|
IN PEI_CORE_INSTANCE *PrivateData
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Dispatch notifications.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param PrivateData PeiCore's private data structure
|
|
|
|
@param NotifyType Type of notify to fire.
|
|
|
|
@param InstallStartIndex Install Beginning index.
|
|
|
|
@param InstallStopIndex Install Ending index.
|
|
|
|
@param NotifyStartIndex Notify Beginning index.
|
|
|
|
@param NotifyStopIndex Notify Ending index.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
VOID
|
|
|
|
DispatchNotify (
|
2007-09-24 13:38:43 +02:00
|
|
|
IN PEI_CORE_INSTANCE *PrivateData,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN UINTN NotifyType,
|
|
|
|
IN INTN InstallStartIndex,
|
|
|
|
IN INTN InstallStopIndex,
|
|
|
|
IN INTN NotifyStartIndex,
|
|
|
|
IN INTN NotifyStopIndex
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Boot mode support functions
|
|
|
|
//
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
This service enables PEIMs to ascertain the present value of the boot mode.
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
2008-07-16 11:40:06 +02:00
|
|
|
@param BootMode A pointer to contain the value of the boot mode.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The boot mode was returned successfully.
|
|
|
|
@retval EFI_INVALID_PARAMETER BootMode is NULL.
|
|
|
|
|
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiGetBootMode (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2008-10-20 15:33:43 +02:00
|
|
|
IN OUT EFI_BOOT_MODE *BootMode
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
This service enables PEIMs to update the boot mode variable.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param BootMode The value of the boot mode to set.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@return EFI_SUCCESS The value was successfully updated
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiSetBootMode (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN EFI_BOOT_MODE BootMode
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Security support functions
|
|
|
|
//
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
|
|
|
|
Initialize the security services.
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
2008-07-23 11:15:14 +02:00
|
|
|
@param OldCoreData Pointer to the old core data.
|
2008-07-16 11:40:06 +02:00
|
|
|
NULL if being run in non-permament memory mode.
|
|
|
|
|
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
VOID
|
|
|
|
InitializeSecurityServices (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN PEI_CORE_INSTANCE *OldCoreData
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2008-10-20 15:33:43 +02:00
|
|
|
Verify a Firmware volume.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-23 11:15:14 +02:00
|
|
|
@param CurrentFvAddress Pointer to the current Firmware Volume under consideration
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-23 11:15:14 +02:00
|
|
|
@retval EFI_SUCCESS Firmware Volume is legal
|
|
|
|
@retval EFI_SECURITY_VIOLATION Firmware Volume fails integrity test
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
VerifyFv (
|
|
|
|
IN EFI_FIRMWARE_VOLUME_HEADER *CurrentFvAddress
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Provide a callout to the security verification service.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param PrivateData PeiCore's private data structure
|
|
|
|
@param VolumeHandle Handle of FV
|
|
|
|
@param FileHandle Handle of PEIM's ffs
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_SUCCESS Image is OK
|
|
|
|
@retval EFI_SECURITY_VIOLATION Image is illegal
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
VerifyPeim (
|
2007-09-24 13:38:43 +02:00
|
|
|
IN PEI_CORE_INSTANCE *PrivateData,
|
|
|
|
IN EFI_PEI_FV_HANDLE VolumeHandle,
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Gets the pointer to the HOB List.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
2008-07-16 11:40:06 +02:00
|
|
|
@param HobList Pointer to the HOB List.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_SUCCESS Get the pointer of HOB List
|
|
|
|
@retval EFI_NOT_AVAILABLE_YET the HOB List is not yet published
|
|
|
|
@retval EFI_INVALID_PARAMETER HobList is NULL (in debug mode)
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiGetHobList (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN OUT VOID **HobList
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
Add a new HOB to the HOB List.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param Type Type of the new HOB.
|
|
|
|
@param Length Length of the new HOB to allocate.
|
|
|
|
@param Hob Pointer to the new HOB.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@return EFI_SUCCESS Success to create hob.
|
|
|
|
@retval EFI_INVALID_PARAMETER if Hob is NULL
|
|
|
|
@retval EFI_NOT_AVAILABLE_YET if HobList is still not available.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES if there is no more memory to grow the Hoblist.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiCreateHob (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN UINT16 Type,
|
|
|
|
IN UINT16 Length,
|
|
|
|
IN OUT VOID **Hob
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Builds a Handoff Information Table HOB
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param BootMode - Current Bootmode
|
|
|
|
@param MemoryBegin - Start Memory Address.
|
|
|
|
@param MemoryLength - Length of Memory.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@return EFI_SUCCESS Always success to initialize HOB.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
PeiCoreBuildHobHandoffInfoTable (
|
|
|
|
IN EFI_BOOT_MODE BootMode,
|
|
|
|
IN EFI_PHYSICAL_ADDRESS MemoryBegin,
|
|
|
|
IN UINT64 MemoryLength
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// FFS Fw Volume support functions
|
|
|
|
//
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2009-11-11 04:27:39 +01:00
|
|
|
Searches for the next matching file in the firmware volume.
|
2008-07-16 11:40:06 +02:00
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
2008-07-16 11:40:06 +02:00
|
|
|
@param SearchType Filter to find only files of this type.
|
|
|
|
Type EFI_FV_FILETYPE_ALL causes no filtering to be done.
|
2010-01-15 09:03:23 +01:00
|
|
|
@param FvHandle Handle of firmware volume in which to search.
|
2009-11-11 04:27:39 +01:00
|
|
|
@param FileHandle On entry, points to the current handle from which to begin searching or NULL to start
|
|
|
|
at the beginning of the firmware volume. On exit, points the file handle of the next file
|
|
|
|
in the volume or NULL if there are no more files.
|
|
|
|
|
|
|
|
@retval EFI_NOT_FOUND The file was not found.
|
|
|
|
@retval EFI_NOT_FOUND The header checksum was not zero.
|
|
|
|
@retval EFI_SUCCESS The file was found.
|
2008-07-16 11:40:06 +02:00
|
|
|
|
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiFfsFindNextFile (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN UINT8 SearchType,
|
2009-11-11 04:27:39 +01:00
|
|
|
IN EFI_PEI_FV_HANDLE FvHandle,
|
|
|
|
IN OUT EFI_PEI_FILE_HANDLE *FileHandle
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2009-11-11 04:27:39 +01:00
|
|
|
Searches for the next matching section within the specified file.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2009-11-11 04:27:39 +01:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation
|
2008-07-16 11:40:06 +02:00
|
|
|
@param SectionType Filter to find only sections of this type.
|
2009-11-11 04:27:39 +01:00
|
|
|
@param FileHandle Pointer to the current file to search.
|
|
|
|
@param SectionData A pointer to the discovered section, if successful.
|
2008-07-16 11:40:06 +02:00
|
|
|
NULL if section not found
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2009-11-11 04:27:39 +01:00
|
|
|
@retval EFI_NOT_FOUND The section was not found.
|
|
|
|
@retval EFI_SUCCESS The section was found.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiFfsFindSectionData (
|
2009-11-11 04:27:39 +01:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_SECTION_TYPE SectionType,
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
OUT VOID **SectionData
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2009-11-11 04:27:39 +01:00
|
|
|
Search the firmware volumes by index
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2009-11-11 04:27:39 +01:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation
|
|
|
|
@param Instance This instance of the firmware volume to find. The value 0 is the Boot Firmware
|
|
|
|
Volume (BFV).
|
|
|
|
@param VolumeHandle On exit, points to the next volume handle or NULL if it does not exist.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2009-11-11 04:27:39 +01:00
|
|
|
@retval EFI_INVALID_PARAMETER VolumeHandle is NULL
|
|
|
|
@retval EFI_NOT_FOUND The volume was not found.
|
|
|
|
@retval EFI_SUCCESS The volume was found.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2009-11-11 04:27:39 +01:00
|
|
|
PeiFfsFindNextVolume (
|
2008-08-08 04:17:45 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN UINTN Instance,
|
2010-01-15 09:03:23 +01:00
|
|
|
IN OUT EFI_PEI_FV_HANDLE *VolumeHandle
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Memory support functions
|
|
|
|
//
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
|
|
|
|
Initialize the memory services.
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PrivateData PeiCore's private data structure
|
2008-11-17 03:41:18 +01:00
|
|
|
@param SecCoreData Points to a data structure containing SEC to PEI handoff data, such as the size
|
2009-01-20 04:01:41 +01:00
|
|
|
and location of temporary RAM, the stack location and the BFV location.
|
2008-07-16 11:40:06 +02:00
|
|
|
@param OldCoreData Pointer to the PEI Core data.
|
|
|
|
NULL if being run in non-permament memory mode.
|
|
|
|
|
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
VOID
|
|
|
|
InitializeMemoryServices (
|
2007-09-24 13:38:43 +02:00
|
|
|
IN PEI_CORE_INSTANCE *PrivateData,
|
2007-09-12 11:52:37 +02:00
|
|
|
IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN PEI_CORE_INSTANCE *OldCoreData
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Install the permanent memory is now available.
|
|
|
|
Creates HOB (PHIT and Stack).
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param MemoryBegin Start of memory address.
|
|
|
|
@param MemoryLength Length of memory.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@return EFI_SUCCESS Always success.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiInstallPeiMemory (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN EFI_PHYSICAL_ADDRESS MemoryBegin,
|
|
|
|
IN UINT64 MemoryLength
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Memory allocation service on permanent memory,
|
|
|
|
not usable prior to the memory installation.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param MemoryType Type of memory to allocate.
|
|
|
|
@param Pages Number of pages to allocate.
|
|
|
|
@param Memory Pointer of memory allocated.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_SUCCESS The allocation was successful
|
|
|
|
@retval EFI_INVALID_PARAMETER Only AllocateAnyAddress is supported.
|
|
|
|
@retval EFI_NOT_AVAILABLE_YET Called with permanent memory not available
|
|
|
|
@retval EFI_OUT_OF_RESOURCES There is not enough HOB heap to satisfy the requirement
|
|
|
|
to allocate the number of pages.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiAllocatePages (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN EFI_MEMORY_TYPE MemoryType,
|
|
|
|
IN UINTN Pages,
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *Memory
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2009-04-08 10:14:09 +02:00
|
|
|
Memory allocation service on the temporary memory.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param Size Amount of memory required
|
|
|
|
@param Buffer Address of pointer to the buffer
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_SUCCESS The allocation was successful
|
|
|
|
@retval EFI_OUT_OF_RESOURCES There is not enough heap to satisfy the requirement
|
|
|
|
to allocate the requested size.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiAllocatePool (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN UINTN Size,
|
|
|
|
OUT VOID **Buffer
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Routine for load image file.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param FileHandle Pointer to the FFS file header of the image.
|
2010-01-24 13:55:59 +01:00
|
|
|
@param PeimState The dispatch state of the input PEIM handle.
|
2008-08-08 03:35:46 +02:00
|
|
|
@param EntryPoint Pointer to entry point of specified image file for output.
|
|
|
|
@param AuthenticationState Pointer to attestation authentication state of image.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@retval EFI_SUCCESS Image is successfully loaded.
|
|
|
|
@retval EFI_NOT_FOUND Fail to locate necessary PPI
|
|
|
|
@retval Others Fail to load file.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
PeiLoadImage (
|
2008-10-21 07:55:27 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2007-09-24 13:38:43 +02:00
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
2010-01-24 13:55:59 +01:00
|
|
|
IN UINT8 PeimState,
|
2007-09-24 13:38:43 +02:00
|
|
|
OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
|
|
|
|
OUT UINT32 *AuthenticationState
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Core version of the Status Code reporter
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param CodeType Type of Status Code.
|
|
|
|
@param Value Value to output for Status Code.
|
|
|
|
@param Instance Instance Number of this status code.
|
|
|
|
@param CallerId ID of the caller of this status code.
|
|
|
|
@param Data Optional data associated with this status code.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_SUCCESS if status code is successfully reported
|
|
|
|
@retval EFI_NOT_AVAILABLE_YET if StatusCodePpi has not been installed
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiReportStatusCode (
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
2007-07-04 09:51:48 +02:00
|
|
|
IN EFI_STATUS_CODE_TYPE CodeType,
|
|
|
|
IN EFI_STATUS_CODE_VALUE Value,
|
|
|
|
IN UINT32 Instance,
|
2007-09-04 08:12:48 +02:00
|
|
|
IN CONST EFI_GUID *CallerId,
|
|
|
|
IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Core version of the Reset System
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_NOT_AVAILABLE_YET PPI not available yet.
|
|
|
|
@retval EFI_DEVICE_ERROR Did not reset system.
|
|
|
|
Otherwise, resets the system.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-07-04 09:51:48 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiResetSystem (
|
2007-09-24 13:38:43 +02:00
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Initialize PeiCore Fv List.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param PrivateData - Pointer to PEI_CORE_INSTANCE.
|
|
|
|
@param SecCoreData - Pointer to EFI_SEC_PEI_HAND_OFF.
|
2007-07-04 09:51:48 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-12-26 03:43:28 +01:00
|
|
|
VOID
|
2007-09-24 13:38:43 +02:00
|
|
|
PeiInitializeFv (
|
|
|
|
IN PEI_CORE_INSTANCE *PrivateData,
|
|
|
|
IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
Process Firmware Volum Information once FvInfoPPI install.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param NotifyDescriptor Address of the notification descriptor data structure.
|
|
|
|
@param Ppi Address of the PPI that was installed.
|
2007-12-26 03:43:28 +01:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_SUCCESS if the interface could be successfully installed
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
FirmwareVolmeInfoPpiNotifyCallback (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
|
|
|
|
IN VOID *Ppi
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2007-12-26 03:43:28 +01:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
Given the input VolumeHandle, search for the next matching name file.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-08-08 03:35:46 +02:00
|
|
|
@param FileName File name to search.
|
|
|
|
@param VolumeHandle The current FV to search.
|
|
|
|
@param FileHandle Pointer to the file matching name in VolumeHandle.
|
|
|
|
NULL if file not found
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-08-08 04:17:45 +02:00
|
|
|
@retval EFI_NOT_FOUND No files matching the search criteria were found
|
|
|
|
@retval EFI_SUCCESS Success to search given file
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
2007-12-26 03:43:28 +01:00
|
|
|
EFIAPI
|
2007-09-24 13:38:43 +02:00
|
|
|
PeiFfsFindFileByName (
|
|
|
|
IN CONST EFI_GUID *FileName,
|
|
|
|
IN EFI_PEI_FV_HANDLE VolumeHandle,
|
|
|
|
OUT EFI_PEI_FILE_HANDLE *FileHandle
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
|
|
|
Returns information about a specific file.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2009-11-11 04:27:39 +01:00
|
|
|
@param FileHandle Handle of the file.
|
2010-01-15 09:03:23 +01:00
|
|
|
@param FileInfo Upon exit, points to the file's information.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2009-11-11 04:27:39 +01:00
|
|
|
@retval EFI_INVALID_PARAMETER If FileInfo is NULL.
|
|
|
|
@retval EFI_INVALID_PARAMETER If FileHandle does not represent a valid file.
|
|
|
|
@retval EFI_SUCCESS File information returned.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
2007-12-26 03:43:28 +01:00
|
|
|
EFIAPI
|
2007-09-24 13:38:43 +02:00
|
|
|
PeiFfsGetFileInfo (
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
OUT EFI_FV_FILE_INFO *FileInfo
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2009-11-11 04:27:39 +01:00
|
|
|
Returns information about the specified volume.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2009-11-11 04:27:39 +01:00
|
|
|
@param VolumeHandle Handle of the volume.
|
2010-01-15 09:03:23 +01:00
|
|
|
@param VolumeInfo Upon exit, points to the volume's information.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2009-11-11 04:27:39 +01:00
|
|
|
@retval EFI_INVALID_PARAMETER If VolumeHandle does not represent a valid volume.
|
|
|
|
@retval EFI_INVALID_PARAMETER If VolumeInfo is NULL.
|
|
|
|
@retval EFI_SUCCESS Volume information returned.
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
2007-12-26 03:43:28 +01:00
|
|
|
EFIAPI
|
2007-09-24 13:38:43 +02:00
|
|
|
PeiFfsGetVolumeInfo (
|
|
|
|
IN EFI_PEI_FV_HANDLE VolumeHandle,
|
|
|
|
OUT EFI_FV_INFO *VolumeInfo
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2007-08-30 10:20:57 +02:00
|
|
|
/**
|
|
|
|
This routine enable a PEIM to register itself to shadow when PEI Foundation
|
|
|
|
discovery permanent memory.
|
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@param FileHandle File handle of a PEIM.
|
2007-12-26 03:43:28 +01:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
@retval EFI_NOT_FOUND The file handle doesn't point to PEIM itself.
|
|
|
|
@retval EFI_ALREADY_STARTED Indicate that the PEIM has been registered itself.
|
|
|
|
@retval EFI_SUCCESS Successfully to register itself.
|
2007-08-30 10:20:57 +02:00
|
|
|
|
2007-12-26 03:43:28 +01:00
|
|
|
**/
|
2007-08-30 10:20:57 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiRegisterForShadow (
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-08-30 10:20:57 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
/**
|
2008-08-08 04:17:45 +02:00
|
|
|
Initialize image service that install PeiLoadFilePpi.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-08-08 04:17:45 +02:00
|
|
|
@param PrivateData Pointer to PeiCore's private data structure PEI_CORE_INSTANCE.
|
|
|
|
@param OldCoreData Pointer to Old PeiCore's private data.
|
|
|
|
If NULL, PeiCore is entered at first time, stack/heap in temporary memory.
|
|
|
|
If not NULL, PeiCore is entered at second time, stack/heap has been moved
|
|
|
|
to permenent memory.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 11:40:06 +02:00
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
InitializeImageServices (
|
|
|
|
IN PEI_CORE_INSTANCE *PrivateData,
|
|
|
|
IN PEI_CORE_INSTANCE *OldCoreData
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-12-03 09:52:39 +01:00
|
|
|
/**
|
|
|
|
The wrapper function of PeiLoadImageLoadImage().
|
|
|
|
|
2009-01-20 04:01:41 +01:00
|
|
|
@param This Pointer to EFI_PEI_LOAD_FILE_PPI.
|
|
|
|
@param FileHandle Pointer to the FFS file header of the image.
|
|
|
|
@param ImageAddressArg Pointer to PE/TE image.
|
|
|
|
@param ImageSizeArg Size of PE/TE image.
|
|
|
|
@param EntryPoint Pointer to entry point of specified image file for output.
|
|
|
|
@param AuthenticationState Pointer to attestation authentication state of image.
|
2008-12-03 09:52:39 +01:00
|
|
|
|
|
|
|
@return Status of PeiLoadImageLoadImage().
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiLoadImageLoadImageWrapper (
|
|
|
|
IN CONST EFI_PEI_LOAD_FILE_PPI *This,
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *ImageAddressArg, OPTIONAL
|
|
|
|
OUT UINT64 *ImageSizeArg, OPTIONAL
|
|
|
|
OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
|
|
|
|
OUT UINT32 *AuthenticationState
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
Provide a callback for when the security PPI is installed.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
|
|
|
|
@param NotifyDescriptor The descriptor for the notification event.
|
|
|
|
@param Ppi Pointer to the PPI in question.
|
|
|
|
|
|
|
|
@return Always success
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
SecurityPpiNotifyCallback (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
|
|
|
|
IN VOID *Ppi
|
|
|
|
);
|
|
|
|
|
2009-11-11 04:27:39 +01:00
|
|
|
/**
|
|
|
|
Get Fv image from the FV type file, then install FV INFO ppi, Build FV hob.
|
|
|
|
|
|
|
|
@param ParentFvCoreHandle Pointer of EFI_CORE_FV_HANDLE to parent Fv image that contain this Fv image.
|
|
|
|
@param ParentFvFileHandle File handle of a Fv type file that contain this Fv image.
|
|
|
|
|
|
|
|
@retval EFI_NOT_FOUND FV image can't be found.
|
|
|
|
@retval EFI_SUCCESS Successfully to process it.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Can not allocate page when aligning FV image
|
|
|
|
@retval Others Can not find EFI_SECTION_FIRMWARE_VOLUME_IMAGE section
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
ProcessFvFile (
|
|
|
|
IN PEI_CORE_FV_HANDLE *ParentFvCoreHandle,
|
|
|
|
IN EFI_PEI_FILE_HANDLE ParentFvFileHandle
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Get instance of PEI_CORE_FV_HANDLE for next volume according to given index.
|
|
|
|
|
|
|
|
This routine also will install FvInfo ppi for FV hob in PI ways.
|
|
|
|
|
|
|
|
@param Private Pointer of PEI_CORE_INSTANCE
|
|
|
|
@param Instance The index of FV want to be searched.
|
|
|
|
|
|
|
|
@return Instance of PEI_CORE_FV_HANDLE.
|
|
|
|
**/
|
|
|
|
PEI_CORE_FV_HANDLE *
|
|
|
|
FindNextCoreFvHandle (
|
|
|
|
IN PEI_CORE_INSTANCE *Private,
|
|
|
|
IN UINTN Instance
|
|
|
|
);
|
|
|
|
|
2010-01-04 05:36:37 +01:00
|
|
|
//
|
|
|
|
// Default EFI_PEI_CPU_IO_PPI support for EFI_PEI_SERVICES table when PeiCore initialization.
|
|
|
|
//
|
|
|
|
|
|
|
|
/**
|
|
|
|
Memory-based read services.
|
|
|
|
|
|
|
|
This function is to perform the Memory Access Read service based on installed
|
|
|
|
instance of the EFI_PEI_CPU_IO_PPI.
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return EFI_NOT_YET_AVAILABLE.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table
|
|
|
|
published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Width The width of the access. Enumerated in bytes.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Count The number of accesses to perform.
|
|
|
|
@param Buffer A pointer to the buffer of data.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The function completed successfully.
|
|
|
|
@retval EFI_NOT_YET_AVAILABLE The service has not been installed.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultMemRead (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINTN Count,
|
|
|
|
IN OUT VOID *Buffer
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Memory-based write services.
|
|
|
|
|
|
|
|
This function is to perform the Memory Access Write service based on installed
|
|
|
|
instance of the EFI_PEI_CPU_IO_PPI.
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return EFI_NOT_YET_AVAILABLE.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table
|
|
|
|
published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Width The width of the access. Enumerated in bytes.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Count The number of accesses to perform.
|
|
|
|
@param Buffer A pointer to the buffer of data.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The function completed successfully.
|
|
|
|
@retval EFI_NOT_YET_AVAILABLE The service has not been installed.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultMemWrite (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINTN Count,
|
|
|
|
IN OUT VOID *Buffer
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
IO-based read services.
|
|
|
|
|
|
|
|
This function is to perform the IO-base read service for the EFI_PEI_CPU_IO_PPI.
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return EFI_NOT_YET_AVAILABLE.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table
|
|
|
|
published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Width The width of the access. Enumerated in bytes.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Count The number of accesses to perform.
|
|
|
|
@param Buffer A pointer to the buffer of data.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The function completed successfully.
|
|
|
|
@retval EFI_NOT_YET_AVAILABLE The service has not been installed.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultIoRead (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINTN Count,
|
|
|
|
IN OUT VOID *Buffer
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
IO-based write services.
|
|
|
|
|
|
|
|
This function is to perform the IO-base write service for the EFI_PEI_CPU_IO_PPI.
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return EFI_NOT_YET_AVAILABLE.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table
|
|
|
|
published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Width The width of the access. Enumerated in bytes.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Count The number of accesses to perform.
|
|
|
|
@param Buffer A pointer to the buffer of data.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The function completed successfully.
|
|
|
|
@retval EFI_NOT_YET_AVAILABLE The service has not been installed.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultIoWrite (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINTN Count,
|
|
|
|
IN OUT VOID *Buffer
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
8-bit I/O read operations.
|
|
|
|
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return 0.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
|
|
|
|
@return An 8-bit value returned from the I/O space.
|
|
|
|
**/
|
|
|
|
UINT8
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultIoRead8 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Reads an 16-bit I/O port.
|
|
|
|
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return 0.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
|
|
|
|
@return A 16-bit value returned from the I/O space.
|
|
|
|
**/
|
|
|
|
UINT16
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultIoRead16 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Reads an 32-bit I/O port.
|
|
|
|
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return 0.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
|
|
|
|
@return A 32-bit value returned from the I/O space.
|
|
|
|
**/
|
|
|
|
UINT32
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultIoRead32 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Reads an 64-bit I/O port.
|
|
|
|
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return 0.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
|
|
|
|
@return A 64-bit value returned from the I/O space.
|
|
|
|
**/
|
|
|
|
UINT64
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultIoRead64 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
8-bit I/O write operations.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Data The data to write.
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultIoWrite8 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINT8 Data
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
16-bit I/O write operations.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Data The data to write.
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultIoWrite16 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINT16 Data
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
32-bit I/O write operations.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Data The data to write.
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultIoWrite32 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINT32 Data
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
64-bit I/O write operations.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Data The data to write.
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultIoWrite64 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINT64 Data
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
8-bit memory read operations.
|
|
|
|
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return 0.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
|
|
|
|
@return An 8-bit value returned from the memory space.
|
|
|
|
|
|
|
|
**/
|
|
|
|
UINT8
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultMemRead8 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
16-bit memory read operations.
|
|
|
|
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return 0.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
|
|
|
|
@return An 16-bit value returned from the memory space.
|
|
|
|
|
|
|
|
**/
|
|
|
|
UINT16
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultMemRead16 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
32-bit memory read operations.
|
|
|
|
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return 0.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
|
|
|
|
@return An 32-bit value returned from the memory space.
|
|
|
|
|
|
|
|
**/
|
|
|
|
UINT32
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultMemRead32 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
64-bit memory read operations.
|
|
|
|
|
|
|
|
If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return 0.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
|
|
|
|
@return An 64-bit value returned from the memory space.
|
|
|
|
|
|
|
|
**/
|
|
|
|
UINT64
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultMemRead64 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
8-bit memory write operations.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Data The data to write.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultMemWrite8 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINT8 Data
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
16-bit memory write operations.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Data The data to write.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultMemWrite16 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINT16 Data
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
32-bit memory write operations.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Data The data to write.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultMemWrite32 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINT32 Data
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
64-bit memory write operations.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param Data The data to write.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultMemWrite64 (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_CPU_IO_PPI *This,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN UINT64 Data
|
|
|
|
);
|
|
|
|
|
|
|
|
extern EFI_PEI_CPU_IO_PPI gPeiDefaultCpuIoPpi;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Default EFI_PEI_PCI_CFG2_PPI support for EFI_PEI_SERVICES table when PeiCore initialization.
|
|
|
|
//
|
|
|
|
|
|
|
|
/**
|
|
|
|
Reads from a given location in the PCI configuration space.
|
|
|
|
|
|
|
|
If the EFI_PEI_PCI_CFG2_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return EFI_NOT_YET_AVAILABLE.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Width The width of the access. Enumerated in bytes.
|
|
|
|
See EFI_PEI_PCI_CFG_PPI_WIDTH above.
|
|
|
|
@param Address The physical address of the access. The format of
|
|
|
|
the address is described by EFI_PEI_PCI_CFG_PPI_PCI_ADDRESS.
|
|
|
|
@param Buffer A pointer to the buffer of data.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The function completed successfully.
|
|
|
|
@retval EFI_INVALID_PARAMETER The invalid access width.
|
|
|
|
@retval EFI_NOT_YET_AVAILABLE If the EFI_PEI_PCI_CFG2_PPI is not installed by platform/chipset PEIM.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultPciCfg2Read (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_PCI_CFG2_PPI *This,
|
|
|
|
IN EFI_PEI_PCI_CFG_PPI_WIDTH Width,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN OUT VOID *Buffer
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Write to a given location in the PCI configuration space.
|
|
|
|
|
|
|
|
If the EFI_PEI_PCI_CFG2_PPI is not installed by platform/chipset PEIM, then
|
|
|
|
return EFI_NOT_YET_AVAILABLE.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Width The width of the access. Enumerated in bytes.
|
|
|
|
See EFI_PEI_PCI_CFG_PPI_WIDTH above.
|
|
|
|
@param Address The physical address of the access. The format of
|
|
|
|
the address is described by EFI_PEI_PCI_CFG_PPI_PCI_ADDRESS.
|
|
|
|
@param Buffer A pointer to the buffer of data.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The function completed successfully.
|
|
|
|
@retval EFI_INVALID_PARAMETER The invalid access width.
|
|
|
|
@retval EFI_NOT_YET_AVAILABLE If the EFI_PEI_PCI_CFG2_PPI is not installed by platform/chipset PEIM.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultPciCfg2Write (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_PCI_CFG2_PPI *This,
|
|
|
|
IN EFI_PEI_PCI_CFG_PPI_WIDTH Width,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN OUT VOID *Buffer
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
This function performs a read-modify-write operation on the contents from a given
|
|
|
|
location in the PCI configuration space.
|
|
|
|
|
|
|
|
@param PeiServices An indirect pointer to the PEI Services Table
|
|
|
|
published by the PEI Foundation.
|
|
|
|
@param This Pointer to local data for the interface.
|
|
|
|
@param Width The width of the access. Enumerated in bytes. Type
|
|
|
|
EFI_PEI_PCI_CFG_PPI_WIDTH is defined in Read().
|
|
|
|
@param Address The physical address of the access.
|
|
|
|
@param SetBits Points to value to bitwise-OR with the read configuration value.
|
|
|
|
The size of the value is determined by Width.
|
|
|
|
@param ClearBits Points to the value to negate and bitwise-AND with the read configuration value.
|
|
|
|
The size of the value is determined by Width.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The function completed successfully.
|
|
|
|
@retval EFI_INVALID_PARAMETER The invalid access width.
|
|
|
|
@retval EFI_NOT_YET_AVAILABLE If the EFI_PEI_PCI_CFG2_PPI is not installed by platform/chipset PEIM.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiDefaultPciCfg2Modify (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN CONST EFI_PEI_PCI_CFG2_PPI *This,
|
|
|
|
IN EFI_PEI_PCI_CFG_PPI_WIDTH Width,
|
|
|
|
IN UINT64 Address,
|
|
|
|
IN VOID *SetBits,
|
|
|
|
IN VOID *ClearBits
|
|
|
|
);
|
|
|
|
|
|
|
|
extern EFI_PEI_PCI_CFG2_PPI gPeiDefaultPciCfg2Ppi;
|
|
|
|
|
2009-12-03 03:48:05 +01:00
|
|
|
/**
|
|
|
|
After PeiCore image is shadowed into permanent memory, all build-in FvPpi should
|
|
|
|
be re-installed with the instance in permanent memory and all cached FvPpi pointers in
|
|
|
|
PrivateData->Fv[] array should be fixed up to be pointed to the one in permenant
|
|
|
|
memory.
|
|
|
|
|
|
|
|
@param PrivateData Pointer to PEI_CORE_INSTANCE.
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
PeiReinitializeFv (
|
|
|
|
IN PEI_CORE_INSTANCE *PrivateData
|
|
|
|
);
|
|
|
|
|
2007-07-04 09:51:48 +02:00
|
|
|
#endif
|