]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Include/Ppi/FirmwareVolumeInfo.h
Updated headers to follow coding standard
[mirror_edk2.git] / MdePkg / Include / Ppi / FirmwareVolumeInfo.h
... / ...
CommitLineData
1/* @file\r
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
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
27typedef struct _EFI_PEI_FIRMWARE_VOLUME_INFO_PPI EFI_PEI_FIRMWARE_VOLUME_INFO_PPI;\r
28\r
29/**\r
30 This PPI describes the location and format of a firmware volume. \r
31 The FvFormat can be EFI_FIRMWARE_FILE_SYSTEM2_GUID or the GUID for \r
32 a user-defined format. The EFI_FIRMWARE_FILE_SYSTEM2_GUID is \r
33 the PI Firmware Volume format.\r
34\r
35 @param FvFormat Unique identifier of the format of the memory-mapped firmware volume.\r
36\r
37 @param FvInfo Points to a buffer which allows the EFI_PEI_FIRMWARE_VOLUME_PPI to\r
38 process the volume. The format of this buffer is \r
39 specific to the FvFormat. For memory-mapped firmware volumes, \r
40 this typically points to the first byte of the firmware volume.\r
41\r
42 @param FvInfoSize Size of the data provided by FvInfo. For memory-mapped firmware volumes,\r
43 this is typically the size of the firmware volume.\r
44\r
45 @param ParentFvName If the firmware volume originally came from a firmware file, \r
46 then these point to the parent firmware volume\r
47 name and firmware volume file. If it did not originally come\r
48 from a firmware file, these should be NULL.\r
49\r
50 @param ParentFileName If the firmware volume originally came from a firmware file, \r
51 then these point to the parent firmware volume\r
52 name and firmware volume file. If it did not originally come\r
53 from a firmware file, these should be NULL.\r
54\r
55**/\r
56struct _EFI_PEI_FIRMWARE_VOLUME_INFO_PPI {\r
57 EFI_GUID FvFormat;\r
58 VOID *FvInfo;\r
59 UINT32 FvInfoSize;\r
60 EFI_GUID *ParentFvName;\r
61 EFI_GUID *ParentFileName;\r
62};\r
63\r
64extern EFI_GUID gEfiPeiFirmwareVolumeInfoPpiGuid;\r
65\r
66#endif\r
67\r