]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Pei/PeiMain.h
Fix some coding style issues in MdeModulePkg.
[mirror_edk2.git] / MdeModulePkg / Core / Pei / PeiMain.h
1 /** @file
2 Definition of Pei Core Structures and Services
3
4 Copyright (c) 2006 - 2009, 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 <Guid/FirmwareFileSystem2.h>
47 #include <Guid/AprioriFileName.h>
48
49 ///
50 /// It is an FFS type extension used for PeiFindFileEx. It indicates current
51 /// Ffs searching is for all PEIMs can be dispatched by PeiCore.
52 ///
53 #define PEI_CORE_INTERNAL_FFS_FILE_DISPATCH_TYPE 0xff
54
55 ///
56 /// Pei Core private data structures
57 ///
58 typedef union {
59 EFI_PEI_PPI_DESCRIPTOR *Ppi;
60 EFI_PEI_NOTIFY_DESCRIPTOR *Notify;
61 VOID *Raw;
62 } PEI_PPI_LIST_POINTERS;
63
64 ///
65 /// PPI database structure which contains two link: PpiList and NotifyList. PpiList
66 /// is in head of PpiListPtrs array and notify is in end of PpiListPtrs.
67 ///
68 typedef struct {
69 ///
70 /// index of end of PpiList link list.
71 ///
72 INTN PpiListEnd;
73 ///
74 /// index of end of notify link list.
75 ///
76 INTN NotifyListEnd;
77 ///
78 /// index of the dispatched notify list.
79 ///
80 INTN DispatchListEnd;
81 ///
82 /// index of last installed Ppi description in PpiList link list.
83 ///
84 INTN LastDispatchedInstall;
85 ///
86 /// index of last dispatched notify in Notify link list.
87 ///
88 INTN LastDispatchedNotify;
89 ///
90 /// Ppi database.
91 ///
92 PEI_PPI_LIST_POINTERS PpiListPtrs[FixedPcdGet32 (PcdPeiCoreMaxPpiSupported)];
93 } PEI_PPI_DATABASE;
94
95
96 //
97 // PEI_CORE_FV_HANDE.PeimState
98 // Do not change these values as there is code doing math to change states.
99 // Look for Private->Fv[FvCount].PeimState[PeimCount]++;
100 //
101 #define PEIM_STATE_NOT_DISPATCHED 0x00
102 #define PEIM_STATE_DISPATCHED 0x01
103 #define PEIM_STATE_REGISITER_FOR_SHADOW 0x02
104 #define PEIM_STATE_DONE 0x03
105
106 typedef struct {
107 EFI_FIRMWARE_VOLUME_HEADER *FvHeader;
108 EFI_PEI_FIRMWARE_VOLUME_PPI *FvPpi;
109 EFI_PEI_FV_HANDLE FvHandle;
110 UINT8 PeimState[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];
111 EFI_PEI_FILE_HANDLE FvFileHandles[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];
112 BOOLEAN ScanFv;
113 } PEI_CORE_FV_HANDLE;
114
115 typedef struct {
116 EFI_GUID FvFormat;
117 VOID *FvInfo;
118 UINT32 FvInfoSize;
119 EFI_PEI_NOTIFY_DESCRIPTOR NotifyDescriptor;
120 } PEI_CORE_UNKNOW_FORMAT_FV_INFO;
121
122 #define CACHE_SETION_MAX_NUMBER 0x10
123 typedef struct {
124 EFI_COMMON_SECTION_HEADER* Section[CACHE_SETION_MAX_NUMBER];
125 VOID* SectionData[CACHE_SETION_MAX_NUMBER];
126 UINTN SectionSize[CACHE_SETION_MAX_NUMBER];
127 UINTN AllSectionCount;
128 UINTN SectionIndex;
129 } CACHE_SECTION_DATA;
130
131
132 #define PEI_CORE_HANDLE_SIGNATURE SIGNATURE_32('P','e','i','C')
133
134 ///
135 /// Pei Core private data structure instance
136 ///
137 typedef struct{
138 UINTN Signature;
139
140 ///
141 /// Point to ServiceTableShadow
142 ///
143 EFI_PEI_SERVICES *PS;
144 PEI_PPI_DATABASE PpiData;
145
146 ///
147 /// The count of FVs which contains FFS and could be dispatched by PeiCore.
148 ///
149 UINTN FvCount;
150
151 ///
152 /// The instance arrary for FVs which contains FFS and could be dispatched by PeiCore.
153 ///
154 PEI_CORE_FV_HANDLE Fv[FixedPcdGet32 (PcdPeiCoreMaxFvSupported)];
155 PEI_CORE_UNKNOW_FORMAT_FV_INFO UnknownFvInfo[FixedPcdGet32 (PcdPeiCoreMaxFvSupported)];
156 UINTN UnknownFvInfoCount;
157
158 EFI_PEI_FILE_HANDLE CurrentFvFileHandles[FixedPcdGet32 (PcdPeiCoreMaxPeimPerFv)];
159 UINTN AprioriCount;
160 UINTN CurrentPeimFvCount;
161 UINTN CurrentPeimCount;
162 EFI_PEI_FILE_HANDLE CurrentFileHandle;
163 BOOLEAN PeimNeedingDispatch;
164 BOOLEAN PeimDispatchOnThisPass;
165 BOOLEAN PeimDispatcherReenter;
166 EFI_PEI_HOB_POINTERS HobList;
167 BOOLEAN SwitchStackSignal;
168 BOOLEAN PeiMemoryInstalled;
169 EFI_PHYSICAL_ADDRESS StackBase;
170 UINT64 StackSize;
171 VOID *CpuIo;
172 EFI_PEI_SECURITY2_PPI *PrivateSecurityPpi;
173 EFI_PEI_SERVICES ServiceTableShadow;
174 EFI_PEI_PPI_DESCRIPTOR *XipLoadFile;
175 EFI_PHYSICAL_ADDRESS PhysicalMemoryBegin;
176 UINT64 PhysicalMemoryLength;
177 EFI_PHYSICAL_ADDRESS FreePhysicalMemoryTop;
178 VOID* ShadowedPeiCore;
179 CACHE_SECTION_DATA CacheSection;
180 } PEI_CORE_INSTANCE;
181
182 ///
183 /// Pei Core Instance Data Macros
184 ///
185 #define PEI_CORE_INSTANCE_FROM_PS_THIS(a) \
186 CR(a, PEI_CORE_INSTANCE, PS, PEI_CORE_HANDLE_SIGNATURE)
187
188 /**
189 Function Pointer type for PeiCore function.
190 @param SecCoreData Points to a data structure containing SEC to PEI handoff data, such as the size
191 and location of temporary RAM, the stack location and the BFV location.
192 @param PpiList Points to a list of one or more PPI descriptors to be installed initially by the PEI core.
193 An empty PPI list consists of a single descriptor with the end-tag
194 EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST. As part of its initialization
195 phase, the PEI Foundation will add these SEC-hosted PPIs to its PPI database such
196 that both the PEI Foundation and any modules can leverage the associated service
197 calls and/or code in these early PPIs
198 @param OldCoreData Pointer to old core data that is used to initialize the
199 core's data areas.
200 **/
201 typedef
202 EFI_STATUS
203 (EFIAPI *PEICORE_FUNCTION_POINTER)(
204 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
205 IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList,
206 IN PEI_CORE_INSTANCE *OldCoreData
207 );
208
209 ///
210 /// Union of temporarily used function pointers (to save stack space)
211 ///
212 typedef union {
213 PEICORE_FUNCTION_POINTER PeiCore;
214 EFI_PEIM_ENTRY_POINT2 PeimEntry;
215 EFI_PEIM_NOTIFY_ENTRY_POINT PeimNotifyEntry;
216 EFI_DXE_IPL_PPI *DxeIpl;
217 EFI_PEI_PPI_DESCRIPTOR *PpiDescriptor;
218 EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor;
219 VOID *Raw;
220 } PEI_CORE_TEMP_POINTERS;
221
222 typedef struct {
223 CONST EFI_SEC_PEI_HAND_OFF *SecCoreData;
224 EFI_PEI_PPI_DESCRIPTOR *PpiList;
225 VOID *Data;
226 } PEI_CORE_PARAMETERS;
227
228 //
229 // PeiCore function
230 //
231 /**
232
233 The entry routine to Pei Core, invoked by PeiMain during transition
234 from SEC to PEI. After switching stack in the PEI core, it will restart
235 with the old core data.
236
237
238 @param SecCoreData Points to a data structure containing SEC to PEI handoff data, such as the size
239 and location of temporary RAM, the stack location and the BFV location.
240 @param PpiList Points to a list of one or more PPI descriptors to be installed initially by the PEI core.
241 An empty PPI list consists of a single descriptor with the end-tag
242 EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST. As part of its initialization
243 phase, the PEI Foundation will add these SEC-hosted PPIs to its PPI database such
244 that both the PEI Foundation and any modules can leverage the associated service
245 calls and/or code in these early PPIs
246 @param Data Pointer to old core data that is used to initialize the
247 core's data areas.
248
249 **/
250 VOID
251 EFIAPI
252 PeiCore (
253 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
254 IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList,
255 IN VOID *Data
256 );
257
258 //
259 // Dispatcher support functions
260 //
261
262 /**
263
264 This is the POSTFIX version of the dependency evaluator. When a
265 PUSH [PPI GUID] is encountered, a pointer to the GUID is stored on
266 the evaluation stack. When that entry is poped from the evaluation
267 stack, the PPI is checked if it is installed. This method allows
268 some time savings as not all PPIs must be checked for certain
269 operation types (AND, OR).
270
271
272 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
273 @param DependencyExpression Pointer to a dependency expression. The Grammar adheres to
274 the BNF described above and is stored in postfix notation.
275
276 @retval TRUE if it is a well-formed Grammar
277 @retval FALSE if the dependency expression overflows the evaluation stack
278 if the dependency expression underflows the evaluation stack
279 if the dependency expression is not a well-formed Grammar.
280
281 **/
282 BOOLEAN
283 PeimDispatchReadiness (
284 IN EFI_PEI_SERVICES **PeiServices,
285 IN VOID *DependencyExpression
286 );
287
288 /**
289 Conduct PEIM dispatch.
290
291 @param SecCoreData Pointer to the data structure containing SEC to PEI handoff data
292 @param PrivateData Pointer to the private data passed in from caller
293
294 **/
295 VOID
296 PeiDispatcher (
297 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
298 IN PEI_CORE_INSTANCE *PrivateData
299 );
300
301 /**
302 Initialize the Dispatcher's data members
303
304 @param PrivateData PeiCore's private data structure
305 @param OldCoreData Old data from SecCore
306 NULL if being run in non-permament memory mode.
307 @param SecCoreData Points to a data structure containing SEC to PEI handoff data, such as the size
308 and location of temporary RAM, the stack location and the BFV location.
309
310 **/
311 VOID
312 InitializeDispatcherData (
313 IN PEI_CORE_INSTANCE *PrivateData,
314 IN PEI_CORE_INSTANCE *OldCoreData,
315 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData
316 );
317
318 /**
319 This routine parses the Dependency Expression, if available, and
320 decides if the module can be executed.
321
322
323 @param Private PeiCore's private data structure
324 @param FileHandle PEIM's file handle
325 @param PeimCount The index of last dispatched PEIM.
326
327 @retval TRUE Can be dispatched
328 @retval FALSE Cannot be dispatched
329
330 **/
331 BOOLEAN
332 DepexSatisfied (
333 IN PEI_CORE_INSTANCE *Private,
334 IN EFI_PEI_FILE_HANDLE FileHandle,
335 IN UINTN PeimCount
336 );
337
338 //
339 // PPI support functions
340 //
341 /**
342
343 Initialize PPI services.
344
345 @param PrivateData Pointer to the PEI Core data.
346 @param OldCoreData Pointer to old PEI Core data.
347 NULL if being run in non-permament memory mode.
348
349 **/
350 VOID
351 InitializePpiServices (
352 IN PEI_CORE_INSTANCE *PrivateData,
353 IN PEI_CORE_INSTANCE *OldCoreData
354 );
355
356 /**
357
358 Migrate the Hob list from the temporary memory stack to PEI installed memory.
359
360 @param PrivateData Pointer to PeiCore's private data structure.
361 @param OldCheckingBottom Bottom of temporary memory range. All Ppi in this range
362 will be fixup for PpiData and PpiDescriptor pointer.
363 @param OldCheckingTop Top of temporary memory range. All Ppi in this range
364 will be fixup for PpiData and PpiDescriptor.
365 @param Fixup The address difference between
366 the new Hob list and old Hob list.
367
368 **/
369 VOID
370 ConvertPpiPointers (
371 IN PEI_CORE_INSTANCE *PrivateData,
372 IN UINTN OldCheckingBottom,
373 IN UINTN OldCheckingTop,
374 IN INTN Fixup
375 );
376
377 /**
378
379 Install PPI services. It is implementation of EFI_PEI_SERVICE.InstallPpi.
380
381 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
382 @param PpiList Pointer to ppi array that want to be installed.
383
384 @retval EFI_SUCCESS if all PPIs in PpiList are successfully installed.
385 @retval EFI_INVALID_PARAMETER if PpiList is NULL pointer
386 if any PPI in PpiList is not valid
387 @retval EFI_OUT_OF_RESOURCES if there is no more memory resource to install PPI
388
389 **/
390 EFI_STATUS
391 EFIAPI
392 PeiInstallPpi (
393 IN CONST EFI_PEI_SERVICES **PeiServices,
394 IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList
395 );
396
397 /**
398
399 Re-Install PPI services.
400
401 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
402 @param OldPpi Pointer to the old PEI PPI Descriptors.
403 @param NewPpi Pointer to the new PEI PPI Descriptors.
404
405 @retval EFI_SUCCESS if the operation was successful
406 @retval EFI_INVALID_PARAMETER if OldPpi or NewPpi is NULL
407 if NewPpi is not valid
408 @retval EFI_NOT_FOUND if the PPI was not in the database
409
410 **/
411 EFI_STATUS
412 EFIAPI
413 PeiReInstallPpi (
414 IN CONST EFI_PEI_SERVICES **PeiServices,
415 IN CONST EFI_PEI_PPI_DESCRIPTOR *OldPpi,
416 IN CONST EFI_PEI_PPI_DESCRIPTOR *NewPpi
417 );
418
419 /**
420
421 Locate a given named PPI.
422
423
424 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
425 @param Guid Pointer to GUID of the PPI.
426 @param Instance Instance Number to discover.
427 @param PpiDescriptor Pointer to reference the found descriptor. If not NULL,
428 returns a pointer to the descriptor (includes flags, etc)
429 @param Ppi Pointer to reference the found PPI
430
431 @retval EFI_SUCCESS if the PPI is in the database
432 @retval EFI_NOT_FOUND if the PPI is not in the database
433
434 **/
435 EFI_STATUS
436 EFIAPI
437 PeiLocatePpi (
438 IN CONST EFI_PEI_SERVICES **PeiServices,
439 IN CONST EFI_GUID *Guid,
440 IN UINTN Instance,
441 IN OUT EFI_PEI_PPI_DESCRIPTOR **PpiDescriptor,
442 IN OUT VOID **Ppi
443 );
444
445 /**
446
447 Install a notification for a given PPI.
448
449
450 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
451 @param NotifyList Pointer to list of Descriptors to notify upon.
452
453 @retval EFI_SUCCESS if successful
454 @retval EFI_OUT_OF_RESOURCES if no space in the database
455 @retval EFI_INVALID_PARAMETER if not a good decriptor
456
457 **/
458 EFI_STATUS
459 EFIAPI
460 PeiNotifyPpi (
461 IN CONST EFI_PEI_SERVICES **PeiServices,
462 IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
463 );
464
465 /**
466
467 Process the Notify List at dispatch level.
468
469 @param PrivateData PeiCore's private data structure.
470
471 **/
472 VOID
473 ProcessNotifyList (
474 IN PEI_CORE_INSTANCE *PrivateData
475 );
476
477 /**
478
479 Dispatch notifications.
480
481 @param PrivateData PeiCore's private data structure
482 @param NotifyType Type of notify to fire.
483 @param InstallStartIndex Install Beginning index.
484 @param InstallStopIndex Install Ending index.
485 @param NotifyStartIndex Notify Beginning index.
486 @param NotifyStopIndex Notify Ending index.
487
488 **/
489 VOID
490 DispatchNotify (
491 IN PEI_CORE_INSTANCE *PrivateData,
492 IN UINTN NotifyType,
493 IN INTN InstallStartIndex,
494 IN INTN InstallStopIndex,
495 IN INTN NotifyStartIndex,
496 IN INTN NotifyStopIndex
497 );
498
499 //
500 // Boot mode support functions
501 //
502 /**
503 This service enables PEIMs to ascertain the present value of the boot mode.
504
505 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
506 @param BootMode A pointer to contain the value of the boot mode.
507
508 @retval EFI_SUCCESS The boot mode was returned successfully.
509 @retval EFI_INVALID_PARAMETER BootMode is NULL.
510
511 **/
512 EFI_STATUS
513 EFIAPI
514 PeiGetBootMode (
515 IN CONST EFI_PEI_SERVICES **PeiServices,
516 IN OUT EFI_BOOT_MODE *BootMode
517 );
518
519 /**
520 This service enables PEIMs to update the boot mode variable.
521
522
523 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
524 @param BootMode The value of the boot mode to set.
525
526 @return EFI_SUCCESS The value was successfully updated
527
528 **/
529 EFI_STATUS
530 EFIAPI
531 PeiSetBootMode (
532 IN CONST EFI_PEI_SERVICES **PeiServices,
533 IN EFI_BOOT_MODE BootMode
534 );
535
536 //
537 // Security support functions
538 //
539 /**
540
541 Initialize the security services.
542
543 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
544 @param OldCoreData Pointer to the old core data.
545 NULL if being run in non-permament memory mode.
546
547 **/
548 VOID
549 InitializeSecurityServices (
550 IN EFI_PEI_SERVICES **PeiServices,
551 IN PEI_CORE_INSTANCE *OldCoreData
552 );
553
554 /**
555 Verify a Firmware volume.
556
557 @param CurrentFvAddress Pointer to the current Firmware Volume under consideration
558
559 @retval EFI_SUCCESS Firmware Volume is legal
560 @retval EFI_SECURITY_VIOLATION Firmware Volume fails integrity test
561
562 **/
563 EFI_STATUS
564 VerifyFv (
565 IN EFI_FIRMWARE_VOLUME_HEADER *CurrentFvAddress
566 );
567
568 /**
569
570 Provide a callout to the security verification service.
571
572
573 @param PrivateData PeiCore's private data structure
574 @param VolumeHandle Handle of FV
575 @param FileHandle Handle of PEIM's ffs
576
577 @retval EFI_SUCCESS Image is OK
578 @retval EFI_SECURITY_VIOLATION Image is illegal
579
580 **/
581 EFI_STATUS
582 VerifyPeim (
583 IN PEI_CORE_INSTANCE *PrivateData,
584 IN EFI_PEI_FV_HANDLE VolumeHandle,
585 IN EFI_PEI_FILE_HANDLE FileHandle
586 );
587
588 /**
589
590 Gets the pointer to the HOB List.
591
592
593 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
594 @param HobList Pointer to the HOB List.
595
596 @retval EFI_SUCCESS Get the pointer of HOB List
597 @retval EFI_NOT_AVAILABLE_YET the HOB List is not yet published
598 @retval EFI_INVALID_PARAMETER HobList is NULL (in debug mode)
599
600 **/
601 EFI_STATUS
602 EFIAPI
603 PeiGetHobList (
604 IN CONST EFI_PEI_SERVICES **PeiServices,
605 IN OUT VOID **HobList
606 );
607
608 /**
609 Add a new HOB to the HOB List.
610
611 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
612 @param Type Type of the new HOB.
613 @param Length Length of the new HOB to allocate.
614 @param Hob Pointer to the new HOB.
615
616 @return EFI_SUCCESS Success to create hob.
617 @retval EFI_INVALID_PARAMETER if Hob is NULL
618 @retval EFI_NOT_AVAILABLE_YET if HobList is still not available.
619 @retval EFI_OUT_OF_RESOURCES if there is no more memory to grow the Hoblist.
620
621 **/
622 EFI_STATUS
623 EFIAPI
624 PeiCreateHob (
625 IN CONST EFI_PEI_SERVICES **PeiServices,
626 IN UINT16 Type,
627 IN UINT16 Length,
628 IN OUT VOID **Hob
629 );
630
631 /**
632
633 Builds a Handoff Information Table HOB
634
635 @param BootMode - Current Bootmode
636 @param MemoryBegin - Start Memory Address.
637 @param MemoryLength - Length of Memory.
638
639 @return EFI_SUCCESS Always success to initialize HOB.
640
641 **/
642 EFI_STATUS
643 PeiCoreBuildHobHandoffInfoTable (
644 IN EFI_BOOT_MODE BootMode,
645 IN EFI_PHYSICAL_ADDRESS MemoryBegin,
646 IN UINT64 MemoryLength
647 );
648
649
650 //
651 // FFS Fw Volume support functions
652 //
653 /**
654 Searches for the next matching file in the firmware volume.
655
656 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
657 @param SearchType Filter to find only files of this type.
658 Type EFI_FV_FILETYPE_ALL causes no filtering to be done.
659 @param FvHandle Handle of firmware volume in which to search.
660 @param FileHandle On entry, points to the current handle from which to begin searching or NULL to start
661 at the beginning of the firmware volume. On exit, points the file handle of the next file
662 in the volume or NULL if there are no more files.
663
664 @retval EFI_NOT_FOUND The file was not found.
665 @retval EFI_NOT_FOUND The header checksum was not zero.
666 @retval EFI_SUCCESS The file was found.
667
668 **/
669 EFI_STATUS
670 EFIAPI
671 PeiFfsFindNextFile (
672 IN CONST EFI_PEI_SERVICES **PeiServices,
673 IN UINT8 SearchType,
674 IN EFI_PEI_FV_HANDLE FvHandle,
675 IN OUT EFI_PEI_FILE_HANDLE *FileHandle
676 );
677
678 /**
679 Searches for the next matching section within the specified file.
680
681 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation
682 @param SectionType Filter to find only sections of this type.
683 @param FileHandle Pointer to the current file to search.
684 @param SectionData A pointer to the discovered section, if successful.
685 NULL if section not found
686
687 @retval EFI_NOT_FOUND The section was not found.
688 @retval EFI_SUCCESS The section was found.
689
690 **/
691 EFI_STATUS
692 EFIAPI
693 PeiFfsFindSectionData (
694 IN CONST EFI_PEI_SERVICES **PeiServices,
695 IN EFI_SECTION_TYPE SectionType,
696 IN EFI_PEI_FILE_HANDLE FileHandle,
697 OUT VOID **SectionData
698 );
699
700 /**
701 Search the firmware volumes by index
702
703 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation
704 @param Instance This instance of the firmware volume to find. The value 0 is the Boot Firmware
705 Volume (BFV).
706 @param VolumeHandle On exit, points to the next volume handle or NULL if it does not exist.
707
708 @retval EFI_INVALID_PARAMETER VolumeHandle is NULL
709 @retval EFI_NOT_FOUND The volume was not found.
710 @retval EFI_SUCCESS The volume was found.
711
712 **/
713 EFI_STATUS
714 EFIAPI
715 PeiFfsFindNextVolume (
716 IN CONST EFI_PEI_SERVICES **PeiServices,
717 IN UINTN Instance,
718 IN OUT EFI_PEI_FV_HANDLE *VolumeHandle
719 );
720
721 //
722 // Memory support functions
723 //
724 /**
725
726 Initialize the memory services.
727
728 @param PrivateData PeiCore's private data structure
729 @param SecCoreData Points to a data structure containing SEC to PEI handoff data, such as the size
730 and location of temporary RAM, the stack location and the BFV location.
731 @param OldCoreData Pointer to the PEI Core data.
732 NULL if being run in non-permament memory mode.
733
734 **/
735 VOID
736 InitializeMemoryServices (
737 IN PEI_CORE_INSTANCE *PrivateData,
738 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
739 IN PEI_CORE_INSTANCE *OldCoreData
740 );
741
742 /**
743
744 Install the permanent memory is now available.
745 Creates HOB (PHIT and Stack).
746
747 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
748 @param MemoryBegin Start of memory address.
749 @param MemoryLength Length of memory.
750
751 @return EFI_SUCCESS Always success.
752
753 **/
754 EFI_STATUS
755 EFIAPI
756 PeiInstallPeiMemory (
757 IN CONST EFI_PEI_SERVICES **PeiServices,
758 IN EFI_PHYSICAL_ADDRESS MemoryBegin,
759 IN UINT64 MemoryLength
760 );
761
762 /**
763
764 Memory allocation service on permanent memory,
765 not usable prior to the memory installation.
766
767
768 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
769 @param MemoryType Type of memory to allocate.
770 @param Pages Number of pages to allocate.
771 @param Memory Pointer of memory allocated.
772
773 @retval EFI_SUCCESS The allocation was successful
774 @retval EFI_INVALID_PARAMETER Only AllocateAnyAddress is supported.
775 @retval EFI_NOT_AVAILABLE_YET Called with permanent memory not available
776 @retval EFI_OUT_OF_RESOURCES There is not enough HOB heap to satisfy the requirement
777 to allocate the number of pages.
778
779 **/
780 EFI_STATUS
781 EFIAPI
782 PeiAllocatePages (
783 IN CONST EFI_PEI_SERVICES **PeiServices,
784 IN EFI_MEMORY_TYPE MemoryType,
785 IN UINTN Pages,
786 OUT EFI_PHYSICAL_ADDRESS *Memory
787 );
788
789 /**
790
791 Memory allocation service on the temporary memory.
792
793
794 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
795 @param Size Amount of memory required
796 @param Buffer Address of pointer to the buffer
797
798 @retval EFI_SUCCESS The allocation was successful
799 @retval EFI_OUT_OF_RESOURCES There is not enough heap to satisfy the requirement
800 to allocate the requested size.
801
802 **/
803 EFI_STATUS
804 EFIAPI
805 PeiAllocatePool (
806 IN CONST EFI_PEI_SERVICES **PeiServices,
807 IN UINTN Size,
808 OUT VOID **Buffer
809 );
810
811 /**
812
813 Routine for load image file.
814
815
816 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
817 @param FileHandle Pointer to the FFS file header of the image.
818 @param EntryPoint Pointer to entry point of specified image file for output.
819 @param AuthenticationState Pointer to attestation authentication state of image.
820
821 @retval EFI_SUCCESS Image is successfully loaded.
822 @retval EFI_NOT_FOUND Fail to locate necessary PPI
823 @retval Others Fail to load file.
824
825 **/
826 EFI_STATUS
827 PeiLoadImage (
828 IN CONST EFI_PEI_SERVICES **PeiServices,
829 IN EFI_PEI_FILE_HANDLE FileHandle,
830 OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
831 OUT UINT32 *AuthenticationState
832 );
833
834 /**
835
836 Core version of the Status Code reporter
837
838
839 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
840 @param CodeType Type of Status Code.
841 @param Value Value to output for Status Code.
842 @param Instance Instance Number of this status code.
843 @param CallerId ID of the caller of this status code.
844 @param Data Optional data associated with this status code.
845
846 @retval EFI_SUCCESS if status code is successfully reported
847 @retval EFI_NOT_AVAILABLE_YET if StatusCodePpi has not been installed
848
849 **/
850 EFI_STATUS
851 EFIAPI
852 PeiReportStatusCode (
853 IN CONST EFI_PEI_SERVICES **PeiServices,
854 IN EFI_STATUS_CODE_TYPE CodeType,
855 IN EFI_STATUS_CODE_VALUE Value,
856 IN UINT32 Instance,
857 IN CONST EFI_GUID *CallerId,
858 IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL
859 );
860
861 /**
862
863 Core version of the Reset System
864
865
866 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
867
868 @retval EFI_NOT_AVAILABLE_YET PPI not available yet.
869 @retval EFI_DEVICE_ERROR Did not reset system.
870 Otherwise, resets the system.
871
872 **/
873 EFI_STATUS
874 EFIAPI
875 PeiResetSystem (
876 IN CONST EFI_PEI_SERVICES **PeiServices
877 );
878
879 /**
880
881 Initialize PeiCore Fv List.
882
883
884 @param PrivateData - Pointer to PEI_CORE_INSTANCE.
885 @param SecCoreData - Pointer to EFI_SEC_PEI_HAND_OFF.
886
887 **/
888 VOID
889 PeiInitializeFv (
890 IN PEI_CORE_INSTANCE *PrivateData,
891 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData
892 );
893
894 /**
895 Process Firmware Volum Information once FvInfoPPI install.
896
897 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
898 @param NotifyDescriptor Address of the notification descriptor data structure.
899 @param Ppi Address of the PPI that was installed.
900
901 @retval EFI_SUCCESS if the interface could be successfully installed
902
903 **/
904 EFI_STATUS
905 EFIAPI
906 FirmwareVolmeInfoPpiNotifyCallback (
907 IN EFI_PEI_SERVICES **PeiServices,
908 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
909 IN VOID *Ppi
910 );
911
912 /**
913
914 Given the input VolumeHandle, search for the next matching name file.
915
916 @param FileName File name to search.
917 @param VolumeHandle The current FV to search.
918 @param FileHandle Pointer to the file matching name in VolumeHandle.
919 NULL if file not found
920
921 @retval EFI_NOT_FOUND No files matching the search criteria were found
922 @retval EFI_SUCCESS Success to search given file
923
924 **/
925 EFI_STATUS
926 EFIAPI
927 PeiFfsFindFileByName (
928 IN CONST EFI_GUID *FileName,
929 IN EFI_PEI_FV_HANDLE VolumeHandle,
930 OUT EFI_PEI_FILE_HANDLE *FileHandle
931 );
932
933 /**
934 Returns information about a specific file.
935
936 @param FileHandle Handle of the file.
937 @param FileInfo Upon exit, points to the file's information.
938
939 @retval EFI_INVALID_PARAMETER If FileInfo is NULL.
940 @retval EFI_INVALID_PARAMETER If FileHandle does not represent a valid file.
941 @retval EFI_SUCCESS File information returned.
942
943 **/
944 EFI_STATUS
945 EFIAPI
946 PeiFfsGetFileInfo (
947 IN EFI_PEI_FILE_HANDLE FileHandle,
948 OUT EFI_FV_FILE_INFO *FileInfo
949 );
950
951 /**
952 Returns information about the specified volume.
953
954 @param VolumeHandle Handle of the volume.
955 @param VolumeInfo Upon exit, points to the volume's information.
956
957 @retval EFI_INVALID_PARAMETER If VolumeHandle does not represent a valid volume.
958 @retval EFI_INVALID_PARAMETER If VolumeInfo is NULL.
959 @retval EFI_SUCCESS Volume information returned.
960 **/
961 EFI_STATUS
962 EFIAPI
963 PeiFfsGetVolumeInfo (
964 IN EFI_PEI_FV_HANDLE VolumeHandle,
965 OUT EFI_FV_INFO *VolumeInfo
966 );
967
968 /**
969 This routine enable a PEIM to register itself to shadow when PEI Foundation
970 discovery permanent memory.
971
972 @param FileHandle File handle of a PEIM.
973
974 @retval EFI_NOT_FOUND The file handle doesn't point to PEIM itself.
975 @retval EFI_ALREADY_STARTED Indicate that the PEIM has been registered itself.
976 @retval EFI_SUCCESS Successfully to register itself.
977
978 **/
979 EFI_STATUS
980 EFIAPI
981 PeiRegisterForShadow (
982 IN EFI_PEI_FILE_HANDLE FileHandle
983 );
984
985 /**
986 Initialize image service that install PeiLoadFilePpi.
987
988 @param PrivateData Pointer to PeiCore's private data structure PEI_CORE_INSTANCE.
989 @param OldCoreData Pointer to Old PeiCore's private data.
990 If NULL, PeiCore is entered at first time, stack/heap in temporary memory.
991 If not NULL, PeiCore is entered at second time, stack/heap has been moved
992 to permenent memory.
993
994 **/
995 VOID
996 InitializeImageServices (
997 IN PEI_CORE_INSTANCE *PrivateData,
998 IN PEI_CORE_INSTANCE *OldCoreData
999 );
1000
1001 /**
1002 The wrapper function of PeiLoadImageLoadImage().
1003
1004 @param This Pointer to EFI_PEI_LOAD_FILE_PPI.
1005 @param FileHandle Pointer to the FFS file header of the image.
1006 @param ImageAddressArg Pointer to PE/TE image.
1007 @param ImageSizeArg Size of PE/TE image.
1008 @param EntryPoint Pointer to entry point of specified image file for output.
1009 @param AuthenticationState Pointer to attestation authentication state of image.
1010
1011 @return Status of PeiLoadImageLoadImage().
1012
1013 **/
1014 EFI_STATUS
1015 EFIAPI
1016 PeiLoadImageLoadImageWrapper (
1017 IN CONST EFI_PEI_LOAD_FILE_PPI *This,
1018 IN EFI_PEI_FILE_HANDLE FileHandle,
1019 OUT EFI_PHYSICAL_ADDRESS *ImageAddressArg, OPTIONAL
1020 OUT UINT64 *ImageSizeArg, OPTIONAL
1021 OUT EFI_PHYSICAL_ADDRESS *EntryPoint,
1022 OUT UINT32 *AuthenticationState
1023 );
1024
1025 /**
1026
1027 Provide a callback for when the security PPI is installed.
1028
1029 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
1030 @param NotifyDescriptor The descriptor for the notification event.
1031 @param Ppi Pointer to the PPI in question.
1032
1033 @return Always success
1034
1035 **/
1036 EFI_STATUS
1037 EFIAPI
1038 SecurityPpiNotifyCallback (
1039 IN EFI_PEI_SERVICES **PeiServices,
1040 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
1041 IN VOID *Ppi
1042 );
1043
1044 /**
1045 Get Fv image from the FV type file, then install FV INFO ppi, Build FV hob.
1046
1047 @param ParentFvCoreHandle Pointer of EFI_CORE_FV_HANDLE to parent Fv image that contain this Fv image.
1048 @param ParentFvFileHandle File handle of a Fv type file that contain this Fv image.
1049
1050 @retval EFI_NOT_FOUND FV image can't be found.
1051 @retval EFI_SUCCESS Successfully to process it.
1052 @retval EFI_OUT_OF_RESOURCES Can not allocate page when aligning FV image
1053 @retval Others Can not find EFI_SECTION_FIRMWARE_VOLUME_IMAGE section
1054
1055 **/
1056 EFI_STATUS
1057 ProcessFvFile (
1058 IN PEI_CORE_FV_HANDLE *ParentFvCoreHandle,
1059 IN EFI_PEI_FILE_HANDLE ParentFvFileHandle
1060 );
1061
1062 /**
1063 Get instance of PEI_CORE_FV_HANDLE for next volume according to given index.
1064
1065 This routine also will install FvInfo ppi for FV hob in PI ways.
1066
1067 @param Private Pointer of PEI_CORE_INSTANCE
1068 @param Instance The index of FV want to be searched.
1069
1070 @return Instance of PEI_CORE_FV_HANDLE.
1071 **/
1072 PEI_CORE_FV_HANDLE *
1073 FindNextCoreFvHandle (
1074 IN PEI_CORE_INSTANCE *Private,
1075 IN UINTN Instance
1076 );
1077
1078 //
1079 // Default EFI_PEI_CPU_IO_PPI support for EFI_PEI_SERVICES table when PeiCore initialization.
1080 //
1081
1082 /**
1083 Memory-based read services.
1084
1085 This function is to perform the Memory Access Read service based on installed
1086 instance of the EFI_PEI_CPU_IO_PPI.
1087 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1088 return EFI_NOT_YET_AVAILABLE.
1089
1090 @param PeiServices An indirect pointer to the PEI Services Table
1091 published by the PEI Foundation.
1092 @param This Pointer to local data for the interface.
1093 @param Width The width of the access. Enumerated in bytes.
1094 @param Address The physical address of the access.
1095 @param Count The number of accesses to perform.
1096 @param Buffer A pointer to the buffer of data.
1097
1098 @retval EFI_SUCCESS The function completed successfully.
1099 @retval EFI_NOT_YET_AVAILABLE The service has not been installed.
1100 **/
1101 EFI_STATUS
1102 EFIAPI
1103 PeiDefaultMemRead (
1104 IN CONST EFI_PEI_SERVICES **PeiServices,
1105 IN CONST EFI_PEI_CPU_IO_PPI *This,
1106 IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
1107 IN UINT64 Address,
1108 IN UINTN Count,
1109 IN OUT VOID *Buffer
1110 );
1111
1112 /**
1113 Memory-based write services.
1114
1115 This function is to perform the Memory Access Write service based on installed
1116 instance of the EFI_PEI_CPU_IO_PPI.
1117 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1118 return EFI_NOT_YET_AVAILABLE.
1119
1120 @param PeiServices An indirect pointer to the PEI Services Table
1121 published by the PEI Foundation.
1122 @param This Pointer to local data for the interface.
1123 @param Width The width of the access. Enumerated in bytes.
1124 @param Address The physical address of the access.
1125 @param Count The number of accesses to perform.
1126 @param Buffer A pointer to the buffer of data.
1127
1128 @retval EFI_SUCCESS The function completed successfully.
1129 @retval EFI_NOT_YET_AVAILABLE The service has not been installed.
1130 **/
1131 EFI_STATUS
1132 EFIAPI
1133 PeiDefaultMemWrite (
1134 IN CONST EFI_PEI_SERVICES **PeiServices,
1135 IN CONST EFI_PEI_CPU_IO_PPI *This,
1136 IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
1137 IN UINT64 Address,
1138 IN UINTN Count,
1139 IN OUT VOID *Buffer
1140 );
1141
1142 /**
1143 IO-based read services.
1144
1145 This function is to perform the IO-base read service for the EFI_PEI_CPU_IO_PPI.
1146 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1147 return EFI_NOT_YET_AVAILABLE.
1148
1149 @param PeiServices An indirect pointer to the PEI Services Table
1150 published by the PEI Foundation.
1151 @param This Pointer to local data for the interface.
1152 @param Width The width of the access. Enumerated in bytes.
1153 @param Address The physical address of the access.
1154 @param Count The number of accesses to perform.
1155 @param Buffer A pointer to the buffer of data.
1156
1157 @retval EFI_SUCCESS The function completed successfully.
1158 @retval EFI_NOT_YET_AVAILABLE The service has not been installed.
1159 **/
1160 EFI_STATUS
1161 EFIAPI
1162 PeiDefaultIoRead (
1163 IN CONST EFI_PEI_SERVICES **PeiServices,
1164 IN CONST EFI_PEI_CPU_IO_PPI *This,
1165 IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
1166 IN UINT64 Address,
1167 IN UINTN Count,
1168 IN OUT VOID *Buffer
1169 );
1170
1171 /**
1172 IO-based write services.
1173
1174 This function is to perform the IO-base write service for the EFI_PEI_CPU_IO_PPI.
1175 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1176 return EFI_NOT_YET_AVAILABLE.
1177
1178 @param PeiServices An indirect pointer to the PEI Services Table
1179 published by the PEI Foundation.
1180 @param This Pointer to local data for the interface.
1181 @param Width The width of the access. Enumerated in bytes.
1182 @param Address The physical address of the access.
1183 @param Count The number of accesses to perform.
1184 @param Buffer A pointer to the buffer of data.
1185
1186 @retval EFI_SUCCESS The function completed successfully.
1187 @retval EFI_NOT_YET_AVAILABLE The service has not been installed.
1188 **/
1189 EFI_STATUS
1190 EFIAPI
1191 PeiDefaultIoWrite (
1192 IN CONST EFI_PEI_SERVICES **PeiServices,
1193 IN CONST EFI_PEI_CPU_IO_PPI *This,
1194 IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
1195 IN UINT64 Address,
1196 IN UINTN Count,
1197 IN OUT VOID *Buffer
1198 );
1199
1200 /**
1201 8-bit I/O read operations.
1202
1203 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1204 return 0.
1205
1206 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1207 @param This Pointer to local data for the interface.
1208 @param Address The physical address of the access.
1209
1210 @return An 8-bit value returned from the I/O space.
1211 **/
1212 UINT8
1213 EFIAPI
1214 PeiDefaultIoRead8 (
1215 IN CONST EFI_PEI_SERVICES **PeiServices,
1216 IN CONST EFI_PEI_CPU_IO_PPI *This,
1217 IN UINT64 Address
1218 );
1219
1220 /**
1221 Reads an 16-bit I/O port.
1222
1223 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1224 return 0.
1225
1226 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1227 @param This Pointer to local data for the interface.
1228 @param Address The physical address of the access.
1229
1230 @return A 16-bit value returned from the I/O space.
1231 **/
1232 UINT16
1233 EFIAPI
1234 PeiDefaultIoRead16 (
1235 IN CONST EFI_PEI_SERVICES **PeiServices,
1236 IN CONST EFI_PEI_CPU_IO_PPI *This,
1237 IN UINT64 Address
1238 );
1239
1240 /**
1241 Reads an 32-bit I/O port.
1242
1243 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1244 return 0.
1245
1246 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1247 @param This Pointer to local data for the interface.
1248 @param Address The physical address of the access.
1249
1250 @return A 32-bit value returned from the I/O space.
1251 **/
1252 UINT32
1253 EFIAPI
1254 PeiDefaultIoRead32 (
1255 IN CONST EFI_PEI_SERVICES **PeiServices,
1256 IN CONST EFI_PEI_CPU_IO_PPI *This,
1257 IN UINT64 Address
1258 );
1259
1260 /**
1261 Reads an 64-bit I/O port.
1262
1263 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1264 return 0.
1265
1266 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1267 @param This Pointer to local data for the interface.
1268 @param Address The physical address of the access.
1269
1270 @return A 64-bit value returned from the I/O space.
1271 **/
1272 UINT64
1273 EFIAPI
1274 PeiDefaultIoRead64 (
1275 IN CONST EFI_PEI_SERVICES **PeiServices,
1276 IN CONST EFI_PEI_CPU_IO_PPI *This,
1277 IN UINT64 Address
1278 );
1279
1280 /**
1281 8-bit I/O write operations.
1282
1283 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1284 @param This Pointer to local data for the interface.
1285 @param Address The physical address of the access.
1286 @param Data The data to write.
1287 **/
1288 VOID
1289 EFIAPI
1290 PeiDefaultIoWrite8 (
1291 IN CONST EFI_PEI_SERVICES **PeiServices,
1292 IN CONST EFI_PEI_CPU_IO_PPI *This,
1293 IN UINT64 Address,
1294 IN UINT8 Data
1295 );
1296
1297 /**
1298 16-bit I/O write operations.
1299
1300 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1301 @param This Pointer to local data for the interface.
1302 @param Address The physical address of the access.
1303 @param Data The data to write.
1304 **/
1305 VOID
1306 EFIAPI
1307 PeiDefaultIoWrite16 (
1308 IN CONST EFI_PEI_SERVICES **PeiServices,
1309 IN CONST EFI_PEI_CPU_IO_PPI *This,
1310 IN UINT64 Address,
1311 IN UINT16 Data
1312 );
1313
1314 /**
1315 32-bit I/O write operations.
1316
1317 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1318 @param This Pointer to local data for the interface.
1319 @param Address The physical address of the access.
1320 @param Data The data to write.
1321 **/
1322 VOID
1323 EFIAPI
1324 PeiDefaultIoWrite32 (
1325 IN CONST EFI_PEI_SERVICES **PeiServices,
1326 IN CONST EFI_PEI_CPU_IO_PPI *This,
1327 IN UINT64 Address,
1328 IN UINT32 Data
1329 );
1330
1331 /**
1332 64-bit I/O write operations.
1333
1334 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1335 @param This Pointer to local data for the interface.
1336 @param Address The physical address of the access.
1337 @param Data The data to write.
1338 **/
1339 VOID
1340 EFIAPI
1341 PeiDefaultIoWrite64 (
1342 IN CONST EFI_PEI_SERVICES **PeiServices,
1343 IN CONST EFI_PEI_CPU_IO_PPI *This,
1344 IN UINT64 Address,
1345 IN UINT64 Data
1346 );
1347
1348 /**
1349 8-bit memory read operations.
1350
1351 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1352 return 0.
1353
1354 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1355 @param This Pointer to local data for the interface.
1356 @param Address The physical address of the access.
1357
1358 @return An 8-bit value returned from the memory space.
1359
1360 **/
1361 UINT8
1362 EFIAPI
1363 PeiDefaultMemRead8 (
1364 IN CONST EFI_PEI_SERVICES **PeiServices,
1365 IN CONST EFI_PEI_CPU_IO_PPI *This,
1366 IN UINT64 Address
1367 );
1368
1369 /**
1370 16-bit memory read operations.
1371
1372 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1373 return 0.
1374
1375 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1376 @param This Pointer to local data for the interface.
1377 @param Address The physical address of the access.
1378
1379 @return An 16-bit value returned from the memory space.
1380
1381 **/
1382 UINT16
1383 EFIAPI
1384 PeiDefaultMemRead16 (
1385 IN CONST EFI_PEI_SERVICES **PeiServices,
1386 IN CONST EFI_PEI_CPU_IO_PPI *This,
1387 IN UINT64 Address
1388 );
1389
1390 /**
1391 32-bit memory read operations.
1392
1393 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1394 return 0.
1395
1396 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1397 @param This Pointer to local data for the interface.
1398 @param Address The physical address of the access.
1399
1400 @return An 32-bit value returned from the memory space.
1401
1402 **/
1403 UINT32
1404 EFIAPI
1405 PeiDefaultMemRead32 (
1406 IN CONST EFI_PEI_SERVICES **PeiServices,
1407 IN CONST EFI_PEI_CPU_IO_PPI *This,
1408 IN UINT64 Address
1409 );
1410
1411 /**
1412 64-bit memory read operations.
1413
1414 If the EFI_PEI_CPU_IO_PPI is not installed by platform/chipset PEIM, then
1415 return 0.
1416
1417 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1418 @param This Pointer to local data for the interface.
1419 @param Address The physical address of the access.
1420
1421 @return An 64-bit value returned from the memory space.
1422
1423 **/
1424 UINT64
1425 EFIAPI
1426 PeiDefaultMemRead64 (
1427 IN CONST EFI_PEI_SERVICES **PeiServices,
1428 IN CONST EFI_PEI_CPU_IO_PPI *This,
1429 IN UINT64 Address
1430 );
1431
1432 /**
1433 8-bit memory write operations.
1434
1435 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1436 @param This Pointer to local data for the interface.
1437 @param Address The physical address of the access.
1438 @param Data The data to write.
1439
1440 **/
1441 VOID
1442 EFIAPI
1443 PeiDefaultMemWrite8 (
1444 IN CONST EFI_PEI_SERVICES **PeiServices,
1445 IN CONST EFI_PEI_CPU_IO_PPI *This,
1446 IN UINT64 Address,
1447 IN UINT8 Data
1448 );
1449
1450 /**
1451 16-bit memory write operations.
1452
1453 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1454 @param This Pointer to local data for the interface.
1455 @param Address The physical address of the access.
1456 @param Data The data to write.
1457
1458 **/
1459 VOID
1460 EFIAPI
1461 PeiDefaultMemWrite16 (
1462 IN CONST EFI_PEI_SERVICES **PeiServices,
1463 IN CONST EFI_PEI_CPU_IO_PPI *This,
1464 IN UINT64 Address,
1465 IN UINT16 Data
1466 );
1467
1468 /**
1469 32-bit memory write operations.
1470
1471 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1472 @param This Pointer to local data for the interface.
1473 @param Address The physical address of the access.
1474 @param Data The data to write.
1475
1476 **/
1477 VOID
1478 EFIAPI
1479 PeiDefaultMemWrite32 (
1480 IN CONST EFI_PEI_SERVICES **PeiServices,
1481 IN CONST EFI_PEI_CPU_IO_PPI *This,
1482 IN UINT64 Address,
1483 IN UINT32 Data
1484 );
1485
1486 /**
1487 64-bit memory write operations.
1488
1489 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1490 @param This Pointer to local data for the interface.
1491 @param Address The physical address of the access.
1492 @param Data The data to write.
1493
1494 **/
1495 VOID
1496 EFIAPI
1497 PeiDefaultMemWrite64 (
1498 IN CONST EFI_PEI_SERVICES **PeiServices,
1499 IN CONST EFI_PEI_CPU_IO_PPI *This,
1500 IN UINT64 Address,
1501 IN UINT64 Data
1502 );
1503
1504 extern EFI_PEI_CPU_IO_PPI gPeiDefaultCpuIoPpi;
1505
1506 //
1507 // Default EFI_PEI_PCI_CFG2_PPI support for EFI_PEI_SERVICES table when PeiCore initialization.
1508 //
1509
1510 /**
1511 Reads from a given location in the PCI configuration space.
1512
1513 If the EFI_PEI_PCI_CFG2_PPI is not installed by platform/chipset PEIM, then
1514 return EFI_NOT_YET_AVAILABLE.
1515
1516 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1517 @param This Pointer to local data for the interface.
1518 @param Width The width of the access. Enumerated in bytes.
1519 See EFI_PEI_PCI_CFG_PPI_WIDTH above.
1520 @param Address The physical address of the access. The format of
1521 the address is described by EFI_PEI_PCI_CFG_PPI_PCI_ADDRESS.
1522 @param Buffer A pointer to the buffer of data.
1523
1524 @retval EFI_SUCCESS The function completed successfully.
1525 @retval EFI_INVALID_PARAMETER The invalid access width.
1526 @retval EFI_NOT_YET_AVAILABLE If the EFI_PEI_PCI_CFG2_PPI is not installed by platform/chipset PEIM.
1527
1528 **/
1529 EFI_STATUS
1530 EFIAPI
1531 PeiDefaultPciCfg2Read (
1532 IN CONST EFI_PEI_SERVICES **PeiServices,
1533 IN CONST EFI_PEI_PCI_CFG2_PPI *This,
1534 IN EFI_PEI_PCI_CFG_PPI_WIDTH Width,
1535 IN UINT64 Address,
1536 IN OUT VOID *Buffer
1537 );
1538
1539 /**
1540 Write to a given location in the PCI configuration space.
1541
1542 If the EFI_PEI_PCI_CFG2_PPI is not installed by platform/chipset PEIM, then
1543 return EFI_NOT_YET_AVAILABLE.
1544
1545 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.
1546 @param This Pointer to local data for the interface.
1547 @param Width The width of the access. Enumerated in bytes.
1548 See EFI_PEI_PCI_CFG_PPI_WIDTH above.
1549 @param Address The physical address of the access. The format of
1550 the address is described by EFI_PEI_PCI_CFG_PPI_PCI_ADDRESS.
1551 @param Buffer A pointer to the buffer of data.
1552
1553 @retval EFI_SUCCESS The function completed successfully.
1554 @retval EFI_INVALID_PARAMETER The invalid access width.
1555 @retval EFI_NOT_YET_AVAILABLE If the EFI_PEI_PCI_CFG2_PPI is not installed by platform/chipset PEIM.
1556 **/
1557 EFI_STATUS
1558 EFIAPI
1559 PeiDefaultPciCfg2Write (
1560 IN CONST EFI_PEI_SERVICES **PeiServices,
1561 IN CONST EFI_PEI_PCI_CFG2_PPI *This,
1562 IN EFI_PEI_PCI_CFG_PPI_WIDTH Width,
1563 IN UINT64 Address,
1564 IN OUT VOID *Buffer
1565 );
1566
1567 /**
1568 This function performs a read-modify-write operation on the contents from a given
1569 location in the PCI configuration space.
1570
1571 @param PeiServices An indirect pointer to the PEI Services Table
1572 published by the PEI Foundation.
1573 @param This Pointer to local data for the interface.
1574 @param Width The width of the access. Enumerated in bytes. Type
1575 EFI_PEI_PCI_CFG_PPI_WIDTH is defined in Read().
1576 @param Address The physical address of the access.
1577 @param SetBits Points to value to bitwise-OR with the read configuration value.
1578 The size of the value is determined by Width.
1579 @param ClearBits Points to the value to negate and bitwise-AND with the read configuration value.
1580 The size of the value is determined by Width.
1581
1582 @retval EFI_SUCCESS The function completed successfully.
1583 @retval EFI_INVALID_PARAMETER The invalid access width.
1584 @retval EFI_NOT_YET_AVAILABLE If the EFI_PEI_PCI_CFG2_PPI is not installed by platform/chipset PEIM.
1585 **/
1586 EFI_STATUS
1587 EFIAPI
1588 PeiDefaultPciCfg2Modify (
1589 IN CONST EFI_PEI_SERVICES **PeiServices,
1590 IN CONST EFI_PEI_PCI_CFG2_PPI *This,
1591 IN EFI_PEI_PCI_CFG_PPI_WIDTH Width,
1592 IN UINT64 Address,
1593 IN VOID *SetBits,
1594 IN VOID *ClearBits
1595 );
1596
1597 extern EFI_PEI_PCI_CFG2_PPI gPeiDefaultPciCfg2Ppi;
1598
1599 /**
1600 After PeiCore image is shadowed into permanent memory, all build-in FvPpi should
1601 be re-installed with the instance in permanent memory and all cached FvPpi pointers in
1602 PrivateData->Fv[] array should be fixed up to be pointed to the one in permenant
1603 memory.
1604
1605 @param PrivateData Pointer to PEI_CORE_INSTANCE.
1606 **/
1607 VOID
1608 PeiReinitializeFv (
1609 IN PEI_CORE_INSTANCE *PrivateData
1610 );
1611
1612 #endif