]> git.proxmox.com Git - mirror_edk2.git/blob - OldMdePkg/Include/Peim/PeiCis.h
Moved the MdePkg to OldMdePkg so that new code in MdePkg does not break existing...
[mirror_edk2.git] / OldMdePkg / Include / Peim / PeiCis.h
1 /** @file
2 Framework PEI master include file. This file should match the PEI CIS spec.
3
4 Copyright (c) 2006, 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 Module Name: PeiCis.h
14
15 @par Revision Reference:
16 Version 0.91.
17
18 **/
19
20 #ifndef __PEIM_CIS_H__
21 #define __PEIM_CIS_H__
22
23 #include <Common/MultiPhase.h>
24 #include <Common/BootMode.h>
25 #include <Common/Hob.h>
26 #include <Common/FirmwareVolumeImageFormat.h>
27 #include <Common/FirmwareVolumeHeader.h>
28 #include <Common/FirmwareFileSystem.h>
29 #include <Common/Dependency.h>
30
31 #define TIANO_ERROR(a) (MAX_2_BITS | (a))
32
33 #if (EFI_SPECIFICATION_VERSION < 0x00020000)
34 //
35 // Tiano added a couple of return types. These are owned by UEFI specification
36 // and Tiano can not use them. Thus for UEFI 2.0/R9 support we moved the values
37 // to a UEFI OEM extension range to conform to UEFI specification.
38 //
39 #define EFI_NOT_AVAILABLE_YET EFIERR (28)
40 #define EFI_UNLOAD_IMAGE EFIERR (29)
41 #else
42 #define EFI_NOT_AVAILABLE_YET TIANO_ERROR (0)
43 #define EFI_UNLOAD_IMAGE TIANO_ERROR (1)
44 #endif
45
46 //
47 // Declare forward referenced data structures
48 //
49 typedef struct _EFI_PEI_SERVICES EFI_PEI_SERVICES;
50 typedef struct _EFI_PEI_NOTIFY_DESCRIPTOR EFI_PEI_NOTIFY_DESCRIPTOR;
51
52
53 #include <Ppi/CpuIo.h>
54 #include <Ppi/PciCfg.h>
55
56 //
57 // PEI Specification Revision information
58 //
59 #define PEI_SPECIFICATION_MAJOR_REVISION 0
60 #define PEI_SPECIFICATION_MINOR_REVISION 91
61
62 /**
63 The PEI Dispatcher will invoke each PEIM one time. During this pass, the PEI
64 Dispatcher will pass control to the PEIM at the AddressOfEntryPoint in the PE Header.
65
66 @param FfsHeader Pointer to the FFS file header.
67 @param PeiServices Describes the list of possible PEI Services.
68
69 @return Status code
70
71 **/
72 typedef
73 EFI_STATUS
74 (EFIAPI *EFI_PEIM_ENTRY_POINT)(
75 IN EFI_FFS_FILE_HEADER *FfsHeader,
76 IN EFI_PEI_SERVICES **PeiServices
77 );
78
79 /**
80 Entry point of the notification callback function itself within the PEIM.
81
82 @param PeiServices Indirect reference to the PEI Services Table.
83 @param NotifyDescriptor Address of the notification descriptor data structure.
84 @param Ppi Address of the PPI that was installed.
85
86 @return Status code
87
88 **/
89 typedef
90 EFI_STATUS
91 (EFIAPI *EFI_PEIM_NOTIFY_ENTRY_POINT) (
92 IN EFI_PEI_SERVICES **PeiServices,
93 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
94 IN VOID *Ppi
95 );
96
97 //
98 // PEI Ppi Services List Descriptors
99 //
100 #define EFI_PEI_PPI_DESCRIPTOR_PIC 0x00000001
101 #define EFI_PEI_PPI_DESCRIPTOR_PPI 0x00000010
102 #define EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK 0x00000020
103 #define EFI_PEI_PPI_DESCRIPTOR_NOTIFY_DISPATCH 0x00000040
104 #define EFI_PEI_PPI_DESCRIPTOR_NOTIFY_TYPES 0x00000060
105 #define EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST 0x80000000
106
107 typedef struct {
108 UINTN Flags;
109 EFI_GUID *Guid;
110 VOID *Ppi;
111 } EFI_PEI_PPI_DESCRIPTOR;
112
113 struct _EFI_PEI_NOTIFY_DESCRIPTOR {
114 UINTN Flags;
115 EFI_GUID *Guid;
116 EFI_PEIM_NOTIFY_ENTRY_POINT Notify;
117 };
118
119 /**
120 This service is the first one provided by the PEI Foundation. This function
121 installs an interface in the PEI PPI database by GUID. The purpose of the
122 service is to publish an interface that other parties can use to call
123 additional PEIMs.
124
125 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table
126 published by the PEI Foundation.
127 @param PpiList A pointer to the list of interfaces that the caller shall install.
128
129 @retval EFI_SUCCESS The interface was successfully installed.
130 @retval EFI_INVALID_PARAMETER The PpiList pointer is NULL or Any of the PEI PPI descriptors in the list do not have the EFI_PEI_PPI_DESCRIPTOR_PPI bit set in the Flags field.
131 @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.
132
133 **/
134 typedef
135 EFI_STATUS
136 (EFIAPI *EFI_PEI_INSTALL_PPI) (
137 IN EFI_PEI_SERVICES **PeiServices,
138 IN EFI_PEI_PPI_DESCRIPTOR *PpiList
139 );
140
141 /**
142 This function reinstalls an interface in the PEI PPI database by GUID.
143 The purpose of the service is to publish an interface that other parties
144 can use to replace a same-named interface in the protocol database
145 with a different interface.
146
147 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table
148 published by the PEI Foundation.
149 @param OldPpi A pointer to the former PPI in the database.
150 @param NewPpi A pointer to the new interfaces that the caller shall install.
151
152 @retval EFI_SUCCESS The interface was successfully installed.
153 @retval EFI_INVALID_PARAMETER The PpiList pointer is NULL or Any of the PEI PPI descriptors in the
154 list do not have the EFI_PEI_PPI_DESCRIPTOR_PPI bit set in the Flags field.
155 @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.
156 @retval EFI_NOT_FOUND The PPI for which the reinstallation was requested has not been installed.
157
158 **/
159 typedef
160 EFI_STATUS
161 (EFIAPI *EFI_PEI_REINSTALL_PPI) (
162 IN EFI_PEI_SERVICES **PeiServices,
163 IN EFI_PEI_PPI_DESCRIPTOR *OldPpi,
164 IN EFI_PEI_PPI_DESCRIPTOR *NewPpi
165 );
166
167 /**
168 This function locates an interface in the PEI PPI database by GUID.
169
170 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES published by the PEI Foundation.
171 @param Guid A pointer to the GUID whose corresponding interface needs to be found.
172 @param Instance The N-th instance of the interface that is required.
173 @param PpiDescriptor A pointer to instance of the EFI_PEI_PPI_DESCRIPTOR.
174 @param Ppi A pointer to the instance of the interface.
175
176 @retval EFI_SUCCESS The interface was successfully returned.
177 @retval EFI_NOT_FOUND The PPI descriptor is not found in the database.
178
179 **/
180 typedef
181 EFI_STATUS
182 (EFIAPI *EFI_PEI_LOCATE_PPI) (
183 IN EFI_PEI_SERVICES **PeiServices,
184 IN EFI_GUID *Guid,
185 IN UINTN Instance,
186 IN OUT EFI_PEI_PPI_DESCRIPTOR **PpiDescriptor,
187 IN OUT VOID **Ppi
188 );
189
190 /**
191 This function installs a notification service to be called back when a
192 given interface is installed or reinstalled. The purpose of the service
193 is to publish an interface that other parties can use to call additional PPIs
194 that may materialize later.
195
196 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation
197 @param NotifyList A pointer to the list of notification interfaces that the caller shall install.
198
199 @retval EFI_SUCCESS The interface was successfully installed.
200 @retval EFI_INVALID_PARAMETER The PpiList pointer is NULL or Any of the PEI PPI descriptors in the
201 list do not have the EFI_PEI_PPI_DESCRIPTOR_PPI bit set in the Flags field.
202 @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.
203
204 **/
205 typedef
206 EFI_STATUS
207 (EFIAPI *EFI_PEI_NOTIFY_PPI) (
208 IN EFI_PEI_SERVICES **PeiServices,
209 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
210 );
211
212 /**
213 This function returns the present value of the boot mode.
214
215 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
216 @param BootMode A pointer to contain the value of the boot mode.
217
218 @retval EFI_SUCCESS The boot mode was returned successfully.
219
220 **/
221 typedef
222 EFI_STATUS
223 (EFIAPI *EFI_PEI_GET_BOOT_MODE) (
224 IN EFI_PEI_SERVICES **PeiServices,
225 OUT EFI_BOOT_MODE *BootMode
226 );
227
228 /**
229 This function sets the value of the boot mode.
230
231 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation
232 @param BootMode The value of the boot mode to set.
233
234 @retval EFI_SUCCESS The boot mode was returned successfully.
235
236 **/
237 typedef
238 EFI_STATUS
239 (EFIAPI *EFI_PEI_SET_BOOT_MODE) (
240 IN EFI_PEI_SERVICES **PeiServices,
241 IN EFI_BOOT_MODE BootMode
242 );
243
244 /**
245 This function returns the pointer to the list of Hand-Off Blocks (HOBs) in memory.
246
247 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation
248 @param HobList A pointer to the list of HOBs that the PEI Foundation will initialize
249
250 @retval EFI_SUCCESS The list was successfully returned.
251 @retval EFI_NOT_AVAILABLE_YET The HOB list is not yet published.
252
253 **/
254 typedef
255 EFI_STATUS
256 (EFIAPI *EFI_PEI_GET_HOB_LIST) (
257 IN EFI_PEI_SERVICES **PeiServices,
258 IN OUT VOID **HobList
259 );
260
261 /**
262 This service published by the PEI Foundation abstracts the creation of a Hand-Off Block's (HOB's) headers.
263
264 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
265 @param Type The type of HOB to be installed.
266 @param Length The length of the HOB to be added.
267 @param Hob The address of a pointer that will contain the HOB header.
268
269 @retval EFI_SUCCESS The HOB was successfully created.
270 @retval EFI_OUT_OF_RESOURCES There is no additional space for HOB creation.
271
272 **/
273 typedef
274 EFI_STATUS
275 (EFIAPI *EFI_PEI_CREATE_HOB) (
276 IN EFI_PEI_SERVICES **PeiServices,
277 IN UINT16 Type,
278 IN UINT16 Length,
279 IN OUT VOID **Hob
280 );
281
282 /**
283 The purpose of the service is to abstract the capability of the PEI
284 Foundation to discover instances of firmware volumes in the system.
285 Given the input file pointer, this service searches for the next
286 matching file in the Firmware File System (FFS) volume.
287
288 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
289 @param Instance This instance of the firmware volume to find. The value 0 is the Boot Firmware Volume (BFV).
290 @param FwVolHeader Pointer to the firmware volume header of the volume to return.
291
292 @retval EFI_SUCCESS The volume was found.
293 @retval EFI_NOT_FOUND The volume was not found.
294 @retval EFI_INVALID_PARAMETER FwVolHeader is NULL
295
296 **/
297 typedef
298 EFI_STATUS
299 (EFIAPI *EFI_PEI_FFS_FIND_NEXT_VOLUME) (
300 IN EFI_PEI_SERVICES **PeiServices,
301 IN UINTN Instance,
302 IN OUT EFI_FIRMWARE_VOLUME_HEADER **FwVolHeader
303 );
304
305 /**
306 The purpose of the service is to abstract the capability of the PEI
307 Foundation to discover instances of firmware files in the system.
308 Given the input file pointer, this service searches for the next matching
309 file in the Firmware File System (FFS) volume.
310
311 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
312 @param SearchType A filter to find files only of this type.
313 @param FwVolHeader Pointer to the firmware volume header of the volume to search.This parameter
314 must point to a valid FFS volume.
315 @param FileHeader Pointer to the current file from which to begin searching.This pointer will be
316 updated upon return to reflect the file found.
317
318 @retval EFI_SUCCESS The file was found.
319 @retval EFI_NOT_FOUND The file was not found.
320 @retval EFI_NOT_FOUND The header checksum was not zero.
321
322 **/
323 typedef
324 EFI_STATUS
325 (EFIAPI *EFI_PEI_FFS_FIND_NEXT_FILE) (
326 IN EFI_PEI_SERVICES **PeiServices,
327 IN EFI_FV_FILETYPE SearchType,
328 IN EFI_FIRMWARE_VOLUME_HEADER *FwVolHeader,
329 IN OUT EFI_FFS_FILE_HEADER **FileHeader
330 );
331
332 /**
333 Given the input file pointer, this service searches for the next
334 matching file in the Firmware File System (FFS) volume.
335
336 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
337 @param SectionType The value of the section type to find.
338 @param FfsFileHeader A pointer to the file header that contains the set of sections to be searched.
339 @param SectionData A pointer to the discovered section, if successful.
340
341 @retval EFI_SUCCESS The section was found.
342 @retval EFI_NOT_FOUND The section was not found.
343
344 **/
345 typedef
346 EFI_STATUS
347 (EFIAPI *EFI_PEI_FFS_FIND_SECTION_DATA) (
348 IN EFI_PEI_SERVICES **PeiServices,
349 IN EFI_SECTION_TYPE SectionType,
350 IN EFI_FFS_FILE_HEADER *FfsFileHeader,
351 IN OUT VOID **SectionData
352 );
353
354 /**
355 This function registers the found memory configuration with the PEI Foundation.
356
357 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
358 @param MemoryBegin The value of a region of installed memory
359 @param MemoryLength The corresponding length of a region of installed memory.
360
361 @retval EFI_SUCCESS The region was successfully installed in a HOB.
362 @retval EFI_INVALID_PARAMETER MemoryBegin and MemoryLength are illegal for this system.
363 @retval EFI_OUT_OF_RESOURCES There is no additional space for HOB creation.
364
365 **/
366 typedef
367 EFI_STATUS
368 (EFIAPI *EFI_PEI_INSTALL_PEI_MEMORY) (
369 IN EFI_PEI_SERVICES **PeiServices,
370 IN EFI_PHYSICAL_ADDRESS MemoryBegin,
371 IN UINT64 MemoryLength
372 );
373
374 /**
375 The purpose of the service is to publish an interface that allows
376 PEIMs to allocate memory ranges that are managed by the PEI Foundation.
377
378 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
379 @param MemoryType The type of memory to allocate.
380 @param Pages The number of contiguous 4 KB pages to allocate.
381 @param Memory Pointer to a physical address. On output, the address is set to the base
382 of the page range that was allocated.
383
384 @retval EFI_SUCCESS The memory range was successfully allocated.
385 @retval EFI_OUT_OF_RESOURCES The pages could not be allocated.
386 @retval EFI_INVALID_PARAMETER Type is not equal to AllocateAnyPages.
387
388 **/
389 typedef
390 EFI_STATUS
391 (EFIAPI *EFI_PEI_ALLOCATE_PAGES) (
392 IN EFI_PEI_SERVICES **PeiServices,
393 IN EFI_MEMORY_TYPE MemoryType,
394 IN UINTN Pages,
395 IN OUT EFI_PHYSICAL_ADDRESS *Memory
396 );
397
398 /**
399 The purpose of this service is to publish an interface that
400 allows PEIMs to allocate memory ranges that are managed by the PEI Foundation.
401
402 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
403 @param Size The number of bytes to allocate from the pool.
404 @param Buffer If the call succeeds, a pointer to a pointer to the allocated buffer; undefined otherwise.
405
406 @retval EFI_SUCCESS The allocation was successful.
407 @retval EFI_OUT_OF_RESOURCES There is not enough heap to allocate the requested size.
408
409 **/
410 typedef
411 EFI_STATUS
412 (EFIAPI *EFI_PEI_ALLOCATE_POOL) (
413 IN EFI_PEI_SERVICES **PeiServices,
414 IN UINTN Size,
415 OUT VOID **Buffer
416 );
417
418 /**
419 This service copies the contents of one buffer to another buffer.
420
421 @param Destination Pointer to the destination buffer of the memory copy.
422 @param Source Pointer to the source buffer of the memory copy
423 @param Length Number of bytes to copy from Source to Destination.
424
425 @return None
426
427 **/
428 typedef
429 VOID
430 (EFIAPI *EFI_PEI_COPY_MEM) (
431 IN VOID *Destination,
432 IN VOID *Source,
433 IN UINTN Length
434 );
435
436 /**
437 The service fills a buffer with a specified value.
438
439 @param Buffer Pointer to the buffer to fill.
440 @param Size Number of bytes in Buffer to fill.
441 @param Value Value to fill Buffer with
442
443 @return None
444
445 **/
446 typedef
447 VOID
448 (EFIAPI *EFI_PEI_SET_MEM) (
449 IN VOID *Buffer,
450 IN UINTN Size,
451 IN UINT8 Value
452 );
453
454 /**
455 This service publishes an interface that allows PEIMs to report status codes.
456
457 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
458 @param Type Indicates the type of status code being reported.
459 @param Value Describes the current status of a hardware or
460 software entity. This includes information about the class and
461 subclass that is used to classify the entity as well as an operation.
462 For progress codes, the operation is the current activity.
463 For error codes, it is the exception.For debug codes,it is not defined at this time.
464 @param Instance The enumeration of a hardware or software entity within
465 the system. A system may contain multiple entities that match a class/subclass
466 pairing. The instance differentiates between them. An instance of 0 indicates
467 that instance information is unavailable, not meaningful, or not relevant.
468 Valid instance numbers start with 1.
469 @param CallerId This optional parameter may be used to identify the caller.
470 This parameter allows the status code driver to apply different rules to
471 different callers.
472 @param Data This optional parameter may be used to pass additional data.
473
474 @retval EFI_SUCCESS The function completed successfully.
475 @retval EFI_NOT_AVAILABLE_YET No progress code provider has installed an interface in the system.
476
477 **/
478 typedef
479 EFI_STATUS
480 (EFIAPI *EFI_PEI_REPORT_STATUS_CODE) (
481 IN EFI_PEI_SERVICES **PeiServices,
482 IN EFI_STATUS_CODE_TYPE Type,
483 IN EFI_STATUS_CODE_VALUE Value,
484 IN UINT32 Instance,
485 IN EFI_GUID *CallerId OPTIONAL,
486 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
487 );
488
489 /**
490 Resets the entire platform.
491
492 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES
493 table published by the PEI Foundation.
494
495 @retval EFI_SUCCESS The function completed successfully.
496 @retval EFI_NOT_AVAILABLE_YET The service has not been installed yet.
497
498 **/
499 typedef
500 EFI_STATUS
501 (EFIAPI *EFI_PEI_RESET_SYSTEM) (
502 IN EFI_PEI_SERVICES **PeiServices
503 );
504
505 //
506 // EFI PEI Services Table
507 //
508 #define PEI_SERVICES_SIGNATURE 0x5652455320494550ULL
509 #define PEI_SERVICES_REVISION ((PEI_SPECIFICATION_MAJOR_REVISION << 16) | (PEI_SPECIFICATION_MINOR_REVISION))
510
511 struct _EFI_PEI_SERVICES {
512 EFI_TABLE_HEADER Hdr;
513
514 //
515 // PPI Functions
516 //
517 EFI_PEI_INSTALL_PPI InstallPpi;
518 EFI_PEI_REINSTALL_PPI ReInstallPpi;
519 EFI_PEI_LOCATE_PPI LocatePpi;
520 EFI_PEI_NOTIFY_PPI NotifyPpi;
521
522 //
523 // Boot Mode Functions
524 //
525 EFI_PEI_GET_BOOT_MODE GetBootMode;
526 EFI_PEI_SET_BOOT_MODE SetBootMode;
527
528 //
529 // HOB Functions
530 //
531 EFI_PEI_GET_HOB_LIST GetHobList;
532 EFI_PEI_CREATE_HOB CreateHob;
533
534 //
535 // Filesystem Functions
536 //
537 EFI_PEI_FFS_FIND_NEXT_VOLUME FfsFindNextVolume;
538 EFI_PEI_FFS_FIND_NEXT_FILE FfsFindNextFile;
539 EFI_PEI_FFS_FIND_SECTION_DATA FfsFindSectionData;
540
541 //
542 // Memory Functions
543 //
544 EFI_PEI_INSTALL_PEI_MEMORY InstallPeiMemory;
545 EFI_PEI_ALLOCATE_PAGES AllocatePages;
546 EFI_PEI_ALLOCATE_POOL AllocatePool;
547 EFI_PEI_COPY_MEM CopyMem;
548 EFI_PEI_SET_MEM SetMem;
549
550 //
551 // Status Code
552 //
553 EFI_PEI_REPORT_STATUS_CODE PeiReportStatusCode;
554
555 //
556 // Reset
557 //
558 EFI_PEI_RESET_SYSTEM PeiResetSystem;
559
560 //
561 // Pointer to PPI interface
562 //
563 EFI_PEI_CPU_IO_PPI *CpuIo;
564 EFI_PEI_PCI_CFG_PPI *PciCfg;
565
566 };
567
568 typedef struct {
569 UINTN BootFirmwareVolume;
570 UINTN SizeOfCacheAsRam;
571 EFI_PEI_PPI_DESCRIPTOR *DispatchTable;
572 } EFI_PEI_STARTUP_DESCRIPTOR;
573
574 #include <Common/EfiImage.h>
575 #include <Common/StatusCode.h>
576 #include <Common/BootScript.h>
577 #include <Common/Capsule.h>
578
579 #include <Guid/Apriori.h>
580 #include <Guid/Capsule.h>
581 #include <Guid/DxeServices.h>
582 #include <Guid/HobList.h>
583 #include <Guid/MemoryAllocationHob.h>
584 #include <Guid/FirmwareFileSystem.h>
585 #include <Guid/SmramMemoryReserve.h>
586 #include <Guid/GlobalVariable.h>
587
588 #include <Ppi/BlockIo.h>
589 #include <Ppi/BootInRecoveryMode.h>
590 #include <Ppi/BootScriptExecuter.h>
591 #include <Ppi/DeviceRecoveryModule.h>
592 #include <Ppi/DxeIpl.h>
593 #include <Ppi/EndOfPeiPhase.h>
594 #include <Ppi/FindFv.h>
595 #include <Ppi/LoadFile.h>
596 #include <Ppi/MasterBootMode.h>
597 #include <Ppi/MemoryDiscovered.h>
598 #include <Ppi/Pcd.h>
599 #include <Ppi/ReadOnlyVariable.h>
600 #include <Ppi/RecoveryModule.h>
601 #include <Ppi/Reset.h>
602 #include <Ppi/S3Resume.h>
603 #include <Ppi/SecPlatformInformation.h>
604 #include <Ppi/SectionExtraction.h>
605 #include <Ppi/Security.h>
606 #include <Ppi/Smbus.h>
607 #include <Ppi/Stall.h>
608 #include <Ppi/StatusCode.h>
609
610 #include <Protocol/FirmwareVolumeBlock.h>
611 #endif