]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Pi/PiPeiCis.h
Code Scrub the common includes in MdePkg.
[mirror_edk2.git] / MdePkg / Include / Pi / PiPeiCis.h
1 /** @file
2 PI PEI master include file. This file should match the PI spec.
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 @par Revision Reference:
14 Version 1.0.
15
16 **/
17
18 #ifndef __PI_PEICIS_H__
19 #define __PI_PEICIS_H__
20
21 #include <Pi/PiMultiPhase.h>
22
23 ///
24 /// Handles of EFI FV.
25 ///
26 typedef VOID *EFI_PEI_FV_HANDLE;
27
28 ///
29 /// Handles of EFI FFS
30 ///
31 typedef VOID *EFI_PEI_FILE_HANDLE;
32
33 ///
34 /// Declare forward reference data structure for EFI_PEI_SERVICE
35 ///
36 typedef struct _EFI_PEI_SERVICES EFI_PEI_SERVICES;
37
38 ///
39 /// Declare forward reference data structure for EFI_PEI_NOTIFY_DESCRIPTOR
40 ///
41 typedef struct _EFI_PEI_NOTIFY_DESCRIPTOR EFI_PEI_NOTIFY_DESCRIPTOR;
42
43
44 #include <Ppi/CpuIo.h>
45 #include <Ppi/PciCfg2.h>
46
47
48 /**
49 The PEI Dispatcher will invoke each PEIM one time. During this pass, the PEI
50 Dispatcher will pass control to the PEIM at the AddressOfEntryPoint in the PE Header.
51
52 @param FileHandle Pointer to the FFS file header.
53 @param PeiServices Describes the list of possible PEI Services.
54
55 @retval EFI_SUCCESS The PEI completed successfully.
56 @retval !EFI_SUCCESS There is error in PEIM.
57
58 **/
59 typedef
60 EFI_STATUS
61 (EFIAPI *EFI_PEIM_ENTRY_POINT2)(
62 IN EFI_PEI_FILE_HANDLE FileHandle,
63 IN CONST EFI_PEI_SERVICES **PeiServices
64 );
65
66 /**
67 Entry point of the notification callback function itself within the PEIM.
68
69 @param PeiServices Indirect reference to the PEI Services Table.
70 @param NotifyDescriptor Address of the notification descriptor data structure.
71 @param Ppi Address of the PPI that was installed.
72
73 @return Status of the notification.
74 **/
75 typedef
76 EFI_STATUS
77 (EFIAPI *EFI_PEIM_NOTIFY_ENTRY_POINT)(
78 IN EFI_PEI_SERVICES **PeiServices,
79 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
80 IN VOID *Ppi
81 );
82
83 //
84 // PEI Ppi Services List Descriptors
85 //
86 #define EFI_PEI_PPI_DESCRIPTOR_PIC 0x00000001
87 #define EFI_PEI_PPI_DESCRIPTOR_PPI 0x00000010
88 #define EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK 0x00000020
89 #define EFI_PEI_PPI_DESCRIPTOR_NOTIFY_DISPATCH 0x00000040
90 #define EFI_PEI_PPI_DESCRIPTOR_NOTIFY_TYPES 0x00000060
91 #define EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST 0x80000000
92
93 ///
94 /// The data structure through which a PEIM describes available services to the PEI Foundation.
95 ///
96 typedef struct {
97 UINTN Flags;
98 EFI_GUID *Guid;
99 VOID *Ppi;
100 } EFI_PEI_PPI_DESCRIPTOR;
101
102 ///
103 /// The data structure in a given PEIM that tells the PEI
104 /// Foundation where to invoke the notification service.
105 ///
106 struct _EFI_PEI_NOTIFY_DESCRIPTOR {
107 UINTN Flags;
108 EFI_GUID *Guid;
109 EFI_PEIM_NOTIFY_ENTRY_POINT Notify;
110 };
111
112 ///
113 /// Describes request of the module to be loaded to
114 /// the permanent memory once it is available. Unlike most of the other HOBs,
115 /// this HOB is produced and consumed during the HOB producer phase.
116 ///
117 typedef struct _EFI_HOB_LOAD_PEIM {
118 EFI_HOB_GENERIC_HEADER Header;
119 EFI_PEI_FILE_HANDLE FileHandle;
120 EFI_PEIM_ENTRY_POINT2 EntryPoint;
121 EFI_PEIM_ENTRY_POINT2 InMemEntryPoint;
122 } EFI_HOB_LOAD_PEIM;
123
124
125 /**
126 This service is the first one provided by the PEI Foundation. This function
127 installs an interface in the PEI PPI database by GUID. The purpose of the
128 service is to publish an interface that other parties can use to call
129 additional PEIMs.
130
131 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table
132 published by the PEI Foundation.
133 @param PpiList A pointer to the list of interfaces that the caller shall install.
134
135 @retval EFI_SUCCESS The interface was successfully installed.
136 @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.
137 @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.
138
139 **/
140 typedef
141 EFI_STATUS
142 (EFIAPI *EFI_PEI_INSTALL_PPI)(
143 IN CONST EFI_PEI_SERVICES **PeiServices,
144 IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList
145 );
146
147 /**
148 This function reinstalls an interface in the PEI PPI database by GUID.
149 The purpose of the service is to publish an interface that other parties
150 can use to replace a same-named interface in the protocol database
151 with a different interface.
152
153 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table
154 published by the PEI Foundation.
155 @param OldPpi A pointer to the former PPI in the database.
156 @param NewPpi A pointer to the new interfaces that the caller shall install.
157
158 @retval EFI_SUCCESS The interface was successfully installed.
159 @retval EFI_INVALID_PARAMETER The PpiList pointer is NULL or Any of the PEI PPI descriptors in the
160 list do not have the EFI_PEI_PPI_DESCRIPTOR_PPI bit set in the Flags field.
161 @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.
162 @retval EFI_NOT_FOUND The PPI for which the reinstallation was requested has not been installed.
163
164 **/
165 typedef
166 EFI_STATUS
167 (EFIAPI *EFI_PEI_REINSTALL_PPI)(
168 IN CONST EFI_PEI_SERVICES **PeiServices,
169 IN CONST EFI_PEI_PPI_DESCRIPTOR *OldPpi,
170 IN CONST EFI_PEI_PPI_DESCRIPTOR *NewPpi
171 );
172
173 /**
174 This function locates an interface in the PEI PPI database by GUID.
175
176 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES published by the PEI Foundation.
177 @param Guid A pointer to the GUID whose corresponding interface needs to be found.
178 @param Instance The N-th instance of the interface that is required.
179 @param PpiDescriptor A pointer to instance of the EFI_PEI_PPI_DESCRIPTOR.
180 @param Ppi A pointer to the instance of the interface.
181
182 @retval EFI_SUCCESS The interface was successfully returned.
183 @retval EFI_NOT_FOUND The PPI descriptor is not found in the database.
184
185 **/
186 typedef
187 EFI_STATUS
188 (EFIAPI *EFI_PEI_LOCATE_PPI)(
189 IN CONST EFI_PEI_SERVICES **PeiServices,
190 IN CONST EFI_GUID *Guid,
191 IN UINTN Instance,
192 IN OUT EFI_PEI_PPI_DESCRIPTOR **PpiDescriptor OPTIONAL,
193 IN OUT VOID **Ppi
194 );
195
196 /**
197 This function installs a notification service to be called back when a
198 given interface is installed or reinstalled. The purpose of the service
199 is to publish an interface that other parties can use to call additional PPIs
200 that may materialize later.
201
202 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation
203 @param NotifyList A pointer to the list of notification interfaces that the caller shall install.
204
205 @retval EFI_SUCCESS The interface was successfully installed.
206 @retval EFI_INVALID_PARAMETER The PpiList pointer is NULL or Any of the PEI PPI descriptors in the
207 list do not have the EFI_PEI_PPI_DESCRIPTOR_PPI bit set in the Flags field.
208 @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.
209
210 **/
211 typedef
212 EFI_STATUS
213 (EFIAPI *EFI_PEI_NOTIFY_PPI)(
214 IN CONST EFI_PEI_SERVICES **PeiServices,
215 IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
216 );
217
218 /**
219 This function returns the present value of the boot mode.
220
221 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
222 @param BootMode A pointer to contain the value of the boot mode.
223
224 @retval EFI_SUCCESS The boot mode was returned successfully.
225
226 **/
227 typedef
228 EFI_STATUS
229 (EFIAPI *EFI_PEI_GET_BOOT_MODE)(
230 IN CONST EFI_PEI_SERVICES **PeiServices,
231 OUT EFI_BOOT_MODE *BootMode
232 );
233
234 /**
235 This function sets the value of the boot mode.
236
237 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation
238 @param BootMode The value of the boot mode to set.
239
240 @retval EFI_SUCCESS The boot mode was returned successfully.
241
242 **/
243 typedef
244 EFI_STATUS
245 (EFIAPI *EFI_PEI_SET_BOOT_MODE)(
246 IN CONST EFI_PEI_SERVICES **PeiServices,
247 IN EFI_BOOT_MODE BootMode
248 );
249
250 /**
251 This function returns the pointer to the list of Hand-Off Blocks (HOBs) in memory.
252
253 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation
254 @param HobList A pointer to the list of HOBs that the PEI Foundation will initialize
255
256 @retval EFI_SUCCESS The list was successfully returned.
257 @retval EFI_NOT_AVAILABLE_YET The HOB list is not yet published.
258
259 **/
260 typedef
261 EFI_STATUS
262 (EFIAPI *EFI_PEI_GET_HOB_LIST)(
263 IN CONST EFI_PEI_SERVICES **PeiServices,
264 OUT VOID **HobList
265 );
266
267 /**
268 This service published by the PEI Foundation abstracts the creation of a Hand-Off Block's (HOB's) headers.
269
270 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
271 @param Type The type of HOB to be installed.
272 @param Length The length of the HOB to be added.
273 @param Hob The address of a pointer that will contain the HOB header.
274
275 @retval EFI_SUCCESS The HOB was successfully created.
276 @retval EFI_OUT_OF_RESOURCES There is no additional space for HOB creation.
277
278 **/
279 typedef
280 EFI_STATUS
281 (EFIAPI *EFI_PEI_CREATE_HOB)(
282 IN CONST EFI_PEI_SERVICES **PeiServices,
283 IN UINT16 Type,
284 IN UINT16 Length,
285 OUT VOID **Hob
286 );
287
288 /**
289 The purpose of the service is to abstract the capability of the PEI
290 Foundation to discover instances of firmware volumes in the system.
291 Given the input file pointer, this service searches for the next
292 matching file in the Firmware File System (FFS) volume.
293
294 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
295 @param Instance This instance of the firmware volume to find. The value 0 is the Boot Firmware Volume (BFV).
296 @param VolumeHandle On exit, points to the next volumn handle or NULL if it does not exist.
297
298 @retval EFI_SUCCESS The volume was found.
299 @retval EFI_NOT_FOUND The volume was not found.
300 @retval EFI_INVALID_PARAMETER VolHandle is NULL
301
302 **/
303 typedef
304 EFI_STATUS
305 (EFIAPI *EFI_PEI_FFS_FIND_NEXT_VOLUME2)(
306 IN CONST EFI_PEI_SERVICES **PeiServices,
307 IN UINTN Instance,
308 OUT EFI_PEI_FV_HANDLE *VolumeHandle
309 );
310
311 /**
312 The purpose of the service is to abstract the capability of the PEI
313 Foundation to discover instances of firmware files in the system.
314 Given the input file pointer, this service searches for the next matching
315 file in the Firmware File System (FFS) volume.
316
317 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
318 @param SearchType A filter to find files only of this type.
319 @param FwVolHeader Pointer to the firmware volume header of the volume to search.This parameter
320 must point to a valid FFS volume.
321 @param FileHeader Pointer to the current file from which to begin searching.This pointer will be
322 updated upon return to reflect the file found.
323
324 @retval EFI_SUCCESS The file was found.
325 @retval EFI_NOT_FOUND The file was not found.
326 @retval EFI_NOT_FOUND The header checksum was not zero.
327
328 **/
329 typedef
330 EFI_STATUS
331 (EFIAPI *EFI_PEI_FFS_FIND_NEXT_FILE2)(
332 IN CONST EFI_PEI_SERVICES **PeiServices,
333 IN EFI_FV_FILETYPE SearchType,
334 IN EFI_PEI_FV_HANDLE VolumeHandle,
335 IN OUT EFI_PEI_FILE_HANDLE *FileHandle
336 );
337
338 /**
339 Given the input file pointer, this service searches for the next
340 matching file in the Firmware File System (FFS) volume.
341
342 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
343 @param SectionType The value of the section type to find.
344 @param FfsFileHeader A pointer to the file header that contains the set of sections to be searched.
345 @param SectionData A pointer to the discovered section, if successful.
346
347 @retval EFI_SUCCESS The section was found.
348 @retval EFI_NOT_FOUND The section was not found.
349
350 **/
351 typedef
352 EFI_STATUS
353 (EFIAPI *EFI_PEI_FFS_FIND_SECTION_DATA2)(
354 IN CONST EFI_PEI_SERVICES **PeiServices,
355 IN EFI_SECTION_TYPE SectionType,
356 IN EFI_PEI_FILE_HANDLE FileHandle,
357 IN OUT VOID **SectionData
358 );
359
360 /**
361 This function registers the found memory configuration with the PEI Foundation.
362
363 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
364 @param MemoryBegin The value of a region of installed memory
365 @param MemoryLength The corresponding length of a region of installed memory.
366
367 @retval EFI_SUCCESS The region was successfully installed in a HOB.
368 @retval EFI_INVALID_PARAMETER MemoryBegin and MemoryLength are illegal for this system.
369 @retval EFI_OUT_OF_RESOURCES There is no additional space for HOB creation.
370
371 **/
372 typedef
373 EFI_STATUS
374 (EFIAPI *EFI_PEI_INSTALL_PEI_MEMORY)(
375 IN CONST EFI_PEI_SERVICES **PeiServices,
376 IN EFI_PHYSICAL_ADDRESS MemoryBegin,
377 IN UINT64 MemoryLength
378 );
379
380 /**
381 The purpose of the service is to publish an interface that allows
382 PEIMs to allocate memory ranges that are managed by the PEI Foundation.
383
384 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
385 @param MemoryType The type of memory to allocate.
386 @param Pages The number of contiguous 4 KB pages to allocate.
387 @param Memory Pointer to a physical address. On output, the address is set to the base
388 of the page range that was allocated.
389
390 @retval EFI_SUCCESS The memory range was successfully allocated.
391 @retval EFI_OUT_OF_RESOURCES The pages could not be allocated.
392 @retval EFI_INVALID_PARAMETER Type is not equal to AllocateAnyPages.
393
394 **/
395 typedef
396 EFI_STATUS
397 (EFIAPI *EFI_PEI_ALLOCATE_PAGES)(
398 IN CONST EFI_PEI_SERVICES **PeiServices,
399 IN EFI_MEMORY_TYPE MemoryType,
400 IN UINTN Pages,
401 IN OUT EFI_PHYSICAL_ADDRESS *Memory
402 );
403
404 /**
405 The purpose of this service is to publish an interface that
406 allows PEIMs to allocate memory ranges that are managed by the PEI Foundation.
407
408 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
409 @param Size The number of bytes to allocate from the pool.
410 @param Buffer If the call succeeds, a pointer to a pointer to the allocated buffer; undefined otherwise.
411
412 @retval EFI_SUCCESS The allocation was successful.
413 @retval EFI_OUT_OF_RESOURCES There is not enough heap to allocate the requested size.
414
415 **/
416 typedef
417 EFI_STATUS
418 (EFIAPI *EFI_PEI_ALLOCATE_POOL)(
419 IN CONST EFI_PEI_SERVICES **PeiServices,
420 IN UINTN Size,
421 OUT VOID **Buffer
422 );
423
424 /**
425 This service copies the contents of one buffer to another buffer.
426
427 @param Destination Pointer to the destination buffer of the memory copy.
428 @param Source Pointer to the source buffer of the memory copy
429 @param Length Number of bytes to copy from Source to Destination.
430
431 **/
432 typedef
433 VOID
434 (EFIAPI *EFI_PEI_COPY_MEM)(
435 IN VOID *Destination,
436 IN VOID *Source,
437 IN UINTN Length
438 );
439
440 /**
441 The service fills a buffer with a specified value.
442
443 @param Buffer Pointer to the buffer to fill.
444 @param Size Number of bytes in Buffer to fill.
445 @param Value Value to fill Buffer with
446
447 **/
448 typedef
449 VOID
450 (EFIAPI *EFI_PEI_SET_MEM)(
451 IN VOID *Buffer,
452 IN UINTN Size,
453 IN UINT8 Value
454 );
455
456 /**
457 This service publishes an interface that allows PEIMs to report status codes.
458
459 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
460 @param Type Indicates the type of status code being reported.
461 @param Value Describes the current status of a hardware or
462 software entity. This includes information about the class and
463 subclass that is used to classify the entity as well as an operation.
464 For progress codes, the operation is the current activity.
465 For error codes, it is the exception.For debug codes,it is not defined at this time.
466 @param Instance The enumeration of a hardware or software entity within
467 the system. A system may contain multiple entities that match a class/subclass
468 pairing. The instance differentiates between them. An instance of 0 indicates
469 that instance information is unavailable, not meaningful, or not relevant.
470 Valid instance numbers start with 1.
471 @param CallerId This optional parameter may be used to identify the caller.
472 This parameter allows the status code driver to apply different rules to
473 different callers.
474 @param Data This optional parameter may be used to pass additional data.
475
476 @retval EFI_SUCCESS The function completed successfully.
477 @retval EFI_NOT_AVAILABLE_YET No progress code provider has installed an interface in the system.
478
479 **/
480 typedef
481 EFI_STATUS
482 (EFIAPI *EFI_PEI_REPORT_STATUS_CODE)(
483 IN CONST EFI_PEI_SERVICES **PeiServices,
484 IN EFI_STATUS_CODE_TYPE Type,
485 IN EFI_STATUS_CODE_VALUE Value,
486 IN UINT32 Instance,
487 IN CONST EFI_GUID *CallerId OPTIONAL,
488 IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL
489 );
490
491 /**
492 Resets the entire platform.
493
494 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES
495 table published by the PEI Foundation.
496
497 @retval EFI_SUCCESS The function completed successfully.
498 @retval EFI_NOT_AVAILABLE_YET The service has not been installed yet.
499
500 **/
501 typedef
502 EFI_STATUS
503 (EFIAPI *EFI_PEI_RESET_SYSTEM)(
504 IN CONST EFI_PEI_SERVICES **PeiServices
505 );
506
507 /**
508
509 This service searches for files with a specific name, within
510 either the specified firmware volume or all firmware volumes.
511 The service returns a file handle of type EFI_PEI_FILE_HANDLE,
512 which must be unique within the system.
513
514 @param FileName A pointer to the name of the file to
515 find within the firmware volume.
516
517 @param VolumeHandle The firmware volume to search FileHandle
518 Upon exit, points to the found file's
519 handle or NULL if it could not be found.
520
521 @retval EFI_SUCCESS File was found.
522
523 @retval EFI_NOT_FOUND File was not found.
524
525 @retval EFI_INVALID_PARAMETER VolumeHandle or FileHandle or
526 FileName was NULL.
527
528 **/
529 typedef
530 EFI_STATUS
531 (EFIAPI *EFI_PEI_FFS_FIND_BY_NAME)(
532 IN CONST EFI_GUID *FileName,
533 IN CONST EFI_PEI_FV_HANDLE VolumeHandle,
534 OUT EFI_PEI_FILE_HANDLE *FileHandle
535 );
536
537
538 /**
539
540 @param FileName Name of the file.
541
542 @param FileType File type. See EFI_FV_FILETYPE, which is
543 defined in the Platform Initialization
544 Firmware Storage Specification.
545
546 @param FileAttributes Attributes of the file. Type
547 EFI_FV_FILE_ATTRIBUTES is defined in
548 the Platform Initialization Firmware
549 Storage Specification.
550
551 @param Buffer Points to the file's data (not the header).
552 Not valid if EFI_FV_FILE_ATTRIB_MEMORY_MAPPED
553 is zero.
554
555 @param BufferSize Size of the file's data.
556
557 **/
558 typedef struct {
559 EFI_GUID FileName;
560 EFI_FV_FILETYPE FileType;
561 EFI_FV_FILE_ATTRIBUTES FileAttributes;
562 VOID *Buffer;
563 UINT32 BufferSize;
564 } EFI_FV_FILE_INFO;
565
566 /**
567
568 This function returns information about a specific file,
569 including its file name, type, attributes, starting address and
570 size. If the firmware volume is not memory mapped then the
571 Buffer member will be NULL.
572
573 @param FileHandle Handle of the file.
574
575 @param FileInfo Upon exit, points to the file's
576 information.
577
578 @retval EFI_SUCCESS File information returned.
579
580 @retval EFI_INVALID_PARAMETER If FileHandle does not
581 represent a valid file.
582
583 @retval EFI_INVALID_PARAMETER If FileInfo is NULL.
584
585 **/
586 typedef
587 EFI_STATUS
588 (EFIAPI *EFI_PEI_FFS_GET_FILE_INFO)(
589 IN CONST EFI_PEI_FILE_HANDLE FileHandle,
590 OUT EFI_FV_FILE_INFO *FileInfo
591 );
592
593
594 /**
595
596 @param FvAttributes Attributes of the firmware volume. Type
597 EFI_FVB_ATTRIBUTES is defined in the
598 Platform Initialization Firmware Storage
599 Specficiation.
600
601 @param FvFormat Format of the firmware volume. For PI
602 Architecture Firmware Volumes, this can
603 be copied from FileSystemGuid in
604 EFI_FIRMWARE_VOLUME_HEADER.
605
606 @param FvName Name of the firmware volume. For PI
607 Architecture Firmware Volumes, this can
608 be copied from VolumeName in the
609 extended header of
610 EFI_FIRMWARE_VOLUME_HEADER.
611
612 @param FvStart Points to the first byte of the firmware
613 volume, if bit EFI_FVB_MEMORY_MAPPED is
614 set in FvAttributes. FvSize Size of the
615 firmware volume.
616
617 **/
618 typedef struct {
619 EFI_FVB_ATTRIBUTES FvAttributes;
620 EFI_GUID FvFormat;
621 EFI_GUID FvName;
622 VOID *FvStart;
623 UINT64 FvSize;
624 } EFI_FV_INFO;
625
626 /**
627
628 This function returns information about a specific firmware
629 volume, including its name, type, attributes, starting address
630 and size.
631
632 @param VolumeHandle Handle of the volume.
633
634 @param VolumeInfo Upon exit, points to the volume's
635 information.
636
637 @retval EFI_SUCCESS File information returned.
638
639 @retval EFI_INVALID_PARAMETER If FileHandle does not
640 represent a valid file.
641
642 @retval EFI_INVALID_PARAMETER If FileInfo is NULL.
643
644 **/
645 typedef
646 EFI_STATUS
647 (EFIAPI *EFI_PEI_FFS_GET_VOLUME_INFO)(
648 IN EFI_PEI_FV_HANDLE VolumeHandle,
649 OUT EFI_FV_INFO *VolumeInfo
650 );
651
652 /**
653
654 This service registers a file handle so that after memory is
655 available, the PEIM will be re-loaded into permanent memory and
656 re-initialized. The PEIM registered this way will always be
657 initialized twice. The first time, this function call will
658 return EFI_SUCCESS. The second time, this function call will
659 return EFI_ALREADY_STARTED. Depending on the order in which
660 PEIMs are dispatched, the PEIM making this call may be
661 initialized after permanent memory is installed, even the first
662 time.
663
664 @param FileHandle PEIM's file handle. Must be the currently
665 executing PEIM.
666
667 @retval EFI_SUCCESS The PEIM was successfully registered for
668 shadowing.
669
670 @retval EFI_ALREADY_STARTED The PEIM was previously
671 registered for shadowing.
672
673 @retval EFI_NOT_FOUND The FileHandle does not refer to a
674 valid file handle.
675
676 **/
677 typedef
678 EFI_STATUS
679 (EFIAPI *EFI_PEI_REGISTER_FOR_SHADOW)(
680 IN EFI_PEI_FILE_HANDLE FileHandle
681 );
682
683
684 //
685 // PEI Specification Revision information
686 //
687 #define PEI_SPECIFICATION_MAJOR_REVISION 1
688 #define PEI_SPECIFICATION_MINOR_REVISION 0
689
690 //
691 // PEI Services Table
692 //
693 #define PEI_SERVICES_SIGNATURE 0x5652455320494550ULL
694 #define PEI_SERVICES_REVISION ((PEI_SPECIFICATION_MAJOR_REVISION<<16) | (PEI_SPECIFICATION_MINOR_REVISION))
695
696 ///
697 /// EFI_PEI_SERVICES is a collection of functions whose implementation is provided by the PEI
698 /// Foundation. These services fall into various classes, including the following:
699 /// - Managing the boot mode
700 /// - Allocating both early and permanent memory
701 /// - Supporting the Firmware File System (FFS)
702 /// - Abstracting the PPI database abstraction
703 /// - Creating Hand-Off Blocks (HOBs)
704 ///
705 struct _EFI_PEI_SERVICES {
706 EFI_TABLE_HEADER Hdr;
707 //
708 // PPI Functions
709 //
710 EFI_PEI_INSTALL_PPI InstallPpi;
711 EFI_PEI_REINSTALL_PPI ReInstallPpi;
712 EFI_PEI_LOCATE_PPI LocatePpi;
713 EFI_PEI_NOTIFY_PPI NotifyPpi;
714 //
715 // Boot Mode Functions
716 //
717 EFI_PEI_GET_BOOT_MODE GetBootMode;
718 EFI_PEI_SET_BOOT_MODE SetBootMode;
719 //
720 // HOB Functions
721 //
722 EFI_PEI_GET_HOB_LIST GetHobList;
723 EFI_PEI_CREATE_HOB CreateHob;
724 //
725 // Firmware Volume Functions
726 //
727 EFI_PEI_FFS_FIND_NEXT_VOLUME2 FfsFindNextVolume;
728 EFI_PEI_FFS_FIND_NEXT_FILE2 FfsFindNextFile;
729 EFI_PEI_FFS_FIND_SECTION_DATA2 FfsFindSectionData;
730 //
731 // PEI Memory Functions
732 //
733 EFI_PEI_INSTALL_PEI_MEMORY InstallPeiMemory;
734 EFI_PEI_ALLOCATE_PAGES AllocatePages;
735 EFI_PEI_ALLOCATE_POOL AllocatePool;
736 EFI_PEI_COPY_MEM CopyMem;
737 EFI_PEI_SET_MEM SetMem;
738 //
739 // Status Code
740 EFI_PEI_REPORT_STATUS_CODE ReportStatusCode;
741 //
742 // Reset
743 //
744 EFI_PEI_RESET_SYSTEM ResetSystem;
745 //
746 // (the following interfaces are installed by publishing PEIM)
747 //
748 // I/O Abstractions
749 //
750 EFI_PEI_CPU_IO_PPI *CpuIo;
751 EFI_PEI_PCI_CFG2_PPI *PciCfg;
752 //
753 // Future Installed Services
754 EFI_PEI_FFS_FIND_BY_NAME FfsFindFileByName;
755 EFI_PEI_FFS_GET_FILE_INFO FfsGetFileInfo;
756 EFI_PEI_FFS_GET_VOLUME_INFO FfsGetVolumeInfo;
757 EFI_PEI_REGISTER_FOR_SHADOW RegisterForShadow;
758 };
759
760
761 ///
762 /// EFI_SEC_PEI_HAND_OFF structure hold information about
763 /// PEI core's operating environment, such as the size of location of
764 /// temporary RAM, the stack location and BFV location.
765 ///
766 typedef struct _EFI_SEC_PEI_HAND_OFF {
767 //
768 // Size of the data structure.
769 //
770 UINT16 DataSize;
771
772 //
773 // Points to the first byte of the boot firmware volume,
774 // which the PEI Dispatcher should search for
775 // PEI modules.
776 //
777 VOID *BootFirmwareVolumeBase;
778
779 //
780 // Size of the boot firmware volume, in bytes.
781 //
782 UINTN BootFirmwareVolumeSize;
783
784 //
785 // Points to the first byte of the temporary RAM.
786 //
787 VOID *TemporaryRamBase;
788
789 //
790 // Size of the temporary RAM, in bytes.
791 //
792 UINTN TemporaryRamSize;
793
794 //
795 // Points to the first byte of the temporary RAM
796 // available for use by the PEI Foundation. The area
797 // described by PeiTemporaryRamBase and PeiTemporaryRamSize
798 // must not extend outside beyond the area described by
799 // TemporaryRamBase & TemporaryRamSize. This area should not
800 // overlap with the area reported by StackBase and
801 // StackSize.
802 //
803 VOID *PeiTemporaryRamBase;
804
805 //
806 // Size of the available temporary RAM available for
807 // use by the PEI Foundation, in bytes.
808 //
809 UINTN PeiTemporaryRamSize;
810
811 //
812 // Points to the first byte of the stack.
813 // This are may be part of the memory described by
814 // TemporaryRamBase and TemporaryRamSize
815 // or may be an entirely separate area.
816 //
817 VOID *StackBase;
818
819 //
820 // Size of the stack, in bytes.
821 //
822 UINTN StackSize;
823 } EFI_SEC_PEI_HAND_OFF;
824
825
826 /**
827
828 This function is the entry point for the PEI Foundation, which
829 allows the SEC phase to pass information about the stack,
830 temporary RAM and the Boot Firmware Volume. In addition, it also
831 allows the SEC phase to pass services and data forward for use
832 during the PEI phase in the form of one or more PPIs. There is
833 no limit to the number of additional PPIs that can be passed
834 from SEC into the PEI Foundation. As part of its initialization
835 phase, the PEI Foundation will add these SEC-hosted PPIs to its
836 PPI database such that both the PEI Foundation and any modules
837 can leverage the associated service calls and/or code in these
838 early PPIs.
839
840 @param SecCoreData Points to a data structure containing
841 information about the PEI core's
842 operating environment, such as the size
843 and location of temporary RAM, the stack
844 location and the BFV location. The type
845 EFI_SEC_PEI_HAND_OFF is
846
847 @param PpiList Points to a list of one or more PPI
848 descriptors to be installed initially by
849 the PEI core. An empty PPI list consists
850 of a single descriptor with the end-tag
851 EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST.
852 As part of its initialization phase, the
853 PEI Foundation will add these SEC-hosted
854 PPIs to its PPI database such that both
855 the PEI Foundation and any modules can
856 leverage the associated service calls
857 and/or code in these early PPIs.
858
859
860 **/
861 typedef
862 VOID
863 (EFIAPI *EFI_PEI_CORE_ENTRY_POINT)(
864 IN CONST EFI_SEC_PEI_HAND_OFF *SecCoreData,
865 IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList
866 );
867
868 #endif