Add a Gunyah protected guest driver. A Gunyah protected guest needs to be hypervisor-aware to relinquish pages to the host/owner for virtio-balloon. In the Android Virtualization Framework model, the host/owner VM, not the hypervisor, owns the virtio devices. The hypervisor is unaware about the virtio device and thus the guest needs to inform the hypervisor that the host can access guest-private memory. Bug: 395833312 Change-Id: I082dff22d12453005728d229b87ef11a8dce9c6b Signed-off-by: Elliot Berman <elliot.berman@oss.qualcomm.com> Signed-off-by: Prakruthi Deepak Heragu <quic_pheragu@quicinc.com>
11 lines
334 B
Makefile
11 lines
334 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Confidential computing related collateral
|
|
#
|
|
obj-$(CONFIG_TSM_REPORTS) += tsm.o
|
|
obj-$(CONFIG_EFI_SECRET) += efi_secret/
|
|
obj-$(CONFIG_ARM_PKVM_GUEST) += pkvm-guest/
|
|
obj-$(CONFIG_GUNYAH_GUEST) += gunyah-guest/
|
|
obj-$(CONFIG_SEV_GUEST) += sev-guest/
|
|
obj-$(CONFIG_INTEL_TDX_GUEST) += tdx-guest/
|