summaryrefslogtreecommitdiff
path: root/target/riscv/csr.c
diff options
context:
space:
mode:
authorAlistair Francis <alistair.francis@wdc.com>2019-06-17 18:31:22 -0700
committerPalmer Dabbelt <palmer@sifive.com>2019-06-25 03:05:41 -0700
commit0a13a5b856ebb59dec6d165b87a0ba0e1e2dd952 (patch)
tree829043603c8ad0567ca3e14e6f7a7f88ca9f6901 /target/riscv/csr.c
parentc9a73910c34a2147bcf6a3b5194d27abb19c2e54 (diff)
downloadqemu-0a13a5b856ebb59dec6d165b87a0ba0e1e2dd952.zip
target/riscv: Add support for disabling/enabling Counters
Add support for disabling/enabling the "Counters" extension. Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Palmer Dabbelt <palmer@sifive.com> Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Diffstat (limited to 'target/riscv/csr.c')
-rw-r--r--target/riscv/csr.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/target/riscv/csr.c b/target/riscv/csr.c
index 448162e484..de67741f36 100644
--- a/target/riscv/csr.c
+++ b/target/riscv/csr.c
@@ -56,17 +56,24 @@ static int fs(CPURISCVState *env, int csrno)
static int ctr(CPURISCVState *env, int csrno)
{
#if !defined(CONFIG_USER_ONLY)
+ CPUState *cs = env_cpu(env);
+ RISCVCPU *cpu = RISCV_CPU(cs);
+ uint32_t ctr_en = ~0u;
+
+ if (!cpu->cfg.ext_counters) {
+ /* The Counters extensions is not enabled */
+ return -1;
+ }
+
/*
- * The counters are always enabled on newer priv specs, as the CSR has
- * changed from controlling that the counters can be read to controlling
- * that the counters increment.
+ * The counters are always enabled at run time on newer priv specs, as the
+ * CSR has changed from controlling that the counters can be read to
+ * controlling that the counters increment.
*/
if (env->priv_ver > PRIV_VERSION_1_09_1) {
return 0;
}
- uint32_t ctr_en = ~0u;
-
if (env->priv < PRV_M) {
ctr_en &= env->mcounteren;
}