Merge tag 'sched-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / riscv / include / asm / clint.h
blob0789fd37b40ae06a11f0b5cc0f01dba591b4cf16
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2020 Google, Inc
4 */
6 #ifndef _ASM_RISCV_CLINT_H
7 #define _ASM_RISCV_CLINT_H
9 #include <linux/types.h>
10 #include <asm/mmio.h>
12 #ifdef CONFIG_RISCV_M_MODE
14 * This lives in the CLINT driver, but is accessed directly by timex.h to avoid
15 * any overhead when accessing the MMIO timer.
17 * The ISA defines mtime as a 64-bit memory-mapped register that increments at
18 * a constant frequency, but it doesn't define some other constraints we depend
19 * on (most notably ordering constraints, but also some simpler stuff like the
20 * memory layout). Thus, this is called "clint_time_val" instead of something
21 * like "riscv_mtime", to signify that these non-ISA assumptions must hold.
23 extern u64 __iomem *clint_time_val;
24 #endif
26 #endif