public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Ni, Ray" <ray.ni@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	"Tan, Dun" <dun.tan@intel.com>
Cc: "Dong, Guo" <guo.dong@intel.com>,
	"Ma, Maurice" <maurice.ma@intel.com>,
	"You, Benjamin" <benjamin.you@intel.com>,
	"Liu, Zhiguang" <zhiguang.liu@intel.com>
Subject: Re: [edk2-devel] [Patch V2 2/2] UefiPayloadPkg: Dump hob info from gEdkiiBootManagerMenuFileGuid
Date: Thu, 9 Sep 2021 12:22:30 +0000	[thread overview]
Message-ID: <CO1PR11MB4930F12EB6DC53EE0CBC68ED8CD59@CO1PR11MB4930.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20210831053816.2366-3-dun.tan@intel.com>

Reviewed-by: Ray Ni <ray.ni@intel.com>

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of duntan
> Sent: Tuesday, August 31, 2021 1:38 PM
> To: devel@edk2.groups.io
> Cc: Dong, Guo <guo.dong@intel.com>; Ni, Ray <ray.ni@intel.com>; Ma, Maurice <maurice.ma@intel.com>; You, Benjamin
> <benjamin.you@intel.com>; Liu, Zhiguang <zhiguang.liu@intel.com>; Tan, Dun <dun.tan@intel.com>
> Subject: [edk2-devel] [Patch V2 2/2] UefiPayloadPkg: Dump hob info from gEdkiiBootManagerMenuFileGuid
> 
> V1: Dump this hob infomation from gEdkiiBootManagerMenuFileGuid
> V2: Delete the duplicated assertions
> 
> Cc: Guo Dong <guo.dong@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Maurice Ma <maurice.ma@intel.com>
> Cc: Benjamin You <benjamin.you@intel.com>
> Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> Signed-off-by: DunTan <dun.tan@intel.com>
> ---
>  UefiPayloadPkg/UefiPayloadEntry/PrintHob.c                | 25 ++++++++++++++++++++++++-
>  UefiPayloadPkg/UefiPayloadEntry/UniversalPayloadEntry.inf |  1 +
>  2 files changed, 25 insertions(+), 1 deletion(-)
> 
> diff --git a/UefiPayloadPkg/UefiPayloadEntry/PrintHob.c b/UefiPayloadPkg/UefiPayloadEntry/PrintHob.c
> index f93aeec472..b5ea9a17a2 100644
> --- a/UefiPayloadPkg/UefiPayloadEntry/PrintHob.c
> +++ b/UefiPayloadPkg/UefiPayloadEntry/PrintHob.c
> @@ -10,6 +10,7 @@
>  #include <UniversalPayload/ExtraData.h>
>  #include <Guid/MemoryTypeInformation.h>
>  #include <Guid/AcpiBoardInfoGuid.h>
> +#include <Guid/BootManagerMenu.h>
> 
>  #define ROW_LIMITER 16
> 
> @@ -410,6 +411,27 @@ PrintMemoryTypeInfoGuidHob (
>    return EFI_SUCCESS;
>  }
> 
> +/**
> +  Print the information in EdkiiBootManagerMenuFileGuid.
> +  @param[in] HobRaw          A pointer to the start of gEdkiiBootManagerMenuFileGuid HOB.
> +  @retval EFI_SUCCESS        If it completed successfully.
> +**/
> +EFI_STATUS
> +PrintBootManagerMenuGuidHob (
> +  IN  UINT8          *HobRaw,
> +  IN  UINT16         HobLength
> +  )
> +{
> +  UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU *BootManagerMenuFile;
> +
> +  BootManagerMenuFile = (UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU *) GET_GUID_HOB_DATA (HobRaw);
> +  ASSERT (HobLength >= sizeof (*BootManagerMenuFile));
> +  DEBUG ((DEBUG_INFO, "   Revision  = 0x%x\n", BootManagerMenuFile->Header.Revision));
> +  DEBUG ((DEBUG_INFO, "   Length    = 0x%x\n", BootManagerMenuFile->Header.Length));
> +  DEBUG ((DEBUG_INFO, "   FileName  = %g\n",   &BootManagerMenuFile->FileName));
> +  return EFI_SUCCESS;
> +}
> +
>  //
>  // Mappint table for dump Guid Hob information.
>  // This table can be easily extented.
> @@ -422,7 +444,8 @@ GUID_HOB_PRINT_HANDLE GuidHobPrintHandleTable[] = {
>    {&gUefiAcpiBoardInfoGuid,                 PrintAcpiBoardInfoGuidHob,     "gUefiAcpiBoardInfoGuid(Acpi Guid)"},
>    {&gUniversalPayloadPciRootBridgeInfoGuid, PrintPciRootBridgeInfoGuidHob, "gUniversalPayloadPciRootBridgeInfoGuid(Pci
> Guid)"},
>    {&gEfiMemoryTypeInformationGuid,          PrintMemoryTypeInfoGuidHob,    "gEfiMemoryTypeInformationGuid(Memory Type
> Information Guid)"},
> -  {&gUniversalPayloadExtraDataGuid,         PrintExtraDataGuidHob,         "gUniversalPayloadExtraDataGuid(PayLoad Extra Data
> Guid)"}
> +  {&gUniversalPayloadExtraDataGuid,         PrintExtraDataGuidHob,         "gUniversalPayloadExtraDataGuid(PayLoad Extra Data
> Guid)"},
> +  {&gEdkiiBootManagerMenuFileGuid,          PrintBootManagerMenuGuidHob,   "gEdkiiBootManagerMenuFileGuid(Boot
> Manager Menu File Guid)"}
>  };
> 
>  /**
> diff --git a/UefiPayloadPkg/UefiPayloadEntry/UniversalPayloadEntry.inf
> b/UefiPayloadPkg/UefiPayloadEntry/UniversalPayloadEntry.inf
> index 416a620598..3ee449219d 100644
> --- a/UefiPayloadPkg/UefiPayloadEntry/UniversalPayloadEntry.inf
> +++ b/UefiPayloadPkg/UefiPayloadEntry/UniversalPayloadEntry.inf
> @@ -70,6 +70,7 @@
>    gUniversalPayloadAcpiTableGuid
>    gUniversalPayloadPciRootBridgeInfoGuid
>    gUniversalPayloadSmbios3TableGuid
> +  gEdkiiBootManagerMenuFileGuid
> 
>  [FeaturePcd.IA32]
>    gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode      ## CONSUMES
> --
> 2.31.1.windows.1
> 
> 
> 
> 
> 


      parent reply	other threads:[~2021-09-09 12:22 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-31  5:38 [Patch V2 0/2] Fix bug in dump guid HOB info funcs and dump info from a new GUID HOB duntan
2021-08-31  5:38 ` [Patch V2 1/2] UefiPayloadPkg: Fix the bug in dump guid HOB info functions duntan
2021-09-09  1:58   ` Zhiguang Liu
2021-09-09 12:22   ` Ni, Ray
2021-08-31  5:38 ` [Patch V2 2/2] UefiPayloadPkg: Dump hob info from gEdkiiBootManagerMenuFileGuid duntan
2021-09-09  1:59   ` [edk2-devel] " Zhiguang Liu
2021-09-09 12:22   ` Ni, Ray [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CO1PR11MB4930F12EB6DC53EE0CBC68ED8CD59@CO1PR11MB4930.namprd11.prod.outlook.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox