2 * RISC-V Control and Status Registers.
5 * Copyright (c) 2017-2018 SiFive, Inc.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2 or later, as published by the Free Software Foundation.
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
23 #include "qemu/main-loop.h"
24 #include "exec/exec-all.h"
26 /* CSR function table public API */
27 void riscv_get_csr_ops(int csrno, riscv_csr_operations *ops)
29 *ops = csr_ops[csrno & (CSR_TABLE_SIZE - 1)];
32 void riscv_set_csr_ops(int csrno, riscv_csr_operations *ops)
34 csr_ops[csrno & (CSR_TABLE_SIZE - 1)] = *ops;
38 static RISCVException fs(CPURISCVState *env, int csrno)
40 #if !defined(CONFIG_USER_ONLY)
41 if (!env->debugger && !riscv_cpu_fp_enabled(env)) {
42 return RISCV_EXCP_ILLEGAL_INST;
45 return RISCV_EXCP_NONE;
48 static RISCVException vs(CPURISCVState *env, int csrno)
50 if (env->misa_ext & RVV) {
51 #if !defined(CONFIG_USER_ONLY)
52 if (!env->debugger && !riscv_cpu_vector_enabled(env)) {
53 return RISCV_EXCP_ILLEGAL_INST;
56 return RISCV_EXCP_NONE;
58 return RISCV_EXCP_ILLEGAL_INST;
61 static RISCVException ctr(CPURISCVState *env, int csrno)
63 #if !defined(CONFIG_USER_ONLY)
64 CPUState *cs = env_cpu(env);
65 RISCVCPU *cpu = RISCV_CPU(cs);
67 if (!cpu->cfg.ext_counters) {
68 /* The Counters extensions is not enabled */
69 return RISCV_EXCP_ILLEGAL_INST;
72 if (riscv_cpu_virt_enabled(env)) {
75 if (!get_field(env->hcounteren, COUNTEREN_CY) &&
76 get_field(env->mcounteren, COUNTEREN_CY)) {
77 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
81 if (!get_field(env->hcounteren, COUNTEREN_TM) &&
82 get_field(env->mcounteren, COUNTEREN_TM)) {
83 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
87 if (!get_field(env->hcounteren, COUNTEREN_IR) &&
88 get_field(env->mcounteren, COUNTEREN_IR)) {
89 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
92 case CSR_HPMCOUNTER3...CSR_HPMCOUNTER31:
93 if (!get_field(env->hcounteren, 1 << (csrno - CSR_HPMCOUNTER3)) &&
94 get_field(env->mcounteren, 1 << (csrno - CSR_HPMCOUNTER3))) {
95 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
99 if (riscv_cpu_mxl(env) == MXL_RV32) {
102 if (!get_field(env->hcounteren, COUNTEREN_CY) &&
103 get_field(env->mcounteren, COUNTEREN_CY)) {
104 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
108 if (!get_field(env->hcounteren, COUNTEREN_TM) &&
109 get_field(env->mcounteren, COUNTEREN_TM)) {
110 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
114 if (!get_field(env->hcounteren, COUNTEREN_IR) &&
115 get_field(env->mcounteren, COUNTEREN_IR)) {
116 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
119 case CSR_HPMCOUNTER3H...CSR_HPMCOUNTER31H:
120 if (!get_field(env->hcounteren, 1 << (csrno - CSR_HPMCOUNTER3H)) &&
121 get_field(env->mcounteren, 1 << (csrno - CSR_HPMCOUNTER3H))) {
122 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
129 return RISCV_EXCP_NONE;
132 static RISCVException ctr32(CPURISCVState *env, int csrno)
134 if (riscv_cpu_mxl(env) != MXL_RV32) {
135 return RISCV_EXCP_ILLEGAL_INST;
138 return ctr(env, csrno);
141 #if !defined(CONFIG_USER_ONLY)
142 static RISCVException any(CPURISCVState *env, int csrno)
144 return RISCV_EXCP_NONE;
147 static RISCVException any32(CPURISCVState *env, int csrno)
149 if (riscv_cpu_mxl(env) != MXL_RV32) {
150 return RISCV_EXCP_ILLEGAL_INST;
153 return any(env, csrno);
157 static RISCVException smode(CPURISCVState *env, int csrno)
159 if (riscv_has_ext(env, RVS)) {
160 return RISCV_EXCP_NONE;
163 return RISCV_EXCP_ILLEGAL_INST;
166 static RISCVException hmode(CPURISCVState *env, int csrno)
168 if (riscv_has_ext(env, RVS) &&
169 riscv_has_ext(env, RVH)) {
170 /* Hypervisor extension is supported */
171 if ((env->priv == PRV_S && !riscv_cpu_virt_enabled(env)) ||
172 env->priv == PRV_M) {
173 return RISCV_EXCP_NONE;
175 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
179 return RISCV_EXCP_ILLEGAL_INST;
182 static RISCVException hmode32(CPURISCVState *env, int csrno)
184 if (riscv_cpu_mxl(env) != MXL_RV32) {
185 if (riscv_cpu_virt_enabled(env)) {
186 return RISCV_EXCP_ILLEGAL_INST;
188 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
192 return hmode(env, csrno);
196 /* Checks if PointerMasking registers could be accessed */
197 static RISCVException pointer_masking(CPURISCVState *env, int csrno)
199 /* Check if j-ext is present */
200 if (riscv_has_ext(env, RVJ)) {
201 return RISCV_EXCP_NONE;
203 return RISCV_EXCP_ILLEGAL_INST;
206 static RISCVException pmp(CPURISCVState *env, int csrno)
208 if (riscv_feature(env, RISCV_FEATURE_PMP)) {
209 return RISCV_EXCP_NONE;
212 return RISCV_EXCP_ILLEGAL_INST;
215 static RISCVException epmp(CPURISCVState *env, int csrno)
217 if (env->priv == PRV_M && riscv_feature(env, RISCV_FEATURE_EPMP)) {
218 return RISCV_EXCP_NONE;
221 return RISCV_EXCP_ILLEGAL_INST;
225 /* User Floating-Point CSRs */
226 static RISCVException read_fflags(CPURISCVState *env, int csrno,
229 *val = riscv_cpu_get_fflags(env);
230 return RISCV_EXCP_NONE;
233 static RISCVException write_fflags(CPURISCVState *env, int csrno,
236 #if !defined(CONFIG_USER_ONLY)
237 env->mstatus |= MSTATUS_FS;
239 riscv_cpu_set_fflags(env, val & (FSR_AEXC >> FSR_AEXC_SHIFT));
240 return RISCV_EXCP_NONE;
243 static RISCVException read_frm(CPURISCVState *env, int csrno,
247 return RISCV_EXCP_NONE;
250 static RISCVException write_frm(CPURISCVState *env, int csrno,
253 #if !defined(CONFIG_USER_ONLY)
254 env->mstatus |= MSTATUS_FS;
256 env->frm = val & (FSR_RD >> FSR_RD_SHIFT);
257 return RISCV_EXCP_NONE;
260 static RISCVException read_fcsr(CPURISCVState *env, int csrno,
263 *val = (riscv_cpu_get_fflags(env) << FSR_AEXC_SHIFT)
264 | (env->frm << FSR_RD_SHIFT);
265 return RISCV_EXCP_NONE;
268 static RISCVException write_fcsr(CPURISCVState *env, int csrno,
271 #if !defined(CONFIG_USER_ONLY)
272 env->mstatus |= MSTATUS_FS;
274 env->frm = (val & FSR_RD) >> FSR_RD_SHIFT;
275 riscv_cpu_set_fflags(env, (val & FSR_AEXC) >> FSR_AEXC_SHIFT);
276 return RISCV_EXCP_NONE;
279 static RISCVException read_vtype(CPURISCVState *env, int csrno,
283 return RISCV_EXCP_NONE;
286 static RISCVException read_vl(CPURISCVState *env, int csrno,
290 return RISCV_EXCP_NONE;
293 static int read_vlenb(CPURISCVState *env, int csrno, target_ulong *val)
295 *val = env_archcpu(env)->cfg.vlen >> 3;
296 return RISCV_EXCP_NONE;
299 static RISCVException read_vxrm(CPURISCVState *env, int csrno,
303 return RISCV_EXCP_NONE;
306 static RISCVException write_vxrm(CPURISCVState *env, int csrno,
309 #if !defined(CONFIG_USER_ONLY)
310 env->mstatus |= MSTATUS_VS;
313 return RISCV_EXCP_NONE;
316 static RISCVException read_vxsat(CPURISCVState *env, int csrno,
320 return RISCV_EXCP_NONE;
323 static RISCVException write_vxsat(CPURISCVState *env, int csrno,
326 #if !defined(CONFIG_USER_ONLY)
327 env->mstatus |= MSTATUS_VS;
330 return RISCV_EXCP_NONE;
333 static RISCVException read_vstart(CPURISCVState *env, int csrno,
337 return RISCV_EXCP_NONE;
340 static RISCVException write_vstart(CPURISCVState *env, int csrno,
343 #if !defined(CONFIG_USER_ONLY)
344 env->mstatus |= MSTATUS_VS;
347 * The vstart CSR is defined to have only enough writable bits
348 * to hold the largest element index, i.e. lg2(VLEN) bits.
350 env->vstart = val & ~(~0ULL << ctzl(env_archcpu(env)->cfg.vlen));
351 return RISCV_EXCP_NONE;
354 static int read_vcsr(CPURISCVState *env, int csrno, target_ulong *val)
356 *val = (env->vxrm << VCSR_VXRM_SHIFT) | (env->vxsat << VCSR_VXSAT_SHIFT);
357 return RISCV_EXCP_NONE;
360 static int write_vcsr(CPURISCVState *env, int csrno, target_ulong val)
362 #if !defined(CONFIG_USER_ONLY)
363 env->mstatus |= MSTATUS_VS;
365 env->vxrm = (val & VCSR_VXRM) >> VCSR_VXRM_SHIFT;
366 env->vxsat = (val & VCSR_VXSAT) >> VCSR_VXSAT_SHIFT;
367 return RISCV_EXCP_NONE;
370 /* User Timers and Counters */
371 static RISCVException read_instret(CPURISCVState *env, int csrno,
374 #if !defined(CONFIG_USER_ONLY)
375 if (icount_enabled()) {
378 *val = cpu_get_host_ticks();
381 *val = cpu_get_host_ticks();
383 return RISCV_EXCP_NONE;
386 static RISCVException read_instreth(CPURISCVState *env, int csrno,
389 #if !defined(CONFIG_USER_ONLY)
390 if (icount_enabled()) {
391 *val = icount_get() >> 32;
393 *val = cpu_get_host_ticks() >> 32;
396 *val = cpu_get_host_ticks() >> 32;
398 return RISCV_EXCP_NONE;
401 #if defined(CONFIG_USER_ONLY)
402 static RISCVException read_time(CPURISCVState *env, int csrno,
405 *val = cpu_get_host_ticks();
406 return RISCV_EXCP_NONE;
409 static RISCVException read_timeh(CPURISCVState *env, int csrno,
412 *val = cpu_get_host_ticks() >> 32;
413 return RISCV_EXCP_NONE;
416 #else /* CONFIG_USER_ONLY */
418 static RISCVException read_time(CPURISCVState *env, int csrno,
421 uint64_t delta = riscv_cpu_virt_enabled(env) ? env->htimedelta : 0;
423 if (!env->rdtime_fn) {
424 return RISCV_EXCP_ILLEGAL_INST;
427 *val = env->rdtime_fn(env->rdtime_fn_arg) + delta;
428 return RISCV_EXCP_NONE;
431 static RISCVException read_timeh(CPURISCVState *env, int csrno,
434 uint64_t delta = riscv_cpu_virt_enabled(env) ? env->htimedelta : 0;
436 if (!env->rdtime_fn) {
437 return RISCV_EXCP_ILLEGAL_INST;
440 *val = (env->rdtime_fn(env->rdtime_fn_arg) + delta) >> 32;
441 return RISCV_EXCP_NONE;
444 /* Machine constants */
446 #define M_MODE_INTERRUPTS (MIP_MSIP | MIP_MTIP | MIP_MEIP)
447 #define S_MODE_INTERRUPTS (MIP_SSIP | MIP_STIP | MIP_SEIP)
448 #define VS_MODE_INTERRUPTS (MIP_VSSIP | MIP_VSTIP | MIP_VSEIP)
450 static const target_ulong delegable_ints = S_MODE_INTERRUPTS |
452 static const target_ulong vs_delegable_ints = VS_MODE_INTERRUPTS;
453 static const target_ulong all_ints = M_MODE_INTERRUPTS | S_MODE_INTERRUPTS |
455 #define DELEGABLE_EXCPS ((1ULL << (RISCV_EXCP_INST_ADDR_MIS)) | \
456 (1ULL << (RISCV_EXCP_INST_ACCESS_FAULT)) | \
457 (1ULL << (RISCV_EXCP_ILLEGAL_INST)) | \
458 (1ULL << (RISCV_EXCP_BREAKPOINT)) | \
459 (1ULL << (RISCV_EXCP_LOAD_ADDR_MIS)) | \
460 (1ULL << (RISCV_EXCP_LOAD_ACCESS_FAULT)) | \
461 (1ULL << (RISCV_EXCP_STORE_AMO_ADDR_MIS)) | \
462 (1ULL << (RISCV_EXCP_STORE_AMO_ACCESS_FAULT)) | \
463 (1ULL << (RISCV_EXCP_U_ECALL)) | \
464 (1ULL << (RISCV_EXCP_S_ECALL)) | \
465 (1ULL << (RISCV_EXCP_VS_ECALL)) | \
466 (1ULL << (RISCV_EXCP_M_ECALL)) | \
467 (1ULL << (RISCV_EXCP_INST_PAGE_FAULT)) | \
468 (1ULL << (RISCV_EXCP_LOAD_PAGE_FAULT)) | \
469 (1ULL << (RISCV_EXCP_STORE_PAGE_FAULT)) | \
470 (1ULL << (RISCV_EXCP_INST_GUEST_PAGE_FAULT)) | \
471 (1ULL << (RISCV_EXCP_LOAD_GUEST_ACCESS_FAULT)) | \
472 (1ULL << (RISCV_EXCP_VIRT_INSTRUCTION_FAULT)) | \
473 (1ULL << (RISCV_EXCP_STORE_GUEST_AMO_ACCESS_FAULT)))
474 static const target_ulong vs_delegable_excps = DELEGABLE_EXCPS &
475 ~((1ULL << (RISCV_EXCP_S_ECALL)) |
476 (1ULL << (RISCV_EXCP_VS_ECALL)) |
477 (1ULL << (RISCV_EXCP_M_ECALL)) |
478 (1ULL << (RISCV_EXCP_INST_GUEST_PAGE_FAULT)) |
479 (1ULL << (RISCV_EXCP_LOAD_GUEST_ACCESS_FAULT)) |
480 (1ULL << (RISCV_EXCP_VIRT_INSTRUCTION_FAULT)) |
481 (1ULL << (RISCV_EXCP_STORE_GUEST_AMO_ACCESS_FAULT)));
482 static const target_ulong sstatus_v1_10_mask = SSTATUS_SIE | SSTATUS_SPIE |
483 SSTATUS_UIE | SSTATUS_UPIE | SSTATUS_SPP | SSTATUS_FS | SSTATUS_XS |
484 SSTATUS_SUM | SSTATUS_MXR | SSTATUS_VS | (target_ulong)SSTATUS64_UXL;
485 static const target_ulong sip_writable_mask = SIP_SSIP | MIP_USIP | MIP_UEIP;
486 static const target_ulong hip_writable_mask = MIP_VSSIP;
487 static const target_ulong hvip_writable_mask = MIP_VSSIP | MIP_VSTIP | MIP_VSEIP;
488 static const target_ulong vsip_writable_mask = MIP_VSSIP;
490 static const char valid_vm_1_10_32[16] = {
495 static const char valid_vm_1_10_64[16] = {
502 /* Machine Information Registers */
503 static RISCVException read_zero(CPURISCVState *env, int csrno,
507 return RISCV_EXCP_NONE;
510 static RISCVException read_mhartid(CPURISCVState *env, int csrno,
514 return RISCV_EXCP_NONE;
517 /* Machine Trap Setup */
519 /* We do not store SD explicitly, only compute it on demand. */
520 static uint64_t add_status_sd(RISCVMXL xl, uint64_t status)
522 if ((status & MSTATUS_FS) == MSTATUS_FS ||
523 (status & MSTATUS_VS) == MSTATUS_VS ||
524 (status & MSTATUS_XS) == MSTATUS_XS) {
527 return status | MSTATUS32_SD;
529 return status | MSTATUS64_SD;
531 return MSTATUSH128_SD;
533 g_assert_not_reached();
539 static RISCVException read_mstatus(CPURISCVState *env, int csrno,
542 *val = add_status_sd(riscv_cpu_mxl(env), env->mstatus);
543 return RISCV_EXCP_NONE;
546 static int validate_vm(CPURISCVState *env, target_ulong vm)
548 if (riscv_cpu_mxl(env) == MXL_RV32) {
549 return valid_vm_1_10_32[vm & 0xf];
551 return valid_vm_1_10_64[vm & 0xf];
555 static RISCVException write_mstatus(CPURISCVState *env, int csrno,
558 uint64_t mstatus = env->mstatus;
561 /* flush tlb on mstatus fields that affect VM */
562 if ((val ^ mstatus) & (MSTATUS_MXR | MSTATUS_MPP | MSTATUS_MPV |
563 MSTATUS_MPRV | MSTATUS_SUM)) {
564 tlb_flush(env_cpu(env));
566 mask = MSTATUS_SIE | MSTATUS_SPIE | MSTATUS_MIE | MSTATUS_MPIE |
567 MSTATUS_SPP | MSTATUS_FS | MSTATUS_MPRV | MSTATUS_SUM |
568 MSTATUS_MPP | MSTATUS_MXR | MSTATUS_TVM | MSTATUS_TSR |
569 MSTATUS_TW | MSTATUS_VS;
571 if (riscv_cpu_mxl(env) != MXL_RV32) {
573 * RV32: MPV and GVA are not in mstatus. The current plan is to
574 * add them to mstatush. For now, we just don't support it.
576 mask |= MSTATUS_MPV | MSTATUS_GVA;
579 mstatus = (mstatus & ~mask) | (val & mask);
581 RISCVMXL xl = riscv_cpu_mxl(env);
583 /* SXL and UXL fields are for now read only */
584 mstatus = set_field(mstatus, MSTATUS64_SXL, xl);
585 mstatus = set_field(mstatus, MSTATUS64_UXL, xl);
587 env->mstatus = mstatus;
589 return RISCV_EXCP_NONE;
592 static RISCVException read_mstatush(CPURISCVState *env, int csrno,
595 *val = env->mstatus >> 32;
596 return RISCV_EXCP_NONE;
599 static RISCVException write_mstatush(CPURISCVState *env, int csrno,
602 uint64_t valh = (uint64_t)val << 32;
603 uint64_t mask = MSTATUS_MPV | MSTATUS_GVA;
605 if ((valh ^ env->mstatus) & (MSTATUS_MPV)) {
606 tlb_flush(env_cpu(env));
609 env->mstatus = (env->mstatus & ~mask) | (valh & mask);
611 return RISCV_EXCP_NONE;
614 static RISCVException read_mstatus_i128(CPURISCVState *env, int csrno,
617 *val = int128_make128(env->mstatus, add_status_sd(MXL_RV128, env->mstatus));
618 return RISCV_EXCP_NONE;
621 static RISCVException read_misa_i128(CPURISCVState *env, int csrno,
624 *val = int128_make128(env->misa_ext, (uint64_t)MXL_RV128 << 62);
625 return RISCV_EXCP_NONE;
628 static RISCVException read_misa(CPURISCVState *env, int csrno,
633 switch (env->misa_mxl) {
635 misa = (target_ulong)MXL_RV32 << 30;
637 #ifdef TARGET_RISCV64
639 misa = (target_ulong)MXL_RV64 << 62;
643 g_assert_not_reached();
646 *val = misa | env->misa_ext;
647 return RISCV_EXCP_NONE;
650 static RISCVException write_misa(CPURISCVState *env, int csrno,
653 if (!riscv_feature(env, RISCV_FEATURE_MISA)) {
654 /* drop write to misa */
655 return RISCV_EXCP_NONE;
658 /* 'I' or 'E' must be present */
659 if (!(val & (RVI | RVE))) {
660 /* It is not, drop write to misa */
661 return RISCV_EXCP_NONE;
664 /* 'E' excludes all other extensions */
666 /* when we support 'E' we can do "val = RVE;" however
667 * for now we just drop writes if 'E' is present.
669 return RISCV_EXCP_NONE;
673 * misa.MXL writes are not supported by QEMU.
674 * Drop writes to those bits.
677 /* Mask extensions that are not supported by this hart */
678 val &= env->misa_ext_mask;
680 /* Mask extensions that are not supported by QEMU */
681 val &= (RVI | RVE | RVM | RVA | RVF | RVD | RVC | RVS | RVU | RVV);
683 /* 'D' depends on 'F', so clear 'D' if 'F' is not present */
684 if ((val & RVD) && !(val & RVF)) {
688 /* Suppress 'C' if next instruction is not aligned
689 * TODO: this should check next_pc
691 if ((val & RVC) && (GETPC() & ~3) != 0) {
695 /* If nothing changed, do nothing. */
696 if (val == env->misa_ext) {
697 return RISCV_EXCP_NONE;
700 /* flush translation cache */
701 tb_flush(env_cpu(env));
703 return RISCV_EXCP_NONE;
706 static RISCVException read_medeleg(CPURISCVState *env, int csrno,
710 return RISCV_EXCP_NONE;
713 static RISCVException write_medeleg(CPURISCVState *env, int csrno,
716 env->medeleg = (env->medeleg & ~DELEGABLE_EXCPS) | (val & DELEGABLE_EXCPS);
717 return RISCV_EXCP_NONE;
720 static RISCVException read_mideleg(CPURISCVState *env, int csrno,
724 return RISCV_EXCP_NONE;
727 static RISCVException write_mideleg(CPURISCVState *env, int csrno,
730 env->mideleg = (env->mideleg & ~delegable_ints) | (val & delegable_ints);
731 if (riscv_has_ext(env, RVH)) {
732 env->mideleg |= VS_MODE_INTERRUPTS;
734 return RISCV_EXCP_NONE;
737 static RISCVException read_mie(CPURISCVState *env, int csrno,
741 return RISCV_EXCP_NONE;
744 static RISCVException write_mie(CPURISCVState *env, int csrno,
747 env->mie = (env->mie & ~all_ints) | (val & all_ints);
748 return RISCV_EXCP_NONE;
751 static RISCVException read_mtvec(CPURISCVState *env, int csrno,
755 return RISCV_EXCP_NONE;
758 static RISCVException write_mtvec(CPURISCVState *env, int csrno,
761 /* bits [1:0] encode mode; 0 = direct, 1 = vectored, 2 >= reserved */
765 qemu_log_mask(LOG_UNIMP, "CSR_MTVEC: reserved mode not supported\n");
767 return RISCV_EXCP_NONE;
770 static RISCVException read_mcounteren(CPURISCVState *env, int csrno,
773 *val = env->mcounteren;
774 return RISCV_EXCP_NONE;
777 static RISCVException write_mcounteren(CPURISCVState *env, int csrno,
780 env->mcounteren = val;
781 return RISCV_EXCP_NONE;
784 /* Machine Trap Handling */
785 static RISCVException read_mscratch_i128(CPURISCVState *env, int csrno,
788 *val = int128_make128(env->mscratch, env->mscratchh);
789 return RISCV_EXCP_NONE;
792 static RISCVException write_mscratch_i128(CPURISCVState *env, int csrno,
795 env->mscratch = int128_getlo(val);
796 env->mscratchh = int128_gethi(val);
797 return RISCV_EXCP_NONE;
800 static RISCVException read_mscratch(CPURISCVState *env, int csrno,
803 *val = env->mscratch;
804 return RISCV_EXCP_NONE;
807 static RISCVException write_mscratch(CPURISCVState *env, int csrno,
811 return RISCV_EXCP_NONE;
814 static RISCVException read_mepc(CPURISCVState *env, int csrno,
818 return RISCV_EXCP_NONE;
821 static RISCVException write_mepc(CPURISCVState *env, int csrno,
825 return RISCV_EXCP_NONE;
828 static RISCVException read_mcause(CPURISCVState *env, int csrno,
832 return RISCV_EXCP_NONE;
835 static RISCVException write_mcause(CPURISCVState *env, int csrno,
839 return RISCV_EXCP_NONE;
842 static RISCVException read_mtval(CPURISCVState *env, int csrno,
846 return RISCV_EXCP_NONE;
849 static RISCVException write_mtval(CPURISCVState *env, int csrno,
853 return RISCV_EXCP_NONE;
856 static RISCVException rmw_mip(CPURISCVState *env, int csrno,
857 target_ulong *ret_value,
858 target_ulong new_value, target_ulong write_mask)
860 RISCVCPU *cpu = env_archcpu(env);
861 /* Allow software control of delegable interrupts not claimed by hardware */
862 target_ulong mask = write_mask & delegable_ints & ~env->miclaim;
866 old_mip = riscv_cpu_update_mip(cpu, mask, (new_value & mask));
872 *ret_value = old_mip;
875 return RISCV_EXCP_NONE;
878 /* Supervisor Trap Setup */
879 static RISCVException read_sstatus_i128(CPURISCVState *env, int csrno,
882 uint64_t mask = sstatus_v1_10_mask;
883 uint64_t sstatus = env->mstatus & mask;
885 *val = int128_make128(sstatus, add_status_sd(MXL_RV128, sstatus));
886 return RISCV_EXCP_NONE;
889 static RISCVException read_sstatus(CPURISCVState *env, int csrno,
892 target_ulong mask = (sstatus_v1_10_mask);
894 /* TODO: Use SXL not MXL. */
895 *val = add_status_sd(riscv_cpu_mxl(env), env->mstatus & mask);
896 return RISCV_EXCP_NONE;
899 static RISCVException write_sstatus(CPURISCVState *env, int csrno,
902 target_ulong mask = (sstatus_v1_10_mask);
903 target_ulong newval = (env->mstatus & ~mask) | (val & mask);
904 return write_mstatus(env, CSR_MSTATUS, newval);
907 static RISCVException read_vsie(CPURISCVState *env, int csrno,
910 /* Shift the VS bits to their S bit location in vsie */
911 *val = (env->mie & env->hideleg & VS_MODE_INTERRUPTS) >> 1;
912 return RISCV_EXCP_NONE;
915 static RISCVException read_sie(CPURISCVState *env, int csrno,
918 if (riscv_cpu_virt_enabled(env)) {
919 read_vsie(env, CSR_VSIE, val);
921 *val = env->mie & env->mideleg;
923 return RISCV_EXCP_NONE;
926 static RISCVException write_vsie(CPURISCVState *env, int csrno,
929 /* Shift the S bits to their VS bit location in mie */
930 target_ulong newval = (env->mie & ~VS_MODE_INTERRUPTS) |
931 ((val << 1) & env->hideleg & VS_MODE_INTERRUPTS);
932 return write_mie(env, CSR_MIE, newval);
935 static int write_sie(CPURISCVState *env, int csrno, target_ulong val)
937 if (riscv_cpu_virt_enabled(env)) {
938 write_vsie(env, CSR_VSIE, val);
940 target_ulong newval = (env->mie & ~S_MODE_INTERRUPTS) |
941 (val & S_MODE_INTERRUPTS);
942 write_mie(env, CSR_MIE, newval);
945 return RISCV_EXCP_NONE;
948 static RISCVException read_stvec(CPURISCVState *env, int csrno,
952 return RISCV_EXCP_NONE;
955 static RISCVException write_stvec(CPURISCVState *env, int csrno,
958 /* bits [1:0] encode mode; 0 = direct, 1 = vectored, 2 >= reserved */
962 qemu_log_mask(LOG_UNIMP, "CSR_STVEC: reserved mode not supported\n");
964 return RISCV_EXCP_NONE;
967 static RISCVException read_scounteren(CPURISCVState *env, int csrno,
970 *val = env->scounteren;
971 return RISCV_EXCP_NONE;
974 static RISCVException write_scounteren(CPURISCVState *env, int csrno,
977 env->scounteren = val;
978 return RISCV_EXCP_NONE;
981 /* Supervisor Trap Handling */
982 static RISCVException read_sscratch_i128(CPURISCVState *env, int csrno,
985 *val = int128_make128(env->sscratch, env->sscratchh);
986 return RISCV_EXCP_NONE;
989 static RISCVException write_sscratch_i128(CPURISCVState *env, int csrno,
992 env->sscratch = int128_getlo(val);
993 env->sscratchh = int128_gethi(val);
994 return RISCV_EXCP_NONE;
997 static RISCVException read_sscratch(CPURISCVState *env, int csrno,
1000 *val = env->sscratch;
1001 return RISCV_EXCP_NONE;
1004 static RISCVException write_sscratch(CPURISCVState *env, int csrno,
1007 env->sscratch = val;
1008 return RISCV_EXCP_NONE;
1011 static RISCVException read_sepc(CPURISCVState *env, int csrno,
1015 return RISCV_EXCP_NONE;
1018 static RISCVException write_sepc(CPURISCVState *env, int csrno,
1022 return RISCV_EXCP_NONE;
1025 static RISCVException read_scause(CPURISCVState *env, int csrno,
1029 return RISCV_EXCP_NONE;
1032 static RISCVException write_scause(CPURISCVState *env, int csrno,
1036 return RISCV_EXCP_NONE;
1039 static RISCVException read_stval(CPURISCVState *env, int csrno,
1043 return RISCV_EXCP_NONE;
1046 static RISCVException write_stval(CPURISCVState *env, int csrno,
1050 return RISCV_EXCP_NONE;
1053 static RISCVException rmw_vsip(CPURISCVState *env, int csrno,
1054 target_ulong *ret_value,
1055 target_ulong new_value, target_ulong write_mask)
1057 /* Shift the S bits to their VS bit location in mip */
1058 int ret = rmw_mip(env, 0, ret_value, new_value << 1,
1059 (write_mask << 1) & vsip_writable_mask & env->hideleg);
1062 *ret_value &= VS_MODE_INTERRUPTS;
1063 /* Shift the VS bits to their S bit location in vsip */
1069 static RISCVException rmw_sip(CPURISCVState *env, int csrno,
1070 target_ulong *ret_value,
1071 target_ulong new_value, target_ulong write_mask)
1075 if (riscv_cpu_virt_enabled(env)) {
1076 ret = rmw_vsip(env, CSR_VSIP, ret_value, new_value, write_mask);
1078 ret = rmw_mip(env, CSR_MSTATUS, ret_value, new_value,
1079 write_mask & env->mideleg & sip_writable_mask);
1083 *ret_value &= env->mideleg;
1088 /* Supervisor Protection and Translation */
1089 static RISCVException read_satp(CPURISCVState *env, int csrno,
1092 if (!riscv_feature(env, RISCV_FEATURE_MMU)) {
1094 return RISCV_EXCP_NONE;
1097 if (env->priv == PRV_S && get_field(env->mstatus, MSTATUS_TVM)) {
1098 return RISCV_EXCP_ILLEGAL_INST;
1103 return RISCV_EXCP_NONE;
1106 static RISCVException write_satp(CPURISCVState *env, int csrno,
1109 target_ulong vm, mask, asid;
1111 if (!riscv_feature(env, RISCV_FEATURE_MMU)) {
1112 return RISCV_EXCP_NONE;
1115 if (riscv_cpu_mxl(env) == MXL_RV32) {
1116 vm = validate_vm(env, get_field(val, SATP32_MODE));
1117 mask = (val ^ env->satp) & (SATP32_MODE | SATP32_ASID | SATP32_PPN);
1118 asid = (val ^ env->satp) & SATP32_ASID;
1120 vm = validate_vm(env, get_field(val, SATP64_MODE));
1121 mask = (val ^ env->satp) & (SATP64_MODE | SATP64_ASID | SATP64_PPN);
1122 asid = (val ^ env->satp) & SATP64_ASID;
1126 if (env->priv == PRV_S && get_field(env->mstatus, MSTATUS_TVM)) {
1127 return RISCV_EXCP_ILLEGAL_INST;
1130 tlb_flush(env_cpu(env));
1135 return RISCV_EXCP_NONE;
1138 /* Hypervisor Extensions */
1139 static RISCVException read_hstatus(CPURISCVState *env, int csrno,
1142 *val = env->hstatus;
1143 if (riscv_cpu_mxl(env) != MXL_RV32) {
1144 /* We only support 64-bit VSXL */
1145 *val = set_field(*val, HSTATUS_VSXL, 2);
1147 /* We only support little endian */
1148 *val = set_field(*val, HSTATUS_VSBE, 0);
1149 return RISCV_EXCP_NONE;
1152 static RISCVException write_hstatus(CPURISCVState *env, int csrno,
1156 if (riscv_cpu_mxl(env) != MXL_RV32 && get_field(val, HSTATUS_VSXL) != 2) {
1157 qemu_log_mask(LOG_UNIMP, "QEMU does not support mixed HSXLEN options.");
1159 if (get_field(val, HSTATUS_VSBE) != 0) {
1160 qemu_log_mask(LOG_UNIMP, "QEMU does not support big endian guests.");
1162 return RISCV_EXCP_NONE;
1165 static RISCVException read_hedeleg(CPURISCVState *env, int csrno,
1168 *val = env->hedeleg;
1169 return RISCV_EXCP_NONE;
1172 static RISCVException write_hedeleg(CPURISCVState *env, int csrno,
1175 env->hedeleg = val & vs_delegable_excps;
1176 return RISCV_EXCP_NONE;
1179 static RISCVException read_hideleg(CPURISCVState *env, int csrno,
1182 *val = env->hideleg;
1183 return RISCV_EXCP_NONE;
1186 static RISCVException write_hideleg(CPURISCVState *env, int csrno,
1189 env->hideleg = val & vs_delegable_ints;
1190 return RISCV_EXCP_NONE;
1193 static RISCVException rmw_hvip(CPURISCVState *env, int csrno,
1194 target_ulong *ret_value,
1195 target_ulong new_value, target_ulong write_mask)
1197 int ret = rmw_mip(env, 0, ret_value, new_value,
1198 write_mask & hvip_writable_mask);
1201 *ret_value &= hvip_writable_mask;
1206 static RISCVException rmw_hip(CPURISCVState *env, int csrno,
1207 target_ulong *ret_value,
1208 target_ulong new_value, target_ulong write_mask)
1210 int ret = rmw_mip(env, 0, ret_value, new_value,
1211 write_mask & hip_writable_mask);
1214 *ret_value &= hip_writable_mask;
1219 static RISCVException read_hie(CPURISCVState *env, int csrno,
1222 *val = env->mie & VS_MODE_INTERRUPTS;
1223 return RISCV_EXCP_NONE;
1226 static RISCVException write_hie(CPURISCVState *env, int csrno,
1229 target_ulong newval = (env->mie & ~VS_MODE_INTERRUPTS) | (val & VS_MODE_INTERRUPTS);
1230 return write_mie(env, CSR_MIE, newval);
1233 static RISCVException read_hcounteren(CPURISCVState *env, int csrno,
1236 *val = env->hcounteren;
1237 return RISCV_EXCP_NONE;
1240 static RISCVException write_hcounteren(CPURISCVState *env, int csrno,
1243 env->hcounteren = val;
1244 return RISCV_EXCP_NONE;
1247 static RISCVException write_hgeie(CPURISCVState *env, int csrno,
1251 qemu_log_mask(LOG_UNIMP, "No support for a non-zero GEILEN.");
1253 return RISCV_EXCP_NONE;
1256 static RISCVException read_htval(CPURISCVState *env, int csrno,
1260 return RISCV_EXCP_NONE;
1263 static RISCVException write_htval(CPURISCVState *env, int csrno,
1267 return RISCV_EXCP_NONE;
1270 static RISCVException read_htinst(CPURISCVState *env, int csrno,
1274 return RISCV_EXCP_NONE;
1277 static RISCVException write_htinst(CPURISCVState *env, int csrno,
1280 return RISCV_EXCP_NONE;
1283 static RISCVException write_hgeip(CPURISCVState *env, int csrno,
1287 qemu_log_mask(LOG_UNIMP, "No support for a non-zero GEILEN.");
1289 return RISCV_EXCP_NONE;
1292 static RISCVException read_hgatp(CPURISCVState *env, int csrno,
1296 return RISCV_EXCP_NONE;
1299 static RISCVException write_hgatp(CPURISCVState *env, int csrno,
1303 return RISCV_EXCP_NONE;
1306 static RISCVException read_htimedelta(CPURISCVState *env, int csrno,
1309 if (!env->rdtime_fn) {
1310 return RISCV_EXCP_ILLEGAL_INST;
1313 *val = env->htimedelta;
1314 return RISCV_EXCP_NONE;
1317 static RISCVException write_htimedelta(CPURISCVState *env, int csrno,
1320 if (!env->rdtime_fn) {
1321 return RISCV_EXCP_ILLEGAL_INST;
1324 if (riscv_cpu_mxl(env) == MXL_RV32) {
1325 env->htimedelta = deposit64(env->htimedelta, 0, 32, (uint64_t)val);
1327 env->htimedelta = val;
1329 return RISCV_EXCP_NONE;
1332 static RISCVException read_htimedeltah(CPURISCVState *env, int csrno,
1335 if (!env->rdtime_fn) {
1336 return RISCV_EXCP_ILLEGAL_INST;
1339 *val = env->htimedelta >> 32;
1340 return RISCV_EXCP_NONE;
1343 static RISCVException write_htimedeltah(CPURISCVState *env, int csrno,
1346 if (!env->rdtime_fn) {
1347 return RISCV_EXCP_ILLEGAL_INST;
1350 env->htimedelta = deposit64(env->htimedelta, 32, 32, (uint64_t)val);
1351 return RISCV_EXCP_NONE;
1354 /* Virtual CSR Registers */
1355 static RISCVException read_vsstatus(CPURISCVState *env, int csrno,
1358 *val = env->vsstatus;
1359 return RISCV_EXCP_NONE;
1362 static RISCVException write_vsstatus(CPURISCVState *env, int csrno,
1365 uint64_t mask = (target_ulong)-1;
1366 env->vsstatus = (env->vsstatus & ~mask) | (uint64_t)val;
1367 return RISCV_EXCP_NONE;
1370 static int read_vstvec(CPURISCVState *env, int csrno, target_ulong *val)
1373 return RISCV_EXCP_NONE;
1376 static RISCVException write_vstvec(CPURISCVState *env, int csrno,
1380 return RISCV_EXCP_NONE;
1383 static RISCVException read_vsscratch(CPURISCVState *env, int csrno,
1386 *val = env->vsscratch;
1387 return RISCV_EXCP_NONE;
1390 static RISCVException write_vsscratch(CPURISCVState *env, int csrno,
1393 env->vsscratch = val;
1394 return RISCV_EXCP_NONE;
1397 static RISCVException read_vsepc(CPURISCVState *env, int csrno,
1401 return RISCV_EXCP_NONE;
1404 static RISCVException write_vsepc(CPURISCVState *env, int csrno,
1408 return RISCV_EXCP_NONE;
1411 static RISCVException read_vscause(CPURISCVState *env, int csrno,
1414 *val = env->vscause;
1415 return RISCV_EXCP_NONE;
1418 static RISCVException write_vscause(CPURISCVState *env, int csrno,
1422 return RISCV_EXCP_NONE;
1425 static RISCVException read_vstval(CPURISCVState *env, int csrno,
1429 return RISCV_EXCP_NONE;
1432 static RISCVException write_vstval(CPURISCVState *env, int csrno,
1436 return RISCV_EXCP_NONE;
1439 static RISCVException read_vsatp(CPURISCVState *env, int csrno,
1443 return RISCV_EXCP_NONE;
1446 static RISCVException write_vsatp(CPURISCVState *env, int csrno,
1450 return RISCV_EXCP_NONE;
1453 static RISCVException read_mtval2(CPURISCVState *env, int csrno,
1457 return RISCV_EXCP_NONE;
1460 static RISCVException write_mtval2(CPURISCVState *env, int csrno,
1464 return RISCV_EXCP_NONE;
1467 static RISCVException read_mtinst(CPURISCVState *env, int csrno,
1471 return RISCV_EXCP_NONE;
1474 static RISCVException write_mtinst(CPURISCVState *env, int csrno,
1478 return RISCV_EXCP_NONE;
1481 /* Physical Memory Protection */
1482 static RISCVException read_mseccfg(CPURISCVState *env, int csrno,
1485 *val = mseccfg_csr_read(env);
1486 return RISCV_EXCP_NONE;
1489 static RISCVException write_mseccfg(CPURISCVState *env, int csrno,
1492 mseccfg_csr_write(env, val);
1493 return RISCV_EXCP_NONE;
1496 static RISCVException read_pmpcfg(CPURISCVState *env, int csrno,
1499 *val = pmpcfg_csr_read(env, csrno - CSR_PMPCFG0);
1500 return RISCV_EXCP_NONE;
1503 static RISCVException write_pmpcfg(CPURISCVState *env, int csrno,
1506 pmpcfg_csr_write(env, csrno - CSR_PMPCFG0, val);
1507 return RISCV_EXCP_NONE;
1510 static RISCVException read_pmpaddr(CPURISCVState *env, int csrno,
1513 *val = pmpaddr_csr_read(env, csrno - CSR_PMPADDR0);
1514 return RISCV_EXCP_NONE;
1517 static RISCVException write_pmpaddr(CPURISCVState *env, int csrno,
1520 pmpaddr_csr_write(env, csrno - CSR_PMPADDR0, val);
1521 return RISCV_EXCP_NONE;
1525 * Functions to access Pointer Masking feature registers
1526 * We have to check if current priv lvl could modify
1529 static bool check_pm_current_disabled(CPURISCVState *env, int csrno)
1531 int csr_priv = get_field(csrno, 0x300);
1535 * If priv lvls differ that means we're accessing csr from higher priv lvl,
1536 * so allow the access
1538 if (env->priv != csr_priv) {
1541 switch (env->priv) {
1543 pm_current = get_field(env->mmte, M_PM_CURRENT);
1546 pm_current = get_field(env->mmte, S_PM_CURRENT);
1549 pm_current = get_field(env->mmte, U_PM_CURRENT);
1552 g_assert_not_reached();
1554 /* It's same priv lvl, so we allow to modify csr only if pm.current==1 */
1558 static RISCVException read_mmte(CPURISCVState *env, int csrno,
1561 *val = env->mmte & MMTE_MASK;
1562 return RISCV_EXCP_NONE;
1565 static RISCVException write_mmte(CPURISCVState *env, int csrno,
1569 target_ulong wpri_val = val & MMTE_MASK;
1571 if (val != wpri_val) {
1572 qemu_log_mask(LOG_GUEST_ERROR, "%s" TARGET_FMT_lx " %s" TARGET_FMT_lx "\n",
1573 "MMTE: WPRI violation written 0x", val,
1574 "vs expected 0x", wpri_val);
1576 /* for machine mode pm.current is hardwired to 1 */
1577 wpri_val |= MMTE_M_PM_CURRENT;
1579 /* hardwiring pm.instruction bit to 0, since it's not supported yet */
1580 wpri_val &= ~(MMTE_M_PM_INSN | MMTE_S_PM_INSN | MMTE_U_PM_INSN);
1581 env->mmte = wpri_val | PM_EXT_DIRTY;
1583 /* Set XS and SD bits, since PM CSRs are dirty */
1584 mstatus = env->mstatus | MSTATUS_XS;
1585 write_mstatus(env, csrno, mstatus);
1586 return RISCV_EXCP_NONE;
1589 static RISCVException read_smte(CPURISCVState *env, int csrno,
1592 *val = env->mmte & SMTE_MASK;
1593 return RISCV_EXCP_NONE;
1596 static RISCVException write_smte(CPURISCVState *env, int csrno,
1599 target_ulong wpri_val = val & SMTE_MASK;
1601 if (val != wpri_val) {
1602 qemu_log_mask(LOG_GUEST_ERROR, "%s" TARGET_FMT_lx " %s" TARGET_FMT_lx "\n",
1603 "SMTE: WPRI violation written 0x", val,
1604 "vs expected 0x", wpri_val);
1607 /* if pm.current==0 we can't modify current PM CSRs */
1608 if (check_pm_current_disabled(env, csrno)) {
1609 return RISCV_EXCP_NONE;
1612 wpri_val |= (env->mmte & ~SMTE_MASK);
1613 write_mmte(env, csrno, wpri_val);
1614 return RISCV_EXCP_NONE;
1617 static RISCVException read_umte(CPURISCVState *env, int csrno,
1620 *val = env->mmte & UMTE_MASK;
1621 return RISCV_EXCP_NONE;
1624 static RISCVException write_umte(CPURISCVState *env, int csrno,
1627 target_ulong wpri_val = val & UMTE_MASK;
1629 if (val != wpri_val) {
1630 qemu_log_mask(LOG_GUEST_ERROR, "%s" TARGET_FMT_lx " %s" TARGET_FMT_lx "\n",
1631 "UMTE: WPRI violation written 0x", val,
1632 "vs expected 0x", wpri_val);
1635 if (check_pm_current_disabled(env, csrno)) {
1636 return RISCV_EXCP_NONE;
1639 wpri_val |= (env->mmte & ~UMTE_MASK);
1640 write_mmte(env, csrno, wpri_val);
1641 return RISCV_EXCP_NONE;
1644 static RISCVException read_mpmmask(CPURISCVState *env, int csrno,
1647 *val = env->mpmmask;
1648 return RISCV_EXCP_NONE;
1651 static RISCVException write_mpmmask(CPURISCVState *env, int csrno,
1657 env->mmte |= PM_EXT_DIRTY;
1659 /* Set XS and SD bits, since PM CSRs are dirty */
1660 mstatus = env->mstatus | MSTATUS_XS;
1661 write_mstatus(env, csrno, mstatus);
1662 return RISCV_EXCP_NONE;
1665 static RISCVException read_spmmask(CPURISCVState *env, int csrno,
1668 *val = env->spmmask;
1669 return RISCV_EXCP_NONE;
1672 static RISCVException write_spmmask(CPURISCVState *env, int csrno,
1677 /* if pm.current==0 we can't modify current PM CSRs */
1678 if (check_pm_current_disabled(env, csrno)) {
1679 return RISCV_EXCP_NONE;
1682 env->mmte |= PM_EXT_DIRTY;
1684 /* Set XS and SD bits, since PM CSRs are dirty */
1685 mstatus = env->mstatus | MSTATUS_XS;
1686 write_mstatus(env, csrno, mstatus);
1687 return RISCV_EXCP_NONE;
1690 static RISCVException read_upmmask(CPURISCVState *env, int csrno,
1693 *val = env->upmmask;
1694 return RISCV_EXCP_NONE;
1697 static RISCVException write_upmmask(CPURISCVState *env, int csrno,
1702 /* if pm.current==0 we can't modify current PM CSRs */
1703 if (check_pm_current_disabled(env, csrno)) {
1704 return RISCV_EXCP_NONE;
1707 env->mmte |= PM_EXT_DIRTY;
1709 /* Set XS and SD bits, since PM CSRs are dirty */
1710 mstatus = env->mstatus | MSTATUS_XS;
1711 write_mstatus(env, csrno, mstatus);
1712 return RISCV_EXCP_NONE;
1715 static RISCVException read_mpmbase(CPURISCVState *env, int csrno,
1718 *val = env->mpmbase;
1719 return RISCV_EXCP_NONE;
1722 static RISCVException write_mpmbase(CPURISCVState *env, int csrno,
1728 env->mmte |= PM_EXT_DIRTY;
1730 /* Set XS and SD bits, since PM CSRs are dirty */
1731 mstatus = env->mstatus | MSTATUS_XS;
1732 write_mstatus(env, csrno, mstatus);
1733 return RISCV_EXCP_NONE;
1736 static RISCVException read_spmbase(CPURISCVState *env, int csrno,
1739 *val = env->spmbase;
1740 return RISCV_EXCP_NONE;
1743 static RISCVException write_spmbase(CPURISCVState *env, int csrno,
1748 /* if pm.current==0 we can't modify current PM CSRs */
1749 if (check_pm_current_disabled(env, csrno)) {
1750 return RISCV_EXCP_NONE;
1753 env->mmte |= PM_EXT_DIRTY;
1755 /* Set XS and SD bits, since PM CSRs are dirty */
1756 mstatus = env->mstatus | MSTATUS_XS;
1757 write_mstatus(env, csrno, mstatus);
1758 return RISCV_EXCP_NONE;
1761 static RISCVException read_upmbase(CPURISCVState *env, int csrno,
1764 *val = env->upmbase;
1765 return RISCV_EXCP_NONE;
1768 static RISCVException write_upmbase(CPURISCVState *env, int csrno,
1773 /* if pm.current==0 we can't modify current PM CSRs */
1774 if (check_pm_current_disabled(env, csrno)) {
1775 return RISCV_EXCP_NONE;
1778 env->mmte |= PM_EXT_DIRTY;
1780 /* Set XS and SD bits, since PM CSRs are dirty */
1781 mstatus = env->mstatus | MSTATUS_XS;
1782 write_mstatus(env, csrno, mstatus);
1783 return RISCV_EXCP_NONE;
1789 * riscv_csrrw - read and/or update control and status register
1791 * csrr <-> riscv_csrrw(env, csrno, ret_value, 0, 0);
1792 * csrrw <-> riscv_csrrw(env, csrno, ret_value, value, -1);
1793 * csrrs <-> riscv_csrrw(env, csrno, ret_value, -1, value);
1794 * csrrc <-> riscv_csrrw(env, csrno, ret_value, 0, value);
1797 static inline RISCVException riscv_csrrw_check(CPURISCVState *env,
1802 /* check privileges and return RISCV_EXCP_ILLEGAL_INST if check fails */
1803 int read_only = get_field(csrno, 0xC00) == 3;
1804 #if !defined(CONFIG_USER_ONLY)
1805 int effective_priv = env->priv;
1807 if (riscv_has_ext(env, RVH) &&
1808 env->priv == PRV_S &&
1809 !riscv_cpu_virt_enabled(env)) {
1811 * We are in S mode without virtualisation, therefore we are in HS Mode.
1812 * Add 1 to the effective privledge level to allow us to access the
1818 if (!env->debugger && (effective_priv < get_field(csrno, 0x300))) {
1819 return RISCV_EXCP_ILLEGAL_INST;
1822 if (write_mask && read_only) {
1823 return RISCV_EXCP_ILLEGAL_INST;
1826 /* ensure the CSR extension is enabled. */
1827 if (!cpu->cfg.ext_icsr) {
1828 return RISCV_EXCP_ILLEGAL_INST;
1831 /* check predicate */
1832 if (!csr_ops[csrno].predicate) {
1833 return RISCV_EXCP_ILLEGAL_INST;
1836 return csr_ops[csrno].predicate(env, csrno);
1839 static RISCVException riscv_csrrw_do64(CPURISCVState *env, int csrno,
1840 target_ulong *ret_value,
1841 target_ulong new_value,
1842 target_ulong write_mask)
1845 target_ulong old_value;
1847 /* execute combined read/write operation if it exists */
1848 if (csr_ops[csrno].op) {
1849 return csr_ops[csrno].op(env, csrno, ret_value, new_value, write_mask);
1852 /* if no accessor exists then return failure */
1853 if (!csr_ops[csrno].read) {
1854 return RISCV_EXCP_ILLEGAL_INST;
1856 /* read old value */
1857 ret = csr_ops[csrno].read(env, csrno, &old_value);
1858 if (ret != RISCV_EXCP_NONE) {
1862 /* write value if writable and write mask set, otherwise drop writes */
1864 new_value = (old_value & ~write_mask) | (new_value & write_mask);
1865 if (csr_ops[csrno].write) {
1866 ret = csr_ops[csrno].write(env, csrno, new_value);
1867 if (ret != RISCV_EXCP_NONE) {
1873 /* return old value */
1875 *ret_value = old_value;
1878 return RISCV_EXCP_NONE;
1881 RISCVException riscv_csrrw(CPURISCVState *env, int csrno,
1882 target_ulong *ret_value,
1883 target_ulong new_value, target_ulong write_mask)
1885 RISCVCPU *cpu = env_archcpu(env);
1887 RISCVException ret = riscv_csrrw_check(env, csrno, write_mask, cpu);
1888 if (ret != RISCV_EXCP_NONE) {
1892 return riscv_csrrw_do64(env, csrno, ret_value, new_value, write_mask);
1895 static RISCVException riscv_csrrw_do128(CPURISCVState *env, int csrno,
1903 /* read old value */
1904 ret = csr_ops[csrno].read128(env, csrno, &old_value);
1905 if (ret != RISCV_EXCP_NONE) {
1909 /* write value if writable and write mask set, otherwise drop writes */
1910 if (int128_nz(write_mask)) {
1911 new_value = int128_or(int128_and(old_value, int128_not(write_mask)),
1912 int128_and(new_value, write_mask));
1913 if (csr_ops[csrno].write128) {
1914 ret = csr_ops[csrno].write128(env, csrno, new_value);
1915 if (ret != RISCV_EXCP_NONE) {
1918 } else if (csr_ops[csrno].write) {
1919 /* avoids having to write wrappers for all registers */
1920 ret = csr_ops[csrno].write(env, csrno, int128_getlo(new_value));
1921 if (ret != RISCV_EXCP_NONE) {
1927 /* return old value */
1929 *ret_value = old_value;
1932 return RISCV_EXCP_NONE;
1935 RISCVException riscv_csrrw_i128(CPURISCVState *env, int csrno,
1937 Int128 new_value, Int128 write_mask)
1940 RISCVCPU *cpu = env_archcpu(env);
1942 ret = riscv_csrrw_check(env, csrno, int128_nz(write_mask), cpu);
1943 if (ret != RISCV_EXCP_NONE) {
1947 if (csr_ops[csrno].read128) {
1948 return riscv_csrrw_do128(env, csrno, ret_value, new_value, write_mask);
1952 * Fall back to 64-bit version for now, if the 128-bit alternative isn't
1954 * Note, some CSRs don't need to extend to MXLEN (64 upper bits non
1955 * significant), for those, this fallback is correctly handling the accesses
1957 target_ulong old_value;
1958 ret = riscv_csrrw_do64(env, csrno, &old_value,
1959 int128_getlo(new_value),
1960 int128_getlo(write_mask));
1961 if (ret == RISCV_EXCP_NONE && ret_value) {
1962 *ret_value = int128_make64(old_value);
1968 * Debugger support. If not in user mode, set env->debugger before the
1969 * riscv_csrrw call and clear it after the call.
1971 RISCVException riscv_csrrw_debug(CPURISCVState *env, int csrno,
1972 target_ulong *ret_value,
1973 target_ulong new_value,
1974 target_ulong write_mask)
1977 #if !defined(CONFIG_USER_ONLY)
1978 env->debugger = true;
1980 ret = riscv_csrrw(env, csrno, ret_value, new_value, write_mask);
1981 #if !defined(CONFIG_USER_ONLY)
1982 env->debugger = false;
1987 /* Control and Status Register function table */
1988 riscv_csr_operations csr_ops[CSR_TABLE_SIZE] = {
1989 /* User Floating-Point CSRs */
1990 [CSR_FFLAGS] = { "fflags", fs, read_fflags, write_fflags },
1991 [CSR_FRM] = { "frm", fs, read_frm, write_frm },
1992 [CSR_FCSR] = { "fcsr", fs, read_fcsr, write_fcsr },
1994 [CSR_VSTART] = { "vstart", vs, read_vstart, write_vstart },
1995 [CSR_VXSAT] = { "vxsat", vs, read_vxsat, write_vxsat },
1996 [CSR_VXRM] = { "vxrm", vs, read_vxrm, write_vxrm },
1997 [CSR_VCSR] = { "vcsr", vs, read_vcsr, write_vcsr },
1998 [CSR_VL] = { "vl", vs, read_vl },
1999 [CSR_VTYPE] = { "vtype", vs, read_vtype },
2000 [CSR_VLENB] = { "vlenb", vs, read_vlenb },
2001 /* User Timers and Counters */
2002 [CSR_CYCLE] = { "cycle", ctr, read_instret },
2003 [CSR_INSTRET] = { "instret", ctr, read_instret },
2004 [CSR_CYCLEH] = { "cycleh", ctr32, read_instreth },
2005 [CSR_INSTRETH] = { "instreth", ctr32, read_instreth },
2008 * In privileged mode, the monitor will have to emulate TIME CSRs only if
2009 * rdtime callback is not provided by machine/platform emulation.
2011 [CSR_TIME] = { "time", ctr, read_time },
2012 [CSR_TIMEH] = { "timeh", ctr32, read_timeh },
2014 #if !defined(CONFIG_USER_ONLY)
2015 /* Machine Timers and Counters */
2016 [CSR_MCYCLE] = { "mcycle", any, read_instret },
2017 [CSR_MINSTRET] = { "minstret", any, read_instret },
2018 [CSR_MCYCLEH] = { "mcycleh", any32, read_instreth },
2019 [CSR_MINSTRETH] = { "minstreth", any32, read_instreth },
2021 /* Machine Information Registers */
2022 [CSR_MVENDORID] = { "mvendorid", any, read_zero },
2023 [CSR_MARCHID] = { "marchid", any, read_zero },
2024 [CSR_MIMPID] = { "mimpid", any, read_zero },
2025 [CSR_MHARTID] = { "mhartid", any, read_mhartid },
2027 /* Machine Trap Setup */
2028 [CSR_MSTATUS] = { "mstatus", any, read_mstatus, write_mstatus, NULL,
2029 read_mstatus_i128 },
2030 [CSR_MISA] = { "misa", any, read_misa, write_misa, NULL,
2032 [CSR_MIDELEG] = { "mideleg", any, read_mideleg, write_mideleg },
2033 [CSR_MEDELEG] = { "medeleg", any, read_medeleg, write_medeleg },
2034 [CSR_MIE] = { "mie", any, read_mie, write_mie },
2035 [CSR_MTVEC] = { "mtvec", any, read_mtvec, write_mtvec },
2036 [CSR_MCOUNTEREN] = { "mcounteren", any, read_mcounteren, write_mcounteren },
2038 [CSR_MSTATUSH] = { "mstatush", any32, read_mstatush, write_mstatush },
2040 /* Machine Trap Handling */
2041 [CSR_MSCRATCH] = { "mscratch", any, read_mscratch, write_mscratch, NULL,
2042 read_mscratch_i128, write_mscratch_i128 },
2043 [CSR_MEPC] = { "mepc", any, read_mepc, write_mepc },
2044 [CSR_MCAUSE] = { "mcause", any, read_mcause, write_mcause },
2045 [CSR_MTVAL] = { "mtval", any, read_mtval, write_mtval },
2046 [CSR_MIP] = { "mip", any, NULL, NULL, rmw_mip },
2048 /* Supervisor Trap Setup */
2049 [CSR_SSTATUS] = { "sstatus", smode, read_sstatus, write_sstatus, NULL,
2050 read_sstatus_i128 },
2051 [CSR_SIE] = { "sie", smode, read_sie, write_sie },
2052 [CSR_STVEC] = { "stvec", smode, read_stvec, write_stvec },
2053 [CSR_SCOUNTEREN] = { "scounteren", smode, read_scounteren, write_scounteren },
2055 /* Supervisor Trap Handling */
2056 [CSR_SSCRATCH] = { "sscratch", smode, read_sscratch, write_sscratch, NULL,
2057 read_sscratch_i128, write_sscratch_i128 },
2058 [CSR_SEPC] = { "sepc", smode, read_sepc, write_sepc },
2059 [CSR_SCAUSE] = { "scause", smode, read_scause, write_scause },
2060 [CSR_STVAL] = { "stval", smode, read_stval, write_stval },
2061 [CSR_SIP] = { "sip", smode, NULL, NULL, rmw_sip },
2063 /* Supervisor Protection and Translation */
2064 [CSR_SATP] = { "satp", smode, read_satp, write_satp },
2066 [CSR_HSTATUS] = { "hstatus", hmode, read_hstatus, write_hstatus },
2067 [CSR_HEDELEG] = { "hedeleg", hmode, read_hedeleg, write_hedeleg },
2068 [CSR_HIDELEG] = { "hideleg", hmode, read_hideleg, write_hideleg },
2069 [CSR_HVIP] = { "hvip", hmode, NULL, NULL, rmw_hvip },
2070 [CSR_HIP] = { "hip", hmode, NULL, NULL, rmw_hip },
2071 [CSR_HIE] = { "hie", hmode, read_hie, write_hie },
2072 [CSR_HCOUNTEREN] = { "hcounteren", hmode, read_hcounteren, write_hcounteren },
2073 [CSR_HGEIE] = { "hgeie", hmode, read_zero, write_hgeie },
2074 [CSR_HTVAL] = { "htval", hmode, read_htval, write_htval },
2075 [CSR_HTINST] = { "htinst", hmode, read_htinst, write_htinst },
2076 [CSR_HGEIP] = { "hgeip", hmode, read_zero, write_hgeip },
2077 [CSR_HGATP] = { "hgatp", hmode, read_hgatp, write_hgatp },
2078 [CSR_HTIMEDELTA] = { "htimedelta", hmode, read_htimedelta, write_htimedelta },
2079 [CSR_HTIMEDELTAH] = { "htimedeltah", hmode32, read_htimedeltah, write_htimedeltah },
2081 [CSR_VSSTATUS] = { "vsstatus", hmode, read_vsstatus, write_vsstatus },
2082 [CSR_VSIP] = { "vsip", hmode, NULL, NULL, rmw_vsip },
2083 [CSR_VSIE] = { "vsie", hmode, read_vsie, write_vsie },
2084 [CSR_VSTVEC] = { "vstvec", hmode, read_vstvec, write_vstvec },
2085 [CSR_VSSCRATCH] = { "vsscratch", hmode, read_vsscratch, write_vsscratch },
2086 [CSR_VSEPC] = { "vsepc", hmode, read_vsepc, write_vsepc },
2087 [CSR_VSCAUSE] = { "vscause", hmode, read_vscause, write_vscause },
2088 [CSR_VSTVAL] = { "vstval", hmode, read_vstval, write_vstval },
2089 [CSR_VSATP] = { "vsatp", hmode, read_vsatp, write_vsatp },
2091 [CSR_MTVAL2] = { "mtval2", hmode, read_mtval2, write_mtval2 },
2092 [CSR_MTINST] = { "mtinst", hmode, read_mtinst, write_mtinst },
2094 /* Physical Memory Protection */
2095 [CSR_MSECCFG] = { "mseccfg", epmp, read_mseccfg, write_mseccfg },
2096 [CSR_PMPCFG0] = { "pmpcfg0", pmp, read_pmpcfg, write_pmpcfg },
2097 [CSR_PMPCFG1] = { "pmpcfg1", pmp, read_pmpcfg, write_pmpcfg },
2098 [CSR_PMPCFG2] = { "pmpcfg2", pmp, read_pmpcfg, write_pmpcfg },
2099 [CSR_PMPCFG3] = { "pmpcfg3", pmp, read_pmpcfg, write_pmpcfg },
2100 [CSR_PMPADDR0] = { "pmpaddr0", pmp, read_pmpaddr, write_pmpaddr },
2101 [CSR_PMPADDR1] = { "pmpaddr1", pmp, read_pmpaddr, write_pmpaddr },
2102 [CSR_PMPADDR2] = { "pmpaddr2", pmp, read_pmpaddr, write_pmpaddr },
2103 [CSR_PMPADDR3] = { "pmpaddr3", pmp, read_pmpaddr, write_pmpaddr },
2104 [CSR_PMPADDR4] = { "pmpaddr4", pmp, read_pmpaddr, write_pmpaddr },
2105 [CSR_PMPADDR5] = { "pmpaddr5", pmp, read_pmpaddr, write_pmpaddr },
2106 [CSR_PMPADDR6] = { "pmpaddr6", pmp, read_pmpaddr, write_pmpaddr },
2107 [CSR_PMPADDR7] = { "pmpaddr7", pmp, read_pmpaddr, write_pmpaddr },
2108 [CSR_PMPADDR8] = { "pmpaddr8", pmp, read_pmpaddr, write_pmpaddr },
2109 [CSR_PMPADDR9] = { "pmpaddr9", pmp, read_pmpaddr, write_pmpaddr },
2110 [CSR_PMPADDR10] = { "pmpaddr10", pmp, read_pmpaddr, write_pmpaddr },
2111 [CSR_PMPADDR11] = { "pmpaddr11", pmp, read_pmpaddr, write_pmpaddr },
2112 [CSR_PMPADDR12] = { "pmpaddr12", pmp, read_pmpaddr, write_pmpaddr },
2113 [CSR_PMPADDR13] = { "pmpaddr13", pmp, read_pmpaddr, write_pmpaddr },
2114 [CSR_PMPADDR14] = { "pmpaddr14", pmp, read_pmpaddr, write_pmpaddr },
2115 [CSR_PMPADDR15] = { "pmpaddr15", pmp, read_pmpaddr, write_pmpaddr },
2117 /* User Pointer Masking */
2118 [CSR_UMTE] = { "umte", pointer_masking, read_umte, write_umte },
2119 [CSR_UPMMASK] = { "upmmask", pointer_masking, read_upmmask, write_upmmask },
2120 [CSR_UPMBASE] = { "upmbase", pointer_masking, read_upmbase, write_upmbase },
2121 /* Machine Pointer Masking */
2122 [CSR_MMTE] = { "mmte", pointer_masking, read_mmte, write_mmte },
2123 [CSR_MPMMASK] = { "mpmmask", pointer_masking, read_mpmmask, write_mpmmask },
2124 [CSR_MPMBASE] = { "mpmbase", pointer_masking, read_mpmbase, write_mpmbase },
2125 /* Supervisor Pointer Masking */
2126 [CSR_SMTE] = { "smte", pointer_masking, read_smte, write_smte },
2127 [CSR_SPMMASK] = { "spmmask", pointer_masking, read_spmmask, write_spmmask },
2128 [CSR_SPMBASE] = { "spmbase", pointer_masking, read_spmbase, write_spmbase },
2130 /* Performance Counters */
2131 [CSR_HPMCOUNTER3] = { "hpmcounter3", ctr, read_zero },
2132 [CSR_HPMCOUNTER4] = { "hpmcounter4", ctr, read_zero },
2133 [CSR_HPMCOUNTER5] = { "hpmcounter5", ctr, read_zero },
2134 [CSR_HPMCOUNTER6] = { "hpmcounter6", ctr, read_zero },
2135 [CSR_HPMCOUNTER7] = { "hpmcounter7", ctr, read_zero },
2136 [CSR_HPMCOUNTER8] = { "hpmcounter8", ctr, read_zero },
2137 [CSR_HPMCOUNTER9] = { "hpmcounter9", ctr, read_zero },
2138 [CSR_HPMCOUNTER10] = { "hpmcounter10", ctr, read_zero },
2139 [CSR_HPMCOUNTER11] = { "hpmcounter11", ctr, read_zero },
2140 [CSR_HPMCOUNTER12] = { "hpmcounter12", ctr, read_zero },
2141 [CSR_HPMCOUNTER13] = { "hpmcounter13", ctr, read_zero },
2142 [CSR_HPMCOUNTER14] = { "hpmcounter14", ctr, read_zero },
2143 [CSR_HPMCOUNTER15] = { "hpmcounter15", ctr, read_zero },
2144 [CSR_HPMCOUNTER16] = { "hpmcounter16", ctr, read_zero },
2145 [CSR_HPMCOUNTER17] = { "hpmcounter17", ctr, read_zero },
2146 [CSR_HPMCOUNTER18] = { "hpmcounter18", ctr, read_zero },
2147 [CSR_HPMCOUNTER19] = { "hpmcounter19", ctr, read_zero },
2148 [CSR_HPMCOUNTER20] = { "hpmcounter20", ctr, read_zero },
2149 [CSR_HPMCOUNTER21] = { "hpmcounter21", ctr, read_zero },
2150 [CSR_HPMCOUNTER22] = { "hpmcounter22", ctr, read_zero },
2151 [CSR_HPMCOUNTER23] = { "hpmcounter23", ctr, read_zero },
2152 [CSR_HPMCOUNTER24] = { "hpmcounter24", ctr, read_zero },
2153 [CSR_HPMCOUNTER25] = { "hpmcounter25", ctr, read_zero },
2154 [CSR_HPMCOUNTER26] = { "hpmcounter26", ctr, read_zero },
2155 [CSR_HPMCOUNTER27] = { "hpmcounter27", ctr, read_zero },
2156 [CSR_HPMCOUNTER28] = { "hpmcounter28", ctr, read_zero },
2157 [CSR_HPMCOUNTER29] = { "hpmcounter29", ctr, read_zero },
2158 [CSR_HPMCOUNTER30] = { "hpmcounter30", ctr, read_zero },
2159 [CSR_HPMCOUNTER31] = { "hpmcounter31", ctr, read_zero },
2161 [CSR_MHPMCOUNTER3] = { "mhpmcounter3", any, read_zero },
2162 [CSR_MHPMCOUNTER4] = { "mhpmcounter4", any, read_zero },
2163 [CSR_MHPMCOUNTER5] = { "mhpmcounter5", any, read_zero },
2164 [CSR_MHPMCOUNTER6] = { "mhpmcounter6", any, read_zero },
2165 [CSR_MHPMCOUNTER7] = { "mhpmcounter7", any, read_zero },
2166 [CSR_MHPMCOUNTER8] = { "mhpmcounter8", any, read_zero },
2167 [CSR_MHPMCOUNTER9] = { "mhpmcounter9", any, read_zero },
2168 [CSR_MHPMCOUNTER10] = { "mhpmcounter10", any, read_zero },
2169 [CSR_MHPMCOUNTER11] = { "mhpmcounter11", any, read_zero },
2170 [CSR_MHPMCOUNTER12] = { "mhpmcounter12", any, read_zero },
2171 [CSR_MHPMCOUNTER13] = { "mhpmcounter13", any, read_zero },
2172 [CSR_MHPMCOUNTER14] = { "mhpmcounter14", any, read_zero },
2173 [CSR_MHPMCOUNTER15] = { "mhpmcounter15", any, read_zero },
2174 [CSR_MHPMCOUNTER16] = { "mhpmcounter16", any, read_zero },
2175 [CSR_MHPMCOUNTER17] = { "mhpmcounter17", any, read_zero },
2176 [CSR_MHPMCOUNTER18] = { "mhpmcounter18", any, read_zero },
2177 [CSR_MHPMCOUNTER19] = { "mhpmcounter19", any, read_zero },
2178 [CSR_MHPMCOUNTER20] = { "mhpmcounter20", any, read_zero },
2179 [CSR_MHPMCOUNTER21] = { "mhpmcounter21", any, read_zero },
2180 [CSR_MHPMCOUNTER22] = { "mhpmcounter22", any, read_zero },
2181 [CSR_MHPMCOUNTER23] = { "mhpmcounter23", any, read_zero },
2182 [CSR_MHPMCOUNTER24] = { "mhpmcounter24", any, read_zero },
2183 [CSR_MHPMCOUNTER25] = { "mhpmcounter25", any, read_zero },
2184 [CSR_MHPMCOUNTER26] = { "mhpmcounter26", any, read_zero },
2185 [CSR_MHPMCOUNTER27] = { "mhpmcounter27", any, read_zero },
2186 [CSR_MHPMCOUNTER28] = { "mhpmcounter28", any, read_zero },
2187 [CSR_MHPMCOUNTER29] = { "mhpmcounter29", any, read_zero },
2188 [CSR_MHPMCOUNTER30] = { "mhpmcounter30", any, read_zero },
2189 [CSR_MHPMCOUNTER31] = { "mhpmcounter31", any, read_zero },
2191 [CSR_MHPMEVENT3] = { "mhpmevent3", any, read_zero },
2192 [CSR_MHPMEVENT4] = { "mhpmevent4", any, read_zero },
2193 [CSR_MHPMEVENT5] = { "mhpmevent5", any, read_zero },
2194 [CSR_MHPMEVENT6] = { "mhpmevent6", any, read_zero },
2195 [CSR_MHPMEVENT7] = { "mhpmevent7", any, read_zero },
2196 [CSR_MHPMEVENT8] = { "mhpmevent8", any, read_zero },
2197 [CSR_MHPMEVENT9] = { "mhpmevent9", any, read_zero },
2198 [CSR_MHPMEVENT10] = { "mhpmevent10", any, read_zero },
2199 [CSR_MHPMEVENT11] = { "mhpmevent11", any, read_zero },
2200 [CSR_MHPMEVENT12] = { "mhpmevent12", any, read_zero },
2201 [CSR_MHPMEVENT13] = { "mhpmevent13", any, read_zero },
2202 [CSR_MHPMEVENT14] = { "mhpmevent14", any, read_zero },
2203 [CSR_MHPMEVENT15] = { "mhpmevent15", any, read_zero },
2204 [CSR_MHPMEVENT16] = { "mhpmevent16", any, read_zero },
2205 [CSR_MHPMEVENT17] = { "mhpmevent17", any, read_zero },
2206 [CSR_MHPMEVENT18] = { "mhpmevent18", any, read_zero },
2207 [CSR_MHPMEVENT19] = { "mhpmevent19", any, read_zero },
2208 [CSR_MHPMEVENT20] = { "mhpmevent20", any, read_zero },
2209 [CSR_MHPMEVENT21] = { "mhpmevent21", any, read_zero },
2210 [CSR_MHPMEVENT22] = { "mhpmevent22", any, read_zero },
2211 [CSR_MHPMEVENT23] = { "mhpmevent23", any, read_zero },
2212 [CSR_MHPMEVENT24] = { "mhpmevent24", any, read_zero },
2213 [CSR_MHPMEVENT25] = { "mhpmevent25", any, read_zero },
2214 [CSR_MHPMEVENT26] = { "mhpmevent26", any, read_zero },
2215 [CSR_MHPMEVENT27] = { "mhpmevent27", any, read_zero },
2216 [CSR_MHPMEVENT28] = { "mhpmevent28", any, read_zero },
2217 [CSR_MHPMEVENT29] = { "mhpmevent29", any, read_zero },
2218 [CSR_MHPMEVENT30] = { "mhpmevent30", any, read_zero },
2219 [CSR_MHPMEVENT31] = { "mhpmevent31", any, read_zero },
2221 [CSR_HPMCOUNTER3H] = { "hpmcounter3h", ctr32, read_zero },
2222 [CSR_HPMCOUNTER4H] = { "hpmcounter4h", ctr32, read_zero },
2223 [CSR_HPMCOUNTER5H] = { "hpmcounter5h", ctr32, read_zero },
2224 [CSR_HPMCOUNTER6H] = { "hpmcounter6h", ctr32, read_zero },
2225 [CSR_HPMCOUNTER7H] = { "hpmcounter7h", ctr32, read_zero },
2226 [CSR_HPMCOUNTER8H] = { "hpmcounter8h", ctr32, read_zero },
2227 [CSR_HPMCOUNTER9H] = { "hpmcounter9h", ctr32, read_zero },
2228 [CSR_HPMCOUNTER10H] = { "hpmcounter10h", ctr32, read_zero },
2229 [CSR_HPMCOUNTER11H] = { "hpmcounter11h", ctr32, read_zero },
2230 [CSR_HPMCOUNTER12H] = { "hpmcounter12h", ctr32, read_zero },
2231 [CSR_HPMCOUNTER13H] = { "hpmcounter13h", ctr32, read_zero },
2232 [CSR_HPMCOUNTER14H] = { "hpmcounter14h", ctr32, read_zero },
2233 [CSR_HPMCOUNTER15H] = { "hpmcounter15h", ctr32, read_zero },
2234 [CSR_HPMCOUNTER16H] = { "hpmcounter16h", ctr32, read_zero },
2235 [CSR_HPMCOUNTER17H] = { "hpmcounter17h", ctr32, read_zero },
2236 [CSR_HPMCOUNTER18H] = { "hpmcounter18h", ctr32, read_zero },
2237 [CSR_HPMCOUNTER19H] = { "hpmcounter19h", ctr32, read_zero },
2238 [CSR_HPMCOUNTER20H] = { "hpmcounter20h", ctr32, read_zero },
2239 [CSR_HPMCOUNTER21H] = { "hpmcounter21h", ctr32, read_zero },
2240 [CSR_HPMCOUNTER22H] = { "hpmcounter22h", ctr32, read_zero },
2241 [CSR_HPMCOUNTER23H] = { "hpmcounter23h", ctr32, read_zero },
2242 [CSR_HPMCOUNTER24H] = { "hpmcounter24h", ctr32, read_zero },
2243 [CSR_HPMCOUNTER25H] = { "hpmcounter25h", ctr32, read_zero },
2244 [CSR_HPMCOUNTER26H] = { "hpmcounter26h", ctr32, read_zero },
2245 [CSR_HPMCOUNTER27H] = { "hpmcounter27h", ctr32, read_zero },
2246 [CSR_HPMCOUNTER28H] = { "hpmcounter28h", ctr32, read_zero },
2247 [CSR_HPMCOUNTER29H] = { "hpmcounter29h", ctr32, read_zero },
2248 [CSR_HPMCOUNTER30H] = { "hpmcounter30h", ctr32, read_zero },
2249 [CSR_HPMCOUNTER31H] = { "hpmcounter31h", ctr32, read_zero },
2251 [CSR_MHPMCOUNTER3H] = { "mhpmcounter3h", any32, read_zero },
2252 [CSR_MHPMCOUNTER4H] = { "mhpmcounter4h", any32, read_zero },
2253 [CSR_MHPMCOUNTER5H] = { "mhpmcounter5h", any32, read_zero },
2254 [CSR_MHPMCOUNTER6H] = { "mhpmcounter6h", any32, read_zero },
2255 [CSR_MHPMCOUNTER7H] = { "mhpmcounter7h", any32, read_zero },
2256 [CSR_MHPMCOUNTER8H] = { "mhpmcounter8h", any32, read_zero },
2257 [CSR_MHPMCOUNTER9H] = { "mhpmcounter9h", any32, read_zero },
2258 [CSR_MHPMCOUNTER10H] = { "mhpmcounter10h", any32, read_zero },
2259 [CSR_MHPMCOUNTER11H] = { "mhpmcounter11h", any32, read_zero },
2260 [CSR_MHPMCOUNTER12H] = { "mhpmcounter12h", any32, read_zero },
2261 [CSR_MHPMCOUNTER13H] = { "mhpmcounter13h", any32, read_zero },
2262 [CSR_MHPMCOUNTER14H] = { "mhpmcounter14h", any32, read_zero },
2263 [CSR_MHPMCOUNTER15H] = { "mhpmcounter15h", any32, read_zero },
2264 [CSR_MHPMCOUNTER16H] = { "mhpmcounter16h", any32, read_zero },
2265 [CSR_MHPMCOUNTER17H] = { "mhpmcounter17h", any32, read_zero },
2266 [CSR_MHPMCOUNTER18H] = { "mhpmcounter18h", any32, read_zero },
2267 [CSR_MHPMCOUNTER19H] = { "mhpmcounter19h", any32, read_zero },
2268 [CSR_MHPMCOUNTER20H] = { "mhpmcounter20h", any32, read_zero },
2269 [CSR_MHPMCOUNTER21H] = { "mhpmcounter21h", any32, read_zero },
2270 [CSR_MHPMCOUNTER22H] = { "mhpmcounter22h", any32, read_zero },
2271 [CSR_MHPMCOUNTER23H] = { "mhpmcounter23h", any32, read_zero },
2272 [CSR_MHPMCOUNTER24H] = { "mhpmcounter24h", any32, read_zero },
2273 [CSR_MHPMCOUNTER25H] = { "mhpmcounter25h", any32, read_zero },
2274 [CSR_MHPMCOUNTER26H] = { "mhpmcounter26h", any32, read_zero },
2275 [CSR_MHPMCOUNTER27H] = { "mhpmcounter27h", any32, read_zero },
2276 [CSR_MHPMCOUNTER28H] = { "mhpmcounter28h", any32, read_zero },
2277 [CSR_MHPMCOUNTER29H] = { "mhpmcounter29h", any32, read_zero },
2278 [CSR_MHPMCOUNTER30H] = { "mhpmcounter30h", any32, read_zero },
2279 [CSR_MHPMCOUNTER31H] = { "mhpmcounter31h", any32, read_zero },
2280 #endif /* !CONFIG_USER_ONLY */