DynamicTablesPkg: Add parser for Tpm2 CM object

Update the CM Object parser to add support for parsing the
CM_ARM_TPM2_INTERFACE_INFO object.

Signed-off-by: Dat Mach <dmach@nvidia.com>
This commit is contained in:
Dat Mach 2024-06-25 15:07:38 -07:00 committed by mergify[bot]
parent d24df10cee
commit b0f43dd3fd

View File

@ -665,6 +665,18 @@ STATIC CONST CM_OBJ_PARSER CmArchCommonPsdInfoParser[] = {
{ "NumProc", 4, "0x%x", NULL },
};
/** A parser for EArchCommonObjTpm2InterfaceInfo.
*/
STATIC CONST CM_OBJ_PARSER CmArchCommonTpm2InterfaceInfo[] = {
{ "PlatformClass", sizeof (UINT16), "0x%x", NULL },
{ "AddressOfControlArea", sizeof (UINT64), "0x%llx", NULL },
{ "StartMethod", sizeof (UINT32), "0x%x", NULL },
{ "StartMethodParametersSize", sizeof (UINT8), "0x%x", NULL },
{ "StartMethodParameters", EFI_TPM2_ACPI_TABLE_START_METHOD_SPECIFIC_PARAMETERS_MAX_SIZE, NULL, HexDump },
{ "Laml", sizeof (UINT32), "0x%x", NULL },
{ "Lasa", sizeof (UINT64), "0x%llx", NULL },
};
/** A parser for Arch Common namespace objects.
*/
STATIC CONST CM_OBJ_PARSER_ARRAY ArchCommonNamespaceObjectParser[] = {
@ -694,6 +706,7 @@ STATIC CONST CM_OBJ_PARSER_ARRAY ArchCommonNamespaceObjectParser[] = {
CM_PARSER_ADD_OBJECT (EArchCommonObjPccSubspaceType4Info, CmArchCommonPccSubspaceType34InfoParser),
CM_PARSER_ADD_OBJECT (EArchCommonObjPccSubspaceType5Info, CmArchCommonPccSubspaceType5InfoParser),
CM_PARSER_ADD_OBJECT (EArchCommonObjPsdInfo, CmArchCommonPsdInfoParser),
CM_PARSER_ADD_OBJECT (EArchCommonObjTpm2InterfaceInfo, CmArchCommonTpm2InterfaceInfo),
CM_PARSER_ADD_OBJECT_RESERVED (EArchCommonObjMax)
};