public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Zhiguang Liu" <zhiguang.liu@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	"oleksiyy@ami.com" <oleksiyy@ami.com>
Cc: "Gao, Liming" <liming.gao@intel.com>,
	"Kinney, Michael D" <michael.d.kinney@intel.com>,
	"Felixp@ami.com" <Felixp@ami.com>
Subject: Re: [edk2-devel] [PATCH v2 1/4] MdePkg: Add new CPER Notification types
Date: Mon, 11 May 2020 06:10:36 +0000	[thread overview]
Message-ID: <BN7PR11MB280469D4ED71D2BF4DD75E5790A10@BN7PR11MB2804.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20200507193443.76728-2-oleksiyy@ami.com>

Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Oleksiy
> Yakovlev
> Sent: Friday, May 8, 2020 3:35 AM
> To: devel@edk2.groups.io
> Cc: Gao, Liming <liming.gao@intel.com>; Kinney, Michael D
> <michael.d.kinney@intel.com>; Felixp@ami.com; oleksiyy@ami.com
> Subject: [edk2-devel] [PATCH v2 1/4] MdePkg: Add new CPER Notification
> types
> 
> Add SEA, SEI, and PEI CPER Notification types defined in UEFI 2.8 errata a.
> (UEFI 2.8 errata a, mantis 2026)
> 
> Signed-off-by: Oleksiy Yakovlev <oleksiyy@ami.com>
> ---
>  MdePkg/Include/Guid/Cper.h | 15 +++++++++++++++
>  MdePkg/MdePkg.dec          |  9 +++++++++
>  2 files changed, 24 insertions(+)
> 
> diff --git a/MdePkg/Include/Guid/Cper.h b/MdePkg/Include/Guid/Cper.h
> index 0cacd30..b401c14 100644
> --- a/MdePkg/Include/Guid/Cper.h
> +++ b/MdePkg/Include/Guid/Cper.h
> @@ -95,6 +95,18 @@ typedef struct {
>    { \
>      0x667DD791, 0xC6B3, 0x4c27, { 0x8A, 0x6B, 0x0F, 0x8E, 0x72, 0x2D, 0xEB,
> 0x41 } \
>    }
> +#define EFI_EVENT_NOTIFICATION_TYPE_DMAR_SEA \
> +  { \
> +    0x9A78788A, 0xBBE8, 0x11E4, { 0x80, 0x9E, 0x67, 0x61, 0x1E, 0x5D,
> +0x46, 0xB0 } \
> +  }
> +#define EFI_EVENT_NOTIFICATION_TYPE_DMAR_SEI \
> +  { \
> +    0x5C284C81, 0xB0AE, 0x4E87, { 0xA3, 0x22, 0xB0, 0x4C, 0x85, 0x62,
> +0x43, 0x23 } \
> +  }
> +#define EFI_EVENT_NOTIFICATION_TYPE_DMAR_PEI \
> +  { \
> +    0x09A9D5AC, 0x5204, 0x4214, { 0x96, 0xE5, 0x94, 0x99, 0x2E, 0x75,
> +0x2B, 0xCD } \
> +  }
>  ///@}
> 
>  ///
> @@ -1207,6 +1219,9 @@ extern EFI_GUID gEfiEventNotificationTypeInitGuid;
>  extern EFI_GUID gEfiEventNotificationTypeNmiGuid;  extern EFI_GUID
> gEfiEventNotificationTypeBootGuid;
>  extern EFI_GUID gEfiEventNotificationTypeDmarGuid;
> +extern EFI_GUID gEfiEventNotificationTypeSeaGuid; extern EFI_GUID
> +gEfiEventNotificationTypeSeiGuid;
> +extern EFI_GUID gEfiEventNotificationTypePeiGuid;
> 
>  extern EFI_GUID gEfiProcessorGenericErrorSectionGuid;
>  extern EFI_GUID gEfiProcessorSpecificErrorSectionGuid;
> diff --git a/MdePkg/MdePkg.dec b/MdePkg/MdePkg.dec index
> ac1f533..99e75f7 100644
> --- a/MdePkg/MdePkg.dec
> +++ b/MdePkg/MdePkg.dec
> @@ -434,6 +434,15 @@
>    gEfiEventNotificationTypeDmarGuid  = { 0x667DD791, 0xC6B3, 0x4c27,
> { 0x8A, 0x6B, 0x0F, 0x8E, 0x72, 0x2D, 0xEB, 0x41 }}
> 
>    ## Include/Guid/Cper.h
> +  gEfiEventNotificationTypeSeaGuid   = { 0x9A78788A, 0xBBE8, 0x11E4, { 0x80,
> 0x9E, 0x67, 0x61, 0x1E, 0x5D, 0x46, 0xB0 }}
> +
> +  ## Include/Guid/Cper.h
> +  gEfiEventNotificationTypeSeiGuid   = { 0x5C284C81, 0xB0AE, 0x4E87, { 0xA3,
> 0x22, 0xB0, 0x4C, 0x85, 0x62, 0x43, 0x23 }}
> +
> +  ## Include/Guid/Cper.h
> +  gEfiEventNotificationTypePeiGuid   = { 0x09A9D5AC, 0x5204, 0x4214, { 0x96,
> 0xE5, 0x94, 0x99, 0x2E, 0x75, 0x2B, 0xCD }}
> +
> +  ## Include/Guid/Cper.h
>    gEfiProcessorGenericErrorSectionGuid  = { 0x9876ccad, 0x47b4, 0x4bdb,
> { 0xb6, 0x5e, 0x16, 0xf1, 0x93, 0xc4, 0xf3, 0xdb }}
> 
>    ## Include/Guid/Cper.h
> --
> 2.9.0.windows.1
> 
> 
> Please consider the environment before printing this email.
> 
> The information contained in this message may be confidential and
> proprietary to American Megatrends (AMI).  This communication is intended
> to be read only by the individual or entity to whom it is addressed or by their
> designee. If the reader of this message is not the intended recipient, you are
> on notice that any distribution of this message, in any form, is strictly
> prohibited.  Please promptly notify the sender by reply e-mail or by
> telephone at 770-246-8600, and then delete or destroy all copies of the
> transmission.
> 
> 


  reply	other threads:[~2020-05-11  6:10 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-07 19:34 [PATCH v2 0/4] Add definitions introduced in UEFI 2.8a Oleksiy Yakovlev
2020-05-07 19:34 ` [PATCH v2 1/4] MdePkg: Add new CPER Notification types Oleksiy Yakovlev
2020-05-11  6:10   ` Zhiguang Liu [this message]
2020-05-07 19:34 ` [PATCH v2 2/4] MdePkg: Fix OUT parameters marked as IN OUT Oleksiy Yakovlev
2020-05-11  6:12   ` [edk2-devel] " Zhiguang Liu
2020-05-07 19:34 ` [PATCH v2 3/4] MdePkg: Add EFI_PROPERTIES_TABLE Oleksiy Yakovlev
2020-05-08  6:08   ` [edk2-devel] " Zhiguang Liu
2020-05-08 15:29     ` Oleksiy Yakovlev
2020-05-09  0:29       ` Zhiguang Liu
2020-05-11 14:41       ` Liming Gao
2020-05-07 19:34 ` [PATCH v2 4/4] MdePkg: Add FMP Capsule Image Header extension Oleksiy Yakovlev
2020-05-11  6:14   ` [edk2-devel] " Zhiguang Liu
2020-05-11 14:42 ` [PATCH v2 0/4] Add definitions introduced in UEFI 2.8a Liming Gao

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=BN7PR11MB280469D4ED71D2BF4DD75E5790A10@BN7PR11MB2804.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