]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Ppi/SecPlatformInformation.h
b7dd03e6ce42bd299881a5e73fd3bdc7f2e2a21a
[mirror_edk2.git] / MdePkg / Include / Ppi / SecPlatformInformation.h
1 /** @file
2 This file declares Sec Platform Information PPI.
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 Module Name: SecPlatformInformation.h
14
15 @par Revision Reference:
16 This PPI is defined in PEI CIS.
17 Version 0.91.
18
19 **/
20
21 #ifndef __SEC_PLATFORM_INFORMATION_PPI_H__
22 #define __SEC_PLATFORM_INFORMATION_PPI_H__
23
24 #define EFI_SEC_PLATFORM_INFORMATION_GUID \
25 { \
26 0x6f8c2b35, 0xfef4, 0x448d, {0x82, 0x56, 0xe1, 0x1b, 0x19, 0xd6, 0x10, 0x77 } \
27 }
28
29 typedef struct _EFI_SEC_PLATFORM_INFORMATION_PPI EFI_SEC_PLATFORM_INFORMATION_PPI;
30
31 extern EFI_GUID gEfiSecPlatformInformationPpiGuid;
32
33 ///
34 /// EFI_HEALTH_FLAGS
35 ///
36 typedef union {
37 struct {
38 UINT32 Status : 2;
39 UINT32 Tested : 1;
40 UINT32 Reserved1 :13;
41 UINT32 VirtualMemoryUnavailable : 1;
42 UINT32 Ia32ExecutionUnavailable : 1;
43 UINT32 FloatingPointUnavailable : 1;
44 UINT32 MiscFeaturesUnavailable : 1;
45 UINT32 Reserved2 :12;
46 } Bits;
47 UINT32 Uint32;
48 } EFI_HEALTH_FLAGS;
49
50 typedef struct {
51 EFI_HEALTH_FLAGS HealthFlags;
52 } EFI_SEC_PLATFORM_INFORMATION_RECORD;
53
54 /**
55 This interface conveys state information out of the Security (SEC) phase into PEI.
56
57 @param PeiServices Pointer to the PEI Services Table.
58 @param StructureSize Pointer to the variable describing size of the input buffer.
59 @param PlatformInformationRecord Pointer to the EFI_SEC_PLATFORM_INFORMATION_RECORD.
60
61 @retval EFI_SUCCESS The data was successfully returned.
62 @retval EFI_BUFFER_TOO_SMALL The buffer was too small.
63
64 **/
65 typedef
66 EFI_STATUS
67 (EFIAPI *EFI_SEC_PLATFORM_INFORMATION) (
68 IN EFI_PEI_SERVICES **PeiServices,
69 IN OUT UINT64 *StructureSize,
70 OUT EFI_SEC_PLATFORM_INFORMATION_RECORD *PlatformInformationRecord
71 );
72
73 /**
74 @par Ppi Description:
75
76 @param Name
77
78 **/
79 struct _EFI_SEC_PLATFORM_INFORMATION_PPI {
80 EFI_SEC_PLATFORM_INFORMATION PlatformInformation;
81 };
82
83 #endif