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
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 /* loose check condition for fcsr in vector extension */
42 if ((csrno
== CSR_FCSR
) && (env
->misa
& RVV
)) {
43 return RISCV_EXCP_NONE
;
45 if (!env
->debugger
&& !riscv_cpu_fp_enabled(env
)) {
46 return RISCV_EXCP_ILLEGAL_INST
;
49 return RISCV_EXCP_NONE
;
52 static RISCVException
vs(CPURISCVState
*env
, int csrno
)
54 if (env
->misa
& RVV
) {
55 return RISCV_EXCP_NONE
;
57 return RISCV_EXCP_ILLEGAL_INST
;
60 static RISCVException
ctr(CPURISCVState
*env
, int csrno
)
62 #if !defined(CONFIG_USER_ONLY)
63 CPUState
*cs
= env_cpu(env
);
64 RISCVCPU
*cpu
= RISCV_CPU(cs
);
66 if (!cpu
->cfg
.ext_counters
) {
67 /* The Counters extensions is not enabled */
68 return RISCV_EXCP_ILLEGAL_INST
;
71 if (riscv_cpu_virt_enabled(env
)) {
74 if (!get_field(env
->hcounteren
, HCOUNTEREN_CY
) &&
75 get_field(env
->mcounteren
, HCOUNTEREN_CY
)) {
76 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT
;
80 if (!get_field(env
->hcounteren
, HCOUNTEREN_TM
) &&
81 get_field(env
->mcounteren
, HCOUNTEREN_TM
)) {
82 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT
;
86 if (!get_field(env
->hcounteren
, HCOUNTEREN_IR
) &&
87 get_field(env
->mcounteren
, HCOUNTEREN_IR
)) {
88 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT
;
91 case CSR_HPMCOUNTER3
...CSR_HPMCOUNTER31
:
92 if (!get_field(env
->hcounteren
, 1 << (csrno
- CSR_HPMCOUNTER3
)) &&
93 get_field(env
->mcounteren
, 1 << (csrno
- CSR_HPMCOUNTER3
))) {
94 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT
;
98 if (riscv_cpu_is_32bit(env
)) {
101 if (!get_field(env
->hcounteren
, HCOUNTEREN_CY
) &&
102 get_field(env
->mcounteren
, HCOUNTEREN_CY
)) {
103 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT
;
107 if (!get_field(env
->hcounteren
, HCOUNTEREN_TM
) &&
108 get_field(env
->mcounteren
, HCOUNTEREN_TM
)) {
109 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT
;
113 if (!get_field(env
->hcounteren
, HCOUNTEREN_IR
) &&
114 get_field(env
->mcounteren
, HCOUNTEREN_IR
)) {
115 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT
;
118 case CSR_HPMCOUNTER3H
...CSR_HPMCOUNTER31H
:
119 if (!get_field(env
->hcounteren
, 1 << (csrno
- CSR_HPMCOUNTER3H
)) &&
120 get_field(env
->mcounteren
, 1 << (csrno
- CSR_HPMCOUNTER3H
))) {
121 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT
;
128 return RISCV_EXCP_NONE
;
131 static RISCVException
ctr32(CPURISCVState
*env
, int csrno
)
133 if (!riscv_cpu_is_32bit(env
)) {
134 return RISCV_EXCP_ILLEGAL_INST
;
137 return ctr(env
, csrno
);
140 #if !defined(CONFIG_USER_ONLY)
141 static RISCVException
any(CPURISCVState
*env
, int csrno
)
143 return RISCV_EXCP_NONE
;
146 static RISCVException
any32(CPURISCVState
*env
, int csrno
)
148 if (!riscv_cpu_is_32bit(env
)) {
149 return RISCV_EXCP_ILLEGAL_INST
;
152 return any(env
, csrno
);
156 static RISCVException
smode(CPURISCVState
*env
, int csrno
)
158 if (riscv_has_ext(env
, RVS
)) {
159 return RISCV_EXCP_NONE
;
162 return RISCV_EXCP_ILLEGAL_INST
;
165 static RISCVException
hmode(CPURISCVState
*env
, int csrno
)
167 if (riscv_has_ext(env
, RVS
) &&
168 riscv_has_ext(env
, RVH
)) {
169 /* Hypervisor extension is supported */
170 if ((env
->priv
== PRV_S
&& !riscv_cpu_virt_enabled(env
)) ||
171 env
->priv
== PRV_M
) {
172 return RISCV_EXCP_NONE
;
174 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT
;
178 return RISCV_EXCP_ILLEGAL_INST
;
181 static RISCVException
hmode32(CPURISCVState
*env
, int csrno
)
183 if (!riscv_cpu_is_32bit(env
)) {
184 if (riscv_cpu_virt_enabled(env
)) {
185 return RISCV_EXCP_ILLEGAL_INST
;
187 return RISCV_EXCP_VIRT_INSTRUCTION_FAULT
;
191 return hmode(env
, csrno
);
195 static RISCVException
pmp(CPURISCVState
*env
, int csrno
)
197 if (riscv_feature(env
, RISCV_FEATURE_PMP
)) {
198 return RISCV_EXCP_NONE
;
201 return RISCV_EXCP_ILLEGAL_INST
;
204 static RISCVException
epmp(CPURISCVState
*env
, int csrno
)
206 if (env
->priv
== PRV_M
&& riscv_feature(env
, RISCV_FEATURE_EPMP
)) {
207 return RISCV_EXCP_NONE
;
210 return RISCV_EXCP_ILLEGAL_INST
;
214 /* User Floating-Point CSRs */
215 static RISCVException
read_fflags(CPURISCVState
*env
, int csrno
,
218 #if !defined(CONFIG_USER_ONLY)
219 if (!env
->debugger
&& !riscv_cpu_fp_enabled(env
)) {
220 return RISCV_EXCP_ILLEGAL_INST
;
223 *val
= riscv_cpu_get_fflags(env
);
224 return RISCV_EXCP_NONE
;
227 static RISCVException
write_fflags(CPURISCVState
*env
, int csrno
,
230 #if !defined(CONFIG_USER_ONLY)
231 if (!env
->debugger
&& !riscv_cpu_fp_enabled(env
)) {
232 return RISCV_EXCP_ILLEGAL_INST
;
234 env
->mstatus
|= MSTATUS_FS
;
236 riscv_cpu_set_fflags(env
, val
& (FSR_AEXC
>> FSR_AEXC_SHIFT
));
237 return RISCV_EXCP_NONE
;
240 static RISCVException
read_frm(CPURISCVState
*env
, int csrno
,
243 #if !defined(CONFIG_USER_ONLY)
244 if (!env
->debugger
&& !riscv_cpu_fp_enabled(env
)) {
245 return RISCV_EXCP_ILLEGAL_INST
;
249 return RISCV_EXCP_NONE
;
252 static RISCVException
write_frm(CPURISCVState
*env
, int csrno
,
255 #if !defined(CONFIG_USER_ONLY)
256 if (!env
->debugger
&& !riscv_cpu_fp_enabled(env
)) {
257 return RISCV_EXCP_ILLEGAL_INST
;
259 env
->mstatus
|= MSTATUS_FS
;
261 env
->frm
= val
& (FSR_RD
>> FSR_RD_SHIFT
);
262 return RISCV_EXCP_NONE
;
265 static RISCVException
read_fcsr(CPURISCVState
*env
, int csrno
,
268 #if !defined(CONFIG_USER_ONLY)
269 if (!env
->debugger
&& !riscv_cpu_fp_enabled(env
)) {
270 return RISCV_EXCP_ILLEGAL_INST
;
273 *val
= (riscv_cpu_get_fflags(env
) << FSR_AEXC_SHIFT
)
274 | (env
->frm
<< FSR_RD_SHIFT
);
275 if (vs(env
, csrno
) >= 0) {
276 *val
|= (env
->vxrm
<< FSR_VXRM_SHIFT
)
277 | (env
->vxsat
<< FSR_VXSAT_SHIFT
);
279 return RISCV_EXCP_NONE
;
282 static RISCVException
write_fcsr(CPURISCVState
*env
, int csrno
,
285 #if !defined(CONFIG_USER_ONLY)
286 if (!env
->debugger
&& !riscv_cpu_fp_enabled(env
)) {
287 return RISCV_EXCP_ILLEGAL_INST
;
289 env
->mstatus
|= MSTATUS_FS
;
291 env
->frm
= (val
& FSR_RD
) >> FSR_RD_SHIFT
;
292 if (vs(env
, csrno
) >= 0) {
293 env
->vxrm
= (val
& FSR_VXRM
) >> FSR_VXRM_SHIFT
;
294 env
->vxsat
= (val
& FSR_VXSAT
) >> FSR_VXSAT_SHIFT
;
296 riscv_cpu_set_fflags(env
, (val
& FSR_AEXC
) >> FSR_AEXC_SHIFT
);
297 return RISCV_EXCP_NONE
;
300 static RISCVException
read_vtype(CPURISCVState
*env
, int csrno
,
304 return RISCV_EXCP_NONE
;
307 static RISCVException
read_vl(CPURISCVState
*env
, int csrno
,
311 return RISCV_EXCP_NONE
;
314 static RISCVException
read_vxrm(CPURISCVState
*env
, int csrno
,
318 return RISCV_EXCP_NONE
;
321 static RISCVException
write_vxrm(CPURISCVState
*env
, int csrno
,
325 return RISCV_EXCP_NONE
;
328 static RISCVException
read_vxsat(CPURISCVState
*env
, int csrno
,
332 return RISCV_EXCP_NONE
;
335 static RISCVException
write_vxsat(CPURISCVState
*env
, int csrno
,
339 return RISCV_EXCP_NONE
;
342 static RISCVException
read_vstart(CPURISCVState
*env
, int csrno
,
346 return RISCV_EXCP_NONE
;
349 static RISCVException
write_vstart(CPURISCVState
*env
, int csrno
,
353 return RISCV_EXCP_NONE
;
356 /* User Timers and Counters */
357 static RISCVException
read_instret(CPURISCVState
*env
, int csrno
,
360 #if !defined(CONFIG_USER_ONLY)
361 if (icount_enabled()) {
364 *val
= cpu_get_host_ticks();
367 *val
= cpu_get_host_ticks();
369 return RISCV_EXCP_NONE
;
372 static RISCVException
read_instreth(CPURISCVState
*env
, int csrno
,
375 #if !defined(CONFIG_USER_ONLY)
376 if (icount_enabled()) {
377 *val
= icount_get() >> 32;
379 *val
= cpu_get_host_ticks() >> 32;
382 *val
= cpu_get_host_ticks() >> 32;
384 return RISCV_EXCP_NONE
;
387 #if defined(CONFIG_USER_ONLY)
388 static RISCVException
read_time(CPURISCVState
*env
, int csrno
,
391 *val
= cpu_get_host_ticks();
392 return RISCV_EXCP_NONE
;
395 static RISCVException
read_timeh(CPURISCVState
*env
, int csrno
,
398 *val
= cpu_get_host_ticks() >> 32;
399 return RISCV_EXCP_NONE
;
402 #else /* CONFIG_USER_ONLY */
404 static RISCVException
read_time(CPURISCVState
*env
, int csrno
,
407 uint64_t delta
= riscv_cpu_virt_enabled(env
) ? env
->htimedelta
: 0;
409 if (!env
->rdtime_fn
) {
410 return RISCV_EXCP_ILLEGAL_INST
;
413 *val
= env
->rdtime_fn(env
->rdtime_fn_arg
) + delta
;
414 return RISCV_EXCP_NONE
;
417 static RISCVException
read_timeh(CPURISCVState
*env
, int csrno
,
420 uint64_t delta
= riscv_cpu_virt_enabled(env
) ? env
->htimedelta
: 0;
422 if (!env
->rdtime_fn
) {
423 return RISCV_EXCP_ILLEGAL_INST
;
426 *val
= (env
->rdtime_fn(env
->rdtime_fn_arg
) + delta
) >> 32;
427 return RISCV_EXCP_NONE
;
430 /* Machine constants */
432 #define M_MODE_INTERRUPTS (MIP_MSIP | MIP_MTIP | MIP_MEIP)
433 #define S_MODE_INTERRUPTS (MIP_SSIP | MIP_STIP | MIP_SEIP)
434 #define VS_MODE_INTERRUPTS (MIP_VSSIP | MIP_VSTIP | MIP_VSEIP)
436 static const target_ulong delegable_ints
= S_MODE_INTERRUPTS
|
438 static const target_ulong all_ints
= M_MODE_INTERRUPTS
| S_MODE_INTERRUPTS
|
440 static const target_ulong delegable_excps
=
441 (1ULL << (RISCV_EXCP_INST_ADDR_MIS
)) |
442 (1ULL << (RISCV_EXCP_INST_ACCESS_FAULT
)) |
443 (1ULL << (RISCV_EXCP_ILLEGAL_INST
)) |
444 (1ULL << (RISCV_EXCP_BREAKPOINT
)) |
445 (1ULL << (RISCV_EXCP_LOAD_ADDR_MIS
)) |
446 (1ULL << (RISCV_EXCP_LOAD_ACCESS_FAULT
)) |
447 (1ULL << (RISCV_EXCP_STORE_AMO_ADDR_MIS
)) |
448 (1ULL << (RISCV_EXCP_STORE_AMO_ACCESS_FAULT
)) |
449 (1ULL << (RISCV_EXCP_U_ECALL
)) |
450 (1ULL << (RISCV_EXCP_S_ECALL
)) |
451 (1ULL << (RISCV_EXCP_VS_ECALL
)) |
452 (1ULL << (RISCV_EXCP_M_ECALL
)) |
453 (1ULL << (RISCV_EXCP_INST_PAGE_FAULT
)) |
454 (1ULL << (RISCV_EXCP_LOAD_PAGE_FAULT
)) |
455 (1ULL << (RISCV_EXCP_STORE_PAGE_FAULT
)) |
456 (1ULL << (RISCV_EXCP_INST_GUEST_PAGE_FAULT
)) |
457 (1ULL << (RISCV_EXCP_LOAD_GUEST_ACCESS_FAULT
)) |
458 (1ULL << (RISCV_EXCP_VIRT_INSTRUCTION_FAULT
)) |
459 (1ULL << (RISCV_EXCP_STORE_GUEST_AMO_ACCESS_FAULT
));
460 static const target_ulong sstatus_v1_10_mask
= SSTATUS_SIE
| SSTATUS_SPIE
|
461 SSTATUS_UIE
| SSTATUS_UPIE
| SSTATUS_SPP
| SSTATUS_FS
| SSTATUS_XS
|
462 SSTATUS_SUM
| SSTATUS_MXR
;
463 static const target_ulong sip_writable_mask
= SIP_SSIP
| MIP_USIP
| MIP_UEIP
;
464 static const target_ulong hip_writable_mask
= MIP_VSSIP
;
465 static const target_ulong hvip_writable_mask
= MIP_VSSIP
| MIP_VSTIP
| MIP_VSEIP
;
466 static const target_ulong vsip_writable_mask
= MIP_VSSIP
;
468 static const char valid_vm_1_10_32
[16] = {
473 static const char valid_vm_1_10_64
[16] = {
480 /* Machine Information Registers */
481 static RISCVException
read_zero(CPURISCVState
*env
, int csrno
,
485 return RISCV_EXCP_NONE
;
488 static RISCVException
read_mhartid(CPURISCVState
*env
, int csrno
,
492 return RISCV_EXCP_NONE
;
495 /* Machine Trap Setup */
496 static RISCVException
read_mstatus(CPURISCVState
*env
, int csrno
,
500 return RISCV_EXCP_NONE
;
503 static int validate_vm(CPURISCVState
*env
, target_ulong vm
)
505 if (riscv_cpu_is_32bit(env
)) {
506 return valid_vm_1_10_32
[vm
& 0xf];
508 return valid_vm_1_10_64
[vm
& 0xf];
512 static RISCVException
write_mstatus(CPURISCVState
*env
, int csrno
,
515 uint64_t mstatus
= env
->mstatus
;
519 /* flush tlb on mstatus fields that affect VM */
520 if ((val
^ mstatus
) & (MSTATUS_MXR
| MSTATUS_MPP
| MSTATUS_MPV
|
521 MSTATUS_MPRV
| MSTATUS_SUM
)) {
522 tlb_flush(env_cpu(env
));
524 mask
= MSTATUS_SIE
| MSTATUS_SPIE
| MSTATUS_MIE
| MSTATUS_MPIE
|
525 MSTATUS_SPP
| MSTATUS_FS
| MSTATUS_MPRV
| MSTATUS_SUM
|
526 MSTATUS_MPP
| MSTATUS_MXR
| MSTATUS_TVM
| MSTATUS_TSR
|
529 if (!riscv_cpu_is_32bit(env
)) {
531 * RV32: MPV and GVA are not in mstatus. The current plan is to
532 * add them to mstatush. For now, we just don't support it.
534 mask
|= MSTATUS_MPV
| MSTATUS_GVA
;
537 mstatus
= (mstatus
& ~mask
) | (val
& mask
);
539 dirty
= ((mstatus
& MSTATUS_FS
) == MSTATUS_FS
) |
540 ((mstatus
& MSTATUS_XS
) == MSTATUS_XS
);
541 if (riscv_cpu_is_32bit(env
)) {
542 mstatus
= set_field(mstatus
, MSTATUS32_SD
, dirty
);
544 mstatus
= set_field(mstatus
, MSTATUS64_SD
, dirty
);
546 env
->mstatus
= mstatus
;
548 return RISCV_EXCP_NONE
;
551 static RISCVException
read_mstatush(CPURISCVState
*env
, int csrno
,
554 *val
= env
->mstatus
>> 32;
555 return RISCV_EXCP_NONE
;
558 static RISCVException
write_mstatush(CPURISCVState
*env
, int csrno
,
561 uint64_t valh
= (uint64_t)val
<< 32;
562 uint64_t mask
= MSTATUS_MPV
| MSTATUS_GVA
;
564 if ((valh
^ env
->mstatus
) & (MSTATUS_MPV
)) {
565 tlb_flush(env_cpu(env
));
568 env
->mstatus
= (env
->mstatus
& ~mask
) | (valh
& mask
);
570 return RISCV_EXCP_NONE
;
573 static RISCVException
read_misa(CPURISCVState
*env
, int csrno
,
577 return RISCV_EXCP_NONE
;
580 static RISCVException
write_misa(CPURISCVState
*env
, int csrno
,
583 if (!riscv_feature(env
, RISCV_FEATURE_MISA
)) {
584 /* drop write to misa */
585 return RISCV_EXCP_NONE
;
588 /* 'I' or 'E' must be present */
589 if (!(val
& (RVI
| RVE
))) {
590 /* It is not, drop write to misa */
591 return RISCV_EXCP_NONE
;
594 /* 'E' excludes all other extensions */
596 /* when we support 'E' we can do "val = RVE;" however
597 * for now we just drop writes if 'E' is present.
599 return RISCV_EXCP_NONE
;
602 /* Mask extensions that are not supported by this hart */
603 val
&= env
->misa_mask
;
605 /* Mask extensions that are not supported by QEMU */
606 val
&= (RVI
| RVE
| RVM
| RVA
| RVF
| RVD
| RVC
| RVS
| RVU
);
608 /* 'D' depends on 'F', so clear 'D' if 'F' is not present */
609 if ((val
& RVD
) && !(val
& RVF
)) {
613 /* Suppress 'C' if next instruction is not aligned
614 * TODO: this should check next_pc
616 if ((val
& RVC
) && (GETPC() & ~3) != 0) {
620 /* misa.MXL writes are not supported by QEMU */
621 if (riscv_cpu_is_32bit(env
)) {
622 val
= (env
->misa
& MISA32_MXL
) | (val
& ~MISA32_MXL
);
624 val
= (env
->misa
& MISA64_MXL
) | (val
& ~MISA64_MXL
);
627 /* flush translation cache */
628 if (val
!= env
->misa
) {
629 tb_flush(env_cpu(env
));
634 return RISCV_EXCP_NONE
;
637 static RISCVException
read_medeleg(CPURISCVState
*env
, int csrno
,
641 return RISCV_EXCP_NONE
;
644 static RISCVException
write_medeleg(CPURISCVState
*env
, int csrno
,
647 env
->medeleg
= (env
->medeleg
& ~delegable_excps
) | (val
& delegable_excps
);
648 return RISCV_EXCP_NONE
;
651 static RISCVException
read_mideleg(CPURISCVState
*env
, int csrno
,
655 return RISCV_EXCP_NONE
;
658 static RISCVException
write_mideleg(CPURISCVState
*env
, int csrno
,
661 env
->mideleg
= (env
->mideleg
& ~delegable_ints
) | (val
& delegable_ints
);
662 if (riscv_has_ext(env
, RVH
)) {
663 env
->mideleg
|= VS_MODE_INTERRUPTS
;
665 return RISCV_EXCP_NONE
;
668 static RISCVException
read_mie(CPURISCVState
*env
, int csrno
,
672 return RISCV_EXCP_NONE
;
675 static RISCVException
write_mie(CPURISCVState
*env
, int csrno
,
678 env
->mie
= (env
->mie
& ~all_ints
) | (val
& all_ints
);
679 return RISCV_EXCP_NONE
;
682 static RISCVException
read_mtvec(CPURISCVState
*env
, int csrno
,
686 return RISCV_EXCP_NONE
;
689 static RISCVException
write_mtvec(CPURISCVState
*env
, int csrno
,
692 /* bits [1:0] encode mode; 0 = direct, 1 = vectored, 2 >= reserved */
696 qemu_log_mask(LOG_UNIMP
, "CSR_MTVEC: reserved mode not supported\n");
698 return RISCV_EXCP_NONE
;
701 static RISCVException
read_mcounteren(CPURISCVState
*env
, int csrno
,
704 *val
= env
->mcounteren
;
705 return RISCV_EXCP_NONE
;
708 static RISCVException
write_mcounteren(CPURISCVState
*env
, int csrno
,
711 env
->mcounteren
= val
;
712 return RISCV_EXCP_NONE
;
715 /* Machine Trap Handling */
716 static RISCVException
read_mscratch(CPURISCVState
*env
, int csrno
,
719 *val
= env
->mscratch
;
720 return RISCV_EXCP_NONE
;
723 static RISCVException
write_mscratch(CPURISCVState
*env
, int csrno
,
727 return RISCV_EXCP_NONE
;
730 static RISCVException
read_mepc(CPURISCVState
*env
, int csrno
,
734 return RISCV_EXCP_NONE
;
737 static RISCVException
write_mepc(CPURISCVState
*env
, int csrno
,
741 return RISCV_EXCP_NONE
;
744 static RISCVException
read_mcause(CPURISCVState
*env
, int csrno
,
748 return RISCV_EXCP_NONE
;
751 static RISCVException
write_mcause(CPURISCVState
*env
, int csrno
,
755 return RISCV_EXCP_NONE
;
758 static RISCVException
read_mtval(CPURISCVState
*env
, int csrno
,
762 return RISCV_EXCP_NONE
;
765 static RISCVException
write_mtval(CPURISCVState
*env
, int csrno
,
769 return RISCV_EXCP_NONE
;
772 static RISCVException
rmw_mip(CPURISCVState
*env
, int csrno
,
773 target_ulong
*ret_value
,
774 target_ulong new_value
, target_ulong write_mask
)
776 RISCVCPU
*cpu
= env_archcpu(env
);
777 /* Allow software control of delegable interrupts not claimed by hardware */
778 target_ulong mask
= write_mask
& delegable_ints
& ~env
->miclaim
;
782 old_mip
= riscv_cpu_update_mip(cpu
, mask
, (new_value
& mask
));
788 *ret_value
= old_mip
;
791 return RISCV_EXCP_NONE
;
794 /* Supervisor Trap Setup */
795 static RISCVException
read_sstatus(CPURISCVState
*env
, int csrno
,
798 target_ulong mask
= (sstatus_v1_10_mask
);
800 if (riscv_cpu_is_32bit(env
)) {
801 mask
|= SSTATUS32_SD
;
803 mask
|= SSTATUS64_SD
;
806 *val
= env
->mstatus
& mask
;
807 return RISCV_EXCP_NONE
;
810 static RISCVException
write_sstatus(CPURISCVState
*env
, int csrno
,
813 target_ulong mask
= (sstatus_v1_10_mask
);
814 target_ulong newval
= (env
->mstatus
& ~mask
) | (val
& mask
);
815 return write_mstatus(env
, CSR_MSTATUS
, newval
);
818 static RISCVException
read_vsie(CPURISCVState
*env
, int csrno
,
821 /* Shift the VS bits to their S bit location in vsie */
822 *val
= (env
->mie
& env
->hideleg
& VS_MODE_INTERRUPTS
) >> 1;
823 return RISCV_EXCP_NONE
;
826 static RISCVException
read_sie(CPURISCVState
*env
, int csrno
,
829 if (riscv_cpu_virt_enabled(env
)) {
830 read_vsie(env
, CSR_VSIE
, val
);
832 *val
= env
->mie
& env
->mideleg
;
834 return RISCV_EXCP_NONE
;
837 static RISCVException
write_vsie(CPURISCVState
*env
, int csrno
,
840 /* Shift the S bits to their VS bit location in mie */
841 target_ulong newval
= (env
->mie
& ~VS_MODE_INTERRUPTS
) |
842 ((val
<< 1) & env
->hideleg
& VS_MODE_INTERRUPTS
);
843 return write_mie(env
, CSR_MIE
, newval
);
846 static int write_sie(CPURISCVState
*env
, int csrno
, target_ulong val
)
848 if (riscv_cpu_virt_enabled(env
)) {
849 write_vsie(env
, CSR_VSIE
, val
);
851 target_ulong newval
= (env
->mie
& ~S_MODE_INTERRUPTS
) |
852 (val
& S_MODE_INTERRUPTS
);
853 write_mie(env
, CSR_MIE
, newval
);
856 return RISCV_EXCP_NONE
;
859 static RISCVException
read_stvec(CPURISCVState
*env
, int csrno
,
863 return RISCV_EXCP_NONE
;
866 static RISCVException
write_stvec(CPURISCVState
*env
, int csrno
,
869 /* bits [1:0] encode mode; 0 = direct, 1 = vectored, 2 >= reserved */
873 qemu_log_mask(LOG_UNIMP
, "CSR_STVEC: reserved mode not supported\n");
875 return RISCV_EXCP_NONE
;
878 static RISCVException
read_scounteren(CPURISCVState
*env
, int csrno
,
881 *val
= env
->scounteren
;
882 return RISCV_EXCP_NONE
;
885 static RISCVException
write_scounteren(CPURISCVState
*env
, int csrno
,
888 env
->scounteren
= val
;
889 return RISCV_EXCP_NONE
;
892 /* Supervisor Trap Handling */
893 static RISCVException
read_sscratch(CPURISCVState
*env
, int csrno
,
896 *val
= env
->sscratch
;
897 return RISCV_EXCP_NONE
;
900 static RISCVException
write_sscratch(CPURISCVState
*env
, int csrno
,
904 return RISCV_EXCP_NONE
;
907 static RISCVException
read_sepc(CPURISCVState
*env
, int csrno
,
911 return RISCV_EXCP_NONE
;
914 static RISCVException
write_sepc(CPURISCVState
*env
, int csrno
,
918 return RISCV_EXCP_NONE
;
921 static RISCVException
read_scause(CPURISCVState
*env
, int csrno
,
925 return RISCV_EXCP_NONE
;
928 static RISCVException
write_scause(CPURISCVState
*env
, int csrno
,
932 return RISCV_EXCP_NONE
;
935 static RISCVException
read_stval(CPURISCVState
*env
, int csrno
,
939 return RISCV_EXCP_NONE
;
942 static RISCVException
write_stval(CPURISCVState
*env
, int csrno
,
946 return RISCV_EXCP_NONE
;
949 static RISCVException
rmw_vsip(CPURISCVState
*env
, int csrno
,
950 target_ulong
*ret_value
,
951 target_ulong new_value
, target_ulong write_mask
)
953 /* Shift the S bits to their VS bit location in mip */
954 int ret
= rmw_mip(env
, 0, ret_value
, new_value
<< 1,
955 (write_mask
<< 1) & vsip_writable_mask
& env
->hideleg
);
956 *ret_value
&= VS_MODE_INTERRUPTS
;
957 /* Shift the VS bits to their S bit location in vsip */
962 static RISCVException
rmw_sip(CPURISCVState
*env
, int csrno
,
963 target_ulong
*ret_value
,
964 target_ulong new_value
, target_ulong write_mask
)
968 if (riscv_cpu_virt_enabled(env
)) {
969 ret
= rmw_vsip(env
, CSR_VSIP
, ret_value
, new_value
, write_mask
);
971 ret
= rmw_mip(env
, CSR_MSTATUS
, ret_value
, new_value
,
972 write_mask
& env
->mideleg
& sip_writable_mask
);
975 *ret_value
&= env
->mideleg
;
979 /* Supervisor Protection and Translation */
980 static RISCVException
read_satp(CPURISCVState
*env
, int csrno
,
983 if (!riscv_feature(env
, RISCV_FEATURE_MMU
)) {
985 return RISCV_EXCP_NONE
;
988 if (env
->priv
== PRV_S
&& get_field(env
->mstatus
, MSTATUS_TVM
)) {
989 return RISCV_EXCP_ILLEGAL_INST
;
994 return RISCV_EXCP_NONE
;
997 static RISCVException
write_satp(CPURISCVState
*env
, int csrno
,
1002 if (!riscv_feature(env
, RISCV_FEATURE_MMU
)) {
1003 return RISCV_EXCP_NONE
;
1006 if (riscv_cpu_is_32bit(env
)) {
1007 vm
= validate_vm(env
, get_field(val
, SATP32_MODE
));
1008 mask
= (val
^ env
->satp
) & (SATP32_MODE
| SATP32_ASID
| SATP32_PPN
);
1009 asid
= (val
^ env
->satp
) & SATP32_ASID
;
1011 vm
= validate_vm(env
, get_field(val
, SATP64_MODE
));
1012 mask
= (val
^ env
->satp
) & (SATP64_MODE
| SATP64_ASID
| SATP64_PPN
);
1013 asid
= (val
^ env
->satp
) & SATP64_ASID
;
1017 if (env
->priv
== PRV_S
&& get_field(env
->mstatus
, MSTATUS_TVM
)) {
1018 return RISCV_EXCP_ILLEGAL_INST
;
1021 tlb_flush(env_cpu(env
));
1026 return RISCV_EXCP_NONE
;
1029 /* Hypervisor Extensions */
1030 static RISCVException
read_hstatus(CPURISCVState
*env
, int csrno
,
1033 *val
= env
->hstatus
;
1034 if (!riscv_cpu_is_32bit(env
)) {
1035 /* We only support 64-bit VSXL */
1036 *val
= set_field(*val
, HSTATUS_VSXL
, 2);
1038 /* We only support little endian */
1039 *val
= set_field(*val
, HSTATUS_VSBE
, 0);
1040 return RISCV_EXCP_NONE
;
1043 static RISCVException
write_hstatus(CPURISCVState
*env
, int csrno
,
1047 if (!riscv_cpu_is_32bit(env
) && get_field(val
, HSTATUS_VSXL
) != 2) {
1048 qemu_log_mask(LOG_UNIMP
, "QEMU does not support mixed HSXLEN options.");
1050 if (get_field(val
, HSTATUS_VSBE
) != 0) {
1051 qemu_log_mask(LOG_UNIMP
, "QEMU does not support big endian guests.");
1053 return RISCV_EXCP_NONE
;
1056 static RISCVException
read_hedeleg(CPURISCVState
*env
, int csrno
,
1059 *val
= env
->hedeleg
;
1060 return RISCV_EXCP_NONE
;
1063 static RISCVException
write_hedeleg(CPURISCVState
*env
, int csrno
,
1067 return RISCV_EXCP_NONE
;
1070 static RISCVException
read_hideleg(CPURISCVState
*env
, int csrno
,
1073 *val
= env
->hideleg
;
1074 return RISCV_EXCP_NONE
;
1077 static RISCVException
write_hideleg(CPURISCVState
*env
, int csrno
,
1081 return RISCV_EXCP_NONE
;
1084 static RISCVException
rmw_hvip(CPURISCVState
*env
, int csrno
,
1085 target_ulong
*ret_value
,
1086 target_ulong new_value
, target_ulong write_mask
)
1088 int ret
= rmw_mip(env
, 0, ret_value
, new_value
,
1089 write_mask
& hvip_writable_mask
);
1091 *ret_value
&= hvip_writable_mask
;
1096 static RISCVException
rmw_hip(CPURISCVState
*env
, int csrno
,
1097 target_ulong
*ret_value
,
1098 target_ulong new_value
, target_ulong write_mask
)
1100 int ret
= rmw_mip(env
, 0, ret_value
, new_value
,
1101 write_mask
& hip_writable_mask
);
1103 *ret_value
&= hip_writable_mask
;
1108 static RISCVException
read_hie(CPURISCVState
*env
, int csrno
,
1111 *val
= env
->mie
& VS_MODE_INTERRUPTS
;
1112 return RISCV_EXCP_NONE
;
1115 static RISCVException
write_hie(CPURISCVState
*env
, int csrno
,
1118 target_ulong newval
= (env
->mie
& ~VS_MODE_INTERRUPTS
) | (val
& VS_MODE_INTERRUPTS
);
1119 return write_mie(env
, CSR_MIE
, newval
);
1122 static RISCVException
read_hcounteren(CPURISCVState
*env
, int csrno
,
1125 *val
= env
->hcounteren
;
1126 return RISCV_EXCP_NONE
;
1129 static RISCVException
write_hcounteren(CPURISCVState
*env
, int csrno
,
1132 env
->hcounteren
= val
;
1133 return RISCV_EXCP_NONE
;
1136 static RISCVException
read_hgeie(CPURISCVState
*env
, int csrno
,
1139 qemu_log_mask(LOG_UNIMP
, "No support for a non-zero GEILEN.");
1140 return RISCV_EXCP_NONE
;
1143 static RISCVException
write_hgeie(CPURISCVState
*env
, int csrno
,
1146 qemu_log_mask(LOG_UNIMP
, "No support for a non-zero GEILEN.");
1147 return RISCV_EXCP_NONE
;
1150 static RISCVException
read_htval(CPURISCVState
*env
, int csrno
,
1154 return RISCV_EXCP_NONE
;
1157 static RISCVException
write_htval(CPURISCVState
*env
, int csrno
,
1161 return RISCV_EXCP_NONE
;
1164 static RISCVException
read_htinst(CPURISCVState
*env
, int csrno
,
1168 return RISCV_EXCP_NONE
;
1171 static RISCVException
write_htinst(CPURISCVState
*env
, int csrno
,
1174 return RISCV_EXCP_NONE
;
1177 static RISCVException
read_hgeip(CPURISCVState
*env
, int csrno
,
1180 qemu_log_mask(LOG_UNIMP
, "No support for a non-zero GEILEN.");
1181 return RISCV_EXCP_NONE
;
1184 static RISCVException
write_hgeip(CPURISCVState
*env
, int csrno
,
1187 qemu_log_mask(LOG_UNIMP
, "No support for a non-zero GEILEN.");
1188 return RISCV_EXCP_NONE
;
1191 static RISCVException
read_hgatp(CPURISCVState
*env
, int csrno
,
1195 return RISCV_EXCP_NONE
;
1198 static RISCVException
write_hgatp(CPURISCVState
*env
, int csrno
,
1202 return RISCV_EXCP_NONE
;
1205 static RISCVException
read_htimedelta(CPURISCVState
*env
, int csrno
,
1208 if (!env
->rdtime_fn
) {
1209 return RISCV_EXCP_ILLEGAL_INST
;
1212 *val
= env
->htimedelta
;
1213 return RISCV_EXCP_NONE
;
1216 static RISCVException
write_htimedelta(CPURISCVState
*env
, int csrno
,
1219 if (!env
->rdtime_fn
) {
1220 return RISCV_EXCP_ILLEGAL_INST
;
1223 if (riscv_cpu_is_32bit(env
)) {
1224 env
->htimedelta
= deposit64(env
->htimedelta
, 0, 32, (uint64_t)val
);
1226 env
->htimedelta
= val
;
1228 return RISCV_EXCP_NONE
;
1231 static RISCVException
read_htimedeltah(CPURISCVState
*env
, int csrno
,
1234 if (!env
->rdtime_fn
) {
1235 return RISCV_EXCP_ILLEGAL_INST
;
1238 *val
= env
->htimedelta
>> 32;
1239 return RISCV_EXCP_NONE
;
1242 static RISCVException
write_htimedeltah(CPURISCVState
*env
, int csrno
,
1245 if (!env
->rdtime_fn
) {
1246 return RISCV_EXCP_ILLEGAL_INST
;
1249 env
->htimedelta
= deposit64(env
->htimedelta
, 32, 32, (uint64_t)val
);
1250 return RISCV_EXCP_NONE
;
1253 /* Virtual CSR Registers */
1254 static RISCVException
read_vsstatus(CPURISCVState
*env
, int csrno
,
1257 *val
= env
->vsstatus
;
1258 return RISCV_EXCP_NONE
;
1261 static RISCVException
write_vsstatus(CPURISCVState
*env
, int csrno
,
1264 uint64_t mask
= (target_ulong
)-1;
1265 env
->vsstatus
= (env
->vsstatus
& ~mask
) | (uint64_t)val
;
1266 return RISCV_EXCP_NONE
;
1269 static int read_vstvec(CPURISCVState
*env
, int csrno
, target_ulong
*val
)
1272 return RISCV_EXCP_NONE
;
1275 static RISCVException
write_vstvec(CPURISCVState
*env
, int csrno
,
1279 return RISCV_EXCP_NONE
;
1282 static RISCVException
read_vsscratch(CPURISCVState
*env
, int csrno
,
1285 *val
= env
->vsscratch
;
1286 return RISCV_EXCP_NONE
;
1289 static RISCVException
write_vsscratch(CPURISCVState
*env
, int csrno
,
1292 env
->vsscratch
= val
;
1293 return RISCV_EXCP_NONE
;
1296 static RISCVException
read_vsepc(CPURISCVState
*env
, int csrno
,
1300 return RISCV_EXCP_NONE
;
1303 static RISCVException
write_vsepc(CPURISCVState
*env
, int csrno
,
1307 return RISCV_EXCP_NONE
;
1310 static RISCVException
read_vscause(CPURISCVState
*env
, int csrno
,
1313 *val
= env
->vscause
;
1314 return RISCV_EXCP_NONE
;
1317 static RISCVException
write_vscause(CPURISCVState
*env
, int csrno
,
1321 return RISCV_EXCP_NONE
;
1324 static RISCVException
read_vstval(CPURISCVState
*env
, int csrno
,
1328 return RISCV_EXCP_NONE
;
1331 static RISCVException
write_vstval(CPURISCVState
*env
, int csrno
,
1335 return RISCV_EXCP_NONE
;
1338 static RISCVException
read_vsatp(CPURISCVState
*env
, int csrno
,
1342 return RISCV_EXCP_NONE
;
1345 static RISCVException
write_vsatp(CPURISCVState
*env
, int csrno
,
1349 return RISCV_EXCP_NONE
;
1352 static RISCVException
read_mtval2(CPURISCVState
*env
, int csrno
,
1356 return RISCV_EXCP_NONE
;
1359 static RISCVException
write_mtval2(CPURISCVState
*env
, int csrno
,
1363 return RISCV_EXCP_NONE
;
1366 static RISCVException
read_mtinst(CPURISCVState
*env
, int csrno
,
1370 return RISCV_EXCP_NONE
;
1373 static RISCVException
write_mtinst(CPURISCVState
*env
, int csrno
,
1377 return RISCV_EXCP_NONE
;
1380 /* Physical Memory Protection */
1381 static RISCVException
read_mseccfg(CPURISCVState
*env
, int csrno
,
1384 *val
= mseccfg_csr_read(env
);
1385 return RISCV_EXCP_NONE
;
1388 static RISCVException
write_mseccfg(CPURISCVState
*env
, int csrno
,
1391 mseccfg_csr_write(env
, val
);
1392 return RISCV_EXCP_NONE
;
1395 static RISCVException
read_pmpcfg(CPURISCVState
*env
, int csrno
,
1398 *val
= pmpcfg_csr_read(env
, csrno
- CSR_PMPCFG0
);
1399 return RISCV_EXCP_NONE
;
1402 static RISCVException
write_pmpcfg(CPURISCVState
*env
, int csrno
,
1405 pmpcfg_csr_write(env
, csrno
- CSR_PMPCFG0
, val
);
1406 return RISCV_EXCP_NONE
;
1409 static RISCVException
read_pmpaddr(CPURISCVState
*env
, int csrno
,
1412 *val
= pmpaddr_csr_read(env
, csrno
- CSR_PMPADDR0
);
1413 return RISCV_EXCP_NONE
;
1416 static RISCVException
write_pmpaddr(CPURISCVState
*env
, int csrno
,
1419 pmpaddr_csr_write(env
, csrno
- CSR_PMPADDR0
, val
);
1420 return RISCV_EXCP_NONE
;
1426 * riscv_csrrw - read and/or update control and status register
1428 * csrr <-> riscv_csrrw(env, csrno, ret_value, 0, 0);
1429 * csrrw <-> riscv_csrrw(env, csrno, ret_value, value, -1);
1430 * csrrs <-> riscv_csrrw(env, csrno, ret_value, -1, value);
1431 * csrrc <-> riscv_csrrw(env, csrno, ret_value, 0, value);
1434 RISCVException
riscv_csrrw(CPURISCVState
*env
, int csrno
,
1435 target_ulong
*ret_value
,
1436 target_ulong new_value
, target_ulong write_mask
)
1439 target_ulong old_value
;
1440 RISCVCPU
*cpu
= env_archcpu(env
);
1442 /* check privileges and return -1 if check fails */
1443 #if !defined(CONFIG_USER_ONLY)
1444 int effective_priv
= env
->priv
;
1445 int read_only
= get_field(csrno
, 0xC00) == 3;
1447 if (riscv_has_ext(env
, RVH
) &&
1448 env
->priv
== PRV_S
&&
1449 !riscv_cpu_virt_enabled(env
)) {
1451 * We are in S mode without virtualisation, therefore we are in HS Mode.
1452 * Add 1 to the effective privledge level to allow us to access the
1458 if ((write_mask
&& read_only
) ||
1459 (!env
->debugger
&& (effective_priv
< get_field(csrno
, 0x300)))) {
1460 return RISCV_EXCP_ILLEGAL_INST
;
1464 /* ensure the CSR extension is enabled. */
1465 if (!cpu
->cfg
.ext_icsr
) {
1466 return RISCV_EXCP_ILLEGAL_INST
;
1469 /* check predicate */
1470 if (!csr_ops
[csrno
].predicate
) {
1471 return RISCV_EXCP_ILLEGAL_INST
;
1473 ret
= csr_ops
[csrno
].predicate(env
, csrno
);
1474 if (ret
!= RISCV_EXCP_NONE
) {
1478 /* execute combined read/write operation if it exists */
1479 if (csr_ops
[csrno
].op
) {
1480 return csr_ops
[csrno
].op(env
, csrno
, ret_value
, new_value
, write_mask
);
1483 /* if no accessor exists then return failure */
1484 if (!csr_ops
[csrno
].read
) {
1485 return RISCV_EXCP_ILLEGAL_INST
;
1487 /* read old value */
1488 ret
= csr_ops
[csrno
].read(env
, csrno
, &old_value
);
1489 if (ret
!= RISCV_EXCP_NONE
) {
1493 /* write value if writable and write mask set, otherwise drop writes */
1495 new_value
= (old_value
& ~write_mask
) | (new_value
& write_mask
);
1496 if (csr_ops
[csrno
].write
) {
1497 ret
= csr_ops
[csrno
].write(env
, csrno
, new_value
);
1498 if (ret
!= RISCV_EXCP_NONE
) {
1504 /* return old value */
1506 *ret_value
= old_value
;
1509 return RISCV_EXCP_NONE
;
1513 * Debugger support. If not in user mode, set env->debugger before the
1514 * riscv_csrrw call and clear it after the call.
1516 RISCVException
riscv_csrrw_debug(CPURISCVState
*env
, int csrno
,
1517 target_ulong
*ret_value
,
1518 target_ulong new_value
,
1519 target_ulong write_mask
)
1522 #if !defined(CONFIG_USER_ONLY)
1523 env
->debugger
= true;
1525 ret
= riscv_csrrw(env
, csrno
, ret_value
, new_value
, write_mask
);
1526 #if !defined(CONFIG_USER_ONLY)
1527 env
->debugger
= false;
1532 /* Control and Status Register function table */
1533 riscv_csr_operations csr_ops
[CSR_TABLE_SIZE
] = {
1534 /* User Floating-Point CSRs */
1535 [CSR_FFLAGS
] = { "fflags", fs
, read_fflags
, write_fflags
},
1536 [CSR_FRM
] = { "frm", fs
, read_frm
, write_frm
},
1537 [CSR_FCSR
] = { "fcsr", fs
, read_fcsr
, write_fcsr
},
1539 [CSR_VSTART
] = { "vstart", vs
, read_vstart
, write_vstart
},
1540 [CSR_VXSAT
] = { "vxsat", vs
, read_vxsat
, write_vxsat
},
1541 [CSR_VXRM
] = { "vxrm", vs
, read_vxrm
, write_vxrm
},
1542 [CSR_VL
] = { "vl", vs
, read_vl
},
1543 [CSR_VTYPE
] = { "vtype", vs
, read_vtype
},
1544 /* User Timers and Counters */
1545 [CSR_CYCLE
] = { "cycle", ctr
, read_instret
},
1546 [CSR_INSTRET
] = { "instret", ctr
, read_instret
},
1547 [CSR_CYCLEH
] = { "cycleh", ctr32
, read_instreth
},
1548 [CSR_INSTRETH
] = { "instreth", ctr32
, read_instreth
},
1551 * In privileged mode, the monitor will have to emulate TIME CSRs only if
1552 * rdtime callback is not provided by machine/platform emulation.
1554 [CSR_TIME
] = { "time", ctr
, read_time
},
1555 [CSR_TIMEH
] = { "timeh", ctr32
, read_timeh
},
1557 #if !defined(CONFIG_USER_ONLY)
1558 /* Machine Timers and Counters */
1559 [CSR_MCYCLE
] = { "mcycle", any
, read_instret
},
1560 [CSR_MINSTRET
] = { "minstret", any
, read_instret
},
1561 [CSR_MCYCLEH
] = { "mcycleh", any32
, read_instreth
},
1562 [CSR_MINSTRETH
] = { "minstreth", any32
, read_instreth
},
1564 /* Machine Information Registers */
1565 [CSR_MVENDORID
] = { "mvendorid", any
, read_zero
},
1566 [CSR_MARCHID
] = { "marchid", any
, read_zero
},
1567 [CSR_MIMPID
] = { "mimpid", any
, read_zero
},
1568 [CSR_MHARTID
] = { "mhartid", any
, read_mhartid
},
1570 /* Machine Trap Setup */
1571 [CSR_MSTATUS
] = { "mstatus", any
, read_mstatus
, write_mstatus
},
1572 [CSR_MISA
] = { "misa", any
, read_misa
, write_misa
},
1573 [CSR_MIDELEG
] = { "mideleg", any
, read_mideleg
, write_mideleg
},
1574 [CSR_MEDELEG
] = { "medeleg", any
, read_medeleg
, write_medeleg
},
1575 [CSR_MIE
] = { "mie", any
, read_mie
, write_mie
},
1576 [CSR_MTVEC
] = { "mtvec", any
, read_mtvec
, write_mtvec
},
1577 [CSR_MCOUNTEREN
] = { "mcounteren", any
, read_mcounteren
, write_mcounteren
},
1579 [CSR_MSTATUSH
] = { "mstatush", any32
, read_mstatush
, write_mstatush
},
1581 /* Machine Trap Handling */
1582 [CSR_MSCRATCH
] = { "mscratch", any
, read_mscratch
, write_mscratch
},
1583 [CSR_MEPC
] = { "mepc", any
, read_mepc
, write_mepc
},
1584 [CSR_MCAUSE
] = { "mcause", any
, read_mcause
, write_mcause
},
1585 [CSR_MTVAL
] = { "mtval", any
, read_mtval
, write_mtval
},
1586 [CSR_MIP
] = { "mip", any
, NULL
, NULL
, rmw_mip
},
1588 /* Supervisor Trap Setup */
1589 [CSR_SSTATUS
] = { "sstatus", smode
, read_sstatus
, write_sstatus
},
1590 [CSR_SIE
] = { "sie", smode
, read_sie
, write_sie
},
1591 [CSR_STVEC
] = { "stvec", smode
, read_stvec
, write_stvec
},
1592 [CSR_SCOUNTEREN
] = { "scounteren", smode
, read_scounteren
, write_scounteren
},
1594 /* Supervisor Trap Handling */
1595 [CSR_SSCRATCH
] = { "sscratch", smode
, read_sscratch
, write_sscratch
},
1596 [CSR_SEPC
] = { "sepc", smode
, read_sepc
, write_sepc
},
1597 [CSR_SCAUSE
] = { "scause", smode
, read_scause
, write_scause
},
1598 [CSR_STVAL
] = { "stval", smode
, read_stval
, write_stval
},
1599 [CSR_SIP
] = { "sip", smode
, NULL
, NULL
, rmw_sip
},
1601 /* Supervisor Protection and Translation */
1602 [CSR_SATP
] = { "satp", smode
, read_satp
, write_satp
},
1604 [CSR_HSTATUS
] = { "hstatus", hmode
, read_hstatus
, write_hstatus
},
1605 [CSR_HEDELEG
] = { "hedeleg", hmode
, read_hedeleg
, write_hedeleg
},
1606 [CSR_HIDELEG
] = { "hideleg", hmode
, read_hideleg
, write_hideleg
},
1607 [CSR_HVIP
] = { "hvip", hmode
, NULL
, NULL
, rmw_hvip
},
1608 [CSR_HIP
] = { "hip", hmode
, NULL
, NULL
, rmw_hip
},
1609 [CSR_HIE
] = { "hie", hmode
, read_hie
, write_hie
},
1610 [CSR_HCOUNTEREN
] = { "hcounteren", hmode
, read_hcounteren
, write_hcounteren
},
1611 [CSR_HGEIE
] = { "hgeie", hmode
, read_hgeie
, write_hgeie
},
1612 [CSR_HTVAL
] = { "htval", hmode
, read_htval
, write_htval
},
1613 [CSR_HTINST
] = { "htinst", hmode
, read_htinst
, write_htinst
},
1614 [CSR_HGEIP
] = { "hgeip", hmode
, read_hgeip
, write_hgeip
},
1615 [CSR_HGATP
] = { "hgatp", hmode
, read_hgatp
, write_hgatp
},
1616 [CSR_HTIMEDELTA
] = { "htimedelta", hmode
, read_htimedelta
, write_htimedelta
},
1617 [CSR_HTIMEDELTAH
] = { "htimedeltah", hmode32
, read_htimedeltah
, write_htimedeltah
},
1619 [CSR_VSSTATUS
] = { "vsstatus", hmode
, read_vsstatus
, write_vsstatus
},
1620 [CSR_VSIP
] = { "vsip", hmode
, NULL
, NULL
, rmw_vsip
},
1621 [CSR_VSIE
] = { "vsie", hmode
, read_vsie
, write_vsie
},
1622 [CSR_VSTVEC
] = { "vstvec", hmode
, read_vstvec
, write_vstvec
},
1623 [CSR_VSSCRATCH
] = { "vsscratch", hmode
, read_vsscratch
, write_vsscratch
},
1624 [CSR_VSEPC
] = { "vsepc", hmode
, read_vsepc
, write_vsepc
},
1625 [CSR_VSCAUSE
] = { "vscause", hmode
, read_vscause
, write_vscause
},
1626 [CSR_VSTVAL
] = { "vstval", hmode
, read_vstval
, write_vstval
},
1627 [CSR_VSATP
] = { "vsatp", hmode
, read_vsatp
, write_vsatp
},
1629 [CSR_MTVAL2
] = { "mtval2", hmode
, read_mtval2
, write_mtval2
},
1630 [CSR_MTINST
] = { "mtinst", hmode
, read_mtinst
, write_mtinst
},
1632 /* Physical Memory Protection */
1633 [CSR_MSECCFG
] = { "mseccfg", epmp
, read_mseccfg
, write_mseccfg
},
1634 [CSR_PMPCFG0
] = { "pmpcfg0", pmp
, read_pmpcfg
, write_pmpcfg
},
1635 [CSR_PMPCFG1
] = { "pmpcfg1", pmp
, read_pmpcfg
, write_pmpcfg
},
1636 [CSR_PMPCFG2
] = { "pmpcfg2", pmp
, read_pmpcfg
, write_pmpcfg
},
1637 [CSR_PMPCFG3
] = { "pmpcfg3", pmp
, read_pmpcfg
, write_pmpcfg
},
1638 [CSR_PMPADDR0
] = { "pmpaddr0", pmp
, read_pmpaddr
, write_pmpaddr
},
1639 [CSR_PMPADDR1
] = { "pmpaddr1", pmp
, read_pmpaddr
, write_pmpaddr
},
1640 [CSR_PMPADDR2
] = { "pmpaddr2", pmp
, read_pmpaddr
, write_pmpaddr
},
1641 [CSR_PMPADDR3
] = { "pmpaddr3", pmp
, read_pmpaddr
, write_pmpaddr
},
1642 [CSR_PMPADDR4
] = { "pmpaddr4", pmp
, read_pmpaddr
, write_pmpaddr
},
1643 [CSR_PMPADDR5
] = { "pmpaddr5", pmp
, read_pmpaddr
, write_pmpaddr
},
1644 [CSR_PMPADDR6
] = { "pmpaddr6", pmp
, read_pmpaddr
, write_pmpaddr
},
1645 [CSR_PMPADDR7
] = { "pmpaddr7", pmp
, read_pmpaddr
, write_pmpaddr
},
1646 [CSR_PMPADDR8
] = { "pmpaddr8", pmp
, read_pmpaddr
, write_pmpaddr
},
1647 [CSR_PMPADDR9
] = { "pmpaddr9", pmp
, read_pmpaddr
, write_pmpaddr
},
1648 [CSR_PMPADDR10
] = { "pmpaddr10", pmp
, read_pmpaddr
, write_pmpaddr
},
1649 [CSR_PMPADDR11
] = { "pmpaddr11", pmp
, read_pmpaddr
, write_pmpaddr
},
1650 [CSR_PMPADDR12
] = { "pmpaddr12", pmp
, read_pmpaddr
, write_pmpaddr
},
1651 [CSR_PMPADDR13
] = { "pmpaddr13", pmp
, read_pmpaddr
, write_pmpaddr
},
1652 [CSR_PMPADDR14
] = { "pmpaddr14", pmp
, read_pmpaddr
, write_pmpaddr
},
1653 [CSR_PMPADDR15
] = { "pmpaddr15", pmp
, read_pmpaddr
, write_pmpaddr
},
1655 /* Performance Counters */
1656 [CSR_HPMCOUNTER3
] = { "hpmcounter3", ctr
, read_zero
},
1657 [CSR_HPMCOUNTER4
] = { "hpmcounter4", ctr
, read_zero
},
1658 [CSR_HPMCOUNTER5
] = { "hpmcounter5", ctr
, read_zero
},
1659 [CSR_HPMCOUNTER6
] = { "hpmcounter6", ctr
, read_zero
},
1660 [CSR_HPMCOUNTER7
] = { "hpmcounter7", ctr
, read_zero
},
1661 [CSR_HPMCOUNTER8
] = { "hpmcounter8", ctr
, read_zero
},
1662 [CSR_HPMCOUNTER9
] = { "hpmcounter9", ctr
, read_zero
},
1663 [CSR_HPMCOUNTER10
] = { "hpmcounter10", ctr
, read_zero
},
1664 [CSR_HPMCOUNTER11
] = { "hpmcounter11", ctr
, read_zero
},
1665 [CSR_HPMCOUNTER12
] = { "hpmcounter12", ctr
, read_zero
},
1666 [CSR_HPMCOUNTER13
] = { "hpmcounter13", ctr
, read_zero
},
1667 [CSR_HPMCOUNTER14
] = { "hpmcounter14", ctr
, read_zero
},
1668 [CSR_HPMCOUNTER15
] = { "hpmcounter15", ctr
, read_zero
},
1669 [CSR_HPMCOUNTER16
] = { "hpmcounter16", ctr
, read_zero
},
1670 [CSR_HPMCOUNTER17
] = { "hpmcounter17", ctr
, read_zero
},
1671 [CSR_HPMCOUNTER18
] = { "hpmcounter18", ctr
, read_zero
},
1672 [CSR_HPMCOUNTER19
] = { "hpmcounter19", ctr
, read_zero
},
1673 [CSR_HPMCOUNTER20
] = { "hpmcounter20", ctr
, read_zero
},
1674 [CSR_HPMCOUNTER21
] = { "hpmcounter21", ctr
, read_zero
},
1675 [CSR_HPMCOUNTER22
] = { "hpmcounter22", ctr
, read_zero
},
1676 [CSR_HPMCOUNTER23
] = { "hpmcounter23", ctr
, read_zero
},
1677 [CSR_HPMCOUNTER24
] = { "hpmcounter24", ctr
, read_zero
},
1678 [CSR_HPMCOUNTER25
] = { "hpmcounter25", ctr
, read_zero
},
1679 [CSR_HPMCOUNTER26
] = { "hpmcounter26", ctr
, read_zero
},
1680 [CSR_HPMCOUNTER27
] = { "hpmcounter27", ctr
, read_zero
},
1681 [CSR_HPMCOUNTER28
] = { "hpmcounter28", ctr
, read_zero
},
1682 [CSR_HPMCOUNTER29
] = { "hpmcounter29", ctr
, read_zero
},
1683 [CSR_HPMCOUNTER30
] = { "hpmcounter30", ctr
, read_zero
},
1684 [CSR_HPMCOUNTER31
] = { "hpmcounter31", ctr
, read_zero
},
1686 [CSR_MHPMCOUNTER3
] = { "mhpmcounter3", any
, read_zero
},
1687 [CSR_MHPMCOUNTER4
] = { "mhpmcounter4", any
, read_zero
},
1688 [CSR_MHPMCOUNTER5
] = { "mhpmcounter5", any
, read_zero
},
1689 [CSR_MHPMCOUNTER6
] = { "mhpmcounter6", any
, read_zero
},
1690 [CSR_MHPMCOUNTER7
] = { "mhpmcounter7", any
, read_zero
},
1691 [CSR_MHPMCOUNTER8
] = { "mhpmcounter8", any
, read_zero
},
1692 [CSR_MHPMCOUNTER9
] = { "mhpmcounter9", any
, read_zero
},
1693 [CSR_MHPMCOUNTER10
] = { "mhpmcounter10", any
, read_zero
},
1694 [CSR_MHPMCOUNTER11
] = { "mhpmcounter11", any
, read_zero
},
1695 [CSR_MHPMCOUNTER12
] = { "mhpmcounter12", any
, read_zero
},
1696 [CSR_MHPMCOUNTER13
] = { "mhpmcounter13", any
, read_zero
},
1697 [CSR_MHPMCOUNTER14
] = { "mhpmcounter14", any
, read_zero
},
1698 [CSR_MHPMCOUNTER15
] = { "mhpmcounter15", any
, read_zero
},
1699 [CSR_MHPMCOUNTER16
] = { "mhpmcounter16", any
, read_zero
},
1700 [CSR_MHPMCOUNTER17
] = { "mhpmcounter17", any
, read_zero
},
1701 [CSR_MHPMCOUNTER18
] = { "mhpmcounter18", any
, read_zero
},
1702 [CSR_MHPMCOUNTER19
] = { "mhpmcounter19", any
, read_zero
},
1703 [CSR_MHPMCOUNTER20
] = { "mhpmcounter20", any
, read_zero
},
1704 [CSR_MHPMCOUNTER21
] = { "mhpmcounter21", any
, read_zero
},
1705 [CSR_MHPMCOUNTER22
] = { "mhpmcounter22", any
, read_zero
},
1706 [CSR_MHPMCOUNTER23
] = { "mhpmcounter23", any
, read_zero
},
1707 [CSR_MHPMCOUNTER24
] = { "mhpmcounter24", any
, read_zero
},
1708 [CSR_MHPMCOUNTER25
] = { "mhpmcounter25", any
, read_zero
},
1709 [CSR_MHPMCOUNTER26
] = { "mhpmcounter26", any
, read_zero
},
1710 [CSR_MHPMCOUNTER27
] = { "mhpmcounter27", any
, read_zero
},
1711 [CSR_MHPMCOUNTER28
] = { "mhpmcounter28", any
, read_zero
},
1712 [CSR_MHPMCOUNTER29
] = { "mhpmcounter29", any
, read_zero
},
1713 [CSR_MHPMCOUNTER30
] = { "mhpmcounter30", any
, read_zero
},
1714 [CSR_MHPMCOUNTER31
] = { "mhpmcounter31", any
, read_zero
},
1716 [CSR_MHPMEVENT3
] = { "mhpmevent3", any
, read_zero
},
1717 [CSR_MHPMEVENT4
] = { "mhpmevent4", any
, read_zero
},
1718 [CSR_MHPMEVENT5
] = { "mhpmevent5", any
, read_zero
},
1719 [CSR_MHPMEVENT6
] = { "mhpmevent6", any
, read_zero
},
1720 [CSR_MHPMEVENT7
] = { "mhpmevent7", any
, read_zero
},
1721 [CSR_MHPMEVENT8
] = { "mhpmevent8", any
, read_zero
},
1722 [CSR_MHPMEVENT9
] = { "mhpmevent9", any
, read_zero
},
1723 [CSR_MHPMEVENT10
] = { "mhpmevent10", any
, read_zero
},
1724 [CSR_MHPMEVENT11
] = { "mhpmevent11", any
, read_zero
},
1725 [CSR_MHPMEVENT12
] = { "mhpmevent12", any
, read_zero
},
1726 [CSR_MHPMEVENT13
] = { "mhpmevent13", any
, read_zero
},
1727 [CSR_MHPMEVENT14
] = { "mhpmevent14", any
, read_zero
},
1728 [CSR_MHPMEVENT15
] = { "mhpmevent15", any
, read_zero
},
1729 [CSR_MHPMEVENT16
] = { "mhpmevent16", any
, read_zero
},
1730 [CSR_MHPMEVENT17
] = { "mhpmevent17", any
, read_zero
},
1731 [CSR_MHPMEVENT18
] = { "mhpmevent18", any
, read_zero
},
1732 [CSR_MHPMEVENT19
] = { "mhpmevent19", any
, read_zero
},
1733 [CSR_MHPMEVENT20
] = { "mhpmevent20", any
, read_zero
},
1734 [CSR_MHPMEVENT21
] = { "mhpmevent21", any
, read_zero
},
1735 [CSR_MHPMEVENT22
] = { "mhpmevent22", any
, read_zero
},
1736 [CSR_MHPMEVENT23
] = { "mhpmevent23", any
, read_zero
},
1737 [CSR_MHPMEVENT24
] = { "mhpmevent24", any
, read_zero
},
1738 [CSR_MHPMEVENT25
] = { "mhpmevent25", any
, read_zero
},
1739 [CSR_MHPMEVENT26
] = { "mhpmevent26", any
, read_zero
},
1740 [CSR_MHPMEVENT27
] = { "mhpmevent27", any
, read_zero
},
1741 [CSR_MHPMEVENT28
] = { "mhpmevent28", any
, read_zero
},
1742 [CSR_MHPMEVENT29
] = { "mhpmevent29", any
, read_zero
},
1743 [CSR_MHPMEVENT30
] = { "mhpmevent30", any
, read_zero
},
1744 [CSR_MHPMEVENT31
] = { "mhpmevent31", any
, read_zero
},
1746 [CSR_HPMCOUNTER3H
] = { "hpmcounter3h", ctr32
, read_zero
},
1747 [CSR_HPMCOUNTER4H
] = { "hpmcounter4h", ctr32
, read_zero
},
1748 [CSR_HPMCOUNTER5H
] = { "hpmcounter5h", ctr32
, read_zero
},
1749 [CSR_HPMCOUNTER6H
] = { "hpmcounter6h", ctr32
, read_zero
},
1750 [CSR_HPMCOUNTER7H
] = { "hpmcounter7h", ctr32
, read_zero
},
1751 [CSR_HPMCOUNTER8H
] = { "hpmcounter8h", ctr32
, read_zero
},
1752 [CSR_HPMCOUNTER9H
] = { "hpmcounter9h", ctr32
, read_zero
},
1753 [CSR_HPMCOUNTER10H
] = { "hpmcounter10h", ctr32
, read_zero
},
1754 [CSR_HPMCOUNTER11H
] = { "hpmcounter11h", ctr32
, read_zero
},
1755 [CSR_HPMCOUNTER12H
] = { "hpmcounter12h", ctr32
, read_zero
},
1756 [CSR_HPMCOUNTER13H
] = { "hpmcounter13h", ctr32
, read_zero
},
1757 [CSR_HPMCOUNTER14H
] = { "hpmcounter14h", ctr32
, read_zero
},
1758 [CSR_HPMCOUNTER15H
] = { "hpmcounter15h", ctr32
, read_zero
},
1759 [CSR_HPMCOUNTER16H
] = { "hpmcounter16h", ctr32
, read_zero
},
1760 [CSR_HPMCOUNTER17H
] = { "hpmcounter17h", ctr32
, read_zero
},
1761 [CSR_HPMCOUNTER18H
] = { "hpmcounter18h", ctr32
, read_zero
},
1762 [CSR_HPMCOUNTER19H
] = { "hpmcounter19h", ctr32
, read_zero
},
1763 [CSR_HPMCOUNTER20H
] = { "hpmcounter20h", ctr32
, read_zero
},
1764 [CSR_HPMCOUNTER21H
] = { "hpmcounter21h", ctr32
, read_zero
},
1765 [CSR_HPMCOUNTER22H
] = { "hpmcounter22h", ctr32
, read_zero
},
1766 [CSR_HPMCOUNTER23H
] = { "hpmcounter23h", ctr32
, read_zero
},
1767 [CSR_HPMCOUNTER24H
] = { "hpmcounter24h", ctr32
, read_zero
},
1768 [CSR_HPMCOUNTER25H
] = { "hpmcounter25h", ctr32
, read_zero
},
1769 [CSR_HPMCOUNTER26H
] = { "hpmcounter26h", ctr32
, read_zero
},
1770 [CSR_HPMCOUNTER27H
] = { "hpmcounter27h", ctr32
, read_zero
},
1771 [CSR_HPMCOUNTER28H
] = { "hpmcounter28h", ctr32
, read_zero
},
1772 [CSR_HPMCOUNTER29H
] = { "hpmcounter29h", ctr32
, read_zero
},
1773 [CSR_HPMCOUNTER30H
] = { "hpmcounter30h", ctr32
, read_zero
},
1774 [CSR_HPMCOUNTER31H
] = { "hpmcounter31h", ctr32
, read_zero
},
1776 [CSR_MHPMCOUNTER3H
] = { "mhpmcounter3h", any32
, read_zero
},
1777 [CSR_MHPMCOUNTER4H
] = { "mhpmcounter4h", any32
, read_zero
},
1778 [CSR_MHPMCOUNTER5H
] = { "mhpmcounter5h", any32
, read_zero
},
1779 [CSR_MHPMCOUNTER6H
] = { "mhpmcounter6h", any32
, read_zero
},
1780 [CSR_MHPMCOUNTER7H
] = { "mhpmcounter7h", any32
, read_zero
},
1781 [CSR_MHPMCOUNTER8H
] = { "mhpmcounter8h", any32
, read_zero
},
1782 [CSR_MHPMCOUNTER9H
] = { "mhpmcounter9h", any32
, read_zero
},
1783 [CSR_MHPMCOUNTER10H
] = { "mhpmcounter10h", any32
, read_zero
},
1784 [CSR_MHPMCOUNTER11H
] = { "mhpmcounter11h", any32
, read_zero
},
1785 [CSR_MHPMCOUNTER12H
] = { "mhpmcounter12h", any32
, read_zero
},
1786 [CSR_MHPMCOUNTER13H
] = { "mhpmcounter13h", any32
, read_zero
},
1787 [CSR_MHPMCOUNTER14H
] = { "mhpmcounter14h", any32
, read_zero
},
1788 [CSR_MHPMCOUNTER15H
] = { "mhpmcounter15h", any32
, read_zero
},
1789 [CSR_MHPMCOUNTER16H
] = { "mhpmcounter16h", any32
, read_zero
},
1790 [CSR_MHPMCOUNTER17H
] = { "mhpmcounter17h", any32
, read_zero
},
1791 [CSR_MHPMCOUNTER18H
] = { "mhpmcounter18h", any32
, read_zero
},
1792 [CSR_MHPMCOUNTER19H
] = { "mhpmcounter19h", any32
, read_zero
},
1793 [CSR_MHPMCOUNTER20H
] = { "mhpmcounter20h", any32
, read_zero
},
1794 [CSR_MHPMCOUNTER21H
] = { "mhpmcounter21h", any32
, read_zero
},
1795 [CSR_MHPMCOUNTER22H
] = { "mhpmcounter22h", any32
, read_zero
},
1796 [CSR_MHPMCOUNTER23H
] = { "mhpmcounter23h", any32
, read_zero
},
1797 [CSR_MHPMCOUNTER24H
] = { "mhpmcounter24h", any32
, read_zero
},
1798 [CSR_MHPMCOUNTER25H
] = { "mhpmcounter25h", any32
, read_zero
},
1799 [CSR_MHPMCOUNTER26H
] = { "mhpmcounter26h", any32
, read_zero
},
1800 [CSR_MHPMCOUNTER27H
] = { "mhpmcounter27h", any32
, read_zero
},
1801 [CSR_MHPMCOUNTER28H
] = { "mhpmcounter28h", any32
, read_zero
},
1802 [CSR_MHPMCOUNTER29H
] = { "mhpmcounter29h", any32
, read_zero
},
1803 [CSR_MHPMCOUNTER30H
] = { "mhpmcounter30h", any32
, read_zero
},
1804 [CSR_MHPMCOUNTER31H
] = { "mhpmcounter31h", any32
, read_zero
},
1805 #endif /* !CONFIG_USER_ONLY */