From: Leif Lindholm <leif.lindholm@linaro.org>
To: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: edk2-devel@lists.01.org
Subject: Re: [PATCH] ArmPkg/PlatformBootManagerLib: call ESRT hooks at appropriate times
Date: Fri, 6 Oct 2017 15:39:29 +0100 [thread overview]
Message-ID: <20171006143929.kr3sajwoi7wu6zub@bivouac.eciton.net> (raw)
In-Reply-To: <20171002190226.25103-1-ard.biesheuvel@linaro.org>
On Mon, Oct 02, 2017 at 08:02:26PM +0100, Ard Biesheuvel wrote:
> The ESRT management protocol needs to be invoked at the appropriate times
> to get the ESRT config table to be published at when the ReadyToBoot is
> signalled. So add this handling to the default ArmPkg implementation of
> PlatformBootManagerLib.
>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> ---
> ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c | 23 ++++++++++++++++++--
> ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf | 1 +
> 2 files changed, 22 insertions(+), 2 deletions(-)
>
> diff --git a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c
> index a3b2d7925f72..d4a7859ca9e8 100644
> --- a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c
> +++ b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c
> @@ -25,6 +25,7 @@
> #include <Library/UefiBootManagerLib.h>
> #include <Library/UefiLib.h>
> #include <Protocol/DevicePath.h>
> +#include <Protocol/EsrtManagement.h>
> #include <Protocol/GraphicsOutput.h>
> #include <Protocol/LoadedImage.h>
> #include <Protocol/PciIo.h>
> @@ -449,12 +450,23 @@ PlatformBootManagerBeforeConsole (
> VOID
> )
> {
> - EFI_STATUS Status;
> + EFI_STATUS Status;
> + ESRT_MANAGEMENT_PROTOCOL *EsrtManagement;
>
> if (GetBootModeHob() == BOOT_ON_FLASH_UPDATE) {
> DEBUG ((DEBUG_INFO, "ProcessCapsules Before EndOfDxe ......\n"));
> Status = ProcessCapsules ();
> DEBUG ((DEBUG_INFO, "ProcessCapsules returned %r\n", Status));
> + } else {
> + if (EsrtManagement != NULL) {
> + EsrtManagement->SyncEsrtFmp();
Missing space before '('.
> + }
> + }
> +
> + Status = gBS->LocateProtocol(&gEsrtManagementProtocolGuid, NULL,
Missing space before '('.
> + (VOID **)&EsrtManagement);
> + if (EFI_ERROR(Status)) {
Missing space before '('.
> + EsrtManagement = NULL;
> }
>
> //
> @@ -524,7 +536,8 @@ PlatformBootManagerAfterConsole (
> VOID
> )
> {
> - EFI_STATUS Status;
> + ESRT_MANAGEMENT_PROTOCOL *EsrtManagement;
> + EFI_STATUS Status;
>
> //
> // Show the splash screen.
> @@ -538,6 +551,12 @@ PlatformBootManagerAfterConsole (
> //
> EfiBootManagerConnectAll ();
>
> + Status = gBS->LocateProtocol(&gEsrtManagementProtocolGuid, NULL,
Missing space before '('.
> + (VOID **)&EsrtManagement);
> + if (!EFI_ERROR(Status)) {
Missing space before '('.
> + EsrtManagement->SyncEsrtFmp();
Missing space before '('.
If you fold those in,
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
> + }
> +
> if (GetBootModeHob() == BOOT_ON_FLASH_UPDATE) {
> DEBUG((DEBUG_INFO, "ProcessCapsules After EndOfDxe ......\n"));
> Status = ProcessCapsules ();
> diff --git a/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf b/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
> index 58c4d6d2c7d6..fce7349ff867 100644
> --- a/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
> +++ b/ArmPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
> @@ -82,3 +82,4 @@ [Protocols]
> gEfiLoadedImageProtocolGuid
> gEfiPciRootBridgeIoProtocolGuid
> gEfiSimpleFileSystemProtocolGuid
> + gEsrtManagementProtocolGuid
> --
> 2.11.0
>
next prev parent reply other threads:[~2017-10-06 14:36 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-02 19:02 [PATCH] ArmPkg/PlatformBootManagerLib: call ESRT hooks at appropriate times Ard Biesheuvel
2017-10-06 14:39 ` Leif Lindholm [this message]
2017-10-06 20:51 ` Ard Biesheuvel
2017-10-06 21:27 ` Ard Biesheuvel
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=20171006143929.kr3sajwoi7wu6zub@bivouac.eciton.net \
--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