From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.byosoft.com.cn (mail.byosoft.com.cn [58.240.74.242]) by mx.groups.io with SMTP id smtpd.web10.4875.1611290986990044934 for ; Thu, 21 Jan 2021 20:49:47 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: byosoft.com.cn, ip: 58.240.74.242, mailfrom: gaoliming@byosoft.com.cn) Received: from DESKTOPS6D0PVI ([58.246.60.130]) (envelope-sender ) by 192.168.6.13 with ESMTP for ; Fri, 22 Jan 2021 12:49:34 +0800 X-WM-Sender: gaoliming@byosoft.com.cn X-WM-AuthFlag: YES X-WM-AuthUser: gaoliming@byosoft.com.cn From: "gaoliming" To: "'Nhi Pham'" , Cc: "'Michael D Kinney'" , "'Zhiguang Liu'" References: <20210121120919.12781-1-nhi@os.amperecomputing.com> In-Reply-To: <20210121120919.12781-1-nhi@os.amperecomputing.com> Subject: =?UTF-8?B?5Zue5aSNOiBbUEFUQ0ggMS8xXSBNZGVQa2cvVHBtMkFjcGkuaDogQWRkIFN0YXJ0IE1ldGhvZCBTcGVjaWZpYyBQYXJhbWV0ZXJzIGZvciBBUk0gU01D?= Date: Fri, 22 Jan 2021 12:49:37 +0800 Message-ID: <017401d6f079$fc9fd2d0$f5df7870$@byosoft.com.cn> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 16.0 Thread-Index: AQKDn7T8y4uvPpyV60V2/L+rs2wOIajZtHYw Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: quoted-printable Content-Language: zh-cn Reviewed-by: Liming Gao > -----=D3=CA=BC=FE=D4=AD=BC=FE----- > =B7=A2=BC=FE=C8=CB: Nhi Pham > =B7=A2=CB=CD=CA=B1=BC=E4: 2021=C4=EA1=D4=C221=C8=D5 20:09 > =CA=D5=BC=FE=C8=CB: devel@edk2.groups.io > =B3=AD=CB=CD: Nhi Pham ; Michael D Kinney > ; Liming Gao ; > Zhiguang Liu > =D6=F7=CC=E2: [PATCH 1/1] MdePkg/Tpm2Acpi.h: Add Start Method Specific > Parameters for ARM SMC >=20 > Add Start Method Specific Parameters for ARM SMC Start Method = described > in the TCG ACPI Specification version 1.2, revision 8. >=20 > Cc: Michael D Kinney > Cc: Liming Gao > Cc: Zhiguang Liu > Signed-off-by: Nhi Pham > --- > MdePkg/Include/IndustryStandard/Tpm2Acpi.h | 13 +++++++++++++ > 1 file changed, 13 insertions(+) >=20 > diff --git a/MdePkg/Include/IndustryStandard/Tpm2Acpi.h > b/MdePkg/Include/IndustryStandard/Tpm2Acpi.h > index 3ed6834cc9ce..946bc7dab77a 100644 > --- a/MdePkg/Include/IndustryStandard/Tpm2Acpi.h > +++ b/MdePkg/Include/IndustryStandard/Tpm2Acpi.h > @@ -2,6 +2,7 @@ > TPM2 ACPI table definition. >=20 > Copyright (c) 2013 - 2019, Intel Corporation. All rights reserved. =
> +Copyright (c) 2021, Ampere Computing LLC. All rights reserved.
> SPDX-License-Identifier: BSD-2-Clause-Patent >=20 > **/ > @@ -48,6 +49,18 @@ typedef struct { > UINT64 Response; > } EFI_TPM2_ACPI_CONTROL_AREA; >=20 > +// > +// Start Method Specific Parameters for ARM SMC Start Method (11) > +// Refer to Table 9: Start Method Specific Parameters for ARM SMC > +// > +typedef struct { > + UINT32 Interrupt; > + UINT8 Flags; > + UINT8 OperationFlags; > + UINT8 Reserved[2]; > + UINT32 SmcFunctionId; > +} EFI_TPM2_ACPI_START_METHOD_SPECIFIC_PARAMETERS_ARM_SMC; > + > #pragma pack () >=20 > #endif > -- > 2.17.1 >=20