From: Baolong Duan <blduan@linux.alibaba.com>
To: qemu-devel@nongnu.org
Cc: qemu-riscv@nongnu.org, alistair23@gmail.com,
dbarboza@ventanamicro.com, cxx194832@alibaba-inc.com,
zengxiangyi.zxy@alibaba-inc.com,
Baolong Duan <blduan@linux.alibaba.com>
Subject: [RFC PATCH v1 00/17] target/riscv: Add KVM CoVE confidential VM support
Date: Fri, 31 Jul 2026 11:49:54 +0800 [thread overview]
Message-ID: <20260731035011.4178103-1-blduan@linux.alibaba.com> (raw)
This series adds RISC-V CoVE (Confidential VM Extension) support to the
virt machine when running with KVM acceleration.
CoVE is the RISC-V equivalent of AMD SEV / Intel TDX, defined by the
RISC-V AP-TEE specification [1]. A CoVE guest is a TEE VM (TVM) whose
memory and vCPU state are owned by the TEE Security Manager (TSM),
making them inaccessible to the host.
The series adds a "cove-vm" machine property to the virt board and adapts
the boot flow, interrupt routing, memory registration and device model to
the constraints of a confidential guest:
- kernel, initrd and device tree are measured before the guest starts
- interrupts are MSI-only (IMSIC mandatory, APLIC emulated by QEMU)
- virtio uses modern PCI transport with VIRTIO_F_ACCESS_PLATFORM
- vhost is disabled (host kernel has no access to guest memory)
- vCPU threads are pinned (TSM binds vCPUs to harts)
The KVM interface used here (KVM_VM_TYPE_RISCV_COVE and
KVM_RISCV_COVE_MEASURE_REGION) is not yet part of an upstream Linux
release. The definitions are kept locally and will be replaced by a
linux-headers update once the kernel side has been merged.
Patches 15 and 17 contain known workarounds and explicitly ask for design
guidance:
- Patch 15 pins vCPU threads and adds a yield after KVM_RUN to avoid
host RCU stalls. Thread placement should be left to the user or
management layer.
- Patch 17 converts system_reset into a shutdown because a TVM cannot be
recreated. The proper approach may be to implement
ConfidentialGuestSupport and use the existing can_rebuild_state()
machinery.
Tested with QEMU TCG emulating a CoVE-capable Xuantie C930 platform.
[1] https://github.com/riscv-non-isa/riscv-ap-tee
Baolong Duan (17):
docs/system/riscv/virt: document the cove-vm machine option
hw/riscv/virt: add the cove-vm machine property
target/riscv/kvm: create and measure a CoVE TEE VM
accel/kvm: add kvm_gpa_to_userspace_addr()
hw/riscv/boot: load and measure the images of a CoVE guest
hw/riscv/virt: measure the device tree of a CoVE guest
hw/riscv: adapt the device tree of a CoVE guest
hw/riscv/virt: use MSIs only for a CoVE guest
hw/intc/riscv_aplic: emulate the APLIC for a CoVE guest
target/riscv/kvm: skip unsupported KVM requests for a CoVE guest
hw/virtio: force modern virtio for a CoVE guest
hw/net/virtio-net: do not use vhost for a CoVE guest
accel/kvm: only register the DRAM slot of a CoVE guest
accel/kvm: skip MSI route updates for a CoVE guest
accel/kvm: pin the vCPU threads of a CoVE guest
accel/kvm: terminate on a system event of a CoVE guest
hw/core/machine-qmp-cmds: shut down a CoVE guest on reset
MAINTAINERS | 6 ++
accel/kvm/kvm-accel-ops.c | 16 +++++
accel/kvm/kvm-all.c | 60 +++++++++++++++++
docs/system/riscv/virt.rst | 39 +++++++++++
hw/core/machine-qmp-cmds.c | 10 +++
hw/core/machine.c | 18 +++++
hw/intc/riscv_aplic.c | 9 +++
hw/net/virtio-net.c | 9 +++
hw/riscv/boot.c | 91 +++++++++++++++++++++++++
hw/riscv/fdt-common.c | 4 +-
hw/riscv/trace-events | 4 ++
hw/riscv/virt.c | 125 +++++++++++++++++++++++++++++------
hw/virtio/virtio-bus.c | 12 ++++
hw/virtio/virtio-pci.c | 9 ++-
include/hw/riscv/cove.h | 24 +++++++
include/hw/riscv/virt.h | 1 +
include/system/kvm.h | 18 +++++
target/riscv/kvm/kvm-cpu.c | 67 ++++++++++++++++++-
target/riscv/kvm/kvm_riscv.h | 10 +++
19 files changed, 508 insertions(+), 24 deletions(-)
create mode 100644 include/hw/riscv/cove.h
--
2.34.1
next reply other threads:[~2026-07-31 5:58 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-31 3:49 Baolong Duan [this message]
2026-07-31 3:49 ` [RFC PATCH v1 01/17] docs/system/riscv/virt: document the cove-vm machine option Baolong Duan
2026-07-31 3:49 ` [RFC PATCH v1 02/17] hw/riscv/virt: add the cove-vm machine property Baolong Duan
2026-07-31 3:49 ` [RFC PATCH v1 03/17] target/riscv/kvm: create and measure a CoVE TEE VM Baolong Duan
2026-07-31 3:49 ` [RFC PATCH v1 04/17] accel/kvm: add kvm_gpa_to_userspace_addr() Baolong Duan
2026-07-31 3:49 ` [RFC PATCH v1 05/17] hw/riscv/boot: load and measure the images of a CoVE guest Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 06/17] hw/riscv/virt: measure the device tree " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 07/17] hw/riscv: adapt " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 08/17] hw/riscv/virt: use MSIs only for " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 09/17] hw/intc/riscv_aplic: emulate the APLIC " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 10/17] target/riscv/kvm: skip unsupported KVM requests " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 11/17] hw/virtio: force modern virtio " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 12/17] hw/net/virtio-net: do not use vhost " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 13/17] accel/kvm: only register the DRAM slot of " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 14/17] accel/kvm: skip MSI route updates for " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 15/17] accel/kvm: pin the vCPU threads of " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 16/17] accel/kvm: terminate on a system event " Baolong Duan
2026-07-31 3:50 ` [RFC PATCH v1 17/17] hw/core/machine-qmp-cmds: shut down a CoVE guest on reset Baolong Duan
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=20260731035011.4178103-1-blduan@linux.alibaba.com \
--to=blduan@linux.alibaba.com \
--cc=alistair23@gmail.com \
--cc=cxx194832@alibaba-inc.com \
--cc=dbarboza@ventanamicro.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=zengxiangyi.zxy@alibaba-inc.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.