2007-07-04 12:41:32 +02:00
|
|
|
/** @file
|
|
|
|
This file declares FindFv PPI used to locate FVs that contain PEIMs in PEI
|
|
|
|
|
2009-07-02 09:40:24 +02:00
|
|
|
Copyright (c) 2007 - 2009, Intel Corporation
|
2007-07-04 14:13:24 +02:00
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
2007-07-04 12:41:32 +02:00
|
|
|
|
2007-07-04 14:13:24 +02:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-07-04 12:41:32 +02:00
|
|
|
|
|
|
|
@par Revision Reference:
|
|
|
|
This PPI is defined in PEI CIS
|
|
|
|
Version 0.91
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
2007-07-04 14:13:24 +02:00
|
|
|
#ifndef _FIND_FV_H_
|
|
|
|
#define _FIND_FV_H_
|
|
|
|
|
2009-07-08 05:41:46 +02:00
|
|
|
///
|
|
|
|
/// Inconsistent with specification here:
|
2009-07-28 15:25:37 +02:00
|
|
|
/// GUID value format has been changed to the standard GUID format.
|
2009-07-08 05:41:46 +02:00
|
|
|
///
|
2007-07-04 12:41:32 +02:00
|
|
|
#define EFI_PEI_FIND_FV_PPI_GUID \
|
|
|
|
{ \
|
|
|
|
0x36164812, 0xa023, 0x44e5, {0xbd, 0x85, 0x5, 0xbf, 0x3c, 0x77, 0x0, 0xaa } \
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct _EFI_PEI_FIND_FV_PPI EFI_PEI_FIND_FV_PPI;
|
|
|
|
|
|
|
|
/**
|
2007-07-04 14:13:24 +02:00
|
|
|
This interface returns the base address of the firmware volume whose index
|
2009-07-28 15:25:37 +02:00
|
|
|
was passed in FvNumber. Once this function reports a firmware volume
|
2007-07-04 12:41:32 +02:00
|
|
|
index/base address pair, that index/address pairing must continue throughout PEI.
|
|
|
|
|
|
|
|
@param PeiServices Pointer to the PEI Services Table.
|
|
|
|
@param This Interface pointer that implements the Find FV service.
|
|
|
|
@param FvNumber The index of the firmware volume to locate.
|
|
|
|
@param FvAddress The address of the volume to discover.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS An additional firmware volume was found.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES There are no firmware volumes for the given FvNumber.
|
|
|
|
@retval EFI_INVALID_PARAMETER *FvAddress is NULL.
|
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2008-07-31 09:44:54 +02:00
|
|
|
(EFIAPI *EFI_PEI_FIND_FV_FINDFV)(
|
2009-05-21 08:11:39 +02:00
|
|
|
IN EFI_PEI_FIND_FV_PPI *This,
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN UINT8 *FvNumber,
|
|
|
|
IN OUT EFI_FIRMWARE_VOLUME_HEADER **FVAddress
|
2007-07-04 12:41:32 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Hardware mechanisms for locating FVs in a platform vary widely.
|
2007-07-04 14:13:24 +02:00
|
|
|
EFI_PEI_FIND_FV_PPI serves to abstract this variation so that the
|
2007-07-04 12:41:32 +02:00
|
|
|
PEI Foundation can remain standard across a wide variety of platforms.
|
|
|
|
**/
|
|
|
|
struct _EFI_PEI_FIND_FV_PPI {
|
2009-07-02 09:40:24 +02:00
|
|
|
EFI_PEI_FIND_FV_FINDFV FindFv; ///< Service that abstracts the location of additional firmware volumes.
|
2007-07-04 12:41:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern EFI_GUID gEfiFindFvPpiGuid;
|
|
|
|
|
|
|
|
#endif
|