OSDN Git Service

RISC-V: Resurrect the MMIO timer implementation for M-mode systems
authorPalmer Dabbelt <palmerdabbelt@google.com>
Mon, 14 Sep 2020 16:56:30 +0000 (09:56 -0700)
committerPalmer Dabbelt <palmerdabbelt@google.com>
Sat, 19 Sep 2020 20:21:11 +0000 (13:21 -0700)
commitd5be89a8d118a8e8d09cd74a921a808f17fbdd09
tree23ca84b9c2f1ae9f5f1ac483bf72c60e9934786b
parentf025d9d9934b84cd03b7796072d10686029c408e
RISC-V: Resurrect the MMIO timer implementation for M-mode systems

The K210 doesn't implement rdtime in M-mode, and since that's where Linux runs
in the NOMMU systems that means we can't use rdtime.  The K210 is the only
system that anyone is currently running NOMMU or M-mode on, so here we're just
inlining the timer read directly.

This also adds the CLINT driver as an !MMU dependency, as it's currently the
only timer driver availiable for these systems and without it we get a build
failure for some configurations.

Tested-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
arch/riscv/Kconfig
arch/riscv/include/asm/clint.h [new file with mode: 0644]
arch/riscv/include/asm/timex.h
drivers/clocksource/timer-clint.c