aboutsummaryrefslogtreecommitdiffstats
path: root/arch/riscv/include/asm/clint.h
diff options
context:
space:
mode:
authorAnup Patel <[email protected]>2020-08-17 12:42:50 +0000
committerPalmer Dabbelt <[email protected]>2020-08-20 17:58:13 +0000
commit2bc3fc877aa9c4c8b80cc49f66dfcb7e4857a128 (patch)
tree0bee46a80c0d3d86a344e45c5fe1ef670e2f08b6 /arch/riscv/include/asm/clint.h
parentclocksource/drivers: Add CLINT timer driver (diff)
downloadkernel-2bc3fc877aa9c4c8b80cc49f66dfcb7e4857a128.tar.gz
kernel-2bc3fc877aa9c4c8b80cc49f66dfcb7e4857a128.zip
RISC-V: Remove CLINT related code from timer and arch
Right now the RISC-V timer driver is convoluted to support: 1. Linux RISC-V S-mode (with MMU) where it will use TIME CSR for clocksource and SBI timer calls for clockevent device. 2. Linux RISC-V M-mode (without MMU) where it will use CLINT MMIO counter register for clocksource and CLINT MMIO compare register for clockevent device. We now have a separate CLINT timer driver which also provide CLINT based IPI operations so let's remove CLINT MMIO related code from arch/riscv directory and RISC-V timer driver. Signed-off-by: Anup Patel <[email protected]> Tested-by: Emil Renner Berhing <[email protected]> Acked-by: Daniel Lezcano <[email protected]> Reviewed-by: Atish Patra <[email protected]> Reviewed-by: Palmer Dabbelt <[email protected]> Signed-off-by: Palmer Dabbelt <[email protected]>
Diffstat (limited to 'arch/riscv/include/asm/clint.h')
-rw-r--r--arch/riscv/include/asm/clint.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/riscv/include/asm/clint.h b/arch/riscv/include/asm/clint.h
deleted file mode 100644
index adaba98a7d6c..000000000000
--- a/arch/riscv/include/asm/clint.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef _ASM_RISCV_CLINT_H
-#define _ASM_RISCV_CLINT_H 1
-
-#include <linux/io.h>
-#include <linux/smp.h>
-
-#ifdef CONFIG_RISCV_M_MODE
-void clint_init_boot_cpu(void);
-#else /* CONFIG_RISCV_M_MODE */
-#define clint_init_boot_cpu() do { } while (0)
-#endif /* CONFIG_RISCV_M_MODE */
-
-#endif /* _ASM_RISCV_CLINT_H */