1 | /** @file
|
---|
2 | Provides library functions for all PEI Services.
|
---|
3 |
|
---|
4 | Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
---|
5 | 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_SERVICES_LIB_H__
|
---|
16 | #define __PEI_SERVICES_LIB_H__
|
---|
17 |
|
---|
18 | /**
|
---|
19 | This service enables a given PEIM to register an interface into the PEI Foundation.
|
---|
20 |
|
---|
21 | @param PpiList A pointer to the list of interfaces that the caller shall install.
|
---|
22 |
|
---|
23 | @retval EFI_SUCCESS The interface was successfully installed.
|
---|
24 | @retval EFI_INVALID_PARAMETER The PpiList pointer is NULL.
|
---|
25 | @retval EFI_INVALID_PARAMETER Any of the PEI PPI descriptors in the list do not have the
|
---|
26 | EFI_PEI_PPI_DESCRIPTOR_PPI bit set in the Flags field.
|
---|
27 | @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.
|
---|
28 |
|
---|
29 | **/
|
---|
30 | EFI_STATUS
|
---|
31 | EFIAPI
|
---|
32 | PeiServicesInstallPpi (
|
---|
33 | IN CONST EFI_PEI_PPI_DESCRIPTOR *PpiList
|
---|
34 | );
|
---|
35 |
|
---|
36 | /**
|
---|
37 | This service enables PEIMs to replace an entry in the PPI database with an alternate entry.
|
---|
38 |
|
---|
39 | @param OldPpi Pointer to the old PEI PPI Descriptors.
|
---|
40 | @param NewPpi Pointer to the new PEI PPI Descriptors.
|
---|
41 |
|
---|
42 | @retval EFI_SUCCESS The interface was successfully installed.
|
---|
43 | @retval EFI_INVALID_PARAMETER The OldPpi or NewPpi is NULL.
|
---|
44 | @retval EFI_INVALID_PARAMETER Any of the PEI PPI descriptors in the list do not have the
|
---|
45 | EFI_PEI_PPI_DESCRIPTOR_PPI bit set in the Flags field.
|
---|
46 | @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.
|
---|
47 | @retval EFI_NOT_FOUND The PPI for which the reinstallation was requested has not been
|
---|
48 | installed.
|
---|
49 |
|
---|
50 | **/
|
---|
51 | EFI_STATUS
|
---|
52 | EFIAPI
|
---|
53 | PeiServicesReInstallPpi (
|
---|
54 | IN CONST EFI_PEI_PPI_DESCRIPTOR *OldPpi,
|
---|
55 | IN CONST EFI_PEI_PPI_DESCRIPTOR *NewPpi
|
---|
56 | );
|
---|
57 |
|
---|
58 | /**
|
---|
59 | This service enables PEIMs to discover a given instance of an interface.
|
---|
60 |
|
---|
61 | @param Guid A pointer to the GUID whose corresponding interface needs to be
|
---|
62 | found.
|
---|
63 | @param Instance The N-th instance of the interface that is required.
|
---|
64 | @param PpiDescriptor A pointer to instance of the EFI_PEI_PPI_DESCRIPTOR.
|
---|
65 | @param Ppi A pointer to the instance of the interface.
|
---|
66 |
|
---|
67 | @retval EFI_SUCCESS The interface was successfully returned.
|
---|
68 | @retval EFI_NOT_FOUND The PPI descriptor is not found in the database.
|
---|
69 |
|
---|
70 | **/
|
---|
71 | EFI_STATUS
|
---|
72 | EFIAPI
|
---|
73 | PeiServicesLocatePpi (
|
---|
74 | IN CONST EFI_GUID *Guid,
|
---|
75 | IN UINTN Instance,
|
---|
76 | IN OUT EFI_PEI_PPI_DESCRIPTOR **PpiDescriptor,
|
---|
77 | IN OUT VOID **Ppi
|
---|
78 | );
|
---|
79 |
|
---|
80 | /**
|
---|
81 | This service enables PEIMs to register a given service to be invoked when another service is
|
---|
82 | installed or reinstalled.
|
---|
83 |
|
---|
84 | @param NotifyList A pointer to the list of notification interfaces that the caller
|
---|
85 | shall install.
|
---|
86 |
|
---|
87 | @retval EFI_SUCCESS The interface was successfully installed.
|
---|
88 | @retval EFI_INVALID_PARAMETER The NotifyList pointer is NULL.
|
---|
89 | @retval EFI_INVALID_PARAMETER Any of the PEI notify descriptors in the list do not have the
|
---|
90 | EFI_PEI_PPI_DESCRIPTOR_NOTIFY_TYPES bit set in the Flags field.
|
---|
91 | @retval EFI_OUT_OF_RESOURCES There is no additional space in the PPI database.
|
---|
92 |
|
---|
93 | **/
|
---|
94 | EFI_STATUS
|
---|
95 | EFIAPI
|
---|
96 | PeiServicesNotifyPpi (
|
---|
97 | IN CONST EFI_PEI_NOTIFY_DESCRIPTOR *NotifyList
|
---|
98 | );
|
---|
99 |
|
---|
100 | /**
|
---|
101 | This service enables PEIMs to ascertain the present value of the boot mode.
|
---|
102 |
|
---|
103 | @param BootMode A pointer to contain the value of the boot mode.
|
---|
104 |
|
---|
105 | @retval EFI_SUCCESS The boot mode was returned successfully.
|
---|
106 | @retval EFI_INVALID_PARAMETER BootMode is NULL.
|
---|
107 |
|
---|
108 | **/
|
---|
109 | EFI_STATUS
|
---|
110 | EFIAPI
|
---|
111 | PeiServicesGetBootMode (
|
---|
112 | OUT EFI_BOOT_MODE *BootMode
|
---|
113 | );
|
---|
114 |
|
---|
115 | /**
|
---|
116 | This service enables PEIMs to update the boot mode variable.
|
---|
117 |
|
---|
118 | @param BootMode The value of the boot mode to set.
|
---|
119 |
|
---|
120 | @retval EFI_SUCCESS The value was successfully updated
|
---|
121 |
|
---|
122 | **/
|
---|
123 | EFI_STATUS
|
---|
124 | EFIAPI
|
---|
125 | PeiServicesSetBootMode (
|
---|
126 | IN EFI_BOOT_MODE BootMode
|
---|
127 | );
|
---|
128 |
|
---|
129 | /**
|
---|
130 | This service enables a PEIM to ascertain the address of the list of HOBs in memory.
|
---|
131 |
|
---|
132 | @param HobList A pointer to the list of HOBs that the PEI Foundation will initialize.
|
---|
133 |
|
---|
134 | @retval EFI_SUCCESS The list was successfully returned.
|
---|
135 | @retval EFI_NOT_AVAILABLE_YET The HOB list is not yet published.
|
---|
136 |
|
---|
137 | **/
|
---|
138 | EFI_STATUS
|
---|
139 | EFIAPI
|
---|
140 | PeiServicesGetHobList (
|
---|
141 | OUT VOID **HobList
|
---|
142 | );
|
---|
143 |
|
---|
144 | /**
|
---|
145 | This service enables PEIMs to create various types of HOBs.
|
---|
146 |
|
---|
147 | @param Type The type of HOB to be installed.
|
---|
148 | @param Length The length of the HOB to be added.
|
---|
149 | @param Hob The address of a pointer that will contain the HOB header.
|
---|
150 |
|
---|
151 | @retval EFI_SUCCESS The HOB was successfully created.
|
---|
152 | @retval EFI_OUT_OF_RESOURCES There is no additional space for HOB creation.
|
---|
153 |
|
---|
154 | **/
|
---|
155 | EFI_STATUS
|
---|
156 | EFIAPI
|
---|
157 | PeiServicesCreateHob (
|
---|
158 | IN UINT16 Type,
|
---|
159 | IN UINT16 Length,
|
---|
160 | OUT VOID **Hob
|
---|
161 | );
|
---|
162 |
|
---|
163 | /**
|
---|
164 | This service enables PEIMs to discover additional firmware volumes.
|
---|
165 |
|
---|
166 | @param Instance This instance of the firmware volume to find. The value 0 is the
|
---|
167 | Boot Firmware Volume (BFV).
|
---|
168 | @param VolumeHandle Handle of the firmware volume header of the volume to return.
|
---|
169 |
|
---|
170 | @retval EFI_SUCCESS The volume was found.
|
---|
171 | @retval EFI_NOT_FOUND The volume was not found.
|
---|
172 | @retval EFI_INVALID_PARAMETER FwVolHeader is NULL.
|
---|
173 |
|
---|
174 | **/
|
---|
175 | EFI_STATUS
|
---|
176 | EFIAPI
|
---|
177 | PeiServicesFfsFindNextVolume (
|
---|
178 | IN UINTN Instance,
|
---|
179 | IN OUT EFI_PEI_FV_HANDLE *VolumeHandle
|
---|
180 | );
|
---|
181 |
|
---|
182 | /**
|
---|
183 | This service enables PEIMs to discover additional firmware files.
|
---|
184 |
|
---|
185 | @param SearchType A filter to find files only of this type.
|
---|
186 | @param VolumeHandle Pointer to the firmware volume header of the volume to search.
|
---|
187 | This parameter must point to a valid FFS volume.
|
---|
188 | @param FileHandle Handle of the current file from which to begin searching.
|
---|
189 |
|
---|
190 | @retval EFI_SUCCESS The file was found.
|
---|
191 | @retval EFI_NOT_FOUND The file was not found.
|
---|
192 | @retval EFI_NOT_FOUND The header checksum was not zero.
|
---|
193 |
|
---|
194 | **/
|
---|
195 | EFI_STATUS
|
---|
196 | EFIAPI
|
---|
197 | PeiServicesFfsFindNextFile (
|
---|
198 | IN EFI_FV_FILETYPE SearchType,
|
---|
199 | IN EFI_PEI_FV_HANDLE VolumeHandle,
|
---|
200 | IN OUT EFI_PEI_FILE_HANDLE *FileHandle
|
---|
201 | );
|
---|
202 |
|
---|
203 | /**
|
---|
204 | This service enables PEIMs to discover sections of a given type within a valid FFS file.
|
---|
205 |
|
---|
206 | @param SectionType The value of the section type to find.
|
---|
207 | @param FileHandle A pointer to the file header that contains the set of sections to
|
---|
208 | be searched.
|
---|
209 | @param SectionData A pointer to the discovered section, if successful.
|
---|
210 |
|
---|
211 | @retval EFI_SUCCESS The section was found.
|
---|
212 | @retval EFI_NOT_FOUND The section was not found.
|
---|
213 |
|
---|
214 | **/
|
---|
215 | EFI_STATUS
|
---|
216 | EFIAPI
|
---|
217 | PeiServicesFfsFindSectionData (
|
---|
218 | IN EFI_SECTION_TYPE SectionType,
|
---|
219 | IN EFI_PEI_FILE_HANDLE FileHandle,
|
---|
220 | OUT VOID **SectionData
|
---|
221 | );
|
---|
222 |
|
---|
223 | /**
|
---|
224 | This service enables PEIMs to register the permanent memory configuration
|
---|
225 | that has been initialized with the PEI Foundation.
|
---|
226 |
|
---|
227 | @param MemoryBegin The value of a region of installed memory.
|
---|
228 | @param MemoryLength The corresponding length of a region of installed memory.
|
---|
229 |
|
---|
230 | @retval EFI_SUCCESS The region was successfully installed in a HOB.
|
---|
231 | @retval EFI_INVALID_PARAMETER MemoryBegin and MemoryLength are illegal for this system.
|
---|
232 | @retval EFI_OUT_OF_RESOURCES There is no additional space for HOB creation.
|
---|
233 |
|
---|
234 | **/
|
---|
235 | EFI_STATUS
|
---|
236 | EFIAPI
|
---|
237 | PeiServicesInstallPeiMemory (
|
---|
238 | IN EFI_PHYSICAL_ADDRESS MemoryBegin,
|
---|
239 | IN UINT64 MemoryLength
|
---|
240 | );
|
---|
241 |
|
---|
242 | /**
|
---|
243 | This service enables PEIMs to allocate memory after the permanent memory has been installed by a
|
---|
244 | PEIM.
|
---|
245 |
|
---|
246 | @param MemoryType Type of memory to allocate.
|
---|
247 | @param Pages Number of pages to allocate.
|
---|
248 | @param Memory Pointer of memory allocated.
|
---|
249 |
|
---|
250 | @retval EFI_SUCCESS The memory range was successfully allocated.
|
---|
251 | @retval EFI_INVALID_PARAMETER Type is not equal to AllocateAnyPages.
|
---|
252 | @retval EFI_NOT_AVAILABLE_YET Called with permanent memory not available.
|
---|
253 | @retval EFI_OUT_OF_RESOURCES The pages could not be allocated.
|
---|
254 |
|
---|
255 | **/
|
---|
256 | EFI_STATUS
|
---|
257 | EFIAPI
|
---|
258 | PeiServicesAllocatePages (
|
---|
259 | IN EFI_MEMORY_TYPE MemoryType,
|
---|
260 | IN UINTN Pages,
|
---|
261 | OUT EFI_PHYSICAL_ADDRESS *Memory
|
---|
262 | );
|
---|
263 |
|
---|
264 | /**
|
---|
265 | This service allocates memory from the Hand-Off Block (HOB) heap.
|
---|
266 |
|
---|
267 | @param Size The number of bytes to allocate from the pool.
|
---|
268 | @param Buffer If the call succeeds, a pointer to a pointer to the allocate
|
---|
269 | buffer; undefined otherwise.
|
---|
270 |
|
---|
271 | @retval EFI_SUCCESS The allocation was successful
|
---|
272 | @retval EFI_OUT_OF_RESOURCES There is not enough heap to allocate the requested size.
|
---|
273 |
|
---|
274 | **/
|
---|
275 | EFI_STATUS
|
---|
276 | EFIAPI
|
---|
277 | PeiServicesAllocatePool (
|
---|
278 | IN UINTN Size,
|
---|
279 | OUT VOID **Buffer
|
---|
280 | );
|
---|
281 |
|
---|
282 | /**
|
---|
283 | Resets the entire platform.
|
---|
284 |
|
---|
285 | @retval EFI_SUCCESS The function completed successfully.
|
---|
286 | @retval EFI_NOT_AVAILABLE_YET The service has not been installed yet.
|
---|
287 |
|
---|
288 | **/
|
---|
289 | EFI_STATUS
|
---|
290 | EFIAPI
|
---|
291 | PeiServicesResetSystem (
|
---|
292 | VOID
|
---|
293 | );
|
---|
294 |
|
---|
295 |
|
---|
296 | /**
|
---|
297 | This service is a wrapper for the PEI Service FfsFindByName(), except the pointer to the PEI Services
|
---|
298 | Table has been removed. See the Platform Initialization Pre-EFI Initialization Core Interface
|
---|
299 | Specification for details.
|
---|
300 |
|
---|
301 | @param FileName A pointer to the name of the file to
|
---|
302 | find within the firmware volume.
|
---|
303 |
|
---|
304 | @param VolumeHandle The firmware volume to search FileHandle
|
---|
305 | Upon exit, points to the found file's
|
---|
306 | handle or NULL if it could not be found.
|
---|
307 | @param FileHandle Pointer to found file handle
|
---|
308 |
|
---|
309 | @retval EFI_SUCCESS File was found.
|
---|
310 |
|
---|
311 | @retval EFI_NOT_FOUND File was not found.
|
---|
312 |
|
---|
313 | @retval EFI_INVALID_PARAMETER VolumeHandle or FileHandle or
|
---|
314 | FileName was NULL.
|
---|
315 |
|
---|
316 | **/
|
---|
317 | EFI_STATUS
|
---|
318 | EFIAPI
|
---|
319 | PeiServicesFfsFindFileByName (
|
---|
320 | IN CONST EFI_GUID *FileName,
|
---|
321 | IN CONST EFI_PEI_FV_HANDLE VolumeHandle,
|
---|
322 | OUT EFI_PEI_FILE_HANDLE *FileHandle
|
---|
323 | );
|
---|
324 |
|
---|
325 |
|
---|
326 | /**
|
---|
327 | This service is a wrapper for the PEI Service FfsGetFileInfo(), except the pointer to the PEI Services
|
---|
328 | Table has been removed. See the Platform Initialization Pre-EFI Initialization Core Interface
|
---|
329 | Specification for details.
|
---|
330 |
|
---|
331 | @param FileHandle Handle of the file.
|
---|
332 |
|
---|
333 | @param FileInfo Upon exit, points to the file's
|
---|
334 | information.
|
---|
335 |
|
---|
336 | @retval EFI_SUCCESS File information returned.
|
---|
337 |
|
---|
338 | @retval EFI_INVALID_PARAMETER If FileHandle does not
|
---|
339 | represent a valid file.
|
---|
340 |
|
---|
341 | @retval EFI_INVALID_PARAMETER If FileInfo is NULL.
|
---|
342 |
|
---|
343 | **/
|
---|
344 | EFI_STATUS
|
---|
345 | EFIAPI
|
---|
346 | PeiServicesFfsGetFileInfo (
|
---|
347 | IN CONST EFI_PEI_FILE_HANDLE FileHandle,
|
---|
348 | OUT EFI_FV_FILE_INFO *FileInfo
|
---|
349 | );
|
---|
350 |
|
---|
351 | /**
|
---|
352 | This service is a wrapper for the PEI Service FfsGetVolumeInfo(), except the pointer to the PEI Services
|
---|
353 | Table has been removed. See the Platform Initialization Pre-EFI Initialization Core Interface
|
---|
354 | Specification for details.
|
---|
355 |
|
---|
356 | @param VolumeHandle Handle of the volume.
|
---|
357 |
|
---|
358 | @param VolumeInfo Upon exit, points to the volume's
|
---|
359 | information.
|
---|
360 |
|
---|
361 | @retval EFI_SUCCESS File information returned.
|
---|
362 |
|
---|
363 | @retval EFI_INVALID_PARAMETER If FileHandle does not
|
---|
364 | represent a valid file.
|
---|
365 |
|
---|
366 | @retval EFI_INVALID_PARAMETER If FileInfo is NULL.
|
---|
367 |
|
---|
368 | **/
|
---|
369 | EFI_STATUS
|
---|
370 | EFIAPI
|
---|
371 | PeiServicesFfsGetVolumeInfo (
|
---|
372 | IN EFI_PEI_FV_HANDLE VolumeHandle,
|
---|
373 | OUT EFI_FV_INFO *VolumeInfo
|
---|
374 | );
|
---|
375 |
|
---|
376 |
|
---|
377 | /**
|
---|
378 | This service is a wrapper for the PEI Service RegisterForShadow(), except the pointer to the PEI Services
|
---|
379 | Table has been removed. See the Platform Initialization Pre-EFI Initialization Core Interface
|
---|
380 | Specification for details.
|
---|
381 |
|
---|
382 | @param FileHandle PEIM's file handle. Must be the currently
|
---|
383 | executing PEIM.
|
---|
384 |
|
---|
385 | @retval EFI_SUCCESS The PEIM was successfully registered for
|
---|
386 | shadowing.
|
---|
387 |
|
---|
388 | @retval EFI_ALREADY_STARTED The PEIM was previously
|
---|
389 | registered for shadowing.
|
---|
390 |
|
---|
391 | @retval EFI_NOT_FOUND The FileHandle does not refer to a
|
---|
392 | valid file handle.
|
---|
393 | **/
|
---|
394 | EFI_STATUS
|
---|
395 | EFIAPI
|
---|
396 | PeiServicesRegisterForShadow (
|
---|
397 | IN EFI_PEI_FILE_HANDLE FileHandle
|
---|
398 | );
|
---|
399 |
|
---|
400 | /**
|
---|
401 | Install a EFI_PEI_FIRMWARE_VOLUME_INFO_PPI instance so the PEI Core will be notified about a new firmware volume.
|
---|
402 |
|
---|
403 | This function allocates, initializes, and installs a new EFI_PEI_FIRMWARE_VOLUME_INFO_PPI using
|
---|
404 | the parameters passed in to initialize the fields of the EFI_PEI_FIRMWARE_VOLUME_INFO_PPI instance.
|
---|
405 | If the resources can not be allocated for EFI_PEI_FIRMWARE_VOLUME_INFO_PPI, then ASSERT().
|
---|
406 | If the EFI_PEI_FIRMWARE_VOLUME_INFO_PPI can not be installed, then ASSERT().
|
---|
407 |
|
---|
408 |
|
---|
409 | @param FvFormat Unique identifier of the format of the memory-mapped firmware volume.
|
---|
410 | This parameter is optional and may be NULL.
|
---|
411 | If NULL is specified, the EFI_FIRMWARE_FILE_SYSTEM2_GUID format is assumed.
|
---|
412 | @param FvInfo Points to a buffer which allows the EFI_PEI_FIRMWARE_VOLUME_PPI to process the volume.
|
---|
413 | The format of this buffer is specific to the FvFormat. For memory-mapped firmware volumes,
|
---|
414 | this typically points to the first byte of the firmware volume.
|
---|
415 | @param FvInfoSize The size, in bytes, of FvInfo. For memory-mapped firmware volumes,
|
---|
416 | this is typically the size of the firmware volume.
|
---|
417 | @param ParentFvName If the new firmware volume originated from a file in a different firmware volume,
|
---|
418 | then this parameter specifies the GUID name of the originating firmware volume.
|
---|
419 | Otherwise, this parameter must be NULL.
|
---|
420 | @param ParentFileName If the new firmware volume originated from a file in a different firmware volume,
|
---|
421 | then this parameter specifies the GUID file name of the originating firmware file.
|
---|
422 | Otherwise, this parameter must be NULL.
|
---|
423 | **/
|
---|
424 | VOID
|
---|
425 | EFIAPI
|
---|
426 | PeiServicesInstallFvInfoPpi (
|
---|
427 | IN CONST EFI_GUID *FvFormat, OPTIONAL
|
---|
428 | IN CONST VOID *FvInfo,
|
---|
429 | IN UINT32 FvInfoSize,
|
---|
430 | IN CONST EFI_GUID *ParentFvName, OPTIONAL
|
---|
431 | IN CONST EFI_GUID *ParentFileName OPTIONAL
|
---|
432 | );
|
---|
433 |
|
---|
434 | #endif
|
---|