From: "Gerd Hoffmann" <kraxel@redhat.com>
To: devel@edk2.groups.io
Cc: "Jiewen Yao" <jiewen.yao@intel.com>,
"Jordan Justen" <jordan.l.justen@intel.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Min Xu" <min.m.xu@intel.com>,
"Tom Lendacky" <thomas.lendacky@amd.com>,
"Stefan Berger" <stefanb@linux.ibm.com>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"Ard Biesheuvel" <ardb+tianocore@kernel.org>,
"Erdem Aktas" <erdemaktas@google.com>,
"Brijesh Singh" <brijesh.singh@amd.com>,
"James Bottomley" <jejb@linux.ibm.com>
Subject: [PATCH v3 0/5] OvmfPkg: rework TPM configuration.
Date: Thu, 28 Oct 2021 13:09:16 +0200 [thread overview]
Message-ID: <20211028110921.819113-1-kraxel@redhat.com> (raw)
Allows to enable/disable TPM 1.2 support in OVMF.
Allows to enable SHA-1 support for TPM hashing.
v3:
- drop config menu for tpm 1.2 (needs other fixes first)
- update some places missed.
- add microvm cleanup.
- add review/test tags.
v2:
- drop TPM_CONFIG_ENABLE config option.
- don't add SHA1 config option.
- add config menu for tpm 1.2
Gerd Hoffmann (5):
OvmfPkg: remove unused TPM options from MicrovmX64.dsc
OvmfPkg: move tcg configuration to dsc and fdf include files
OvmfPkg: drop TPM_CONFIG_ENABLE
OvmfPkg: create Tcg12ConfigPei.inf
OvmfPkg: rework TPM configuration
OvmfPkg/OvmfTpmComponentsDxe.dsc.inc | 28 ++++++
OvmfPkg/OvmfTpmComponentsPei.dsc.inc | 26 ++++++
OvmfPkg/OvmfTpmDefines.dsc.inc | 8 ++
OvmfPkg/OvmfTpmLibs.dsc.inc | 16 ++++
OvmfPkg/OvmfTpmLibsDxe.dsc.inc | 10 +++
OvmfPkg/OvmfTpmLibsPeim.dsc.inc | 11 +++
OvmfPkg/OvmfTpmPcds.dsc.inc | 7 ++
OvmfPkg/OvmfTpmPcdsHii.dsc.inc | 8 ++
OvmfPkg/OvmfTpmSecurityStub.dsc.inc | 10 +++
OvmfPkg/AmdSev/AmdSevX64.dsc | 85 +++---------------
OvmfPkg/Microvm/MicrovmX64.dsc | 2 -
OvmfPkg/OvmfPkgIa32.dsc | 88 +++----------------
OvmfPkg/OvmfPkgIa32X64.dsc | 85 +++---------------
OvmfPkg/OvmfPkgX64.dsc | 85 +++---------------
OvmfPkg/AmdSev/AmdSevX64.fdf | 17 +---
OvmfPkg/OvmfPkgIa32.fdf | 17 +---
OvmfPkg/OvmfPkgIa32X64.fdf | 17 +---
OvmfPkg/OvmfPkgX64.fdf | 17 +---
.../{Tcg2ConfigPei.inf => Tcg12ConfigPei.inf} | 11 +--
OvmfPkg/Tcg/Tcg2Config/Tcg2ConfigPei.inf | 11 +--
OvmfPkg/OvmfTpmDxe.fdf.inc | 12 +++
OvmfPkg/OvmfTpmPei.fdf.inc | 15 ++++
.../.azurepipelines/Ubuntu-GCC5.yml | 6 +-
.../.azurepipelines/Windows-VS2019.yml | 6 +-
OvmfPkg/PlatformCI/ReadMe.md | 2 +-
25 files changed, 213 insertions(+), 387 deletions(-)
create mode 100644 OvmfPkg/OvmfTpmComponentsDxe.dsc.inc
create mode 100644 OvmfPkg/OvmfTpmComponentsPei.dsc.inc
create mode 100644 OvmfPkg/OvmfTpmDefines.dsc.inc
create mode 100644 OvmfPkg/OvmfTpmLibs.dsc.inc
create mode 100644 OvmfPkg/OvmfTpmLibsDxe.dsc.inc
create mode 100644 OvmfPkg/OvmfTpmLibsPeim.dsc.inc
create mode 100644 OvmfPkg/OvmfTpmPcds.dsc.inc
create mode 100644 OvmfPkg/OvmfTpmPcdsHii.dsc.inc
create mode 100644 OvmfPkg/OvmfTpmSecurityStub.dsc.inc
copy OvmfPkg/Tcg/Tcg2Config/{Tcg2ConfigPei.inf => Tcg12ConfigPei.inf} (82%)
create mode 100644 OvmfPkg/OvmfTpmDxe.fdf.inc
create mode 100644 OvmfPkg/OvmfTpmPei.fdf.inc
--
2.31.1
next reply other threads:[~2021-10-28 11:09 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-28 11:09 Gerd Hoffmann [this message]
2021-10-28 11:09 ` [PATCH v3 1/5] OvmfPkg: remove unused TPM options from MicrovmX64.dsc Gerd Hoffmann
2021-10-28 11:47 ` [edk2-devel] " Stefan Berger
2021-11-09 8:45 ` Philippe Mathieu-Daudé
2021-10-28 11:09 ` [PATCH v3 2/5] OvmfPkg: move tcg configuration to dsc and fdf include files Gerd Hoffmann
2021-10-28 11:09 ` [PATCH v3 3/5] OvmfPkg: drop TPM_CONFIG_ENABLE Gerd Hoffmann
2021-11-09 8:47 ` [edk2-devel] " Philippe Mathieu-Daudé
2021-10-28 11:09 ` [PATCH v3 4/5] OvmfPkg: create Tcg12ConfigPei.inf Gerd Hoffmann
2021-11-09 8:43 ` [edk2-devel] " Philippe Mathieu-Daudé
2021-10-28 11:09 ` [PATCH v3 5/5] OvmfPkg: rework TPM configuration Gerd Hoffmann
2021-11-09 8:49 ` [edk2-devel] " Philippe Mathieu-Daudé
2021-10-29 0:37 ` [edk2-devel] [PATCH v3 0/5] " Yao, Jiewen
2021-11-09 7:08 ` Gerd Hoffmann
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=20211028110921.819113-1-kraxel@redhat.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