X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FInclude%2FPi%2FPiPeiCis.h;h=c93179a82845195417ac42424570d689a643a143;hb=73d622ed1610963b4a830bb1178abd5d6f7287ae;hp=03a1294d593016d677a9f4afb9a819346d5ea26d;hpb=842f5579c7e2a313f56c576e4c5150f7f4793079;p=mirror_edk2.git diff --git a/MdePkg/Include/Pi/PiPeiCis.h b/MdePkg/Include/Pi/PiPeiCis.h index 03a1294d59..c93179a828 100644 --- a/MdePkg/Include/Pi/PiPeiCis.h +++ b/MdePkg/Include/Pi/PiPeiCis.h @@ -1,8 +1,7 @@ - /** @file PI PEI master include file. This file should match the PI spec. - Copyright (c) 2006 - 2007, Intel Corporation + Copyright (c) 2006 - 2009, Intel Corporation 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 @@ -12,27 +11,34 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. @par Revision Reference: - Version 1.0. + PI Version 1.0 **/ #ifndef __PI_PEICIS_H__ #define __PI_PEICIS_H__ +#include #include -#define EFI_NOT_AVAILABLE_YET EFIERR (28) - -// -// Handles of EFI FV/FFS. -// +/// +/// Handles of EFI FV. +/// typedef VOID *EFI_PEI_FV_HANDLE; + +/// +/// Handles of EFI FFS +/// typedef VOID *EFI_PEI_FILE_HANDLE; -// -// Declare forward referenced data structures -// +/// +/// Declare forward reference data structure for EFI_PEI_SERVICE +/// typedef struct _EFI_PEI_SERVICES EFI_PEI_SERVICES; + +/// +/// Declare forward reference data structure for EFI_PEI_NOTIFY_DESCRIPTOR +/// typedef struct _EFI_PEI_NOTIFY_DESCRIPTOR EFI_PEI_NOTIFY_DESCRIPTOR; @@ -44,17 +50,18 @@ typedef struct _EFI_PEI_NOTIFY_DESCRIPTOR EFI_PEI_NOTIFY_DESCRIPTOR; The PEI Dispatcher will invoke each PEIM one time. During this pass, the PEI Dispatcher will pass control to the PEIM at the AddressOfEntryPoint in the PE Header. - @param FfsHeader Pointer to the FFS file header. + @param FileHandle Pointer to the FFS file header. @param PeiServices Describes the list of possible PEI Services. - @return Status code + @retval EFI_SUCCESS The PEI completed successfully. + @retval !EFI_SUCCESS There is error in PEIM. **/ typedef EFI_STATUS -(EFIAPI *EFI_PEIM_ENTRY_POINT)( - IN EFI_PEI_FILE_HANDLE *FfsHeader, - IN EFI_PEI_SERVICES **PeiServices +(EFIAPI *EFI_PEIM_ENTRY_POINT2)( + IN EFI_PEI_FILE_HANDLE FileHandle, + IN CONST EFI_PEI_SERVICES **PeiServices ); /** @@ -64,12 +71,11 @@ EFI_STATUS @param NotifyDescriptor Address of the notification descriptor data structure. @param Ppi Address of the PPI that was installed. - @return Status code - + @return Status of the notification. **/ typedef EFI_STATUS -(EFIAPI *EFI_PEIM_NOTIFY_ENTRY_POINT) ( +(EFIAPI *EFI_PEIM_NOTIFY_ENTRY_POINT)( IN EFI_PEI_SERVICES **PeiServices, IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor, IN VOID *Ppi @@ -85,31 +91,44 @@ EFI_STATUS #define EFI_PEI_PPI_DESCRIPTOR_NOTIFY_TYPES 0x00000060 #define EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST 0x80000000 +/// +/// The data structure through which a PEIM describes available services to the PEI Foundation. +/// typedef struct { + /// + /// This field is a set of flags describing the characteristics of this imported table entry. + /// All flags are defined as EFI_PEI_PPI_DESCRIPTOR_***, which can also be combined into one. + /// UINTN Flags; + /// + /// The address of the EFI_GUID that names the interface. + /// EFI_GUID *Guid; + /// + /// A pointer to the PPI. It contains the information necessary to install a service. + /// VOID *Ppi; } EFI_PEI_PPI_DESCRIPTOR; +/// +/// The data structure in a given PEIM that tells the PEI +/// Foundation where to invoke the notification service. +/// struct _EFI_PEI_NOTIFY_DESCRIPTOR { + /// + /// Details if the type of notification is callback or dispatch. + /// UINTN Flags; + /// + /// The address of the EFI_GUID that names the interface. + /// EFI_GUID *Guid; + /// + /// Address of the notification callback function itself within the PEIM. + /// EFI_PEIM_NOTIFY_ENTRY_POINT Notify; }; -// -// Describes request of the module to be loaded to -// the permanent memory once it is available. Unlike most of the other HOBs, -// this HOB is produced and consumed during the HOB producer phase. -// -typedef struct _EFI_HOB_LOAD_PEIM { - EFI_HOB_GENERIC_HEADER Header; - EFI_PEI_FILE_HANDLE FileHandle; - EFI_PEIM_ENTRY_POINT EntryPoint; - EFI_PEIM_ENTRY_POINT InMemEntryPoint; -} EFI_HOB_LOAD_PEIM; - - /** This service is the first one provided by the PEI Foundation. This function installs an interface in the PEI PPI database by GUID. The purpose of the @@ -127,9 +146,9 @@ typedef struct _EFI_HOB_LOAD_PEIM { **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_INSTALL_PPI) ( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_PPI_DESCRIPTOR *PpiList +(EFIAPI *EFI_PEI_INSTALL_PPI)( + IN CONST EFI_PEI_SERVICES **PeiServices, + IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList ); /** @@ -152,10 +171,10 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_REINSTALL_PPI) ( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_PPI_DESCRIPTOR *OldPpi, - IN EFI_PEI_PPI_DESCRIPTOR *NewPpi +(EFIAPI *EFI_PEI_REINSTALL_PPI)( + IN CONST EFI_PEI_SERVICES **PeiServices, + IN CONST EFI_PEI_PPI_DESCRIPTOR *OldPpi, + IN CONST EFI_PEI_PPI_DESCRIPTOR *NewPpi ); /** @@ -173,12 +192,12 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_LOCATE_PPI) ( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_GUID *Guid, - IN UINTN Instance, - IN OUT EFI_PEI_PPI_DESCRIPTOR **PpiDescriptor, - IN OUT VOID **Ppi +(EFIAPI *EFI_PEI_LOCATE_PPI)( + IN CONST EFI_PEI_SERVICES **PeiServices, + IN CONST EFI_GUID *Guid, + IN UINTN Instance, + IN OUT EFI_PEI_PPI_DESCRIPTOR **PpiDescriptor OPTIONAL, + IN OUT VOID **Ppi ); /** @@ -198,9 +217,9 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_NOTIFY_PPI) ( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList +(EFIAPI *EFI_PEI_NOTIFY_PPI)( + IN CONST EFI_PEI_SERVICES **PeiServices, + IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList ); /** @@ -214,9 +233,9 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_GET_BOOT_MODE) ( - IN EFI_PEI_SERVICES **PeiServices, - OUT EFI_BOOT_MODE *BootMode +(EFIAPI *EFI_PEI_GET_BOOT_MODE)( + IN CONST EFI_PEI_SERVICES **PeiServices, + OUT EFI_BOOT_MODE *BootMode ); /** @@ -230,9 +249,9 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_SET_BOOT_MODE) ( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_BOOT_MODE BootMode +(EFIAPI *EFI_PEI_SET_BOOT_MODE)( + IN CONST EFI_PEI_SERVICES **PeiServices, + IN EFI_BOOT_MODE BootMode ); /** @@ -247,9 +266,9 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_GET_HOB_LIST) ( - IN EFI_PEI_SERVICES **PeiServices, - IN OUT VOID **HobList +(EFIAPI *EFI_PEI_GET_HOB_LIST)( + IN CONST EFI_PEI_SERVICES **PeiServices, + OUT VOID **HobList ); /** @@ -266,83 +285,96 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_CREATE_HOB) ( - IN EFI_PEI_SERVICES **PeiServices, - IN UINT16 Type, - IN UINT16 Length, - IN OUT VOID **Hob +(EFIAPI *EFI_PEI_CREATE_HOB)( + IN CONST EFI_PEI_SERVICES **PeiServices, + IN UINT16 Type, + IN UINT16 Length, + IN OUT VOID **Hob ); /** The purpose of the service is to abstract the capability of the PEI Foundation to discover instances of firmware volumes in the system. - Given the input file pointer, this service searches for the next - matching file in the Firmware File System (FFS) volume. + + This service enables PEIMs to discover additional firmware volumes. The PEI Foundation uses this + service to abstract the locations and formats of various firmware volumes. These volumes include + the Boot Firmware Volume and any other volumes exposed by EFI_PEI_FV_PPI. The service + returns a volume handle of type EFI_PEI_FV_HANDLE, which must be unique within the system. @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 FwVolHeader Pointer to the firmware volume header of the volume to return. + @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 volumn handle or NULL if it does not exist. @retval EFI_SUCCESS The volume was found. @retval EFI_NOT_FOUND The volume was not found. - @retval EFI_INVALID_PARAMETER FwVolHeader is NULL + @retval EFI_INVALID_PARAMETER VolumeHandle is NULL. **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_FFS_FIND_NEXT_VOLUME2) ( - IN EFI_PEI_SERVICES **PeiServices, - IN UINTN Instance, - IN OUT EFI_FIRMWARE_VOLUME_HEADER **FwVolHeader +(EFIAPI *EFI_PEI_FFS_FIND_NEXT_VOLUME2)( + IN CONST EFI_PEI_SERVICES **PeiServices, + IN UINTN Instance, + OUT EFI_PEI_FV_HANDLE *VolumeHandle ); /** - The purpose of the service is to abstract the capability of the PEI - Foundation to discover instances of firmware files in the system. - Given the input file pointer, this service searches for the next matching - file in the Firmware File System (FFS) volume. + Searches for the next matching file in the firmware volume. + + This service enables PEIMs to discover firmware files within a specified volume. + To find the first instance of a firmware file, pass a FileHandle value of NULL into the service. + The service returns a file handle of type EFI_PEI_FILE_HANDLE, which must be unique within + the system. @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation. @param SearchType A filter to find files only of this type. - @param FwVolHeader Pointer to the firmware volume header of the volume to search.This parameter - must point to a valid FFS volume. - @param FileHeader Pointer to the current file from which to begin searching.This pointer will be - updated upon return to reflect the file found. + @param FvHandle Handle of firmware volume in which to search. + @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_SUCCESS The file was found. - @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. + @retval EFI_NOT_FOUND The file was not found. + @retval EFI_NOT_FOUND The header checksum was not zero. **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_FFS_FIND_NEXT_FILE2) ( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_FV_FILETYPE SearchType, - IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader, - IN OUT EFI_FFS_FILE_HEADER **FileHeader +(EFIAPI *EFI_PEI_FFS_FIND_NEXT_FILE2)( + IN CONST EFI_PEI_SERVICES **PeiServices, + IN EFI_FV_FILETYPE SearchType, + IN CONST EFI_PEI_FV_HANDLE FvHandle, + IN OUT EFI_PEI_FILE_HANDLE *FileHandle ); /** - Given the input file pointer, this service searches for the next - matching file in the Firmware File System (FFS) volume. + Searches for the next matching section within the specified file. + + This service enables PEI modules to discover the first section of a given type within a valid file. + This service will search within encapsulation sections (compression and GUIDed) as well. It will + search inside of a GUIDed section or a compressed section, but may not, for example, search a + GUIDed section inside a GUIDes section. + This service will not search within compression sections or GUIDed sections which require + extraction if memory is not present. @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation. @param SectionType The value of the section type to find. - @param FfsFileHeader A pointer to the file header that contains the set of sections to be searched. + @param FileHandle Handle of the firmware file to search. @param SectionData A pointer to the discovered section, if successful. - @retval EFI_SUCCESS The section was found. - @retval EFI_NOT_FOUND The section was not found. + @retval EFI_SUCCESS The section was found. + @retval EFI_NOT_FOUND The section was not found. **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_FFS_FIND_SECTION_DATA2) ( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_SECTION_TYPE SectionType, - IN EFI_FFS_FILE_HEADER *FfsFileHeader, - IN OUT VOID **SectionData +(EFIAPI *EFI_PEI_FFS_FIND_SECTION_DATA2)( + IN CONST EFI_PEI_SERVICES **PeiServices, + IN EFI_SECTION_TYPE SectionType, + IN EFI_PEI_FILE_HANDLE FileHandle, + OUT VOID **SectionData ); /** @@ -359,8 +391,8 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_INSTALL_PEI_MEMORY) ( - IN EFI_PEI_SERVICES **PeiServices, +(EFIAPI *EFI_PEI_INSTALL_PEI_MEMORY)( + IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_PHYSICAL_ADDRESS MemoryBegin, IN UINT64 MemoryLength ); @@ -382,11 +414,11 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_ALLOCATE_PAGES) ( - IN EFI_PEI_SERVICES **PeiServices, +(EFIAPI *EFI_PEI_ALLOCATE_PAGES)( + IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, - IN OUT EFI_PHYSICAL_ADDRESS *Memory + OUT EFI_PHYSICAL_ADDRESS *Memory ); /** @@ -403,8 +435,8 @@ EFI_STATUS **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_ALLOCATE_POOL) ( - IN EFI_PEI_SERVICES **PeiServices, +(EFIAPI *EFI_PEI_ALLOCATE_POOL)( + IN CONST EFI_PEI_SERVICES **PeiServices, IN UINTN Size, OUT VOID **Buffer ); @@ -416,12 +448,10 @@ EFI_STATUS @param Source Pointer to the source buffer of the memory copy @param Length Number of bytes to copy from Source to Destination. - @return None - **/ typedef VOID -(EFIAPI *EFI_PEI_COPY_MEM) ( +(EFIAPI *EFI_PEI_COPY_MEM)( IN VOID *Destination, IN VOID *Source, IN UINTN Length @@ -434,12 +464,10 @@ VOID @param Size Number of bytes in Buffer to fill. @param Value Value to fill Buffer with - @return None - **/ typedef VOID -(EFIAPI *EFI_PEI_SET_MEM) ( +(EFIAPI *EFI_PEI_SET_MEM)( IN VOID *Buffer, IN UINTN Size, IN UINT8 Value @@ -448,6 +476,11 @@ VOID /** This service publishes an interface that allows PEIMs to report status codes. + ReportStatusCode() is called by PEIMs that wish to report status information on their + progress. The principal use model is for a PEIM to emit one of the standard 32-bit error codes. This + will allow a platform owner to ascertain the state of the system, especially under conditions where + the full consoles might not have been installed. + @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation. @param Type Indicates the type of status code being reported. @param Value Describes the current status of a hardware or @@ -471,33 +504,37 @@ VOID **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_REPORT_STATUS_CODE) ( - IN EFI_PEI_SERVICES **PeiServices, - IN EFI_STATUS_CODE_TYPE Type, - IN EFI_STATUS_CODE_VALUE Value, - IN UINT32 Instance, - IN EFI_GUID *CallerId OPTIONAL, - IN EFI_STATUS_CODE_DATA *Data OPTIONAL +(EFIAPI *EFI_PEI_REPORT_STATUS_CODE)( + IN CONST EFI_PEI_SERVICES **PeiServices, + IN EFI_STATUS_CODE_TYPE Type, + IN EFI_STATUS_CODE_VALUE Value, + IN UINT32 Instance, + IN CONST EFI_GUID *CallerId OPTIONAL, + IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL ); /** Resets the entire platform. + This service resets the entire platform, including all processors + and devices, and reboots the system. + This service will never return EFI_SUCCESS. + @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation. - @retval EFI_SUCCESS The function completed successfully. @retval EFI_NOT_AVAILABLE_YET The service has not been installed yet. **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_RESET_SYSTEM) ( - IN EFI_PEI_SERVICES **PeiServices +(EFIAPI *EFI_PEI_RESET_SYSTEM)( + IN CONST EFI_PEI_SERVICES **PeiServices ); /** - + Find a file within a volume by its name. + This service searches for files with a specific name, within either the specified firmware volume or all firmware volumes. The service returns a file handle of type EFI_PEI_FILE_HANDLE, @@ -505,145 +542,133 @@ EFI_STATUS @param FileName A pointer to the name of the file to find within the firmware volume. - - @param VolumeHandle The firmware volume to search FileHandle - Upon exit, points to the found file's + @param VolumeHandle The firmware volume to search. + @param FileHandle Upon exit, points to the found file's handle or NULL if it could not be found. @retval EFI_SUCCESS File was found. - @retval EFI_NOT_FOUND File was not found. - @retval EFI_INVALID_PARAMETER VolumeHandle or FileHandle or FileName was NULL. - **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_FFS_FIND_BY_NAME) ( - IN CONST EFI_GUID *FileName, - IN CONST EFI_PEI_FV_HANDLE VolumeHandle, - OUT EFI_PEI_FILE_HANDLE *FileHandle +(EFIAPI *EFI_PEI_FFS_FIND_BY_NAME)( + IN CONST EFI_GUID *FileName, + IN EFI_PEI_FV_HANDLE VolumeHandle, + OUT EFI_PEI_FILE_HANDLE *FileHandle ); - -/** - - @param FileName Name of the file. - - @param FileType File type. See EFI_FV_FILETYPE, which is - defined in the Platform Initialization - Firmware Storage Specification. - - @param FileAttributes Attributes of the file. Type - EFI_FV_FILE_ATTRIBUTES is defined in - the Platform Initialization Firmware - Storage Specification. - - @param Buffer Points to the file's data (not the header). - Not valid if EFI_FV_FILE_ATTRIB_MEMORY_MAPPED - is zero. - - @param BufferSize Size of the file's data. - -**/ +/// +/// Information of FV file. +/// typedef struct { + /// + /// Name of the file. + /// EFI_GUID FileName; + /// + /// File type. + /// EFI_FV_FILETYPE FileType; + /// + /// Attributes of the file. + /// EFI_FV_FILE_ATTRIBUTES FileAttributes; + /// + /// Points to the file's data (not the header). + /// Not valid if EFI_FV_FILE_ATTRIB_MEMORY_MAPPED + /// is zero. + /// VOID *Buffer; + /// + /// Size of the file's data. + /// UINT32 BufferSize; } EFI_FV_FILE_INFO; /** - + Returns information about a specific file. + This function returns information about a specific file, including its file name, type, attributes, starting address and size. If the firmware volume is not memory mapped then the Buffer member will be NULL. @param FileHandle Handle of the file. - - @param FileInfo Upon exit, points to the file¡¯s + @param FileInfo Upon exit, points to the file's information. @retval EFI_SUCCESS File information returned. - @retval EFI_INVALID_PARAMETER If FileHandle does not represent a valid file. - @retval EFI_INVALID_PARAMETER If FileInfo is NULL. **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_FFS_GET_FILE_INFO) ( - IN CONST EFI_PEI_FILE_HANDLE FileHandle, - OUT EFI_FV_FILE_INFO *FileInfo +(EFIAPI *EFI_PEI_FFS_GET_FILE_INFO)( + IN EFI_PEI_FILE_HANDLE FileHandle, + OUT EFI_FV_FILE_INFO *FileInfo ); - -/** - - @param FvAttributes Attributes of the firmware volume. Type - EFI_FVB_ATTRIBUTES is defined in the - Platform Initialization Firmware Storage - Specficiation. - - @param FvFormat Format of the firmware volume. For PI - Architecture Firmware Volumes, this can - be copied from FileSystemGuid in - EFI_FIRMWARE_VOLUME_HEADER. - - @param FvName Name of the firmware volume. For PI - Architecture Firmware Volumes, this can - be copied from VolumeName in the - extended header of - EFI_FIRMWARE_VOLUME_HEADER. - - @param FvStart Points to the first byte of the firmware - volume, if bit EFI_FVB_MEMORY_MAPPED is - set in FvAttributes. FvSize Size of the - firmware volume. - -**/ +/// +/// Information of FV volume. +/// typedef struct { - EFI_FVB_ATTRIBUTES FvAttributes; - EFI_GUID FvFormat; - EFI_GUID FvName; - VOID *FvStart; - UINT64 FvSize; + /// + /// Attributes of the firmware volume. + /// + EFI_FVB_ATTRIBUTES_2 FvAttributes; + /// + /// Format of the firmware volume. + /// + EFI_GUID FvFormat; + /// + /// Name of the firmware volume. + /// + EFI_GUID FvName; + /// + /// Points to the first byte of the firmware + /// volume, if bit EFI_FVB_MEMORY_MAPPED is + /// set in FvAttributes. + /// + VOID *FvStart; + /// + /// Size of the firmware volume. + /// + UINT64 FvSize; } EFI_FV_INFO; /** - + Returns information about the specified volume. + This function returns information about a specific firmware volume, including its name, type, attributes, starting address and size. @param VolumeHandle Handle of the volume. - @param VolumeInfo Upon exit, points to the volume¡¯s + @param VolumeInfo Upon exit, points to the volume's information. @retval EFI_SUCCESS File information returned. - @retval EFI_INVALID_PARAMETER If FileHandle does not represent a valid file. - @retval EFI_INVALID_PARAMETER If FileInfo is NULL. **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_FFS_GET_VOLUME_INFO) ( - IN CONST EFI_PEI_FV_HANDLE *VolumeHandle, - OUT EFI_FV_INFO *VolumeInfo +(EFIAPI *EFI_PEI_FFS_GET_VOLUME_INFO)( + IN EFI_PEI_FV_HANDLE VolumeHandle, + OUT EFI_FV_INFO *VolumeInfo ); /** - + Register a PEIM so that it will be shadowed and called again. + This service registers a file handle so that after memory is available, the PEIM will be re-loaded into permanent memory and re-initialized. The PEIM registered this way will always be @@ -654,23 +679,21 @@ EFI_STATUS initialized after permanent memory is installed, even the first time. - @param FileHandle PEIM¡¯s file handle. Must be the currently - xecuting PEIM. + @param FileHandle PEIM's file handle. Must be the currently + executing PEIM. - @retval EFI_SUCCESS The PEIM was successfully registered for - shadowing. - + @retval EFI_SUCCESS The PEIM was successfully registered for + shadowing. @retval EFI_ALREADY_STARTED The PEIM was previously registered for shadowing. - - @retval EFI_NOT_FOUND The FileHandle does not refer to a - valid file handle. + @retval EFI_NOT_FOUND The FileHandle does not refer to a + valid file handle. **/ typedef EFI_STATUS -(EFIAPI *EFI_PEI_REGISTER_FOR_SHADOW) ( - IN CONST EFI_PEI_FILE_HANDLE FileHandle +(EFIAPI *EFI_PEI_REGISTER_FOR_SHADOW)( + IN EFI_PEI_FILE_HANDLE FileHandle ); @@ -679,130 +702,168 @@ EFI_STATUS // #define PEI_SPECIFICATION_MAJOR_REVISION 1 #define PEI_SPECIFICATION_MINOR_REVISION 0 - +/// +/// Inconsistent with specification here: +/// In PI1.0 spec, PEI_SERVICES_SIGNATURE is defined as 0x5652455320494550. But +/// to pass multiple tool chain, it is append a ULL. +/// // // PEI Services Table // -#define PEI_SERVICES_SIGNATURE 0x5652455320494550 -#define PEI_SERVICES_REVISION (PEI_SPECIFICATION_MAJOR_REVISION<<16) | (PEI_SPECIFICATION_MINOR_REVISION) - +#define PEI_SERVICES_SIGNATURE 0x5652455320494550ULL +/// +/// Inconsistent with specification here: +/// In PI1.0 spec, There is a typo error in PEI_SERVICES_REVISION. In the spec. the defintion is +/// #define ((PEI_SPECIFICATION_MAJOR_REVISION<<16) |(PEI_SPECIFICATION_MINOR_REVISION)) +/// and it should be as follow: +/// +#define PEI_SERVICES_REVISION ((PEI_SPECIFICATION_MAJOR_REVISION<<16) | (PEI_SPECIFICATION_MINOR_REVISION)) + +/// +/// EFI_PEI_SERVICES is a collection of functions whose implementation is provided by the PEI +/// Foundation. These services fall into various classes, including the following: +/// - Managing the boot mode +/// - Allocating both early and permanent memory +/// - Supporting the Firmware File System (FFS) +/// - Abstracting the PPI database abstraction +/// - Creating Hand-Off Blocks (HOBs) +/// struct _EFI_PEI_SERVICES { - EFI_TABLE_HEADER Hdr; + /// + /// The table header for the PEI Services Table. + /// + EFI_TABLE_HEADER Hdr; + // // PPI Functions // - EFI_PEI_INSTALL_PPI InstallPpi; - EFI_PEI_REINSTALL_PPI ReInstallPpi; - EFI_PEI_LOCATE_PPI LocatePpi; - EFI_PEI_NOTIFY_PPI NotifyPpi; + EFI_PEI_INSTALL_PPI InstallPpi; + EFI_PEI_REINSTALL_PPI ReInstallPpi; + EFI_PEI_LOCATE_PPI LocatePpi; + EFI_PEI_NOTIFY_PPI NotifyPpi; + // // Boot Mode Functions // - EFI_PEI_GET_BOOT_MODE GetBootMode; - EFI_PEI_SET_BOOT_MODE SetBootMode; + EFI_PEI_GET_BOOT_MODE GetBootMode; + EFI_PEI_SET_BOOT_MODE SetBootMode; + // // HOB Functions // - EFI_PEI_GET_HOB_LIST GetHobList; - EFI_PEI_CREATE_HOB CreateHob; + EFI_PEI_GET_HOB_LIST GetHobList; + EFI_PEI_CREATE_HOB CreateHob; + // // Firmware Volume Functions // EFI_PEI_FFS_FIND_NEXT_VOLUME2 FfsFindNextVolume; EFI_PEI_FFS_FIND_NEXT_FILE2 FfsFindNextFile; EFI_PEI_FFS_FIND_SECTION_DATA2 FfsFindSectionData; + // // PEI Memory Functions // - EFI_PEI_INSTALL_PEI_MEMORY InstallPeiMemory; - EFI_PEI_ALLOCATE_PAGES AllocatePages; - EFI_PEI_ALLOCATE_POOL AllocatePool; - EFI_PEI_COPY_MEM CopyMem; - EFI_PEI_SET_MEM SetMem; + EFI_PEI_INSTALL_PEI_MEMORY InstallPeiMemory; + EFI_PEI_ALLOCATE_PAGES AllocatePages; + EFI_PEI_ALLOCATE_POOL AllocatePool; + EFI_PEI_COPY_MEM CopyMem; + EFI_PEI_SET_MEM SetMem; + // // Status Code - EFI_PEI_REPORT_STATUS_CODE ReportStatusCode; + // + EFI_PEI_REPORT_STATUS_CODE ReportStatusCode; + // // Reset // - EFI_PEI_RESET_SYSTEM ResetSystem; + EFI_PEI_RESET_SYSTEM ResetSystem; + // // (the following interfaces are installed by publishing PEIM) - // // I/O Abstractions // - EFI_PEI_CPU_IO_PPI *CpuIo; - EFI_PEI_PCI_CFG2_PPI *PciCfg; + EFI_PEI_CPU_IO_PPI *CpuIo; + EFI_PEI_PCI_CFG2_PPI *PciCfg; + // // Future Installed Services - EFI_PEI_FFS_FIND_BY_NAME FfsFindFileByName; - EFI_PEI_FFS_GET_FILE_INFO FfsGetFileInfo; - EFI_PEI_FFS_GET_VOLUME_INFO FfsGetVolumeInfo; - EFI_PEI_REGISTER_FOR_SHADOW RegisterForShadow; + // + EFI_PEI_FFS_FIND_BY_NAME FfsFindFileByName; + EFI_PEI_FFS_GET_FILE_INFO FfsGetFileInfo; + EFI_PEI_FFS_GET_VOLUME_INFO FfsGetVolumeInfo; + EFI_PEI_REGISTER_FOR_SHADOW RegisterForShadow; }; +/// +/// EFI_SEC_PEI_HAND_OFF structure hold information about +/// PEI core's operating environment, such as the size of location of +/// temporary RAM, the stack location and BFV location. +/// typedef struct _EFI_SEC_PEI_HAND_OFF { - // - // Size of the data structure. - // + /// + /// Size of the data structure. + /// UINT16 DataSize; - // - // Points to the first byte of the boot firmware volume, - // which the PEI Dispatcher should search for - // PEI modules. - // + /// + /// Points to the first byte of the boot firmware volume, + /// which the PEI Dispatcher should search for + /// PEI modules. + /// VOID *BootFirmwareVolumeBase; - // - // Size of the boot firmware volume, in bytes. - // + /// + /// Size of the boot firmware volume, in bytes. + /// UINTN BootFirmwareVolumeSize; - // - // Points to the first byte of the temporary RAM. - // + /// + /// Points to the first byte of the temporary RAM. + /// VOID *TemporaryRamBase; - // - // Size of the temporary RAM, in bytes. - // + /// + /// Size of the temporary RAM, in bytes. + /// UINTN TemporaryRamSize; - // - // Points to the first byte of the temporary RAM - // available for use by the PEI Foundation. The area - // described by PeiTemporaryRamBase and PeiTemporaryRamSize - // must not extend outside beyond the area described by - // TemporaryRamBase & TemporaryRamSize. This area should not - // overlap with the area reported by StackBase and - // StackSize. - // + /// + /// Points to the first byte of the temporary RAM + /// available for use by the PEI Foundation. The area + /// described by PeiTemporaryRamBase and PeiTemporaryRamSize + /// must not extend outside beyond the area described by + /// TemporaryRamBase & TemporaryRamSize. This area should not + /// overlap with the area reported by StackBase and + /// StackSize. + /// VOID *PeiTemporaryRamBase; - // - // Size of the available temporary RAM available for - // use by the PEI Foundation, in bytes. - // + /// + /// Size of the available temporary RAM available for + /// use by the PEI Foundation, in bytes. + /// UINTN PeiTemporaryRamSize; - // - // Points to the first byte of the stack. - // This are may be part of the memory described by - // TemporaryRamBase and TemporaryRamSize - // or may be an entirely separate area. - // + /// + /// Points to the first byte of the stack. + /// This are may be part of the memory described by + /// TemporaryRamBase and TemporaryRamSize + /// or may be an entirely separate area. + /// VOID *StackBase; - // - // Size of the stack, in bytes. - // + /// + /// Size of the stack, in bytes. + /// UINTN StackSize; } EFI_SEC_PEI_HAND_OFF; /** + Entry point of PEI Foundation. This function is the entry point for the PEI Foundation, which allows the SEC phase to pass information about the stack, @@ -820,8 +881,7 @@ typedef struct _EFI_SEC_PEI_HAND_OFF { information about the PEI core's operating environment, such as the size and location of temporary RAM, the stack - location and the BFV location. The type - EFI_SEC_PEI_HAND_OFF is + location and the BFV location. @param PpiList Points to a list of one or more PPI descriptors to be installed initially by