All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 00/15] xen/riscv: introduce vtimer related things.
@ 2025-12-24 17:03 Oleksii Kurochko
  2025-12-24 17:03 ` [PATCH v1 01/15] xen/riscv: introduce struct arch_vcpu Oleksii Kurochko
                   ` (14 more replies)
  0 siblings, 15 replies; 93+ messages in thread
From: Oleksii Kurochko @ 2025-12-24 17:03 UTC (permalink / raw)
  To: xen-devel
  Cc: Oleksii Kurochko, Alistair Francis, Bob Eshleman, Connor Davis,
	Andrew Cooper, Anthony PERARD, Michal Orzel, Jan Beulich,
	Julien Grall, Roger Pau Monné, Stefano Stabellini

This patch series introduces the components necessary to implement a virtual
timer (vtimer).

Since the SSTC extension is not supported by Xen, an emulated (SBI-based)
timer is required. To address this, a virtual timer built on Xen’s timer
infrastructure is introduced, with save/restore support and SBI-based
programming.

To provide full guest software–based timer support, the following components
are also introduced:
- arch_vcpu_{create,destroy}() to initialize the virtual timer and other
  vCPU-related state not directly tied to timer functionality. As part of this
  work, struct arch_vcpu is introduced to describe the internal state of a
  virtual CPU, along with vcpu_csr_init() to initialize the relevant CSR state.
- Support functions required by the virtual timer, including:
  - vcpu_kick(), and a stub implementation of smp_send_event_check_mask()
    (since SMP is not yet supported in Xen), which is used by vcpu_kick().
  - Support for guest timer programming via interception of the SBI legacy
    SET_TIMER call from guest.
  - Implement reprogram_timer() using introduced sbi_set_timer().
  - Initial lockless tracking of pending vCPU interrupts using atomic bitmaps.
    Not full support, only vcpu_set_interrupt() and vcpu_unset_interrupt() are
    introduced. All others functions will be introduced separately. [1]
- Handling of hypervisor timer interrupts and dispatch into Xen’s generic timer
  softirq.

Oleksii Kurochko (15):
  xen/riscv: introduce struct arch_vcpu
  xen/riscv: implement arch_vcpu_{create,destroy}()
  xen/riscv: implement vcpu_csr_init()
  xen/riscv: introduce vtimer
  xen/riscv: implement stub for smp_send_event_check_mask()
  xen/riscv: introduce vcpu_kick() implementation
  xen/riscv: introduce tracking of pending vCPU interrupts, part 1
  xen/riscv: introduce vtimer_set_timer() and vtimer_expired()
  xen/riscv: add vtimer_{save,restore}()
  xen/riscv: implement SBI legacy SET_TIMER support for guests
  xen/riscv: introduce ns_to_ticks()
  xen/riscv: introduce sbi_set_timer()
  xen/riscv: implement reprogram_timer() using SBI
  xen/riscv: handle hypervisor timer interrupts
  xen/riscv: init tasklet subsystem

 xen/arch/riscv/Makefile                     |   2 +
 xen/arch/riscv/cpufeature.c                 |   1 +
 xen/arch/riscv/domain.c                     | 207 ++++++++++++++++++++
 xen/arch/riscv/include/asm/config.h         |   3 +-
 xen/arch/riscv/include/asm/cpufeature.h     |   1 +
 xen/arch/riscv/include/asm/current.h        |   6 +
 xen/arch/riscv/include/asm/domain.h         |  84 +++++++-
 xen/arch/riscv/include/asm/riscv_encoding.h |   3 +
 xen/arch/riscv/include/asm/sbi.h            |  17 ++
 xen/arch/riscv/include/asm/time.h           |   5 +
 xen/arch/riscv/include/asm/vtimer.h         |  30 +++
 xen/arch/riscv/sbi.c                        |  26 +++
 xen/arch/riscv/setup.c                      |   3 +
 xen/arch/riscv/smp.c                        |   8 +
 xen/arch/riscv/stubs.c                      |  35 ----
 xen/arch/riscv/time.c                       |  31 +++
 xen/arch/riscv/traps.c                      |  14 ++
 xen/arch/riscv/vsbi/legacy-extension.c      |   6 +
 xen/arch/riscv/vtimer.c                     |  82 ++++++++
 19 files changed, 526 insertions(+), 38 deletions(-)
 create mode 100644 xen/arch/riscv/domain.c
 create mode 100644 xen/arch/riscv/include/asm/vtimer.h
 create mode 100644 xen/arch/riscv/vtimer.c

-- 
2.52.0



^ permalink raw reply	[flat|nested] 93+ messages in thread

end of thread, other threads:[~2026-01-21  1:20 UTC | newest]

Thread overview: 93+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
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

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.