diff options
author | Anup Patel <anup@brainfault.org> | 2018-12-04 11:29:52 +0100 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2018-12-18 22:22:23 +0100 |
commit | 92e0d143fdef1faa7560c93fb0d6cd6c61da88ee (patch) | |
tree | f52b5e219877dbd0b2e646c63a1c8bbb63dde25f /drivers/clocksource/Kconfig | |
parent | clocksource/drivers/timer-imx-tpm: Specify clock name for timer-of (diff) | |
download | linux-92e0d143fdef1faa7560c93fb0d6cd6c61da88ee.tar.xz linux-92e0d143fdef1faa7560c93fb0d6cd6c61da88ee.zip |
clocksource/drivers/riscv_timer: Provide the sched_clock
Currently, we don't have a sched_clock registered for RISC-V systems.
This means Linux time keeping will use jiffies (running at HZ) as the
default sched_clock.
To avoid this, we explicity provide sched_clock using RISC-V rdtime
instruction (similar to riscv_timer clocksource).
Signed-off-by: Anup Patel <anup@brainfault.org>
Reviewed-by: Palmer Dabbelt <palmer@sifive.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'drivers/clocksource/Kconfig')
-rw-r--r-- | drivers/clocksource/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig index c57b156f49a2..a4ae339e0101 100644 --- a/drivers/clocksource/Kconfig +++ b/drivers/clocksource/Kconfig @@ -599,7 +599,7 @@ config ATCPIT100_TIMER config RISCV_TIMER bool "Timer for the RISC-V platform" - depends on RISCV + depends on GENERIC_SCHED_CLOCK && RISCV default y select TIMER_PROBE select TIMER_OF |