Re: Proposal: Supervisor Timer CSR and Virtual Supervisor Timer CSR
Greg Favor
Siqi, Thanks. That narrows down where we are differing. If the hypervisor has set hideleg bit 6 (so that VS-level timer interrupts can be received by VS-mode while V=1), then any new pending VS-level timer interrupt won't be taken until the hypervisor returns back into the VM. But at that moment the hypervisor is busy servicing whatever caused the exit from the VM and into the hypervisor. Even if
the hypervisor
got interrupted by the pending VS-level interrupt, it would defer doing anything about it until it reached a point where it could consider returning to this VM. Then, at junctures like that, the hypervisor may decide to context switch to another VM instead of returning into this one. But the hypervisor code that considers whether to switch away to another VM or not would be the natural place for it to check (via hip.VSTIP) whether the current VM has a pending VS-level timer interrupt and decide whether it should not switch to another VM. This check should not be appearing in many places in hypervisor code. I believe it would be in the one or few pieces of code that handle deciding whether to return to the current VM or to context switch to a different VM (i.e this decision-making process should not be spread across many places in the code). Conversely, if you had some form of VGTI, then when the hypervisor receives the VS-level timer interrupt, it would generally have to defer doing something about it until it reaches a suitable juncture where it can consider whether to return to this (or
another) VM. At which point the code at that juncture could simply poll hip.VSTIP instead of having to remember that a VGTI was received earlier. I'm guessing this may not get us to a point of agreement yet :), but hopefully we're narrowing in. Greg P.S. If necessary, we can put this to the people doing two of the RISC-V hypervisor ports. Hi Greg, |
|