VirtualBox

Ignore:
Timestamp:
Oct 29, 2015 4:30:44 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
103777
Message:

EFI/Firmware: Merged in the svn:eol-style, svn:mime-type and trailing whitespace cleanup that was done after the initial UDK2014.SP1 import: svn merge /vendor/edk2/UDK2014.SP1 /vendor/edk2/current .

Location:
trunk/src/VBox/Devices/EFI/Firmware
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/Firmware

  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeHobLib/DxeHobLib.inf

    r58459 r58466  
    2424  MODULE_TYPE                    = DXE_DRIVER
    2525  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
    2727  CONSTRUCTOR                    = HobLibConstructor
    2828
     
    4343  DebugLib
    4444  UefiLib
    45    
     45
    4646[Guids]
    4747  gEfiHobListGuid                               ## CONSUMES  ## SystemTable
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeHobLib/HobLib.c

    r58459 r58466  
    2626/**
    2727  The constructor function caches the pointer to HOB list.
    28  
     28
    2929  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.
    3131
    3232  @param  ImageHandle   The firmware allocated handle for the EFI image.
    3333  @param  SystemTable   A pointer to the EFI System Table.
    34  
     34
    3535  @retval EFI_SUCCESS   The constructor successfully gets HobList.
    3636  @retval Other value   The constructor can't get HobList.
     
    5757
    5858  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
    6060  to the HOB list.  For the DXE phase, the HOB list pointer can be retrieved through
    6161  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
    6464  to manage the pointer to the HOB list.
    65  
     65
    6666  If the pointer to the HOB list is NULL, then ASSERT().
    67  
     67
    6868  @return The pointer to the HOB list.
    6969
     
    8282  Returns the next instance of a HOB type from the starting HOB.
    8383
    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.
    8585  If there does not exist such HOB type from the starting HOB pointer, it will return NULL.
    8686  In contrast with macro GET_NEXT_HOB(), this function does not skip the starting HOB pointer
    8787  unconditionally: it returns HobStart back if HobStart itself meets the requirement;
    8888  caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart.
    89  
     89
    9090  If HobStart is NULL, then ASSERT().
    9191
     
    106106
    107107  ASSERT (HobStart != NULL);
    108    
     108
    109109  Hob.Raw = (UINT8 *) HobStart;
    110110  //
     
    123123  Returns the first instance of a HOB type among the whole HOB list.
    124124
    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
    128128  If the pointer to the HOB list is NULL, then ASSERT().
    129129
     
    147147/**
    148148  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.
    154154  Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE ()
    155155  to extract the data section and its size information, respectively.
     
    157157  unconditionally: it returns HobStart back if HobStart itself meets the requirement;
    158158  caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart.
    159  
     159
    160160  If Guid is NULL, then ASSERT().
    161161  If HobStart is NULL, then ASSERT().
     
    188188/**
    189189  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.
    192192  Such HOB should satisfy two conditions:
    193193  its HOB type is EFI_HOB_TYPE_GUID_EXTENSION and its GUID Name equals to the input Guid.
     
    195195  Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE ()
    196196  to extract the data section and its size information, respectively.
    197  
     197
    198198  If the pointer to the HOB list is NULL, then ASSERT().
    199199  If Guid is NULL, then ASSERT().
     
    219219  Get the system boot mode from the HOB list.
    220220
    221   This function returns the system boot mode information from the 
     221  This function returns the system boot mode information from the
    222222  PHIT HOB in HOB list.
    223223
    224224  If the pointer to the HOB list is NULL, then ASSERT().
    225  
     225
    226226  @param  VOID
    227227
     
    248248  It can only be invoked during PEI phase;
    249249  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    250  
     250
    251251  If ModuleName is NULL, then ASSERT().
    252252  If there is no additional space for HOB creation, then ASSERT().
     
    279279  It can only be invoked during PEI phase;
    280280  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    281  
     281
    282282  If there is no additional space for HOB creation, then ASSERT().
    283283
     
    311311  It can only be invoked during PEI phase;
    312312  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    313  
     313
    314314  If there is no additional space for HOB creation, then ASSERT().
    315315
     
    336336
    337337/**
    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
    339339  the start address of GUID HOB data.
    340340
    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.
    343343  The HOB Header and Name field is already stripped.
    344344  It can only be invoked during PEI phase;
    345345  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    346  
     346
    347347  If Guid is NULL, then ASSERT().
    348348  If there is no additional space for HOB creation, then ASSERT().
     
    372372
    373373/**
    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
    375375  data field, and returns the start address of the GUID HOB data.
    376376
    377377  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.
    380380  The HOB Header and Name field is already stripped.
    381381  It can only be invoked during PEI phase;
    382382  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    383  
     383
    384384  If Guid is NULL, then ASSERT().
    385385  If Data is NULL and DataLength > 0, then ASSERT().
     
    417417  It can only be invoked during PEI phase;
    418418  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    419  
     419
    420420  If there is no additional space for HOB creation, then ASSERT().
    421421
     
    443443  It can only be invoked during PEI phase;
    444444  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    445  
     445
    446446  If there is no additional space for HOB creation, then ASSERT().
    447447
     
    450450  @param  FvName        The name of the Firmware Volume.
    451451  @param  FileName      The name of the file.
    452  
     452
    453453**/
    454454VOID
     
    471471  It can only be invoked during PEI phase;
    472472  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    473  
     473
    474474  If the platform does not support Capsule Volume HOBs, then ASSERT().
    475475  If there is no additional space for HOB creation, then ASSERT().
     
    498498  It can only be invoked during PEI phase;
    499499  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    500  
     500
    501501  If there is no additional space for HOB creation, then ASSERT().
    502502
     
    524524  It can only be invoked during PEI phase;
    525525  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    526  
     526
    527527  If there is no additional space for HOB creation, then ASSERT().
    528528
     
    550550  It can only be invoked during PEI phase;
    551551  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    552  
     552
    553553  If there is no additional space for HOB creation, then ASSERT().
    554554
     
    578578  It can only be invoked during PEI phase;
    579579  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
    580  
     580
    581581  If there is no additional space for HOB creation, then ASSERT().
    582582
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette