]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/DxeCoreHobLib/HobLib.c
MdePkg/BaseMemoryLib: Fix VS2015 build error
[mirror_edk2.git] / MdePkg / Library / DxeCoreHobLib / HobLib.c
1 /** @file
2 HOB Library implementation for DxeCore driver.
3
4 Copyright (c) 2006 - 2016, 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 with Owner GUID.
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() since 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 @param OwnerGUID GUID for the owner of this resource.
256
257 **/
258 VOID
259 EFIAPI
260 BuildResourceDescriptorWithOwnerHob (
261 IN EFI_RESOURCE_TYPE ResourceType,
262 IN EFI_RESOURCE_ATTRIBUTE_TYPE ResourceAttribute,
263 IN EFI_PHYSICAL_ADDRESS PhysicalStart,
264 IN UINT64 NumberOfBytes,
265 IN EFI_GUID *OwnerGUID
266 )
267 {
268 //
269 // PEI HOB is read only for DXE phase
270 //
271 ASSERT (FALSE);
272 }
273
274 /**
275 Builds a HOB that describes a chunk of system memory.
276
277 This function builds a HOB that describes a chunk of system memory.
278 It can only be invoked during PEI phase;
279 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
280
281 If there is no additional space for HOB creation, then ASSERT().
282
283 @param ResourceType The type of resource described by this HOB.
284 @param ResourceAttribute The resource attributes of the memory described by this HOB.
285 @param PhysicalStart The 64 bit physical address of memory described by this HOB.
286 @param NumberOfBytes The length of the memory described by this HOB in bytes.
287
288 **/
289 VOID
290 EFIAPI
291 BuildResourceDescriptorHob (
292 IN EFI_RESOURCE_TYPE ResourceType,
293 IN EFI_RESOURCE_ATTRIBUTE_TYPE ResourceAttribute,
294 IN EFI_PHYSICAL_ADDRESS PhysicalStart,
295 IN UINT64 NumberOfBytes
296 )
297 {
298 //
299 // PEI HOB is read only for DXE phase
300 //
301 ASSERT (FALSE);
302 }
303
304 /**
305 Builds a customized HOB tagged with a GUID for identification and returns
306 the start address of GUID HOB data.
307
308 This function builds a customized HOB tagged with a GUID for identification
309 and returns the start address of GUID HOB data so that caller can fill the customized data.
310 The HOB Header and Name field is already stripped.
311 It can only be invoked during PEI phase.
312 For DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
313
314 If Guid is NULL, then ASSERT().
315 If there is no additional space for HOB creation, then ASSERT().
316 If DataLength > (0xFFF8 - sizeof (EFI_HOB_GUID_TYPE)), then ASSERT().
317 HobLength is UINT16 and multiples of 8 bytes, so the max HobLength is 0xFFF8.
318
319 @param Guid The GUID to tag the customized HOB.
320 @param DataLength The size of the data payload for the GUID HOB.
321
322 @retval NULL The GUID HOB could not be allocated.
323 @retval others The start address of GUID HOB data.
324
325 **/
326 VOID *
327 EFIAPI
328 BuildGuidHob (
329 IN CONST EFI_GUID *Guid,
330 IN UINTN DataLength
331 )
332 {
333 //
334 // PEI HOB is read only for DXE phase
335 //
336 ASSERT (FALSE);
337 return NULL;
338 }
339
340 /**
341 Builds a customized HOB tagged with a GUID for identification, copies the input data to the HOB
342 data field, and returns the start address of the GUID HOB data.
343
344 This function builds a customized HOB tagged with a GUID for identification and copies the input
345 data to the HOB data field and returns the start address of the GUID HOB data. It can only be
346 invoked during PEI phase; for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
347 The HOB Header and Name field is already stripped.
348 It can only be invoked during PEI phase.
349 For DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
350
351 If Guid is NULL, then ASSERT().
352 If Data is NULL and DataLength > 0, then ASSERT().
353 If there is no additional space for HOB creation, then ASSERT().
354 If DataLength > (0xFFF8 - sizeof (EFI_HOB_GUID_TYPE)), then ASSERT().
355 HobLength is UINT16 and multiples of 8 bytes, so the max HobLength is 0xFFF8.
356
357 @param Guid The GUID to tag the customized HOB.
358 @param Data The data to be copied into the data field of the GUID HOB.
359 @param DataLength The size of the data payload for the GUID HOB.
360
361 @retval NULL The GUID HOB could not be allocated.
362 @retval others The start address of GUID HOB data.
363
364 **/
365 VOID *
366 EFIAPI
367 BuildGuidDataHob (
368 IN CONST EFI_GUID *Guid,
369 IN VOID *Data,
370 IN UINTN DataLength
371 )
372 {
373 //
374 // PEI HOB is read only for DXE phase
375 //
376 ASSERT (FALSE);
377 return NULL;
378 }
379
380 /**
381 Builds a Firmware Volume HOB.
382
383 This function builds a Firmware Volume HOB.
384 It can only be invoked during PEI phase;
385 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
386
387 If there is no additional space for HOB creation, then ASSERT().
388 If the FvImage buffer is not at its required alignment, then ASSERT().
389
390 @param BaseAddress The base address of the Firmware Volume.
391 @param Length The size of the Firmware Volume in bytes.
392
393 **/
394 VOID
395 EFIAPI
396 BuildFvHob (
397 IN EFI_PHYSICAL_ADDRESS BaseAddress,
398 IN UINT64 Length
399 )
400 {
401 //
402 // PEI HOB is read only for DXE phase
403 //
404 ASSERT (FALSE);
405 }
406
407 /**
408 Builds a EFI_HOB_TYPE_FV2 HOB.
409
410 This function builds a EFI_HOB_TYPE_FV2 HOB.
411 It can only be invoked during PEI phase;
412 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
413
414 If there is no additional space for HOB creation, then ASSERT().
415 If the FvImage buffer is not at its required alignment, then ASSERT().
416
417 @param BaseAddress The base address of the Firmware Volume.
418 @param Length The size of the Firmware Volume in bytes.
419 @param FvName The name of the Firmware Volume.
420 @param FileName The name of the file.
421
422 **/
423 VOID
424 EFIAPI
425 BuildFv2Hob (
426 IN EFI_PHYSICAL_ADDRESS BaseAddress,
427 IN UINT64 Length,
428 IN CONST EFI_GUID *FvName,
429 IN CONST EFI_GUID *FileName
430 )
431 {
432 ASSERT (FALSE);
433 }
434
435 /**
436 Builds a Capsule Volume HOB.
437
438 This function builds a Capsule Volume HOB.
439 It can only be invoked during PEI phase;
440 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
441
442 If the platform does not support Capsule Volume HOBs, then ASSERT().
443 If there is no additional space for HOB creation, then ASSERT().
444
445 @param BaseAddress The base address of the Capsule Volume.
446 @param Length The size of the Capsule Volume in bytes.
447
448 **/
449 VOID
450 EFIAPI
451 BuildCvHob (
452 IN EFI_PHYSICAL_ADDRESS BaseAddress,
453 IN UINT64 Length
454 )
455 {
456 //
457 // PEI HOB is read only for DXE phase
458 //
459 ASSERT (FALSE);
460 }
461
462 /**
463 Builds a HOB for the CPU.
464
465 This function builds a HOB for the CPU.
466 It can only be invoked during PEI phase;
467 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
468
469 If there is no additional space for HOB creation, then ASSERT().
470
471 @param SizeOfMemorySpace The maximum physical memory addressability of the processor.
472 @param SizeOfIoSpace The maximum physical I/O addressability of the processor.
473
474 **/
475 VOID
476 EFIAPI
477 BuildCpuHob (
478 IN UINT8 SizeOfMemorySpace,
479 IN UINT8 SizeOfIoSpace
480 )
481 {
482 //
483 // PEI HOB is read only for DXE phase
484 //
485 ASSERT (FALSE);
486 }
487
488 /**
489 Builds a HOB for the Stack.
490
491 This function builds a HOB for the stack.
492 It can only be invoked during PEI phase;
493 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
494
495 If there is no additional space for HOB creation, then ASSERT().
496
497 @param BaseAddress The 64 bit physical address of the Stack.
498 @param Length The length of the stack in bytes.
499
500 **/
501 VOID
502 EFIAPI
503 BuildStackHob (
504 IN EFI_PHYSICAL_ADDRESS BaseAddress,
505 IN UINT64 Length
506 )
507 {
508 //
509 // PEI HOB is read only for DXE phase
510 //
511 ASSERT (FALSE);
512 }
513
514 /**
515 Builds a HOB for the BSP store.
516
517 This function builds a HOB for BSP store.
518 It can only be invoked during PEI phase;
519 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
520
521 If there is no additional space for HOB creation, then ASSERT().
522
523 @param BaseAddress The 64 bit physical address of the BSP.
524 @param Length The length of the BSP store in bytes.
525 @param MemoryType Type of memory allocated by this HOB.
526
527 **/
528 VOID
529 EFIAPI
530 BuildBspStoreHob (
531 IN EFI_PHYSICAL_ADDRESS BaseAddress,
532 IN UINT64 Length,
533 IN EFI_MEMORY_TYPE MemoryType
534 )
535 {
536 //
537 // PEI HOB is read only for DXE phase
538 //
539 ASSERT (FALSE);
540 }
541
542 /**
543 Builds a HOB for the memory allocation.
544
545 This function builds a HOB for the memory allocation.
546 It can only be invoked during PEI phase;
547 for DXE phase, it will ASSERT() because PEI HOB is read-only for DXE phase.
548
549 If there is no additional space for HOB creation, then ASSERT().
550
551 @param BaseAddress The 64 bit physical address of the memory.
552 @param Length The length of the memory allocation in bytes.
553 @param MemoryType Type of memory allocated by this HOB.
554
555 **/
556 VOID
557 EFIAPI
558 BuildMemoryAllocationHob (
559 IN EFI_PHYSICAL_ADDRESS BaseAddress,
560 IN UINT64 Length,
561 IN EFI_MEMORY_TYPE MemoryType
562 )
563 {
564 //
565 // PEI HOB is read only for DXE phase
566 //
567 ASSERT (FALSE);
568 }