Home | History | Annotate | Download | only in Framework
      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 - 2010, Intel Corporation. All rights reserved.<BR>
      7 This program and the accompanying materials are licensed and made available under
      8 the terms and conditions of the BSD License that accompanies this distribution.
      9 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   @par Revision Reference:
     16   These definitions are from the Firmware Volume Spec 0.9.
     17 
     18 **/
     19 
     20 #ifndef __FIRMWARE_VOLUME_IMAGE_FORMAT_H__
     21 #define __FIRMWARE_VOLUME_IMAGE_FORMAT_H__
     22 
     23 //
     24 // Bit values for AuthenticationStatus
     25 //
     26 #define EFI_AGGREGATE_AUTH_STATUS_PLATFORM_OVERRIDE 0x000001
     27 #define EFI_AGGREGATE_AUTH_STATUS_IMAGE_SIGNED      0x000002
     28 #define EFI_AGGREGATE_AUTH_STATUS_NOT_TESTED        0x000004
     29 #define EFI_AGGREGATE_AUTH_STATUS_TEST_FAILED       0x000008
     30 #define EFI_AGGREGATE_AUTH_STATUS_ALL               0x00000f
     31 
     32 #define EFI_LOCAL_AUTH_STATUS_PLATFORM_OVERRIDE     0x010000
     33 #define EFI_LOCAL_AUTH_STATUS_IMAGE_SIGNED          0x020000
     34 #define EFI_LOCAL_AUTH_STATUS_NOT_TESTED            0x040000
     35 #define EFI_LOCAL_AUTH_STATUS_TEST_FAILED           0x080000
     36 #define EFI_LOCAL_AUTH_STATUS_ALL                   0x0f0000
     37 
     38 #endif
     39