]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Include/Library/HobLib.h
Update the copyright notice format
[mirror_edk2.git] / MdePkg / Include / Library / HobLib.h
... / ...
CommitLineData
1/** @file\r
2 Provides services to create and parse HOBs. Only available for PEI\r
3 and DXE module types.\r
4\r
5 The HOB Library supports the efficient creation and searching of HOBs\r
6 defined in the PI Specification. \r
7 A HOB is a Hand-Off Block, defined in the Framework architecture, that \r
8 allows the PEI phase to pass information to the DXE phase. HOBs are position \r
9 independent and can be relocated easily to different memory memory locations.\r
10\r
11Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>\r
12This program and the accompanying materials\r
13are licensed and made available under the terms and conditions of the BSD License\r
14which accompanies this distribution. The full text of the license may be found at\r
15http://opensource.org/licenses/bsd-license.php\r
16\r
17THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
18WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
19\r
20**/\r
21\r
22#ifndef __HOB_LIB_H__\r
23#define __HOB_LIB_H__\r
24\r
25/**\r
26 Returns the pointer to the HOB list.\r
27\r
28 This function returns the pointer to first HOB in the list.\r
29 For PEI phase, the PEI service GetHobList() can be used to retrieve the pointer \r
30 to the HOB list. For the DXE phase, the HOB list pointer can be retrieved through\r
31 the EFI System Table by looking up theHOB list GUID in the System Configuration Table.\r
32 Since the System Configuration Table does not exist that the time the DXE Core is \r
33 launched, the DXE Core uses a global variable from the DXE Core Entry Point Library \r
34 to manage the pointer to the HOB list.\r
35 \r
36 If the pointer to the HOB list is NULL, then ASSERT().\r
37 \r
38 @return The pointer to the HOB list.\r
39\r
40**/\r
41VOID *\r
42EFIAPI\r
43GetHobList (\r
44 VOID\r
45 );\r
46\r
47/**\r
48 Returns the next instance of a HOB type from the starting HOB.\r
49\r
50 This function searches the first instance of a HOB type from the starting HOB pointer. \r
51 If there does not exist such HOB type from the starting HOB pointer, it will return NULL.\r
52 In contrast with macro GET_NEXT_HOB(), this function does not skip the starting HOB pointer\r
53 unconditionally: it returns HobStart back if HobStart itself meets the requirement;\r
54 caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart.\r
55 \r
56 If HobStart is NULL, then ASSERT().\r
57\r
58 @param Type The HOB type to return.\r
59 @param HobStart The starting HOB pointer to search from.\r
60\r
61 @return The next instance of a HOB type from the starting HOB.\r
62\r
63**/\r
64VOID *\r
65EFIAPI\r
66GetNextHob (\r
67 IN UINT16 Type,\r
68 IN CONST VOID *HobStart\r
69 );\r
70\r
71/**\r
72 Returns the first instance of a HOB type among the whole HOB list.\r
73\r
74 This function searches the first instance of a HOB type among the whole HOB list. \r
75 If there does not exist such HOB type in the HOB list, it will return NULL. \r
76 \r
77 If the pointer to the HOB list is NULL, then ASSERT().\r
78\r
79 @param Type The HOB type to return.\r
80\r
81 @return The next instance of a HOB type from the starting HOB.\r
82\r
83**/\r
84VOID *\r
85EFIAPI\r
86GetFirstHob (\r
87 IN UINT16 Type\r
88 );\r
89\r
90/**\r
91 Returns the next instance of the matched GUID HOB from the starting HOB.\r
92 \r
93 This function searches the first instance of a HOB from the starting HOB pointer. \r
94 Such HOB should satisfy two conditions: \r
95 its HOB type is EFI_HOB_TYPE_GUID_EXTENSION and its GUID Name equals to the input Guid. \r
96 If there does not exist such HOB from the starting HOB pointer, it will return NULL. \r
97 Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE ()\r
98 to extract the data section and its size info respectively.\r
99 In contrast with macro GET_NEXT_HOB(), this function does not skip the starting HOB pointer\r
100 unconditionally: it returns HobStart back if HobStart itself meets the requirement;\r
101 caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart.\r
102 \r
103 If Guid is NULL, then ASSERT().\r
104 If HobStart is NULL, then ASSERT().\r
105\r
106 @param Guid The GUID to match with in the HOB list.\r
107 @param HobStart A pointer to a Guid.\r
108\r
109 @return The next instance of the matched GUID HOB from the starting HOB.\r
110\r
111**/\r
112VOID *\r
113EFIAPI\r
114GetNextGuidHob (\r
115 IN CONST EFI_GUID *Guid,\r
116 IN CONST VOID *HobStart\r
117 );\r
118\r
119/**\r
120 Returns the first instance of the matched GUID HOB among the whole HOB list.\r
121 \r
122 This function searches the first instance of a HOB among the whole HOB list. \r
123 Such HOB should satisfy two conditions:\r
124 its HOB type is EFI_HOB_TYPE_GUID_EXTENSION and its GUID Name equals to the input Guid.\r
125 If there does not exist such HOB from the starting HOB pointer, it will return NULL.\r
126 Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE ()\r
127 to extract the data section and its size info respectively.\r
128 \r
129 If the pointer to the HOB list is NULL, then ASSERT().\r
130 If Guid is NULL, then ASSERT().\r
131\r
132 @param Guid The GUID to match with in the HOB list.\r
133\r
134 @return The first instance of the matched GUID HOB among the whole HOB list.\r
135\r
136**/\r
137VOID *\r
138EFIAPI\r
139GetFirstGuidHob (\r
140 IN CONST EFI_GUID *Guid\r
141 );\r
142\r
143/**\r
144 Get the system boot mode from the HOB list.\r
145\r
146 This function returns the system boot mode information from the \r
147 PHIT HOB in HOB list.\r
148\r
149 If the pointer to the HOB list is NULL, then ASSERT().\r
150 \r
151 @param VOID\r
152\r
153 @return The Boot Mode.\r
154\r
155**/\r
156EFI_BOOT_MODE\r
157EFIAPI\r
158GetBootModeHob (\r
159 VOID\r
160 );\r
161\r
162/**\r
163 Builds a HOB for a loaded PE32 module.\r
164\r
165 This function builds a HOB for a loaded PE32 module.\r
166 It can only be invoked during PEI phase;\r
167 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
168 \r
169 If ModuleName is NULL, then ASSERT().\r
170 If there is no additional space for HOB creation, then ASSERT().\r
171\r
172 @param ModuleName The GUID File Name of the module.\r
173 @param MemoryAllocationModule The 64 bit physical address of the module.\r
174 @param ModuleLength The length of the module in bytes.\r
175 @param EntryPoint The 64 bit physical address of the module entry point.\r
176\r
177**/\r
178VOID\r
179EFIAPI\r
180BuildModuleHob (\r
181 IN CONST EFI_GUID *ModuleName,\r
182 IN EFI_PHYSICAL_ADDRESS MemoryAllocationModule,\r
183 IN UINT64 ModuleLength,\r
184 IN EFI_PHYSICAL_ADDRESS EntryPoint\r
185 );\r
186\r
187/**\r
188 Builds a HOB that describes a chunk of system memory.\r
189\r
190 This function builds a HOB that describes a chunk of system memory.\r
191 It can only be invoked during PEI phase;\r
192 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
193 \r
194 If there is no additional space for HOB creation, then ASSERT().\r
195\r
196 @param ResourceType The type of resource described by this HOB.\r
197 @param ResourceAttribute The resource attributes of the memory described by this HOB.\r
198 @param PhysicalStart The 64 bit physical address of memory described by this HOB.\r
199 @param NumberOfBytes The length of the memory described by this HOB in bytes.\r
200\r
201**/\r
202VOID\r
203EFIAPI\r
204BuildResourceDescriptorHob (\r
205 IN EFI_RESOURCE_TYPE ResourceType,\r
206 IN EFI_RESOURCE_ATTRIBUTE_TYPE ResourceAttribute,\r
207 IN EFI_PHYSICAL_ADDRESS PhysicalStart,\r
208 IN UINT64 NumberOfBytes\r
209 );\r
210\r
211/**\r
212 Builds a customized HOB tagged with a GUID for identification and returns \r
213 the start address of GUID HOB data.\r
214\r
215 This function builds a customized HOB tagged with a GUID for identification \r
216 and returns the start address of GUID HOB data so that caller can fill the customized data. \r
217 The HOB Header and Name field is already stripped.\r
218 It can only be invoked during PEI phase;\r
219 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
220 \r
221 If Guid is NULL, then ASSERT().\r
222 If there is no additional space for HOB creation, then ASSERT().\r
223 If DataLength >= (0x10000 - sizeof (EFI_HOB_GUID_TYPE)), then ASSERT().\r
224\r
225 @param Guid The GUID to tag the customized HOB.\r
226 @param DataLength The size of the data payload for the GUID HOB.\r
227\r
228 @return The start address of GUID HOB data.\r
229\r
230**/\r
231VOID *\r
232EFIAPI\r
233BuildGuidHob (\r
234 IN CONST EFI_GUID *Guid,\r
235 IN UINTN DataLength\r
236 );\r
237\r
238/**\r
239 Builds a customized HOB tagged with a GUID for identification, copies the input data to the HOB \r
240 data field, and returns the start address of the GUID HOB data.\r
241\r
242 This function builds a customized HOB tagged with a GUID for identification and copies the input\r
243 data to the HOB data field and returns the start address of the GUID HOB data. It can only be \r
244 invoked during PEI phase; for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. \r
245 The HOB Header and Name field is already stripped.\r
246 It can only be invoked during PEI phase;\r
247 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
248 \r
249 If Guid is NULL, then ASSERT().\r
250 If Data is NULL and DataLength > 0, then ASSERT().\r
251 If there is no additional space for HOB creation, then ASSERT().\r
252 If DataLength >= (0x10000 - sizeof (EFI_HOB_GUID_TYPE)), then ASSERT().\r
253\r
254 @param Guid The GUID to tag the customized HOB.\r
255 @param Data The data to be copied into the data field of the GUID HOB.\r
256 @param DataLength The size of the data payload for the GUID HOB.\r
257\r
258 @return The start address of GUID HOB data.\r
259\r
260**/\r
261VOID *\r
262EFIAPI\r
263BuildGuidDataHob (\r
264 IN CONST EFI_GUID *Guid,\r
265 IN VOID *Data,\r
266 IN UINTN DataLength\r
267 );\r
268\r
269/**\r
270 Builds a Firmware Volume HOB.\r
271\r
272 This function builds a Firmware Volume HOB.\r
273 It can only be invoked during PEI phase;\r
274 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
275 \r
276 If there is no additional space for HOB creation, then ASSERT().\r
277\r
278 @param BaseAddress The base address of the Firmware Volume.\r
279 @param Length The size of the Firmware Volume in bytes.\r
280\r
281**/\r
282VOID\r
283EFIAPI\r
284BuildFvHob (\r
285 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
286 IN UINT64 Length\r
287 );\r
288\r
289/**\r
290 Builds a EFI_HOB_TYPE_FV2 HOB.\r
291\r
292 This function builds a EFI_HOB_TYPE_FV2 HOB.\r
293 It can only be invoked during PEI phase;\r
294 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
295 \r
296 If there is no additional space for HOB creation, then ASSERT().\r
297\r
298 @param BaseAddress The base address of the Firmware Volume.\r
299 @param Length The size of the Firmware Volume in bytes.\r
300 @param FvName The name of the Firmware Volume.\r
301 @param FileName The name of the file.\r
302 \r
303**/\r
304VOID\r
305EFIAPI\r
306BuildFv2Hob (\r
307 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
308 IN UINT64 Length,\r
309 IN CONST EFI_GUID *FvName,\r
310 IN CONST EFI_GUID *FileName\r
311 );\r
312\r
313/**\r
314 Builds a Capsule Volume HOB.\r
315\r
316 This function builds a Capsule Volume HOB.\r
317 It can only be invoked during PEI phase;\r
318 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
319 \r
320 If the platform does not support Capsule Volume HOBs, then ASSERT().\r
321 If there is no additional space for HOB creation, then ASSERT().\r
322\r
323 @param BaseAddress The base address of the Capsule Volume.\r
324 @param Length The size of the Capsule Volume in bytes.\r
325\r
326**/\r
327VOID\r
328EFIAPI\r
329BuildCvHob (\r
330 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
331 IN UINT64 Length\r
332 );\r
333\r
334/**\r
335 Builds a HOB for the CPU.\r
336\r
337 This function builds a HOB for the CPU.\r
338 It can only be invoked during PEI phase;\r
339 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
340 \r
341 If there is no additional space for HOB creation, then ASSERT().\r
342\r
343 @param SizeOfMemorySpace The maximum physical memory addressability of the processor.\r
344 @param SizeOfIoSpace The maximum physical I/O addressability of the processor.\r
345\r
346**/\r
347VOID\r
348EFIAPI\r
349BuildCpuHob (\r
350 IN UINT8 SizeOfMemorySpace,\r
351 IN UINT8 SizeOfIoSpace\r
352 );\r
353\r
354/**\r
355 Builds a HOB for the Stack.\r
356\r
357 This function builds a HOB for the stack.\r
358 It can only be invoked during PEI phase;\r
359 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
360 \r
361 If there is no additional space for HOB creation, then ASSERT().\r
362\r
363 @param BaseAddress The 64 bit physical address of the Stack.\r
364 @param Length The length of the stack in bytes.\r
365\r
366**/\r
367VOID\r
368EFIAPI\r
369BuildStackHob (\r
370 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
371 IN UINT64 Length\r
372 );\r
373\r
374/**\r
375 Builds a HOB for the BSP store.\r
376\r
377 This function builds a HOB for BSP store.\r
378 It can only be invoked during PEI phase;\r
379 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
380 \r
381 If there is no additional space for HOB creation, then ASSERT().\r
382\r
383 @param BaseAddress The 64 bit physical address of the BSP.\r
384 @param Length The length of the BSP store in bytes.\r
385 @param MemoryType Type of memory allocated by this HOB.\r
386\r
387**/\r
388VOID\r
389EFIAPI\r
390BuildBspStoreHob (\r
391 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
392 IN UINT64 Length,\r
393 IN EFI_MEMORY_TYPE MemoryType\r
394 );\r
395\r
396/**\r
397 Builds a HOB for the memory allocation.\r
398\r
399 This function builds a HOB for the memory allocation.\r
400 It can only be invoked during PEI phase;\r
401 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
402 \r
403 If there is no additional space for HOB creation, then ASSERT().\r
404\r
405 @param BaseAddress The 64 bit physical address of the memory.\r
406 @param Length The length of the memory allocation in bytes.\r
407 @param MemoryType Type of memory allocated by this HOB.\r
408\r
409**/\r
410VOID\r
411EFIAPI\r
412BuildMemoryAllocationHob (\r
413 IN EFI_PHYSICAL_ADDRESS BaseAddress,\r
414 IN UINT64 Length,\r
415 IN EFI_MEMORY_TYPE MemoryType\r
416 );\r
417\r
418/**\r
419 Returns the type of a HOB.\r
420\r
421 This macro returns the HobType field from the HOB header for the \r
422 HOB specified by HobStart.\r
423\r
424 @param HobStart A pointer to a HOB.\r
425 \r
426 @return HobType.\r
427 \r
428**/\r
429#define GET_HOB_TYPE(HobStart) \\r
430 ((*(EFI_HOB_GENERIC_HEADER **)&(HobStart))->HobType)\r
431\r
432/**\r
433 Returns the length, in bytes, of a HOB.\r
434\r
435 This macro returns the HobLength field from the HOB header for the \r
436 HOB specified by HobStart.\r
437\r
438 @param HobStart A pointer to a HOB.\r
439\r
440 @return HobLength.\r
441\r
442**/\r
443#define GET_HOB_LENGTH(HobStart) \\r
444 ((*(EFI_HOB_GENERIC_HEADER **)&(HobStart))->HobLength)\r
445\r
446/**\r
447 Returns a pointer to the next HOB in the HOB list.\r
448\r
449 This macro returns a pointer to HOB that follows the \r
450 HOB specified by HobStart in the HOB List.\r
451\r
452 @param HobStart A pointer to a HOB.\r
453\r
454 @return A pointer to the next HOB in the HOB list.\r
455\r
456**/\r
457#define GET_NEXT_HOB(HobStart) \\r
458 (VOID *)(*(UINT8 **)&(HobStart) + GET_HOB_LENGTH (HobStart))\r
459\r
460/**\r
461 Determines if a HOB is the last HOB in the HOB list.\r
462 \r
463 This macro determine if the HOB specified by HobStart is the \r
464 last HOB in the HOB list. If HobStart is last HOB in the HOB list, \r
465 then TRUE is returned. Otherwise, FALSE is returned.\r
466\r
467 @param HobStart A pointer to a HOB.\r
468\r
469 @retval TRUE The HOB specified by HobStart is the last HOB in the HOB list.\r
470 @retval FALSE The HOB specified by HobStart is not the last HOB in the HOB list.\r
471\r
472**/\r
473#define END_OF_HOB_LIST(HobStart) (GET_HOB_TYPE (HobStart) == (UINT16)EFI_HOB_TYPE_END_OF_HOB_LIST)\r
474\r
475/**\r
476 Returns a pointer to data buffer from a HOB of type EFI_HOB_TYPE_GUID_EXTENSION.\r
477\r
478 This macro returns a pointer to the data buffer in a HOB specified by HobStart.\r
479 HobStart is assumed to be a HOB of type EFI_HOB_TYPE_GUID_EXTENSION. \r
480\r
481 @param GuidHob A pointer to a HOB.\r
482\r
483 @return A pointer to the data buffer in a HOB.\r
484 \r
485**/\r
486#define GET_GUID_HOB_DATA(HobStart) \\r
487 (VOID *)(*(UINT8 **)&(HobStart) + sizeof (EFI_HOB_GUID_TYPE))\r
488\r
489/**\r
490 Returns the size of the data buffer from a HOB of type EFI_HOB_TYPE_GUID_EXTENSION.\r
491\r
492 This macro returns the size, in bytes, of the data buffer in a HOB specified by HobStart.\r
493 HobStart is assumed to be a HOB of type EFI_HOB_TYPE_GUID_EXTENSION.\r
494\r
495 @param GuidHob A pointer to a HOB.\r
496\r
497 @return The size of the data buffer.\r
498**/\r
499#define GET_GUID_HOB_DATA_SIZE(HobStart) \\r
500 (UINT16)(GET_HOB_LENGTH (HobStart) - sizeof (EFI_HOB_GUID_TYPE))\r
501\r
502#endif\r