From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/22] KVM patches for QEMU 2.12 soft freeze
Date: Tue, 13 Mar 2018 13:56:16 +0100 [thread overview]
Message-ID: <1520945798-50640-1-git-send-email-pbonzini@redhat.com> (raw)
The following changes since commit fb5fff15881ba7a002924b967eb211c002897983:
Merge remote-tracking branch 'remotes/kraxel/tags/vga-20180312-pull-request' into staging (2018-03-12 18:35:37 +0000)
are available in the git repository at:
git://github.com/bonzini/qemu.git tags/for-upstream-sev
for you to fetch changes up to 297dabdd6b39ce1e2ed2e69b4b2afc024e07ad09:
sev/i386: add sev_get_capabilities() (2018-03-13 12:04:04 +0100)
----------------------------------------------------------------
* Migrate MSR_SMI_COUNT (Liran)
* Update kernel headers (Gerd, myself)
* SEV support (Brijesh)
I have not tested non-x86 compilation, but I reordered the SEV patches
so that all non-x86-specific changes go first to catch any possible
issues (which weren't there anyway :)).
----------------------------------------------------------------
Brijesh Singh (20):
machine: add memory-encryption option
docs: add AMD Secure Encrypted Virtualization (SEV)
kvm: add memory encryption context
kvm: introduce memory encryption APIs
target/i386: add Secure Encrypted Virtualization (SEV) object
sev/i386: qmp: add query-sev command
include: add psp-sev.h header file
sev/i386: add command to initialize the memory encryption context
sev/i386: register the guest memory range which may contain encrypted data
sev/i386: add command to create launch memory encryption context
sev/i386: add command to encrypt guest memory region
target/i386: encrypt bios rom
sev/i386: add support to LAUNCH_MEASURE command
sev/i386: finalize the SEV guest launch flow
sev/i386: add migration blocker
cpu/i386: populate CPUID 0x8000_001F when SEV is active
sev/i386: hmp: add 'info sev' command
sev/i386: qmp: add query-sev-launch-measure command
sev/i386: qmp: add query-sev-capabilities command
sev/i386: add sev_get_capabilities()
Liran Alon (1):
KVM: x86: Add support for save/load MSR_SMI_COUNT
Paolo Bonzini (1):
update Linux headers to 4.16-rc5
accel/Makefile.objs | 2 +-
accel/kvm/Makefile.objs | 3 +-
accel/kvm/kvm-all.c | 39 +
accel/kvm/sev-stub.c | 26 +
accel/stubs/kvm-stub.c | 10 +
default-configs/i386-softmmu.mak | 1 +
default-configs/x86_64-softmmu.mak | 1 +
docs/amd-memory-encryption.txt | 109 +++
hmp-commands-info.hx | 16 +
hmp.h | 1 +
hw/core/machine.c | 22 +
hw/i386/pc_sysfw.c | 13 +
include/hw/boards.h | 1 +
include/standard-headers/linux/input-event-codes.h | 1 +
include/standard-headers/linux/input.h | 11 +
include/standard-headers/linux/pci_regs.h | 30 +-
include/standard-headers/linux/virtio_net.h | 13 +
include/standard-headers/linux/virtio_ring.h | 2 +-
include/standard-headers/rdma/vmw_pvrdma-abi.h | 13 +-
include/sysemu/kvm.h | 17 +
include/sysemu/sev.h | 21 +
linux-headers/asm-powerpc/kvm.h | 2 +
linux-headers/asm-powerpc/unistd.h | 3 +
linux-headers/asm-s390/unistd.h | 401 +---------
linux-headers/asm-s390/unistd_32.h | 364 +++++++++
linux-headers/asm-s390/unistd_64.h | 331 +++++++++
linux-headers/asm-x86/kvm_para.h | 5 +
linux-headers/linux/kvm.h | 92 +++
linux-headers/linux/psci.h | 3 +
linux-headers/linux/psp-sev.h | 142 ++++
linux-headers/linux/vfio.h | 72 ++
monitor.c | 21 +
qapi/misc.json | 148 ++++
qemu-options.hx | 49 +-
scripts/update-linux-headers.sh | 5 +-
target/i386/Makefile.objs | 2 +
target/i386/cpu.c | 14 +
target/i386/cpu.h | 3 +
target/i386/kvm.c | 13 +
target/i386/machine.c | 20 +
target/i386/monitor.c | 66 ++
target/i386/sev-stub.c | 51 ++
target/i386/sev.c | 811 +++++++++++++++++++++
target/i386/sev_i386.h | 88 +++
target/i386/trace-events | 10 +
tests/qmp-test.c | 5 +
46 files changed, 2653 insertions(+), 420 deletions(-)
create mode 100644 accel/kvm/sev-stub.c
create mode 100644 docs/amd-memory-encryption.txt
create mode 100644 include/sysemu/sev.h
create mode 100644 linux-headers/asm-s390/unistd_32.h
create mode 100644 linux-headers/asm-s390/unistd_64.h
create mode 100644 linux-headers/linux/psp-sev.h
create mode 100644 target/i386/sev-stub.c
create mode 100644 target/i386/sev.c
create mode 100644 target/i386/sev_i386.h
--
1.8.3.1
next reply other threads:[~2018-03-13 12:57 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-13 12:56 Paolo Bonzini [this message]
2018-03-13 12:56 ` [Qemu-devel] [PULL 01/22] update Linux headers to 4.16-rc5 Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 02/22] KVM: x86: Add support for save/load MSR_SMI_COUNT Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 03/22] machine: add memory-encryption option Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 04/22] docs: add AMD Secure Encrypted Virtualization (SEV) Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 05/22] kvm: add memory encryption context Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 06/22] kvm: introduce memory encryption APIs Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 07/22] target/i386: add Secure Encrypted Virtualization (SEV) object Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 08/22] sev/i386: qmp: add query-sev command Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 09/22] include: add psp-sev.h header file Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 10/22] sev/i386: add command to initialize the memory encryption context Paolo Bonzini
2018-04-27 13:01 ` Peter Maydell
2018-03-13 12:56 ` [Qemu-devel] [PULL 11/22] sev/i386: register the guest memory range which may contain encrypted data Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 12/22] sev/i386: add command to create launch memory encryption context Paolo Bonzini
2018-04-27 13:04 ` Peter Maydell
2018-03-13 12:56 ` [Qemu-devel] [PULL 13/22] sev/i386: add command to encrypt guest memory region Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 14/22] target/i386: encrypt bios rom Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 15/22] sev/i386: add support to LAUNCH_MEASURE command Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 16/22] sev/i386: finalize the SEV guest launch flow Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 17/22] sev/i386: add migration blocker Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 18/22] cpu/i386: populate CPUID 0x8000_001F when SEV is active Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 19/22] sev/i386: hmp: add 'info sev' command Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 20/22] sev/i386: qmp: add query-sev-launch-measure command Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 21/22] sev/i386: qmp: add query-sev-capabilities command Paolo Bonzini
2018-03-13 12:56 ` [Qemu-devel] [PULL 22/22] sev/i386: add sev_get_capabilities() Paolo Bonzini
2018-04-27 12:53 ` Peter Maydell
2018-03-13 16:29 ` [Qemu-devel] [PULL 00/22] KVM patches for QEMU 2.12 soft freeze Alex Williamson
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-all 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=1520945798-50640-1-git-send-email-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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;
as well as URLs for NNTP newsgroup(s).