]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/PiSmmCore/PiSmmIpl.c
Fix the SMRAM caching range base and size. The original code uses the biggest SMRAM...
[mirror_edk2.git] / MdeModulePkg / Core / PiSmmCore / PiSmmIpl.c
1 /** @file
2 SMM IPL that produces SMM related runtime protocols and load the SMM Core into SMRAM
3
4 Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials are licensed and made available
6 under the terms and conditions of the BSD License which accompanies this
7 distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include <PiDxe.h>
16
17 #include <Protocol/SmmBase2.h>
18 #include <Protocol/SmmCommunication.h>
19 #include <Protocol/SmmAccess2.h>
20 #include <Protocol/SmmConfiguration.h>
21 #include <Protocol/SmmControl2.h>
22 #include <Protocol/DxeSmmReadyToLock.h>
23 #include <Protocol/FirmwareVolume2.h>
24
25 #include <Guid/EventGroup.h>
26 #include <Guid/EventLegacyBios.h>
27 #include <Guid/LoadModuleAtFixedAddress.h>
28
29 #include <Library/BaseLib.h>
30 #include <Library/BaseMemoryLib.h>
31 #include <Library/PeCoffLib.h>
32 #include <Library/CacheMaintenanceLib.h>
33 #include <Library/MemoryAllocationLib.h>
34 #include <Library/DebugLib.h>
35 #include <Library/UefiBootServicesTableLib.h>
36 #include <Library/DxeServicesTableLib.h>
37 #include <Library/UefiLib.h>
38 #include <Library/UefiRuntimeLib.h>
39 #include <Library/PcdLib.h>
40
41 #include "PiSmmCorePrivateData.h"
42
43 //
44 // Function prototypes from produced protocols
45 //
46
47 /**
48 Indicate whether the driver is currently executing in the SMM Initialization phase.
49
50 @param This The EFI_SMM_BASE2_PROTOCOL instance.
51 @param InSmram Pointer to a Boolean which, on return, indicates that the driver is currently executing
52 inside of SMRAM (TRUE) or outside of SMRAM (FALSE).
53
54 @retval EFI_INVALID_PARAMETER InSmram was NULL.
55 @retval EFI_SUCCESS The call returned successfully.
56
57 **/
58 EFI_STATUS
59 EFIAPI
60 SmmBase2InSmram (
61 IN CONST EFI_SMM_BASE2_PROTOCOL *This,
62 OUT BOOLEAN *InSmram
63 );
64
65 /**
66 Retrieves the location of the System Management System Table (SMST).
67
68 @param This The EFI_SMM_BASE2_PROTOCOL instance.
69 @param Smst On return, points to a pointer to the System Management Service Table (SMST).
70
71 @retval EFI_INVALID_PARAMETER Smst or This was invalid.
72 @retval EFI_SUCCESS The memory was returned to the system.
73 @retval EFI_UNSUPPORTED Not in SMM.
74
75 **/
76 EFI_STATUS
77 EFIAPI
78 SmmBase2GetSmstLocation (
79 IN CONST EFI_SMM_BASE2_PROTOCOL *This,
80 OUT EFI_SMM_SYSTEM_TABLE2 **Smst
81 );
82
83 /**
84 Communicates with a registered handler.
85
86 This function provides a service to send and receive messages from a registered
87 UEFI service. This function is part of the SMM Communication Protocol that may
88 be called in physical mode prior to SetVirtualAddressMap() and in virtual mode
89 after SetVirtualAddressMap().
90
91 @param[in] This The EFI_SMM_COMMUNICATION_PROTOCOL instance.
92 @param[in, out] CommBuffer A pointer to the buffer to convey into SMRAM.
93 @param[in, out] CommSize The size of the data buffer being passed in.On exit, the size of data
94 being returned. Zero if the handler does not wish to reply with any data.
95
96 @retval EFI_SUCCESS The message was successfully posted.
97 @retval EFI_INVALID_PARAMETER The CommBuffer was NULL.
98 **/
99 EFI_STATUS
100 EFIAPI
101 SmmCommunicationCommunicate (
102 IN CONST EFI_SMM_COMMUNICATION_PROTOCOL *This,
103 IN OUT VOID *CommBuffer,
104 IN OUT UINTN *CommSize
105 );
106
107 /**
108 Event notification that is fired every time a gEfiSmmConfigurationProtocol installs.
109
110 @param Event The Event that is being processed, not used.
111 @param Context Event Context, not used.
112
113 **/
114 VOID
115 EFIAPI
116 SmmIplSmmConfigurationEventNotify (
117 IN EFI_EVENT Event,
118 IN VOID *Context
119 );
120
121 /**
122 Event notification that is fired every time a DxeSmmReadyToLock protocol is added
123 or if gEfiEventReadyToBootGuid is signalled.
124
125 @param Event The Event that is being processed, not used.
126 @param Context Event Context, not used.
127
128 **/
129 VOID
130 EFIAPI
131 SmmIplReadyToLockEventNotify (
132 IN EFI_EVENT Event,
133 IN VOID *Context
134 );
135
136 /**
137 Event notification that is fired when DxeDispatch Event Group is signaled.
138
139 @param Event The Event that is being processed, not used.
140 @param Context Event Context, not used.
141
142 **/
143 VOID
144 EFIAPI
145 SmmIplGuidedEventNotify (
146 IN EFI_EVENT Event,
147 IN VOID *Context
148 );
149
150 /**
151 Notification function of EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE.
152
153 This is a notification function registered on EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.
154 It convers pointer to new virtual address.
155
156 @param Event Event whose notification function is being invoked.
157 @param Context Pointer to the notification function's context.
158
159 **/
160 VOID
161 EFIAPI
162 SmmIplSetVirtualAddressNotify (
163 IN EFI_EVENT Event,
164 IN VOID *Context
165 );
166
167 //
168 // Data structure used to declare a table of protocol notifications and event
169 // notifications required by the SMM IPL
170 //
171 typedef struct {
172 BOOLEAN Protocol;
173 BOOLEAN CloseOnLock;
174 EFI_GUID *Guid;
175 EFI_EVENT_NOTIFY NotifyFunction;
176 VOID *NotifyContext;
177 EFI_EVENT Event;
178 } SMM_IPL_EVENT_NOTIFICATION;
179
180 //
181 // Handle to install the SMM Base2 Protocol and the SMM Communication Protocol
182 //
183 EFI_HANDLE mSmmIplHandle = NULL;
184
185 //
186 // SMM Base 2 Protocol instance
187 //
188 EFI_SMM_BASE2_PROTOCOL mSmmBase2 = {
189 SmmBase2InSmram,
190 SmmBase2GetSmstLocation
191 };
192
193 //
194 // SMM Communication Protocol instance
195 //
196 EFI_SMM_COMMUNICATION_PROTOCOL mSmmCommunication = {
197 SmmCommunicationCommunicate
198 };
199
200 //
201 // SMM Core Private Data structure that contains the data shared between
202 // the SMM IPL and the SMM Core.
203 //
204 SMM_CORE_PRIVATE_DATA mSmmCorePrivateData = {
205 SMM_CORE_PRIVATE_DATA_SIGNATURE, // Signature
206 NULL, // SmmIplImageHandle
207 0, // SmramRangeCount
208 NULL, // SmramRanges
209 NULL, // SmmEntryPoint
210 FALSE, // SmmEntryPointRegistered
211 FALSE, // InSmm
212 NULL, // Smst
213 0, // BufferSize
214 NULL, // CommunicationBuffer
215 EFI_SUCCESS // ReturnStatus
216 };
217
218 //
219 // Global pointer used to access mSmmCorePrivateData from outside and inside SMM
220 //
221 SMM_CORE_PRIVATE_DATA *gSmmCorePrivate = &mSmmCorePrivateData;
222
223 //
224 // SMM IPL global variables
225 //
226 EFI_SMM_CONTROL2_PROTOCOL *mSmmControl2;
227 EFI_SMM_ACCESS2_PROTOCOL *mSmmAccess;
228 EFI_SMRAM_DESCRIPTOR *mCurrentSmramRange;
229 BOOLEAN mSmmLocked = FALSE;
230 EFI_PHYSICAL_ADDRESS mSmramCacheBase;
231 UINT64 mSmramCacheSize;
232
233 //
234 // Table of Protocol notification and GUIDed Event notifications that the SMM IPL requires
235 //
236 SMM_IPL_EVENT_NOTIFICATION mSmmIplEvents[] = {
237 //
238 // Declare protocol notification on the SMM Configuration protocol. When this notification is etablished,
239 // the associated event is immediately signalled, so the notification function will be executed and the
240 // SMM Configuration Protocol will be found if it is already in the handle database.
241 //
242 { TRUE, FALSE, &gEfiSmmConfigurationProtocolGuid, SmmIplSmmConfigurationEventNotify, &gEfiSmmConfigurationProtocolGuid, NULL },
243 //
244 // Declare protocl notification on DxeSmmReadyToLock protocols. When this notification is etablished,
245 // the associated event is immediately signalled, so the notification function will be executed and the
246 // DXE SMM Ready To Lock Protocol will be found if it is already in the handle database.
247 //
248 { TRUE, TRUE, &gEfiDxeSmmReadyToLockProtocolGuid, SmmIplReadyToLockEventNotify, &gEfiDxeSmmReadyToLockProtocolGuid, NULL },
249 //
250 // Declare event notification on the DXE Dispatch Event Group. This event is signaled by the DXE Core
251 // each time the DXE Core dispatcher has completed its work. When this event is signalled, the SMM Core
252 // if notified, so the SMM Core can dispatch SMM drivers.
253 //
254 { FALSE, TRUE, &gEfiEventDxeDispatchGuid, SmmIplGuidedEventNotify, &gEfiEventDxeDispatchGuid, NULL },
255 //
256 // Declare event notification on Ready To Boot Event Group. This is an extra event notification that is
257 // used to make sure SMRAM is locked before any boot options are processed.
258 //
259 { FALSE, TRUE, &gEfiEventReadyToBootGuid, SmmIplReadyToLockEventNotify, &gEfiEventReadyToBootGuid, NULL },
260 //
261 // Declare event notification on Legacy Boot Event Group. This is used to inform the SMM Core that the platform
262 // is performing a legacy boot operation, and that the UEFI environment is no longer available and the SMM Core
263 // must guarantee that it does not access any UEFI related structures outside of SMRAM.
264 //
265 { FALSE, FALSE, &gEfiEventLegacyBootGuid, SmmIplGuidedEventNotify, &gEfiEventLegacyBootGuid, NULL },
266 //
267 // Declare event notification on SetVirtualAddressMap() Event Group. This is used to convert gSmmCorePrivate
268 // and mSmmControl2 from physical addresses to virtual addresses.
269 //
270 { FALSE, FALSE, &gEfiEventVirtualAddressChangeGuid, SmmIplSetVirtualAddressNotify, NULL, NULL },
271 //
272 // Terminate the table of event notifications
273 //
274 { FALSE, FALSE, NULL, NULL, NULL, NULL }
275 };
276
277 /**
278 Find the maximum SMRAM cache range that covers the range specified by SmramRange.
279
280 This function searches and joins all adjacent ranges of SmramRange into a range to be cached.
281
282 @param SmramRange The SMRAM range to search from.
283 @param SmramCacheBase The returned cache range base.
284 @param SmramCacheSize The returned cache range size.
285
286 **/
287 VOID
288 GetSmramCacheRange (
289 IN EFI_SMRAM_DESCRIPTOR *SmramRange,
290 OUT EFI_PHYSICAL_ADDRESS *SmramCacheBase,
291 OUT UINT64 *SmramCacheSize
292 )
293 {
294 UINTN Index;
295 EFI_PHYSICAL_ADDRESS RangeCpuStart;
296 UINT64 RangePhysicalSize;
297 BOOLEAN FoundAjacentRange;
298
299 *SmramCacheBase = SmramRange->CpuStart;
300 *SmramCacheSize = SmramRange->PhysicalSize;
301
302 do {
303 FoundAjacentRange = FALSE;
304 for (Index = 0; Index < gSmmCorePrivate->SmramRangeCount; Index++) {
305 RangeCpuStart = gSmmCorePrivate->SmramRanges[Index].CpuStart;
306 RangePhysicalSize = gSmmCorePrivate->SmramRanges[Index].PhysicalSize;
307 if (RangeCpuStart < *SmramCacheBase && *SmramCacheBase == (RangeCpuStart + RangePhysicalSize)) {
308 *SmramCacheBase = RangeCpuStart;
309 *SmramCacheSize += RangePhysicalSize;
310 FoundAjacentRange = TRUE;
311 } else if ((*SmramCacheBase + *SmramCacheSize) == RangeCpuStart && RangePhysicalSize > 0) {
312 *SmramCacheSize += RangePhysicalSize;
313 FoundAjacentRange = TRUE;
314 }
315 }
316 } while (FoundAjacentRange);
317
318 }
319
320 /**
321 Indicate whether the driver is currently executing in the SMM Initialization phase.
322
323 @param This The EFI_SMM_BASE2_PROTOCOL instance.
324 @param InSmram Pointer to a Boolean which, on return, indicates that the driver is currently executing
325 inside of SMRAM (TRUE) or outside of SMRAM (FALSE).
326
327 @retval EFI_INVALID_PARAMETER InSmram was NULL.
328 @retval EFI_SUCCESS The call returned successfully.
329
330 **/
331 EFI_STATUS
332 EFIAPI
333 SmmBase2InSmram (
334 IN CONST EFI_SMM_BASE2_PROTOCOL *This,
335 OUT BOOLEAN *InSmram
336 )
337 {
338 if (InSmram == NULL) {
339 return EFI_INVALID_PARAMETER;
340 }
341
342 *InSmram = gSmmCorePrivate->InSmm;
343
344 return EFI_SUCCESS;
345 }
346
347 /**
348 Retrieves the location of the System Management System Table (SMST).
349
350 @param This The EFI_SMM_BASE2_PROTOCOL instance.
351 @param Smst On return, points to a pointer to the System Management Service Table (SMST).
352
353 @retval EFI_INVALID_PARAMETER Smst or This was invalid.
354 @retval EFI_SUCCESS The memory was returned to the system.
355 @retval EFI_UNSUPPORTED Not in SMM.
356
357 **/
358 EFI_STATUS
359 EFIAPI
360 SmmBase2GetSmstLocation (
361 IN CONST EFI_SMM_BASE2_PROTOCOL *This,
362 OUT EFI_SMM_SYSTEM_TABLE2 **Smst
363 )
364 {
365 if ((This == NULL) ||(Smst == NULL)) {
366 return EFI_INVALID_PARAMETER;
367 }
368
369 if (!gSmmCorePrivate->InSmm) {
370 return EFI_UNSUPPORTED;
371 }
372
373 *Smst = gSmmCorePrivate->Smst;
374
375 return EFI_SUCCESS;
376 }
377
378 /**
379 Communicates with a registered handler.
380
381 This function provides a service to send and receive messages from a registered
382 UEFI service. This function is part of the SMM Communication Protocol that may
383 be called in physical mode prior to SetVirtualAddressMap() and in virtual mode
384 after SetVirtualAddressMap().
385
386 @param[in] This The EFI_SMM_COMMUNICATION_PROTOCOL instance.
387 @param[in, out] CommBuffer A pointer to the buffer to convey into SMRAM.
388 @param[in, out] CommSize The size of the data buffer being passed in.On exit, the size of data
389 being returned. Zero if the handler does not wish to reply with any data.
390
391 @retval EFI_SUCCESS The message was successfully posted.
392 @retval EFI_INVALID_PARAMETER The CommBuffer was NULL.
393 **/
394 EFI_STATUS
395 EFIAPI
396 SmmCommunicationCommunicate (
397 IN CONST EFI_SMM_COMMUNICATION_PROTOCOL *This,
398 IN OUT VOID *CommBuffer,
399 IN OUT UINTN *CommSize
400 )
401 {
402 EFI_STATUS Status;
403 EFI_SMM_COMMUNICATE_HEADER *CommunicateHeader;
404 BOOLEAN OldInSmm;
405
406 //
407 // Check parameters
408 //
409 if ((CommBuffer == NULL) || (CommSize == NULL)) {
410 return EFI_INVALID_PARAMETER;
411 }
412
413 //
414 // If not already in SMM, then generate a Software SMI
415 //
416 if (!gSmmCorePrivate->InSmm && gSmmCorePrivate->SmmEntryPointRegistered) {
417 //
418 // Put arguments for Software SMI in gSmmCorePrivate
419 //
420 gSmmCorePrivate->CommunicationBuffer = CommBuffer;
421 gSmmCorePrivate->BufferSize = CommSize;
422
423 //
424 // Generate Software SMI
425 //
426 Status = mSmmControl2->Trigger (mSmmControl2, NULL, NULL, FALSE, 0);
427 if (EFI_ERROR (Status)) {
428 return EFI_UNSUPPORTED;
429 }
430
431 //
432 // Return status from software SMI
433 //
434 return gSmmCorePrivate->ReturnStatus;
435 }
436
437 //
438 // If we are in SMM, then the execution mode must be physical, which means that
439 // OS established virtual addresses can not be used. If SetVirtualAddressMap()
440 // has been called, then a direct invocation of the Software SMI is not
441 // not allowed so return EFI_INVALID_PARAMETER.
442 //
443 if (EfiGoneVirtual()) {
444 return EFI_INVALID_PARAMETER;
445 }
446
447 //
448 // Don't allow call SmiManage() directly when SMRAM is closed or locked.
449 //
450 if (!mSmmAccess->OpenState || mSmmAccess->LockState) {
451 return EFI_INVALID_PARAMETER;
452 }
453
454 //
455 // Save current InSmm state and set InSmm state to TRUE
456 //
457 OldInSmm = gSmmCorePrivate->InSmm;
458 gSmmCorePrivate->InSmm = TRUE;
459
460 //
461 // Already in SMM and before SetVirtualAddressMap(), so call SmiManage() directly.
462 //
463 CommunicateHeader = (EFI_SMM_COMMUNICATE_HEADER *)CommBuffer;
464 *CommSize -= OFFSET_OF (EFI_SMM_COMMUNICATE_HEADER, Data);
465 Status = gSmmCorePrivate->Smst->SmiManage (
466 &CommunicateHeader->HeaderGuid,
467 NULL,
468 CommunicateHeader->Data,
469 CommSize
470 );
471
472 //
473 // Update CommunicationBuffer, BufferSize and ReturnStatus
474 // Communicate service finished, reset the pointer to CommBuffer to NULL
475 //
476 *CommSize += OFFSET_OF (EFI_SMM_COMMUNICATE_HEADER, Data);
477
478 //
479 // Restore original InSmm state
480 //
481 gSmmCorePrivate->InSmm = OldInSmm;
482
483 return (Status == EFI_WARN_INTERRUPT_SOURCE_QUIESCED) ? EFI_SUCCESS : EFI_NOT_FOUND;
484 }
485
486 /**
487 Event notification that is fired when DxeDispatch Event Group is signaled.
488
489 @param Event The Event that is being processed, not used.
490 @param Context Event Context, not used.
491
492 **/
493 VOID
494 EFIAPI
495 SmmIplGuidedEventNotify (
496 IN EFI_EVENT Event,
497 IN VOID *Context
498 )
499 {
500 EFI_SMM_COMMUNICATE_HEADER CommunicateHeader;
501 UINTN Size;
502
503 //
504 // Use Guid to initialize EFI_SMM_COMMUNICATE_HEADER structure
505 //
506 CopyGuid (&CommunicateHeader.HeaderGuid, (EFI_GUID *)Context);
507 CommunicateHeader.MessageLength = 1;
508 CommunicateHeader.Data[0] = 0;
509
510 //
511 // Generate the Software SMI and return the result
512 //
513 Size = sizeof (CommunicateHeader);
514 SmmCommunicationCommunicate (&mSmmCommunication, &CommunicateHeader, &Size);
515 }
516
517 /**
518 Event notification that is fired every time a gEfiSmmConfigurationProtocol installs.
519
520 @param Event The Event that is being processed, not used.
521 @param Context Event Context, not used.
522
523 **/
524 VOID
525 EFIAPI
526 SmmIplSmmConfigurationEventNotify (
527 IN EFI_EVENT Event,
528 IN VOID *Context
529 )
530 {
531 EFI_STATUS Status;
532 EFI_SMM_CONFIGURATION_PROTOCOL *SmmConfiguration;
533
534 //
535 // Make sure this notification is for this handler
536 //
537 Status = gBS->LocateProtocol (Context, NULL, (VOID **)&SmmConfiguration);
538 if (EFI_ERROR (Status)) {
539 return;
540 }
541
542 //
543 // Register the SMM Entry Point provided by the SMM Core with the SMM COnfiguration protocol
544 //
545 Status = SmmConfiguration->RegisterSmmEntry (SmmConfiguration, gSmmCorePrivate->SmmEntryPoint);
546 ASSERT_EFI_ERROR (Status);
547
548 //
549 // Set flag to indicate that the SM< Entry Point has been registered which
550 // means that SMIs are now fully operational.
551 //
552 gSmmCorePrivate->SmmEntryPointRegistered = TRUE;
553
554 //
555 // Print debug message showing SMM Core entry point address.
556 //
557 DEBUG ((DEBUG_INFO, "SMM IPL registered SMM Entry Point address %p\n", (VOID *)(UINTN)gSmmCorePrivate->SmmEntryPoint));
558
559 //
560 // Attempt to reset SMRAM cacheability to UC
561 //
562 Status = gDS->SetMemorySpaceAttributes(
563 mSmramCacheBase,
564 mSmramCacheSize,
565 EFI_MEMORY_UC
566 );
567 if (EFI_ERROR (Status)) {
568 DEBUG ((DEBUG_WARN, "SMM IPL failed to reset SMRAM window to EFI_MEMORY_UC\n"));
569 }
570
571 //
572 // Close all SMRAM ranges to protect SMRAM
573 //
574 Status = mSmmAccess->Close (mSmmAccess);
575 ASSERT_EFI_ERROR (Status);
576
577 //
578 // Print debug message that the SMRAM window is now closed.
579 //
580 DEBUG ((DEBUG_INFO, "SMM IPL closed SMRAM window\n"));
581 }
582
583 /**
584 Event notification that is fired every time a DxeSmmReadyToLock protocol is added
585 or if gEfiEventReadyToBootGuid is signalled.
586
587 @param Event The Event that is being processed, not used.
588 @param Context Event Context, not used.
589
590 **/
591 VOID
592 EFIAPI
593 SmmIplReadyToLockEventNotify (
594 IN EFI_EVENT Event,
595 IN VOID *Context
596 )
597 {
598 EFI_STATUS Status;
599 VOID *Interface;
600 UINTN Index;
601
602 //
603 // See if we are already locked
604 //
605 if (mSmmLocked) {
606 return;
607 }
608
609 //
610 // Make sure this notification is for this handler
611 //
612 if (CompareGuid ((EFI_GUID *)Context, &gEfiDxeSmmReadyToLockProtocolGuid)) {
613 Status = gBS->LocateProtocol (&gEfiDxeSmmReadyToLockProtocolGuid, NULL, &Interface);
614 if (EFI_ERROR (Status)) {
615 return;
616 }
617 } else {
618 //
619 // If SMM is not locked yet and we got here from gEfiEventReadyToBootGuid being
620 // signalled, then gEfiDxeSmmReadyToLockProtocolGuid was not installed as expected.
621 // Print a warning on debug builds.
622 //
623 DEBUG ((DEBUG_WARN, "SMM IPL! DXE SMM Ready To Lock Protocol not installed before Ready To Boot signal\n"));
624 }
625
626 //
627 // Lock the SMRAM (Note: Locking SMRAM may not be supported on all platforms)
628 //
629 mSmmAccess->Lock (mSmmAccess);
630
631 //
632 // Close protocol and event notification events that do not apply after the
633 // DXE SMM Ready To Lock Protocol has been installed or the Ready To Boot
634 // event has been signalled.
635 //
636 for (Index = 0; mSmmIplEvents[Index].NotifyFunction != NULL; Index++) {
637 if (mSmmIplEvents[Index].CloseOnLock) {
638 gBS->CloseEvent (mSmmIplEvents[Index].Event);
639 }
640 }
641
642 //
643 // Inform SMM Core that the DxeSmmReadyToLock protocol was installed
644 //
645 SmmIplGuidedEventNotify (Event, (VOID *)&gEfiDxeSmmReadyToLockProtocolGuid);
646
647 //
648 // Print debug message that the SMRAM window is now locked.
649 //
650 DEBUG ((DEBUG_INFO, "SMM IPL locked SMRAM window\n"));
651
652 //
653 // Set flag so this operation will not be performed again
654 //
655 mSmmLocked = TRUE;
656 }
657
658 /**
659 Notification function of EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE.
660
661 This is a notification function registered on EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.
662 It convers pointer to new virtual address.
663
664 @param Event Event whose notification function is being invoked.
665 @param Context Pointer to the notification function's context.
666
667 **/
668 VOID
669 EFIAPI
670 SmmIplSetVirtualAddressNotify (
671 IN EFI_EVENT Event,
672 IN VOID *Context
673 )
674 {
675 EfiConvertPointer (0x0, (VOID **)&mSmmControl2);
676 }
677
678 /**
679 Searches all Firmware Volumes for the first file matching FileType and SectionType and returns the section data.
680
681 @param FileType FileType to search for within any of the firmware volumes in the platform.
682 @param SectionType SectionType to search for within any of the matching FileTypes in the firmware volumes in the platform.
683 @param SourceSize Return the size of the returned section data..
684
685 @retval != NULL Pointer to the allocated buffer containing the section data.
686 @retval NULL Section data was not found.
687
688 **/
689 VOID *
690 GetSectionInAnyFv (
691 IN EFI_FV_FILETYPE FileType,
692 IN EFI_SECTION_TYPE SectionType,
693 OUT UINTN *SourceSize
694 )
695 {
696 EFI_STATUS Status;
697 UINTN HandleCount;
698 EFI_HANDLE *HandleBuffer;
699 UINTN Index;
700 EFI_FIRMWARE_VOLUME2_PROTOCOL *Fv;
701 UINTN Key;
702 EFI_GUID NameGuid;
703 EFI_FV_FILE_ATTRIBUTES Attributes;
704 VOID *SourceBuffer;
705 UINT32 AuthenticationStatus;
706
707 HandleBuffer = NULL;
708 Status = gBS->LocateHandleBuffer (
709 ByProtocol,
710 &gEfiFirmwareVolume2ProtocolGuid,
711 NULL,
712 &HandleCount,
713 &HandleBuffer
714 );
715 if (EFI_ERROR (Status)) {
716 return NULL;
717 }
718
719 for (Index = 0; Index < HandleCount; Index++) {
720 Status = gBS->HandleProtocol (
721 HandleBuffer[Index],
722 &gEfiFirmwareVolume2ProtocolGuid,
723 (VOID **)&Fv
724 );
725 if (EFI_ERROR (Status)) {
726 continue;
727 }
728
729 //
730 // Use Firmware Volume 2 Protocol to search for a file of type FileType
731 //
732 Key = 0;
733 Status = Fv->GetNextFile (Fv, &Key, &FileType, &NameGuid, &Attributes, SourceSize);
734 if (EFI_ERROR (Status)) {
735 continue;
736 }
737
738 //
739 // Use Firmware Volume 2 Protocol to read a section of type SectionType
740 //
741 SourceBuffer = NULL;
742 Status = Fv->ReadSection (Fv, &NameGuid, SectionType, 0, &SourceBuffer, SourceSize, &AuthenticationStatus);
743 if (!EFI_ERROR (Status)) {
744 FreePool (HandleBuffer);
745 return SourceBuffer;
746 }
747 }
748
749 FreePool(HandleBuffer);
750
751 return NULL;
752 }
753 /**
754 Get the fixed loadding address from image header assigned by build tool. This function only be called
755 when Loading module at Fixed address feature enabled.
756
757 @param ImageContext Pointer to the image context structure that describes the PE/COFF
758 image that needs to be examined by this function.
759 @retval EFI_SUCCESS An fixed loading address is assigned to this image by build tools .
760 @retval EFI_NOT_FOUND The image has no assigned fixed loadding address.
761 **/
762 EFI_STATUS
763 GetPeCoffImageFixLoadingAssignedAddress(
764 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
765 )
766 {
767 UINTN SectionHeaderOffset;
768 EFI_STATUS Status;
769 EFI_IMAGE_SECTION_HEADER SectionHeader;
770 EFI_IMAGE_OPTIONAL_HEADER_UNION *ImgHdr;
771 EFI_PHYSICAL_ADDRESS FixLoaddingAddress;
772 UINT16 Index;
773 UINTN Size;
774 UINT16 NumberOfSections;
775 EFI_PHYSICAL_ADDRESS SmramBase;
776 UINT64 SmmCodeSize;
777 UINT64 ValueInSectionHeader;
778 //
779 // Build tool will calculate the smm code size and then patch the PcdLoadFixAddressSmmCodePageNumber
780 //
781 SmmCodeSize = EFI_PAGES_TO_SIZE (PcdGet32(PcdLoadFixAddressSmmCodePageNumber));
782
783 FixLoaddingAddress = 0;
784 Status = EFI_NOT_FOUND;
785 SmramBase = mCurrentSmramRange->CpuStart;
786 //
787 // Get PeHeader pointer
788 //
789 ImgHdr = (EFI_IMAGE_OPTIONAL_HEADER_UNION *)((CHAR8* )ImageContext->Handle + ImageContext->PeCoffHeaderOffset);
790 SectionHeaderOffset = (UINTN)(
791 ImageContext->PeCoffHeaderOffset +
792 sizeof (UINT32) +
793 sizeof (EFI_IMAGE_FILE_HEADER) +
794 ImgHdr->Pe32.FileHeader.SizeOfOptionalHeader
795 );
796 NumberOfSections = ImgHdr->Pe32.FileHeader.NumberOfSections;
797
798 //
799 // Get base address from the first section header that doesn't point to code section.
800 //
801 for (Index = 0; Index < NumberOfSections; Index++) {
802 //
803 // Read section header from file
804 //
805 Size = sizeof (EFI_IMAGE_SECTION_HEADER);
806 Status = ImageContext->ImageRead (
807 ImageContext->Handle,
808 SectionHeaderOffset,
809 &Size,
810 &SectionHeader
811 );
812 if (EFI_ERROR (Status)) {
813 return Status;
814 }
815
816 Status = EFI_NOT_FOUND;
817
818 if ((SectionHeader.Characteristics & EFI_IMAGE_SCN_CNT_CODE) == 0) {
819 //
820 // Build tool saves the offset to SMRAM base as image base in PointerToRelocations & PointerToLineNumbers fields in the
821 // first section header that doesn't point to code section in image header. And there is an assumption that when the
822 // feature is enabled, if a module is assigned a loading address by tools, PointerToRelocations & PointerToLineNumbers
823 // fields should NOT be Zero, or else, these 2 fileds should be set to Zero
824 //
825 ValueInSectionHeader = ReadUnaligned64((UINT64*)&SectionHeader.PointerToRelocations);
826 if (ValueInSectionHeader != 0) {
827 //
828 // Found first section header that doesn't point to code section in which uild tool saves the
829 // offset to SMRAM base as image base in PointerToRelocations & PointerToLineNumbers fields
830 //
831 FixLoaddingAddress = (EFI_PHYSICAL_ADDRESS)(SmramBase + (INT64)ValueInSectionHeader);
832
833 if (SmramBase + SmmCodeSize > FixLoaddingAddress && SmramBase <= FixLoaddingAddress) {
834 //
835 // The assigned address is valid. Return the specified loadding address
836 //
837 ImageContext->ImageAddress = FixLoaddingAddress;
838 Status = EFI_SUCCESS;
839 }
840 }
841 break;
842 }
843 SectionHeaderOffset += sizeof (EFI_IMAGE_SECTION_HEADER);
844 }
845 DEBUG ((EFI_D_INFO|EFI_D_LOAD, "LOADING MODULE FIXED INFO: Loading module at fixed address %x, Status = %r \n", FixLoaddingAddress, Status));
846 return Status;
847 }
848 /**
849 Load the SMM Core image into SMRAM and executes the SMM Core from SMRAM.
850
851 @param[in] SmramRange Descriptor for the range of SMRAM to reload the
852 currently executing image.
853 @param[in] Context Context to pass into SMM Core
854
855 @return EFI_STATUS
856
857 **/
858 EFI_STATUS
859 ExecuteSmmCoreFromSmram (
860 IN EFI_SMRAM_DESCRIPTOR *SmramRange,
861 IN VOID *Context
862 )
863 {
864 EFI_STATUS Status;
865 VOID *SourceBuffer;
866 UINTN SourceSize;
867 PE_COFF_LOADER_IMAGE_CONTEXT ImageContext;
868 UINTN PageCount;
869 EFI_PHYSICAL_ADDRESS DestinationBuffer;
870 EFI_IMAGE_ENTRY_POINT EntryPoint;
871
872 //
873 // Search all Firmware Volumes for a PE/COFF image in a file of type SMM_CORE
874 //
875 SourceBuffer = GetSectionInAnyFv (EFI_FV_FILETYPE_SMM_CORE, EFI_SECTION_PE32, &SourceSize);
876 if (SourceBuffer == NULL) {
877 return EFI_NOT_FOUND;
878 }
879
880 //
881 // Initilize ImageContext
882 //
883 ImageContext.Handle = SourceBuffer;
884 ImageContext.ImageRead = PeCoffLoaderImageReadFromMemory;
885
886 //
887 // Get information about the image being loaded
888 //
889 Status = PeCoffLoaderGetImageInfo (&ImageContext);
890 if (EFI_ERROR (Status)) {
891 return Status;
892 }
893 //
894 // if Loading module at Fixed Address feature is enabled, the SMM core driver will be loaded to
895 // the address assigned by build tool.
896 //
897 if (PcdGet64(PcdLoadModuleAtFixAddressEnable) != 0) {
898 //
899 // Get the fixed loading address assigned by Build tool
900 //
901 Status = GetPeCoffImageFixLoadingAssignedAddress (&ImageContext);
902 if (!EFI_ERROR (Status)) {
903 //
904 // Since the memory range to load SMM CORE will be cut out in SMM core, so no need to allocate and free this range
905 //
906 PageCount = 0;
907 } else {
908 DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED ERROR: Loading module at fixed address at address failed\n"));
909 //
910 // Allocate memory for the image being loaded from the EFI_SRAM_DESCRIPTOR
911 // specified by SmramRange
912 //
913 PageCount = (UINTN)EFI_SIZE_TO_PAGES(ImageContext.ImageSize + ImageContext.SectionAlignment);
914
915 ASSERT ((SmramRange->PhysicalSize & EFI_PAGE_MASK) == 0);
916 ASSERT (SmramRange->PhysicalSize > EFI_PAGES_TO_SIZE (PageCount));
917
918 SmramRange->PhysicalSize -= EFI_PAGES_TO_SIZE (PageCount);
919 DestinationBuffer = SmramRange->CpuStart + SmramRange->PhysicalSize;
920
921 //
922 // Align buffer on section boundry
923 //
924 ImageContext.ImageAddress = DestinationBuffer;
925 }
926 } else {
927 //
928 // Allocate memory for the image being loaded from the EFI_SRAM_DESCRIPTOR
929 // specified by SmramRange
930 //
931 PageCount = (UINTN)EFI_SIZE_TO_PAGES(ImageContext.ImageSize + ImageContext.SectionAlignment);
932
933 ASSERT ((SmramRange->PhysicalSize & EFI_PAGE_MASK) == 0);
934 ASSERT (SmramRange->PhysicalSize > EFI_PAGES_TO_SIZE (PageCount));
935
936 SmramRange->PhysicalSize -= EFI_PAGES_TO_SIZE (PageCount);
937 DestinationBuffer = SmramRange->CpuStart + SmramRange->PhysicalSize;
938
939 //
940 // Align buffer on section boundry
941 //
942 ImageContext.ImageAddress = DestinationBuffer;
943 }
944
945 ImageContext.ImageAddress += ImageContext.SectionAlignment - 1;
946 ImageContext.ImageAddress &= ~(ImageContext.SectionAlignment - 1);
947
948 //
949 // Print debug message showing SMM Core load address.
950 //
951 DEBUG ((DEBUG_INFO, "SMM IPL loading SMM Core at SMRAM address %p\n", (VOID *)(UINTN)ImageContext.ImageAddress));
952
953 //
954 // Load the image to our new buffer
955 //
956 Status = PeCoffLoaderLoadImage (&ImageContext);
957 if (!EFI_ERROR (Status)) {
958 //
959 // Relocate the image in our new buffer
960 //
961 Status = PeCoffLoaderRelocateImage (&ImageContext);
962 if (!EFI_ERROR (Status)) {
963 //
964 // Flush the instruction cache so the image data are written before we execute it
965 //
966 InvalidateInstructionCacheRange ((VOID *)(UINTN)ImageContext.ImageAddress, (UINTN)ImageContext.ImageSize);
967
968 //
969 // Print debug message showing SMM Core entry point address.
970 //
971 DEBUG ((DEBUG_INFO, "SMM IPL calling SMM Core at SMRAM address %p\n", (VOID *)(UINTN)ImageContext.EntryPoint));
972
973 //
974 // Execute image
975 //
976 EntryPoint = (EFI_IMAGE_ENTRY_POINT)(UINTN)ImageContext.EntryPoint;
977 Status = EntryPoint ((EFI_HANDLE)Context, gST);
978 }
979 }
980
981 //
982 // If the load operation, relocate operation, or the image execution return an
983 // error, then free memory allocated from the EFI_SRAM_DESCRIPTOR specified by
984 // SmramRange
985 //
986 if (EFI_ERROR (Status)) {
987 SmramRange->PhysicalSize += EFI_PAGES_TO_SIZE (PageCount);
988 }
989
990 //
991 // Always free memory allocted by GetFileBufferByFilePath ()
992 //
993 FreePool (SourceBuffer);
994
995 return Status;
996 }
997
998 /**
999 The Entry Point for SMM IPL
1000
1001 Load SMM Core into SMRAM, register SMM Core entry point for SMIs, install
1002 SMM Base 2 Protocol and SMM Communication Protocol, and register for the
1003 critical events required to coordinate between DXE and SMM environments.
1004
1005 @param ImageHandle The firmware allocated handle for the EFI image.
1006 @param SystemTable A pointer to the EFI System Table.
1007
1008 @retval EFI_SUCCESS The entry point is executed successfully.
1009 @retval Other Some error occurred when executing this entry point.
1010
1011 **/
1012 EFI_STATUS
1013 EFIAPI
1014 SmmIplEntry (
1015 IN EFI_HANDLE ImageHandle,
1016 IN EFI_SYSTEM_TABLE *SystemTable
1017 )
1018 {
1019 EFI_STATUS Status;
1020 EFI_SMM_CONFIGURATION_PROTOCOL *SmmConfiguration;
1021 UINTN Size;
1022 UINTN Index;
1023 EFI_SMM_RESERVED_SMRAM_REGION *SmramResRegion;
1024 UINT64 MaxSize;
1025 VOID *Registration;
1026 UINT64 SmmCodeSize;
1027 EFI_LOAD_FIXED_ADDRESS_CONFIGURATION_TABLE *LMFAConfigurationTable;
1028
1029 //
1030 // Fill in the image handle of the SMM IPL so the SMM Core can use this as the
1031 // ParentImageHandle field of the Load Image Protocol for all SMM Drivers loaded
1032 // by the SMM Core
1033 //
1034 mSmmCorePrivateData.SmmIplImageHandle = ImageHandle;
1035
1036 //
1037 // Get SMM Access Protocol
1038 //
1039 Status = gBS->LocateProtocol (&gEfiSmmAccess2ProtocolGuid, NULL, (VOID **)&mSmmAccess);
1040 ASSERT_EFI_ERROR (Status);
1041
1042 //
1043 // Get SMM Control2 Protocol
1044 //
1045 Status = gBS->LocateProtocol (&gEfiSmmControl2ProtocolGuid, NULL, (VOID **)&mSmmControl2);
1046 ASSERT_EFI_ERROR (Status);
1047
1048 //
1049 // Get SMM Configuration Protocol if it is present
1050 //
1051 SmmConfiguration = NULL;
1052 Status = gBS->LocateProtocol (&gEfiSmmConfigurationProtocolGuid, NULL, (VOID **) &SmmConfiguration);
1053
1054 //
1055 // Get SMRAM information
1056 //
1057 Size = 0;
1058 Status = mSmmAccess->GetCapabilities (mSmmAccess, &Size, NULL);
1059 ASSERT (Status == EFI_BUFFER_TOO_SMALL);
1060
1061 gSmmCorePrivate->SmramRanges = (EFI_SMRAM_DESCRIPTOR *)AllocatePool (Size);
1062 ASSERT (gSmmCorePrivate->SmramRanges != NULL);
1063
1064 Status = mSmmAccess->GetCapabilities (mSmmAccess, &Size, gSmmCorePrivate->SmramRanges);
1065 ASSERT_EFI_ERROR (Status);
1066
1067 gSmmCorePrivate->SmramRangeCount = Size / sizeof (EFI_SMRAM_DESCRIPTOR);
1068
1069 //
1070 // Open all SMRAM ranges
1071 //
1072 Status = mSmmAccess->Open (mSmmAccess);
1073 ASSERT_EFI_ERROR (Status);
1074
1075 //
1076 // Print debug message that the SMRAM window is now open.
1077 //
1078 DEBUG ((DEBUG_INFO, "SMM IPL opened SMRAM window\n"));
1079
1080 //
1081 // Subtract SMRAM any reserved SMRAM regions.
1082 //
1083 if (SmmConfiguration != NULL) {
1084 SmramResRegion = SmmConfiguration->SmramReservedRegions;
1085 while (SmramResRegion->SmramReservedSize != 0) {
1086 for (Index = 0; Index < gSmmCorePrivate->SmramRangeCount; Index ++) {
1087 if ((SmramResRegion->SmramReservedStart >= gSmmCorePrivate->SmramRanges[Index].CpuStart) && \
1088 ((SmramResRegion->SmramReservedStart + SmramResRegion->SmramReservedSize) <= \
1089 (gSmmCorePrivate->SmramRanges[Index].CpuStart + gSmmCorePrivate->SmramRanges[Index].PhysicalSize))) {
1090 //
1091 // This range has reserved area, calculate the left free size
1092 //
1093 gSmmCorePrivate->SmramRanges[Index].PhysicalSize = SmramResRegion->SmramReservedStart - gSmmCorePrivate->SmramRanges[Index].CpuStart;
1094 }
1095 }
1096 SmramResRegion++;
1097 }
1098 }
1099
1100 //
1101 // Find the largest SMRAM range between 1MB and 4GB that is at least 256KB - 4K in size
1102 //
1103 mCurrentSmramRange = NULL;
1104 for (Index = 0, MaxSize = SIZE_256KB - EFI_PAGE_SIZE; Index < gSmmCorePrivate->SmramRangeCount; Index++) {
1105 if (gSmmCorePrivate->SmramRanges[Index].CpuStart >= BASE_1MB) {
1106 if ((gSmmCorePrivate->SmramRanges[Index].CpuStart + gSmmCorePrivate->SmramRanges[Index].PhysicalSize) <= BASE_4GB) {
1107 if (gSmmCorePrivate->SmramRanges[Index].PhysicalSize >= MaxSize) {
1108 MaxSize = gSmmCorePrivate->SmramRanges[Index].PhysicalSize;
1109 mCurrentSmramRange = &gSmmCorePrivate->SmramRanges[Index];
1110 }
1111 }
1112 }
1113 }
1114
1115 if (mCurrentSmramRange != NULL) {
1116 //
1117 // Print debug message showing SMRAM window that will be used by SMM IPL and SMM Core
1118 //
1119 DEBUG ((DEBUG_INFO, "SMM IPL found SMRAM window %p - %p\n",
1120 (VOID *)(UINTN)mCurrentSmramRange->CpuStart,
1121 (VOID *)(UINTN)(mCurrentSmramRange->CpuStart + mCurrentSmramRange->PhysicalSize - 1)
1122 ));
1123
1124 GetSmramCacheRange (mCurrentSmramRange, &mSmramCacheBase, &mSmramCacheSize);
1125 //
1126 // Attempt to set SMRAM cacheability to WB
1127 //
1128 Status = gDS->SetMemorySpaceAttributes(
1129 mSmramCacheBase,
1130 mSmramCacheSize,
1131 EFI_MEMORY_WB
1132 );
1133 if (EFI_ERROR (Status)) {
1134 DEBUG ((DEBUG_WARN, "SMM IPL failed to set SMRAM window to EFI_MEMORY_WB\n"));
1135 }
1136 //
1137 // if Loading module at Fixed Address feature is enabled, save the SMRAM base to Load
1138 // Modules At Fixed Address Configuration Table.
1139 //
1140 if (PcdGet64(PcdLoadModuleAtFixAddressEnable) != 0) {
1141 //
1142 // Build tool will calculate the smm code size and then patch the PcdLoadFixAddressSmmCodePageNumber
1143 //
1144 SmmCodeSize = LShiftU64 (PcdGet32(PcdLoadFixAddressSmmCodePageNumber), EFI_PAGE_SHIFT);
1145 //
1146 // The SMRAM available memory is assumed to be larger than SmmCodeSize
1147 //
1148 ASSERT (mCurrentSmramRange->PhysicalSize > SmmCodeSize);
1149 //
1150 // Retrieve Load modules At fixed address configuration table and save the SMRAM base.
1151 //
1152 Status = EfiGetSystemConfigurationTable (
1153 &gLoadFixedAddressConfigurationTableGuid,
1154 (VOID **) &LMFAConfigurationTable
1155 );
1156 if (!EFI_ERROR (Status) && LMFAConfigurationTable != NULL) {
1157 LMFAConfigurationTable->SmramBase = mCurrentSmramRange->CpuStart;
1158 //
1159 // Print the SMRAM base
1160 //
1161 DEBUG ((EFI_D_INFO, "LOADING MODULE FIXED INFO: TSEG BASE is %x. \n", LMFAConfigurationTable->SmramBase));
1162 }
1163 }
1164 //
1165 // Load SMM Core into SMRAM and execute it from SMRAM
1166 //
1167 Status = ExecuteSmmCoreFromSmram (mCurrentSmramRange, gSmmCorePrivate);
1168 if (EFI_ERROR (Status)) {
1169 //
1170 // Print error message that the SMM Core failed to be loaded and executed.
1171 //
1172 DEBUG ((DEBUG_ERROR, "SMM IPL could not load and execute SMM Core from SMRAM\n"));
1173
1174 //
1175 // Attempt to reset SMRAM cacheability to UC
1176 //
1177 Status = gDS->SetMemorySpaceAttributes(
1178 mSmramCacheBase,
1179 mSmramCacheSize,
1180 EFI_MEMORY_UC
1181 );
1182 if (EFI_ERROR (Status)) {
1183 DEBUG ((DEBUG_WARN, "SMM IPL failed to reset SMRAM window to EFI_MEMORY_UC\n"));
1184 }
1185 }
1186 } else {
1187 //
1188 // Print error message that there are not enough SMRAM resources to load the SMM Core.
1189 //
1190 DEBUG ((DEBUG_ERROR, "SMM IPL could not find a large enough SMRAM region to load SMM Core\n"));
1191 }
1192
1193 //
1194 // If the SMM Core could not be loaded then close SMRAM window, free allocated
1195 // resources, and return an error so SMM IPL will be unloaded.
1196 //
1197 if (mCurrentSmramRange == NULL || EFI_ERROR (Status)) {
1198 //
1199 // Close all SMRAM ranges
1200 //
1201 Status = mSmmAccess->Close (mSmmAccess);
1202 ASSERT_EFI_ERROR (Status);
1203
1204 //
1205 // Print debug message that the SMRAM window is now closed.
1206 //
1207 DEBUG ((DEBUG_INFO, "SMM IPL closed SMRAM window\n"));
1208
1209 //
1210 // Free all allocated resources
1211 //
1212 FreePool (gSmmCorePrivate->SmramRanges);
1213
1214 return EFI_UNSUPPORTED;
1215 }
1216
1217 //
1218 // Install SMM Base2 Protocol and SMM Communication Protocol
1219 //
1220 Status = gBS->InstallMultipleProtocolInterfaces (
1221 &mSmmIplHandle,
1222 &gEfiSmmBase2ProtocolGuid, &mSmmBase2,
1223 &gEfiSmmCommunicationProtocolGuid, &mSmmCommunication,
1224 NULL
1225 );
1226 ASSERT_EFI_ERROR (Status);
1227
1228 //
1229 // Create the set of protocol and event notififcations that the SMM IPL requires
1230 //
1231 for (Index = 0; mSmmIplEvents[Index].NotifyFunction != NULL; Index++) {
1232 if (mSmmIplEvents[Index].Protocol) {
1233 mSmmIplEvents[Index].Event = EfiCreateProtocolNotifyEvent (
1234 mSmmIplEvents[Index].Guid,
1235 TPL_CALLBACK,
1236 mSmmIplEvents[Index].NotifyFunction,
1237 mSmmIplEvents[Index].NotifyContext,
1238 &Registration
1239 );
1240 } else {
1241 Status = gBS->CreateEventEx (
1242 EVT_NOTIFY_SIGNAL,
1243 TPL_CALLBACK,
1244 mSmmIplEvents[Index].NotifyFunction,
1245 mSmmIplEvents[Index].NotifyContext,
1246 mSmmIplEvents[Index].Guid,
1247 &mSmmIplEvents[Index].Event
1248 );
1249 ASSERT_EFI_ERROR (Status);
1250 }
1251 }
1252
1253 return EFI_SUCCESS;
1254 }