Skip to content

Commit b4d6ce9

Browse files
Julien Grallchazy
authored andcommitted
clocksource: arm_arch_timer: Gather KVM specific information in a structure
Introduce a structure which are filled up by the arch timer driver and used by the virtual timer in KVM. The first member of this structure will be the timecounter. More members will be added later. A stub for the new helper isn't introduced because KVM requires the arch timer for both ARM64 and ARM32. The function arch_timer_get_timecounter is kept for the time being and will be dropped in a subsequent patch. Signed-off-by: Julien Grall <julien.grall@arm.com> Acked-by: Christoffer Dall <christoffer.dall@linaro.org> Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
1 parent d4b9e07 commit b4d6ce9

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

drivers/clocksource/arm_arch_timer.c

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -468,11 +468,16 @@ static struct cyclecounter cyclecounter = {
468468
.mask = CLOCKSOURCE_MASK(56),
469469
};
470470

471-
static struct timecounter timecounter;
471+
static struct arch_timer_kvm_info arch_timer_kvm_info;
472+
473+
struct arch_timer_kvm_info *arch_timer_get_kvm_info(void)
474+
{
475+
return &arch_timer_kvm_info;
476+
}
472477

473478
struct timecounter *arch_timer_get_timecounter(void)
474479
{
475-
return &timecounter;
480+
return &arch_timer_kvm_info.timecounter;
476481
}
477482

478483
static void __init arch_counter_register(unsigned type)
@@ -500,7 +505,8 @@ static void __init arch_counter_register(unsigned type)
500505
clocksource_register_hz(&clocksource_counter, arch_timer_rate);
501506
cyclecounter.mult = clocksource_counter.mult;
502507
cyclecounter.shift = clocksource_counter.shift;
503-
timecounter_init(&timecounter, &cyclecounter, start_count);
508+
timecounter_init(&arch_timer_kvm_info.timecounter,
509+
&cyclecounter, start_count);
504510

505511
/* 56 bits minimum, so we assume worst case rollover */
506512
sched_clock_register(arch_timer_read_counter, 56, arch_timer_rate);

include/clocksource/arm_arch_timer.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,16 @@ enum arch_timer_reg {
4949

5050
#define ARCH_TIMER_EVT_STREAM_FREQ 10000 /* 100us */
5151

52+
struct arch_timer_kvm_info {
53+
struct timecounter timecounter;
54+
};
55+
5256
#ifdef CONFIG_ARM_ARCH_TIMER
5357

5458
extern u32 arch_timer_get_rate(void);
5559
extern u64 (*arch_timer_read_counter)(void);
5660
extern struct timecounter *arch_timer_get_timecounter(void);
61+
extern struct arch_timer_kvm_info *arch_timer_get_kvm_info(void);
5762

5863
#else
5964

0 commit comments

Comments
 (0)