Patches applied successfully (
tree,
apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20260218015151.4052-1-graf@amazon.com
Maintainers: Paolo Bonzini <pbonzini@redhat.com>, Alexander Graf <graf@amazon.com>, Pierrick Bouvier <pierrick.bouvier@linaro.org>, Dorjoy Chowdhury <dorjoychy111@gmail.com>, "Michael S. Tsirkin" <mst@redhat.com>, Cornelia Huck <cohuck@redhat.com>, "Marc-André Lureau" <marcandre.lureau@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, "Alex Bennée" <alex.bennee@linaro.org>, Thomas Huth <thuth@redhat.com>, Peter Maydell <peter.maydell@linaro.org>
MAINTAINERS | 12 +
accel/Kconfig | 3 +
accel/meson.build | 1 +
accel/nitro/meson.build | 3 +
accel/nitro/nitro-accel.c | 334 ++++++++++++++++
accel/nitro/trace-events | 6 +
accel/nitro/trace.h | 2 +
accel/stubs/meson.build | 1 +
accel/stubs/nitro-stub.c | 11 +
docs/system/confidential-guest-support.rst | 1 +
docs/system/index.rst | 1 +
docs/system/nitro.rst | 114 ++++++
hw/Kconfig | 1 +
hw/core/eif.c | 38 --
hw/core/eif.h | 41 ++
hw/meson.build | 1 +
hw/nitro/Kconfig | 14 +
hw/nitro/heartbeat.c | 118 ++++++
hw/nitro/machine.c | 297 +++++++++++++++
hw/nitro/meson.build | 3 +
hw/nitro/serial-vsock.c | 155 ++++++++
hw/nitro/trace-events | 8 +
hw/nitro/trace.h | 1 +
include/hw/nitro/heartbeat.h | 25 ++
include/hw/nitro/machine.h | 20 +
include/hw/nitro/serial-vsock.h | 26 ++
.../standard-headers/linux/nitro_enclaves.h | 359 ++++++++++++++++++
include/system/hw_accel.h | 1 +
include/system/nitro-accel.h | 25 ++
meson.build | 12 +
meson_options.txt | 2 +
qemu-options.hx | 8 +-
scripts/meson-buildoptions.sh | 3 +
scripts/update-linux-headers.sh | 1 +
target/arm/cpu64.c | 8 +
35 files changed, 1614 insertions(+), 42 deletions(-)
create mode 100644 accel/nitro/meson.build
create mode 100644 accel/nitro/nitro-accel.c
create mode 100644 accel/nitro/trace-events
create mode 100644 accel/nitro/trace.h
create mode 100644 accel/stubs/nitro-stub.c
create mode 100644 docs/system/nitro.rst
create mode 100644 hw/nitro/Kconfig
create mode 100644 hw/nitro/heartbeat.c
create mode 100644 hw/nitro/machine.c
create mode 100644 hw/nitro/meson.build
create mode 100644 hw/nitro/serial-vsock.c
create mode 100644 hw/nitro/trace-events
create mode 100644 hw/nitro/trace.h
create mode 100644 include/hw/nitro/heartbeat.h
create mode 100644 include/hw/nitro/machine.h
create mode 100644 include/hw/nitro/serial-vsock.h
create mode 100644 include/standard-headers/linux/nitro_enclaves.h
create mode 100644 include/system/nitro-accel.h