mirror of
https://github.com/qemu/qemu.git
synced 2026-04-05 21:50:33 +00:00
Nitro Enclaves are a confidential compute technology which allows a parent instance to carve out resources from itself and spawn a confidential sibling VM next to itself. Similar to other confidential compute solutions, this sibling is controlled by an underlying vmm, but still has a higher level vmm (QEMU) to implement some of its I/O functionality and lifecycle. Add an accelerator to drive this interface. In combination with follow-on patches to enhance the Nitro Enclaves machine model, this will allow users to run a Nitro Enclave using QEMU. Signed-off-by: Alexander Graf <graf@amazon.com> Link: https://lore.kernel.org/r/20260225220807.33092-5-graf@amazon.com Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
20 lines
421 B
Meson
20 lines
421 B
Meson
common_ss.add(files('accel-common.c'))
|
|
specific_ss.add(files('accel-target.c'))
|
|
system_ss.add(files('accel-system.c', 'accel-blocker.c', 'accel-qmp.c', 'accel-irq.c'))
|
|
user_ss.add(files('accel-user.c'))
|
|
|
|
subdir('tcg')
|
|
if have_system
|
|
subdir('hvf')
|
|
subdir('whpx')
|
|
subdir('qtest')
|
|
subdir('kvm')
|
|
subdir('xen')
|
|
subdir('stubs')
|
|
subdir('mshv')
|
|
subdir('nitro')
|
|
endif
|
|
|
|
# qtest
|
|
system_ss.add(files('dummy-cpus.c'))
|