]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Pei/PeiMain.h
Fix function comment to follows doxygen format.
[mirror_edk2.git] / MdeModulePkg / Core / Pei / PeiMain.h
1 /** @file
2 Definition of Pei Core Structures and Services
3
4 Copyright (c) 2006 - 2007, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this 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 #ifndef _PEI_MAIN_H_
16 #define _PEI_MAIN_H_
17
18 #include <PiPei.h>
19 #include <Ppi/DxeIpl.h>
20 #include <Ppi/MemoryDiscovered.h>
21 #include <Ppi/StatusCode.h>
22 #include <Ppi/Reset.h>
23 #include <Ppi/FirmwareVolume.h>
24 #include <Ppi/FirmwareVolumeInfo.h>
25 #include <Ppi/Decompress.h>
26 #include <Ppi/GuidedSectionExtraction.h>
27 #include <Ppi/LoadFile.h>
28 #include <Ppi/Security2.h>
29 #include <Ppi/TemporaryRamSupport.h>
30 #include <Library/DebugLib.h>
31 #include <Library/PeiCoreEntryPoint.h>
32 #include <Library/BaseLib.h>
33 #include <Library/HobLib.h>
34 #include <Library/PerformanceLib.h>
35 #include <Library/PeiServicesLib.h>
36 #include <Library/ReportStatusCodeLib.h>
37 #include <Library/PeCoffLib.h>
38 #include <Library/PeCoffGetEntryPointLib.h>
39 #include <Library/BaseMemoryLib.h>
40 #include <Library/CacheMaintenanceLib.h>
41 #include <Library/TimerLib.h>
42 #include <Library/PcdLib.h>
43 #include <IndustryStandard/PeImage.h>
44 #include <Library/PeiServicesTablePointerLib.h>
45 #include <Library/MemoryAllocationLib.h>
46 #include <Library/PeiPiLib.h>
47 #include <Guid/FirmwareFileSystem2.h>
48 #include <Guid/AprioriFileName.h>
49
50 #define PEI_CORE_INTERNAL_FFS_FILE_DISPATCH_TYPE 0xff
51
52 ///
53 /// Pei Core private data structures
54 ///
55 typedef union {
56 EFI_PEI_PPI_DESCRIPTOR *Ppi;
57 EFI_PEI_NOTIFY_DESCRIPTOR *Notify;
58 VOID *Raw;
59 } PEI_PPI_LIST_POINTERS;
60
61 typedef struct {
62 INTN PpiListEnd;
63 INTN NotifyListEnd;
64 INTN DispatchListEnd;
65 INTN LastDispatchedInstall;
66 INTN LastDispatchedNotify;
67 PEI_PPI_LIST_POINTERS PpiListPtrs[FixedPcdGet32 (PcdPeiCoreMaxPpiSupported)];
68 } PEI_PPI_DATABASE;
69
70
71 //
72 // PEI_CORE_FV_HANDE.PeimState
73 // Do not change these values as there is code doing math to change states.
74 // Look for Private->Fv[FvCount].PeimState[PeimCount]++;
75 //
76 #define PEIM_STATE_NOT_DISPATCHED 0x00
77 #define PEIM_STATE_DISPATCHED 0x01
78 #define PEIM_STATE_REGISITER_FOR_SHADOW 0x02
79 #define PEIM_STATE_DONE 0x03
80
81 typedef struct {
82 EFI_FIRMWARE_VOLUME_HEADER *FvHeader;
83 UINT8 PeimState[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];
84 EFI_PEI_FILE_HANDLE FvFileHandles[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];
85 BOOLEAN ScanFv;
86 } PEI_CORE_FV_HANDLE;
87
88 #define CACHE_SETION_MAX_NUMBER 0x10
89 typedef struct {
90 EFI_COMMON_SECTION_HEADER* Section[CACHE_SETION_MAX_NUMBER];
91 VOID* SectionData[CACHE_SETION_MAX_NUMBER];
92 UINTN SectionSize[CACHE_SETION_MAX_NUMBER];
93 UINTN AllSectionCount;
94 UINTN SectionIndex;
95 } CACHE_SECTION_DATA;
96
97 //
98 // Pei Core private data structure instance
99 //
100
101 #define PEI_CORE_HANDLE_SIGNATURE EFI_SIGNATURE_32('P','e','i','C')
102
103 typedef struct{
104 UINTN Signature;
105 EFI_PEI_SERVICES *PS; // Point to ServiceTableShadow
106 PEI_PPI_DATABASE PpiData;
107 UINTN FvCount;
108 PEI_CORE_FV_HANDLE Fv[FixedPcdGet32 (PcdPeiCoreMaxFvSupported)];
109 EFI_PEI_FILE_HANDLE CurrentFvFileHandles[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];
110 UINTN AprioriCount;
111 UINTN CurrentPeimFvCount;
112 UINTN CurrentPeimCount;
113 EFI_PEI_FILE_HANDLE CurrentFileHandle;
114 UINTN AllFvCount;
115 EFI_PEI_FV_HANDLE AllFv[FixedPcdGet32 (PcdPeiCoreMaxFvSupported)];
116 EFI_PEI_HOB_POINTERS HobList;
117 BOOLEAN SwitchStackSignal;
118 BOOLEAN PeiMemoryInstalled;
119 EFI_PHYSICAL_ADDRESS StackBase;
120 UINT64 StackSize;
121 VOID *BottomOfCarHeap;
122 VOID *TopOfCarHeap;
123 VOID *CpuIo;
124 EFI_PEI_SECURITY2_PPI *PrivateSecurityPpi;
125 EFI_PEI_SERVICES ServiceTableShadow;
126 UINTN SizeOfTemporaryMemory;
127 UINTN SizeOfCacheAsRam;
128 VOID *MaxTopOfCarHeap;
129 EFI_PEI_PPI_DESCRIPTOR *XipLoadFile;
130 EFI_PHYSICAL_ADDRESS PhysicalMemoryBegin;
131 UINT64 PhysicalMemoryLength;
132 EFI_PHYSICAL_ADDRESS FreePhysicalMemoryTop;
133 VOID* ShadowedPeiCore;
134 CACHE_SECTION_DATA CacheSection;
135 } PEI_CORE_INSTANCE;
136
137 //
138 // Pei Core Instance Data Macros
139 //
140
141 #define PEI_CORE_INSTANCE_FROM_PS_THIS(a) \
142 CR(a, PEI_CORE_INSTANCE, PS, PEI_CORE_HANDLE_SIGNATURE)
143
144 typedef
145 EFI_STATUS
146 (EFIAPI *PEI_CORE_ENTRY_POINT)(
147 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
148 IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList,
149 IN PEI_CORE_INSTANCE *OldCoreData
150 );
151
152 ///
153 /// Union of temporarily used function pointers (to save stack space)
154 ///
155 typedef union {
156 PEI_CORE_ENTRY_POINT PeiCore;
157 EFI_PEIM_ENTRY_POINT2 PeimEntry;
158 EFI_PEIM_NOTIFY_ENTRY_POINT PeimNotifyEntry;
159 EFI_DXE_IPL_PPI *DxeIpl;
160 EFI_PEI_PPI_DESCRIPTOR *PpiDescriptor;
161 EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor;
162 VOID *Raw;
163 } PEI_CORE_TEMP_POINTERS;
164
165
166
167 typedef struct {
168 CONST EFI_SEC_PEI_HAND_OFF *SecCoreData;
169 EFI_PEI_PPI_DESCRIPTOR *PpiList;
170 VOID *Data;
171 } PEI_CORE_PARAMETERS;
172
173 //
174 // PeiCore function
175 //
176 /**
177
178 The entry routine to Pei Core, invoked by PeiMain during transition
179 from SEC to PEI. After switching stack in the PEI core, it will restart
180 with the old core data.
181
182
183 @param SecCoreData Points to a data structure containing information about the PEI core's operating
184 environment, such as the size and location of temporary RAM, the stack location and
185 the BFV location.
186 @param PpiList Points to a list of one or more PPI descriptors to be installed initially by the PEI core.
187 An empty PPI list consists of a single descriptor with the end-tag
188 EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST. As part of its initialization
189 phase, the PEI Foundation will add these SEC-hosted PPIs to its PPI database such
190 that both the PEI Foundation and any modules can leverage the associated service
191 calls and/or code in these early PPIs
192 @param Data Pointer to old core data that is used to initialize the
193 core's data areas.
194
195 @retval EFI_NOT_FOUND Never reach
196
197 **/
198 EFI_STATUS
199 EFIAPI
200 PeiCore (
201 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
202 IN CONST EFI_PEI_PPI_DESCRIPTOR *PpList,
203 IN VOID *Data
204 )
205 ;
206
207 //
208 // Dispatcher support functions
209 //
210
211 /**
212
213 This is the POSTFIX version of the dependency evaluator. When a
214 PUSH [PPI GUID] is encountered, a pointer to the GUID is stored on
215 the evaluation stack. When that entry is poped from the evaluation
216 stack, the PPI is checked if it is installed. This method allows
217 some time savings as not all PPIs must be checked for certain
218 operation types (AND, OR).
219
220
221 @param PeiServices Calling context.
222 @param DependencyExpression Pointer to a dependency expression. The Grammar adheres to
223 the BNF described above and is stored in postfix notation.
224
225 @retval TRUE if it is a well-formed Grammar
226 @retval FALSE if the dependency expression overflows the evaluation stack
227 if the dependency expression underflows the evaluation stack
228 if the dependency expression is not a well-formed Grammar.
229
230 **/
231 BOOLEAN
232 PeimDispatchReadiness (
233 IN EFI_PEI_SERVICES **PeiServices,
234 IN VOID *DependencyExpression
235 )
236 ;
237
238 /**
239 Conduct PEIM dispatch.
240
241 @param SecCoreData Points to a data structure containing information about the PEI core's operating
242 environment, such as the size and location of temporary RAM, the stack location and
243 the BFV location.
244 PrivateData - Pointer to the private data passed in from caller
245 DispatchData - Pointer to PEI_CORE_DISPATCH_DATA data.
246 @param Private EDES_TODO: Add parameter description
247
248 @retval EFI_SUCCESS Successfully dispatched PEIM.
249 @retval EFI_NOT_FOUND The dispatch failed.
250
251 **/
252 VOID
253 PeiDispatcher (
254 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
255 IN PEI_CORE_INSTANCE *PrivateData
256 )
257 ;
258
259 /**
260 Initialize the Dispatcher's data members
261
262 @param PrivateData PeiCore's private data structure
263 @param OldCoreData Old data from SecCore
264 NULL if being run in non-permament memory mode.
265 @param SecCoreData Points to a data structure containing information about the PEI core's operating
266 environment, such as the size and location of temporary RAM, the stack location and
267 the BFV location.
268
269 @return None.
270
271 **/
272 VOID
273 InitializeDispatcherData (
274 IN PEI_CORE_INSTANCE *PrivateData,
275 IN PEI_CORE_INSTANCE *OldCoreData,
276 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData
277 )
278 ;
279
280 /**
281 This routine parses the Dependency Expression, if available, and
282 decides if the module can be executed.
283
284
285 @param Private PeiCore's private data structure
286 @param FileHandle PEIM's file handle
287 @param PeimCount Peim count in all dispatched PEIMs.
288
289 @retval TRUE Can be dispatched
290 @retval FALSE Cannot be dispatched
291
292 **/
293 BOOLEAN
294 DepexSatisfied (
295 IN PEI_CORE_INSTANCE *Private,
296 IN EFI_PEI_FILE_HANDLE FileHandle,
297 IN UINTN PeimCount
298 )
299 ;
300
301 //
302 // PPI support functions
303 //
304 /**
305
306 Initialize PPI services.
307
308
309 @param PrivateData Pointer to the PEI Core data.
310 @param OldCoreData Pointer to old PEI Core data.
311 NULL if being run in non-permament memory mode.
312
313 **/
314 VOID
315 InitializePpiServices (
316 IN PEI_CORE_INSTANCE *PrivateData,
317 IN PEI_CORE_INSTANCE *OldCoreData
318 )
319 ;
320
321 /**
322
323 Migrate the Hob list from the CAR stack to PEI installed memory.
324
325 @param PeiServices The PEI core services table.
326 @param OldCheckingBottom The old checking bottom.
327 @param OldCheckingTop The old checking top.
328 @param NewHandOffHob The new handoff HOB list.
329
330 **/
331 VOID
332 ConvertPpiPointers (
333 IN CONST EFI_PEI_SERVICES **PeiServices,
334 IN UINTN OldCheckingBottom,
335 IN UINTN OldCheckingTop,
336 IN EFI_HOB_HANDOFF_INFO_TABLE *NewHandOffHob
337 )
338 ;
339
340 /**
341
342 Install PPI services.
343
344 @param PeiServices - Pointer to the PEI Service Table
345 @param PpiList - Pointer to a list of PEI PPI Descriptors.
346
347 @retval EFI_SUCCESS - if all PPIs in PpiList are successfully installed.
348 @retval EFI_INVALID_PARAMETER - if PpiList is NULL pointer
349 @retval EFI_INVALID_PARAMETER - if any PPI in PpiList is not valid
350 @retval EFI_OUT_OF_RESOURCES - if there is no more memory resource to install PPI
351
352 **/
353 EFI_STATUS
354 EFIAPI
355 PeiInstallPpi (
356 IN CONST EFI_PEI_SERVICES **PeiServices,
357 IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList
358 )
359 ;
360
361 /**
362
363 Re-Install PPI services.
364
365 @param PeiServices - Pointer to the PEI Service Table
366 @param OldPpi - Pointer to the old PEI PPI Descriptors.
367 @param NewPpi - Pointer to the new PEI PPI Descriptors.
368
369 @retval EFI_SUCCESS - if the operation was successful
370 @retval EFI_INVALID_PARAMETER - if OldPpi or NewPpi is NULL
371 @retval EFI_INVALID_PARAMETER - if NewPpi is not valid
372 @retval EFI_NOT_FOUND - if the PPI was not in the database
373
374 **/
375 EFI_STATUS
376 EFIAPI
377 PeiReInstallPpi (
378 IN CONST EFI_PEI_SERVICES **PeiServices,
379 IN CONST EFI_PEI_PPI_DESCRIPTOR *OldPpi,
380 IN CONST EFI_PEI_PPI_DESCRIPTOR *NewPpi
381 )
382 ;
383
384 /**
385
386 Locate a given named PPI.
387
388
389 @param PeiServices - Pointer to the PEI Service Table
390 @param Guid - Pointer to GUID of the PPI.
391 @param Instance - Instance Number to discover.
392 @param PpiDescriptor - Pointer to reference the found descriptor. If not NULL,
393 returns a pointer to the descriptor (includes flags, etc)
394 @param Ppi - Pointer to reference the found PPI
395
396 @retval EFI_SUCCESS if the PPI is in the database
397 @retval EFI_NOT_FOUND if the PPI is not in the database
398
399 **/
400 EFI_STATUS
401 EFIAPI
402 PeiLocatePpi (
403 IN CONST EFI_PEI_SERVICES **PeiServices,
404 IN CONST EFI_GUID *Guid,
405 IN UINTN Instance,
406 IN OUT EFI_PEI_PPI_DESCRIPTOR **PpiDescriptor,
407 IN OUT VOID **Ppi
408 )
409 ;
410
411 /**
412
413 Install a notification for a given PPI.
414
415
416 @param PeiServices - Pointer to the PEI Service Table
417 @param NotifyList - Pointer to list of Descriptors to notify upon.
418
419 @retval EFI_SUCCESS if successful
420 @retval EFI_OUT_OF_RESOURCES if no space in the database
421 @retval EFI_INVALID_PARAMETER if not a good decriptor
422
423 **/
424 EFI_STATUS
425 EFIAPI
426 PeiNotifyPpi (
427 IN CONST EFI_PEI_SERVICES **PeiServices,
428 IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
429 )
430 ;
431
432 /**
433
434 Process the Notify List at dispatch level.
435
436 @param PrivateData PeiCore's private data structure.
437
438 **/
439 VOID
440 ProcessNotifyList (
441 IN PEI_CORE_INSTANCE *PrivateData
442 )
443 ;
444
445 /**
446
447 Dispatch notifications.
448
449 @param PrivateData PeiCore's private data structure
450 @param NotifyType Type of notify to fire.
451 @param InstallStartIndex Install Beginning index.
452 @param InstallStopIndex Install Ending index.
453 @param NotifyStartIndex Notify Beginning index.
454 @param NotifyStopIndex Notify Ending index.
455
456 **/
457 VOID
458 DispatchNotify (
459 IN PEI_CORE_INSTANCE *PrivateData,
460 IN UINTN NotifyType,
461 IN INTN InstallStartIndex,
462 IN INTN InstallStopIndex,
463 IN INTN NotifyStartIndex,
464 IN INTN NotifyStopIndex
465 )
466 ;
467
468 //
469 // Boot mode support functions
470 //
471 /**
472 This service enables PEIMs to ascertain the present value of the boot mode.
473
474 @param PeiServices The PEI core services table.
475 @param BootMode A pointer to contain the value of the boot mode.
476
477 @retval EFI_SUCCESS The boot mode was returned successfully.
478 @retval EFI_INVALID_PARAMETER BootMode is NULL.
479
480 **/
481 EFI_STATUS
482 EFIAPI
483 PeiGetBootMode (
484 IN CONST EFI_PEI_SERVICES **PeiServices,
485 IN OUT EFI_BOOT_MODE *BootMode
486 )
487 ;
488
489 /**
490 This service enables PEIMs to update the boot mode variable.
491
492
493 @param PeiServices - The PEI core services table.
494 @param BootMode - The value of the boot mode to set.
495
496 @return EFI_SUCCESS - The value was successfully updated
497
498 **/
499 EFI_STATUS
500 EFIAPI
501 PeiSetBootMode (
502 IN CONST EFI_PEI_SERVICES **PeiServices,
503 IN EFI_BOOT_MODE BootMode
504 )
505 ;
506
507 //
508 // Security support functions
509 //
510 /**
511
512 Initialize the security services.
513
514
515 @param PeiServices - The PEI core services table.
516 @param OldCoreData - Pointer to the old core data.
517 NULL if being run in non-permament memory mode.
518
519 **/
520 VOID
521 InitializeSecurityServices (
522 IN EFI_PEI_SERVICES **PeiServices,
523 IN PEI_CORE_INSTANCE *OldCoreData
524 )
525 ;
526
527 /**
528 Verify a Firmware volume
529
530 @param CurrentFvAddress - Pointer to the current Firmware Volume under consideration
531
532 @retval EFI_SUCCESS - Firmware Volume is legal
533 @retval EFI_SECURITY_VIOLATION - Firmware Volume fails integrity test
534
535 **/
536 EFI_STATUS
537 VerifyFv (
538 IN EFI_FIRMWARE_VOLUME_HEADER *CurrentFvAddress
539 )
540 ;
541
542 /**
543
544 Provide a callout to the security verification service.
545
546
547 @param PrivateData PeiCore's private data structure
548 @param VolumeHandle Handle of FV
549 @param FileHandle Handle of PEIM's ffs
550
551 @retval EFI_SUCCESS Image is OK
552 @retval EFI_SECURITY_VIOLATION Image is illegal
553
554 **/
555 EFI_STATUS
556 VerifyPeim (
557 IN PEI_CORE_INSTANCE *PrivateData,
558 IN EFI_PEI_FV_HANDLE VolumeHandle,
559 IN EFI_PEI_FILE_HANDLE FileHandle
560 )
561 ;
562
563 /**
564
565 Gets the pointer to the HOB List.
566
567
568 @param PeiServices The PEI core services table.
569 @param HobList Pointer to the HOB List.
570
571 @retval EFI_SUCCESS Get the pointer of HOB List
572 @retval EFI_NOT_AVAILABLE_YET the HOB List is not yet published
573 @retval EFI_INVALID_PARAMETER HobList is NULL (in debug mode)
574
575 **/
576 EFI_STATUS
577 EFIAPI
578 PeiGetHobList (
579 IN CONST EFI_PEI_SERVICES **PeiServices,
580 IN OUT VOID **HobList
581 )
582 ;
583
584 /**
585 Add a new HOB to the HOB List.
586
587 @param PeiServices - The PEI core services table.
588 @param Type - Type of the new HOB.
589 @param Length - Length of the new HOB to allocate.
590 @param Hob - Pointer to the new HOB.
591
592 @return EFI_SUCCESS Success to create hob.
593 @retval EFI_INVALID_PARAMETER if Hob is NULL
594 @retval EFI_NOT_AVAILABLE_YET if HobList is still not available.
595 @retval EFI_OUT_OF_RESOURCES if there is no more memory to grow the Hoblist.
596
597 **/
598 EFI_STATUS
599 EFIAPI
600 PeiCreateHob (
601 IN CONST EFI_PEI_SERVICES **PeiServices,
602 IN UINT16 Type,
603 IN UINT16 Length,
604 IN OUT VOID **Hob
605 )
606 ;
607
608 /**
609
610 Builds a Handoff Information Table HOB
611
612 @param BootMode - Current Bootmode
613 @param MemoryBegin - Start Memory Address.
614 @param MemoryLength - Length of Memory.
615
616 @return EFI_SUCCESS Always success to initialize HOB.
617
618 **/
619 EFI_STATUS
620 PeiCoreBuildHobHandoffInfoTable (
621 IN EFI_BOOT_MODE BootMode,
622 IN EFI_PHYSICAL_ADDRESS MemoryBegin,
623 IN UINT64 MemoryLength
624 )
625 ;
626
627
628 //
629 // FFS Fw Volume support functions
630 //
631 /**
632 Given the input file pointer, search for the next matching file in the
633 FFS volume as defined by SearchType. The search starts from FileHeader inside
634 the Firmware Volume defined by FwVolHeader.
635
636
637 @param PeiServices Pointer to the PEI Core Services Table.
638 @param SearchType Filter to find only files of this type.
639 Type EFI_FV_FILETYPE_ALL causes no filtering to be done.
640 @param VolumeHandle Pointer to the FV header of the volume to search.
641 @param FileHandle Pointer to the current file from which to begin searching.
642 This pointer will be updated upon return to reflect the file found.
643 @retval EFI_NOT_FOUND No files matching the search criteria were found
644 @retval EFI_SUCCESS Success to find next file in given volume
645
646 **/
647 EFI_STATUS
648 EFIAPI
649 PeiFfsFindNextFile (
650 IN CONST EFI_PEI_SERVICES **PeiServices,
651 IN UINT8 SearchType,
652 IN EFI_PEI_FV_HANDLE FwVolHeader,
653 IN OUT EFI_PEI_FILE_HANDLE *FileHeader
654 )
655 ;
656
657 /**
658 Given the input file pointer, search for the next matching section in the
659 FFS volume.
660
661
662 @param PeiServices Pointer to the PEI Core Services Table.
663 @param SectionType Filter to find only sections of this type.
664 @param FileHandle Pointer to the current file to search.
665 @param SectionData Pointer to the Section matching SectionType in FfsFileHeader.
666 NULL if section not found
667
668 @retval EFI_NOT_FOUND No files matching the search criteria were found
669 @retval EFI_SUCCESS Success to find section data in given file
670
671 **/
672 EFI_STATUS
673 EFIAPI
674 PeiFfsFindSectionData (
675 IN CONST EFI_PEI_SERVICES **PeiServices,
676 IN EFI_SECTION_TYPE SectionType,
677 IN EFI_PEI_FILE_HANDLE FfsFileHeader,
678 IN OUT VOID **SectionData
679 )
680 ;
681
682 /**
683 search the firmware volumes by index
684
685 @param PeiServices The PEI core services table.
686 @param Instance Instance of FV to find
687 @param VolumeHandle Pointer to found Volume.
688
689 @retval EFI_INVALID_PARAMETER FwVolHeader is NULL
690 @retval EFI_SUCCESS Firmware volume instance successfully found.
691
692 **/
693 EFI_STATUS
694 EFIAPI
695 PeiFvFindNextVolume (
696 IN CONST EFI_PEI_SERVICES **PeiServices,
697 IN UINTN Instance,
698 IN OUT EFI_PEI_FV_HANDLE *FwVolHeader
699 )
700 ;
701
702 //
703 // Memory support functions
704 //
705 /**
706
707 Initialize the memory services.
708
709
710 @param PrivateData Add parameter description
711 @param SecCoreData Points to a data structure containing information about the PEI core's operating
712 environment, such as the size and location of temporary RAM, the stack location and
713 the BFV location.
714 @param OldCoreData Pointer to the PEI Core data.
715 NULL if being run in non-permament memory mode.
716
717 **/
718 VOID
719 InitializeMemoryServices (
720 IN PEI_CORE_INSTANCE *PrivateData,
721 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
722 IN PEI_CORE_INSTANCE *OldCoreData
723 )
724 ;
725
726 /**
727
728 Install the permanent memory is now available.
729 Creates HOB (PHIT and Stack).
730
731 @param PeiServices - The PEI core services table.
732 @param MemoryBegin - Start of memory address.
733 @param MemoryLength - Length of memory.
734
735 @return EFI_SUCCESS Always success.
736
737 **/
738 EFI_STATUS
739 EFIAPI
740 PeiInstallPeiMemory (
741 IN CONST EFI_PEI_SERVICES **PeiServices,
742 IN EFI_PHYSICAL_ADDRESS MemoryBegin,
743 IN UINT64 MemoryLength
744 )
745 ;
746
747 /**
748
749 Memory allocation service on permanent memory,
750 not usable prior to the memory installation.
751
752
753 @param PeiServices - The PEI core services table.
754 @param MemoryType - Type of memory to allocate.
755 @param Pages - Number of pages to allocate.
756 @param Memory - Pointer of memory allocated.
757
758 @retval EFI_SUCCESS The allocation was successful
759 @retval EFI_INVALID_PARAMETER Only AllocateAnyAddress is supported.
760 @retval EFI_NOT_AVAILABLE_YET Called with permanent memory not available
761 @retval EFI_OUT_OF_RESOURCES There is not enough HOB heap to satisfy the requirement
762 to allocate the number of pages.
763
764 **/
765 EFI_STATUS
766 EFIAPI
767 PeiAllocatePages (
768 IN CONST EFI_PEI_SERVICES **PeiServices,
769 IN EFI_MEMORY_TYPE MemoryType,
770 IN UINTN Pages,
771 OUT EFI_PHYSICAL_ADDRESS *Memory
772 )
773 ;
774
775 /**
776
777 Memory allocation service on the CAR.
778
779
780 @param PeiServices - The PEI core services table.
781 @param Size - Amount of memory required
782 @param Buffer - Address of pointer to the buffer
783
784 @retval EFI_SUCCESS The allocation was successful
785 @retval EFI_OUT_OF_RESOURCES There is not enough heap to satisfy the requirement
786 to allocate the requested size.
787
788 **/
789 EFI_STATUS
790 EFIAPI
791 PeiAllocatePool (
792 IN CONST EFI_PEI_SERVICES **PeiServices,
793 IN UINTN Size,
794 OUT VOID **Buffer
795 )
796 ;
797
798 /**
799
800 Routine for load image file.
801
802
803 @param PeiServices - The PEI core services table.
804 @param FileHandle - Pointer to the FFS file header of the image.
805 @param EntryPoint - Pointer to entry point of specified image file for output.
806 @param AuthenticationState - Pointer to attestation authentication state of image.
807
808 @retval EFI_SUCCESS - Image is successfully loaded.
809 @retval EFI_NOT_FOUND - Fail to locate necessary PPI
810 @retval Others - Fail to load file.
811
812 **/
813 EFI_STATUS
814 PeiLoadImage (
815 IN EFI_PEI_SERVICES **PeiServices,
816 IN EFI_PEI_FILE_HANDLE FileHandle,
817 OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
818 OUT UINT32 *AuthenticationState
819 )
820 ;
821
822 /**
823
824 Core version of the Status Code reporter
825
826
827 @param PeiServices The PEI core services table.
828 @param CodeType Type of Status Code.
829 @param Value Value to output for Status Code.
830 @param Instance Instance Number of this status code.
831 @param CallerId ID of the caller of this status code.
832 @param Data Optional data associated with this status code.
833
834 @retval EFI_SUCCESS if status code is successfully reported
835 @retval EFI_NOT_AVAILABLE_YET if StatusCodePpi has not been installed
836
837 **/
838 EFI_STATUS
839 EFIAPI
840 PeiReportStatusCode (
841 IN CONST EFI_PEI_SERVICES **PeiServices,
842 IN EFI_STATUS_CODE_TYPE CodeType,
843 IN EFI_STATUS_CODE_VALUE Value,
844 IN UINT32 Instance,
845 IN CONST EFI_GUID *CallerId,
846 IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL
847 )
848 ;
849
850 /**
851
852 Core version of the Reset System
853
854
855 @param PeiServices - The PEI core services table.
856
857 @retval EFI_NOT_AVAILABLE_YET PPI not available yet.
858 @retval EFI_DEVICE_ERROR Did not reset system.
859 Otherwise, resets the system.
860
861 **/
862 EFI_STATUS
863 EFIAPI
864 PeiResetSystem (
865 IN CONST EFI_PEI_SERVICES **PeiServices
866 )
867 ;
868
869 /**
870
871 Initialize PeiCore Fv List.
872
873
874 @param PrivateData - Pointer to PEI_CORE_INSTANCE.
875 @param SecCoreData - Pointer to EFI_SEC_PEI_HAND_OFF.
876
877 @return NONE
878
879 **/
880 VOID
881 PeiInitializeFv (
882 IN PEI_CORE_INSTANCE *PrivateData,
883 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData
884 )
885 ;
886
887 /**
888 Process Firmware Volum Information once FvInfoPPI install.
889
890
891 @param PeiServices - General purpose services available to every PEIM.
892 @param NotifyDescriptor EDES_TODO: Add parameter description
893 @param Ppi EDES_TODO: Add parameter description
894
895 @retval EFI_SUCCESS if the interface could be successfully installed
896
897 **/
898 EFI_STATUS
899 EFIAPI
900 FirmwareVolmeInfoPpiNotifyCallback (
901 IN EFI_PEI_SERVICES **PeiServices,
902 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
903 IN VOID *Ppi
904 )
905 ;
906
907 /**
908
909 Given the input VolumeHandle, search for the next matching name file.
910
911
912 @param FileName - File name to search.
913 @param VolumeHandle - The current FV to search.
914 @param FileHandle - Pointer to the file matching name in VolumeHandle.
915 - NULL if file not found
916
917 @return EFI_STATUS
918
919 **/
920 EFI_STATUS
921 EFIAPI
922 PeiFfsFindFileByName (
923 IN CONST EFI_GUID *FileName,
924 IN EFI_PEI_FV_HANDLE VolumeHandle,
925 OUT EFI_PEI_FILE_HANDLE *FileHandle
926 )
927 ;
928
929 /**
930
931 Returns information about a specific file.
932
933
934 @param FileHandle - The handle to file.
935 @param FileInfo - Pointer to the file information.
936
937 @retval EFI_INVALID_PARAMETER Invalid FileHandle or FileInfo.
938 @retval EFI_SUCCESS Success to collect file info.
939
940 **/
941 EFI_STATUS
942 EFIAPI
943 PeiFfsGetFileInfo (
944 IN EFI_PEI_FILE_HANDLE FileHandle,
945 OUT EFI_FV_FILE_INFO *FileInfo
946 )
947 ;
948
949 /**
950
951 Collect information of given Fv Volume.
952
953 @param VolumeHandle - The handle to Fv Volume.
954 @param VolumeInfo - The pointer to volume information.
955
956 @retval EFI_INVALID_PARAMETER VolumeInfo is NULL
957 @retval EFI_SUCCESS Success to collect fv info.
958 **/
959 EFI_STATUS
960 EFIAPI
961 PeiFfsGetVolumeInfo (
962 IN EFI_PEI_FV_HANDLE VolumeHandle,
963 OUT EFI_FV_INFO *VolumeInfo
964 )
965 ;
966
967 /**
968 This routine enable a PEIM to register itself to shadow when PEI Foundation
969 discovery permanent memory.
970
971 @param FileHandle File handle of a PEIM.
972
973 @retval EFI_NOT_FOUND The file handle doesn't point to PEIM itself.
974 @retval EFI_ALREADY_STARTED Indicate that the PEIM has been registered itself.
975 @retval EFI_SUCCESS Successfully to register itself.
976
977 **/
978 EFI_STATUS
979 EFIAPI
980 PeiRegisterForShadow (
981 IN EFI_PEI_FILE_HANDLE FileHandle
982 )
983 ;
984
985 /**
986 Given the input file pointer, search for the next matching file in the
987 FFS volume as defined by SearchType. The search starts from FileHeader inside
988 the Firmware Volume defined by FwVolHeader.
989
990
991 @param FvHandle Pointer to the FV header of the volume to search
992 @param FileName File name
993 @param SearchType Filter to find only files of this type.
994 Type EFI_FV_FILETYPE_ALL causes no filtering to be done.
995 @param FileHandle This parameter must point to a valid FFS volume.
996 @param AprioriFile Pointer to AprioriFile image in this FV if has
997
998 @return EFI_NOT_FOUND No files matching the search criteria were found
999 @retval EFI_SUCCESS Success to search given file
1000
1001 **/
1002 EFI_STATUS
1003 PeiFindFileEx (
1004 IN CONST EFI_PEI_FV_HANDLE FvHandle,
1005 IN CONST EFI_GUID *FileName, OPTIONAL
1006 IN EFI_FV_FILETYPE SearchType,
1007 IN OUT EFI_PEI_FILE_HANDLE *FileHandle,
1008 IN OUT EFI_PEI_FV_HANDLE *AprioriFile OPTIONAL
1009 )
1010 ;
1011
1012 /**
1013
1014 Install Pei Load File PPI.
1015
1016
1017 @param PrivateData - Pointer to PEI_CORE_INSTANCE.
1018 @param OldCoreData - Pointer to PEI_CORE_INSTANCE.
1019
1020 **/
1021 VOID
1022 InitializeImageServices (
1023 IN PEI_CORE_INSTANCE *PrivateData,
1024 IN PEI_CORE_INSTANCE *OldCoreData
1025 )
1026 ;
1027
1028 /**
1029 Get Fv image from the FV type file, then install FV INFO ppi, Build FV hob.
1030
1031 @param PeiServices Pointer to the PEI Core Services Table.
1032 @param FileHandle File handle of a Fv type file.
1033 @param AuthenticationState Pointer to attestation authentication state of image.
1034
1035
1036 @retval EFI_NOT_FOUND FV image can't be found.
1037 @retval EFI_SUCCESS Successfully to process it.
1038
1039 **/
1040 EFI_STATUS
1041 ProcessFvFile (
1042 IN EFI_PEI_SERVICES **PeiServices,
1043 IN EFI_PEI_FILE_HANDLE FvFileHandle,
1044 OUT UINT32 *AuthenticationState
1045 );
1046
1047 #endif