summaryrefslogtreecommitdiffstats
path: root/arch/riscv/include
diff options
context:
space:
mode:
authorYash Shah2019-05-06 12:48:40 +0200
committerPalmer Dabbelt2019-05-17 05:42:13 +0200
commita967a289f16969527a8a41e261695c639a69bee4 (patch)
treeeda00cc7ecc719a9ed5e9cb82d27b64fb929d4fa /arch/riscv/include
parentRISC-V: Add DT documentation for SiFive L2 Cache Controller (diff)
downloadkernel-qcow2-linux-a967a289f16969527a8a41e261695c639a69bee4.tar.gz
kernel-qcow2-linux-a967a289f16969527a8a41e261695c639a69bee4.tar.xz
kernel-qcow2-linux-a967a289f16969527a8a41e261695c639a69bee4.zip
RISC-V: sifive_l2_cache: Add L2 cache controller driver for SiFive SoCs
The driver currently supports only SiFive FU540-C000 platform. The initial version of L2 cache controller driver includes: - Initial configuration reporting at boot up. - Support for ECC related functionality. Signed-off-by: Yash Shah <yash.shah@sifive.com> Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Diffstat (limited to 'arch/riscv/include')
-rw-r--r--arch/riscv/include/asm/sifive_l2_cache.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/riscv/include/asm/sifive_l2_cache.h b/arch/riscv/include/asm/sifive_l2_cache.h
new file mode 100644
index 000000000000..04f6748fc50b
--- /dev/null
+++ b/arch/riscv/include/asm/sifive_l2_cache.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * SiFive L2 Cache Controller header file
+ *
+ */
+
+#ifndef _ASM_RISCV_SIFIVE_L2_CACHE_H
+#define _ASM_RISCV_SIFIVE_L2_CACHE_H
+
+extern int register_sifive_l2_error_notifier(struct notifier_block *nb);
+extern int unregister_sifive_l2_error_notifier(struct notifier_block *nb);
+
+#define SIFIVE_L2_ERR_TYPE_CE 0
+#define SIFIVE_L2_ERR_TYPE_UE 1
+
+#endif /* _ASM_RISCV_SIFIVE_L2_CACHE_H */