From: Oleksii Kurochko <oleksii.kurochko@gmail.com>
To: Jan Beulich <jbeulich@suse.com>
Cc: "Alistair Francis" <alistair.francis@wdc.com>,
"Bob Eshleman" <bobbyeshleman@gmail.com>,
"Connor Davis" <connojdavis@gmail.com>,
"Andrew Cooper" <andrew.cooper3@citrix.com>,
"Anthony PERARD" <anthony.perard@vates.tech>,
"Michal Orzel" <michal.orzel@amd.com>,
"Julien Grall" <julien@xen.org>,
"Roger Pau Monné" <roger.pau@citrix.com>,
"Stefano Stabellini" <sstabellini@kernel.org>,
xen-devel@lists.xenproject.org
Subject: Re: [PATCH v1 08/15] xen/riscv: introduce vtimer_set_timer() and vtimer_expired()
Date: Tue, 13 Jan 2026 15:44:30 +0100 [thread overview]
Message-ID: <4e18e4fc-de62-44fc-8ea0-517f6c7ef47f@gmail.com> (raw)
In-Reply-To: <f8808dd1-d571-49ea-8739-ed06dd6c79d1@suse.com>
On 1/8/26 11:28 AM, Jan Beulich wrote:
> On 24.12.2025 18:03, Oleksii Kurochko wrote:
>> --- a/xen/arch/riscv/include/asm/vtimer.h
>> +++ b/xen/arch/riscv/include/asm/vtimer.h
>> @@ -22,4 +22,6 @@ void vcpu_timer_destroy(struct vcpu *v);
>>
>> int domain_vtimer_init(struct domain *d, struct xen_arch_domainconfig *config);
>>
>> +void vtimer_set_timer(struct vtimer *t, const uint64_t ticks);
>> +
>> #endif /* ASM__RISCV__VTIMER_H */
>> diff --git a/xen/arch/riscv/vtimer.c b/xen/arch/riscv/vtimer.c
>> index 5ba533690bc2..99a0c5986f1d 100644
>> --- a/xen/arch/riscv/vtimer.c
>> +++ b/xen/arch/riscv/vtimer.c
>> @@ -1,6 +1,8 @@
>> /* SPDX-License-Identifier: GPL-2.0-only */
>>
>> +#include <xen/domain.h>
> Is this really needed, when ...
>
>> #include <xen/sched.h>
> ... this is already there?
With the way how includes look in xen/sched.h - no.
>
>> +#include <xen/time.h>
> Don't you mean xen/timer.h here?
You are right, it should be xen/timer.h as set_timer(), stop_timer() and migrate_timer()
are from xen/timer.h.
>
>> @@ -15,7 +17,9 @@ int domain_vtimer_init(struct domain *d, struct xen_arch_domainconfig *config)
>>
>> static void vtimer_expired(void *data)
>> {
>> - panic("%s: TBD\n", __func__);
>> + struct vtimer *t = data;
> Pointer-to-const please.
>
>> @@ -37,3 +41,27 @@ void vcpu_timer_destroy(struct vcpu *v)
>>
>> kill_timer(&v->arch.vtimer.timer);
>> }
>> +
>> +void vtimer_set_timer(struct vtimer *t, const uint64_t ticks)
>> +{
>> + s_time_t expires = ticks_to_ns(ticks - boot_clock_cycles);
> boot_clock_cycles is known to just Xen. If the guest provided input is an
> absolute value, how would that work across migration? Doesn't there need
> to be a guest-specific bias instead?
I think that I don't understand fully your questions, but it sounds like it is a job
for htimedelta register.
>
>> + vcpu_unset_interrupt(t->v, IRQ_VS_TIMER);
>> +
>> + /*
>> + * According to the RISC-V sbi spec:
>> + * If the supervisor wishes to clear the timer interrupt without
>> + * scheduling the next timer event, it can either request a timer
>> + * interrupt infinitely far into the future (i.e., (uint64_t)-1),
>> + * or it can instead mask the timer interrupt by clearing sie.STIE CSR
>> + * bit.
>> + */
> And SBI is the only way to set the expiry value? No CSR access? (Question
> also concerns the unconditional vcpu_unset_interrupt() above.)
If we don't have SSTC extension support then I suppose yes, as CSR_MI{E,P} could
be accessed only from M-mode:
(code from OpenSBI)
void sbi_timer_event_start(u64 next_event)
{
sbi_pmu_ctr_incr_fw(SBI_PMU_FW_SET_TIMER);
/**
* Update the stimecmp directly if available. This allows
* the older software to leverage sstc extension on newer hardware.
*/
if (sbi_hart_has_extension(sbi_scratch_thishart_ptr(), SBI_HART_EXT_SSTC)) {
#if __riscv_xlen == 32
csr_write(CSR_STIMECMP, next_event & 0xFFFFFFFF);
csr_write(CSR_STIMECMPH, next_event >> 32);
#else
csr_write(CSR_STIMECMP, next_event);
#endif
} else if (timer_dev && timer_dev->timer_event_start) {
timer_dev->timer_event_start(next_event);
csr_clear(CSR_MIP, MIP_STIP);
}
csr_set(CSR_MIE, MIP_MTIP);
}
>
>> + if ( ticks == ((uint64_t)~0ULL) )
> Nit: With the cast you won't need the ULL suffix.
>
>> + {
>> + stop_timer(&t->timer);
>> +
>> + return;
>> + }
>> +
>> + set_timer(&t->timer, expires);
> See the handling of VCPUOP_set_singleshot_timer for what you may want to
> do if the expiry asked for is (perhaps just very slightly) into the past.
I got an idea why we want to check if "expires" already expired, but ...
> There you'll also find a use of migrate_timer(), which you will want to
> at least consider using here as well.
... I don't get why we want to migrate timer before set_timer() here.
Could you please explain that?
Thanks.
~ Oleksii
next prev parent reply other threads:[~2026-01-13 14:44 UTC|newest]
Thread overview: 93+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-24 17:03 [PATCH v1 00/15] xen/riscv: introduce vtimer related things Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 01/15] xen/riscv: introduce struct arch_vcpu Oleksii Kurochko
2026-01-05 16:58 ` Jan Beulich
2026-01-06 14:19 ` Oleksii Kurochko
2026-01-06 14:26 ` Jan Beulich
2026-01-06 14:59 ` Andrew Cooper
2026-01-06 15:05 ` Oleksii Kurochko
2026-01-06 15:33 ` Jan Beulich
2026-01-06 16:00 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 02/15] xen/riscv: implement arch_vcpu_{create,destroy}() Oleksii Kurochko
2026-01-06 15:56 ` Jan Beulich
2026-01-12 10:19 ` Oleksii Kurochko
2026-01-12 10:42 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 03/15] xen/riscv: implement vcpu_csr_init() Oleksii Kurochko
2026-01-07 8:46 ` Jan Beulich
2026-01-12 12:59 ` Oleksii Kurochko
2026-01-12 14:28 ` Jan Beulich
2026-01-12 15:46 ` Oleksii Kurochko
2026-01-12 15:54 ` Jan Beulich
2026-01-12 16:39 ` Oleksii Kurochko
2026-01-12 16:42 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 04/15] xen/riscv: introduce vtimer Oleksii Kurochko
2026-01-07 15:21 ` Jan Beulich
2026-01-12 16:28 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 05/15] xen/riscv: implement stub for smp_send_event_check_mask() Oleksii Kurochko
2026-01-07 15:47 ` Jan Beulich
2026-01-12 16:53 ` Oleksii Kurochko
2026-01-12 17:05 ` Jan Beulich
2026-01-13 9:58 ` Oleksii Kurochko
2026-01-13 10:22 ` Jan Beulich
2026-01-13 11:39 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 06/15] xen/riscv: introduce vcpu_kick() implementation Oleksii Kurochko
2026-01-07 16:04 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 07/15] xen/riscv: introduce tracking of pending vCPU interrupts, part 1 Oleksii Kurochko
2026-01-07 16:28 ` Jan Beulich
2026-01-13 12:51 ` Oleksii Kurochko
2026-01-13 13:54 ` Jan Beulich
2026-01-14 15:39 ` Oleksii Kurochko
2026-01-14 15:56 ` Jan Beulich
2026-01-15 9:14 ` Oleksii Kurochko
2026-01-15 9:52 ` Jan Beulich
2026-01-15 10:55 ` Oleksii Kurochko
2026-01-15 10:59 ` Jan Beulich
2026-01-15 11:46 ` Oleksii Kurochko
2026-01-15 12:09 ` Jan Beulich
2026-01-15 12:25 ` Oleksii Kurochko
2026-01-15 12:30 ` Jan Beulich
2026-01-16 14:25 ` Oleksii Kurochko
2026-01-16 14:42 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 08/15] xen/riscv: introduce vtimer_set_timer() and vtimer_expired() Oleksii Kurochko
2026-01-08 10:28 ` Jan Beulich
2026-01-13 14:44 ` Oleksii Kurochko [this message]
2026-01-13 15:12 ` Jan Beulich
2026-01-14 12:27 ` Oleksii Kurochko
2026-01-14 14:57 ` Jan Beulich
2026-01-14 15:59 ` Oleksii Kurochko
2026-01-15 7:52 ` Jan Beulich
2026-01-15 9:30 ` Oleksii Kurochko
2026-01-15 9:55 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 09/15] xen/riscv: add vtimer_{save,restore}() Oleksii Kurochko
2026-01-08 10:43 ` Jan Beulich
2026-01-13 15:32 ` Oleksii Kurochko
2026-01-14 9:00 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 10/15] xen/riscv: implement SBI legacy SET_TIMER support for guests Oleksii Kurochko
2026-01-08 10:45 ` Jan Beulich
2026-01-13 15:41 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 11/15] xen/riscv: introduce ns_to_ticks() Oleksii Kurochko
2026-01-12 14:59 ` [Arm] " Jan Beulich
2026-01-21 0:23 ` Volodymyr Babchuk
2026-01-21 1:19 ` Stefano Stabellini
2025-12-24 17:03 ` [PATCH v1 12/15] xen/riscv: introduce sbi_set_timer() Oleksii Kurochko
2026-01-12 15:12 ` Jan Beulich
2026-01-13 16:33 ` Oleksii Kurochko
2026-01-14 9:07 ` Jan Beulich
2026-01-14 9:59 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 13/15] xen/riscv: implement reprogram_timer() using SBI Oleksii Kurochko
2026-01-12 15:24 ` Jan Beulich
2026-01-13 16:50 ` Oleksii Kurochko
2026-01-14 9:13 ` Jan Beulich
2026-01-14 9:41 ` Oleksii Kurochko
2026-01-14 9:53 ` Jan Beulich
2026-01-14 10:33 ` Oleksii Kurochko
2026-01-14 11:17 ` Jan Beulich
2026-01-14 12:41 ` Oleksii Kurochko
2026-01-14 15:04 ` Jan Beulich
2026-01-14 15:53 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 14/15] xen/riscv: handle hypervisor timer interrupts Oleksii Kurochko
2026-01-12 16:15 ` Jan Beulich
2026-01-13 16:53 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 15/15] xen/riscv: init tasklet subsystem Oleksii Kurochko
2026-01-12 16:20 ` Jan Beulich
2026-01-13 17:03 ` Oleksii Kurochko
2026-01-14 9:15 ` Jan Beulich
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=4e18e4fc-de62-44fc-8ea0-517f6c7ef47f@gmail.com \
--to=oleksii.kurochko@gmail.com \
--cc=alistair.francis@wdc.com \
--cc=andrew.cooper3@citrix.com \
--cc=anthony.perard@vates.tech \
--cc=bobbyeshleman@gmail.com \
--cc=connojdavis@gmail.com \
--cc=jbeulich@suse.com \
--cc=julien@xen.org \
--cc=michal.orzel@amd.com \
--cc=roger.pau@citrix.com \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xenproject.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.