From: "Gerd Hoffmann" <kraxel@redhat.com>
To: devel@edk2.groups.io
Cc: Pawel Polawski <ppolawsk@redhat.com>,
Guomin Jiang <guomin.jiang@intel.com>,
Jordan Justen <jordan.l.justen@intel.com>,
Jian J Wang <jian.j.wang@intel.com>,
James Bottomley <jejb@linux.ibm.com>,
Gerd Hoffmann <kraxel@redhat.com>,
Oliver Steffen <osteffen@redhat.com>,
Erdem Aktas <erdemaktas@google.com>, Min Xu <min.m.xu@intel.com>,
Xiaoyu Lu <xiaoyu1.lu@intel.com>,
Jiewen Yao <jiewen.yao@intel.com>,
Ard Biesheuvel <ardb+tianocore@kernel.org>,
Michael Roth <michael.roth@amd.com>,
Tom Lendacky <thomas.lendacky@amd.com>
Subject: [PATCH v3 00/11] OvmfPkg: add Crypto Driver support
Date: Thu, 9 Mar 2023 12:09:23 +0100 [thread overview]
Message-ID: <20230309110934.853991-1-kraxel@redhat.com> (raw)
v3 changes:
- rebase to latest master.
- enable crypto driver only for SMM + DXE.
- CI passes now \o/
v2 changes:
- turn on crypto driver support by default.
- left the config option in for now as fallback option.
When all goes as planned remove it one or two releases
later.
- fix various build problems.
Gerd Hoffmann (11):
CryptoPkg/Driver: move PCD configs to include files
CryptoPkg/Driver: add CryptoServicePcd.hash_only.dsc.inc
CryptoPkg/Driver: add TPM hashes to
CryptoServicePcd.min_dxe_smm.dsc.inc
BaseTools: GCC5: enable lto for noopt builds on IA32 and X64
OvmfPkg: add OvmfCrypto*.inc
OvmfPkg: OvmfPkgX64: use crypto includes
OvmfPkg: OvmfPkgIa32X64: use crypto includes
OvmfPkg: OvmfPkgIa32: use crypto includes
OvmfPkg: Microvm: use crypto includes
OvmfPkg: IntelTdx: use crypto includes
OvmfPkg: AmdSev: use crypto includes
.../Include/Dsc/CryptoServicePcd.all.dsc.inc | 29 +++++++
.../Dsc/CryptoServicePcd.hash_only.dsc.inc | 8 ++
.../Dsc/CryptoServicePcd.min_dxe_smm.dsc.inc | 37 +++++++++
.../Dsc/CryptoServicePcd.min_pei.dsc.inc | 20 +++++
.../Dsc/OvmfCryptoComponentsDxe.dsc.inc | 23 ++++++
.../Dsc/OvmfCryptoComponentsPei.dsc.inc | 19 +++++
.../Dsc/OvmfCryptoComponentsSmm.dsc.inc | 18 +++++
OvmfPkg/Include/Dsc/OvmfCryptoDefines.dsc.inc | 7 ++
OvmfPkg/Include/Dsc/OvmfCryptoLibs.dsc.inc | 72 +++++++++++++++++
CryptoPkg/CryptoPkg.dsc | 78 +------------------
OvmfPkg/AmdSev/AmdSevX64.dsc | 12 ++-
OvmfPkg/IntelTdx/IntelTdxX64.dsc | 15 ++--
OvmfPkg/Microvm/MicrovmX64.dsc | 24 +++---
OvmfPkg/OvmfPkgIa32.dsc | 22 +++---
OvmfPkg/OvmfPkgIa32X64.dsc | 22 +++---
OvmfPkg/OvmfPkgX64.dsc | 22 +++---
OvmfPkg/AmdSev/AmdSevX64.fdf | 6 ++
OvmfPkg/IntelTdx/IntelTdxX64.fdf | 5 ++
OvmfPkg/Microvm/MicrovmX64.fdf | 7 ++
OvmfPkg/OvmfPkgIa32.fdf | 6 ++
OvmfPkg/OvmfPkgIa32X64.fdf | 6 ++
OvmfPkg/OvmfPkgX64.fdf | 6 ++
BaseTools/Conf/tools_def.template | 8 +-
OvmfPkg/Include/Fdf/OvmfCryptoDxeSmm.fdf.inc | 12 +++
OvmfPkg/Include/Fdf/OvmfCryptoPei.fdf.inc | 7 ++
25 files changed, 350 insertions(+), 141 deletions(-)
create mode 100644 CryptoPkg/Include/Dsc/CryptoServicePcd.all.dsc.inc
create mode 100644 CryptoPkg/Include/Dsc/CryptoServicePcd.hash_only.dsc.inc
create mode 100644 CryptoPkg/Include/Dsc/CryptoServicePcd.min_dxe_smm.dsc.inc
create mode 100644 CryptoPkg/Include/Dsc/CryptoServicePcd.min_pei.dsc.inc
create mode 100644 OvmfPkg/Include/Dsc/OvmfCryptoComponentsDxe.dsc.inc
create mode 100644 OvmfPkg/Include/Dsc/OvmfCryptoComponentsPei.dsc.inc
create mode 100644 OvmfPkg/Include/Dsc/OvmfCryptoComponentsSmm.dsc.inc
create mode 100644 OvmfPkg/Include/Dsc/OvmfCryptoDefines.dsc.inc
create mode 100644 OvmfPkg/Include/Dsc/OvmfCryptoLibs.dsc.inc
create mode 100644 OvmfPkg/Include/Fdf/OvmfCryptoDxeSmm.fdf.inc
create mode 100644 OvmfPkg/Include/Fdf/OvmfCryptoPei.fdf.inc
--
2.39.2
next reply other threads:[~2023-03-09 11:09 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-09 11:09 Gerd Hoffmann [this message]
2023-03-09 11:09 ` [PATCH v3 01/11] CryptoPkg/Driver: move PCD configs to include files Gerd Hoffmann
2023-03-09 11:09 ` [PATCH v3 02/11] CryptoPkg/Driver: add CryptoServicePcd.hash_only.dsc.inc Gerd Hoffmann
2023-03-09 11:09 ` [PATCH v3 03/11] CryptoPkg/Driver: add TPM hashes to CryptoServicePcd.min_dxe_smm.dsc.inc Gerd Hoffmann
2023-03-09 11:09 ` [PATCH v3 04/11] BaseTools: GCC5: enable lto for noopt builds on IA32 and X64 Gerd Hoffmann
2023-03-09 11:09 ` [PATCH v3 05/11] OvmfPkg: add OvmfCrypto*.inc Gerd Hoffmann
2023-03-09 11:09 ` [PATCH v3 06/11] OvmfPkg: OvmfPkgX64: use crypto includes Gerd Hoffmann
2023-03-09 11:09 ` [PATCH v3 07/11] OvmfPkg: OvmfPkgIa32X64: " Gerd Hoffmann
2023-03-09 11:09 ` [PATCH v3 08/11] OvmfPkg: OvmfPkgIa32: " Gerd Hoffmann
2023-03-09 11:09 ` [PATCH v3 09/11] OvmfPkg: Microvm: " Gerd Hoffmann
2023-03-09 11:09 ` [PATCH v3 10/11] OvmfPkg: IntelTdx: " Gerd Hoffmann
2023-03-09 11:09 ` [PATCH v3 11/11] OvmfPkg: AmdSev: " Gerd Hoffmann
2023-03-20 9:54 ` [PATCH v3 00/11] OvmfPkg: add Crypto Driver support 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=20230309110934.853991-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