public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Michael D Kinney" <michael.d.kinney@intel.com>
To: Dionna Glaze <dionnaglaze@google.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>,
	"Kinney, Michael D" <michael.d.kinney@intel.com>
Cc: Ard Biesheuvel <ardb@kernel.org>,
	Gerd Hoffman <kraxel@redhat.com>,
	"Yao, Jiewen" <jiewen.yao@intel.com>
Subject: Re: [PATCH v2 4/4] MdePkg: Signal AfterReadyToBoot after ReadyToBoot
Date: Wed, 9 Nov 2022 17:08:18 +0000	[thread overview]
Message-ID: <CO1PR11MB492926A774F63B041C588215D23E9@CO1PR11MB4929.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20221108211557.3306520-5-dionnaglaze@google.com>

Hi Dionna,

I gave feedback about After Exit Boot Services event.

Why is an After Ready To Boot signal now part of this series?

Mike

> -----Original Message-----
> From: Dionna Glaze <dionnaglaze@google.com>
> Sent: Tuesday, November 8, 2022 1:16 PM
> To: devel@edk2.groups.io
> Cc: Dionna Glaze <dionnaglaze@google.com>; Kinney, Michael D <michael.d.kinney@intel.com>; Ard Biesheuvel <ardb@kernel.org>;
> Gerd Hoffman <kraxel@redhat.com>; Yao, Jiewen <jiewen.yao@intel.com>
> Subject: [PATCH v2 4/4] MdePkg: Signal AfterReadyToBoot after ReadyToBoot
> 
> The Uefi v2.9 specification adds this event group in section 3.1.7,
> with its GUID defined in the Related Definitions section of
> EFI_BOOT_SERVICES.CreateEventEx() in chapter 7.
> 
> Cc: "Michael D Kinney" <michael.d.kinney@intel.com>
> Cc: Ard Biesheuvel <ardb@kernel.org>
> Cc: Gerd Hoffman <kraxel@redhat.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> 
> Signed-off-by: Dionna Glaze <dionnaglaze@google.com>
> ---
>  MdePkg/Include/Library/UefiLib.h      |  2 ++
>  MdePkg/Library/UefiLib/UefiLib.inf    |  1 +
>  MdePkg/Library/UefiLib/UefiNotTiano.c | 18 ++++++++++++++++++
>  3 files changed, 21 insertions(+)
> 
> diff --git a/MdePkg/Include/Library/UefiLib.h b/MdePkg/Include/Library/UefiLib.h
> index be7da7fdf7..2c3342351e 100644
> --- a/MdePkg/Include/Library/UefiLib.h
> +++ b/MdePkg/Include/Library/UefiLib.h
> @@ -890,6 +890,8 @@ UnicodeStringDisplayLength (
>  /**
>    Create, Signal, and Close the Ready to Boot event using EfiSignalEventReadyToBoot().
> 
> +  If successful, then create, signal and close the After Ready to Boot event.
> +
>    This function abstracts the signaling of the Ready to Boot Event. The Framework moved
>    from a proprietary to UEFI 2.0 based mechanism. This library abstracts the caller
>    from how this event is created to prevent to code form having to change with the
> diff --git a/MdePkg/Library/UefiLib/UefiLib.inf b/MdePkg/Library/UefiLib/UefiLib.inf
> index 01ed92092d..5c4064eafa 100644
> --- a/MdePkg/Library/UefiLib/UefiLib.inf
> +++ b/MdePkg/Library/UefiLib/UefiLib.inf
> @@ -60,6 +60,7 @@
>    gEfiGlobalVariableGuid                        ## SOMETIMES_CONSUMES  ## Variable
>    gEfiAcpi20TableGuid                           ## SOMETIMES_CONSUMES  ## SystemTable
>    gEfiAcpi10TableGuid                           ## SOMETIMES_CONSUMES  ## SystemTable
> +  gEfiEventAfterReadyToBootGuid                 ## SOMETIMES_CONSUMES  ## Event
> 
>  [Protocols]
>    gEfiDriverBindingProtocolGuid                   ## SOMETIMES_PRODUCES
> diff --git a/MdePkg/Library/UefiLib/UefiNotTiano.c b/MdePkg/Library/UefiLib/UefiNotTiano.c
> index d84e91fd01..04fe42f9f7 100644
> --- a/MdePkg/Library/UefiLib/UefiNotTiano.c
> +++ b/MdePkg/Library/UefiLib/UefiNotTiano.c
> @@ -208,6 +208,8 @@ EfiCreateEventReadyToBootEx (
>  /**
>    Create, Signal, and Close the Ready to Boot event using EfiSignalEventReadyToBoot().
> 
> +  If successful, then create, signal and close the After Ready to Boot event.
> +
>    This function abstracts the signaling of the Ready to Boot Event. The Framework moved
>    from a proprietary to UEFI 2.0 based mechanism. This library abstracts the caller
>    from how this event is created to prevent to code form having to change with the
> @@ -222,11 +224,27 @@ EfiSignalEventReadyToBoot (
>  {
>    EFI_STATUS  Status;
>    EFI_EVENT   ReadyToBootEvent;
> +  EFI_EVENT   AfterReadyToBootEvent;
> 
>    Status = EfiCreateEventReadyToBoot (&ReadyToBootEvent);
>    if (!EFI_ERROR (Status)) {
>      gBS->SignalEvent (ReadyToBootEvent);
>      gBS->CloseEvent (ReadyToBootEvent);
> +    return;
> +  }
> +
> +  /* Then immediately signal the after ready to boot event group */
> +  Status = gBS->CreateEventEx (
> +                  EVT_NOTIFY_SIGNAL,
> +                  TPL_CALLBACK,
> +                  EfiEventEmptyFunction,
> +                  NULL,
> +                  &gEfiEventAfterReadyToBootGuid,
> +                  AfterReadyToBootEvent
> +                  );
> +  if (!EFI_ERROR(Status)) {
> +    gBS->SignalEvent (AfterReadyToBootEvent);
> +    gBS->CloseEvent (AfterReadyToBootEvent);
>    }
>  }
> 
> --
> 2.38.1.431.g37b22c650d-goog


  reply	other threads:[~2022-11-09 17:08 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-08 21:15 [PATCH v2 0/4] SEV-SNP accepted memory and BeforeExitBootServices Dionna Glaze
2022-11-08 21:15 ` [PATCH v2 1/4] OvmfPkg: Realize EfiMemoryAcceptProtocol in AmdSevDxe Dionna Glaze
2022-11-08 21:15 ` [PATCH v2 2/4] MdePkg: Add event groups for boot events Dionna Glaze
2022-11-08 21:15 ` [PATCH v2 3/4] MdeModulePkg: Notify BeforeExitBootServices in CoreExitBootServices Dionna Glaze
2022-11-08 21:15 ` [PATCH v2 4/4] MdePkg: Signal AfterReadyToBoot after ReadyToBoot Dionna Glaze
2022-11-09 17:08   ` Michael D Kinney [this message]
2022-11-09 17:11     ` [edk2-devel] " Dionna Glaze
2022-11-09 17:31       ` Michael D Kinney
2022-11-09 17:42         ` Dionna Glaze
2022-12-07  1:26   ` 回复: " gaoliming
2022-12-07  5:27     ` Dionna Glaze

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=CO1PR11MB492926A774F63B041C588215D23E9@CO1PR11MB4929.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