From: Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com>
To: Marc Zyngier <maz@kernel.org>
Cc: linux-kernel@vger.kernel.org, kvmarm@lists.linux.dev,
linux-arm-kernel@lists.infradead.org, Christoffer.Dall@arm.com,
eauger@redhat.com, miguel.luis@oracle.com,
darren@os.amperecomputing.com, scott@os.amperecomputing.com
Subject: Re: [PATCH v2 2/2] KVM: arm64: timers: Save restore CVAL of a ptimer across guest entry and exits
Date: Mon, 25 Sep 2023 11:10:18 +0530 [thread overview]
Message-ID: <ff458bae-2681-1464-d68e-f9d04098c8b4@os.amperecomputing.com> (raw)
In-Reply-To: <45a2d1c6-821e-d55f-f59f-c214a11e0df0@os.amperecomputing.com>
On 25-09-2023 11:05 am, Ganapatrao Kulkarni wrote:
>
>
> On 24-09-2023 03:18 pm, Marc Zyngier wrote:
>> On Tue, 19 Sep 2023 07:15:44 +0100,
>> Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com> wrote:
>>>
>>>
>>>
>>> On 18-09-2023 04:59 pm, Marc Zyngier wrote:
>>>> On Fri, 15 Sep 2023 10:57:46 +0100,
>>>> Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com> wrote:
>>>>>
>>>>> This patch did not work.
>>>>> After adding changes as in below diff, it is started working.
>>>>
>>>> Thanks for looking into this.
>>>>
>>>>>
>>>>> diff --git a/arch/arm64/kvm/hyp/vhe/switch.c
>>>>> b/arch/arm64/kvm/hyp/vhe/switch.c
>>>>> index b0b07658f77d..91d2cfb03e26 100644
>>>>> --- a/arch/arm64/kvm/hyp/vhe/switch.c
>>>>> +++ b/arch/arm64/kvm/hyp/vhe/switch.c
>>>>> @@ -117,7 +117,7 @@ static void __activate_traps(struct kvm_vcpu
>>>>> *vcpu)
>>>>> val = __vcpu_sys_reg(vcpu, CNTHP_CVAL_EL2);
>>>>>
>>>>> if (map.direct_ptimer) {
>>>>> - write_sysreg_s(val, SYS_CNTP_CVAL_EL0);
>>>>> + write_sysreg_el0(val, SYS_CNTP_CVAL);
>>>>
>>>> Duh, of course. Silly me.
>>>>
>>>>> isb();
>>>>> }
>>>>> }
>>>>> @@ -161,8 +161,6 @@ static void __deactivate_traps(struct kvm_vcpu
>>>>> *vcpu)
>>>>>
>>>>> ___deactivate_traps(vcpu);
>>>>>
>>>>> - write_sysreg(HCR_HOST_VHE_FLAGS, hcr_el2);
>>>>> -
>>>>> if (has_cntpoff()) {
>>>>> struct timer_map map;
>>>>> u64 val, offset;
>>>>> @@ -173,7 +171,7 @@ static void __deactivate_traps(struct kvm_vcpu
>>>>> *vcpu)
>>>>> * We're exiting the guest. Save the latest CVAL
>>>>> value
>>>>> * to memory and apply the offset now that TGE is
>>>>> set.
>>>>> */
>>>>> - val = read_sysreg_s(SYS_CNTP_CVAL_EL0);
>>>>> + val = read_sysreg_el0(SYS_CNTP_CVAL);
>>>>> if (map.direct_ptimer == vcpu_ptimer(vcpu))
>>>>> __vcpu_sys_reg(vcpu, CNTP_CVAL_EL0) = val;
>>>>> if (map.direct_ptimer == vcpu_hptimer(vcpu))
>>>>> @@ -182,12 +180,13 @@ static void __deactivate_traps(struct
>>>>> kvm_vcpu *vcpu)
>>>>> offset = read_sysreg_s(SYS_CNTPOFF_EL2);
>>>>>
>>>>> if (map.direct_ptimer && offset) {
>>>>> - offset = read_sysreg_s(SYS_CNTPOFF_EL2);
>>>>> - write_sysreg_s(val + offset,
>>>>> SYS_CNTP_CVAL_EL0);
>>>>> + write_sysreg_el0(val + offset, SYS_CNTP_CVAL);
>>>>> isb();
>>>>> }
>>>>> }
>>>>>
>>>>> + write_sysreg(HCR_HOST_VHE_FLAGS, hcr_el2);
>>>>
>>>> Why moving the HCR_EL2 update? I don't grok what it changes. Or is it
>>>
>>> This the line of code which flips the TGE and making timer cval ready
>>> to handle the TGE flip is more safe way(avoids even corner case of
>>> false interrupt triggers) than changing after the flipping?
>>
>> That's pretty dubious. Do you actually see it firing on your HW?
>>
>>>
>>>> that you end-up with spurious interrupts because your GIC is slow to
>>>> retire interrupts that are transiently pending?
>>>
>>> IIUC, If there are any transient interrupts or asserted already,
>>> anyway they will be handled when irq is unmasked.
>>
>> That's the idea. But my question is whether you observe spurious
>> interrupts when not changing the ordering.
>
> I tried with keeping the ordering (i.e flip TGE then change cval) and i
> don't see any issue as such. IMO, it is better to have cval updated
> before TGE flip, anyway either way works for us.
>
Please feel free to add,
Tested-by: Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com>
>>
>> Thanks,
>>
>> M.
>>
>
> Thanks,
> Ganapat
Thanks,
Ganapat
next prev parent reply other threads:[~2023-09-25 5:40 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-04 11:42 [PATCH v2 0/2] Avoid spurious ptimer interrupts for non-zero cntpoff Ganapatrao Kulkarni
2023-09-04 11:42 ` [PATCH v2 1/2] KVM: arm64: timers: Move helper has_cntpoff to a header file Ganapatrao Kulkarni
2023-09-04 11:42 ` [PATCH v2 2/2] KVM: arm64: timers: Save restore CVAL of a ptimer across guest entry and exits Ganapatrao Kulkarni
2023-09-10 11:45 ` Marc Zyngier
2023-09-15 9:57 ` Ganapatrao Kulkarni
2023-09-18 11:29 ` Marc Zyngier
2023-09-19 6:15 ` Ganapatrao Kulkarni
2023-09-24 9:48 ` Marc Zyngier
2023-09-25 5:35 ` Ganapatrao Kulkarni
2023-09-25 5:40 ` Ganapatrao Kulkarni [this message]
2023-10-10 4:54 ` Ganapatrao Kulkarni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ff458bae-2681-1464-d68e-f9d04098c8b4@os.amperecomputing.com \
--to=gankulkarni@os.amperecomputing.com \
--cc=Christoffer.Dall@arm.com \
--cc=darren@os.amperecomputing.com \
--cc=eauger@redhat.com \
--cc=kvmarm@lists.linux.dev \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maz@kernel.org \
--cc=miguel.luis@oracle.com \
--cc=scott@os.amperecomputing.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®