* [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 @ 2023-06-08 18:25 Kun Qin 2023-06-08 18:25 ` [PATCH v2 1/3] MdePkg: PiStatusCode: Add new Host Software class Error Code to MdePkg Kun Qin ` (3 more replies) 0 siblings, 4 replies; 8+ messages in thread From: Kun Qin @ 2023-06-08 18:25 UTC (permalink / raw) To: devel Cc: Jiewen Yao, Jian J Wang, Qi Zhang, Rahul Kumar, Michael D Kinney, Liming Gao, Zhiguang Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3794 REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3966 This v2 series is a follow up of previously submitted patches: https://edk2.groups.io/g/devel/message/105599 The v2 patches include `Reviewed-by` tags collected during the v1 round and no other changes. Patch v2 branch: https://github.com/kuqin12/edk2/tree/pi_v1p8_v2 Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Qi Zhang <qi1.zhang@intel.com> Cc: Rahul Kumar <rahul1.kumar@intel.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Zhiguang Liu <zhiguang.liu@intel.com> Kun Qin (3): MdePkg: PiStatusCode: Add new Host Software class Error Code to MdePkg MdePkg: PiStatusCode: Add TPM subclass definition to MdePkg SecurityPkg: SubClassTpm: Updated default value MdePkg/Include/Pi/PiStatusCode.h | 42 ++++++++++---------- SecurityPkg/SecurityPkg.dec | 6 +-- SecurityPkg/SecurityPkg.uni | 2 +- 3 files changed, 26 insertions(+), 24 deletions(-) -- 2.40.1.windows.1 ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 1/3] MdePkg: PiStatusCode: Add new Host Software class Error Code to MdePkg 2023-06-08 18:25 [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 Kun Qin @ 2023-06-08 18:25 ` Kun Qin 2023-06-08 18:25 ` [PATCH v2 2/3] MdePkg: PiStatusCode: Add TPM subclass definition " Kun Qin ` (2 subsequent siblings) 3 siblings, 0 replies; 8+ messages in thread From: Kun Qin @ 2023-06-08 18:25 UTC (permalink / raw) To: devel; +Cc: Michael D Kinney, Liming Gao, Zhiguang Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3794 This change introduces a new error code definitions under Host Software class according to PI specification v1.8. The new error code definition will cover system reboot events under the conditions of inconsistent memory map from one boot to another. These error codes could provide helpful datapoints to OEMs to investigate and prevent system failures in general. Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Zhiguang Liu <zhiguang.liu@intel.com> Signed-off-by: Kun Qin <kuqin12@gmail.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> --- Notes: v2: - Added reviewed-by tag [Liming] MdePkg/Include/Pi/PiStatusCode.h | 41 ++++++++++---------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/MdePkg/Include/Pi/PiStatusCode.h b/MdePkg/Include/Pi/PiStatusCode.h index ef2aea7364bc..3222a082c550 100644 --- a/MdePkg/Include/Pi/PiStatusCode.h +++ b/MdePkg/Include/Pi/PiStatusCode.h @@ -965,26 +965,27 @@ typedef struct { /// These are shared by all subclasses. /// ///@{ -#define EFI_SW_EC_NON_SPECIFIC 0x00000000 -#define EFI_SW_EC_LOAD_ERROR 0x00000001 -#define EFI_SW_EC_INVALID_PARAMETER 0x00000002 -#define EFI_SW_EC_UNSUPPORTED 0x00000003 -#define EFI_SW_EC_INVALID_BUFFER 0x00000004 -#define EFI_SW_EC_OUT_OF_RESOURCES 0x00000005 -#define EFI_SW_EC_ABORTED 0x00000006 -#define EFI_SW_EC_ILLEGAL_SOFTWARE_STATE 0x00000007 -#define EFI_SW_EC_ILLEGAL_HARDWARE_STATE 0x00000008 -#define EFI_SW_EC_START_ERROR 0x00000009 -#define EFI_SW_EC_BAD_DATE_TIME 0x0000000A -#define EFI_SW_EC_CFG_INVALID 0x0000000B -#define EFI_SW_EC_CFG_CLR_REQUEST 0x0000000C -#define EFI_SW_EC_CFG_DEFAULT 0x0000000D -#define EFI_SW_EC_PWD_INVALID 0x0000000E -#define EFI_SW_EC_PWD_CLR_REQUEST 0x0000000F -#define EFI_SW_EC_PWD_CLEARED 0x00000010 -#define EFI_SW_EC_EVENT_LOG_FULL 0x00000011 -#define EFI_SW_EC_WRITE_PROTECTED 0x00000012 -#define EFI_SW_EC_FV_CORRUPTED 0x00000013 +#define EFI_SW_EC_NON_SPECIFIC 0x00000000 +#define EFI_SW_EC_LOAD_ERROR 0x00000001 +#define EFI_SW_EC_INVALID_PARAMETER 0x00000002 +#define EFI_SW_EC_UNSUPPORTED 0x00000003 +#define EFI_SW_EC_INVALID_BUFFER 0x00000004 +#define EFI_SW_EC_OUT_OF_RESOURCES 0x00000005 +#define EFI_SW_EC_ABORTED 0x00000006 +#define EFI_SW_EC_ILLEGAL_SOFTWARE_STATE 0x00000007 +#define EFI_SW_EC_ILLEGAL_HARDWARE_STATE 0x00000008 +#define EFI_SW_EC_START_ERROR 0x00000009 +#define EFI_SW_EC_BAD_DATE_TIME 0x0000000A +#define EFI_SW_EC_CFG_INVALID 0x0000000B +#define EFI_SW_EC_CFG_CLR_REQUEST 0x0000000C +#define EFI_SW_EC_CFG_DEFAULT 0x0000000D +#define EFI_SW_EC_PWD_INVALID 0x0000000E +#define EFI_SW_EC_PWD_CLR_REQUEST 0x0000000F +#define EFI_SW_EC_PWD_CLEARED 0x00000010 +#define EFI_SW_EC_EVENT_LOG_FULL 0x00000011 +#define EFI_SW_EC_WRITE_PROTECTED 0x00000012 +#define EFI_SW_EC_FV_CORRUPTED 0x00000013 +#define EFI_SW_EC_INCONSISTENT_MEMORY_MAP 0x00000014 ///@} // -- 2.40.1.windows.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 2/3] MdePkg: PiStatusCode: Add TPM subclass definition to MdePkg 2023-06-08 18:25 [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 Kun Qin 2023-06-08 18:25 ` [PATCH v2 1/3] MdePkg: PiStatusCode: Add new Host Software class Error Code to MdePkg Kun Qin @ 2023-06-08 18:25 ` Kun Qin 2023-06-08 18:25 ` [PATCH v2 3/3] SecurityPkg: SubClassTpm: Updated default value Kun Qin 2023-06-14 22:31 ` [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 Michael D Kinney 3 siblings, 0 replies; 8+ messages in thread From: Kun Qin @ 2023-06-08 18:25 UTC (permalink / raw) To: devel; +Cc: Michael D Kinney, Liming Gao, Zhiguang Liu REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3966 This change introduces a new peripheral subclass definition from PI specification v1.8. The new subclass definition will cover system reboot events under the status reports from Trusted Platform Modules (TPMs). These definition could provide helpful datapoints to OEMs to analyze system security state and healthiness, as well as avoid definition collision with other existing peripheral subclass definitions. Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Zhiguang Liu <zhiguang.liu@intel.com> Signed-off-by: Kun Qin <kuqin12@gmail.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> --- Notes: v2: - Added reviewed-by tag [Liming] MdePkg/Include/Pi/PiStatusCode.h | 1 + 1 file changed, 1 insertion(+) diff --git a/MdePkg/Include/Pi/PiStatusCode.h b/MdePkg/Include/Pi/PiStatusCode.h index 3222a082c550..6675431611cb 100644 --- a/MdePkg/Include/Pi/PiStatusCode.h +++ b/MdePkg/Include/Pi/PiStatusCode.h @@ -363,6 +363,7 @@ typedef struct { #define EFI_PERIPHERAL_LCD_DEVICE (EFI_PERIPHERAL | 0x000B0000) #define EFI_PERIPHERAL_NETWORK (EFI_PERIPHERAL | 0x000C0000) #define EFI_PERIPHERAL_DOCKING (EFI_PERIPHERAL | 0x000D0000) +#define EFI_PERIPHERAL_TPM (EFI_PERIPHERAL | 0x000E0000) ///@} /// -- 2.40.1.windows.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 3/3] SecurityPkg: SubClassTpm: Updated default value 2023-06-08 18:25 [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 Kun Qin 2023-06-08 18:25 ` [PATCH v2 1/3] MdePkg: PiStatusCode: Add new Host Software class Error Code to MdePkg Kun Qin 2023-06-08 18:25 ` [PATCH v2 2/3] MdePkg: PiStatusCode: Add TPM subclass definition " Kun Qin @ 2023-06-08 18:25 ` Kun Qin 2023-06-14 22:31 ` [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 Michael D Kinney 3 siblings, 0 replies; 8+ messages in thread From: Kun Qin @ 2023-06-08 18:25 UTC (permalink / raw) To: devel Cc: Jiewen Yao, Jian J Wang, Qi Zhang, Rahul Kumar, Jiewen Yao, Liming Gao REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3966 This change updated the default value of TPM device subclass PCD to `0x010E0000` in order to match the definition of EFI_PERIPHERAL_TPM from PI specification v1.8. Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Qi Zhang <qi1.zhang@intel.com> Cc: Rahul Kumar <rahul1.kumar@intel.com> Signed-off-by: Kun Qin <kuqin12@gmail.com> Reviewed-by: Jiewen Yao <Jiewen.yao@intel.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> --- Notes: v2: - Added reviewed-by tag [Jiewen] - Added reviewed-by tag [Liming] SecurityPkg/SecurityPkg.dec | 6 +++--- SecurityPkg/SecurityPkg.uni | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SecurityPkg/SecurityPkg.dec b/SecurityPkg/SecurityPkg.dec index 0a8042d63fe1..53aa7ec43557 100644 --- a/SecurityPkg/SecurityPkg.dec +++ b/SecurityPkg/SecurityPkg.dec @@ -308,10 +308,10 @@ [PcdsFixedAtBuild, PcdsPatchableInModule] gEfiSecurityPkgTokenSpaceGuid.PcdTpmPlatformClass|0|UINT8|0x00000006 ## Progress Code for TPM device subclass definitions.<BR><BR> - # EFI_PERIPHERAL_TPM = (EFI_PERIPHERAL | 0x000D0000) = 0x010D0000<BR> + # EFI_PERIPHERAL_TPM = (EFI_PERIPHERAL | 0x000E0000) = 0x010E0000<BR> # @Prompt Status Code for TPM device definitions - # @ValidList 0x80000003 | 0x010D0000 - gEfiSecurityPkgTokenSpaceGuid.PcdStatusCodeSubClassTpmDevice|0x010D0000|UINT32|0x00000007 + # @ValidList 0x80000003 | 0x010E0000 + gEfiSecurityPkgTokenSpaceGuid.PcdStatusCodeSubClassTpmDevice|0x010E0000|UINT32|0x00000007 ## Defines the IO port used to trigger a software System Management Interrupt (SMI).<BR><BR> # Used as the SMI Command IO port by security functionality that triggers a software SMI such diff --git a/SecurityPkg/SecurityPkg.uni b/SecurityPkg/SecurityPkg.uni index 68587304d779..6c28b8021333 100644 --- a/SecurityPkg/SecurityPkg.uni +++ b/SecurityPkg/SecurityPkg.uni @@ -169,7 +169,7 @@ #string STR_gEfiSecurityPkgTokenSpaceGuid_PcdStatusCodeSubClassTpmDevice_PROMPT #language en-US "Status Code for TPM device definitions" #string STR_gEfiSecurityPkgTokenSpaceGuid_PcdStatusCodeSubClassTpmDevice_HELP #language en-US "Progress Code for TPM device subclass definitions.<BR><BR>\n" - "EFI_PERIPHERAL_TPM = (EFI_PERIPHERAL | 0x000D0000) = 0x010D0000<BR>" + "EFI_PERIPHERAL_TPM = (EFI_PERIPHERAL | 0x000E0000) = 0x010E0000<BR>" #string STR_gEfiSecurityPkgTokenSpaceGuid_PcdRsa2048Sha256PublicKeyBuffer_PROMPT #language en-US "One or more SHA 256 Hashes of RSA 2048 bit public keys used to verify Recovery and Capsule Update images" -- 2.40.1.windows.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 2023-06-08 18:25 [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 Kun Qin ` (2 preceding siblings ...) 2023-06-08 18:25 ` [PATCH v2 3/3] SecurityPkg: SubClassTpm: Updated default value Kun Qin @ 2023-06-14 22:31 ` Michael D Kinney 2023-06-16 23:38 ` Kun Qin [not found] ` <176948019640F128.14360@groups.io> 3 siblings, 2 replies; 8+ messages in thread From: Michael D Kinney @ 2023-06-14 22:31 UTC (permalink / raw) To: devel@edk2.groups.io, kuqin12@gmail.com Cc: Yao, Jiewen, Wang, Jian J, Zhang, Qi1, Kumar, Rahul R, Gao, Liming, Liu, Zhiguang, Kinney, Michael D Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com> Mike > -----Original Message----- > From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Kun Qin > Sent: Thursday, June 8, 2023 11:25 AM > To: devel@edk2.groups.io > Cc: Yao, Jiewen <jiewen.yao@intel.com>; Wang, Jian J > <jian.j.wang@intel.com>; Zhang, Qi1 <qi1.zhang@intel.com>; Kumar, Rahul R > <rahul.r.kumar@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>; > Gao, Liming <gaoliming@byosoft.com.cn>; Liu, Zhiguang > <zhiguang.liu@intel.com> > Subject: [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions from PI > Spec v1.8 > > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3794 > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3966 > > This v2 series is a follow up of previously submitted patches: > https://edk2.groups.io/g/devel/message/105599 > > The v2 patches include `Reviewed-by` tags collected during the v1 > round and no other changes. > > Patch v2 branch: https://github.com/kuqin12/edk2/tree/pi_v1p8_v2 > > Cc: Jiewen Yao <jiewen.yao@intel.com> > Cc: Jian J Wang <jian.j.wang@intel.com> > Cc: Qi Zhang <qi1.zhang@intel.com> > Cc: Rahul Kumar <rahul1.kumar@intel.com> > Cc: Michael D Kinney <michael.d.kinney@intel.com> > Cc: Liming Gao <gaoliming@byosoft.com.cn> > Cc: Zhiguang Liu <zhiguang.liu@intel.com> > > Kun Qin (3): > MdePkg: PiStatusCode: Add new Host Software class Error Code to MdePkg > MdePkg: PiStatusCode: Add TPM subclass definition to MdePkg > SecurityPkg: SubClassTpm: Updated default value > > MdePkg/Include/Pi/PiStatusCode.h | 42 ++++++++++---------- > SecurityPkg/SecurityPkg.dec | 6 +-- > SecurityPkg/SecurityPkg.uni | 2 +- > 3 files changed, 26 insertions(+), 24 deletions(-) > > -- > 2.40.1.windows.1 > > > > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 2023-06-14 22:31 ` [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 Michael D Kinney @ 2023-06-16 23:38 ` Kun Qin [not found] ` <176948019640F128.14360@groups.io> 1 sibling, 0 replies; 8+ messages in thread From: Kun Qin @ 2023-06-16 23:38 UTC (permalink / raw) To: devel, michael.d.kinney Cc: Yao, Jiewen, Wang, Jian J, Zhang, Qi1, Kumar, Rahul R, Gao, Liming, Liu, Zhiguang Hi Mike, Thank you for the rb tag. Could you please help merging the change if you have a chance? If it is preferable to send a v3 with your extra tag, please let me know as well. Thanks, Kun On 6/14/2023 3:31 PM, Michael D Kinney wrote: > Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com> > > Mike > >> -----Original Message----- >> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Kun Qin >> Sent: Thursday, June 8, 2023 11:25 AM >> To: devel@edk2.groups.io >> Cc: Yao, Jiewen <jiewen.yao@intel.com>; Wang, Jian J >> <jian.j.wang@intel.com>; Zhang, Qi1 <qi1.zhang@intel.com>; Kumar, Rahul R >> <rahul.r.kumar@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>; >> Gao, Liming <gaoliming@byosoft.com.cn>; Liu, Zhiguang >> <zhiguang.liu@intel.com> >> Subject: [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions from PI >> Spec v1.8 >> >> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3794 >> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3966 >> >> This v2 series is a follow up of previously submitted patches: >> https://edk2.groups.io/g/devel/message/105599 >> >> The v2 patches include `Reviewed-by` tags collected during the v1 >> round and no other changes. >> >> Patch v2 branch: https://github.com/kuqin12/edk2/tree/pi_v1p8_v2 >> >> Cc: Jiewen Yao <jiewen.yao@intel.com> >> Cc: Jian J Wang <jian.j.wang@intel.com> >> Cc: Qi Zhang <qi1.zhang@intel.com> >> Cc: Rahul Kumar <rahul1.kumar@intel.com> >> Cc: Michael D Kinney <michael.d.kinney@intel.com> >> Cc: Liming Gao <gaoliming@byosoft.com.cn> >> Cc: Zhiguang Liu <zhiguang.liu@intel.com> >> >> Kun Qin (3): >> MdePkg: PiStatusCode: Add new Host Software class Error Code to MdePkg >> MdePkg: PiStatusCode: Add TPM subclass definition to MdePkg >> SecurityPkg: SubClassTpm: Updated default value >> >> MdePkg/Include/Pi/PiStatusCode.h | 42 ++++++++++---------- >> SecurityPkg/SecurityPkg.dec | 6 +-- >> SecurityPkg/SecurityPkg.uni | 2 +- >> 3 files changed, 26 insertions(+), 24 deletions(-) >> >> -- >> 2.40.1.windows.1 >> >> >> >> >> > > > > > ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <176948019640F128.14360@groups.io>]
* Re: [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 [not found] ` <176948019640F128.14360@groups.io> @ 2023-06-22 5:12 ` Kun Qin 0 siblings, 0 replies; 8+ messages in thread From: Kun Qin @ 2023-06-22 5:12 UTC (permalink / raw) To: devel, michael.d.kinney Cc: Yao, Jiewen, Wang, Jian J, Zhang, Qi1, Kumar, Rahul R, Gao, Liming, Liu, Zhiguang Hi package maintainers, A gentle ping on this thread again. If has been a week without any movement on this patch... Could any package maintainer provide feedback on how to proceed? Either a new round of patches with the new reviewed-by or helping me merging the changes? Thanks... Kun On 6/16/2023 4:38 PM, Kun Qin via groups.io wrote: > Hi Mike, > > Thank you for the rb tag. Could you please help merging the change if > you have a chance? > > If it is preferable to send a v3 with your extra tag, please let me > know as well. > > Thanks, > Kun > > On 6/14/2023 3:31 PM, Michael D Kinney wrote: >> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com> >> >> Mike >> >>> -----Original Message----- >>> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Kun Qin >>> Sent: Thursday, June 8, 2023 11:25 AM >>> To: devel@edk2.groups.io >>> Cc: Yao, Jiewen <jiewen.yao@intel.com>; Wang, Jian J >>> <jian.j.wang@intel.com>; Zhang, Qi1 <qi1.zhang@intel.com>; Kumar, >>> Rahul R >>> <rahul.r.kumar@intel.com>; Kinney, Michael D >>> <michael.d.kinney@intel.com>; >>> Gao, Liming <gaoliming@byosoft.com.cn>; Liu, Zhiguang >>> <zhiguang.liu@intel.com> >>> Subject: [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions >>> from PI >>> Spec v1.8 >>> >>> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3794 >>> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3966 >>> >>> This v2 series is a follow up of previously submitted patches: >>> https://edk2.groups.io/g/devel/message/105599 >>> >>> The v2 patches include `Reviewed-by` tags collected during the v1 >>> round and no other changes. >>> >>> Patch v2 branch: https://github.com/kuqin12/edk2/tree/pi_v1p8_v2 >>> >>> Cc: Jiewen Yao <jiewen.yao@intel.com> >>> Cc: Jian J Wang <jian.j.wang@intel.com> >>> Cc: Qi Zhang <qi1.zhang@intel.com> >>> Cc: Rahul Kumar <rahul1.kumar@intel.com> >>> Cc: Michael D Kinney <michael.d.kinney@intel.com> >>> Cc: Liming Gao <gaoliming@byosoft.com.cn> >>> Cc: Zhiguang Liu <zhiguang.liu@intel.com> >>> >>> Kun Qin (3): >>> MdePkg: PiStatusCode: Add new Host Software class Error Code to >>> MdePkg >>> MdePkg: PiStatusCode: Add TPM subclass definition to MdePkg >>> SecurityPkg: SubClassTpm: Updated default value >>> >>> MdePkg/Include/Pi/PiStatusCode.h | 42 ++++++++++---------- >>> SecurityPkg/SecurityPkg.dec | 6 +-- >>> SecurityPkg/SecurityPkg.uni | 2 +- >>> 3 files changed, 26 insertions(+), 24 deletions(-) >>> >>> -- >>> 2.40.1.windows.1 >>> >>> >>> >>> >>> >> >> >> >> >> > > > > > ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <1766C2447CD54416.29931@groups.io>]
* Re: [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 [not found] <1766C2447CD54416.29931@groups.io> @ 2023-06-14 5:00 ` Kun Qin 0 siblings, 0 replies; 8+ messages in thread From: Kun Qin @ 2023-06-14 5:00 UTC (permalink / raw) To: devel, Liming Gao, Jiewen Yao Cc: Jian J Wang, Qi Zhang, Rahul Kumar, Michael D Kinney, Zhiguang Liu Hi EDK2 maintainers, This patch series was reviewed the week before and was not merged. Could you please help merging this when you have a chance? Thanks in advance. Regards, Kun On 6/8/2023 11:25 AM, Kun Qin via groups.io wrote: > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3794 > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3966 > > This v2 series is a follow up of previously submitted patches: > https://edk2.groups.io/g/devel/message/105599 > > The v2 patches include `Reviewed-by` tags collected during the v1 > round and no other changes. > > Patch v2 branch: https://github.com/kuqin12/edk2/tree/pi_v1p8_v2 > > Cc: Jiewen Yao <jiewen.yao@intel.com> > Cc: Jian J Wang <jian.j.wang@intel.com> > Cc: Qi Zhang <qi1.zhang@intel.com> > Cc: Rahul Kumar <rahul1.kumar@intel.com> > Cc: Michael D Kinney <michael.d.kinney@intel.com> > Cc: Liming Gao <gaoliming@byosoft.com.cn> > Cc: Zhiguang Liu <zhiguang.liu@intel.com> > > Kun Qin (3): > MdePkg: PiStatusCode: Add new Host Software class Error Code to MdePkg > MdePkg: PiStatusCode: Add TPM subclass definition to MdePkg > SecurityPkg: SubClassTpm: Updated default value > > MdePkg/Include/Pi/PiStatusCode.h | 42 ++++++++++---------- > SecurityPkg/SecurityPkg.dec | 6 +-- > SecurityPkg/SecurityPkg.uni | 2 +- > 3 files changed, 26 insertions(+), 24 deletions(-) > ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-06-22 5:12 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-08 18:25 [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 Kun Qin 2023-06-08 18:25 ` [PATCH v2 1/3] MdePkg: PiStatusCode: Add new Host Software class Error Code to MdePkg Kun Qin 2023-06-08 18:25 ` [PATCH v2 2/3] MdePkg: PiStatusCode: Add TPM subclass definition " Kun Qin 2023-06-08 18:25 ` [PATCH v2 3/3] SecurityPkg: SubClassTpm: Updated default value Kun Qin 2023-06-14 22:31 ` [edk2-devel] [PATCH v2 0/3] Adding Status Code Definitions from PI Spec v1.8 Michael D Kinney 2023-06-16 23:38 ` Kun Qin [not found] ` <176948019640F128.14360@groups.io> 2023-06-22 5:12 ` Kun Qin [not found] <1766C2447CD54416.29931@groups.io> 2023-06-14 5:00 ` Kun Qin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox