GenieZone is MediaTek hypervisor solution, and it is running in EL2 stand alone as a type-I hypervisor. This patch exports a set of ioctl interfaces for userspace VMM (e.g., crosvm) to operate guest VMs lifecycle (creation and destroy) on GenieZone. Change-Id: I4fbc79bab120fe5ad90e2832f70562e97bbf40c0 Signed-off-by: Yingshiuan Pan <yingshiuan.pan@mediatek.com> Signed-off-by: Jerry Wang <ze-yu.wang@mediatek.com> Signed-off-by: Liju Chen <liju-clr.chen@mediatek.com> Signed-off-by: Yi-De Wu <yi-de.wu@mediatek.com> Bug: 280363874 Link: https://lore.kernel.org/lkml/20230727080005.14474-4-yi-de.wu@mediatek.com/
12 lines
298 B
Makefile
12 lines
298 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-y += kernel/ mm/ net/
|
|
obj-$(CONFIG_KVM) += kvm/
|
|
obj-$(CONFIG_XEN) += xen/
|
|
obj-$(subst m,y,$(CONFIG_HYPERV)) += hyperv/
|
|
obj-$(CONFIG_GUNYAH) += gunyah/
|
|
obj-$(CONFIG_CRYPTO) += crypto/
|
|
obj-$(CONFIG_MTK_GZVM) += geniezone/
|
|
|
|
# for cleaning
|
|
subdir- += boot
|