]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/DxeCoreHobLib/HobLib.c
Enhance the code to make the code logic more clear.
[mirror_edk2.git] / MdePkg / Library / DxeCoreHobLib / HobLib.c
1 /** @file
2 HOB Library implementation for DxeCore driver.
3
4 Copyright (c) 2006 - 2012, 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 #include <PiDxe.h>
16
17 #include <Library/HobLib.h>
18 #include <Library/DebugLib.h>
19 #include <Library/BaseMemoryLib.h>
20 #include <Library/DxeCoreEntryPoint.h>
21
22 /**
23 Returns the pointer to the HOB list.
24
25 This function returns the pointer to first HOB in the list.
26 For PEI phase, the PEI service GetHobList() can be used to retrieve the pointer
27 to the HOB list. For the DXE phase, the HOB list pointer can be retrieved through
28 the EFI System Table by looking up theHOB list GUID in the System Configuration Table.
29 Since the System Configuration Table does not exist that the time the DXE Core is
30 launched, the DXE Core uses a global variable from the DXE Core Entry Point Library
31 to manage the pointer to the HOB list.
32
33 If the pointer to the HOB list is NULL, then ASSERT().
34
35 @return The pointer to the HOB list.
36
37 **/
38 VOID *
39 EFIAPI
40 GetHobList (
41 VOID
42 )
43 {
44 ASSERT (gHobList != NULL);
45 return gHobList;
46 }
47
48 /**
49 Returns the next instance of a HOB type from the starting HOB.
50
51 This function searches the first instance of a HOB type from the starting HOB pointer.
52 If there does not exist such HOB type from the starting HOB pointer, it will return NULL.
53 In contrast with macro GET_NEXT_HOB(), this function does not skip the starting HOB pointer
54 unconditionally: it returns HobStart back if HobStart itself meets the requirement;
55 caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart.
56
57 If HobStart is NULL, then ASSERT().
58
59 @param Type The HOB type to return.
60 @param HobStart The starting HOB pointer to search from.
61
62 @return The next instance of a HOB type from the starting HOB.
63
64 **/
65 VOID *
66 EFIAPI
67 GetNextHob (
68 IN UINT16 Type,
69 IN CONST VOID *HobStart
70 )
71 {
72 EFI_PEI_HOB_POINTERS Hob;
73
74 ASSERT (HobStart != NULL);
75
76 Hob.Raw = (UINT8 *) HobStart;
77 //
78 // Parse the HOB list until end of list or matching type is found.
79 //
80 while (!END_OF_HOB_LIST (Hob)) {
81 if (Hob.Header->HobType == Type) {
82 return Hob.Raw;
83 }
84 Hob.Raw = GET_NEXT_HOB (Hob);
85 }
86 return NULL;
87 }
88
89 /**
90 Returns the first instance of a HOB type among the whole HOB list.
91
92 This function searches the first instance of a HOB type among the whole HOB list.
93 If there does not exist such HOB type in the HOB list, it will return NULL.
94
95 If the pointer to the HOB list is NULL, then ASSERT().
96
97 @param Type The HOB type to return.
98
99 @return The next instance of a HOB type from the starting HOB.
100
101 **/
102 VOID *
103 EFIAPI
104 GetFirstHob (
105 IN UINT16 Type
106 )
107 {
108 VOID *HobList;
109
110 HobList = GetHobList ();
111 return GetNextHob (Type, HobList);
112 }
113
114 /**
115 Returns the next instance of the matched GUID HOB from the starting HOB.
116
117 This function searches the first instance of a HOB from the starting HOB pointer.
118 Such HOB should satisfy two conditions:
119 its HOB type is EFI_HOB_TYPE_GUID_EXTENSION, and its GUID Name equals to the input Guid.
120 If such a HOB from the starting HOB pointer does not exist, it will return NULL.
121 Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE ()
122 to extract the data section and its size information, respectively.
123 In contrast with macro GET_NEXT_HOB(), this function does not skip the starting HOB pointer
124 unconditionally: it returns HobStart back if HobStart itself meets the requirement;
125 caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart.
126
127 If Guid is NULL, then ASSERT().
128 If HobStart is NULL, then ASSERT().
129
130 @param Guid The GUID to match with in the HOB list.
131 @param HobStart A pointer to a Guid.
132
133 @return The next instance of the matched GUID HOB from the starting HOB.
134
135 **/
136 VOID *
137 EFIAPI
138 GetNextGuidHob (
139 IN CONST EFI_GUID *Guid,
140 IN CONST VOID *HobStart
141 )
142 {
143 EFI_PEI_HOB_POINTERS GuidHob;
144
145 GuidHob.Raw = (UINT8 *) HobStart;
146 while ((GuidHob.Raw = GetNextHob (EFI_HOB_TYPE_GUID_EXTENSION, GuidHob.Raw)) != NULL) {
147 if (CompareGuid (Guid, &GuidHob.Guid->Name)) {
148 break;
149 }
150 GuidHob.Raw = GET_NEXT_HOB (GuidHob);
151 }
152 return GuidHob.Raw;
153 }
154
155 /**
156 Returns the first instance of the matched GUID HOB among the whole HOB list.
157
158 This function searches the first instance of a HOB among the whole HOB list.
159 Such HOB should satisfy two conditions:
160 its HOB type is EFI_HOB_TYPE_GUID_EXTENSION and its GUID Name equals to the input Guid.
161 If such a HOB from the starting HOB pointer does not exist, it will return NULL.
162 Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE ()
163 to extract the data section and its size information, respectively.
164
165 If the pointer to the HOB list is NULL, then ASSERT().
166 If Guid is NULL, then ASSERT().
167
168 @param Guid The GUID to match with in the HOB list.
169
170 @return The first instance of the matched GUID HOB among the whole HOB list.
171
172 **/
173 VOID *
174 EFIAPI
175 GetFirstGuidHob (
176 IN CONST EFI_GUID *Guid
177 )
178 {
179 VOID *HobList;
180
181 HobList = GetHobList ();
182 return GetNextGuidHob (Guid, HobList);
183 }
184
185 /**
186 Get the system boot mode from the HOB list.
187
188 This function returns the system boot mode information from the
189 PHIT HOB in HOB list.
190
191 If the pointer to the HOB list is NULL, then ASSERT().
192
193 @param VOID
194
195 @return The Boot Mode.
196
197 **/
198 EFI_BOOT_MODE
199 EFIAPI
200 GetBootModeHob (
201 VOID
202 )
203 {
204 EFI_HOB_HANDOFF_INFO_TABLE *HandOffHob;
205
206 HandOffHob = (EFI_HOB_HANDOFF_INFO_TABLE *) GetHobList ();
207
208 return HandOffHob->BootMode;
209 }
210
211 /**
212 Builds a HOB for a loaded PE32 module.
213
214 This function builds a HOB for a loaded PE32 module.
215 It can only be invoked during PEI phase;
216 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
217
218 If ModuleName is NULL, then ASSERT().
219 If there is no additional space for HOB creation, then ASSERT().
220
221 @param ModuleName The GUID File Name of the module.
222 @param MemoryAllocationModule The 64 bit physical address of the module.
223 @param ModuleLength The length of the module in bytes.
224 @param EntryPoint The 64 bit physical address of the module entry point.
225
226 **/
227 VOID
228 EFIAPI
229 BuildModuleHob (
230 IN CONST EFI_GUID *ModuleName,
231 IN EFI_PHYSICAL_ADDRESS MemoryAllocationModule,
232 IN UINT64 ModuleLength,
233 IN EFI_PHYSICAL_ADDRESS EntryPoint
234 )
235 {
236 //
237 // PEI HOB is read only for DXE phase
238 //
239 ASSERT (FALSE);
240 }
241
242 /**
243 Builds a HOB that describes a chunk of system memory.
244
245 This function builds a HOB that describes a chunk of system memory.
246 It can only be invoked during PEI phase;
247 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
248
249 If there is no additional space for HOB creation, then ASSERT().
250
251 @param ResourceType The type of resource described by this HOB.
252 @param ResourceAttribute The resource attributes of the memory described by this HOB.
253 @param PhysicalStart The 64 bit physical address of memory described by this HOB.
254 @param NumberOfBytes The length of the memory described by this HOB in bytes.
255
256 **/
257 VOID
258 EFIAPI
259 BuildResourceDescriptorHob (
260 IN EFI_RESOURCE_TYPE ResourceType,
261 IN EFI_RESOURCE_ATTRIBUTE_TYPE ResourceAttribute,
262 IN EFI_PHYSICAL_ADDRESS PhysicalStart,
263 IN UINT64 NumberOfBytes
264 )
265 {
266 //
267 // PEI HOB is read only for DXE phase
268 //
269 ASSERT (FALSE);
270 }
271
272 /**
273 Builds a customized HOB tagged with a GUID for identification and returns
274 the start address of GUID HOB data.
275
276 This function builds a customized HOB tagged with a GUID for identification
277 and returns the start address of GUID HOB data so that caller can fill the customized data.
278 The HOB Header and Name field is already stripped.
279 It can only be invoked during PEI phase.
280 For DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
281
282 If Guid is NULL, then ASSERT().
283 If there is no additional space for HOB creation, then ASSERT().
284 If DataLength > (0xFFF8 - sizeof (EFI_HOB_GUID_TYPE)), then ASSERT().
285 HobLength is UINT16 and multiples of 8 bytes, so the max HobLength is 0xFFF8.
286
287 @param Guid The GUID to tag the customized HOB.
288 @param DataLength The size of the data payload for the GUID HOB.
289
290 @retval NULL The GUID HOB could not be allocated.
291 @retval others The start address of GUID HOB data.
292
293 **/
294 VOID *
295 EFIAPI
296 BuildGuidHob (
297 IN CONST EFI_GUID *Guid,
298 IN UINTN DataLength
299 )
300 {
301 //
302 // PEI HOB is read only for DXE phase
303 //
304 ASSERT (FALSE);
305 return NULL;
306 }
307
308 /**
309 Builds a customized HOB tagged with a GUID for identification, copies the input data to the HOB
310 data field, and returns the start address of the GUID HOB data.
311
312 This function builds a customized HOB tagged with a GUID for identification and copies the input
313 data to the HOB data field and returns the start address of the GUID HOB data. It can only be
314 invoked during PEI phase; for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
315 The HOB Header and Name field is already stripped.
316 It can only be invoked during PEI phase.
317 For DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
318
319 If Guid is NULL, then ASSERT().
320 If Data is NULL and DataLength > 0, then ASSERT().
321 If there is no additional space for HOB creation, then ASSERT().
322 If DataLength > (0xFFF8 - sizeof (EFI_HOB_GUID_TYPE)), then ASSERT().
323 HobLength is UINT16 and multiples of 8 bytes, so the max HobLength is 0xFFF8.
324
325 @param Guid The GUID to tag the customized HOB.
326 @param Data The data to be copied into the data field of the GUID HOB.
327 @param DataLength The size of the data payload for the GUID HOB.
328
329 @retval NULL The GUID HOB could not be allocated.
330 @retval others The start address of GUID HOB data.
331
332 **/
333 VOID *
334 EFIAPI
335 BuildGuidDataHob (
336 IN CONST EFI_GUID *Guid,
337 IN VOID *Data,
338 IN UINTN DataLength
339 )
340 {
341 //
342 // PEI HOB is read only for DXE phase
343 //
344 ASSERT (FALSE);
345 return NULL;
346 }
347
348 /**
349 Builds a Firmware Volume HOB.
350
351 This function builds a Firmware Volume HOB.
352 It can only be invoked during PEI phase;
353 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
354
355 If there is no additional space for HOB creation, then ASSERT().
356
357 @param BaseAddress The base address of the Firmware Volume.
358 @param Length The size of the Firmware Volume in bytes.
359
360 **/
361 VOID
362 EFIAPI
363 BuildFvHob (
364 IN EFI_PHYSICAL_ADDRESS BaseAddress,
365 IN UINT64 Length
366 )
367 {
368 //
369 // PEI HOB is read only for DXE phase
370 //
371 ASSERT (FALSE);
372 }
373
374 /**
375 Builds a EFI_HOB_TYPE_FV2 HOB.
376
377 This function builds a EFI_HOB_TYPE_FV2 HOB.
378 It can only be invoked during PEI phase;
379 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
380
381 If there is no additional space for HOB creation, then ASSERT().
382
383 @param BaseAddress The base address of the Firmware Volume.
384 @param Length The size of the Firmware Volume in bytes.
385 @param FvName The name of the Firmware Volume.
386 @param FileName The name of the file.
387
388 **/
389 VOID
390 EFIAPI
391 BuildFv2Hob (
392 IN EFI_PHYSICAL_ADDRESS BaseAddress,
393 IN UINT64 Length,
394 IN CONST EFI_GUID *FvName,
395 IN CONST EFI_GUID *FileName
396 )
397 {
398 ASSERT (FALSE);
399 }
400
401 /**
402 Builds a Capsule Volume HOB.
403
404 This function builds a Capsule Volume HOB.
405 It can only be invoked during PEI phase;
406 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
407
408 If the platform does not support Capsule Volume HOBs, then ASSERT().
409 If there is no additional space for HOB creation, then ASSERT().
410
411 @param BaseAddress The base address of the Capsule Volume.
412 @param Length The size of the Capsule Volume in bytes.
413
414 **/
415 VOID
416 EFIAPI
417 BuildCvHob (
418 IN EFI_PHYSICAL_ADDRESS BaseAddress,
419 IN UINT64 Length
420 )
421 {
422 //
423 // PEI HOB is read only for DXE phase
424 //
425 ASSERT (FALSE);
426 }
427
428 /**
429 Builds a HOB for the CPU.
430
431 This function builds a HOB for the CPU.
432 It can only be invoked during PEI phase;
433 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
434
435 If there is no additional space for HOB creation, then ASSERT().
436
437 @param SizeOfMemorySpace The maximum physical memory addressability of the processor.
438 @param SizeOfIoSpace The maximum physical I/O addressability of the processor.
439
440 **/
441 VOID
442 EFIAPI
443 BuildCpuHob (
444 IN UINT8 SizeOfMemorySpace,
445 IN UINT8 SizeOfIoSpace
446 )
447 {
448 //
449 // PEI HOB is read only for DXE phase
450 //
451 ASSERT (FALSE);
452 }
453
454 /**
455 Builds a HOB for the Stack.
456
457 This function builds a HOB for the stack.
458 It can only be invoked during PEI phase;
459 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
460
461 If there is no additional space for HOB creation, then ASSERT().
462
463 @param BaseAddress The 64 bit physical address of the Stack.
464 @param Length The length of the stack in bytes.
465
466 **/
467 VOID
468 EFIAPI
469 BuildStackHob (
470 IN EFI_PHYSICAL_ADDRESS BaseAddress,
471 IN UINT64 Length
472 )
473 {
474 //
475 // PEI HOB is read only for DXE phase
476 //
477 ASSERT (FALSE);
478 }
479
480 /**
481 Builds a HOB for the BSP store.
482
483 This function builds a HOB for BSP store.
484 It can only be invoked during PEI phase;
485 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
486
487 If there is no additional space for HOB creation, then ASSERT().
488
489 @param BaseAddress The 64 bit physical address of the BSP.
490 @param Length The length of the BSP store in bytes.
491 @param MemoryType Type of memory allocated by this HOB.
492
493 **/
494 VOID
495 EFIAPI
496 BuildBspStoreHob (
497 IN EFI_PHYSICAL_ADDRESS BaseAddress,
498 IN UINT64 Length,
499 IN EFI_MEMORY_TYPE MemoryType
500 )
501 {
502 //
503 // PEI HOB is read only for DXE phase
504 //
505 ASSERT (FALSE);
506 }
507
508 /**
509 Builds a HOB for the memory allocation.
510
511 This function builds a HOB for the memory allocation.
512 It can only be invoked during PEI phase;
513 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
514
515 If there is no additional space for HOB creation, then ASSERT().
516
517 @param BaseAddress The 64 bit physical address of the memory.
518 @param Length The length of the memory allocation in bytes.
519 @param MemoryType Type of memory allocated by this HOB.
520
521 **/
522 VOID
523 EFIAPI
524 BuildMemoryAllocationHob (
525 IN EFI_PHYSICAL_ADDRESS BaseAddress,
526 IN UINT64 Length,
527 IN EFI_MEMORY_TYPE MemoryType
528 )
529 {
530 //
531 // PEI HOB is read only for DXE phase
532 //
533 ASSERT (FALSE);
534 }