summaryrefslogtreecommitdiff
path: root/Board/CPU/PlatformCpuLib.h
blob: 79ef296f0cd5858d216ce64dd9872254f1410c57 (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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
//*************************************************************************
//*************************************************************************
//**                                                                     **
//**        (C)Copyright 1987-2013, American Megatrends, Inc.            **
//**                                                                     **
//**                       All Rights Reserved.                          **
//**                                                                     **
//**      5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093           **
//**                                                                     **
//**                       Phone: (770)-246-8600                         **
//**                                                                     **
//*************************************************************************
//*************************************************************************

//*************************************************************************
// $Header: /Alaska/SOURCE/Modules/SharkBayRefCodes/Haswell/AMI Cpu PKG/CPU Board/PlatformCpuLib.h 6     7/23/13 7:41a Crystallee $
//
// $Revision: 6 $
//
// $Date: 7/23/13 7:41a $
//**********************************************************************
// Revision History
// ----------------
// $Log: /Alaska/SOURCE/Modules/SharkBayRefCodes/Haswell/AMI Cpu PKG/CPU Board/PlatformCpuLib.h $
// 
// 6     7/23/13 7:41a Crystallee
// [TAG]  		EIP128089
// [Category]  	Improvement
// [Description]  	TXT will be disabled and grayed out in Setup when TPM
// Support is disabled.
// 
// 5     2/22/13 2:00a Crystallee
// [TAG]  		EIP112238
// [Category]  	Improvement
// [Description]  	Refer Intel BIOS and provide setup items for Intel
// Haswell RC policy.
// 
// 4     11/23/12 4:14a Davidhsieh
// [TAG]  		EIPNone
// [Category]  	Bug Fix
// [Severity]  	Minor
// [Symptom]  	Ctdp setup item is not displayed in setup menu
// [RootCause]  	The cTDPAvailable value is not initialzied
// [Solution]  	Initial cTDPAvailable value
// 
// 3     10/17/12 2:23a Davidhsieh
// [TAG]                None
// [Category]         Improvement
// [Description]      Setup items CTDP BIOS, C8, C9 and C10 created
// 
// 2     3/16/12 3:35a Davidhsieh
// Setup items create for CPU RC policy
// 
// 1     2/07/12 3:57a Davidhsieh
// 
//**********************************************************************

//<AMI_FHDR_START>
//---------------------------------------------------------------------------
// Name:		PlatformCpuLib.h
//
// Description:	Platform CPU library.
//
//---------------------------------------------------------------------------
//<AMI_FHDR_END>

#ifndef __PLATFORM_CPU_LIB_H__
#define __PLATFORM_CPU_LIB_H__

#ifdef __cplusplus
extern "C" {
#endif

#ifndef VFRCOMPILE
#include <efi.h>
#include <Pei.h>

EFI_STATUS PeiInitPlatformCpuLib(IN EFI_PEI_SERVICES **PeiServices, OUT VOID **Handle);
EFI_STATUS DxeInitPlatformCpuLib(
    IN EFI_BOOT_SERVICES       *Bs,
    IN EFI_RUNTIME_SERVICES    *Rs,
	OUT VOID **Handle
);

EFI_STATUS DxePlatformCpuSaveSupportedData(
    IN EFI_RUNTIME_SERVICES    *Rs
);

UINT8 GetPlatformNumCores(IN VOID *Handle, UINT32 Package);
BOOLEAN GetPlatformCpuLimitCpuidEnable(IN VOID *Handle);
BOOLEAN GetPlatformCpux2ApicEnable(IN VOID *Handle);
BOOLEAN GetPlatformCpuVtEnable(IN VOID *Handle);
BOOLEAN GetPlatformCpuXdEnable(IN VOID *Handle);
UINT32 GetPlatformCpuGroup(IN VOID *Handle);
UINT32 GetPlatformCpuBootRatio(IN VOID *Handle);
/////////////////////////////////////////////////////////////
//These functions are currently only availabe in DXE not PEI.
/////////////////////////////////////////////////////////////

VOID PlatformCpuCtdpSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuLimitCpuidSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuHtSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuMultiCoreSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuMultiSocketSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuMultiSocketPopulated(
    IN VOID *Handle,
    IN BOOLEAN Populated
);

VOID PlatformCpuXdSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuVtSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuSmxSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuLocalx2ApicSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuSocketSetPopulated(
    IN VOID *Handle,
    IN UINT32 Socket,
    IN BOOLEAN Populated
);

VOID PlatformCpuMismatch(
    IN VOID *Handle,
    IN BOOLEAN Mismatch
);

VOID PlatformCpuXeCoreRatioLimitSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuCurrentLimitSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuTccActiveOffsetSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuEistSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuTurboModeSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuC3Support(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuC6Support(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuC7Support(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuC8Support(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuC9Support(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuC10Support(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuAesSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuPkgCStateDemotionSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformCpuPwrLimitConfigSupport(
    IN VOID *Handle,
    IN BOOLEAN Supported
);

VOID PlatformTpmDevicePresent(
    IN VOID *Handle,
    IN BOOLEAN Supported
);
#endif

////////////////////////////////////////////////////////////////
//This is a private structure that is used for setup by Cpu.Sd
//This structure can change any time. No drivers should refer
// directly to this structure.
////////////////////////////////////////////////////////////////
typedef struct {
	UINT8	XDBitAvailable;
	UINT8	HTAvailable;
    UINT8   MultiCoreAvailable;
	UINT8	VTAvailable;
	UINT8	LimitCpuidAvailable;
    UINT8   MultiSocketAvailable;
    UINT8   MultiSocketPopulated;
    UINT8   LocalX2ApicAvailable;
    UINT8   NumCores;
    UINT8   CpuGroup;   //Arbitrary number
    UINT8   IsSandyBridge;
    UINT8   IsHasWell;
    UINT8   Skt0Pop;
    UINT8   Skt1Pop;
    UINT8   Skt2Pop;
    UINT8   Skt3Pop;
	UINT8	SmxAvailable;
	UINT8   CpuMismatch;
	UINT8   XECoreRatioLimitAvailable;
	UINT8   CurrentLimitAvailable;
	UINT8   PwrLimitAvailable;
	UINT8   TccActivationAvailable;
	UINT8   EistAvailable;
	UINT8   TurboModeAvailable;
	UINT8   C3Available;
	UINT8   C6Available;
	UINT8   C7Available;
	UINT8   AesAvailable;
	UINT8   cTDPAvailable;
	UINT8   C8Available;
	UINT8   C9Available;
	UINT8   C10Available;
    UINT8   PkgCStateDemotionAvailable;
	UINT8	TpmDeviceAvailable;
} SETUP_CPU_FEATURES;


/****** DO NOT WRITE BELOW THIS LINE *******/
#ifdef __cplusplus
}
#endif
#endif

//*************************************************************************
//*************************************************************************
//**                                                                     **
//**        (C)Copyright 1987-2013, American Megatrends, Inc.            **
//**                                                                     **
//**                       All Rights Reserved.                          **
//**                                                                     **
//**      5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093           **
//**                                                                     **
//**                       Phone: (770)-246-8600                         **
//**                                                                     **
//*************************************************************************
//*************************************************************************