aboutsummaryrefslogtreecommitdiff
path: root/riscv/encoding.h
diff options
context:
space:
mode:
authorRupert Swarbrick <rswarbrick@lowrisc.org>2020-02-28 13:50:38 +0000
committerChih-Min Chao <chihmin.chao@sifive.com>2020-03-03 22:48:23 -0800
commit2863b3132c874a37c5b9ee5bd0989772623ce97a (patch)
tree877ec46aae3f91bf282fc032f8cccd357933ead4 /riscv/encoding.h
parentd9ec9c37b1542cc50b3717f140351d2f403fc921 (diff)
downloadspike-2863b3132c874a37c5b9ee5bd0989772623ce97a.zip
spike-2863b3132c874a37c5b9ee5bd0989772623ce97a.tar.gz
spike-2863b3132c874a37c5b9ee5bd0989772623ce97a.tar.bz2
Add do-nothing support for mcountinhibit CSR
This CSR appeared in version 1.11 of the ISA and is described in the Volume II: Privileged Architecture manual. It's an optional register and should read as zero if not implemented, which is what this patch does.
Diffstat (limited to 'riscv/encoding.h')
-rw-r--r--riscv/encoding.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/riscv/encoding.h b/riscv/encoding.h
index 26142db..a1d6c7c 100644
--- a/riscv/encoding.h
+++ b/riscv/encoding.h
@@ -1617,6 +1617,7 @@
#define CSR_MIE 0x304
#define CSR_MTVEC 0x305
#define CSR_MCOUNTEREN 0x306
+#define CSR_MCOUNTINHIBIT 0x320
#define CSR_MSCRATCH 0x340
#define CSR_MEPC 0x341
#define CSR_MCAUSE 0x342
@@ -2538,6 +2539,7 @@ DECLARE_CSR(mideleg, CSR_MIDELEG)
DECLARE_CSR(mie, CSR_MIE)
DECLARE_CSR(mtvec, CSR_MTVEC)
DECLARE_CSR(mcounteren, CSR_MCOUNTEREN)
+DECLARE_CSR(mcountinhibit, CSR_MCOUNTINHIBIT)
DECLARE_CSR(mscratch, CSR_MSCRATCH)
DECLARE_CSR(mepc, CSR_MEPC)
DECLARE_CSR(mcause, CSR_MCAUSE)