]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Library/PeiPiLib.h
Coding style fix.
[mirror_edk2.git] / MdePkg / Include / Library / PeiPiLib.h
CommitLineData
b0d803fe 1/** @file\r
2 MDE PI library functions and macros for PEI phase\r
3\r
4 Copyright (c) 2007, Intel Corporation \r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13**/\r
14\r
15#ifndef __PEI_PI_LIB_H__\r
16#define __PEI_PI_LIB_H__\r
17\r
166152e8 18/**\r
f944ec32 19 Install a EFI_PEI_FIRMWARE_VOLUME_INFO PPI to inform PEI core about the existence of a new Firmware Volume.\r
166152e8 20 \r
f944ec32 21 The function allocate the EFI_PEI_PPI_DESCRIPTOR structure and update the fields accordingly to parameter passed\r
22 in and install the PPI.\r
166152e8 23 \r
f944ec32 24 @param FvFormat Unique identifier of the format of the memory-mapped firmware volume. \r
25 If NULL is specified, EFI_FIRMWARE_FILE_SYSTEM2_GUID is used as the Format GUID.\r
26 @param FvInfo Points to a buffer which allows the EFI_PEI_FIRMWARE_VOLUME_PPI to\r
27 process the volume. The format of this buffer is specific to the FvFormat. For\r
28 memory-mapped firmware volumes, this typically points to the first byte of the\r
29 firmware volume.\r
30 @param FvInfoSize Size of the data provided by FvInfo. For memory-mapped firmware volumes, this is\r
31 typically the size of the firmware volume.\r
32 @param ParentFvName If the firmware volume originally came from a firmware file, then these point to the\r
33 parent firmware volume name. If it did not originally come from a firmware file, \r
34 these should be NULL.\r
35 @param ParentFileName If the firmware volume originally came from a firmware file, then these point to the\r
36 firmware volume file. If it did not originally come from a firmware file, \r
37 these should be NULL.\r
38 \r
42eedea9 39**/\r
b0d803fe 40VOID\r
41EFIAPI\r
166152e8 42PiLibInstallFvInfoPpi (\r
3a26bb17 43 IN CONST EFI_GUID *FvFormat, OPTIONAL\r
44 IN CONST VOID *FvInfo,\r
45 IN UINT32 FvInfoSize,\r
46 IN CONST EFI_GUID *ParentFvName, OPTIONAL\r
f83933cf 47 IN CONST EFI_GUID *ParentFileName OPTIONAL\r
b0d803fe 48);\r
49\r
50#endif\r
51\r