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