]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/Library/MpInitLib/MpLib.h
UefiCpuPkg/PiSmmCpuDxeSmm: improve the coding style
[mirror_edk2.git] / UefiCpuPkg / Library / MpInitLib / MpLib.h
CommitLineData
3e8ad6bd
JF
1/** @file\r
2 Common header file for MP Initialize Library.\r
3\r
ee0c39fa 4 Copyright (c) 2016 - 2019, Intel Corporation. All rights reserved.<BR>\r
0acd8697 5 SPDX-License-Identifier: BSD-2-Clause-Patent\r
3e8ad6bd
JF
6\r
7**/\r
8\r
9#ifndef _MP_LIB_H_\r
10#define _MP_LIB_H_\r
11\r
12#include <PiPei.h>\r
13\r
01acb06c
RN
14#include <Register/Intel/Cpuid.h>\r
15#include <Register/Intel/Msr.h>\r
16#include <Register/Intel/LocalApic.h>\r
17#include <Register/Intel/Microcode.h>\r
3e8ad6bd
JF
18\r
19#include <Library/MpInitLib.h>\r
20#include <Library/BaseLib.h>\r
21#include <Library/BaseMemoryLib.h>\r
22#include <Library/MemoryAllocationLib.h>\r
23#include <Library/DebugLib.h>\r
24#include <Library/LocalApicLib.h>\r
25#include <Library/CpuLib.h>\r
26#include <Library/UefiCpuLib.h>\r
27#include <Library/TimerLib.h>\r
28#include <Library/SynchronizationLib.h>\r
29#include <Library/MtrrLib.h>\r
30#include <Library/HobLib.h>\r
31\r
b8b04307
JF
32#define WAKEUP_AP_SIGNAL SIGNATURE_32 ('S', 'T', 'A', 'P')\r
33\r
93ca4c0f
JF
34#define CPU_INIT_MP_LIB_HOB_GUID \\r
35 { \\r
36 0x58eb6a19, 0x3699, 0x4c68, { 0xa8, 0x36, 0xda, 0xcd, 0x8e, 0xdc, 0xad, 0x4a } \\r
37 }\r
38\r
41be0da5
JF
39//\r
40// The MP data for switch BSP\r
41//\r
42#define CPU_SWITCH_STATE_IDLE 0\r
43#define CPU_SWITCH_STATE_STORED 1\r
44#define CPU_SWITCH_STATE_LOADED 2\r
45\r
d786a172
HW
46//\r
47// Default maximum number of entries to store the microcode patches information\r
48//\r
49#define DEFAULT_MAX_MICROCODE_PATCH_NUM 8\r
50\r
51//\r
52// Data structure for microcode patch information\r
53//\r
54typedef struct {\r
55 UINTN Address;\r
56 UINTN Size;\r
57 UINTN AlignedSize;\r
58} MICROCODE_PATCH_INFO;\r
59\r
41be0da5
JF
60//\r
61// CPU exchange information for switch BSP\r
62//\r
63typedef struct {\r
64 UINT8 State; // offset 0\r
65 UINTN StackPointer; // offset 4 / 8\r
66 IA32_DESCRIPTOR Gdtr; // offset 8 / 16\r
67 IA32_DESCRIPTOR Idtr; // offset 14 / 26\r
68} CPU_EXCHANGE_ROLE_INFO;\r
69\r
9ebcf0f4
JF
70//\r
71// AP loop state when APs are in idle state\r
72// It's value is the same with PcdCpuApLoopMode\r
73//\r
74typedef enum {\r
75 ApInHltLoop = 1,\r
76 ApInMwaitLoop = 2,\r
77 ApInRunLoop = 3\r
78} AP_LOOP_MODE;\r
79\r
e59f8f6b
JF
80//\r
81// AP initialization state during APs wakeup\r
82//\r
83typedef enum {\r
84 ApInitConfig = 1,\r
85 ApInitReconfig = 2,\r
86 ApInitDone = 3\r
87} AP_INIT_STATE;\r
88\r
03a1a925
JF
89//\r
90// AP state\r
91//\r
2a5997f8
ED
92// The state transitions for an AP when it process a procedure are:\r
93// Idle ----> Ready ----> Busy ----> Idle\r
94// [BSP] [AP] [AP]\r
95//\r
03a1a925
JF
96typedef enum {\r
97 CpuStateIdle,\r
98 CpuStateReady,\r
99 CpuStateBusy,\r
e048ce88 100 CpuStateFinished,\r
03a1a925
JF
101 CpuStateDisabled\r
102} CPU_STATE;\r
103\r
68cb9330
JF
104//\r
105// CPU volatile registers around INIT-SIPI-SIPI\r
106//\r
107typedef struct {\r
108 UINTN Cr0;\r
109 UINTN Cr3;\r
110 UINTN Cr4;\r
111 UINTN Dr0;\r
112 UINTN Dr1;\r
113 UINTN Dr2;\r
114 UINTN Dr3;\r
115 UINTN Dr6;\r
116 UINTN Dr7;\r
e9415e48
JW
117 IA32_DESCRIPTOR Gdtr;\r
118 IA32_DESCRIPTOR Idtr;\r
119 UINT16 Tr;\r
68cb9330
JF
120} CPU_VOLATILE_REGISTERS;\r
121\r
e59f8f6b
JF
122//\r
123// AP related data\r
124//\r
125typedef struct {\r
126 SPIN_LOCK ApLock;\r
127 volatile UINT32 *StartupApSignal;\r
128 volatile UINTN ApFunction;\r
129 volatile UINTN ApFunctionArgument;\r
e59f8f6b 130 BOOLEAN CpuHealthy;\r
03a1a925 131 volatile CPU_STATE State;\r
68cb9330 132 CPU_VOLATILE_REGISTERS VolatileRegisters;\r
e59f8f6b
JF
133 BOOLEAN Waiting;\r
134 BOOLEAN *Finished;\r
135 UINT64 ExpectedTime;\r
136 UINT64 CurrentTime;\r
137 UINT64 TotalTime;\r
138 EFI_EVENT WaitEvent;\r
999463c8
HW
139 UINT32 ProcessorSignature;\r
140 UINT8 PlatformId;\r
e1ed5573 141 UINT64 MicrocodeEntryAddr;\r
e59f8f6b
JF
142} CPU_AP_DATA;\r
143\r
144//\r
145// Basic CPU information saved in Guided HOB.\r
146// Because the contents will be shard between PEI and DXE,\r
147// we need to make sure the each fields offset same in different\r
148// architecture.\r
149//\r
dd3fa0cd 150#pragma pack (1)\r
e59f8f6b
JF
151typedef struct {\r
152 UINT32 InitialApicId;\r
153 UINT32 ApicId;\r
154 UINT32 Health;\r
dd3fa0cd 155 UINT64 ApTopOfStack;\r
e59f8f6b 156} CPU_INFO_IN_HOB;\r
dd3fa0cd 157#pragma pack ()\r
e59f8f6b 158\r
f7f85d83
JF
159//\r
160// AP reset code information including code address and size,\r
161// this structure will be shared be C code and assembly code.\r
162// It is natural aligned by design.\r
163//\r
164typedef struct {\r
165 UINT8 *RendezvousFunnelAddress;\r
166 UINTN ModeEntryOffset;\r
167 UINTN RendezvousFunnelSize;\r
168 UINT8 *RelocateApLoopFuncAddress;\r
169 UINTN RelocateApLoopFuncSize;\r
f32bfe6d 170 UINTN ModeTransitionOffset;\r
f7f85d83 171} MP_ASSEMBLY_ADDRESS_MAP;\r
3e8ad6bd 172\r
e59f8f6b
JF
173typedef struct _CPU_MP_DATA CPU_MP_DATA;\r
174\r
d94e5f67
JF
175#pragma pack(1)\r
176\r
177//\r
178// MP CPU exchange information for AP reset code\r
179// This structure is required to be packed because fixed field offsets\r
180// into this structure are used in assembly code in this module\r
181//\r
182typedef struct {\r
183 UINTN Lock;\r
184 UINTN StackStart;\r
185 UINTN StackSize;\r
186 UINTN CFunction;\r
187 IA32_DESCRIPTOR GdtrProfile;\r
188 IA32_DESCRIPTOR IdtrProfile;\r
189 UINTN BufferStart;\r
190 UINTN ModeOffset;\r
37676b9f 191 UINTN ApIndex;\r
d94e5f67
JF
192 UINTN CodeSegment;\r
193 UINTN DataSegment;\r
5c66d125 194 UINTN EnableExecuteDisable;\r
d94e5f67 195 UINTN Cr3;\r
46d4b885
JF
196 UINTN InitFlag;\r
197 CPU_INFO_IN_HOB *CpuInfo;\r
0594ec41 198 UINTN NumApsExecuting;\r
e59f8f6b 199 CPU_MP_DATA *CpuMpData;\r
3b2928b4 200 UINTN InitializeFloatingPointUnitsAddress;\r
f32bfe6d
JW
201 UINT32 ModeTransitionMemory;\r
202 UINT16 ModeTransitionSegment;\r
203 UINT32 ModeHighMemory;\r
204 UINT16 ModeHighSegment;\r
09f69a87
RN
205 //\r
206 // Enable5LevelPaging indicates whether 5-level paging is enabled in long mode.\r
207 //\r
208 BOOLEAN Enable5LevelPaging;\r
d94e5f67
JF
209} MP_CPU_EXCHANGE_INFO;\r
210\r
211#pragma pack()\r
e59f8f6b
JF
212\r
213//\r
214// CPU MP Data save in memory\r
215//\r
216struct _CPU_MP_DATA {\r
217 UINT64 CpuInfoInHob;\r
218 UINT32 CpuCount;\r
219 UINT32 BspNumber;\r
88bd0661
HW
220 UINT64 MicrocodePatchAddress;\r
221 UINT64 MicrocodePatchRegionSize;\r
e59f8f6b
JF
222 //\r
223 // The above fields data will be passed from PEI to DXE\r
224 // Please make sure the fields offset same in the different\r
225 // architecture.\r
226 //\r
227 SPIN_LOCK MpLock;\r
228 UINTN Buffer;\r
229 UINTN CpuApStackSize;\r
230 MP_ASSEMBLY_ADDRESS_MAP AddressMap;\r
231 UINTN WakeupBuffer;\r
66833b2a 232 UINTN WakeupBufferHigh;\r
e59f8f6b
JF
233 UINTN BackupBuffer;\r
234 UINTN BackupBufferSize;\r
e59f8f6b 235\r
e59f8f6b 236 volatile UINT32 FinishedCount;\r
2da3e96c 237 UINT32 RunningCount;\r
e59f8f6b
JF
238 BOOLEAN SingleThread;\r
239 EFI_AP_PROCEDURE Procedure;\r
240 VOID *ProcArguments;\r
241 BOOLEAN *Finished;\r
242 UINT64 ExpectedTime;\r
243 UINT64 CurrentTime;\r
244 UINT64 TotalTime;\r
245 EFI_EVENT WaitEvent;\r
246 UINTN **FailedCpuList;\r
247\r
248 AP_INIT_STATE InitFlag;\r
41be0da5 249 BOOLEAN SwitchBspFlag;\r
b3775af2 250 UINTN NewBspNumber;\r
41be0da5
JF
251 CPU_EXCHANGE_ROLE_INFO BSPInfo;\r
252 CPU_EXCHANGE_ROLE_INFO APInfo;\r
e59f8f6b
JF
253 MTRR_SETTINGS MtrrTable;\r
254 UINT8 ApLoopMode;\r
255 UINT8 ApTargetCState;\r
256 UINT16 PmCodeSegment;\r
257 CPU_AP_DATA *CpuData;\r
258 volatile MP_CPU_EXCHANGE_INFO *MpCpuExchangeInfo;\r
ffab2442
JF
259\r
260 UINT32 CurrentTimerCount;\r
261 UINTN DivideValue;\r
262 UINT8 Vector;\r
263 BOOLEAN PeriodicMode;\r
264 BOOLEAN TimerInterruptState;\r
2a089134 265\r
58942277
ED
266 //\r
267 // Whether need to use Init-Sipi-Sipi to wake up the APs.\r
268 // Two cases need to set this value to TRUE. One is in HLT\r
269 // loop mode, the other is resume from S3 which loop mode\r
e23d9c3e 270 // will be hardcode change to HLT mode by PiSmmCpuDxeSmm\r
58942277
ED
271 // driver.\r
272 //\r
273 BOOLEAN WakeUpByInitSipiSipi;\r
e59f8f6b 274};\r
93ca4c0f
JF
275\r
276extern EFI_GUID mCpuInitMpLibHobGuid;\r
277\r
76157021
JF
278/**\r
279 Assembly code to place AP into safe loop mode.\r
280\r
281 Place AP into targeted C-State if MONITOR is supported, otherwise\r
282 place AP into hlt state.\r
283 Place AP in protected mode if the current is long mode. Due to AP maybe\r
284 wakeup by some hardware event. It could avoid accessing page table that\r
285 may not available during booting to OS.\r
286\r
287 @param[in] MwaitSupport TRUE indicates MONITOR is supported.\r
288 FALSE indicates MONITOR is not supported.\r
289 @param[in] ApTargetCState Target C-State value.\r
290 @param[in] PmCodeSegment Protected mode code segment value.\r
291**/\r
292typedef\r
293VOID\r
294(EFIAPI * ASM_RELOCATE_AP_LOOP) (\r
295 IN BOOLEAN MwaitSupport,\r
296 IN UINTN ApTargetCState,\r
bf2786dc 297 IN UINTN PmCodeSegment,\r
9f91cb01
JF
298 IN UINTN TopOfApStack,\r
299 IN UINTN NumberToFinish\r
76157021 300 );\r
f7f85d83
JF
301\r
302/**\r
303 Assembly code to get starting address and size of the rendezvous entry for APs.\r
304 Information for fixing a jump instruction in the code is also returned.\r
305\r
306 @param[out] AddressMap Output buffer for address map information.\r
307**/\r
308VOID\r
309EFIAPI\r
310AsmGetAddressMap (\r
311 OUT MP_ASSEMBLY_ADDRESS_MAP *AddressMap\r
312 );\r
313\r
41be0da5
JF
314/**\r
315 This function is called by both the BSP and the AP which is to become the BSP to\r
316 Exchange execution context including stack between them. After return from this\r
317 function, the BSP becomes AP and the AP becomes the BSP.\r
318\r
319 @param[in] MyInfo Pointer to buffer holding the exchanging information for the executing processor.\r
320 @param[in] OthersInfo Pointer to buffer holding the exchanging information for the peer.\r
321\r
322**/\r
323VOID\r
324EFIAPI\r
325AsmExchangeRole (\r
326 IN CPU_EXCHANGE_ROLE_INFO *MyInfo,\r
327 IN CPU_EXCHANGE_ROLE_INFO *OthersInfo\r
328 );\r
329\r
93ca4c0f
JF
330/**\r
331 Get the pointer to CPU MP Data structure.\r
332\r
333 @return The pointer to CPU MP Data structure.\r
334**/\r
335CPU_MP_DATA *\r
336GetCpuMpData (\r
337 VOID\r
338 );\r
339\r
340/**\r
341 Save the pointer to CPU MP Data structure.\r
342\r
343 @param[in] CpuMpData The pointer to CPU MP Data structure will be saved.\r
344**/\r
345VOID\r
346SaveCpuMpData (\r
347 IN CPU_MP_DATA *CpuMpData\r
348 );\r
349\r
ed66e0e3
JF
350\r
351/**\r
a6b3d753 352 Get available system memory below 1MB by specified size.\r
ed66e0e3 353\r
a6b3d753
SZ
354 @param[in] WakeupBufferSize Wakeup buffer size required\r
355\r
356 @retval other Return wakeup buffer address below 1MB.\r
357 @retval -1 Cannot find free memory below 1MB.\r
ed66e0e3 358**/\r
a6b3d753
SZ
359UINTN\r
360GetWakeupBuffer (\r
361 IN UINTN WakeupBufferSize\r
ed66e0e3
JF
362 );\r
363\r
f32bfe6d
JW
364/**\r
365 Get available EfiBootServicesCode memory below 4GB by specified size.\r
366\r
367 This buffer is required to safely transfer AP from real address mode to\r
368 protected mode or long mode, due to the fact that the buffer returned by\r
369 GetWakeupBuffer() may be marked as non-executable.\r
370\r
371 @param[in] BufferSize Wakeup transition buffer size.\r
372\r
373 @retval other Return wakeup transition buffer address below 4GB.\r
374 @retval 0 Cannot find free memory below 4GB.\r
375**/\r
376UINTN\r
377GetModeTransitionBuffer (\r
378 IN UINTN BufferSize\r
379 );\r
380\r
96f5920d
JF
381/**\r
382 This function will be called by BSP to wakeup AP.\r
383\r
384 @param[in] CpuMpData Pointer to CPU MP Data\r
385 @param[in] Broadcast TRUE: Send broadcast IPI to all APs\r
386 FALSE: Send IPI to AP by ApicId\r
387 @param[in] ProcessorNumber The handle number of specified processor\r
388 @param[in] Procedure The function to be invoked by AP\r
389 @param[in] ProcedureArgument The argument to be passed into AP function\r
cf4e79e4 390 @param[in] WakeUpDisabledAps Whether need to wake up disabled APs in broadcast mode.\r
96f5920d
JF
391**/\r
392VOID\r
393WakeUpAP (\r
394 IN CPU_MP_DATA *CpuMpData,\r
395 IN BOOLEAN Broadcast,\r
396 IN UINTN ProcessorNumber,\r
397 IN EFI_AP_PROCEDURE Procedure, OPTIONAL\r
cf4e79e4
ED
398 IN VOID *ProcedureArgument, OPTIONAL\r
399 IN BOOLEAN WakeUpDisabledAps OPTIONAL\r
96f5920d
JF
400 );\r
401\r
93ca4c0f
JF
402/**\r
403 Initialize global data for MP support.\r
404\r
405 @param[in] CpuMpData The pointer to CPU MP Data structure.\r
406**/\r
407VOID\r
408InitMpGlobalData (\r
409 IN CPU_MP_DATA *CpuMpData\r
410 );\r
411\r
86efe976
JF
412/**\r
413 Worker function to execute a caller provided function on all enabled APs.\r
414\r
415 @param[in] Procedure A pointer to the function to be run on\r
416 enabled APs of the system.\r
417 @param[in] SingleThread If TRUE, then all the enabled APs execute\r
418 the function specified by Procedure one by\r
419 one, in ascending order of processor handle\r
420 number. If FALSE, then all the enabled APs\r
421 execute the function specified by Procedure\r
422 simultaneously.\r
ee0c39fa 423 @param[in] ExcludeBsp Whether let BSP also trig this task.\r
86efe976
JF
424 @param[in] WaitEvent The event created by the caller with CreateEvent()\r
425 service.\r
367284e7 426 @param[in] TimeoutInMicroseconds Indicates the time limit in microseconds for\r
86efe976
JF
427 APs to return from Procedure, either for\r
428 blocking or non-blocking mode.\r
429 @param[in] ProcedureArgument The parameter passed into Procedure for\r
430 all APs.\r
431 @param[out] FailedCpuList If all APs finish successfully, then its\r
432 content is set to NULL. If not all APs\r
433 finish before timeout expires, then its\r
434 content is set to address of the buffer\r
435 holding handle numbers of the failed APs.\r
436\r
437 @retval EFI_SUCCESS In blocking mode, all APs have finished before\r
438 the timeout expired.\r
439 @retval EFI_SUCCESS In non-blocking mode, function has been dispatched\r
440 to all enabled APs.\r
441 @retval others Failed to Startup all APs.\r
442\r
443**/\r
444EFI_STATUS\r
ee0c39fa 445StartupAllCPUsWorker (\r
86efe976
JF
446 IN EFI_AP_PROCEDURE Procedure,\r
447 IN BOOLEAN SingleThread,\r
ee0c39fa 448 IN BOOLEAN ExcludeBsp,\r
86efe976
JF
449 IN EFI_EVENT WaitEvent OPTIONAL,\r
450 IN UINTN TimeoutInMicroseconds,\r
451 IN VOID *ProcedureArgument OPTIONAL,\r
452 OUT UINTN **FailedCpuList OPTIONAL\r
453 );\r
454\r
20ae5774
JF
455/**\r
456 Worker function to let the caller get one enabled AP to execute a caller-provided\r
457 function.\r
458\r
459 @param[in] Procedure A pointer to the function to be run on\r
460 enabled APs of the system.\r
461 @param[in] ProcessorNumber The handle number of the AP.\r
462 @param[in] WaitEvent The event created by the caller with CreateEvent()\r
463 service.\r
367284e7 464 @param[in] TimeoutInMicroseconds Indicates the time limit in microseconds for\r
20ae5774
JF
465 APs to return from Procedure, either for\r
466 blocking or non-blocking mode.\r
467 @param[in] ProcedureArgument The parameter passed into Procedure for\r
468 all APs.\r
469 @param[out] Finished If AP returns from Procedure before the\r
470 timeout expires, its content is set to TRUE.\r
471 Otherwise, the value is set to FALSE.\r
472\r
473 @retval EFI_SUCCESS In blocking mode, specified AP finished before\r
474 the timeout expires.\r
475 @retval others Failed to Startup AP.\r
476\r
477**/\r
478EFI_STATUS\r
479StartupThisAPWorker (\r
480 IN EFI_AP_PROCEDURE Procedure,\r
481 IN UINTN ProcessorNumber,\r
482 IN EFI_EVENT WaitEvent OPTIONAL,\r
483 IN UINTN TimeoutInMicroseconds,\r
484 IN VOID *ProcedureArgument OPTIONAL,\r
485 OUT BOOLEAN *Finished OPTIONAL\r
486 );\r
487\r
41be0da5
JF
488/**\r
489 Worker function to switch the requested AP to be the BSP from that point onward.\r
490\r
491 @param[in] ProcessorNumber The handle number of AP that is to become the new BSP.\r
492 @param[in] EnableOldBSP If TRUE, then the old BSP will be listed as an\r
493 enabled AP. Otherwise, it will be disabled.\r
494\r
495 @retval EFI_SUCCESS BSP successfully switched.\r
7367cc6c 496 @retval others Failed to switch BSP.\r
41be0da5
JF
497\r
498**/\r
499EFI_STATUS\r
500SwitchBSPWorker (\r
501 IN UINTN ProcessorNumber,\r
502 IN BOOLEAN EnableOldBSP\r
503 );\r
504\r
e37109bc
JF
505/**\r
506 Worker function to let the caller enable or disable an AP from this point onward.\r
507 This service may only be called from the BSP.\r
508\r
509 @param[in] ProcessorNumber The handle number of AP.\r
510 @param[in] EnableAP Specifies the new state for the processor for\r
511 enabled, FALSE for disabled.\r
512 @param[in] HealthFlag If not NULL, a pointer to a value that specifies\r
513 the new health status of the AP.\r
514\r
515 @retval EFI_SUCCESS The specified AP was enabled or disabled successfully.\r
516 @retval others Failed to Enable/Disable AP.\r
517\r
518**/\r
519EFI_STATUS\r
520EnableDisableApWorker (\r
521 IN UINTN ProcessorNumber,\r
522 IN BOOLEAN EnableAP,\r
523 IN UINT32 *HealthFlag OPTIONAL\r
524 );\r
525\r
93ca4c0f
JF
526/**\r
527 Get pointer to CPU MP Data structure from GUIDed HOB.\r
528\r
529 @return The pointer to CPU MP Data structure.\r
530**/\r
531CPU_MP_DATA *\r
532GetCpuMpDataFromGuidedHob (\r
533 VOID\r
534 );\r
08085f08
JF
535\r
536/** Checks status of specified AP.\r
537\r
538 This function checks whether the specified AP has finished the task assigned\r
539 by StartupThisAP(), and whether timeout expires.\r
540\r
541 @param[in] ProcessorNumber The handle number of processor.\r
542\r
543 @retval EFI_SUCCESS Specified AP has finished task assigned by StartupThisAPs().\r
544 @retval EFI_TIMEOUT The timeout expires.\r
545 @retval EFI_NOT_READY Specified AP has not finished task and timeout has not expired.\r
546**/\r
547EFI_STATUS\r
548CheckThisAP (\r
549 IN UINTN ProcessorNumber\r
550 );\r
551\r
552/**\r
553 Checks status of all APs.\r
554\r
555 This function checks whether all APs have finished task assigned by StartupAllAPs(),\r
556 and whether timeout expires.\r
557\r
558 @retval EFI_SUCCESS All APs have finished task assigned by StartupAllAPs().\r
559 @retval EFI_TIMEOUT The timeout expires.\r
560 @retval EFI_NOT_READY APs have not finished task and timeout has not expired.\r
561**/\r
562EFI_STATUS\r
563CheckAllAPs (\r
564 VOID\r
565 );\r
566\r
567/**\r
568 Checks APs status and updates APs status if needed.\r
569\r
570**/\r
571VOID\r
572CheckAndUpdateApsStatus (\r
573 VOID\r
574 );\r
575\r
94f63c76
JF
576/**\r
577 Detect whether specified processor can find matching microcode patch and load it.\r
578\r
e1ed5573
HW
579 @param[in] CpuMpData The pointer to CPU MP Data structure.\r
580 @param[in] ProcessorNumber The handle number of the processor. The range is\r
581 from 0 to the total number of logical processors\r
582 minus 1.\r
94f63c76
JF
583**/\r
584VOID\r
585MicrocodeDetect (\r
2a089134 586 IN CPU_MP_DATA *CpuMpData,\r
e1ed5573 587 IN UINTN ProcessorNumber\r
94f63c76
JF
588 );\r
589\r
d786a172
HW
590/**\r
591 Load the required microcode patches data into memory.\r
592\r
593 @param[in, out] CpuMpData The pointer to CPU MP Data structure.\r
594**/\r
595VOID\r
596LoadMicrocodePatch (\r
597 IN OUT CPU_MP_DATA *CpuMpData\r
598 );\r
599\r
4d3314f6
JF
600/**\r
601 Detect whether Mwait-monitor feature is supported.\r
602\r
603 @retval TRUE Mwait-monitor feature is supported.\r
604 @retval FALSE Mwait-monitor feature is not supported.\r
605**/\r
606BOOLEAN\r
607IsMwaitSupport (\r
608 VOID\r
609 );\r
610\r
43c9fdcc
JF
611/**\r
612 Enable Debug Agent to support source debugging on AP function.\r
613\r
614**/\r
615VOID\r
616EnableDebugAgent (\r
617 VOID\r
618 );\r
619\r
e1ed5573
HW
620/**\r
621 Find the current Processor number by APIC ID.\r
622\r
623 @param[in] CpuMpData Pointer to PEI CPU MP Data\r
624 @param[out] ProcessorNumber Return the pocessor number found\r
625\r
626 @retval EFI_SUCCESS ProcessorNumber is found and returned.\r
627 @retval EFI_NOT_FOUND ProcessorNumber is not found.\r
628**/\r
629EFI_STATUS\r
630GetProcessorNumber (\r
631 IN CPU_MP_DATA *CpuMpData,\r
632 OUT UINTN *ProcessorNumber\r
633 );\r
634\r
3e8ad6bd
JF
635#endif\r
636\r