]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Ppi/FirmwareVolumeInfo.h
Code Scrub for Protocol and Ppi Definition
[mirror_edk2.git] / MdePkg / Include / Ppi / FirmwareVolumeInfo.h
CommitLineData
c311f86b 1/** @file\r
5879b875 2 This file provides location and format of a firmware volume.\r
3\r
4 Copyright (c) 2006 - 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
5879b875 13 @par Revision Reference:\r
14 This PPI is defined in PI.\r
15 Version 1.00\r
16\r
17**/\r
18\r
19#ifndef __EFI_PEI_FIRMWARE_VOLUME_INFO_H__\r
20#define __EFI_PEI_FIRMWARE_VOLUME_INFO_H__\r
21\r
22\r
23\r
24#define EFI_PEI_FIRMWARE_VOLUME_INFO_PPI_GUID \\r
25{ 0x49edb1c1, 0xbf21, 0x4761, { 0xbb, 0x12, 0xeb, 0x0, 0x31, 0xaa, 0xbb, 0x39 } }\r
26\r
00edb218 27typedef struct _EFI_PEI_FIRMWARE_VOLUME_INFO_PPI EFI_PEI_FIRMWARE_VOLUME_INFO_PPI;\r
5879b875 28\r
29/**\r
4ca9b6c4 30 @par Ppi Description:\r
00edb218
A
31 This PPI describes the location and format of a firmware volume. \r
32 The FvFormat can be EFI_FIRMWARE_FILE_SYSTEM2_GUID or the GUID for \r
33 a user-defined format. The EFI_FIRMWARE_FILE_SYSTEM2_GUID is \r
34 the PI Firmware Volume format.\r
5879b875 35\r
00edb218 36 @param FvFormat Unique identifier of the format of the memory-mapped firmware volume.\r
5879b875 37\r
00edb218
A
38 @param FvInfo Points to a buffer which allows the EFI_PEI_FIRMWARE_VOLUME_PPI to\r
39 process the volume. The format of this buffer is \r
40 specific to the FvFormat. For memory-mapped firmware volumes, \r
41 this typically points to the first byte of the firmware volume.\r
5879b875 42\r
00edb218
A
43 @param FvInfoSize Size of the data provided by FvInfo. For memory-mapped firmware volumes,\r
44 this is typically the size of the firmware volume.\r
5879b875 45\r
00edb218
A
46 @param ParentFvName If the firmware volume originally came from a firmware file, \r
47 then these point to the parent firmware volume\r
48 name and firmware volume file. If it did not originally come\r
49 from a firmware file, these should be NULL.\r
5879b875 50\r
00edb218
A
51 @param ParentFileName If the firmware volume originally came from a firmware file, \r
52 then these point to the parent firmware volume\r
53 name and firmware volume file. If it did not originally come\r
54 from a firmware file, these should be NULL.\r
5879b875 55\r
56**/\r
57struct _EFI_PEI_FIRMWARE_VOLUME_INFO_PPI {\r
00edb218
A
58 EFI_GUID FvFormat;\r
59 VOID *FvInfo;\r
60 UINT32 FvInfoSize;\r
61 EFI_GUID *ParentFvName;\r
62 EFI_GUID *ParentFileName;\r
5879b875 63};\r
64\r
00edb218 65extern EFI_GUID gEfiPeiFirmwareVolumeInfoPpiGuid;\r
5879b875 66\r
67#endif\r
68\r