From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web12.3876.1573765517348861963 for ; Thu, 14 Nov 2019 13:05:17 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: rodrigo.gonzalez.del.cueto@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Nov 2019 13:05:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,305,1569308400"; d="scan'208";a="230236668" Received: from fm73lab177-1.amr.corp.intel.com ([10.80.209.189]) by fmsmga004.fm.intel.com with ESMTP; 14 Nov 2019 13:05:16 -0800 From: Rodrigo Gonzalez del Cueto To: devel@edk2.groups.io. Cc: Rodrigo Gonzalez del Cueto Subject: [edk2-platforms][Patch V5 0/2] MinPlatformPkg: Introduce library for customizing TPM platform configuration Date: Thu, 14 Nov 2019 13:05:08 -0800 Message-Id: <20191114210510.1736-1-rodrigo.gonzalez.del.cueto@intel.com> X-Mailer: git-send-email 2.22.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit [PATCH 5] Split up TpmPlatformHierarchyLib from Tcg2PlatformDxe modifications [PATCH 1/2] Add new library class TpmPlatformHierarchyLib [PATCH 2/2] Add usage in Tcg2PlatformDxe Rodrigo Gonzalez del Cueto (2): MinPlatformPkg: Library for customizing TPM platform hierarchy MinPlatformPkg: Tcg2PlatformDxe to use TpmPlatformHierarchyLib .../Include/Library/TpmPlatformHierarchyLib.h | 29 +++ .../Intel/MinPlatformPkg/MinPlatformPkg.dec | 2 + .../Intel/MinPlatformPkg/MinPlatformPkg.dsc | 1 + .../TpmPlatformHierarchyLib.c | 214 ++++++++++++++++++ .../TpmPlatformHierarchyLib.inf | 45 ++++ .../Tcg/Tcg2PlatformDxe/Tcg2PlatformDxe.c | 168 ++------------ .../Tcg/Tcg2PlatformDxe/Tcg2PlatformDxe.inf | 12 +- 7 files changed, 315 insertions(+), 156 deletions(-) create mode 100644 Platform/Intel/MinPlatformPkg/Include/Library/TpmPlatformHierarchyLib.h create mode 100644 Platform/Intel/MinPlatformPkg/Tcg/Library/TpmPlatformHierarchyLib/TpmPlatformHierarchyLib.c create mode 100644 Platform/Intel/MinPlatformPkg/Tcg/Library/TpmPlatformHierarchyLib/TpmPlatformHierarchyLib.inf -- 2.22.0.windows.1