Changeset 58466 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeHobLib
- Timestamp:
- Oct 29, 2015 4:30:44 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103777
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
- Property svn:mergeinfo changed
/vendor/edk2/current merged: 103769-103776
- Property svn:mergeinfo changed
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeHobLib/DxeHobLib.inf
r58459 r58466 24 24 MODULE_TYPE = DXE_DRIVER 25 25 VERSION_STRING = 1.0 26 LIBRARY_CLASS = HobLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER SMM_CORE DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER 26 LIBRARY_CLASS = HobLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER SMM_CORE DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER 27 27 CONSTRUCTOR = HobLibConstructor 28 28 … … 43 43 DebugLib 44 44 UefiLib 45 45 46 46 [Guids] 47 47 gEfiHobListGuid ## CONSUMES ## SystemTable -
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeHobLib/HobLib.c
r58459 r58466 26 26 /** 27 27 The constructor function caches the pointer to HOB list. 28 28 29 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. 30 It will ASSERT() if that operation fails and it will always return EFI_SUCCESS. 31 31 32 32 @param ImageHandle The firmware allocated handle for the EFI image. 33 33 @param SystemTable A pointer to the EFI System Table. 34 34 35 35 @retval EFI_SUCCESS The constructor successfully gets HobList. 36 36 @retval Other value The constructor can't get HobList. … … 57 57 58 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 59 For PEI phase, the PEI service GetHobList() can be used to retrieve the pointer 60 60 to the HOB list. For the DXE phase, the HOB list pointer can be retrieved through 61 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 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 64 to manage the pointer to the HOB list. 65 65 66 66 If the pointer to the HOB list is NULL, then ASSERT(). 67 67 68 68 @return The pointer to the HOB list. 69 69 … … 82 82 Returns the next instance of a HOB type from the starting HOB. 83 83 84 This function searches the first instance of a HOB type from the starting HOB pointer. 84 This function searches the first instance of a HOB type from the starting HOB pointer. 85 85 If there does not exist such HOB type from the starting HOB pointer, it will return NULL. 86 86 In contrast with macro GET_NEXT_HOB(), this function does not skip the starting HOB pointer 87 87 unconditionally: it returns HobStart back if HobStart itself meets the requirement; 88 88 caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart. 89 89 90 90 If HobStart is NULL, then ASSERT(). 91 91 … … 106 106 107 107 ASSERT (HobStart != NULL); 108 108 109 109 Hob.Raw = (UINT8 *) HobStart; 110 110 // … … 123 123 Returns the first instance of a HOB type among the whole HOB list. 124 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 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 128 If the pointer to the HOB list is NULL, then ASSERT(). 129 129 … … 147 147 /** 148 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. 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 154 Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE () 155 155 to extract the data section and its size information, respectively. … … 157 157 unconditionally: it returns HobStart back if HobStart itself meets the requirement; 158 158 caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart. 159 159 160 160 If Guid is NULL, then ASSERT(). 161 161 If HobStart is NULL, then ASSERT(). … … 188 188 /** 189 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. 190 191 This function searches the first instance of a HOB among the whole HOB list. 192 192 Such HOB should satisfy two conditions: 193 193 its HOB type is EFI_HOB_TYPE_GUID_EXTENSION and its GUID Name equals to the input Guid. … … 195 195 Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE () 196 196 to extract the data section and its size information, respectively. 197 197 198 198 If the pointer to the HOB list is NULL, then ASSERT(). 199 199 If Guid is NULL, then ASSERT(). … … 219 219 Get the system boot mode from the HOB list. 220 220 221 This function returns the system boot mode information from the 221 This function returns the system boot mode information from the 222 222 PHIT HOB in HOB list. 223 223 224 224 If the pointer to the HOB list is NULL, then ASSERT(). 225 225 226 226 @param VOID 227 227 … … 248 248 It can only be invoked during PEI phase; 249 249 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 250 250 251 251 If ModuleName is NULL, then ASSERT(). 252 252 If there is no additional space for HOB creation, then ASSERT(). … … 279 279 It can only be invoked during PEI phase; 280 280 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 281 281 282 282 If there is no additional space for HOB creation, then ASSERT(). 283 283 … … 311 311 It can only be invoked during PEI phase; 312 312 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 313 313 314 314 If there is no additional space for HOB creation, then ASSERT(). 315 315 … … 336 336 337 337 /** 338 Builds a customized HOB tagged with a GUID for identification and returns 338 Builds a customized HOB tagged with a GUID for identification and returns 339 339 the start address of GUID HOB data. 340 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. 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 343 The HOB Header and Name field is already stripped. 344 344 It can only be invoked during PEI phase; 345 345 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 346 346 347 347 If Guid is NULL, then ASSERT(). 348 348 If there is no additional space for HOB creation, then ASSERT(). … … 372 372 373 373 /** 374 Builds a customized HOB tagged with a GUID for identification, copies the input data to the HOB 374 Builds a customized HOB tagged with a GUID for identification, copies the input data to the HOB 375 375 data field, and returns the start address of the GUID HOB data. 376 376 377 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. 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 380 The HOB Header and Name field is already stripped. 381 381 It can only be invoked during PEI phase; 382 382 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 383 383 384 384 If Guid is NULL, then ASSERT(). 385 385 If Data is NULL and DataLength > 0, then ASSERT(). … … 417 417 It can only be invoked during PEI phase; 418 418 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 419 419 420 420 If there is no additional space for HOB creation, then ASSERT(). 421 421 … … 443 443 It can only be invoked during PEI phase; 444 444 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 445 445 446 446 If there is no additional space for HOB creation, then ASSERT(). 447 447 … … 450 450 @param FvName The name of the Firmware Volume. 451 451 @param FileName The name of the file. 452 452 453 453 **/ 454 454 VOID … … 471 471 It can only be invoked during PEI phase; 472 472 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 473 473 474 474 If the platform does not support Capsule Volume HOBs, then ASSERT(). 475 475 If there is no additional space for HOB creation, then ASSERT(). … … 498 498 It can only be invoked during PEI phase; 499 499 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 500 500 501 501 If there is no additional space for HOB creation, then ASSERT(). 502 502 … … 524 524 It can only be invoked during PEI phase; 525 525 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 526 526 527 527 If there is no additional space for HOB creation, then ASSERT(). 528 528 … … 550 550 It can only be invoked during PEI phase; 551 551 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 552 552 553 553 If there is no additional space for HOB creation, then ASSERT(). 554 554 … … 578 578 It can only be invoked during PEI phase; 579 579 for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase. 580 580 581 581 If there is no additional space for HOB creation, then ASSERT(). 582 582
Note:
See TracChangeset
for help on using the changeset viewer.