clocksource/drivers/riscv: Get rid of clocksource_arch_init() callback
authorLad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Thu, 29 Dec 2022 22:46:01 +0000 (22:46 +0000)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Mon, 13 Feb 2023 12:10:17 +0000 (13:10 +0100)
Having a clocksource_arch_init() callback always sets vdso_clock_mode to
VDSO_CLOCKMODE_ARCHTIMER if GENERIC_GETTIMEOFDAY is enabled, this is
required for the riscv-timer.

This works for platforms where just riscv-timer clocksource is present.
On platforms where other clock sources are available we want them to
register with vdso_clock_mode set to VDSO_CLOCKMODE_NONE.

On the Renesas RZ/Five SoC OSTM block can be used as clocksource [0], to
avoid multiple clock sources being registered as VDSO_CLOCKMODE_ARCHTIMER
move setting of vdso_clock_mode in the riscv-timer driver instead of doing
this in clocksource_arch_init() callback as done similarly for ARM/64
architecture.

[0] drivers/clocksource/renesas-ostm.c

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Tested-by: Samuel Holland <samuel@sholland.org>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Samuel Holland <samuel@sholland.org>
Link: https://lore.kernel.org/r/20221229224601.103851-1-prabhakar.mahadev-lad.rj@bp.renesas.com
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
arch/riscv/Kconfig
arch/riscv/kernel/time.c
drivers/clocksource/timer-riscv.c

index e2b656043abf31128571abb8329327cc1044e96f..9c687da7756d70f0f7382c6a500572142df464bb 100644 (file)
@@ -12,7 +12,6 @@ config 32BIT
 
 config RISCV
        def_bool y
-       select ARCH_CLOCKSOURCE_INIT
        select ARCH_ENABLE_HUGEPAGE_MIGRATION if HUGETLB_PAGE && MIGRATION
        select ARCH_ENABLE_SPLIT_PMD_PTLOCK if PGTABLE_LEVELS > 2
        select ARCH_HAS_BINFMT_FLAT
index 1cf21db4fcc775916a023d936160e2733b5b9ef7..babaf3b48ba83172431edd3aef68f9e74dfe82ed 100644 (file)
@@ -33,12 +33,3 @@ void __init time_init(void)
 
        tick_setup_hrtimer_broadcast();
 }
-
-void clocksource_arch_init(struct clocksource *cs)
-{
-#ifdef CONFIG_GENERIC_GETTIMEOFDAY
-       cs->vdso_clock_mode = VDSO_CLOCKMODE_ARCHTIMER;
-#else
-       cs->vdso_clock_mode = VDSO_CLOCKMODE_NONE;
-#endif
-}
index adf7f98aab175533fa5dc354e774b36d9e8a75ea..d8cb629d3aab26d562143dde4d4c23238c8eaad1 100644 (file)
@@ -78,6 +78,11 @@ static struct clocksource riscv_clocksource = {
        .mask           = CLOCKSOURCE_MASK(64),
        .flags          = CLOCK_SOURCE_IS_CONTINUOUS,
        .read           = riscv_clocksource_rdtime,
+#if IS_ENABLED(CONFIG_GENERIC_GETTIMEOFDAY)
+       .vdso_clock_mode = VDSO_CLOCKMODE_ARCHTIMER,
+#else
+       .vdso_clock_mode = VDSO_CLOCKMODE_NONE,
+#endif
 };
 
 static int riscv_timer_starting_cpu(unsigned int cpu)