blob: d59994471ddc7b09713e43e20ccead6b585cb76d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/** @file
Protocol used to report CPU information
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials are licensed and made available under
the terms and conditions of the BSD License that accompanies this distribution.
The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
#ifndef _CPU_INFO_H_
#define _CPU_INFO_H_
#include <CpuDataStruct.h>
typedef struct _CPU_INFO_PROTOCOL CPU_INFO_PROTOCOL;
extern EFI_GUID gCpuInfoProtocolGuid;
//
// DXE_CPU_INFO_PROTOCOL revisions
//
#define CPU_INFO_PROTOCOL_REVISION 1
//
// Processor feature definitions.
//
#define TXT_SUPPORT BIT0
#define VMX_SUPPORT BIT1
#define XD_SUPPORT BIT2
#define DCA_SUPPORT BIT3
#define X2APIC_SUPPORT BIT4
#define AES_SUPPORT BIT5
#define HT_SUPPORT BIT6
#define DEBUG_SUPPORT BIT7
#define DEBUG_LOCK_SUPPORT BIT8
#define PROC_TRACE_SUPPORT BIT9
#define HDC_SUPPORT BIT10
#pragma pack(1)
///
/// Cache descriptor information
///
typedef struct {
UINT8 Desc; ///< Cache Descriptor
UINT8 Level; ///< Cache Level
UINT8 Type; ///< Cache Type. 0: Data, 1: Instruction, 3: Unified
UINT32 Size; ///< Cache Size.
UINT16 Associativity; ///< Cache Ways of Associativity.
} CACHE_DESCRIPTOR_INFO;
///
/// Processor information
///
typedef struct {
UINT32 CpuSignature; ///< Processor signature and version information.
UINT64 Features; ///< Features availability in the CPU based on reading ECX after doing Asmcpuid(EAX=1).
CHAR8 *BrandString; ///< Processor Brand String.
UINT8 NumSupportedCores; ///< Total Number of Supported Cores in CPU Package. If Dual core, 2 cores.
UINT8 NumSupportedThreadsPerCore; ///< Number of Supported Threads per Core.
UINT8 NumCores; ///< Number of Enabled or Active Cores.
UINT8 NumHts; ///< Number of Enabled Threads per Core. This will be 1 or 2.
UINT32 IntendedFreq; ///< Maximum non turbo ratio in MHz
UINT32 ActualFreq; ///< Actual frequency in MHz
UINT32 Voltage; ///< Current operating voltage.
CACHE_DESCRIPTOR_INFO *CacheInfo; ///< Cache descriptor information.
UINT8 MaxCacheSupported; ///< Maximum cache supported.
UINT8 SmmbaseSwSmiNumber; ///< Software SMI Number from Smbase.
UINT16 NumberOfPStates; ///< Number of P-States.
} CPU_INFO;
///
/// This HOB is data structure representing two different address location in SMRAM to hold SMRAM CPU DATA.
///
typedef struct {
EFI_PHYSICAL_ADDRESS LockBoxData; ///< First location (address) of SMRAM CPU DATA.
EFI_PHYSICAL_ADDRESS SmramCpuData; ///< Second location (Address) of SMRAM CPU DATA.
UINT64 LockBoxSize; ///< Size of SMRAM CPU DATA.
} SMRAM_CPU_INFO;
///
/// SGX Information
///
typedef struct {
UINT64 SgxSinitNvsData; ///< Sinit SE SVN Version saved and passed back in next boot
} SGX_INFO;
#pragma pack()
///
/// This protocol provides information about the common features available in this CPU.
///
struct _CPU_INFO_PROTOCOL {
/**
Revision for the protocol structure.
Any backwards compatible changes to this protocol will result in an update in the revision number.
Major changes will require publication of a new protocol
<b>Revision 1</b>:
- Initial version
**/
UINT8 Revision;
/**
CPU Supported Feature.
- BIT0: If set then processor supports TXT.
- BIT1: If set then processor supports virtual mode extensions.
- BIT2: If set then processor supports execute disable bit.
- BIT3: If set then processor supports DCA.
- BIT4: If set then processor supports X2APIC.
- BIT5: If set then processor supports Advanced Encryption Standard.
- BIT6: If set then processor supports hyperthreading.
- BIT7: If set then processor supports debug interface.
- BIT8: If set then processor supports debug interface lock.
- BIT9: If set then processor supports processor trace.
- BIT10: If Set then processor supports supports HDC.
**/
UINT64 CpuCommonFeatures;
CPU_INFO *CpuInfo; ///< Processor Basic Information
SMRAM_CPU_INFO *SmramCpuInfo; ///< SMRAM CPU Information
SGX_INFO *SgxInfo; ///< SGX Information
};
#endif
|