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