]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Framework/FrameworkFirmwareVolumeImageFormat.h
9b4e3b6054402f053f1c975b34e2e50f5e145408
[mirror_edk2.git] / IntelFrameworkPkg / Include / Framework / FrameworkFirmwareVolumeImageFormat.h
1 /** @file
2 This file defines the data structures that are architecturally defined for file
3 images loaded via the FirmwareVolume protocol. The Firmware Volume specification
4 is the basis for these definitions.
5
6 Copyright (c) 2006, Intel Corporation
7 All rights reserved. This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 Module Name: FrameworkFimrwareVolumeImageFormat.h
16
17 @par Revision Reference:
18 These definitions are from Firmware Volume Spec 0.9.
19
20 **/
21
22 #ifndef __FRAMEWORK_FIRMWARE_VOLUME_IMAGE_FORMAT_H__
23 #define __FRAMEWORK_FIRMWARE_VOLUME_IMAGE_FORMAT_H__
24
25 //
26 // Bit values for AuthenticationStatus
27 //
28 #define EFI_AGGREGATE_AUTH_STATUS_PLATFORM_OVERRIDE 0x000001
29 #define EFI_AGGREGATE_AUTH_STATUS_IMAGE_SIGNED 0x000002
30 #define EFI_AGGREGATE_AUTH_STATUS_NOT_TESTED 0x000004
31 #define EFI_AGGREGATE_AUTH_STATUS_TEST_FAILED 0x000008
32 #define EFI_AGGREGATE_AUTH_STATUS_ALL 0x00000f
33
34 #define EFI_LOCAL_AUTH_STATUS_PLATFORM_OVERRIDE 0x010000
35 #define EFI_LOCAL_AUTH_STATUS_IMAGE_SIGNED 0x020000
36 #define EFI_LOCAL_AUTH_STATUS_NOT_TESTED 0x040000
37 #define EFI_LOCAL_AUTH_STATUS_TEST_FAILED 0x080000
38 #define EFI_LOCAL_AUTH_STATUS_ALL 0x0f0000
39
40
41 #define EFI_FV_FILETYPE_ALL 0x00
42
43 #endif