]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/PeiHobLib/HobLib.c
*BaseSmbusLib: (new version)
[mirror_edk2.git] / MdePkg / Library / PeiHobLib / HobLib.c
index a06f1690bfec0c2608bdf1ac1775fdf383b78f2e..380a735b99f11c5f84217edaf3983ba9dd5150ec 100644 (file)
@@ -19,9 +19,9 @@
 /**\r
   Returns the pointer to the HOB list.\r
 \r
-  None.\r
+  This function returns the pointer to first HOB in the list.\r
 \r
-  The pointer to the HOB list.\r
+  @return The pointer to the HOB list.\r
 \r
 **/\r
 VOID *\r
@@ -41,11 +41,17 @@ GetHobList (
 }\r
 \r
 /**\r
+  Returns the next instance of a HOB type from the starting HOB.\r
+\r
   This function searches the first instance of a HOB type from the starting HOB pointer. \r
-  If there does not exist such HOB type from the starting HOB pointer, it will return NULL. \r
+  If there does not exist such HOB type from the starting HOB pointer, it will return NULL.\r
+  In contrast with macro GET_NEXT_HOB(), this function does not skip the starting HOB pointer\r
+  unconditionally: it returns HobStart back if HobStart itself meets the requirement;\r
+  caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart.\r
+  If HobStart is NULL, then ASSERT().\r
 \r
-  @param  Type The HOB type to return.\r
-  @param  HobStart The starting HOB pointer to search from.\r
+  @param  Type          The HOB type to return.\r
+  @param  HobStart      The starting HOB pointer to search from.\r
 \r
   @return The next instance of a HOB type from the starting HOB.\r
 \r
@@ -63,7 +69,7 @@ GetNextHob (
    \r
   Hob.Raw = (UINT8 *) HobStart;\r
   //\r
-  // Parse the HOB list, stop if end of list or matching type found.\r
+  // Parse the HOB list until end of list or matching type is found.\r
   //\r
   while (!END_OF_HOB_LIST (Hob)) {\r
     if (Hob.Header->HobType == Type) {\r
@@ -75,10 +81,12 @@ GetNextHob (
 }\r
 \r
 /**\r
+  Returns the first instance of a HOB type among the whole HOB list.\r
+\r
   This function searches the first instance of a HOB type among the whole HOB list. \r
   If there does not exist such HOB type in the HOB list, it will return NULL. \r
 \r
-  @param  Type The HOB type to return.\r
+  @param  Type          The HOB type to return.\r
 \r
   @return The next instance of a HOB type from the starting HOB.\r
 \r
@@ -100,9 +108,16 @@ GetFirstHob (
   Such HOB should satisfy two conditions: \r
   its HOB type is EFI_HOB_TYPE_GUID_EXTENSION and its GUID Name equals to the input Guid. \r
   If there does not exist such HOB from the starting HOB pointer, it will return NULL. \r
+  Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE ()\r
+  to extract the data section and its size info respectively.\r
+  In contrast with macro GET_NEXT_HOB(), this function does not skip the starting HOB pointer\r
+  unconditionally: it returns HobStart back if HobStart itself meets the requirement;\r
+  caller is required to use GET_NEXT_HOB() if it wishes to skip current HobStart.\r
+  If Guid is NULL, then ASSERT().\r
+  If HobStart is NULL, then ASSERT().\r
 \r
-  @param  Guid The GUID to match with in the HOB list.\r
-  @param  HobStart A pointer to a Guid.\r
+  @param  Guid          The GUID to match with in the HOB list.\r
+  @param  HobStart      A pointer to a Guid.\r
 \r
   @return The next instance of the matched GUID HOB from the starting HOB.\r
 \r
@@ -131,8 +146,11 @@ GetNextGuidHob (
   Such HOB should satisfy two conditions:\r
   its HOB type is EFI_HOB_TYPE_GUID_EXTENSION and its GUID Name equals to the input Guid.\r
   If there does not exist such HOB from the starting HOB pointer, it will return NULL.\r
+  Caller is required to apply GET_GUID_HOB_DATA () and GET_GUID_HOB_DATA_SIZE ()\r
+  to extract the data section and its size info respectively.\r
+  If Guid is NULL, then ASSERT().\r
 \r
-  @param  Guid The GUID to match with in the HOB list.\r
+  @param  Guid          The GUID to match with in the HOB list.\r
 \r
   @return The first instance of the matched GUID HOB among the whole HOB list.\r
 \r
@@ -150,10 +168,12 @@ GetFirstGuidHob (
 }\r
 \r
 /**\r
-  Add a new HOB to the HOB List.\r
+  Adds a new HOB to the HOB List.\r
 \r
-  @param  Type Type of the new HOB.\r
-  @param  Length Length of the new HOB to allocate.\r
+  This internal function enables PEIMs to create various types of HOBs.\r
+\r
+  @param  Type          Type of the new HOB.\r
+  @param  Length        Length of the new HOB to allocate.\r
 \r
   @return The address of new HOB.\r
 \r
@@ -176,12 +196,18 @@ InternalPeiCreateHob (
 }\r
 \r
 /**\r
+  Builds a HOB for a loaded PE32 module.\r
+\r
   This function builds a HOB for a loaded PE32 module.\r
+  It can only be invoked during PEI phase;\r
+  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
+  If ModuleName is NULL, then ASSERT().\r
+  If there is no additional space for HOB creation, then ASSERT().\r
 \r
-  @param  ModuleName The GUID File Name of the module.\r
-  @param  MemoryAllocationModule The 64 bit physical address of the module.\r
-  @param  ModuleLength The length of the module in bytes.\r
-  @param  EntryPoint The 64 bit physical address of the module\92s entry point.\r
+  @param  ModuleName              The GUID File Name of the module.\r
+  @param  MemoryAllocationModule  The 64 bit physical address of the module.\r
+  @param  ModuleLength            The length of the module in bytes.\r
+  @param  EntryPoint              The 64 bit physical address of the module\92s entry point.\r
 \r
 **/\r
 VOID\r
@@ -209,10 +235,15 @@ BuildModuleHob (
 /**\r
   Builds a HOB that describes a chunk of system memory.\r
 \r
-  @param  ResourceType The type of resource described by this HOB.\r
-  @param  ResourceAttribute The resource attributes of the memory described by this HOB.\r
-  @param  PhysicalStart The 64 bit physical address of memory described by this HOB.\r
-  @param  NumberOfBytes The length of the memory described by this HOB in bytes.\r
+  This function builds a HOB that describes a chunk of system memory.\r
+  It can only be invoked during PEI phase;\r
+  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
+  If there is no additional space for HOB creation, then ASSERT().\r
+\r
+  @param  ResourceType        The type of resource described by this HOB.\r
+  @param  ResourceAttribute   The resource attributes of the memory described by this HOB.\r
+  @param  PhysicalStart       The 64 bit physical address of memory described by this HOB.\r
+  @param  NumberOfBytes       The length of the memory described by this HOB in bytes.\r
 \r
 **/\r
 VOID\r
@@ -235,11 +266,19 @@ BuildResourceDescriptorHob (
 }\r
 \r
 /**\r
-  This function builds a customized HOB tagged with a GUID for identification\r
-  and returns the start address of GUID HOB data so that caller can fill the customized data.\r
+  Builds a GUID HOB with a certain data length.\r
+\r
+  This function builds a customized HOB tagged with a GUID for identification \r
+  and returns the start address of GUID HOB data so that caller can fill the customized data. \r
+  The HOB Header and Name field is already stripped.\r
+  It can only be invoked during PEI phase;\r
+  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
+  If Guid is NULL, then ASSERT().\r
+  If there is no additional space for HOB creation, then ASSERT().\r
+  If DataLength > (0x10000 - sizeof (EFI_HOB_TYPE_GUID)), then ASSERT().\r
 \r
-  @param  Guid The GUID to tag the customized HOB.\r
-  @param  DataLength The size of the data payload for the GUID HOB.\r
+  @param  Guid          The GUID to tag the customized HOB.\r
+  @param  DataLength    The size of the data payload for the GUID HOB.\r
 \r
   @return The start address of GUID HOB data.\r
 \r
@@ -264,12 +303,21 @@ BuildGuidHob (
 }\r
 \r
 /**\r
-  This function builds a customized HOB tagged with a GUID for identification,\r
-  copies the input data to the HOB data field, and returns the start address of GUID HOB data.\r
+  Copies a data buffer to a newly-built HOB.\r
 \r
-  @param  Guid The GUID to tag the customized HOB.\r
-  @param  Data The data to be copied into the data field of the GUID HOB.\r
-  @param  DataLength The size of the data payload for the GUID HOB.\r
+  This function builds a customized HOB tagged with a GUID for identification,\r
+  copies the input data to the HOB data field and returns the start address of the GUID HOB data.\r
+  The HOB Header and Name field is already stripped.\r
+  It can only be invoked during PEI phase;\r
+  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
+  If Guid is NULL, then ASSERT().\r
+  If Data is NULL and DataLength > 0, then ASSERT().\r
+  If there is no additional space for HOB creation, then ASSERT().\r
+  If DataLength > (0x10000 - sizeof (EFI_HOB_TYPE_GUID)), then ASSERT().\r
+\r
+  @param  Guid          The GUID to tag the customized HOB.\r
+  @param  Data          The data to be copied into the data field of the GUID HOB.\r
+  @param  DataLength    The size of the data payload for the GUID HOB.\r
 \r
   @return The start address of GUID HOB data.\r
 \r
@@ -292,8 +340,13 @@ BuildGuidDataHob (
 /**\r
   Builds a Firmware Volume HOB.\r
 \r
-  @param  BaseAddress The base address of the Firmware Volume.\r
-  @param  Length The size of the Firmware Volume in bytes.\r
+  This function builds a Firmware Volume HOB.\r
+  It can only be invoked during PEI phase;\r
+  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
+  If there is no additional space for HOB creation, then ASSERT().\r
+\r
+  @param  BaseAddress   The base address of the Firmware Volume.\r
+  @param  Length        The size of the Firmware Volume in bytes.\r
 \r
 **/\r
 VOID\r
@@ -314,8 +367,13 @@ BuildFvHob (
 /**\r
   Builds a Capsule Volume HOB.\r
 \r
-  @param  BaseAddress The base address of the Capsule Volume.\r
-  @param  Length The size of the Capsule Volume in bytes.\r
+  This function builds a Capsule Volume HOB.\r
+  It can only be invoked during PEI phase;\r
+  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
+  If there is no additional space for HOB creation, then ASSERT().\r
+\r
+  @param  BaseAddress   The base address of the Capsule Volume.\r
+  @param  Length        The size of the Capsule Volume in bytes.\r
 \r
 **/\r
 VOID\r
@@ -336,8 +394,13 @@ BuildCvHob (
 /**\r
   Builds a HOB for the CPU.\r
 \r
-  @param  SizeOfMemorySpace The maximum physical memory addressability of the processor.\r
-  @param  SizeOfIoSpace The maximum physical I/O addressability of the processor.\r
+  This function builds a HOB for the CPU.\r
+  It can only be invoked during PEI phase;\r
+  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
+  If there is no additional space for HOB creation, then ASSERT().\r
+\r
+  @param  SizeOfMemorySpace   The maximum physical memory addressability of the processor.\r
+  @param  SizeOfIoSpace       The maximum physical I/O addressability of the processor.\r
 \r
 **/\r
 VOID\r
@@ -358,8 +421,13 @@ BuildCpuHob (
 /**\r
   Builds a HOB for the Stack.\r
 \r
-  @param  BaseAddress The 64 bit physical address of the Stack.\r
-  @param  Length The length of the stack in bytes.\r
+  This function builds a HOB for the stack.\r
+  It can only be invoked during PEI phase;\r
+  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
+  If there is no additional space for HOB creation, then ASSERT().\r
+\r
+  @param  BaseAddress   The 64 bit physical address of the Stack.\r
+  @param  Length        The length of the stack in bytes.\r
 \r
 **/\r
 VOID\r
@@ -382,9 +450,14 @@ BuildStackHob (
 /**\r
   Builds a HOB for the BSP store.\r
 \r
-  @param  BaseAddress The 64 bit physical address of the BSP.\r
-  @param  Length The length of the BSP store in bytes.\r
-  @param  MemoryType Type of memory allocated by this HOB.\r
+  This function builds a HOB for BSP store.\r
+  It can only be invoked during PEI phase;\r
+  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
+  If there is no additional space for HOB creation, then ASSERT().\r
+\r
+  @param  BaseAddress   The 64 bit physical address of the BSP.\r
+  @param  Length        The length of the BSP store in bytes.\r
+  @param  MemoryType    Type of memory allocated by this HOB.\r
 \r
 **/\r
 VOID\r
@@ -408,9 +481,14 @@ BuildBspStoreHob (
 /**\r
   Builds a HOB for the memory allocation.\r
 \r
-  @param  BaseAddress The 64 bit physical address of the memory.\r
-  @param  Length The length of the memory allocation in bytes.\r
-  @param  MemoryType Type of memory allocated by this HOB.\r
+  This function builds a HOB for the memory allocation.\r
+  It can only be invoked during PEI phase;\r
+  for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.\r
+  If there is no additional space for HOB creation, then ASSERT().\r
+\r
+  @param  BaseAddress   The 64 bit physical address of the memory.\r
+  @param  Length        The length of the memory allocation in bytes.\r
+  @param  MemoryType    Type of memory allocated by this HOB.\r
 \r
 **/\r
 VOID\r