Re: [PATCH v2 0/3] KVM: arm64: Fixes for timers and pKVM
Mostafa Saleh <[email protected]>
| Newsgroups | dev.linux.lists.kvmarm,org.infradead.lists.linux-arm-kernel,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
On Tue, Aug 11, 2026 at 02:18:15PM +0100, Marc Zyngier wrote: > On Tue, 11 Aug 2026 13:17:25 +0100, > Mostafa Saleh <[email protected]> wrote: > > > > On Sat, Aug 8, 2026 at 7:44 PM Oliver Upton <[email protected]> wrote: > > > > > > On Sat, 08 Aug 2026 08:58:21 +0000, Mostafa Saleh wrote: > > > > What started as a small patch ended up as a 3 patch series thanks > > > > to Sashiko. > > > > > > > > First patch from Marc to consolidate the offset calculation, > > > > follow up patches fix issues with non-protected VM and timer > > > > offset and protected VM running with broken CNTVOFF_EL2. > > > > > > > > [...] > > > > > > Dropped the unintended SOB in patch 3 you mentioned. > > > > > > Applied to next, thanks! > > > > > > [1/3] KVM: arm64: Make timer_get_offset() work in all contexts > > > https://git.kernel.org/kvmarm/kvmarm/c/2858600ecd01 > > > [2/3] KVM: arm64: Fix timer offsets for non-protected VMs > > > https://git.kernel.org/kvmarm/kvmarm/c/47d3eef780e3 > > > [3/3] KVM: arm64: Fix hvhe and broken CNTVOFF_EL2 > > > https://git.kernel.org/kvmarm/kvmarm/c/2e813a6e8ebe > > > > > > > Thanks Oliver! I believe there is one more bug. I'm not sure where the > > bug is or if it relates to the broken timers. > > Before those patches I could not boot a protected VM because of the > > panic, now after booting protected VMs, I sometimes get a system > > reset. > > On this quality HW, this is usually an indication that you are taking > an exception in a tight loop. > I tried to add a poor man exception storm detection in the kernel handlers (el1h_64_sync_handler and __gic_handle_irq), but it didn’t trigger before the reset. My hunch would be that there are some paths in protected VMs that takes too long that the watchdog fires. I saw the resets mostly at either userspace boot or VM teardown, otherwise the VM seems functional. I will collect timestamps from hypervisor entry/exit and check how large are those. > > I confirmed that cntvoff_el2 does not get written to non-zero, I also > > removed the sysreg write completely (rely on xzr value at init) so my > > guess is that the HW might be allergic to more than just non-zero > > values in cntvoff_el2. > > Is that in hVHE mode? Can you trap the access and route it to the > existing handling code? > Yes, only hVHE. Protected nVHE works fine. One interesting observation is that when starting a VM with a single vcpu I don’t see the reset anymore compared to 4 cpus before. Enabling traps for timer unconditionally for protected VMs still has the same issue. > > I do not have issues with non-protected VMs anymore. > > Do these run with an offset or not? Yes, they have the offset set from kvm_timer_vcpu_init() with kvm_phys_timer_read(). Thanks, Mostafa > > M. > > -- > Without deviation from the norm, progress is not possible.