libnfs: convert to meson
[qemu/ar7.git] / target / riscv / csr.c
blob10ab82ed1fc58768fd557b7cce0e00a58f025373
1 /*
2 * RISC-V Control and Status Registers.
4 * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
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
14 * more details.
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"
21 #include "qemu/log.h"
22 #include "cpu.h"
23 #include "qemu/main-loop.h"
24 #include "exec/exec-all.h"
26 /* CSR function table */
27 static riscv_csr_operations csr_ops[];
29 /* CSR function table constants */
30 enum {
31 CSR_TABLE_SIZE = 0x1000
34 /* CSR function table public API */
35 void riscv_get_csr_ops(int csrno, riscv_csr_operations *ops)
37 *ops = csr_ops[csrno & (CSR_TABLE_SIZE - 1)];
40 void riscv_set_csr_ops(int csrno, riscv_csr_operations *ops)
42 csr_ops[csrno & (CSR_TABLE_SIZE - 1)] = *ops;
45 /* Predicates */
46 static int fs(CPURISCVState *env, int csrno)
48 #if !defined(CONFIG_USER_ONLY)
49 /* loose check condition for fcsr in vector extension */
50 if ((csrno == CSR_FCSR) && (env->misa & RVV)) {
51 return 0;
53 if (!env->debugger && !riscv_cpu_fp_enabled(env)) {
54 return -RISCV_EXCP_ILLEGAL_INST;
56 #endif
57 return 0;
60 static int vs(CPURISCVState *env, int csrno)
62 if (env->misa & RVV) {
63 return 0;
65 return -1;
68 static int ctr(CPURISCVState *env, int csrno)
70 #if !defined(CONFIG_USER_ONLY)
71 CPUState *cs = env_cpu(env);
72 RISCVCPU *cpu = RISCV_CPU(cs);
74 if (!cpu->cfg.ext_counters) {
75 /* The Counters extensions is not enabled */
76 return -RISCV_EXCP_ILLEGAL_INST;
79 if (riscv_cpu_virt_enabled(env)) {
80 switch (csrno) {
81 case CSR_CYCLE:
82 if (!get_field(env->hcounteren, HCOUNTEREN_CY) &&
83 get_field(env->mcounteren, HCOUNTEREN_CY)) {
84 return -RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
86 break;
87 case CSR_TIME:
88 if (!get_field(env->hcounteren, HCOUNTEREN_TM) &&
89 get_field(env->mcounteren, HCOUNTEREN_TM)) {
90 return -RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
92 break;
93 case CSR_INSTRET:
94 if (!get_field(env->hcounteren, HCOUNTEREN_IR) &&
95 get_field(env->mcounteren, HCOUNTEREN_IR)) {
96 return -RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
98 break;
99 case CSR_HPMCOUNTER3...CSR_HPMCOUNTER31:
100 if (!get_field(env->hcounteren, 1 << (csrno - CSR_HPMCOUNTER3)) &&
101 get_field(env->mcounteren, 1 << (csrno - CSR_HPMCOUNTER3))) {
102 return -RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
104 break;
106 if (riscv_cpu_is_32bit(env)) {
107 switch (csrno) {
108 case CSR_CYCLEH:
109 if (!get_field(env->hcounteren, HCOUNTEREN_CY) &&
110 get_field(env->mcounteren, HCOUNTEREN_CY)) {
111 return -RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
113 break;
114 case CSR_TIMEH:
115 if (!get_field(env->hcounteren, HCOUNTEREN_TM) &&
116 get_field(env->mcounteren, HCOUNTEREN_TM)) {
117 return -RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
119 break;
120 case CSR_INSTRETH:
121 if (!get_field(env->hcounteren, HCOUNTEREN_IR) &&
122 get_field(env->mcounteren, HCOUNTEREN_IR)) {
123 return -RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
125 break;
126 case CSR_HPMCOUNTER3H...CSR_HPMCOUNTER31H:
127 if (!get_field(env->hcounteren, 1 << (csrno - CSR_HPMCOUNTER3H)) &&
128 get_field(env->mcounteren, 1 << (csrno - CSR_HPMCOUNTER3H))) {
129 return -RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
131 break;
135 #endif
136 return 0;
139 static int ctr32(CPURISCVState *env, int csrno)
141 if (!riscv_cpu_is_32bit(env)) {
142 return -RISCV_EXCP_ILLEGAL_INST;
145 return ctr(env, csrno);
148 #if !defined(CONFIG_USER_ONLY)
149 static int any(CPURISCVState *env, int csrno)
151 return 0;
154 static int any32(CPURISCVState *env, int csrno)
156 if (!riscv_cpu_is_32bit(env)) {
157 return -RISCV_EXCP_ILLEGAL_INST;
160 return any(env, csrno);
164 static int smode(CPURISCVState *env, int csrno)
166 return -!riscv_has_ext(env, RVS);
169 static int hmode(CPURISCVState *env, int csrno)
171 if (riscv_has_ext(env, RVS) &&
172 riscv_has_ext(env, RVH)) {
173 /* Hypervisor extension is supported */
174 if ((env->priv == PRV_S && !riscv_cpu_virt_enabled(env)) ||
175 env->priv == PRV_M) {
176 return 0;
177 } else {
178 return -RISCV_EXCP_VIRT_INSTRUCTION_FAULT;
182 return -RISCV_EXCP_ILLEGAL_INST;
185 static int hmode32(CPURISCVState *env, int csrno)
187 if (!riscv_cpu_is_32bit(env)) {
188 return 0;
191 return hmode(env, csrno);
195 static int pmp(CPURISCVState *env, int csrno)
197 return -!riscv_feature(env, RISCV_FEATURE_PMP);
199 #endif
201 /* User Floating-Point CSRs */
202 static int read_fflags(CPURISCVState *env, int csrno, target_ulong *val)
204 #if !defined(CONFIG_USER_ONLY)
205 if (!env->debugger && !riscv_cpu_fp_enabled(env)) {
206 return -RISCV_EXCP_ILLEGAL_INST;
208 #endif
209 *val = riscv_cpu_get_fflags(env);
210 return 0;
213 static int write_fflags(CPURISCVState *env, int csrno, target_ulong val)
215 #if !defined(CONFIG_USER_ONLY)
216 if (!env->debugger && !riscv_cpu_fp_enabled(env)) {
217 return -RISCV_EXCP_ILLEGAL_INST;
219 env->mstatus |= MSTATUS_FS;
220 #endif
221 riscv_cpu_set_fflags(env, val & (FSR_AEXC >> FSR_AEXC_SHIFT));
222 return 0;
225 static int read_frm(CPURISCVState *env, int csrno, target_ulong *val)
227 #if !defined(CONFIG_USER_ONLY)
228 if (!env->debugger && !riscv_cpu_fp_enabled(env)) {
229 return -RISCV_EXCP_ILLEGAL_INST;
231 #endif
232 *val = env->frm;
233 return 0;
236 static int write_frm(CPURISCVState *env, int csrno, target_ulong val)
238 #if !defined(CONFIG_USER_ONLY)
239 if (!env->debugger && !riscv_cpu_fp_enabled(env)) {
240 return -RISCV_EXCP_ILLEGAL_INST;
242 env->mstatus |= MSTATUS_FS;
243 #endif
244 env->frm = val & (FSR_RD >> FSR_RD_SHIFT);
245 return 0;
248 static int read_fcsr(CPURISCVState *env, int csrno, target_ulong *val)
250 #if !defined(CONFIG_USER_ONLY)
251 if (!env->debugger && !riscv_cpu_fp_enabled(env)) {
252 return -RISCV_EXCP_ILLEGAL_INST;
254 #endif
255 *val = (riscv_cpu_get_fflags(env) << FSR_AEXC_SHIFT)
256 | (env->frm << FSR_RD_SHIFT);
257 if (vs(env, csrno) >= 0) {
258 *val |= (env->vxrm << FSR_VXRM_SHIFT)
259 | (env->vxsat << FSR_VXSAT_SHIFT);
261 return 0;
264 static int write_fcsr(CPURISCVState *env, int csrno, target_ulong val)
266 #if !defined(CONFIG_USER_ONLY)
267 if (!env->debugger && !riscv_cpu_fp_enabled(env)) {
268 return -RISCV_EXCP_ILLEGAL_INST;
270 env->mstatus |= MSTATUS_FS;
271 #endif
272 env->frm = (val & FSR_RD) >> FSR_RD_SHIFT;
273 if (vs(env, csrno) >= 0) {
274 env->vxrm = (val & FSR_VXRM) >> FSR_VXRM_SHIFT;
275 env->vxsat = (val & FSR_VXSAT) >> FSR_VXSAT_SHIFT;
277 riscv_cpu_set_fflags(env, (val & FSR_AEXC) >> FSR_AEXC_SHIFT);
278 return 0;
281 static int read_vtype(CPURISCVState *env, int csrno, target_ulong *val)
283 *val = env->vtype;
284 return 0;
287 static int read_vl(CPURISCVState *env, int csrno, target_ulong *val)
289 *val = env->vl;
290 return 0;
293 static int read_vxrm(CPURISCVState *env, int csrno, target_ulong *val)
295 *val = env->vxrm;
296 return 0;
299 static int write_vxrm(CPURISCVState *env, int csrno, target_ulong val)
301 env->vxrm = val;
302 return 0;
305 static int read_vxsat(CPURISCVState *env, int csrno, target_ulong *val)
307 *val = env->vxsat;
308 return 0;
311 static int write_vxsat(CPURISCVState *env, int csrno, target_ulong val)
313 env->vxsat = val;
314 return 0;
317 static int read_vstart(CPURISCVState *env, int csrno, target_ulong *val)
319 *val = env->vstart;
320 return 0;
323 static int write_vstart(CPURISCVState *env, int csrno, target_ulong val)
325 env->vstart = val;
326 return 0;
329 /* User Timers and Counters */
330 static int read_instret(CPURISCVState *env, int csrno, target_ulong *val)
332 #if !defined(CONFIG_USER_ONLY)
333 if (icount_enabled()) {
334 *val = icount_get();
335 } else {
336 *val = cpu_get_host_ticks();
338 #else
339 *val = cpu_get_host_ticks();
340 #endif
341 return 0;
344 static int read_instreth(CPURISCVState *env, int csrno, target_ulong *val)
346 #if !defined(CONFIG_USER_ONLY)
347 if (icount_enabled()) {
348 *val = icount_get() >> 32;
349 } else {
350 *val = cpu_get_host_ticks() >> 32;
352 #else
353 *val = cpu_get_host_ticks() >> 32;
354 #endif
355 return 0;
358 #if defined(CONFIG_USER_ONLY)
359 static int read_time(CPURISCVState *env, int csrno, target_ulong *val)
361 *val = cpu_get_host_ticks();
362 return 0;
365 static int read_timeh(CPURISCVState *env, int csrno, target_ulong *val)
367 *val = cpu_get_host_ticks() >> 32;
368 return 0;
371 #else /* CONFIG_USER_ONLY */
373 static int read_time(CPURISCVState *env, int csrno, target_ulong *val)
375 uint64_t delta = riscv_cpu_virt_enabled(env) ? env->htimedelta : 0;
377 if (!env->rdtime_fn) {
378 return -RISCV_EXCP_ILLEGAL_INST;
381 *val = env->rdtime_fn(env->rdtime_fn_arg) + delta;
382 return 0;
385 static int read_timeh(CPURISCVState *env, int csrno, target_ulong *val)
387 uint64_t delta = riscv_cpu_virt_enabled(env) ? env->htimedelta : 0;
389 if (!env->rdtime_fn) {
390 return -RISCV_EXCP_ILLEGAL_INST;
393 *val = (env->rdtime_fn(env->rdtime_fn_arg) + delta) >> 32;
394 return 0;
397 /* Machine constants */
399 #define M_MODE_INTERRUPTS (MIP_MSIP | MIP_MTIP | MIP_MEIP)
400 #define S_MODE_INTERRUPTS (MIP_SSIP | MIP_STIP | MIP_SEIP)
401 #define VS_MODE_INTERRUPTS (MIP_VSSIP | MIP_VSTIP | MIP_VSEIP)
403 static const target_ulong delegable_ints = S_MODE_INTERRUPTS |
404 VS_MODE_INTERRUPTS;
405 static const target_ulong all_ints = M_MODE_INTERRUPTS | S_MODE_INTERRUPTS |
406 VS_MODE_INTERRUPTS;
407 static const target_ulong delegable_excps =
408 (1ULL << (RISCV_EXCP_INST_ADDR_MIS)) |
409 (1ULL << (RISCV_EXCP_INST_ACCESS_FAULT)) |
410 (1ULL << (RISCV_EXCP_ILLEGAL_INST)) |
411 (1ULL << (RISCV_EXCP_BREAKPOINT)) |
412 (1ULL << (RISCV_EXCP_LOAD_ADDR_MIS)) |
413 (1ULL << (RISCV_EXCP_LOAD_ACCESS_FAULT)) |
414 (1ULL << (RISCV_EXCP_STORE_AMO_ADDR_MIS)) |
415 (1ULL << (RISCV_EXCP_STORE_AMO_ACCESS_FAULT)) |
416 (1ULL << (RISCV_EXCP_U_ECALL)) |
417 (1ULL << (RISCV_EXCP_S_ECALL)) |
418 (1ULL << (RISCV_EXCP_VS_ECALL)) |
419 (1ULL << (RISCV_EXCP_M_ECALL)) |
420 (1ULL << (RISCV_EXCP_INST_PAGE_FAULT)) |
421 (1ULL << (RISCV_EXCP_LOAD_PAGE_FAULT)) |
422 (1ULL << (RISCV_EXCP_STORE_PAGE_FAULT)) |
423 (1ULL << (RISCV_EXCP_INST_GUEST_PAGE_FAULT)) |
424 (1ULL << (RISCV_EXCP_LOAD_GUEST_ACCESS_FAULT)) |
425 (1ULL << (RISCV_EXCP_VIRT_INSTRUCTION_FAULT)) |
426 (1ULL << (RISCV_EXCP_STORE_GUEST_AMO_ACCESS_FAULT));
427 static const target_ulong sstatus_v1_10_mask = SSTATUS_SIE | SSTATUS_SPIE |
428 SSTATUS_UIE | SSTATUS_UPIE | SSTATUS_SPP | SSTATUS_FS | SSTATUS_XS |
429 SSTATUS_SUM | SSTATUS_MXR | SSTATUS_SD;
430 static const target_ulong sip_writable_mask = SIP_SSIP | MIP_USIP | MIP_UEIP;
431 static const target_ulong hip_writable_mask = MIP_VSSIP | MIP_VSTIP | MIP_VSEIP;
432 static const target_ulong vsip_writable_mask = MIP_VSSIP;
434 static const char valid_vm_1_10_32[16] = {
435 [VM_1_10_MBARE] = 1,
436 [VM_1_10_SV32] = 1
439 static const char valid_vm_1_10_64[16] = {
440 [VM_1_10_MBARE] = 1,
441 [VM_1_10_SV39] = 1,
442 [VM_1_10_SV48] = 1,
443 [VM_1_10_SV57] = 1
446 /* Machine Information Registers */
447 static int read_zero(CPURISCVState *env, int csrno, target_ulong *val)
449 return *val = 0;
452 static int read_mhartid(CPURISCVState *env, int csrno, target_ulong *val)
454 *val = env->mhartid;
455 return 0;
458 /* Machine Trap Setup */
459 static int read_mstatus(CPURISCVState *env, int csrno, target_ulong *val)
461 *val = env->mstatus;
462 return 0;
465 static int validate_vm(CPURISCVState *env, target_ulong vm)
467 if (riscv_cpu_is_32bit(env)) {
468 return valid_vm_1_10_32[vm & 0xf];
469 } else {
470 return valid_vm_1_10_64[vm & 0xf];
474 static int write_mstatus(CPURISCVState *env, int csrno, target_ulong val)
476 uint64_t mstatus = env->mstatus;
477 uint64_t mask = 0;
478 int dirty;
480 /* flush tlb on mstatus fields that affect VM */
481 if ((val ^ mstatus) & (MSTATUS_MXR | MSTATUS_MPP | MSTATUS_MPV |
482 MSTATUS_MPRV | MSTATUS_SUM)) {
483 tlb_flush(env_cpu(env));
485 mask = MSTATUS_SIE | MSTATUS_SPIE | MSTATUS_MIE | MSTATUS_MPIE |
486 MSTATUS_SPP | MSTATUS_FS | MSTATUS_MPRV | MSTATUS_SUM |
487 MSTATUS_MPP | MSTATUS_MXR | MSTATUS_TVM | MSTATUS_TSR |
488 MSTATUS_TW;
490 if (!riscv_cpu_is_32bit(env)) {
492 * RV32: MPV and GVA are not in mstatus. The current plan is to
493 * add them to mstatush. For now, we just don't support it.
495 mask |= MSTATUS_MPV | MSTATUS_GVA;
498 mstatus = (mstatus & ~mask) | (val & mask);
500 dirty = ((mstatus & MSTATUS_FS) == MSTATUS_FS) |
501 ((mstatus & MSTATUS_XS) == MSTATUS_XS);
502 mstatus = set_field(mstatus, MSTATUS_SD, dirty);
503 env->mstatus = mstatus;
505 return 0;
508 static int read_mstatush(CPURISCVState *env, int csrno, target_ulong *val)
510 *val = env->mstatus >> 32;
511 return 0;
514 static int write_mstatush(CPURISCVState *env, int csrno, target_ulong val)
516 uint64_t valh = (uint64_t)val << 32;
517 uint64_t mask = MSTATUS_MPV | MSTATUS_GVA;
519 if ((valh ^ env->mstatus) & (MSTATUS_MPV)) {
520 tlb_flush(env_cpu(env));
523 env->mstatus = (env->mstatus & ~mask) | (valh & mask);
525 return 0;
528 static int read_misa(CPURISCVState *env, int csrno, target_ulong *val)
530 *val = env->misa;
531 return 0;
534 static int write_misa(CPURISCVState *env, int csrno, target_ulong val)
536 if (!riscv_feature(env, RISCV_FEATURE_MISA)) {
537 /* drop write to misa */
538 return 0;
541 /* 'I' or 'E' must be present */
542 if (!(val & (RVI | RVE))) {
543 /* It is not, drop write to misa */
544 return 0;
547 /* 'E' excludes all other extensions */
548 if (val & RVE) {
549 /* when we support 'E' we can do "val = RVE;" however
550 * for now we just drop writes if 'E' is present.
552 return 0;
555 /* Mask extensions that are not supported by this hart */
556 val &= env->misa_mask;
558 /* Mask extensions that are not supported by QEMU */
559 val &= (RVI | RVE | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
561 /* 'D' depends on 'F', so clear 'D' if 'F' is not present */
562 if ((val & RVD) && !(val & RVF)) {
563 val &= ~RVD;
566 /* Suppress 'C' if next instruction is not aligned
567 * TODO: this should check next_pc
569 if ((val & RVC) && (GETPC() & ~3) != 0) {
570 val &= ~RVC;
573 /* misa.MXL writes are not supported by QEMU */
574 val = (env->misa & MISA_MXL) | (val & ~MISA_MXL);
576 /* flush translation cache */
577 if (val != env->misa) {
578 tb_flush(env_cpu(env));
581 env->misa = val;
583 return 0;
586 static int read_medeleg(CPURISCVState *env, int csrno, target_ulong *val)
588 *val = env->medeleg;
589 return 0;
592 static int write_medeleg(CPURISCVState *env, int csrno, target_ulong val)
594 env->medeleg = (env->medeleg & ~delegable_excps) | (val & delegable_excps);
595 return 0;
598 static int read_mideleg(CPURISCVState *env, int csrno, target_ulong *val)
600 *val = env->mideleg;
601 return 0;
604 static int write_mideleg(CPURISCVState *env, int csrno, target_ulong val)
606 env->mideleg = (env->mideleg & ~delegable_ints) | (val & delegable_ints);
607 if (riscv_has_ext(env, RVH)) {
608 env->mideleg |= VS_MODE_INTERRUPTS;
610 return 0;
613 static int read_mie(CPURISCVState *env, int csrno, target_ulong *val)
615 *val = env->mie;
616 return 0;
619 static int write_mie(CPURISCVState *env, int csrno, target_ulong val)
621 env->mie = (env->mie & ~all_ints) | (val & all_ints);
622 return 0;
625 static int read_mtvec(CPURISCVState *env, int csrno, target_ulong *val)
627 *val = env->mtvec;
628 return 0;
631 static int write_mtvec(CPURISCVState *env, int csrno, target_ulong val)
633 /* bits [1:0] encode mode; 0 = direct, 1 = vectored, 2 >= reserved */
634 if ((val & 3) < 2) {
635 env->mtvec = val;
636 } else {
637 qemu_log_mask(LOG_UNIMP, "CSR_MTVEC: reserved mode not supported\n");
639 return 0;
642 static int read_mcounteren(CPURISCVState *env, int csrno, target_ulong *val)
644 *val = env->mcounteren;
645 return 0;
648 static int write_mcounteren(CPURISCVState *env, int csrno, target_ulong val)
650 env->mcounteren = val;
651 return 0;
654 /* This regiser is replaced with CSR_MCOUNTINHIBIT in 1.11.0 */
655 static int read_mscounteren(CPURISCVState *env, int csrno, target_ulong *val)
657 if (env->priv_ver < PRIV_VERSION_1_11_0) {
658 return -RISCV_EXCP_ILLEGAL_INST;
660 *val = env->mcounteren;
661 return 0;
664 /* This regiser is replaced with CSR_MCOUNTINHIBIT in 1.11.0 */
665 static int write_mscounteren(CPURISCVState *env, int csrno, target_ulong val)
667 if (env->priv_ver < PRIV_VERSION_1_11_0) {
668 return -RISCV_EXCP_ILLEGAL_INST;
670 env->mcounteren = val;
671 return 0;
674 /* Machine Trap Handling */
675 static int read_mscratch(CPURISCVState *env, int csrno, target_ulong *val)
677 *val = env->mscratch;
678 return 0;
681 static int write_mscratch(CPURISCVState *env, int csrno, target_ulong val)
683 env->mscratch = val;
684 return 0;
687 static int read_mepc(CPURISCVState *env, int csrno, target_ulong *val)
689 *val = env->mepc;
690 return 0;
693 static int write_mepc(CPURISCVState *env, int csrno, target_ulong val)
695 env->mepc = val;
696 return 0;
699 static int read_mcause(CPURISCVState *env, int csrno, target_ulong *val)
701 *val = env->mcause;
702 return 0;
705 static int write_mcause(CPURISCVState *env, int csrno, target_ulong val)
707 env->mcause = val;
708 return 0;
711 static int read_mbadaddr(CPURISCVState *env, int csrno, target_ulong *val)
713 *val = env->mbadaddr;
714 return 0;
717 static int write_mbadaddr(CPURISCVState *env, int csrno, target_ulong val)
719 env->mbadaddr = val;
720 return 0;
723 static int rmw_mip(CPURISCVState *env, int csrno, target_ulong *ret_value,
724 target_ulong new_value, target_ulong write_mask)
726 RISCVCPU *cpu = env_archcpu(env);
727 /* Allow software control of delegable interrupts not claimed by hardware */
728 target_ulong mask = write_mask & delegable_ints & ~env->miclaim;
729 uint32_t old_mip;
731 if (mask) {
732 old_mip = riscv_cpu_update_mip(cpu, mask, (new_value & mask));
733 } else {
734 old_mip = env->mip;
737 if (ret_value) {
738 *ret_value = old_mip;
741 return 0;
744 /* Supervisor Trap Setup */
745 static int read_sstatus(CPURISCVState *env, int csrno, target_ulong *val)
747 target_ulong mask = (sstatus_v1_10_mask);
748 *val = env->mstatus & mask;
749 return 0;
752 static int write_sstatus(CPURISCVState *env, int csrno, target_ulong val)
754 target_ulong mask = (sstatus_v1_10_mask);
755 target_ulong newval = (env->mstatus & ~mask) | (val & mask);
756 return write_mstatus(env, CSR_MSTATUS, newval);
759 static int read_sie(CPURISCVState *env, int csrno, target_ulong *val)
761 if (riscv_cpu_virt_enabled(env)) {
762 /* Tell the guest the VS bits, shifted to the S bit locations */
763 *val = (env->mie & env->mideleg & VS_MODE_INTERRUPTS) >> 1;
764 } else {
765 *val = env->mie & env->mideleg;
767 return 0;
770 static int write_sie(CPURISCVState *env, int csrno, target_ulong val)
772 target_ulong newval;
774 if (riscv_cpu_virt_enabled(env)) {
775 /* Shift the guests S bits to VS */
776 newval = (env->mie & ~VS_MODE_INTERRUPTS) |
777 ((val << 1) & VS_MODE_INTERRUPTS);
778 } else {
779 newval = (env->mie & ~S_MODE_INTERRUPTS) | (val & S_MODE_INTERRUPTS);
782 return write_mie(env, CSR_MIE, newval);
785 static int read_stvec(CPURISCVState *env, int csrno, target_ulong *val)
787 *val = env->stvec;
788 return 0;
791 static int write_stvec(CPURISCVState *env, int csrno, target_ulong val)
793 /* bits [1:0] encode mode; 0 = direct, 1 = vectored, 2 >= reserved */
794 if ((val & 3) < 2) {
795 env->stvec = val;
796 } else {
797 qemu_log_mask(LOG_UNIMP, "CSR_STVEC: reserved mode not supported\n");
799 return 0;
802 static int read_scounteren(CPURISCVState *env, int csrno, target_ulong *val)
804 *val = env->scounteren;
805 return 0;
808 static int write_scounteren(CPURISCVState *env, int csrno, target_ulong val)
810 env->scounteren = val;
811 return 0;
814 /* Supervisor Trap Handling */
815 static int read_sscratch(CPURISCVState *env, int csrno, target_ulong *val)
817 *val = env->sscratch;
818 return 0;
821 static int write_sscratch(CPURISCVState *env, int csrno, target_ulong val)
823 env->sscratch = val;
824 return 0;
827 static int read_sepc(CPURISCVState *env, int csrno, target_ulong *val)
829 *val = env->sepc;
830 return 0;
833 static int write_sepc(CPURISCVState *env, int csrno, target_ulong val)
835 env->sepc = val;
836 return 0;
839 static int read_scause(CPURISCVState *env, int csrno, target_ulong *val)
841 *val = env->scause;
842 return 0;
845 static int write_scause(CPURISCVState *env, int csrno, target_ulong val)
847 env->scause = val;
848 return 0;
851 static int read_sbadaddr(CPURISCVState *env, int csrno, target_ulong *val)
853 *val = env->sbadaddr;
854 return 0;
857 static int write_sbadaddr(CPURISCVState *env, int csrno, target_ulong val)
859 env->sbadaddr = val;
860 return 0;
863 static int rmw_sip(CPURISCVState *env, int csrno, target_ulong *ret_value,
864 target_ulong new_value, target_ulong write_mask)
866 int ret;
868 if (riscv_cpu_virt_enabled(env)) {
869 /* Shift the new values to line up with the VS bits */
870 ret = rmw_mip(env, CSR_MSTATUS, ret_value, new_value << 1,
871 (write_mask & sip_writable_mask) << 1 & env->mideleg);
872 ret &= vsip_writable_mask;
873 ret >>= 1;
874 } else {
875 ret = rmw_mip(env, CSR_MSTATUS, ret_value, new_value,
876 write_mask & env->mideleg & sip_writable_mask);
879 *ret_value &= env->mideleg;
880 return ret;
883 /* Supervisor Protection and Translation */
884 static int read_satp(CPURISCVState *env, int csrno, target_ulong *val)
886 if (!riscv_feature(env, RISCV_FEATURE_MMU)) {
887 *val = 0;
888 return 0;
891 if (env->priv == PRV_S && get_field(env->mstatus, MSTATUS_TVM)) {
892 return -RISCV_EXCP_ILLEGAL_INST;
893 } else {
894 *val = env->satp;
897 return 0;
900 static int write_satp(CPURISCVState *env, int csrno, target_ulong val)
902 if (!riscv_feature(env, RISCV_FEATURE_MMU)) {
903 return 0;
905 if (validate_vm(env, get_field(val, SATP_MODE)) &&
906 ((val ^ env->satp) & (SATP_MODE | SATP_ASID | SATP_PPN)))
908 if (env->priv == PRV_S && get_field(env->mstatus, MSTATUS_TVM)) {
909 return -RISCV_EXCP_ILLEGAL_INST;
910 } else {
911 if ((val ^ env->satp) & SATP_ASID) {
912 tlb_flush(env_cpu(env));
914 env->satp = val;
917 return 0;
920 /* Hypervisor Extensions */
921 static int read_hstatus(CPURISCVState *env, int csrno, target_ulong *val)
923 *val = env->hstatus;
924 if (!riscv_cpu_is_32bit(env)) {
925 /* We only support 64-bit VSXL */
926 *val = set_field(*val, HSTATUS_VSXL, 2);
928 /* We only support little endian */
929 *val = set_field(*val, HSTATUS_VSBE, 0);
930 return 0;
933 static int write_hstatus(CPURISCVState *env, int csrno, target_ulong val)
935 env->hstatus = val;
936 if (!riscv_cpu_is_32bit(env) && get_field(val, HSTATUS_VSXL) != 2) {
937 qemu_log_mask(LOG_UNIMP, "QEMU does not support mixed HSXLEN options.");
939 if (get_field(val, HSTATUS_VSBE) != 0) {
940 qemu_log_mask(LOG_UNIMP, "QEMU does not support big endian guests.");
942 return 0;
945 static int read_hedeleg(CPURISCVState *env, int csrno, target_ulong *val)
947 *val = env->hedeleg;
948 return 0;
951 static int write_hedeleg(CPURISCVState *env, int csrno, target_ulong val)
953 env->hedeleg = val;
954 return 0;
957 static int read_hideleg(CPURISCVState *env, int csrno, target_ulong *val)
959 *val = env->hideleg;
960 return 0;
963 static int write_hideleg(CPURISCVState *env, int csrno, target_ulong val)
965 env->hideleg = val;
966 return 0;
969 static int rmw_hvip(CPURISCVState *env, int csrno, target_ulong *ret_value,
970 target_ulong new_value, target_ulong write_mask)
972 int ret = rmw_mip(env, 0, ret_value, new_value,
973 write_mask & hip_writable_mask);
975 *ret_value &= hip_writable_mask;
977 return ret;
980 static int rmw_hip(CPURISCVState *env, int csrno, target_ulong *ret_value,
981 target_ulong new_value, target_ulong write_mask)
983 int ret = rmw_mip(env, 0, ret_value, new_value,
984 write_mask & hip_writable_mask);
986 *ret_value &= hip_writable_mask;
988 return ret;
991 static int read_hie(CPURISCVState *env, int csrno, target_ulong *val)
993 *val = env->mie & VS_MODE_INTERRUPTS;
994 return 0;
997 static int write_hie(CPURISCVState *env, int csrno, target_ulong val)
999 target_ulong newval = (env->mie & ~VS_MODE_INTERRUPTS) | (val & VS_MODE_INTERRUPTS);
1000 return write_mie(env, CSR_MIE, newval);
1003 static int read_hcounteren(CPURISCVState *env, int csrno, target_ulong *val)
1005 *val = env->hcounteren;
1006 return 0;
1009 static int write_hcounteren(CPURISCVState *env, int csrno, target_ulong val)
1011 env->hcounteren = val;
1012 return 0;
1015 static int read_hgeie(CPURISCVState *env, int csrno, target_ulong *val)
1017 qemu_log_mask(LOG_UNIMP, "No support for a non-zero GEILEN.");
1018 return 0;
1021 static int write_hgeie(CPURISCVState *env, int csrno, target_ulong val)
1023 qemu_log_mask(LOG_UNIMP, "No support for a non-zero GEILEN.");
1024 return 0;
1027 static int read_htval(CPURISCVState *env, int csrno, target_ulong *val)
1029 *val = env->htval;
1030 return 0;
1033 static int write_htval(CPURISCVState *env, int csrno, target_ulong val)
1035 env->htval = val;
1036 return 0;
1039 static int read_htinst(CPURISCVState *env, int csrno, target_ulong *val)
1041 *val = env->htinst;
1042 return 0;
1045 static int write_htinst(CPURISCVState *env, int csrno, target_ulong val)
1047 return 0;
1050 static int read_hgeip(CPURISCVState *env, int csrno, target_ulong *val)
1052 qemu_log_mask(LOG_UNIMP, "No support for a non-zero GEILEN.");
1053 return 0;
1056 static int write_hgeip(CPURISCVState *env, int csrno, target_ulong val)
1058 qemu_log_mask(LOG_UNIMP, "No support for a non-zero GEILEN.");
1059 return 0;
1062 static int read_hgatp(CPURISCVState *env, int csrno, target_ulong *val)
1064 *val = env->hgatp;
1065 return 0;
1068 static int write_hgatp(CPURISCVState *env, int csrno, target_ulong val)
1070 env->hgatp = val;
1071 return 0;
1074 static int read_htimedelta(CPURISCVState *env, int csrno, target_ulong *val)
1076 if (!env->rdtime_fn) {
1077 return -RISCV_EXCP_ILLEGAL_INST;
1080 *val = env->htimedelta;
1081 return 0;
1084 static int write_htimedelta(CPURISCVState *env, int csrno, target_ulong val)
1086 if (!env->rdtime_fn) {
1087 return -RISCV_EXCP_ILLEGAL_INST;
1090 if (riscv_cpu_is_32bit(env)) {
1091 env->htimedelta = deposit64(env->htimedelta, 0, 32, (uint64_t)val);
1092 } else {
1093 env->htimedelta = val;
1095 return 0;
1098 static int read_htimedeltah(CPURISCVState *env, int csrno, target_ulong *val)
1100 if (!env->rdtime_fn) {
1101 return -RISCV_EXCP_ILLEGAL_INST;
1104 *val = env->htimedelta >> 32;
1105 return 0;
1108 static int write_htimedeltah(CPURISCVState *env, int csrno, target_ulong val)
1110 if (!env->rdtime_fn) {
1111 return -RISCV_EXCP_ILLEGAL_INST;
1114 env->htimedelta = deposit64(env->htimedelta, 32, 32, (uint64_t)val);
1115 return 0;
1118 /* Virtual CSR Registers */
1119 static int read_vsstatus(CPURISCVState *env, int csrno, target_ulong *val)
1121 *val = env->vsstatus;
1122 return 0;
1125 static int write_vsstatus(CPURISCVState *env, int csrno, target_ulong val)
1127 uint64_t mask = (target_ulong)-1;
1128 env->vsstatus = (env->vsstatus & ~mask) | (uint64_t)val;
1129 return 0;
1132 static int rmw_vsip(CPURISCVState *env, int csrno, target_ulong *ret_value,
1133 target_ulong new_value, target_ulong write_mask)
1135 int ret = rmw_mip(env, 0, ret_value, new_value,
1136 write_mask & env->mideleg & vsip_writable_mask);
1137 return ret;
1140 static int read_vsie(CPURISCVState *env, int csrno, target_ulong *val)
1142 *val = env->mie & env->mideleg & VS_MODE_INTERRUPTS;
1143 return 0;
1146 static int write_vsie(CPURISCVState *env, int csrno, target_ulong val)
1148 target_ulong newval = (env->mie & ~env->mideleg) | (val & env->mideleg & MIP_VSSIP);
1149 return write_mie(env, CSR_MIE, newval);
1152 static int read_vstvec(CPURISCVState *env, int csrno, target_ulong *val)
1154 *val = env->vstvec;
1155 return 0;
1158 static int write_vstvec(CPURISCVState *env, int csrno, target_ulong val)
1160 env->vstvec = val;
1161 return 0;
1164 static int read_vsscratch(CPURISCVState *env, int csrno, target_ulong *val)
1166 *val = env->vsscratch;
1167 return 0;
1170 static int write_vsscratch(CPURISCVState *env, int csrno, target_ulong val)
1172 env->vsscratch = val;
1173 return 0;
1176 static int read_vsepc(CPURISCVState *env, int csrno, target_ulong *val)
1178 *val = env->vsepc;
1179 return 0;
1182 static int write_vsepc(CPURISCVState *env, int csrno, target_ulong val)
1184 env->vsepc = val;
1185 return 0;
1188 static int read_vscause(CPURISCVState *env, int csrno, target_ulong *val)
1190 *val = env->vscause;
1191 return 0;
1194 static int write_vscause(CPURISCVState *env, int csrno, target_ulong val)
1196 env->vscause = val;
1197 return 0;
1200 static int read_vstval(CPURISCVState *env, int csrno, target_ulong *val)
1202 *val = env->vstval;
1203 return 0;
1206 static int write_vstval(CPURISCVState *env, int csrno, target_ulong val)
1208 env->vstval = val;
1209 return 0;
1212 static int read_vsatp(CPURISCVState *env, int csrno, target_ulong *val)
1214 *val = env->vsatp;
1215 return 0;
1218 static int write_vsatp(CPURISCVState *env, int csrno, target_ulong val)
1220 env->vsatp = val;
1221 return 0;
1224 static int read_mtval2(CPURISCVState *env, int csrno, target_ulong *val)
1226 *val = env->mtval2;
1227 return 0;
1230 static int write_mtval2(CPURISCVState *env, int csrno, target_ulong val)
1232 env->mtval2 = val;
1233 return 0;
1236 static int read_mtinst(CPURISCVState *env, int csrno, target_ulong *val)
1238 *val = env->mtinst;
1239 return 0;
1242 static int write_mtinst(CPURISCVState *env, int csrno, target_ulong val)
1244 env->mtinst = val;
1245 return 0;
1248 /* Physical Memory Protection */
1249 static int read_pmpcfg(CPURISCVState *env, int csrno, target_ulong *val)
1251 *val = pmpcfg_csr_read(env, csrno - CSR_PMPCFG0);
1252 return 0;
1255 static int write_pmpcfg(CPURISCVState *env, int csrno, target_ulong val)
1257 pmpcfg_csr_write(env, csrno - CSR_PMPCFG0, val);
1258 return 0;
1261 static int read_pmpaddr(CPURISCVState *env, int csrno, target_ulong *val)
1263 *val = pmpaddr_csr_read(env, csrno - CSR_PMPADDR0);
1264 return 0;
1267 static int write_pmpaddr(CPURISCVState *env, int csrno, target_ulong val)
1269 pmpaddr_csr_write(env, csrno - CSR_PMPADDR0, val);
1270 return 0;
1273 #endif
1276 * riscv_csrrw - read and/or update control and status register
1278 * csrr <-> riscv_csrrw(env, csrno, ret_value, 0, 0);
1279 * csrrw <-> riscv_csrrw(env, csrno, ret_value, value, -1);
1280 * csrrs <-> riscv_csrrw(env, csrno, ret_value, -1, value);
1281 * csrrc <-> riscv_csrrw(env, csrno, ret_value, 0, value);
1284 int riscv_csrrw(CPURISCVState *env, int csrno, target_ulong *ret_value,
1285 target_ulong new_value, target_ulong write_mask)
1287 int ret;
1288 target_ulong old_value;
1289 RISCVCPU *cpu = env_archcpu(env);
1291 /* check privileges and return -1 if check fails */
1292 #if !defined(CONFIG_USER_ONLY)
1293 int effective_priv = env->priv;
1294 int read_only = get_field(csrno, 0xC00) == 3;
1296 if (riscv_has_ext(env, RVH) &&
1297 env->priv == PRV_S &&
1298 !riscv_cpu_virt_enabled(env)) {
1300 * We are in S mode without virtualisation, therefore we are in HS Mode.
1301 * Add 1 to the effective privledge level to allow us to access the
1302 * Hypervisor CSRs.
1304 effective_priv++;
1307 if ((write_mask && read_only) ||
1308 (!env->debugger && (effective_priv < get_field(csrno, 0x300)))) {
1309 return -RISCV_EXCP_ILLEGAL_INST;
1311 #endif
1313 /* ensure the CSR extension is enabled. */
1314 if (!cpu->cfg.ext_icsr) {
1315 return -RISCV_EXCP_ILLEGAL_INST;
1318 /* check predicate */
1319 if (!csr_ops[csrno].predicate) {
1320 return -RISCV_EXCP_ILLEGAL_INST;
1322 ret = csr_ops[csrno].predicate(env, csrno);
1323 if (ret < 0) {
1324 return ret;
1327 /* execute combined read/write operation if it exists */
1328 if (csr_ops[csrno].op) {
1329 return csr_ops[csrno].op(env, csrno, ret_value, new_value, write_mask);
1332 /* if no accessor exists then return failure */
1333 if (!csr_ops[csrno].read) {
1334 return -RISCV_EXCP_ILLEGAL_INST;
1337 /* read old value */
1338 ret = csr_ops[csrno].read(env, csrno, &old_value);
1339 if (ret < 0) {
1340 return ret;
1343 /* write value if writable and write mask set, otherwise drop writes */
1344 if (write_mask) {
1345 new_value = (old_value & ~write_mask) | (new_value & write_mask);
1346 if (csr_ops[csrno].write) {
1347 ret = csr_ops[csrno].write(env, csrno, new_value);
1348 if (ret < 0) {
1349 return ret;
1354 /* return old value */
1355 if (ret_value) {
1356 *ret_value = old_value;
1359 return 0;
1363 * Debugger support. If not in user mode, set env->debugger before the
1364 * riscv_csrrw call and clear it after the call.
1366 int riscv_csrrw_debug(CPURISCVState *env, int csrno, target_ulong *ret_value,
1367 target_ulong new_value, target_ulong write_mask)
1369 int ret;
1370 #if !defined(CONFIG_USER_ONLY)
1371 env->debugger = true;
1372 #endif
1373 ret = riscv_csrrw(env, csrno, ret_value, new_value, write_mask);
1374 #if !defined(CONFIG_USER_ONLY)
1375 env->debugger = false;
1376 #endif
1377 return ret;
1380 /* Control and Status Register function table */
1381 static riscv_csr_operations csr_ops[CSR_TABLE_SIZE] = {
1382 /* User Floating-Point CSRs */
1383 [CSR_FFLAGS] = { fs, read_fflags, write_fflags },
1384 [CSR_FRM] = { fs, read_frm, write_frm },
1385 [CSR_FCSR] = { fs, read_fcsr, write_fcsr },
1386 /* Vector CSRs */
1387 [CSR_VSTART] = { vs, read_vstart, write_vstart },
1388 [CSR_VXSAT] = { vs, read_vxsat, write_vxsat },
1389 [CSR_VXRM] = { vs, read_vxrm, write_vxrm },
1390 [CSR_VL] = { vs, read_vl },
1391 [CSR_VTYPE] = { vs, read_vtype },
1392 /* User Timers and Counters */
1393 [CSR_CYCLE] = { ctr, read_instret },
1394 [CSR_INSTRET] = { ctr, read_instret },
1395 [CSR_CYCLEH] = { ctr32, read_instreth },
1396 [CSR_INSTRETH] = { ctr32, read_instreth },
1398 /* In privileged mode, the monitor will have to emulate TIME CSRs only if
1399 * rdtime callback is not provided by machine/platform emulation */
1400 [CSR_TIME] = { ctr, read_time },
1401 [CSR_TIMEH] = { ctr32, read_timeh },
1403 #if !defined(CONFIG_USER_ONLY)
1404 /* Machine Timers and Counters */
1405 [CSR_MCYCLE] = { any, read_instret },
1406 [CSR_MINSTRET] = { any, read_instret },
1407 [CSR_MCYCLEH] = { any32, read_instreth },
1408 [CSR_MINSTRETH] = { any32, read_instreth },
1410 /* Machine Information Registers */
1411 [CSR_MVENDORID] = { any, read_zero },
1412 [CSR_MARCHID] = { any, read_zero },
1413 [CSR_MIMPID] = { any, read_zero },
1414 [CSR_MHARTID] = { any, read_mhartid },
1416 /* Machine Trap Setup */
1417 [CSR_MSTATUS] = { any, read_mstatus, write_mstatus },
1418 [CSR_MISA] = { any, read_misa, write_misa },
1419 [CSR_MIDELEG] = { any, read_mideleg, write_mideleg },
1420 [CSR_MEDELEG] = { any, read_medeleg, write_medeleg },
1421 [CSR_MIE] = { any, read_mie, write_mie },
1422 [CSR_MTVEC] = { any, read_mtvec, write_mtvec },
1423 [CSR_MCOUNTEREN] = { any, read_mcounteren, write_mcounteren },
1425 [CSR_MSTATUSH] = { any32, read_mstatush, write_mstatush },
1427 [CSR_MSCOUNTEREN] = { any, read_mscounteren, write_mscounteren },
1429 /* Machine Trap Handling */
1430 [CSR_MSCRATCH] = { any, read_mscratch, write_mscratch },
1431 [CSR_MEPC] = { any, read_mepc, write_mepc },
1432 [CSR_MCAUSE] = { any, read_mcause, write_mcause },
1433 [CSR_MBADADDR] = { any, read_mbadaddr, write_mbadaddr },
1434 [CSR_MIP] = { any, NULL, NULL, rmw_mip },
1436 /* Supervisor Trap Setup */
1437 [CSR_SSTATUS] = { smode, read_sstatus, write_sstatus },
1438 [CSR_SIE] = { smode, read_sie, write_sie },
1439 [CSR_STVEC] = { smode, read_stvec, write_stvec },
1440 [CSR_SCOUNTEREN] = { smode, read_scounteren, write_scounteren },
1442 /* Supervisor Trap Handling */
1443 [CSR_SSCRATCH] = { smode, read_sscratch, write_sscratch },
1444 [CSR_SEPC] = { smode, read_sepc, write_sepc },
1445 [CSR_SCAUSE] = { smode, read_scause, write_scause },
1446 [CSR_SBADADDR] = { smode, read_sbadaddr, write_sbadaddr },
1447 [CSR_SIP] = { smode, NULL, NULL, rmw_sip },
1449 /* Supervisor Protection and Translation */
1450 [CSR_SATP] = { smode, read_satp, write_satp },
1452 [CSR_HSTATUS] = { hmode, read_hstatus, write_hstatus },
1453 [CSR_HEDELEG] = { hmode, read_hedeleg, write_hedeleg },
1454 [CSR_HIDELEG] = { hmode, read_hideleg, write_hideleg },
1455 [CSR_HVIP] = { hmode, NULL, NULL, rmw_hvip },
1456 [CSR_HIP] = { hmode, NULL, NULL, rmw_hip },
1457 [CSR_HIE] = { hmode, read_hie, write_hie },
1458 [CSR_HCOUNTEREN] = { hmode, read_hcounteren, write_hcounteren },
1459 [CSR_HGEIE] = { hmode, read_hgeie, write_hgeie },
1460 [CSR_HTVAL] = { hmode, read_htval, write_htval },
1461 [CSR_HTINST] = { hmode, read_htinst, write_htinst },
1462 [CSR_HGEIP] = { hmode, read_hgeip, write_hgeip },
1463 [CSR_HGATP] = { hmode, read_hgatp, write_hgatp },
1464 [CSR_HTIMEDELTA] = { hmode, read_htimedelta, write_htimedelta },
1465 [CSR_HTIMEDELTAH] = { hmode32, read_htimedeltah, write_htimedeltah},
1467 [CSR_VSSTATUS] = { hmode, read_vsstatus, write_vsstatus },
1468 [CSR_VSIP] = { hmode, NULL, NULL, rmw_vsip },
1469 [CSR_VSIE] = { hmode, read_vsie, write_vsie },
1470 [CSR_VSTVEC] = { hmode, read_vstvec, write_vstvec },
1471 [CSR_VSSCRATCH] = { hmode, read_vsscratch, write_vsscratch },
1472 [CSR_VSEPC] = { hmode, read_vsepc, write_vsepc },
1473 [CSR_VSCAUSE] = { hmode, read_vscause, write_vscause },
1474 [CSR_VSTVAL] = { hmode, read_vstval, write_vstval },
1475 [CSR_VSATP] = { hmode, read_vsatp, write_vsatp },
1477 [CSR_MTVAL2] = { hmode, read_mtval2, write_mtval2 },
1478 [CSR_MTINST] = { hmode, read_mtinst, write_mtinst },
1480 /* Physical Memory Protection */
1481 [CSR_PMPCFG0 ... CSR_PMPCFG3] = { pmp, read_pmpcfg, write_pmpcfg },
1482 [CSR_PMPADDR0 ... CSR_PMPADDR15] = { pmp, read_pmpaddr, write_pmpaddr },
1484 /* Performance Counters */
1485 [CSR_HPMCOUNTER3 ... CSR_HPMCOUNTER31] = { ctr, read_zero },
1486 [CSR_MHPMCOUNTER3 ... CSR_MHPMCOUNTER31] = { any, read_zero },
1487 [CSR_MHPMEVENT3 ... CSR_MHPMEVENT31] = { any, read_zero },
1488 [CSR_HPMCOUNTER3H ... CSR_HPMCOUNTER31H] = { ctr32, read_zero },
1489 [CSR_MHPMCOUNTER3H ... CSR_MHPMCOUNTER31H] = { any32, read_zero },
1490 #endif /* !CONFIG_USER_ONLY */