Re: [PATCH v12 02/24] docs: geniezone: Introduce GenieZone hypervisor
From: Liju-clr Chen (陳麗如) <hidden>
Date: 2024-10-22 02:21:33
Also in:
linux-arm-kernel, linux-devicetree, linux-doc, linux-mediatek, lkml, netdev
On Tue, 2024-07-30 at 07:13 -0700, Randy Dunlap wrote:
External email : Please do not click links or open attachments until you have verified the sender or the content. Hi-- On 7/30/24 1:24 AM, Liju-clr Chen wrote:quoted
From: Yingshiuan Pan <redacted> GenieZone is MediaTek proprietary hypervisor solution, and it isrunningquoted
in EL2 stand alone as a type-I hypervisor. It is a pure EL2 implementation which implies it does not rely any specific host VM,andquoted
this behavior improves GenieZone's security as it limits itsinterface.quoted
Signed-off-by: Yingshiuan Pan <redacted> Co-developed-by: Yi-De Wu <redacted> Signed-off-by: Yi-De Wu <redacted> Signed-off-by: Liju Chen <redacted> --- Documentation/virt/geniezone/introduction.rst | 87+++++++++++++++++++quoted
Documentation/virt/index.rst | 1 + MAINTAINERS | 6 ++ 3 files changed, 94 insertions(+) create mode 100644 Documentation/virt/geniezone/introduction.rstdiff --git a/Documentation/virt/geniezone/introduction.rstb/Documentation/virt/geniezone/introduction.rstquoted
new file mode 100644 index 000000000000..f280476228b3--- /dev/null +++ b/Documentation/virt/geniezone/introduction.rst@@ -0,0 +1,87 @@ +.. SPDX-License-Identifier: GPL-2.0 + +====================== +GenieZone Introduction +====================== + +Overview +======== +GenieZone hypervisor (gzvm) is a type-1 hypervisor that supportsvarious virtualquoted
+machine types and provides security features such as TEE-likescenarios andquoted
+secure boot. It can create guest VMs for security use cases andhasquoted
+virtualization capabilities for both platform and interrupt.Although thequoted
+hypervisor can be booted independently, it requires the assistanceof GenieZonequoted
+hypervisor kernel driver(also named gzvm) to leverage the abilityof Linux driver (alsoquoted
+kernel for vCPU scheduling, memory management, inter-VMcommunication and virtioquoted
+backend support. + +Supported Architecture +====================== +GenieZone now only supports MediaTek ARM64 SoC. + +Features +======== + +- vCPU Management + + VM manager aims to provide vCPUs on the basis of time sharing onphysicalquoted
+ CPUs. It requires Linux kernel in host VM for vCPU schedulingand VM powerquoted
+ management. + +- Memory Management + + Direct use of physical memory from VMs is forbidden and designedto bequoted
+ dictated to the privilege models managed by GenieZone hypervisorfor securityquoted
+ reason. With the help of gzvm module, the hypervisor would beable to manipulate Is this change acceptable?: With the help of the gzvm module, the hypervisor is able to manipulate
Hi Randy, Sure, thank you for your comment. Will update in next version.
quoted
+ memory as objects. + +- Virtual Platform + + We manage to emulate a virtual mobile platform for guest OSrunning on guest s/We manage to emulate/The gzvm hypervisor emulates/ or something like that...quoted
+ VM. The platform supports various architecture-defined devices,such asquoted
+ virtual arch timer, GIC, MMIO, PSCI, and exceptionwatching...etc.quoted
+ +- Inter-VM Communication + + Communication among guest VMs was provided mainly on RPC. Morecommunication is providedquoted
+ mechanisms were to be provided in the future based on VirtIO-vsock. are to be provided or will be providedquoted
+ +- Device Virtualization + + The solution is provided using the well-known VirtIO. The gzvmmodule would The gzvm modulequoted
+ redirect MMIO traps back to VMM where the virtual devices aremostly emulated. redirectsquoted
+ Ioeventfd is implemented using eventfd for signaling host VMthat some IOquoted
+ events in guest VMs need to be processed. + +- Interrupt virtualization + + All Interrupts during some guest VMs running would be handled byGenieZone interrupts are handledquoted
+ hypervisor with the help of gzvm module, both virtual andphysical ones.quoted
+ In case there's no guest VM running out there, physicalinterrupts would be no guest VM running, physical interrupts arequoted
+ handled by host VM directly for performance reason. Irqfd isalso implementedquoted
+ using eventfd for accepting vIRQ requests in gzvm module. + +Platform architecture component +=============================== + +- vm + + The vm component is responsible for setting up the capabilityand memoryquoted
+ management for the protected VMs. The capability is mainly aboutthe lifecyclequoted
+ control and boot context initialization. And the memorymanagement is highlyquoted
+ integrated with ARM 2-stage translation tables to convert VA toIPA to PAquoted
+ under proper security measures required by protected VMs. + +- vcpu + + The vcpu component is the core of virtualizing aarch64 physicalCPU runnable, The ending "runnable" doesn't seem to fit here - or I just can't parse that.quoted
+ and it controls the vCPU lifecycle including creating, runningand destroying.quoted
+ With self-defined exit handler, the vm component would be ableto act the vm component is able to actquoted
+ accordingly before terminated.before termination. or before being terminated. or before exit.quoted
+ +- vgic + + The vgic component exposes control interfaces to Linux kernelvia irqchip, andquoted
+ we intend to support all SPI, PPI, and SGI. When it comes tovirtualquoted
+ interrupts, the GenieZone hypervisor would write to listregisters and trigger hypervisor writes to list registers and triggersquoted
+ vIRQ injection in guest VMs via GIC.HTH. -- ~Randy
BR Liju