mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-05 13:42:07 +00:00
The virtual pm port of RTVM is intercepted by HV. But the HV needs to inform the DM as well. So we will forward the virtual S5 request to DM too The handler in HV just set the pm state flag (VM_POWERING_OFF) which indicate that the RTVM is powering off by itself. Meanwhile, there are data resources in VHM and DM should be released once we handle the PM of RTVM in HV. So, return to DM to go through the entire VM destroy cycles to release the resources. During the cycles, the DM will try to pause vm through hypercall. In the hypercall handler in HV, we will check the pm state flag. If it is set, pause all the vCPUs of the vm. Otherwise, reject the request. In this way, we can make sure that RTVM can only trigger its s5 by itself. All other S5 request from external will be rejected. Here is sequence chart of RTVM s5. poweroff +-----------+ +----------+ +-----------+ +----------+ | vBSP | | vAPs | | HV | | DM | +-----+-----+ +----------+ +-----+-----+ +-----+----+ | | | | | Stop all other cpus | | | +----------------------------+ | | | | |Disable LAPIC | | | +<-+ | | | | | | | +--+ | | | | |HLT in | | | All other cpus stopped | |non-root mode | | +----------------------------+ | | | Call ACPI method to enter s5 | | +-------------------------+---------------------> | | | | Set s5 flag | | | | <---------------------+ | | | APs paused | Re-inject IOREQ TO DM | | +-------------------> +-------------------> + | | | Pause VM | | | Check S5 flag: | <-------------------+ | | - If set, pause vm | VM paused | | | - If no, reject | +-----------------> +--+ | | | Destroy VM | |Deinit works | | | <--------------------<-+ | | | VM destroyed | | | | +-----------------> | + + + + Tracked-On: #2865 Signed-off-by: Kaige Fu <kaige.fu@intel.com> |
||
---|---|---|
.. | ||
assign.h | ||
ept.h | ||
guest_memory.h | ||
guest_pm.h | ||
instr_emul.h | ||
io_emul.h | ||
trusty.h | ||
ucode.h | ||
vcpu.h | ||
vcpuid.h | ||
virtual_cr.h | ||
vlapic.h | ||
vm.h | ||
vmcs.h | ||
vmexit.h | ||
vmtrr.h |