]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.h
UefiCpuPkg/PiSmmCpuDxeSmm: Use SMM Interrupt Shadow Stack
[mirror_edk2.git] / UefiCpuPkg / PiSmmCpuDxeSmm / PiSmmCpuDxeSmm.h
CommitLineData
529a5a86
MK
1/** @file\r
2Agent Module to load other modules to deploy SMM Entry Vector for X86 CPU.\r
3\r
3fdc47c6 4Copyright (c) 2009 - 2020, Intel Corporation. All rights reserved.<BR>\r
241f9149
LD
5Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>\r
6\r
0acd8697 7SPDX-License-Identifier: BSD-2-Clause-Patent\r
529a5a86
MK
8\r
9**/\r
10\r
11#ifndef _CPU_PISMMCPUDXESMM_H_\r
12#define _CPU_PISMMCPUDXESMM_H_\r
13\r
14#include <PiSmm.h>\r
15\r
16#include <Protocol/MpService.h>\r
17#include <Protocol/SmmConfiguration.h>\r
18#include <Protocol/SmmCpu.h>\r
19#include <Protocol/SmmAccess2.h>\r
529a5a86
MK
20#include <Protocol/SmmReadyToLock.h>\r
21#include <Protocol/SmmCpuService.h>\r
827330cc 22#include <Protocol/SmmMemoryAttribute.h>\r
51dd408a 23#include <Protocol/MmMp.h>\r
529a5a86
MK
24\r
25#include <Guid/AcpiS3Context.h>\r
8a2e1a9d 26#include <Guid/MemoryAttributesTable.h>\r
717fb604 27#include <Guid/PiSmmMemoryAttributesTable.h>\r
529a5a86
MK
28\r
29#include <Library/BaseLib.h>\r
30#include <Library/IoLib.h>\r
31#include <Library/TimerLib.h>\r
529a5a86
MK
32#include <Library/SynchronizationLib.h>\r
33#include <Library/DebugLib.h>\r
34#include <Library/BaseMemoryLib.h>\r
35#include <Library/PcdLib.h>\r
529a5a86
MK
36#include <Library/MtrrLib.h>\r
37#include <Library/SmmCpuPlatformHookLib.h>\r
38#include <Library/SmmServicesTableLib.h>\r
39#include <Library/MemoryAllocationLib.h>\r
40#include <Library/UefiBootServicesTableLib.h>\r
41#include <Library/UefiRuntimeServicesTableLib.h>\r
42#include <Library/DebugAgentLib.h>\r
8a2e1a9d 43#include <Library/UefiLib.h>\r
529a5a86
MK
44#include <Library/HobLib.h>\r
45#include <Library/LocalApicLib.h>\r
46#include <Library/UefiCpuLib.h>\r
47#include <Library/CpuExceptionHandlerLib.h>\r
48#include <Library/ReportStatusCodeLib.h>\r
49#include <Library/SmmCpuFeaturesLib.h>\r
50#include <Library/PeCoffGetEntryPointLib.h>\r
93324390 51#include <Library/RegisterCpuFeaturesLib.h>\r
529a5a86
MK
52\r
53#include <AcpiCpuData.h>\r
54#include <CpuHotPlugData.h>\r
55\r
01acb06c
RN
56#include <Register/Intel/Cpuid.h>\r
57#include <Register/Intel/Msr.h>\r
529a5a86
MK
58\r
59#include "CpuService.h"\r
60#include "SmmProfile.h"\r
61\r
3eb69b08
JY
62//\r
63// CET definition\r
64//\r
65#define CPUID_CET_SS BIT7\r
66#define CPUID_CET_IBT BIT20\r
67\r
68#define CR4_CET_ENABLE BIT23\r
69\r
70#define MSR_IA32_S_CET 0x6A2\r
71#define MSR_IA32_PL0_SSP 0x6A4\r
72#define MSR_IA32_INTERRUPT_SSP_TABLE_ADDR 0x6A8\r
73\r
74typedef union {\r
75 struct {\r
76 // enable shadow stacks\r
77 UINT32 SH_STK_ENP:1;\r
78 // enable the WRSS{D,Q}W instructions.\r
79 UINT32 WR_SHSTK_EN:1;\r
80 // enable tracking of indirect call/jmp targets to be ENDBRANCH instruction.\r
81 UINT32 ENDBR_EN:1;\r
82 // enable legacy compatibility treatment for indirect call/jmp tracking.\r
83 UINT32 LEG_IW_EN:1;\r
84 // enable use of no-track prefix on indirect call/jmp.\r
85 UINT32 NO_TRACK_EN:1;\r
86 // disable suppression of CET indirect branch tracking on legacy compatibility.\r
87 UINT32 SUPPRESS_DIS:1;\r
88 UINT32 RSVD:4;\r
89 // indirect branch tracking is suppressed.\r
90 // This bit can be written to 1 only if TRACKER is written as IDLE.\r
91 UINT32 SUPPRESS:1;\r
92 // Value of the endbranch state machine\r
93 // Values: IDLE (0), WAIT_FOR_ENDBRANCH(1).\r
94 UINT32 TRACKER:1;\r
95 // linear address of a bitmap in memory indicating valid\r
96 // pages as target of CALL/JMP_indirect that do not land on ENDBRANCH when CET is enabled\r
97 // and not suppressed. Valid when ENDBR_EN is 1. Must be machine canonical when written on\r
98 // parts that support 64 bit mode. On parts that do not support 64 bit mode, the bits 63:32 are\r
99 // reserved and must be 0. This value is extended by 12 bits at the low end to form the base address\r
100 // (this automatically aligns the address on a 4-Kbyte boundary).\r
101 UINT32 EB_LEG_BITMAP_BASE_low:12;\r
102 UINT32 EB_LEG_BITMAP_BASE_high:32;\r
103 } Bits;\r
104 UINT64 Uint64;\r
105} MSR_IA32_CET;\r
106\r
529a5a86
MK
107//\r
108// MSRs required for configuration of SMM Code Access Check\r
109//\r
110#define EFI_MSR_SMM_MCA_CAP 0x17D\r
111#define SMM_CODE_ACCESS_CHK_BIT BIT58\r
112\r
113#define SMM_FEATURE_CONTROL_LOCK_BIT BIT0\r
114#define SMM_CODE_CHK_EN_BIT BIT2\r
115\r
116///\r
117/// Page Table Entry\r
118///\r
119#define IA32_PG_P BIT0\r
120#define IA32_PG_RW BIT1\r
881520ea 121#define IA32_PG_U BIT2\r
529a5a86
MK
122#define IA32_PG_WT BIT3\r
123#define IA32_PG_CD BIT4\r
124#define IA32_PG_A BIT5\r
881520ea 125#define IA32_PG_D BIT6\r
529a5a86
MK
126#define IA32_PG_PS BIT7\r
127#define IA32_PG_PAT_2M BIT12\r
128#define IA32_PG_PAT_4K IA32_PG_PS\r
129#define IA32_PG_PMNT BIT62\r
130#define IA32_PG_NX BIT63\r
131\r
717fb604 132#define PAGE_ATTRIBUTE_BITS (IA32_PG_D | IA32_PG_A | IA32_PG_U | IA32_PG_RW | IA32_PG_P)\r
881520ea
JY
133//\r
134// Bits 1, 2, 5, 6 are reserved in the IA32 PAE PDPTE\r
135// X64 PAE PDPTE does not have such restriction\r
136//\r
137#define IA32_PAE_PDPTE_ATTRIBUTE_BITS (IA32_PG_P)\r
138\r
717fb604
JY
139#define PAGE_PROGATE_BITS (IA32_PG_NX | PAGE_ATTRIBUTE_BITS)\r
140\r
141#define PAGING_4K_MASK 0xFFF\r
142#define PAGING_2M_MASK 0x1FFFFF\r
143#define PAGING_1G_MASK 0x3FFFFFFF\r
144\r
145#define PAGING_PAE_INDEX_MASK 0x1FF\r
146\r
147#define PAGING_4K_ADDRESS_MASK_64 0x000FFFFFFFFFF000ull\r
148#define PAGING_2M_ADDRESS_MASK_64 0x000FFFFFFFE00000ull\r
149#define PAGING_1G_ADDRESS_MASK_64 0x000FFFFFC0000000ull\r
150\r
7ed6f781
JF
151#define SMRR_MAX_ADDRESS BASE_4GB\r
152\r
717fb604
JY
153typedef enum {\r
154 PageNone,\r
155 Page4K,\r
156 Page2M,\r
157 Page1G,\r
158} PAGE_ATTRIBUTE;\r
159\r
160typedef struct {\r
161 PAGE_ATTRIBUTE Attribute;\r
162 UINT64 Length;\r
163 UINT64 AddressMask;\r
164} PAGE_ATTRIBUTE_TABLE;\r
165\r
529a5a86
MK
166//\r
167// Size of Task-State Segment defined in IA32 Manual\r
168//\r
169#define TSS_SIZE 104\r
3eb69b08 170#define EXCEPTION_TSS_SIZE (TSS_SIZE + 4) // Add 4 bytes SSP\r
529a5a86
MK
171#define TSS_X64_IST1_OFFSET 36\r
172#define TSS_IA32_CR3_OFFSET 28\r
173#define TSS_IA32_ESP_OFFSET 56\r
3eb69b08 174#define TSS_IA32_SSP_OFFSET 104\r
529a5a86 175\r
717fb604
JY
176#define CR0_WP BIT16\r
177\r
529a5a86
MK
178//\r
179// Code select value\r
180//\r
181#define PROTECT_MODE_CODE_SEGMENT 0x08\r
182#define LONG_MODE_CODE_SEGMENT 0x38\r
183\r
184//\r
185// The size 0x20 must be bigger than\r
186// the size of template code of SmmInit. Currently,\r
187// the size of SmmInit requires the 0x16 Bytes buffer\r
188// at least.\r
189//\r
190#define BACK_BUF_SIZE 0x20\r
191\r
192#define EXCEPTION_VECTOR_NUMBER 0x20\r
193\r
194#define INVALID_APIC_ID 0xFFFFFFFFFFFFFFFFULL\r
195\r
196typedef UINT32 SMM_CPU_ARRIVAL_EXCEPTIONS;\r
197#define ARRIVAL_EXCEPTION_BLOCKED 0x1\r
198#define ARRIVAL_EXCEPTION_DELAYED 0x2\r
199#define ARRIVAL_EXCEPTION_SMI_DISABLED 0x4\r
200\r
51dd408a
ED
201//\r
202// Wrapper used to convert EFI_AP_PROCEDURE2 and EFI_AP_PROCEDURE.\r
203//\r
204typedef struct {\r
205 EFI_AP_PROCEDURE Procedure;\r
206 VOID *ProcedureArgument;\r
207} PROCEDURE_WRAPPER;\r
208\r
209#define PROCEDURE_TOKEN_SIGNATURE SIGNATURE_32 ('P', 'R', 'T', 'S')\r
210\r
211typedef struct {\r
212 UINTN Signature;\r
213 LIST_ENTRY Link;\r
214\r
a457823f
ED
215 SPIN_LOCK *SpinLock;\r
216 volatile UINT32 RunningApCount;\r
51dd408a
ED
217} PROCEDURE_TOKEN;\r
218\r
219#define PROCEDURE_TOKEN_FROM_LINK(a) CR (a, PROCEDURE_TOKEN, Link, PROCEDURE_TOKEN_SIGNATURE)\r
220\r
9caaa79d
ED
221#define TOKEN_BUFFER_SIGNATURE SIGNATURE_32 ('T', 'K', 'B', 'S')\r
222\r
223typedef struct {\r
224 UINTN Signature;\r
225 LIST_ENTRY Link;\r
226\r
227 UINT8 *Buffer;\r
228} TOKEN_BUFFER;\r
229\r
230#define TOKEN_BUFFER_FROM_LINK(a) CR (a, TOKEN_BUFFER, Link, TOKEN_BUFFER_SIGNATURE)\r
231\r
529a5a86
MK
232//\r
233// Private structure for the SMM CPU module that is stored in DXE Runtime memory\r
234// Contains the SMM Configuration Protocols that is produced.\r
235// Contains a mix of DXE and SMM contents. All the fields must be used properly.\r
236//\r
237#define SMM_CPU_PRIVATE_DATA_SIGNATURE SIGNATURE_32 ('s', 'c', 'p', 'u')\r
238\r
239typedef struct {\r
240 UINTN Signature;\r
241\r
242 EFI_HANDLE SmmCpuHandle;\r
243\r
244 EFI_PROCESSOR_INFORMATION *ProcessorInfo;\r
245 SMM_CPU_OPERATION *Operation;\r
246 UINTN *CpuSaveStateSize;\r
247 VOID **CpuSaveState;\r
248\r
249 EFI_SMM_RESERVED_SMRAM_REGION SmmReservedSmramRegion[1];\r
250 EFI_SMM_ENTRY_CONTEXT SmmCoreEntryContext;\r
251 EFI_SMM_ENTRY_POINT SmmCoreEntry;\r
252\r
253 EFI_SMM_CONFIGURATION_PROTOCOL SmmConfiguration;\r
51dd408a
ED
254\r
255 PROCEDURE_WRAPPER *ApWrapperFunc;\r
256 LIST_ENTRY TokenList;\r
3fdc47c6 257 LIST_ENTRY *FirstFreeToken;\r
529a5a86
MK
258} SMM_CPU_PRIVATE_DATA;\r
259\r
260extern SMM_CPU_PRIVATE_DATA *gSmmCpuPrivate;\r
261extern CPU_HOT_PLUG_DATA mCpuHotPlugData;\r
262extern UINTN mMaxNumberOfCpus;\r
263extern UINTN mNumberOfCpus;\r
529a5a86 264extern EFI_SMM_CPU_PROTOCOL mSmmCpu;\r
51dd408a 265extern EFI_MM_MP_PROTOCOL mSmmMp;\r
404250c8 266extern UINTN mInternalCr3;\r
529a5a86
MK
267\r
268///\r
269/// The mode of the CPU at the time an SMI occurs\r
270///\r
271extern UINT8 mSmmSaveStateRegisterLma;\r
272\r
529a5a86
MK
273//\r
274// SMM CPU Protocol function prototypes.\r
275//\r
276\r
277/**\r
278 Read information from the CPU save state.\r
279\r
280 @param This EFI_SMM_CPU_PROTOCOL instance\r
281 @param Width The number of bytes to read from the CPU save state.\r
282 @param Register Specifies the CPU register to read form the save state.\r
283 @param CpuIndex Specifies the zero-based index of the CPU save state\r
284 @param Buffer Upon return, this holds the CPU register value read from the save state.\r
285\r
286 @retval EFI_SUCCESS The register was read from Save State\r
287 @retval EFI_NOT_FOUND The register is not defined for the Save State of Processor\r
ef62da4f 288 @retval EFI_INVALID_PARAMETER This or Buffer is NULL.\r
529a5a86
MK
289\r
290**/\r
291EFI_STATUS\r
292EFIAPI\r
293SmmReadSaveState (\r
294 IN CONST EFI_SMM_CPU_PROTOCOL *This,\r
295 IN UINTN Width,\r
296 IN EFI_SMM_SAVE_STATE_REGISTER Register,\r
297 IN UINTN CpuIndex,\r
298 OUT VOID *Buffer\r
299 );\r
300\r
301/**\r
302 Write data to the CPU save state.\r
303\r
304 @param This EFI_SMM_CPU_PROTOCOL instance\r
305 @param Width The number of bytes to read from the CPU save state.\r
306 @param Register Specifies the CPU register to write to the save state.\r
307 @param CpuIndex Specifies the zero-based index of the CPU save state\r
308 @param Buffer Upon entry, this holds the new CPU register value.\r
309\r
310 @retval EFI_SUCCESS The register was written from Save State\r
311 @retval EFI_NOT_FOUND The register is not defined for the Save State of Processor\r
ef62da4f 312 @retval EFI_INVALID_PARAMETER ProcessorIndex or Width is not correct\r
529a5a86
MK
313\r
314**/\r
315EFI_STATUS\r
316EFIAPI\r
317SmmWriteSaveState (\r
318 IN CONST EFI_SMM_CPU_PROTOCOL *This,\r
319 IN UINTN Width,\r
320 IN EFI_SMM_SAVE_STATE_REGISTER Register,\r
321 IN UINTN CpuIndex,\r
322 IN CONST VOID *Buffer\r
323 );\r
324\r
325/**\r
326Read a CPU Save State register on the target processor.\r
327\r
328This function abstracts the differences that whether the CPU Save State register is in the\r
329IA32 CPU Save State Map or X64 CPU Save State Map.\r
330\r
331This function supports reading a CPU Save State register in SMBase relocation handler.\r
332\r
333@param[in] CpuIndex Specifies the zero-based index of the CPU save state.\r
334@param[in] RegisterIndex Index into mSmmCpuWidthOffset[] look up table.\r
335@param[in] Width The number of bytes to read from the CPU save state.\r
336@param[out] Buffer Upon return, this holds the CPU register value read from the save state.\r
337\r
338@retval EFI_SUCCESS The register was read from Save State.\r
339@retval EFI_NOT_FOUND The register is not defined for the Save State of Processor.\r
a7d8e28b 340@retval EFI_INVALID_PARAMETER Buffer is NULL, or Width does not meet requirement per Register type.\r
529a5a86
MK
341\r
342**/\r
343EFI_STATUS\r
344EFIAPI\r
345ReadSaveStateRegister (\r
346 IN UINTN CpuIndex,\r
347 IN EFI_SMM_SAVE_STATE_REGISTER Register,\r
348 IN UINTN Width,\r
349 OUT VOID *Buffer\r
350 );\r
351\r
352/**\r
353Write value to a CPU Save State register on the target processor.\r
354\r
355This function abstracts the differences that whether the CPU Save State register is in the\r
356IA32 CPU Save State Map or X64 CPU Save State Map.\r
357\r
358This function supports writing a CPU Save State register in SMBase relocation handler.\r
359\r
360@param[in] CpuIndex Specifies the zero-based index of the CPU save state.\r
361@param[in] RegisterIndex Index into mSmmCpuWidthOffset[] look up table.\r
362@param[in] Width The number of bytes to read from the CPU save state.\r
363@param[in] Buffer Upon entry, this holds the new CPU register value.\r
364\r
365@retval EFI_SUCCESS The register was written to Save State.\r
366@retval EFI_NOT_FOUND The register is not defined for the Save State of Processor.\r
ef62da4f 367@retval EFI_INVALID_PARAMETER ProcessorIndex or Width is not correct.\r
529a5a86
MK
368\r
369**/\r
370EFI_STATUS\r
371EFIAPI\r
372WriteSaveStateRegister (\r
373 IN UINTN CpuIndex,\r
374 IN EFI_SMM_SAVE_STATE_REGISTER Register,\r
375 IN UINTN Width,\r
376 IN CONST VOID *Buffer\r
377 );\r
378\r
529a5a86
MK
379extern CONST UINT8 gcSmmInitTemplate[];\r
380extern CONST UINT16 gcSmmInitSize;\r
f0053e83
LE
381X86_ASSEMBLY_PATCH_LABEL gPatchSmmCr0;\r
382extern UINT32 mSmmCr0;\r
6b0841c1 383X86_ASSEMBLY_PATCH_LABEL gPatchSmmCr3;\r
351b49c1
LE
384extern UINT32 mSmmCr4;\r
385X86_ASSEMBLY_PATCH_LABEL gPatchSmmCr4;\r
5830d2c3 386X86_ASSEMBLY_PATCH_LABEL gPatchSmmInitStack;\r
3eb69b08
JY
387X86_ASSEMBLY_PATCH_LABEL mPatchCetSupported;\r
388extern BOOLEAN mCetSupported;\r
529a5a86
MK
389\r
390/**\r
391 Semaphore operation for all processor relocate SMMBase.\r
392**/\r
393VOID\r
394EFIAPI\r
395SmmRelocationSemaphoreComplete (\r
396 VOID\r
397 );\r
398\r
399///\r
400/// The type of SMM CPU Information\r
401///\r
402typedef struct {\r
ed3d5ecb 403 SPIN_LOCK *Busy;\r
51dd408a 404 volatile EFI_AP_PROCEDURE2 Procedure;\r
529a5a86 405 volatile VOID *Parameter;\r
ed3d5ecb
JF
406 volatile UINT32 *Run;\r
407 volatile BOOLEAN *Present;\r
a457823f 408 PROCEDURE_TOKEN *Token;\r
51dd408a 409 EFI_STATUS *Status;\r
529a5a86
MK
410} SMM_CPU_DATA_BLOCK;\r
411\r
412typedef enum {\r
413 SmmCpuSyncModeTradition,\r
414 SmmCpuSyncModeRelaxedAp,\r
415 SmmCpuSyncModeMax\r
416} SMM_CPU_SYNC_MODE;\r
417\r
418typedef struct {\r
419 //\r
420 // Pointer to an array. The array should be located immediately after this structure\r
421 // so that UC cache-ability can be set together.\r
422 //\r
423 SMM_CPU_DATA_BLOCK *CpuData;\r
fe3a75bc 424 volatile UINT32 *Counter;\r
529a5a86 425 volatile UINT32 BspIndex;\r
fe3a75bc
JF
426 volatile BOOLEAN *InsideSmm;\r
427 volatile BOOLEAN *AllCpusInSync;\r
529a5a86
MK
428 volatile SMM_CPU_SYNC_MODE EffectiveSyncMode;\r
429 volatile BOOLEAN SwitchBsp;\r
430 volatile BOOLEAN *CandidateBsp;\r
51dd408a
ED
431 EFI_AP_PROCEDURE StartupProcedure;\r
432 VOID *StartupProcArgs;\r
529a5a86
MK
433} SMM_DISPATCHER_MP_SYNC_DATA;\r
434\r
529a5a86
MK
435#define SMM_PSD_OFFSET 0xfb00\r
436\r
1d648531
JF
437///\r
438/// All global semaphores' pointer\r
439///\r
440typedef struct {\r
441 volatile UINT32 *Counter;\r
442 volatile BOOLEAN *InsideSmm;\r
443 volatile BOOLEAN *AllCpusInSync;\r
444 SPIN_LOCK *PFLock;\r
445 SPIN_LOCK *CodeAccessCheckLock;\r
446} SMM_CPU_SEMAPHORE_GLOBAL;\r
447\r
4e920581
JF
448///\r
449/// All semaphores for each processor\r
450///\r
451typedef struct {\r
452 SPIN_LOCK *Busy;\r
453 volatile UINT32 *Run;\r
454 volatile BOOLEAN *Present;\r
51dd408a 455 SPIN_LOCK *Token;\r
4e920581
JF
456} SMM_CPU_SEMAPHORE_CPU;\r
457\r
1d648531
JF
458///\r
459/// All semaphores' information\r
460///\r
461typedef struct {\r
462 SMM_CPU_SEMAPHORE_GLOBAL SemaphoreGlobal;\r
4e920581 463 SMM_CPU_SEMAPHORE_CPU SemaphoreCpu;\r
1d648531
JF
464} SMM_CPU_SEMAPHORES;\r
465\r
529a5a86 466extern IA32_DESCRIPTOR gcSmiGdtr;\r
717fb604
JY
467extern EFI_PHYSICAL_ADDRESS mGdtBuffer;\r
468extern UINTN mGdtBufferSize;\r
529a5a86
MK
469extern IA32_DESCRIPTOR gcSmiIdtr;\r
470extern VOID *gcSmiIdtrPtr;\r
529a5a86 471extern UINT64 gPhyMask;\r
529a5a86 472extern SMM_DISPATCHER_MP_SYNC_DATA *mSmmMpSyncData;\r
529a5a86
MK
473extern UINTN mSmmStackArrayBase;\r
474extern UINTN mSmmStackArrayEnd;\r
475extern UINTN mSmmStackSize;\r
476extern EFI_SMM_CPU_SERVICE_PROTOCOL mSmmCpuService;\r
477extern IA32_DESCRIPTOR gcSmiInitGdtr;\r
dc99315b
JF
478extern SMM_CPU_SEMAPHORES mSmmCpuSemaphores;\r
479extern UINTN mSemaphoreSize;\r
fe3a75bc
JF
480extern SPIN_LOCK *mPFLock;\r
481extern SPIN_LOCK *mConfigSmmCodeAccessCheckLock;\r
7ed6f781
JF
482extern EFI_SMRAM_DESCRIPTOR *mSmmCpuSmramRanges;\r
483extern UINTN mSmmCpuSmramRangeCount;\r
714c2603 484extern UINT8 mPhysicalAddressBits;\r
529a5a86 485\r
241f9149
LD
486//\r
487// Copy of the PcdPteMemoryEncryptionAddressOrMask\r
488//\r
489extern UINT64 mAddressEncMask;\r
490\r
529a5a86
MK
491/**\r
492 Create 4G PageTable in SMRAM.\r
493\r
717fb604 494 @param[in] Is32BitPageTable Whether the page table is 32-bit PAE\r
529a5a86
MK
495 @return PageTable Address\r
496\r
497**/\r
498UINT32\r
499Gen4GPageTable (\r
881520ea 500 IN BOOLEAN Is32BitPageTable\r
529a5a86
MK
501 );\r
502\r
503\r
504/**\r
505 Initialize global data for MP synchronization.\r
506\r
3eb69b08
JY
507 @param Stacks Base address of SMI stack buffer for all processors.\r
508 @param StackSize Stack size for each processor in SMM.\r
509 @param ShadowStackSize Shadow Stack size for each processor in SMM.\r
529a5a86
MK
510\r
511**/\r
512UINT32\r
513InitializeMpServiceData (\r
514 IN VOID *Stacks,\r
3eb69b08
JY
515 IN UINTN StackSize,\r
516 IN UINTN ShadowStackSize\r
529a5a86
MK
517 );\r
518\r
519/**\r
520 Initialize Timer for SMM AP Sync.\r
521\r
522**/\r
523VOID\r
524InitializeSmmTimer (\r
525 VOID\r
526 );\r
527\r
528/**\r
529 Start Timer for SMM AP Sync.\r
530\r
531**/\r
532UINT64\r
533EFIAPI\r
534StartSyncTimer (\r
535 VOID\r
536 );\r
537\r
538/**\r
539 Check if the SMM AP Sync timer is timeout.\r
540\r
541 @param Timer The start timer from the begin.\r
542\r
543**/\r
544BOOLEAN\r
545EFIAPI\r
546IsSyncTimerTimeout (\r
547 IN UINT64 Timer\r
548 );\r
549\r
550/**\r
551 Initialize IDT for SMM Stack Guard.\r
552\r
553**/\r
554VOID\r
555EFIAPI\r
556InitializeIDTSmmStackGuard (\r
557 VOID\r
558 );\r
559\r
455b0347
S
560/**\r
561 Initialize IDT IST Field.\r
562\r
563 @param[in] ExceptionType Exception type.\r
564 @param[in] Ist IST value.\r
565\r
566**/\r
567VOID\r
568EFIAPI\r
569InitializeIdtIst (\r
570 IN EFI_EXCEPTION_TYPE ExceptionType,\r
571 IN UINT8 Ist\r
572 );\r
573\r
fe5f1949
JY
574/**\r
575 Initialize Gdt for all processors.\r
717fb604 576\r
fe5f1949
JY
577 @param[in] Cr3 CR3 value.\r
578 @param[out] GdtStepSize The step size for GDT table.\r
579\r
580 @return GdtBase for processor 0.\r
581 GdtBase for processor X is: GdtBase + (GdtStepSize * X)\r
582**/\r
583VOID *\r
584InitGdt (\r
585 IN UINTN Cr3,\r
586 OUT UINTN *GdtStepSize\r
587 );\r
588\r
529a5a86
MK
589/**\r
590\r
591 Register the SMM Foundation entry point.\r
592\r
593 @param This Pointer to EFI_SMM_CONFIGURATION_PROTOCOL instance\r
594 @param SmmEntryPoint SMM Foundation EntryPoint\r
595\r
596 @retval EFI_SUCCESS Successfully to register SMM foundation entry point\r
597\r
598**/\r
599EFI_STATUS\r
600EFIAPI\r
601RegisterSmmEntry (\r
602 IN CONST EFI_SMM_CONFIGURATION_PROTOCOL *This,\r
603 IN EFI_SMM_ENTRY_POINT SmmEntryPoint\r
604 );\r
605\r
606/**\r
607 Create PageTable for SMM use.\r
608\r
609 @return PageTable Address\r
610\r
611**/\r
612UINT32\r
613SmmInitPageTable (\r
614 VOID\r
615 );\r
616\r
617/**\r
618 Schedule a procedure to run on the specified CPU.\r
619\r
620 @param Procedure The address of the procedure to run\r
621 @param CpuIndex Target CPU number\r
622 @param ProcArguments The parameter to pass to the procedure\r
623\r
624 @retval EFI_INVALID_PARAMETER CpuNumber not valid\r
625 @retval EFI_INVALID_PARAMETER CpuNumber specifying BSP\r
626 @retval EFI_INVALID_PARAMETER The AP specified by CpuNumber did not enter SMM\r
627 @retval EFI_INVALID_PARAMETER The AP specified by CpuNumber is busy\r
628 @retval EFI_SUCCESS - The procedure has been successfully scheduled\r
629\r
630**/\r
631EFI_STATUS\r
632EFIAPI\r
633SmmStartupThisAp (\r
634 IN EFI_AP_PROCEDURE Procedure,\r
635 IN UINTN CpuIndex,\r
636 IN OUT VOID *ProcArguments OPTIONAL\r
637 );\r
638\r
639/**\r
640 Schedule a procedure to run on the specified CPU in a blocking fashion.\r
641\r
642 @param Procedure The address of the procedure to run\r
643 @param CpuIndex Target CPU Index\r
644 @param ProcArguments The parameter to pass to the procedure\r
645\r
646 @retval EFI_INVALID_PARAMETER CpuNumber not valid\r
647 @retval EFI_INVALID_PARAMETER CpuNumber specifying BSP\r
648 @retval EFI_INVALID_PARAMETER The AP specified by CpuNumber did not enter SMM\r
649 @retval EFI_INVALID_PARAMETER The AP specified by CpuNumber is busy\r
650 @retval EFI_SUCCESS The procedure has been successfully scheduled\r
651\r
652**/\r
653EFI_STATUS\r
654EFIAPI\r
655SmmBlockingStartupThisAp (\r
656 IN EFI_AP_PROCEDURE Procedure,\r
657 IN UINTN CpuIndex,\r
658 IN OUT VOID *ProcArguments OPTIONAL\r
659 );\r
660\r
e4435f71
JY
661/**\r
662 This function sets the attributes for the memory region specified by BaseAddress and\r
663 Length from their current attributes to the attributes specified by Attributes.\r
664\r
665 @param[in] BaseAddress The physical address that is the start address of a memory region.\r
666 @param[in] Length The size in bytes of the memory region.\r
667 @param[in] Attributes The bit mask of attributes to set for the memory region.\r
668\r
669 @retval EFI_SUCCESS The attributes were set for the memory region.\r
670 @retval EFI_ACCESS_DENIED The attributes for the memory resource range specified by\r
671 BaseAddress and Length cannot be modified.\r
672 @retval EFI_INVALID_PARAMETER Length is zero.\r
673 Attributes specified an illegal combination of attributes that\r
674 cannot be set together.\r
675 @retval EFI_OUT_OF_RESOURCES There are not enough system resources to modify the attributes of\r
676 the memory resource range.\r
677 @retval EFI_UNSUPPORTED The processor does not support one or more bytes of the memory\r
678 resource range specified by BaseAddress and Length.\r
679 The bit mask of attributes is not support for the memory resource\r
680 range specified by BaseAddress and Length.\r
681\r
682**/\r
683EFI_STATUS\r
684EFIAPI\r
685SmmSetMemoryAttributes (\r
686 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
687 IN UINT64 Length,\r
688 IN UINT64 Attributes\r
689 );\r
690\r
691/**\r
692 This function clears the attributes for the memory region specified by BaseAddress and\r
693 Length from their current attributes to the attributes specified by Attributes.\r
694\r
695 @param[in] BaseAddress The physical address that is the start address of a memory region.\r
696 @param[in] Length The size in bytes of the memory region.\r
697 @param[in] Attributes The bit mask of attributes to clear for the memory region.\r
698\r
699 @retval EFI_SUCCESS The attributes were cleared for the memory region.\r
700 @retval EFI_ACCESS_DENIED The attributes for the memory resource range specified by\r
701 BaseAddress and Length cannot be modified.\r
702 @retval EFI_INVALID_PARAMETER Length is zero.\r
703 Attributes specified an illegal combination of attributes that\r
704 cannot be set together.\r
705 @retval EFI_OUT_OF_RESOURCES There are not enough system resources to modify the attributes of\r
706 the memory resource range.\r
707 @retval EFI_UNSUPPORTED The processor does not support one or more bytes of the memory\r
708 resource range specified by BaseAddress and Length.\r
709 The bit mask of attributes is not support for the memory resource\r
710 range specified by BaseAddress and Length.\r
711\r
712**/\r
713EFI_STATUS\r
714EFIAPI\r
715SmmClearMemoryAttributes (\r
716 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
717 IN UINT64 Length,\r
718 IN UINT64 Attributes\r
719 );\r
720\r
529a5a86
MK
721/**\r
722 Initialize MP synchronization data.\r
723\r
724**/\r
725VOID\r
726EFIAPI\r
727InitializeMpSyncData (\r
728 VOID\r
729 );\r
730\r
731/**\r
732\r
733 Find out SMRAM information including SMRR base and SMRR size.\r
734\r
735 @param SmrrBase SMRR base\r
736 @param SmrrSize SMRR size\r
737\r
738**/\r
739VOID\r
740FindSmramInfo (\r
741 OUT UINT32 *SmrrBase,\r
742 OUT UINT32 *SmrrSize\r
743 );\r
744\r
745/**\r
0bdc9e75 746 Relocate SmmBases for each processor.\r
529a5a86 747\r
0bdc9e75 748 Execute on first boot and all S3 resumes\r
529a5a86
MK
749\r
750**/\r
751VOID\r
0bdc9e75
SZ
752EFIAPI\r
753SmmRelocateBases (\r
529a5a86
MK
754 VOID\r
755 );\r
756\r
757/**\r
758 Page Fault handler for SMM use.\r
759\r
760 @param InterruptType Defines the type of interrupt or exception that\r
761 occurred on the processor.This parameter is processor architecture specific.\r
762 @param SystemContext A pointer to the processor context when\r
763 the interrupt occurred on the processor.\r
764**/\r
765VOID\r
766EFIAPI\r
767SmiPFHandler (\r
b8caae19
JF
768 IN EFI_EXCEPTION_TYPE InterruptType,\r
769 IN EFI_SYSTEM_CONTEXT SystemContext\r
529a5a86
MK
770 );\r
771\r
772/**\r
773 Perform the remaining tasks.\r
774\r
775**/\r
776VOID\r
777PerformRemainingTasks (\r
778 VOID\r
779 );\r
780\r
9f419739
JY
781/**\r
782 Perform the pre tasks.\r
783\r
784**/\r
785VOID\r
786PerformPreTasks (\r
787 VOID\r
788 );\r
789\r
529a5a86
MK
790/**\r
791 Initialize MSR spin lock by MSR index.\r
792\r
793 @param MsrIndex MSR index value.\r
794\r
795**/\r
796VOID\r
797InitMsrSpinLockByIndex (\r
798 IN UINT32 MsrIndex\r
799 );\r
800\r
801/**\r
802 Hook return address of SMM Save State so that semaphore code\r
803 can be executed immediately after AP exits SMM to indicate to\r
804 the BSP that an AP has exited SMM after SMBASE relocation.\r
805\r
806 @param[in] CpuIndex The processor index.\r
807 @param[in] RebasedFlag A pointer to a flag that is set to TRUE\r
808 immediately after AP exits SMM.\r
809\r
810**/\r
811VOID\r
812SemaphoreHook (\r
813 IN UINTN CpuIndex,\r
814 IN volatile BOOLEAN *RebasedFlag\r
815 );\r
816\r
817/**\r
818Configure SMM Code Access Check feature for all processors.\r
819SMM Feature Control MSR will be locked after configuration.\r
820**/\r
821VOID\r
822ConfigSmmCodeAccessCheck (\r
823 VOID\r
824 );\r
825\r
826/**\r
827 Hook the code executed immediately after an RSM instruction on the currently\r
828 executing CPU. The mode of code executed immediately after RSM must be\r
829 detected, and the appropriate hook must be selected. Always clear the auto\r
830 HALT restart flag if it is set.\r
831\r
832 @param[in] CpuIndex The processor index for the currently\r
833 executing CPU.\r
834 @param[in] CpuState Pointer to SMRAM Save State Map for the\r
835 currently executing CPU.\r
836 @param[in] NewInstructionPointer32 Instruction pointer to use if resuming to\r
837 32-bit mode from 64-bit SMM.\r
838 @param[in] NewInstructionPointer Instruction pointer to use if resuming to\r
839 same mode as SMM.\r
840\r
841 @retval The value of the original instruction pointer before it was hooked.\r
842\r
843**/\r
844UINT64\r
845EFIAPI\r
846HookReturnFromSmm (\r
847 IN UINTN CpuIndex,\r
848 SMRAM_SAVE_STATE_MAP *CpuState,\r
849 UINT64 NewInstructionPointer32,\r
850 UINT64 NewInstructionPointer\r
851 );\r
852\r
853/**\r
854 Get the size of the SMI Handler in bytes.\r
855\r
856 @retval The size, in bytes, of the SMI Handler.\r
857\r
858**/\r
859UINTN\r
860EFIAPI\r
861GetSmiHandlerSize (\r
862 VOID\r
863 );\r
864\r
865/**\r
866 Install the SMI handler for the CPU specified by CpuIndex. This function\r
867 is called by the CPU that was elected as monarch during System Management\r
868 Mode initialization.\r
869\r
870 @param[in] CpuIndex The index of the CPU to install the custom SMI handler.\r
871 The value must be between 0 and the NumberOfCpus field\r
872 in the System Management System Table (SMST).\r
873 @param[in] SmBase The SMBASE address for the CPU specified by CpuIndex.\r
874 @param[in] SmiStack The stack to use when an SMI is processed by the\r
875 the CPU specified by CpuIndex.\r
876 @param[in] StackSize The size, in bytes, if the stack used when an SMI is\r
877 processed by the CPU specified by CpuIndex.\r
878 @param[in] GdtBase The base address of the GDT to use when an SMI is\r
879 processed by the CPU specified by CpuIndex.\r
880 @param[in] GdtSize The size, in bytes, of the GDT used when an SMI is\r
881 processed by the CPU specified by CpuIndex.\r
882 @param[in] IdtBase The base address of the IDT to use when an SMI is\r
883 processed by the CPU specified by CpuIndex.\r
884 @param[in] IdtSize The size, in bytes, of the IDT used when an SMI is\r
885 processed by the CPU specified by CpuIndex.\r
886 @param[in] Cr3 The base address of the page tables to use when an SMI\r
887 is processed by the CPU specified by CpuIndex.\r
888**/\r
889VOID\r
890EFIAPI\r
891InstallSmiHandler (\r
892 IN UINTN CpuIndex,\r
893 IN UINT32 SmBase,\r
894 IN VOID *SmiStack,\r
895 IN UINTN StackSize,\r
896 IN UINTN GdtBase,\r
897 IN UINTN GdtSize,\r
898 IN UINTN IdtBase,\r
899 IN UINTN IdtSize,\r
900 IN UINT32 Cr3\r
901 );\r
902\r
903/**\r
904 Search module name by input IP address and output it.\r
905\r
906 @param CallerIpAddress Caller instruction pointer.\r
907\r
908**/\r
909VOID\r
910DumpModuleInfoByIp (\r
911 IN UINTN CallerIpAddress\r
912 );\r
21c17193 913\r
717fb604
JY
914/**\r
915 This function sets memory attribute according to MemoryAttributesTable.\r
916**/\r
917VOID\r
918SetMemMapAttributes (\r
919 VOID\r
920 );\r
921\r
d2fc7711
JY
922/**\r
923 This function sets UEFI memory attribute according to UEFI memory map.\r
924**/\r
925VOID\r
926SetUefiMemMapAttributes (\r
927 VOID\r
928 );\r
929\r
930/**\r
931 Return if the Address is forbidden as SMM communication buffer.\r
932\r
933 @param[in] Address the address to be checked\r
934\r
935 @return TRUE The address is forbidden as SMM communication buffer.\r
936 @return FALSE The address is allowed as SMM communication buffer.\r
937**/\r
938BOOLEAN\r
939IsSmmCommBufferForbiddenAddress (\r
940 IN UINT64 Address\r
941 );\r
942\r
943/**\r
944 This function caches the UEFI memory map information.\r
945**/\r
946VOID\r
947GetUefiMemoryMap (\r
948 VOID\r
949 );\r
950\r
717fb604
JY
951/**\r
952 This function sets memory attribute for page table.\r
953**/\r
954VOID\r
955SetPageTableAttributes (\r
956 VOID\r
957 );\r
958\r
959/**\r
404250c8 960 Get page table base address and the depth of the page table.\r
717fb604 961\r
404250c8
SW
962 @param[out] Base Page table base address.\r
963 @param[out] FiveLevels TRUE means 5 level paging. FALSE means 4 level paging.\r
717fb604 964**/\r
404250c8
SW
965VOID\r
966GetPageTable (\r
967 OUT UINTN *Base,\r
968 OUT BOOLEAN *FiveLevels OPTIONAL\r
717fb604
JY
969 );\r
970\r
971/**\r
972 This function sets the attributes for the memory region specified by BaseAddress and\r
973 Length from their current attributes to the attributes specified by Attributes.\r
974\r
975 @param[in] BaseAddress The physical address that is the start address of a memory region.\r
976 @param[in] Length The size in bytes of the memory region.\r
977 @param[in] Attributes The bit mask of attributes to set for the memory region.\r
978 @param[out] IsSplitted TRUE means page table splitted. FALSE means page table not splitted.\r
979\r
980 @retval EFI_SUCCESS The attributes were set for the memory region.\r
981 @retval EFI_ACCESS_DENIED The attributes for the memory resource range specified by\r
982 BaseAddress and Length cannot be modified.\r
983 @retval EFI_INVALID_PARAMETER Length is zero.\r
984 Attributes specified an illegal combination of attributes that\r
985 cannot be set together.\r
986 @retval EFI_OUT_OF_RESOURCES There are not enough system resources to modify the attributes of\r
987 the memory resource range.\r
988 @retval EFI_UNSUPPORTED The processor does not support one or more bytes of the memory\r
989 resource range specified by BaseAddress and Length.\r
990 The bit mask of attributes is not support for the memory resource\r
991 range specified by BaseAddress and Length.\r
992\r
993**/\r
994EFI_STATUS\r
995EFIAPI\r
996SmmSetMemoryAttributesEx (\r
997 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
998 IN UINT64 Length,\r
999 IN UINT64 Attributes,\r
1000 OUT BOOLEAN *IsSplitted OPTIONAL\r
1001 );\r
1002\r
1003/**\r
1004 This function clears the attributes for the memory region specified by BaseAddress and\r
1005 Length from their current attributes to the attributes specified by Attributes.\r
1006\r
1007 @param[in] BaseAddress The physical address that is the start address of a memory region.\r
1008 @param[in] Length The size in bytes of the memory region.\r
1009 @param[in] Attributes The bit mask of attributes to clear for the memory region.\r
1010 @param[out] IsSplitted TRUE means page table splitted. FALSE means page table not splitted.\r
1011\r
1012 @retval EFI_SUCCESS The attributes were cleared for the memory region.\r
1013 @retval EFI_ACCESS_DENIED The attributes for the memory resource range specified by\r
1014 BaseAddress and Length cannot be modified.\r
1015 @retval EFI_INVALID_PARAMETER Length is zero.\r
1016 Attributes specified an illegal combination of attributes that\r
1017 cannot be set together.\r
1018 @retval EFI_OUT_OF_RESOURCES There are not enough system resources to modify the attributes of\r
1019 the memory resource range.\r
1020 @retval EFI_UNSUPPORTED The processor does not support one or more bytes of the memory\r
1021 resource range specified by BaseAddress and Length.\r
1022 The bit mask of attributes is not support for the memory resource\r
1023 range specified by BaseAddress and Length.\r
1024\r
1025**/\r
1026EFI_STATUS\r
1027EFIAPI\r
1028SmmClearMemoryAttributesEx (\r
1029 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
1030 IN UINT64 Length,\r
1031 IN UINT64 Attributes,\r
1032 OUT BOOLEAN *IsSplitted OPTIONAL\r
1033 );\r
1034\r
21c17193
JY
1035/**\r
1036 This API provides a way to allocate memory for page table.\r
1037\r
1038 This API can be called more once to allocate memory for page tables.\r
1039\r
1040 Allocates the number of 4KB pages of type EfiRuntimeServicesData and returns a pointer to the\r
1041 allocated buffer. The buffer returned is aligned on a 4KB boundary. If Pages is 0, then NULL\r
1042 is returned. If there is not enough memory remaining to satisfy the request, then NULL is\r
1043 returned.\r
1044\r
1045 @param Pages The number of 4 KB pages to allocate.\r
1046\r
1047 @return A pointer to the allocated buffer or NULL if allocation fails.\r
1048\r
1049**/\r
1050VOID *\r
1051AllocatePageTableMemory (\r
1052 IN UINTN Pages\r
1053 );\r
1054\r
717fb604
JY
1055/**\r
1056 Allocate pages for code.\r
1057\r
1058 @param[in] Pages Number of pages to be allocated.\r
1059\r
1060 @return Allocated memory.\r
1061**/\r
1062VOID *\r
1063AllocateCodePages (\r
1064 IN UINTN Pages\r
1065 );\r
1066\r
1067/**\r
1068 Allocate aligned pages for code.\r
1069\r
1070 @param[in] Pages Number of pages to be allocated.\r
1071 @param[in] Alignment The requested alignment of the allocation.\r
1072 Must be a power of two.\r
1073 If Alignment is zero, then byte alignment is used.\r
1074\r
1075 @return Allocated memory.\r
1076**/\r
1077VOID *\r
1078AllocateAlignedCodePages (\r
1079 IN UINTN Pages,\r
1080 IN UINTN Alignment\r
1081 );\r
1082\r
0bdc9e75
SZ
1083\r
1084//\r
1085// S3 related global variable and function prototype.\r
1086//\r
1087\r
1088extern BOOLEAN mSmmS3Flag;\r
1089\r
1090/**\r
1091 Initialize SMM S3 resume state structure used during S3 Resume.\r
1092\r
1093 @param[in] Cr3 The base address of the page tables to use in SMM.\r
1094\r
1095**/\r
1096VOID\r
1097InitSmmS3ResumeState (\r
1098 IN UINT32 Cr3\r
1099 );\r
1100\r
1101/**\r
1102 Get ACPI CPU data.\r
1103\r
1104**/\r
1105VOID\r
1106GetAcpiCpuData (\r
1107 VOID\r
1108 );\r
1109\r
1110/**\r
1111 Restore SMM Configuration in S3 boot path.\r
1112\r
1113**/\r
1114VOID\r
1115RestoreSmmConfigurationInS3 (\r
1116 VOID\r
1117 );\r
1118\r
b10d5ddc
SZ
1119/**\r
1120 Get ACPI S3 enable flag.\r
1121\r
1122**/\r
1123VOID\r
1124GetAcpiS3EnableFlag (\r
1125 VOID\r
1126 );\r
1127\r
4a0f88dd
JF
1128/**\r
1129 Transfer AP to safe hlt-loop after it finished restore CPU features on S3 patch.\r
1130\r
672b80c8
MK
1131 @param[in] ApHltLoopCode The address of the safe hlt-loop function.\r
1132 @param[in] TopOfStack A pointer to the new stack to use for the ApHltLoopCode.\r
1133 @param[in] NumberToFinishAddress Address of Semaphore of APs finish count.\r
4a0f88dd
JF
1134\r
1135**/\r
1136VOID\r
1137TransferApToSafeState (\r
672b80c8
MK
1138 IN UINTN ApHltLoopCode,\r
1139 IN UINTN TopOfStack,\r
1140 IN UINTN NumberToFinishAddress\r
4a0f88dd
JF
1141 );\r
1142\r
3eb69b08
JY
1143/**\r
1144 Set ShadowStack memory.\r
1145\r
1146 @param[in] Cr3 The page table base address.\r
1147 @param[in] BaseAddress The physical address that is the start address of a memory region.\r
1148 @param[in] Length The size in bytes of the memory region.\r
1149\r
1150 @retval EFI_SUCCESS The shadow stack memory is set.\r
1151**/\r
1152EFI_STATUS\r
1153SetShadowStack (\r
1154 IN UINTN Cr3,\r
1155 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
1156 IN UINT64 Length\r
1157 );\r
1158\r
1159/**\r
1160 Set not present memory.\r
1161\r
1162 @param[in] Cr3 The page table base address.\r
1163 @param[in] BaseAddress The physical address that is the start address of a memory region.\r
1164 @param[in] Length The size in bytes of the memory region.\r
1165\r
1166 @retval EFI_SUCCESS The not present memory is set.\r
1167**/\r
1168EFI_STATUS\r
1169SetNotPresentPage (\r
1170 IN UINTN Cr3,\r
1171 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
1172 IN UINT64 Length\r
1173 );\r
1174\r
1175/**\r
1176 Initialize the shadow stack related data structure.\r
1177\r
1178 @param CpuIndex The index of CPU.\r
1179 @param ShadowStack The bottom of the shadow stack for this CPU.\r
1180**/\r
1181VOID\r
1182InitShadowStack (\r
1183 IN UINTN CpuIndex,\r
1184 IN VOID *ShadowStack\r
1185 );\r
1186\r
827330cc
JW
1187/**\r
1188 This function set given attributes of the memory region specified by\r
1189 BaseAddress and Length.\r
1190\r
1191 @param This The EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL instance.\r
1192 @param BaseAddress The physical address that is the start address of\r
1193 a memory region.\r
1194 @param Length The size in bytes of the memory region.\r
1195 @param Attributes The bit mask of attributes to set for the memory\r
1196 region.\r
1197\r
1198 @retval EFI_SUCCESS The attributes were set for the memory region.\r
1199 @retval EFI_INVALID_PARAMETER Length is zero.\r
1200 Attributes specified an illegal combination of\r
1201 attributes that cannot be set together.\r
1202 @retval EFI_UNSUPPORTED The processor does not support one or more\r
1203 bytes of the memory resource range specified\r
1204 by BaseAddress and Length.\r
aae02dcc 1205 The bit mask of attributes is not supported for\r
827330cc
JW
1206 the memory resource range specified by\r
1207 BaseAddress and Length.\r
1208\r
1209**/\r
1210EFI_STATUS\r
1211EFIAPI\r
1212EdkiiSmmSetMemoryAttributes (\r
1213 IN EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL *This,\r
1214 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
1215 IN UINT64 Length,\r
1216 IN UINT64 Attributes\r
1217 );\r
1218\r
1219/**\r
1220 This function clears given attributes of the memory region specified by\r
1221 BaseAddress and Length.\r
1222\r
1223 @param This The EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL instance.\r
1224 @param BaseAddress The physical address that is the start address of\r
1225 a memory region.\r
1226 @param Length The size in bytes of the memory region.\r
aae02dcc 1227 @param Attributes The bit mask of attributes to clear for the memory\r
827330cc
JW
1228 region.\r
1229\r
aae02dcc 1230 @retval EFI_SUCCESS The attributes were cleared for the memory region.\r
827330cc
JW
1231 @retval EFI_INVALID_PARAMETER Length is zero.\r
1232 Attributes specified an illegal combination of\r
aae02dcc 1233 attributes that cannot be cleared together.\r
827330cc
JW
1234 @retval EFI_UNSUPPORTED The processor does not support one or more\r
1235 bytes of the memory resource range specified\r
1236 by BaseAddress and Length.\r
aae02dcc 1237 The bit mask of attributes is not supported for\r
827330cc
JW
1238 the memory resource range specified by\r
1239 BaseAddress and Length.\r
1240\r
1241**/\r
1242EFI_STATUS\r
1243EFIAPI\r
1244EdkiiSmmClearMemoryAttributes (\r
1245 IN EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL *This,\r
1246 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
1247 IN UINT64 Length,\r
1248 IN UINT64 Attributes\r
1249 );\r
1250\r
1251/**\r
aae02dcc 1252 This function retrieves the attributes of the memory region specified by\r
827330cc
JW
1253 BaseAddress and Length. If different attributes are got from different part\r
1254 of the memory region, EFI_NO_MAPPING will be returned.\r
1255\r
1256 @param This The EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL instance.\r
1257 @param BaseAddress The physical address that is the start address of\r
1258 a memory region.\r
1259 @param Length The size in bytes of the memory region.\r
1260 @param Attributes Pointer to attributes returned.\r
1261\r
1262 @retval EFI_SUCCESS The attributes got for the memory region.\r
1263 @retval EFI_INVALID_PARAMETER Length is zero.\r
1264 Attributes is NULL.\r
1265 @retval EFI_NO_MAPPING Attributes are not consistent cross the memory\r
1266 region.\r
1267 @retval EFI_UNSUPPORTED The processor does not support one or more\r
1268 bytes of the memory resource range specified\r
1269 by BaseAddress and Length.\r
827330cc
JW
1270\r
1271**/\r
1272EFI_STATUS\r
1273EFIAPI\r
1274EdkiiSmmGetMemoryAttributes (\r
1275 IN EDKII_SMM_MEMORY_ATTRIBUTE_PROTOCOL *This,\r
1276 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
1277 IN UINT64 Length,\r
1278 IN UINT64 *Attributes\r
1279 );\r
1280\r
e21e355e
LG
1281/**\r
1282 This function fixes up the address of the global variable or function\r
ef62da4f 1283 referred in SmmInit assembly files to be the absolute address.\r
e21e355e
LG
1284**/\r
1285VOID\r
1286EFIAPI\r
1287PiSmmCpuSmmInitFixupAddress (\r
1288 );\r
1289\r
1290/**\r
1291 This function fixes up the address of the global variable or function\r
ef62da4f 1292 referred in SmiEntry assembly files to be the absolute address.\r
e21e355e
LG
1293**/\r
1294VOID\r
1295EFIAPI\r
1296PiSmmCpuSmiEntryFixupAddress (\r
1297 );\r
1298\r
37f9fea5
VN
1299/**\r
1300 This function reads CR2 register when on-demand paging is enabled\r
1301 for 64 bit and no action for 32 bit.\r
1302\r
1303 @param[out] *Cr2 Pointer to variable to hold CR2 register value.\r
1304**/\r
1305VOID\r
1306SaveCr2 (\r
1307 OUT UINTN *Cr2\r
1308 );\r
1309\r
1310/**\r
1311 This function writes into CR2 register when on-demand paging is enabled\r
1312 for 64 bit and no action for 32 bit.\r
1313\r
1314 @param[in] Cr2 Value to write into CR2 register.\r
1315**/\r
1316VOID\r
1317RestoreCr2 (\r
1318 IN UINTN Cr2\r
1319 );\r
1320\r
51dd408a
ED
1321/**\r
1322 Schedule a procedure to run on the specified CPU.\r
1323\r
1324 @param[in] Procedure The address of the procedure to run\r
1325 @param[in] CpuIndex Target CPU Index\r
1326 @param[in,out] ProcArguments The parameter to pass to the procedure\r
1327 @param[in,out] Token This is an optional parameter that allows the caller to execute the\r
1328 procedure in a blocking or non-blocking fashion. If it is NULL the\r
1329 call is blocking, and the call will not return until the AP has\r
1330 completed the procedure. If the token is not NULL, the call will\r
1331 return immediately. The caller can check whether the procedure has\r
1332 completed with CheckOnProcedure or WaitForProcedure.\r
1333 @param[in] TimeoutInMicroseconds Indicates the time limit in microseconds for the APs to finish\r
1334 execution of Procedure, either for blocking or non-blocking mode.\r
1335 Zero means infinity. If the timeout expires before all APs return\r
1336 from Procedure, then Procedure on the failed APs is terminated. If\r
1337 the timeout expires in blocking mode, the call returns EFI_TIMEOUT.\r
1338 If the timeout expires in non-blocking mode, the timeout determined\r
1339 can be through CheckOnProcedure or WaitForProcedure.\r
1340 Note that timeout support is optional. Whether an implementation\r
1341 supports this feature can be determined via the Attributes data\r
1342 member.\r
073f2ced 1343 @param[in,out] CpuStatus This optional pointer may be used to get the status code returned\r
51dd408a
ED
1344 by Procedure when it completes execution on the target AP, or with\r
1345 EFI_TIMEOUT if the Procedure fails to complete within the optional\r
1346 timeout. The implementation will update this variable with\r
1347 EFI_NOT_READY prior to starting Procedure on the target AP.\r
1348\r
1349 @retval EFI_INVALID_PARAMETER CpuNumber not valid\r
1350 @retval EFI_INVALID_PARAMETER CpuNumber specifying BSP\r
1351 @retval EFI_INVALID_PARAMETER The AP specified by CpuNumber did not enter SMM\r
1352 @retval EFI_INVALID_PARAMETER The AP specified by CpuNumber is busy\r
1353 @retval EFI_SUCCESS The procedure has been successfully scheduled\r
1354\r
1355**/\r
1356EFI_STATUS\r
1357InternalSmmStartupThisAp (\r
1358 IN EFI_AP_PROCEDURE2 Procedure,\r
1359 IN UINTN CpuIndex,\r
1360 IN OUT VOID *ProcArguments OPTIONAL,\r
5ed4c46f 1361 IN OUT MM_COMPLETION *Token,\r
51dd408a
ED
1362 IN UINTN TimeoutInMicroseconds,\r
1363 IN OUT EFI_STATUS *CpuStatus\r
1364 );\r
1365\r
1366/**\r
1367 Checks whether the input token is the current used token.\r
1368\r
1369 @param[in] Token This parameter describes the token that was passed into DispatchProcedure or\r
1370 BroadcastProcedure.\r
1371\r
1372 @retval TRUE The input token is the current used token.\r
1373 @retval FALSE The input token is not the current used token.\r
1374**/\r
1375BOOLEAN\r
1376IsTokenInUse (\r
1377 IN SPIN_LOCK *Token\r
1378 );\r
1379\r
1380/**\r
1381 Checks status of specified AP.\r
1382\r
1383 This function checks whether the specified AP has finished the task assigned\r
1384 by StartupThisAP(), and whether timeout expires.\r
1385\r
1386 @param[in] Token This parameter describes the token that was passed into DispatchProcedure or\r
1387 BroadcastProcedure.\r
1388\r
1389 @retval EFI_SUCCESS Specified AP has finished task assigned by StartupThisAPs().\r
1390 @retval EFI_NOT_READY Specified AP has not finished task and timeout has not expired.\r
1391**/\r
1392EFI_STATUS\r
1393IsApReady (\r
1394 IN SPIN_LOCK *Token\r
1395 );\r
1396\r
1397/**\r
1398 Check whether it is an present AP.\r
1399\r
1400 @param CpuIndex The AP index which calls this function.\r
1401\r
1402 @retval TRUE It's a present AP.\r
1403 @retval TRUE This is not an AP or it is not present.\r
1404\r
1405**/\r
1406BOOLEAN\r
1407IsPresentAp (\r
1408 IN UINTN CpuIndex\r
1409 );\r
1410\r
1411/**\r
1412 Worker function to execute a caller provided function on all enabled APs.\r
1413\r
1414 @param[in] Procedure A pointer to the function to be run on\r
1415 enabled APs of the system.\r
1416 @param[in] TimeoutInMicroseconds Indicates the time limit in microseconds for\r
1417 APs to return from Procedure, either for\r
1418 blocking or non-blocking mode.\r
5ed4c46f 1419 @param[in,out] ProcedureArguments The parameter passed into Procedure for\r
51dd408a
ED
1420 all APs.\r
1421 @param[in,out] Token This is an optional parameter that allows the caller to execute the\r
1422 procedure in a blocking or non-blocking fashion. If it is NULL the\r
1423 call is blocking, and the call will not return until the AP has\r
1424 completed the procedure. If the token is not NULL, the call will\r
1425 return immediately. The caller can check whether the procedure has\r
1426 completed with CheckOnProcedure or WaitForProcedure.\r
1427 @param[in,out] CPUStatus This optional pointer may be used to get the status code returned\r
1428 by Procedure when it completes execution on the target AP, or with\r
1429 EFI_TIMEOUT if the Procedure fails to complete within the optional\r
1430 timeout. The implementation will update this variable with\r
1431 EFI_NOT_READY prior to starting Procedure on the target AP.\r
1432\r
1433 @retval EFI_SUCCESS In blocking mode, all APs have finished before\r
1434 the timeout expired.\r
1435 @retval EFI_SUCCESS In non-blocking mode, function has been dispatched\r
1436 to all enabled APs.\r
1437 @retval others Failed to Startup all APs.\r
1438\r
1439**/\r
1440EFI_STATUS\r
1441InternalSmmStartupAllAPs (\r
1442 IN EFI_AP_PROCEDURE2 Procedure,\r
1443 IN UINTN TimeoutInMicroseconds,\r
1444 IN OUT VOID *ProcedureArguments OPTIONAL,\r
1445 IN OUT MM_COMPLETION *Token,\r
1446 IN OUT EFI_STATUS *CPUStatus\r
1447 );\r
1448\r
1449/**\r
1450\r
1451 Register the SMM Foundation entry point.\r
1452\r
1453 @param[in] Procedure A pointer to the code stream to be run on the designated target AP\r
1454 of the system. Type EFI_AP_PROCEDURE is defined below in Volume 2\r
1455 with the related definitions of\r
1456 EFI_MP_SERVICES_PROTOCOL.StartupAllAPs.\r
1457 If caller may pass a value of NULL to deregister any existing\r
1458 startup procedure.\r
1459 @param[in,out] ProcedureArguments Allows the caller to pass a list of parameters to the code that is\r
1460 run by the AP. It is an optional common mailbox between APs and\r
1461 the caller to share information\r
1462\r
1463 @retval EFI_SUCCESS The Procedure has been set successfully.\r
1464 @retval EFI_INVALID_PARAMETER The Procedure is NULL but ProcedureArguments not NULL.\r
1465\r
1466**/\r
1467EFI_STATUS\r
1468RegisterStartupProcedure (\r
073f2ced
SZ
1469 IN EFI_AP_PROCEDURE Procedure,\r
1470 IN OUT VOID *ProcedureArguments OPTIONAL\r
51dd408a
ED
1471 );\r
1472\r
1473/**\r
1474 Allocate buffer for SpinLock and Wrapper function buffer.\r
1475\r
1476**/\r
1477VOID\r
1478InitializeDataForMmMp (\r
1479 VOID\r
1480 );\r
1481\r
79186ddc
RN
1482/**\r
1483 Return whether access to non-SMRAM is restricted.\r
1484\r
1485 @retval TRUE Access to non-SMRAM is restricted.\r
1486 @retval FALSE Access to non-SMRAM is not restricted.\r
9c33f16f 1487**/\r
79186ddc
RN
1488BOOLEAN\r
1489IsRestrictedMemoryAccess (\r
1490 VOID\r
1491 );\r
1492\r
529a5a86 1493#endif\r