diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2022-09-30 15:32:20 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2022-10-12 11:02:44 +0200 |
commit | 23b45173faf37b13d2f6ae77353b7b27e7abf8e1 (patch) | |
tree | 4d38078fe441d1b3bde52a55d0b9f49e2bf3b06e /docs/interop | |
parent | 2fba4e9c4938406fa676bfd3566e416e095cf93a (diff) | |
download | qemu-23b45173faf37b13d2f6ae77353b7b27e7abf8e1.zip qemu-23b45173faf37b13d2f6ae77353b7b27e7abf8e1.tar.gz qemu-23b45173faf37b13d2f6ae77353b7b27e7abf8e1.tar.bz2 |
docs: add firmware feature flags
Add new firmware feature flags for the recently added confidential
computing operating modes by amd and intel.
While being at it also fix the path to the amd sev documentation.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Kashyap Chamarthy <kchamart@redhat.com>
Message-Id: <20220930133220.1771336-1-kraxel@redhat.com>
Diffstat (limited to 'docs/interop')
-rw-r--r-- | docs/interop/firmware.json | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/docs/interop/firmware.json b/docs/interop/firmware.json index 4e049b1..56814f0 100644 --- a/docs/interop/firmware.json +++ b/docs/interop/firmware.json @@ -113,13 +113,22 @@ # Virtualization, as specified in the AMD64 Architecture # Programmer's Manual. QEMU command line options related to # this feature are documented in -# "docs/amd-memory-encryption.txt". +# "docs/system/i386/amd-memory-encryption.rst". # # @amd-sev-es: The firmware supports running under AMD Secure Encrypted # Virtualization - Encrypted State, as specified in the AMD64 # Architecture Programmer's Manual. QEMU command line options # related to this feature are documented in -# "docs/amd-memory-encryption.txt". +# "docs/system/i386/amd-memory-encryption.rst". +# +# @amd-sev-snp: The firmware supports running under AMD Secure Encrypted +# Virtualization - Secure Nested Paging, as specified in the +# AMD64 Architecture Programmer's Manual. QEMU command line +# options related to this feature are documented in +# "docs/system/i386/amd-memory-encryption.rst". +# +# @intel-tdx: The firmware supports running under Intel Trust Domain +# Extensions (TDX). # # @enrolled-keys: The variable store (NVRAM) template associated with # the firmware binary has the UEFI Secure Boot @@ -185,9 +194,11 @@ # Since: 3.0 ## { 'enum' : 'FirmwareFeature', - 'data' : [ 'acpi-s3', 'acpi-s4', 'amd-sev', 'amd-sev-es', 'enrolled-keys', - 'requires-smm', 'secure-boot', 'verbose-dynamic', - 'verbose-static' ] } + 'data' : [ 'acpi-s3', 'acpi-s4', + 'amd-sev', 'amd-sev-es', 'amd-sev-snp', + 'intel-tdx', + 'enrolled-keys', 'requires-smm', 'secure-boot', + 'verbose-dynamic', 'verbose-static' ] } ## # @FirmwareFlashFile: |