]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Include/Pi/PiPeiCis.h
Formalize comments for Protocols and PPIs.
[mirror_edk2.git] / MdePkg / Include / Pi / PiPeiCis.h
... / ...
CommitLineData
1/** @file\r
2 PI PEI master include file. This file should match the PI spec.\r
3\r
4 Copyright (c) 2006 - 2008, Intel Corporation \r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13 @par Revision Reference:\r
14 Version 1.0.\r
15\r
16**/\r
17\r
18#ifndef __PI_PEICIS_H__\r
19#define __PI_PEICIS_H__\r
20\r
21#include <Pi/PiMultiPhase.h>\r
22\r
23///\r
24/// Handles of EFI FV.\r
25/// \r
26typedef VOID *EFI_PEI_FV_HANDLE;\r
27\r
28///\r
29/// Handles of EFI FFS\r
30/// \r
31typedef VOID *EFI_PEI_FILE_HANDLE;\r
32\r
33///\r
34/// Declare forward reference data structure for EFI_PEI_SERVICE\r
35/// \r
36typedef struct _EFI_PEI_SERVICES EFI_PEI_SERVICES;\r
37\r
38///\r
39/// Declare forward reference data structure for EFI_PEI_NOTIFY_DESCRIPTOR\r
40/// \r
41typedef struct _EFI_PEI_NOTIFY_DESCRIPTOR EFI_PEI_NOTIFY_DESCRIPTOR;\r
42\r
43\r
44#include <Ppi/CpuIo.h>\r
45#include <Ppi/PciCfg2.h>\r
46\r
47\r
48/**\r
49 The PEI Dispatcher will invoke each PEIM one time. During this pass, the PEI \r
50 Dispatcher will pass control to the PEIM at the AddressOfEntryPoint in the PE Header. \r
51\r
52 @param FileHandle Pointer to the FFS file header.\r
53 @param PeiServices Describes the list of possible PEI Services.\r
54\r
55 @retval EFI_SUCCESS The PEI completed successfully.\r
56 @retval !EFI_SUCCESS There is error in PEIM.\r
57\r
58**/\r
59typedef\r
60EFI_STATUS\r
61(EFIAPI *EFI_PEIM_ENTRY_POINT2)(\r
62 IN EFI_PEI_FILE_HANDLE FileHandle,\r
63 IN CONST EFI_PEI_SERVICES **PeiServices\r
64 );\r
65\r
66/**\r
67 Entry point of the notification callback function itself within the PEIM.\r
68\r
69 @param PeiServices Indirect reference to the PEI Services Table.\r
70 @param NotifyDescriptor Address of the notification descriptor data structure.\r
71 @param Ppi Address of the PPI that was installed.\r
72\r
73 @return Status of the notification.\r
74**/\r
75typedef\r
76EFI_STATUS\r
77(EFIAPI *EFI_PEIM_NOTIFY_ENTRY_POINT)(\r
78 IN EFI_PEI_SERVICES **PeiServices,\r
79 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,\r
80 IN VOID *Ppi\r
81 );\r
82\r
83//\r
84// PEI Ppi Services List Descriptors\r
85//\r
86#define EFI_PEI_PPI_DESCRIPTOR_PIC 0x00000001\r
87#define EFI_PEI_PPI_DESCRIPTOR_PPI 0x00000010\r
88#define EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK 0x00000020\r
89#define EFI_PEI_PPI_DESCRIPTOR_NOTIFY_DISPATCH 0x00000040\r
90#define EFI_PEI_PPI_DESCRIPTOR_NOTIFY_TYPES 0x00000060\r
91#define EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST 0x80000000\r
92\r
93///\r
94/// The data structure through which a PEIM describes available services to the PEI Foundation.\r
95/// \r
96typedef struct {\r
97 UINTN Flags;\r
98 EFI_GUID *Guid;\r
99 VOID *Ppi;\r
100} EFI_PEI_PPI_DESCRIPTOR;\r
101\r
102/// \r
103/// The data structure in a given PEIM that tells the PEI \r
104/// Foundation where to invoke the notification service.\r
105/// \r
106struct _EFI_PEI_NOTIFY_DESCRIPTOR {\r
107 UINTN Flags;\r
108 EFI_GUID *Guid;\r
109 EFI_PEIM_NOTIFY_ENTRY_POINT Notify;\r
110};\r
111\r
112///\r
113/// Describes request of the module to be loaded to \r
114/// the permanent memory once it is available. Unlike most of the other HOBs, \r
115/// this HOB is produced and consumed during the HOB producer phase.\r
116/// \r
117typedef struct _EFI_HOB_LOAD_PEIM {\r
118 EFI_HOB_GENERIC_HEADER Header;\r
119 EFI_PEI_FILE_HANDLE FileHandle;\r
120 EFI_PEIM_ENTRY_POINT2 EntryPoint;\r
121 EFI_PEIM_ENTRY_POINT2 InMemEntryPoint;\r
122} EFI_HOB_LOAD_PEIM;\r
123\r
124\r
125/**\r
126 This service is the first one provided by the PEI Foundation. This function \r
127 installs an interface in the PEI PPI database by GUID. The purpose of the \r
128 service is to publish an interface that other parties can use to call \r
129 additional PEIMs.\r
130\r
131 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table\r
132 published by the PEI Foundation.\r
133 @param PpiList A pointer to the list of interfaces that the caller shall install.\r
134\r
135 @retval EFI_SUCCESS The interface was successfully installed.\r
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.\r
137 @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.\r
138\r
139**/\r
140typedef\r
141EFI_STATUS\r
142(EFIAPI *EFI_PEI_INSTALL_PPI)(\r
143 IN CONST EFI_PEI_SERVICES **PeiServices,\r
144 IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList\r
145 );\r
146\r
147/**\r
148 This function reinstalls an interface in the PEI PPI database by GUID. \r
149 The purpose of the service is to publish an interface that other parties \r
150 can use to replace a same-named interface in the protocol database \r
151 with a different interface. \r
152\r
153 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table\r
154 published by the PEI Foundation.\r
155 @param OldPpi A pointer to the former PPI in the database.\r
156 @param NewPpi A pointer to the new interfaces that the caller shall install.\r
157\r
158 @retval EFI_SUCCESS The interface was successfully installed.\r
159 @retval EFI_INVALID_PARAMETER The PpiList pointer is NULL or Any of the PEI PPI descriptors in the \r
160 list do not have the EFI_PEI_PPI_DESCRIPTOR_PPI bit set in the Flags field.\r
161 @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.\r
162 @retval EFI_NOT_FOUND The PPI for which the reinstallation was requested has not been installed.\r
163\r
164**/\r
165typedef\r
166EFI_STATUS\r
167(EFIAPI *EFI_PEI_REINSTALL_PPI)(\r
168 IN CONST EFI_PEI_SERVICES **PeiServices,\r
169 IN CONST EFI_PEI_PPI_DESCRIPTOR *OldPpi,\r
170 IN CONST EFI_PEI_PPI_DESCRIPTOR *NewPpi\r
171 );\r
172\r
173/**\r
174 This function locates an interface in the PEI PPI database by GUID. \r
175\r
176 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES published by the PEI Foundation.\r
177 @param Guid A pointer to the GUID whose corresponding interface needs to be found.\r
178 @param Instance The N-th instance of the interface that is required.\r
179 @param PpiDescriptor A pointer to instance of the EFI_PEI_PPI_DESCRIPTOR.\r
180 @param Ppi A pointer to the instance of the interface.\r
181\r
182 @retval EFI_SUCCESS The interface was successfully returned.\r
183 @retval EFI_NOT_FOUND The PPI descriptor is not found in the database.\r
184\r
185**/\r
186typedef\r
187EFI_STATUS\r
188(EFIAPI *EFI_PEI_LOCATE_PPI)(\r
189 IN CONST EFI_PEI_SERVICES **PeiServices,\r
190 IN CONST EFI_GUID *Guid,\r
191 IN UINTN Instance,\r
192 IN OUT EFI_PEI_PPI_DESCRIPTOR **PpiDescriptor OPTIONAL,\r
193 IN OUT VOID **Ppi\r
194 );\r
195\r
196/**\r
197 This function installs a notification service to be called back when a \r
198 given interface is installed or reinstalled. The purpose of the service \r
199 is to publish an interface that other parties can use to call additional PPIs \r
200 that may materialize later.\r
201\r
202 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation\r
203 @param NotifyList A pointer to the list of notification interfaces that the caller shall install.\r
204\r
205 @retval EFI_SUCCESS The interface was successfully installed.\r
206 @retval EFI_INVALID_PARAMETER The PpiList pointer is NULL or Any of the PEI PPI descriptors in the \r
207 list do not have the EFI_PEI_PPI_DESCRIPTOR_PPI bit set in the Flags field.\r
208 @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.\r
209\r
210**/\r
211typedef\r
212EFI_STATUS\r
213(EFIAPI *EFI_PEI_NOTIFY_PPI)(\r
214 IN CONST EFI_PEI_SERVICES **PeiServices,\r
215 IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList\r
216 );\r
217\r
218/**\r
219 This function returns the present value of the boot mode.\r
220\r
221 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
222 @param BootMode A pointer to contain the value of the boot mode.\r
223\r
224 @retval EFI_SUCCESS The boot mode was returned successfully.\r
225\r
226**/\r
227typedef\r
228EFI_STATUS\r
229(EFIAPI *EFI_PEI_GET_BOOT_MODE)(\r
230 IN CONST EFI_PEI_SERVICES **PeiServices,\r
231 OUT EFI_BOOT_MODE *BootMode\r
232 );\r
233\r
234/**\r
235 This function sets the value of the boot mode.\r
236\r
237 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation\r
238 @param BootMode The value of the boot mode to set.\r
239\r
240 @retval EFI_SUCCESS The boot mode was returned successfully.\r
241\r
242**/\r
243typedef\r
244EFI_STATUS\r
245(EFIAPI *EFI_PEI_SET_BOOT_MODE)(\r
246 IN CONST EFI_PEI_SERVICES **PeiServices,\r
247 IN EFI_BOOT_MODE BootMode\r
248 );\r
249\r
250/**\r
251 This function returns the pointer to the list of Hand-Off Blocks (HOBs) in memory. \r
252\r
253 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation\r
254 @param HobList A pointer to the list of HOBs that the PEI Foundation will initialize\r
255\r
256 @retval EFI_SUCCESS The list was successfully returned.\r
257 @retval EFI_NOT_AVAILABLE_YET The HOB list is not yet published.\r
258\r
259**/\r
260typedef\r
261EFI_STATUS\r
262(EFIAPI *EFI_PEI_GET_HOB_LIST)(\r
263 IN CONST EFI_PEI_SERVICES **PeiServices,\r
264 OUT VOID **HobList\r
265 );\r
266\r
267/**\r
268 This service published by the PEI Foundation abstracts the creation of a Hand-Off Block's (HOB's) headers.\r
269\r
270 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
271 @param Type The type of HOB to be installed.\r
272 @param Length The length of the HOB to be added.\r
273 @param Hob The address of a pointer that will contain the HOB header.\r
274\r
275 @retval EFI_SUCCESS The HOB was successfully created.\r
276 @retval EFI_OUT_OF_RESOURCES There is no additional space for HOB creation.\r
277\r
278**/\r
279typedef\r
280EFI_STATUS\r
281(EFIAPI *EFI_PEI_CREATE_HOB)(\r
282 IN CONST EFI_PEI_SERVICES **PeiServices,\r
283 IN UINT16 Type,\r
284 IN UINT16 Length,\r
285 IN OUT VOID **Hob\r
286 );\r
287\r
288/**\r
289 The purpose of the service is to abstract the capability of the PEI \r
290 Foundation to discover instances of firmware volumes in the system. \r
291\r
292 This service enables PEIMs to discover additional firmware volumes. The PEI Foundation uses this\r
293 service to abstract the locations and formats of various firmware volumes. These volumes include\r
294 the Boot Firmware Volume and any other volumes exposed by EFI_PEI_FV_PPI. The service\r
295 returns a volume handle of type EFI_PEI_FV_HANDLE, which must be unique within the system.\r
296\r
297 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
298 @param Instance This instance of the firmware volume to find.\r
299 The value 0 is the Boot Firmware Volume (BFV).\r
300 @param VolumeHandle On exit, points to the next volumn handle or NULL if it does not exist.\r
301\r
302 @retval EFI_SUCCESS The volume was found.\r
303 @retval EFI_NOT_FOUND The volume was not found.\r
304 @retval EFI_INVALID_PARAMETER VolumeHandle is NULL.\r
305\r
306**/\r
307typedef\r
308EFI_STATUS\r
309(EFIAPI *EFI_PEI_FFS_FIND_NEXT_VOLUME2)(\r
310 IN CONST EFI_PEI_SERVICES **PeiServices,\r
311 IN UINTN Instance,\r
312 OUT EFI_PEI_FV_HANDLE *VolumeHandle\r
313 );\r
314\r
315/**\r
316 Searches for the next matching file in the firmware volume.\r
317\r
318 This service enables PEIMs to discover firmware files within a specified volume.\r
319 To find the first instance of a firmware file, pass a FileHandle value of NULL into the service.\r
320 The service returns a file handle of type EFI_PEI_FILE_HANDLE, which must be unique within\r
321 the system.\r
322\r
323 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
324 @param SearchType A filter to find files only of this type.\r
325 @param FvHandle Handle of firmware volume in which to search.\r
326 @param FileHandle On entry, points to the current handle from which to begin searching\r
327 or NULL to start at the beginning of the firmware volume.\r
328 On exit, points the file handle of the next file in the volume or NULL\r
329 if there are no more files.\r
330\r
331 @retval EFI_SUCCESS The file was found.\r
332 @retval EFI_NOT_FOUND The file was not found.\r
333 @retval EFI_NOT_FOUND The header checksum was not zero.\r
334\r
335**/\r
336typedef\r
337EFI_STATUS\r
338(EFIAPI *EFI_PEI_FFS_FIND_NEXT_FILE2)(\r
339 IN CONST EFI_PEI_SERVICES **PeiServices,\r
340 IN EFI_FV_FILETYPE SearchType,\r
341 IN CONST EFI_PEI_FV_HANDLE FvHandle,\r
342 IN OUT EFI_PEI_FILE_HANDLE *FileHandle\r
343 );\r
344\r
345/**\r
346 Searches for the next matching section within the specified file.\r
347\r
348 This service enables PEI modules to discover the first section of a given type within a valid file.\r
349 This service will search within encapsulation sections (compression and GUIDed) as well. It will\r
350 search inside of a GUIDed section or a compressed section, but may not, for example, search a\r
351 GUIDed section inside a GUIDes section.\r
352 This service will not search within compression sections or GUIDed sections which require\r
353 extraction if memory is not present.\r
354\r
355 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
356 @param SectionType The value of the section type to find.\r
357 @param FileHandle Handle of the firmware file to search.\r
358 @param SectionData A pointer to the discovered section, if successful.\r
359\r
360 @retval EFI_SUCCESS The section was found.\r
361 @retval EFI_NOT_FOUND The section was not found.\r
362\r
363**/\r
364typedef\r
365EFI_STATUS\r
366(EFIAPI *EFI_PEI_FFS_FIND_SECTION_DATA2)(\r
367 IN CONST EFI_PEI_SERVICES **PeiServices,\r
368 IN EFI_SECTION_TYPE SectionType,\r
369 IN EFI_PEI_FILE_HANDLE FileHandle,\r
370 OUT VOID **SectionData\r
371 );\r
372\r
373/**\r
374 This function registers the found memory configuration with the PEI Foundation.\r
375\r
376 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
377 @param MemoryBegin The value of a region of installed memory\r
378 @param MemoryLength The corresponding length of a region of installed memory.\r
379\r
380 @retval EFI_SUCCESS The region was successfully installed in a HOB.\r
381 @retval EFI_INVALID_PARAMETER MemoryBegin and MemoryLength are illegal for this system.\r
382 @retval EFI_OUT_OF_RESOURCES There is no additional space for HOB creation.\r
383\r
384**/\r
385typedef\r
386EFI_STATUS\r
387(EFIAPI *EFI_PEI_INSTALL_PEI_MEMORY)(\r
388 IN CONST EFI_PEI_SERVICES **PeiServices,\r
389 IN EFI_PHYSICAL_ADDRESS MemoryBegin,\r
390 IN UINT64 MemoryLength\r
391 );\r
392\r
393/**\r
394 The purpose of the service is to publish an interface that allows \r
395 PEIMs to allocate memory ranges that are managed by the PEI Foundation.\r
396\r
397 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
398 @param MemoryType The type of memory to allocate.\r
399 @param Pages The number of contiguous 4 KB pages to allocate.\r
400 @param Memory Pointer to a physical address. On output, the address is set to the base \r
401 of the page range that was allocated.\r
402\r
403 @retval EFI_SUCCESS The memory range was successfully allocated.\r
404 @retval EFI_OUT_OF_RESOURCES The pages could not be allocated.\r
405 @retval EFI_INVALID_PARAMETER Type is not equal to AllocateAnyPages.\r
406\r
407**/\r
408typedef\r
409EFI_STATUS\r
410(EFIAPI *EFI_PEI_ALLOCATE_PAGES)(\r
411 IN CONST EFI_PEI_SERVICES **PeiServices,\r
412 IN EFI_MEMORY_TYPE MemoryType,\r
413 IN UINTN Pages,\r
414 OUT EFI_PHYSICAL_ADDRESS *Memory\r
415 );\r
416\r
417/**\r
418 The purpose of this service is to publish an interface that \r
419 allows PEIMs to allocate memory ranges that are managed by the PEI Foundation.\r
420\r
421 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
422 @param Size The number of bytes to allocate from the pool.\r
423 @param Buffer If the call succeeds, a pointer to a pointer to the allocated buffer; undefined otherwise.\r
424\r
425 @retval EFI_SUCCESS The allocation was successful.\r
426 @retval EFI_OUT_OF_RESOURCES There is not enough heap to allocate the requested size.\r
427\r
428**/\r
429typedef\r
430EFI_STATUS\r
431(EFIAPI *EFI_PEI_ALLOCATE_POOL)(\r
432 IN CONST EFI_PEI_SERVICES **PeiServices,\r
433 IN UINTN Size,\r
434 OUT VOID **Buffer\r
435 );\r
436\r
437/**\r
438 This service copies the contents of one buffer to another buffer.\r
439\r
440 @param Destination Pointer to the destination buffer of the memory copy.\r
441 @param Source Pointer to the source buffer of the memory copy\r
442 @param Length Number of bytes to copy from Source to Destination.\r
443\r
444**/\r
445typedef\r
446VOID\r
447(EFIAPI *EFI_PEI_COPY_MEM)(\r
448 IN VOID *Destination,\r
449 IN VOID *Source,\r
450 IN UINTN Length\r
451 );\r
452\r
453/**\r
454 The service fills a buffer with a specified value.\r
455\r
456 @param Buffer Pointer to the buffer to fill.\r
457 @param Size Number of bytes in Buffer to fill.\r
458 @param Value Value to fill Buffer with\r
459\r
460**/\r
461typedef\r
462VOID\r
463(EFIAPI *EFI_PEI_SET_MEM)(\r
464 IN VOID *Buffer,\r
465 IN UINTN Size,\r
466 IN UINT8 Value\r
467 );\r
468\r
469/**\r
470 This service publishes an interface that allows PEIMs to report status codes.\r
471\r
472 ReportStatusCode() is called by PEIMs that wish to report status information on their\r
473 progress. The principal use model is for a PEIM to emit one of the standard 32-bit error codes. This\r
474 will allow a platform owner to ascertain the state of the system, especially under conditions where\r
475 the full consoles might not have been installed.\r
476\r
477 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.\r
478 @param Type Indicates the type of status code being reported.\r
479 @param Value Describes the current status of a hardware or\r
480 software entity. This includes information about the class and\r
481 subclass that is used to classify the entity as well as an operation.\r
482 For progress codes, the operation is the current activity.\r
483 For error codes, it is the exception.For debug codes,it is not defined at this time.\r
484 @param Instance The enumeration of a hardware or software entity within\r
485 the system. A system may contain multiple entities that match a class/subclass\r
486 pairing. The instance differentiates between them. An instance of 0 indicates\r
487 that instance information is unavailable, not meaningful, or not relevant.\r
488 Valid instance numbers start with 1.\r
489 @param CallerId This optional parameter may be used to identify the caller.\r
490 This parameter allows the status code driver to apply different rules to\r
491 different callers.\r
492 @param Data This optional parameter may be used to pass additional data.\r
493\r
494 @retval EFI_SUCCESS The function completed successfully.\r
495 @retval EFI_NOT_AVAILABLE_YET No progress code provider has installed an interface in the system.\r
496\r
497**/\r
498typedef\r
499EFI_STATUS\r
500(EFIAPI *EFI_PEI_REPORT_STATUS_CODE)(\r
501 IN CONST EFI_PEI_SERVICES **PeiServices,\r
502 IN EFI_STATUS_CODE_TYPE Type,\r
503 IN EFI_STATUS_CODE_VALUE Value,\r
504 IN UINT32 Instance,\r
505 IN CONST EFI_GUID *CallerId OPTIONAL,\r
506 IN CONST EFI_STATUS_CODE_DATA *Data OPTIONAL\r
507 );\r
508\r
509/**\r
510 Resets the entire platform.\r
511\r
512 This service resets the entire platform, including all processors\r
513 and devices, and reboots the system.\r
514 This service will never return EFI_SUCCESS. \r
515\r
516 @param PeiServices An indirect pointer to the EFI_PEI_SERVICES\r
517 table published by the PEI Foundation.\r
518\r
519 @retval EFI_NOT_AVAILABLE_YET The service has not been installed yet.\r
520\r
521**/\r
522typedef\r
523EFI_STATUS\r
524(EFIAPI *EFI_PEI_RESET_SYSTEM)(\r
525 IN CONST EFI_PEI_SERVICES **PeiServices\r
526 );\r
527\r
528/**\r
529 Find a file within a volume by its name.\r
530\r
531 This service searches for files with a specific name, within\r
532 either the specified firmware volume or all firmware volumes.\r
533 The service returns a file handle of type EFI_PEI_FILE_HANDLE,\r
534 which must be unique within the system.\r
535\r
536 @param FileName A pointer to the name of the file to\r
537 find within the firmware volume.\r
538 @param VolumeHandle The firmware volume to search.\r
539 @param FileHandle Upon exit, points to the found file's\r
540 handle or NULL if it could not be found.\r
541\r
542 @retval EFI_SUCCESS File was found.\r
543 @retval EFI_NOT_FOUND File was not found.\r
544 @retval EFI_INVALID_PARAMETER VolumeHandle or FileHandle or\r
545 FileName was NULL.\r
546\r
547**/\r
548typedef\r
549EFI_STATUS\r
550(EFIAPI *EFI_PEI_FFS_FIND_BY_NAME)(\r
551 IN CONST EFI_GUID *FileName,\r
552 IN EFI_PEI_FV_HANDLE VolumeHandle,\r
553 OUT EFI_PEI_FILE_HANDLE *FileHandle\r
554 );\r
555\r
556///\r
557/// Information of FV file.\r
558///\r
559typedef struct {\r
560 ///\r
561 /// Name of the file.\r
562 ///\r
563 EFI_GUID FileName;\r
564 ///\r
565 /// File type.\r
566 ///\r
567 EFI_FV_FILETYPE FileType;\r
568 ///\r
569 /// Attributes of the file.\r
570 ///\r
571 EFI_FV_FILE_ATTRIBUTES FileAttributes;\r
572 ///\r
573 /// Points to the file's data (not the header).\r
574 /// Not valid if EFI_FV_FILE_ATTRIB_MEMORY_MAPPED\r
575 /// is zero.\r
576 ///\r
577 VOID *Buffer;\r
578 ///\r
579