]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.c
UefiCpuPkg/SmmCpuFeaturesLib: Add SMRR PhysBase/PhysMask fields check
[mirror_edk2.git] / UefiCpuPkg / Library / SmmCpuFeaturesLib / SmmCpuFeaturesLib.c
CommitLineData
a9764e68
MK
1/** @file\r
2The CPU specific programming for PiSmmCpuDxeSmm module.\r
3\r
728de7a0 4Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.<BR>\r
a9764e68
MK
5This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include <PiSmm.h>\r
16#include <Library/SmmCpuFeaturesLib.h>\r
17#include <Library/BaseLib.h>\r
18#include <Library/MtrrLib.h>\r
19#include <Library/PcdLib.h>\r
20#include <Library/MemoryAllocationLib.h>\r
21#include <Library/DebugLib.h>\r
22#include <Register/Cpuid.h>\r
23#include <Register/SmramSaveStateMap.h>\r
24\r
25//\r
26// Machine Specific Registers (MSRs)\r
27//\r
28#define SMM_FEATURES_LIB_IA32_MTRR_CAP 0x0FE\r
29#define SMM_FEATURES_LIB_IA32_FEATURE_CONTROL 0x03A\r
30#define SMM_FEATURES_LIB_IA32_SMRR_PHYSBASE 0x1F2\r
31#define SMM_FEATURES_LIB_IA32_SMRR_PHYSMASK 0x1F3\r
32#define SMM_FEATURES_LIB_IA32_CORE_SMRR_PHYSBASE 0x0A0\r
33#define SMM_FEATURES_LIB_IA32_CORE_SMRR_PHYSMASK 0x0A1\r
34#define EFI_MSR_SMRR_MASK 0xFFFFF000\r
35#define EFI_MSR_SMRR_PHYS_MASK_VALID BIT11\r
d26a7a3f 36#define SMM_FEATURES_LIB_SMM_FEATURE_CONTROL 0x4E0\r
a9764e68 37\r
4ab4e20f
JF
38//\r
39// MSRs required for configuration of SMM Code Access Check\r
40//\r
41#define SMM_FEATURES_LIB_IA32_MCA_CAP 0x17D\r
42#define SMM_CODE_ACCESS_CHK_BIT BIT58\r
43\r
a9764e68
MK
44//\r
45// Set default value to assume SMRR is not supported\r
46//\r
47BOOLEAN mSmrrSupported = FALSE;\r
48\r
d26a7a3f
MK
49//\r
50// Set default value to assume MSR_SMM_FEATURE_CONTROL is not supported\r
51//\r
52BOOLEAN mSmmFeatureControlSupported = FALSE;\r
53\r
a9764e68
MK
54//\r
55// Set default value to assume IA-32 Architectural MSRs are used\r
56//\r
57UINT32 mSmrrPhysBaseMsr = SMM_FEATURES_LIB_IA32_SMRR_PHYSBASE;\r
58UINT32 mSmrrPhysMaskMsr = SMM_FEATURES_LIB_IA32_SMRR_PHYSMASK;\r
59\r
60//\r
61// Set default value to assume MTRRs need to be configured on each SMI\r
62//\r
63BOOLEAN mNeedConfigureMtrrs = TRUE;\r
64\r
65//\r
66// Array for state of SMRR enable on all CPUs\r
67//\r
68BOOLEAN *mSmrrEnabled;\r
69\r
70/**\r
71 The constructor function\r
72\r
73 @param[in] ImageHandle The firmware allocated handle for the EFI image.\r
74 @param[in] SystemTable A pointer to the EFI System Table.\r
75\r
76 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.\r
77\r
78**/\r
79EFI_STATUS\r
80EFIAPI\r
81SmmCpuFeaturesLibConstructor (\r
82 IN EFI_HANDLE ImageHandle,\r
83 IN EFI_SYSTEM_TABLE *SystemTable\r
84 )\r
85{\r
86 UINT32 RegEax;\r
87 UINT32 RegEdx;\r
88 UINTN FamilyId;\r
89 UINTN ModelId;\r
90\r
91 //\r
92 // Retrieve CPU Family and Model\r
93 //\r
94 AsmCpuid (CPUID_VERSION_INFO, &RegEax, NULL, NULL, &RegEdx);\r
95 FamilyId = (RegEax >> 8) & 0xf;\r
96 ModelId = (RegEax >> 4) & 0xf;\r
97 if (FamilyId == 0x06 || FamilyId == 0x0f) {\r
98 ModelId = ModelId | ((RegEax >> 12) & 0xf0);\r
99 }\r
100\r
101 //\r
102 // Check CPUID(CPUID_VERSION_INFO).EDX[12] for MTRR capability\r
103 //\r
104 if ((RegEdx & BIT12) != 0) {\r
105 //\r
106 // Check MTRR_CAP MSR bit 11 for SMRR support\r
107 //\r
108 if ((AsmReadMsr64 (SMM_FEATURES_LIB_IA32_MTRR_CAP) & BIT11) != 0) {\r
109 mSmrrSupported = TRUE;\r
110 }\r
111 }\r
112\r
113 //\r
114 // Intel(R) 64 and IA-32 Architectures Software Developer's Manual\r
115 // Volume 3C, Section 35.3 MSRs in the Intel(R) Atom(TM) Processor Family\r
116 //\r
117 // If CPU Family/Model is 06_1CH, 06_26H, 06_27H, 06_35H or 06_36H, then\r
118 // SMRR Physical Base and SMM Physical Mask MSRs are not available.\r
119 //\r
120 if (FamilyId == 0x06) {\r
121 if (ModelId == 0x1C || ModelId == 0x26 || ModelId == 0x27 || ModelId == 0x35 || ModelId == 0x36) {\r
122 mSmrrSupported = FALSE;\r
123 }\r
124 }\r
125\r
126 //\r
127 // Intel(R) 64 and IA-32 Architectures Software Developer's Manual\r
128 // Volume 3C, Section 35.2 MSRs in the Intel(R) Core(TM) 2 Processor Family\r
129 //\r
130 // If CPU Family/Model is 06_0F or 06_17, then use Intel(R) Core(TM) 2\r
131 // Processor Family MSRs\r
132 //\r
133 if (FamilyId == 0x06) {\r
134 if (ModelId == 0x17 || ModelId == 0x0f) {\r
135 mSmrrPhysBaseMsr = SMM_FEATURES_LIB_IA32_CORE_SMRR_PHYSBASE;\r
136 mSmrrPhysMaskMsr = SMM_FEATURES_LIB_IA32_CORE_SMRR_PHYSMASK;\r
137 }\r
138 }\r
139\r
140 //\r
141 // Intel(R) 64 and IA-32 Architectures Software Developer's Manual\r
142 // Volume 3C, Section 34.4.2 SMRAM Caching\r
143 // An IA-32 processor does not automatically write back and invalidate its\r
144 // caches before entering SMM or before exiting SMM. Because of this behavior,\r
145 // care must be taken in the placement of the SMRAM in system memory and in\r
146 // the caching of the SMRAM to prevent cache incoherence when switching back\r
147 // and forth between SMM and protected mode operation.\r
148 //\r
149 // An IA-32 processor is a processor that does not support the Intel 64\r
150 // Architecture. Support for the Intel 64 Architecture can be detected from\r
151 // CPUID(CPUID_EXTENDED_CPU_SIG).EDX[29]\r
152 //\r
153 // If an IA-32 processor is detected, then set mNeedConfigureMtrrs to TRUE,\r
154 // so caches are flushed on SMI entry and SMI exit, the interrupted code\r
155 // MTRRs are saved/restored, and MTRRs for SMM are loaded.\r
156 //\r
157 AsmCpuid (CPUID_EXTENDED_FUNCTION, &RegEax, NULL, NULL, NULL);\r
158 if (RegEax >= CPUID_EXTENDED_CPU_SIG) {\r
159 AsmCpuid (CPUID_EXTENDED_CPU_SIG, NULL, NULL, NULL, &RegEdx);\r
160 if ((RegEdx & BIT29) != 0) {\r
161 mNeedConfigureMtrrs = FALSE;\r
162 }\r
163 }\r
164\r
165 //\r
166 // Allocate array for state of SMRR enable on all CPUs\r
167 //\r
168 mSmrrEnabled = (BOOLEAN *)AllocatePool (sizeof (BOOLEAN) * PcdGet32 (PcdCpuMaxLogicalProcessorNumber));\r
169 ASSERT (mSmrrEnabled != NULL);\r
170\r
171 return EFI_SUCCESS;\r
172}\r
173\r
174/**\r
175 Called during the very first SMI into System Management Mode to initialize\r
176 CPU features, including SMBASE, for the currently executing CPU. Since this\r
177 is the first SMI, the SMRAM Save State Map is at the default address of\r
178 SMM_DEFAULT_SMBASE + SMRAM_SAVE_STATE_MAP_OFFSET. The currently executing\r
179 CPU is specified by CpuIndex and CpuIndex can be used to access information\r
180 about the currently executing CPU in the ProcessorInfo array and the\r
181 HotPlugCpuData data structure.\r
182\r
183 @param[in] CpuIndex The index of the CPU to initialize. The value\r
184 must be between 0 and the NumberOfCpus field in\r
185 the System Management System Table (SMST).\r
186 @param[in] IsMonarch TRUE if the CpuIndex is the index of the CPU that\r
187 was elected as monarch during System Management\r
188 Mode initialization.\r
189 FALSE if the CpuIndex is not the index of the CPU\r
190 that was elected as monarch during System\r
191 Management Mode initialization.\r
192 @param[in] ProcessorInfo Pointer to an array of EFI_PROCESSOR_INFORMATION\r
193 structures. ProcessorInfo[CpuIndex] contains the\r
194 information for the currently executing CPU.\r
195 @param[in] CpuHotPlugData Pointer to the CPU_HOT_PLUG_DATA structure that\r
196 contains the ApidId and SmBase arrays.\r
197**/\r
198VOID\r
199EFIAPI\r
200SmmCpuFeaturesInitializeProcessor (\r
201 IN UINTN CpuIndex,\r
202 IN BOOLEAN IsMonarch,\r
203 IN EFI_PROCESSOR_INFORMATION *ProcessorInfo,\r
204 IN CPU_HOT_PLUG_DATA *CpuHotPlugData\r
205 )\r
206{\r
207 SMRAM_SAVE_STATE_MAP *CpuState;\r
208 UINT64 FeatureControl;\r
4ab4e20f
JF
209 UINT32 RegEax;\r
210 UINT32 RegEdx;\r
211 UINTN FamilyId;\r
212 UINTN ModelId;\r
a9764e68
MK
213\r
214 //\r
215 // Configure SMBASE.\r
216 //\r
217 CpuState = (SMRAM_SAVE_STATE_MAP *)(UINTN)(SMM_DEFAULT_SMBASE + SMRAM_SAVE_STATE_MAP_OFFSET);\r
218 CpuState->x86.SMBASE = (UINT32)CpuHotPlugData->SmBase[CpuIndex];\r
219\r
220 //\r
221 // Intel(R) 64 and IA-32 Architectures Software Developer's Manual\r
222 // Volume 3C, Section 35.2 MSRs in the Intel(R) Core(TM) 2 Processor Family\r
223 //\r
224 // If Intel(R) Core(TM) Core(TM) 2 Processor Family MSRs are being used, then\r
225 // make sure SMRR Enable(BIT3) of MSR_FEATURE_CONTROL MSR(0x3A) is set before\r
226 // accessing SMRR base/mask MSRs. If Lock(BIT0) of MSR_FEATURE_CONTROL MSR(0x3A)\r
227 // is set, then the MSR is locked and can not be modified.\r
228 //\r
229 if (mSmrrSupported && mSmrrPhysBaseMsr == SMM_FEATURES_LIB_IA32_CORE_SMRR_PHYSBASE) {\r
230 FeatureControl = AsmReadMsr64 (SMM_FEATURES_LIB_IA32_FEATURE_CONTROL);\r
231 if ((FeatureControl & BIT3) == 0) {\r
232 if ((FeatureControl & BIT0) == 0) {\r
233 AsmWriteMsr64 (SMM_FEATURES_LIB_IA32_FEATURE_CONTROL, FeatureControl | BIT3);\r
234 } else {\r
235 mSmrrSupported = FALSE;\r
236 }\r
237 }\r
238 }\r
239\r
240 //\r
241 // If SMRR is supported, then program SMRR base/mask MSRs.\r
242 // The EFI_MSR_SMRR_PHYS_MASK_VALID bit is not set until the first normal SMI.\r
243 // The code that initializes SMM environment is running in normal mode\r
244 // from SMRAM region. If SMRR is enabled here, then the SMRAM region\r
245 // is protected and the normal mode code execution will fail.\r
246 //\r
247 if (mSmrrSupported) {\r
728de7a0
MK
248 //\r
249 // SMRR size cannot be less than 4-KBytes\r
250 // SMRR size must be of length 2^n\r
251 // SMRR base alignment cannot be less than SMRR length\r
252 //\r
253 if ((CpuHotPlugData->SmrrSize < SIZE_4KB) ||\r
254 (CpuHotPlugData->SmrrSize != GetPowerOfTwo32 (CpuHotPlugData->SmrrSize)) ||\r
255 ((CpuHotPlugData->SmrrBase & ~(CpuHotPlugData->SmrrSize - 1)) != CpuHotPlugData->SmrrBase)) {\r
256 //\r
257 // Print message and halt if CPU is Monarch\r
258 //\r
259 if (IsMonarch) {\r
260 DEBUG ((EFI_D_ERROR, "SMM Base/Size does not meet alignment/size requirement!\n"));\r
261 CpuDeadLoop ();\r
262 }\r
263 } else {\r
264 AsmWriteMsr64 (mSmrrPhysBaseMsr, CpuHotPlugData->SmrrBase | MTRR_CACHE_WRITE_BACK);\r
265 AsmWriteMsr64 (mSmrrPhysMaskMsr, (~(CpuHotPlugData->SmrrSize - 1) & EFI_MSR_SMRR_MASK));\r
266 mSmrrEnabled[CpuIndex] = FALSE;\r
267 }\r
a9764e68 268 }\r
4ab4e20f
JF
269\r
270 //\r
271 // Retrieve CPU Family and Model\r
272 //\r
273 AsmCpuid (CPUID_VERSION_INFO, &RegEax, NULL, NULL, &RegEdx);\r
274 FamilyId = (RegEax >> 8) & 0xf;\r
275 ModelId = (RegEax >> 4) & 0xf;\r
276 if (FamilyId == 0x06 || FamilyId == 0x0f) {\r
277 ModelId = ModelId | ((RegEax >> 12) & 0xf0);\r
278 }\r
279\r
280 //\r
281 // Intel(R) 64 and IA-32 Architectures Software Developer's Manual\r
282 // Volume 3C, Section 35.10.1 MSRs in 4th Generation Intel(R) Core(TM)\r
283 // Processor Family.\r
284 //\r
285 // If CPU Family/Model is 06_3C, 06_45, or 06_46 then use 4th Generation\r
286 // Intel(R) Core(TM) Processor Family MSRs.\r
287 //\r
288 if (FamilyId == 0x06) {\r
289 if (ModelId == 0x3C || ModelId == 0x45 || ModelId == 0x46) {\r
290 //\r
291 // Check to see if the CPU supports the SMM Code Access Check feature\r
292 // Do not access this MSR unless the CPU supports the SmmRegFeatureControl\r
293 //\r
294 if ((AsmReadMsr64 (SMM_FEATURES_LIB_IA32_MCA_CAP) & SMM_CODE_ACCESS_CHK_BIT) != 0) {\r
295 mSmmFeatureControlSupported = TRUE;\r
296 }\r
297 }\r
298 }\r
a9764e68
MK
299}\r
300\r
301/**\r
302 This function updates the SMRAM save state on the currently executing CPU\r
303 to resume execution at a specific address after an RSM instruction. This\r
304 function must evaluate the SMRAM save state to determine the execution mode\r
305 the RSM instruction resumes and update the resume execution address with\r
306 either NewInstructionPointer32 or NewInstructionPoint. The auto HALT restart\r
307 flag in the SMRAM save state must always be cleared. This function returns\r
308 the value of the instruction pointer from the SMRAM save state that was\r
309 replaced. If this function returns 0, then the SMRAM save state was not\r
310 modified.\r
311\r
312 This function is called during the very first SMI on each CPU after\r
313 SmmCpuFeaturesInitializeProcessor() to set a flag in normal execution mode\r
314 to signal that the SMBASE of each CPU has been updated before the default\r
315 SMBASE address is used for the first SMI to the next CPU.\r
316\r
317 @param[in] CpuIndex The index of the CPU to hook. The value\r
318 must be between 0 and the NumberOfCpus\r
319 field in the System Management System Table\r
320 (SMST).\r
321 @param[in] CpuState Pointer to SMRAM Save State Map for the\r
322 currently executing CPU.\r
323 @param[in] NewInstructionPointer32 Instruction pointer to use if resuming to\r
324 32-bit execution mode from 64-bit SMM.\r
325 @param[in] NewInstructionPointer Instruction pointer to use if resuming to\r
326 same execution mode as SMM.\r
327\r
328 @retval 0 This function did modify the SMRAM save state.\r
329 @retval > 0 The original instruction pointer value from the SMRAM save state\r
330 before it was replaced.\r
331**/\r
332UINT64\r
333EFIAPI\r
334SmmCpuFeaturesHookReturnFromSmm (\r
335 IN UINTN CpuIndex,\r
336 IN SMRAM_SAVE_STATE_MAP *CpuState,\r
337 IN UINT64 NewInstructionPointer32,\r
338 IN UINT64 NewInstructionPointer\r
339 )\r
340{\r
341 return 0;\r
342}\r
343\r
344/**\r
345 Hook point in normal execution mode that allows the one CPU that was elected\r
346 as monarch during System Management Mode initialization to perform additional\r
347 initialization actions immediately after all of the CPUs have processed their\r
348 first SMI and called SmmCpuFeaturesInitializeProcessor() relocating SMBASE\r
349 into a buffer in SMRAM and called SmmCpuFeaturesHookReturnFromSmm().\r
350**/\r
351VOID\r
352EFIAPI\r
353SmmCpuFeaturesSmmRelocationComplete (\r
354 VOID\r
355 )\r
356{\r
357}\r
358\r
359/**\r
360 Return the size, in bytes, of a custom SMI Handler in bytes. If 0 is\r
361 returned, then a custom SMI handler is not provided by this library,\r
362 and the default SMI handler must be used.\r
363\r
364 @retval 0 Use the default SMI handler.\r
365 @retval > 0 Use the SMI handler installed by SmmCpuFeaturesInstallSmiHandler()\r
366 The caller is required to allocate enough SMRAM for each CPU to\r
367 support the size of the custom SMI handler.\r
368**/\r
369UINTN\r
370EFIAPI\r
371SmmCpuFeaturesGetSmiHandlerSize (\r
372 VOID\r
373 )\r
374{\r
375 return 0;\r
376}\r
377\r
378/**\r
379 Install a custom SMI handler for the CPU specified by CpuIndex. This function\r
380 is only called if SmmCpuFeaturesGetSmiHandlerSize() returns a size is greater\r
381 than zero and is called by the CPU that was elected as monarch during System\r
382 Management Mode initialization.\r
383\r
384 @param[in] CpuIndex The index of the CPU to install the custom SMI handler.\r
385 The value must be between 0 and the NumberOfCpus field\r
386 in the System Management System Table (SMST).\r
387 @param[in] SmBase The SMBASE address for the CPU specified by CpuIndex.\r
388 @param[in] SmiStack The stack to use when an SMI is processed by the\r
389 the CPU specified by CpuIndex.\r
390 @param[in] StackSize The size, in bytes, if the stack used when an SMI is\r
391 processed by the CPU specified by CpuIndex.\r
392 @param[in] GdtBase The base address of the GDT to use when an SMI is\r
393 processed by the CPU specified by CpuIndex.\r
394 @param[in] GdtSize The size, in bytes, of the GDT used when an SMI is\r
395 processed by the CPU specified by CpuIndex.\r
396 @param[in] IdtBase The base address of the IDT to use when an SMI is\r
397 processed by the CPU specified by CpuIndex.\r
398 @param[in] IdtSize The size, in bytes, of the IDT used when an SMI is\r
399 processed by the CPU specified by CpuIndex.\r
400 @param[in] Cr3 The base address of the page tables to use when an SMI\r
401 is processed by the CPU specified by CpuIndex.\r
402**/\r
403VOID\r
404EFIAPI\r
405SmmCpuFeaturesInstallSmiHandler (\r
406 IN UINTN CpuIndex,\r
407 IN UINT32 SmBase,\r
408 IN VOID *SmiStack,\r
409 IN UINTN StackSize,\r
410 IN UINTN GdtBase,\r
411 IN UINTN GdtSize,\r
412 IN UINTN IdtBase,\r
413 IN UINTN IdtSize,\r
414 IN UINT32 Cr3\r
415 )\r
416{\r
417}\r
418\r
419/**\r
420 Determines if MTRR registers must be configured to set SMRAM cache-ability\r
421 when executing in System Management Mode.\r
422\r
423 @retval TRUE MTRR registers must be configured to set SMRAM cache-ability.\r
424 @retval FALSE MTRR registers do not need to be configured to set SMRAM\r
425 cache-ability.\r
426**/\r
427BOOLEAN\r
428EFIAPI\r
429SmmCpuFeaturesNeedConfigureMtrrs (\r
430 VOID\r
431 )\r
432{\r
433 return mNeedConfigureMtrrs;\r
434}\r
435\r
436/**\r
437 Disable SMRR register if SMRR is supported and SmmCpuFeaturesNeedConfigureMtrrs()\r
438 returns TRUE.\r
439**/\r
440VOID\r
441EFIAPI\r
442SmmCpuFeaturesDisableSmrr (\r
443 VOID\r
444 )\r
445{\r
446 if (mSmrrSupported && mNeedConfigureMtrrs) {\r
447 AsmWriteMsr64 (mSmrrPhysMaskMsr, AsmReadMsr64(mSmrrPhysMaskMsr) & ~EFI_MSR_SMRR_PHYS_MASK_VALID);\r
448 }\r
449}\r
450\r
451/**\r
452 Enable SMRR register if SMRR is supported and SmmCpuFeaturesNeedConfigureMtrrs()\r
453 returns TRUE.\r
454**/\r
455VOID\r
456EFIAPI\r
457SmmCpuFeaturesReenableSmrr (\r
458 VOID\r
459 )\r
460{\r
461 if (mSmrrSupported && mNeedConfigureMtrrs) {\r
462 AsmWriteMsr64 (mSmrrPhysMaskMsr, AsmReadMsr64(mSmrrPhysMaskMsr) | EFI_MSR_SMRR_PHYS_MASK_VALID);\r
463 }\r
464}\r
465\r
466/**\r
467 Processor specific hook point each time a CPU enters System Management Mode.\r
468\r
469 @param[in] CpuIndex The index of the CPU that has entered SMM. The value\r
470 must be between 0 and the NumberOfCpus field in the\r
471 System Management System Table (SMST).\r
472**/\r
473VOID\r
474EFIAPI\r
475SmmCpuFeaturesRendezvousEntry (\r
476 IN UINTN CpuIndex\r
477 )\r
478{\r
479 //\r
480 // If SMRR is supported and this is the first normal SMI, then enable SMRR\r
481 //\r
482 if (mSmrrSupported && !mSmrrEnabled[CpuIndex]) {\r
483 AsmWriteMsr64 (mSmrrPhysMaskMsr, AsmReadMsr64 (mSmrrPhysMaskMsr) | EFI_MSR_SMRR_PHYS_MASK_VALID);\r
484 mSmrrEnabled[CpuIndex] = TRUE;\r
485 }\r
486}\r
487\r
488/**\r
489 Processor specific hook point each time a CPU exits System Management Mode.\r
490\r
491 @param[in] CpuIndex The index of the CPU that is exiting SMM. The value must\r
492 be between 0 and the NumberOfCpus field in the System\r
493 Management System Table (SMST).\r
494**/\r
495VOID\r
496EFIAPI\r
497SmmCpuFeaturesRendezvousExit (\r
498 IN UINTN CpuIndex\r
499 )\r
500{\r
501}\r
502\r
503/**\r
504 Check to see if an SMM register is supported by a specified CPU.\r
505\r
506 @param[in] CpuIndex The index of the CPU to check for SMM register support.\r
507 The value must be between 0 and the NumberOfCpus field\r
508 in the System Management System Table (SMST).\r
509 @param[in] RegName Identifies the SMM register to check for support.\r
510\r
511 @retval TRUE The SMM register specified by RegName is supported by the CPU\r
512 specified by CpuIndex.\r
513 @retval FALSE The SMM register specified by RegName is not supported by the\r
514 CPU specified by CpuIndex.\r
515**/\r
516BOOLEAN\r
517EFIAPI\r
518SmmCpuFeaturesIsSmmRegisterSupported (\r
519 IN UINTN CpuIndex,\r
520 IN SMM_REG_NAME RegName\r
521 )\r
522{\r
d26a7a3f
MK
523 if (mSmmFeatureControlSupported && RegName == SmmRegFeatureControl) {\r
524 return TRUE;\r
525 }\r
a9764e68
MK
526 return FALSE;\r
527}\r
528\r
529/**\r
530 Returns the current value of the SMM register for the specified CPU.\r
531 If the SMM register is not supported, then 0 is returned.\r
532\r
533 @param[in] CpuIndex The index of the CPU to read the SMM register. The\r
534 value must be between 0 and the NumberOfCpus field in\r
535 the System Management System Table (SMST).\r
536 @param[in] RegName Identifies the SMM register to read.\r
537\r
538 @return The value of the SMM register specified by RegName from the CPU\r
539 specified by CpuIndex.\r
540**/\r
541UINT64\r
542EFIAPI\r
543SmmCpuFeaturesGetSmmRegister (\r
544 IN UINTN CpuIndex,\r
545 IN SMM_REG_NAME RegName\r
546 )\r
547{\r
d26a7a3f
MK
548 if (mSmmFeatureControlSupported && RegName == SmmRegFeatureControl) {\r
549 return AsmReadMsr64 (SMM_FEATURES_LIB_SMM_FEATURE_CONTROL);\r
550 }\r
a9764e68
MK
551 return 0;\r
552}\r
553\r
554/**\r
555 Sets the value of an SMM register on a specified CPU.\r
556 If the SMM register is not supported, then no action is performed.\r
557\r
558 @param[in] CpuIndex The index of the CPU to write the SMM register. The\r
559 value must be between 0 and the NumberOfCpus field in\r
560 the System Management System Table (SMST).\r
561 @param[in] RegName Identifies the SMM register to write.\r
562 registers are read-only.\r
563 @param[in] Value The value to write to the SMM register.\r
564**/\r
565VOID\r
566EFIAPI\r
567SmmCpuFeaturesSetSmmRegister (\r
568 IN UINTN CpuIndex,\r
569 IN SMM_REG_NAME RegName,\r
570 IN UINT64 Value\r
571 )\r
572{\r
d26a7a3f
MK
573 if (mSmmFeatureControlSupported && RegName == SmmRegFeatureControl) {\r
574 AsmWriteMsr64 (SMM_FEATURES_LIB_SMM_FEATURE_CONTROL, Value);\r
575 }\r
a9764e68
MK
576}\r
577\r
578/**\r
579 Read an SMM Save State register on the target processor. If this function\r
580 returns EFI_UNSUPPORTED, then the caller is responsible for reading the\r
581 SMM Save Sate register.\r
582\r
583 @param[in] CpuIndex The index of the CPU to read the SMM Save State. The\r
584 value must be between 0 and the NumberOfCpus field in\r
585 the System Management System Table (SMST).\r
586 @param[in] Register The SMM Save State register to read.\r
587 @param[in] Width The number of bytes to read from the CPU save state.\r
588 @param[out] Buffer Upon return, this holds the CPU register value read\r
589 from the save state.\r
590\r
591 @retval EFI_SUCCESS The register was read from Save State.\r
592 @retval EFI_INVALID_PARAMTER Buffer is NULL.\r
593 @retval EFI_UNSUPPORTED This function does not support reading Register.\r
594\r
595**/\r
596EFI_STATUS\r
597EFIAPI\r
598SmmCpuFeaturesReadSaveStateRegister (\r
599 IN UINTN CpuIndex,\r
600 IN EFI_SMM_SAVE_STATE_REGISTER Register,\r
601 IN UINTN Width,\r
602 OUT VOID *Buffer\r
603 )\r
604{\r
605 return EFI_UNSUPPORTED;\r
606}\r
607\r
608/**\r
609 Writes an SMM Save State register on the target processor. If this function\r
610 returns EFI_UNSUPPORTED, then the caller is responsible for writing the\r
611 SMM Save Sate register.\r
612\r
613 @param[in] CpuIndex The index of the CPU to write the SMM Save State. The\r
614 value must be between 0 and the NumberOfCpus field in\r
615 the System Management System Table (SMST).\r
616 @param[in] Register The SMM Save State register to write.\r
617 @param[in] Width The number of bytes to write to the CPU save state.\r
618 @param[in] Buffer Upon entry, this holds the new CPU register value.\r
619\r
620 @retval EFI_SUCCESS The register was written to Save State.\r
621 @retval EFI_INVALID_PARAMTER Buffer is NULL.\r
622 @retval EFI_UNSUPPORTED This function does not support writing Register.\r
623**/\r
624EFI_STATUS\r
625EFIAPI\r
626SmmCpuFeaturesWriteSaveStateRegister (\r
627 IN UINTN CpuIndex,\r
628 IN EFI_SMM_SAVE_STATE_REGISTER Register,\r
629 IN UINTN Width,\r
630 IN CONST VOID *Buffer\r
631 )\r
632{\r
633 return EFI_UNSUPPORTED;\r
634}\r
b095a540
JY
635\r
636/**\r
637 This function is hook point called after the gEfiSmmReadyToLockProtocolGuid\r
638 notification is completely processed.\r
639**/\r
640VOID\r
641EFIAPI\r
642SmmCpuFeaturesCompleteSmmReadyToLock (\r
643 VOID\r
644 )\r
645{\r
646}\r
647\r
648/**\r
649 This API provides a method for a CPU to allocate a specific region for storing page tables.\r
650\r
651 This API can be called more once to allocate memory for page tables.\r
652\r
653 Allocates the number of 4KB pages of type EfiRuntimeServicesData and returns a pointer to the\r
654 allocated buffer. The buffer returned is aligned on a 4KB boundary. If Pages is 0, then NULL\r
655 is returned. If there is not enough memory remaining to satisfy the request, then NULL is\r
656 returned.\r
657\r
658 This function can also return NULL if there is no preference on where the page tables are allocated in SMRAM.\r
659\r
660 @param Pages The number of 4 KB pages to allocate.\r
661\r
662 @return A pointer to the allocated buffer for page tables.\r
663 @retval NULL Fail to allocate a specific region for storing page tables,\r
664 Or there is no preference on where the page tables are allocated in SMRAM.\r
665\r
666**/\r
667VOID *\r
668EFIAPI\r
669SmmCpuFeaturesAllocatePageTableMemory (\r
670 IN UINTN Pages\r
671 )\r
672{\r
673 return NULL;\r
674}\r
675\r