2 * RISC-V CPU helpers for qemu.
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"
22 #include "qemu/main-loop.h"
24 #include "exec/exec-all.h"
25 #include "tcg/tcg-op.h"
28 int riscv_cpu_mmu_index(CPURISCVState
*env
, bool ifetch
)
30 #ifdef CONFIG_USER_ONLY
37 #ifndef CONFIG_USER_ONLY
38 static int riscv_cpu_local_irq_pending(CPURISCVState
*env
)
42 target_ulong mstatus_mie
= get_field(env
->mstatus
, MSTATUS_MIE
);
43 target_ulong mstatus_sie
= get_field(env
->mstatus
, MSTATUS_SIE
);
44 target_ulong hs_mstatus_sie
= get_field(env
->mstatus_hs
, MSTATUS_SIE
);
46 target_ulong pending
= env
->mip
& env
->mie
&
47 ~(MIP_VSSIP
| MIP_VSTIP
| MIP_VSEIP
);
48 target_ulong vspending
= (env
->mip
& env
->mie
&
49 (MIP_VSSIP
| MIP_VSTIP
| MIP_VSEIP
));
51 target_ulong mie
= env
->priv
< PRV_M
||
52 (env
->priv
== PRV_M
&& mstatus_mie
);
53 target_ulong sie
= env
->priv
< PRV_S
||
54 (env
->priv
== PRV_S
&& mstatus_sie
);
55 target_ulong hs_sie
= env
->priv
< PRV_S
||
56 (env
->priv
== PRV_S
&& hs_mstatus_sie
);
58 if (riscv_cpu_virt_enabled(env
)) {
59 target_ulong pending_hs_irq
= pending
& -hs_sie
;
62 riscv_cpu_set_force_hs_excep(env
, FORCE_HS_EXCEP
);
63 return ctz64(pending_hs_irq
);
69 irqs
= (pending
& ~env
->mideleg
& -mie
) | (pending
& env
->mideleg
& -sie
);
72 return ctz64(irqs
); /* since non-zero */
74 return EXCP_NONE
; /* indicates no pending interrupt */
79 bool riscv_cpu_exec_interrupt(CPUState
*cs
, int interrupt_request
)
81 #if !defined(CONFIG_USER_ONLY)
82 if (interrupt_request
& CPU_INTERRUPT_HARD
) {
83 RISCVCPU
*cpu
= RISCV_CPU(cs
);
84 CPURISCVState
*env
= &cpu
->env
;
85 int interruptno
= riscv_cpu_local_irq_pending(env
);
86 if (interruptno
>= 0) {
87 cs
->exception_index
= RISCV_EXCP_INT_FLAG
| interruptno
;
88 riscv_cpu_do_interrupt(cs
);
96 #if !defined(CONFIG_USER_ONLY)
98 /* Return true is floating point support is currently enabled */
99 bool riscv_cpu_fp_enabled(CPURISCVState
*env
)
101 if (env
->mstatus
& MSTATUS_FS
) {
102 if (riscv_cpu_virt_enabled(env
) && !(env
->mstatus_hs
& MSTATUS_FS
)) {
111 void riscv_cpu_swap_hypervisor_regs(CPURISCVState
*env
)
113 uint64_t mstatus_mask
= MSTATUS_MXR
| MSTATUS_SUM
| MSTATUS_FS
|
114 MSTATUS_SPP
| MSTATUS_SPIE
| MSTATUS_SIE
|
116 bool current_virt
= riscv_cpu_virt_enabled(env
);
118 g_assert(riscv_has_ext(env
, RVH
));
121 /* Current V=1 and we are about to change to V=0 */
122 env
->vsstatus
= env
->mstatus
& mstatus_mask
;
123 env
->mstatus
&= ~mstatus_mask
;
124 env
->mstatus
|= env
->mstatus_hs
;
126 env
->vstvec
= env
->stvec
;
127 env
->stvec
= env
->stvec_hs
;
129 env
->vsscratch
= env
->sscratch
;
130 env
->sscratch
= env
->sscratch_hs
;
132 env
->vsepc
= env
->sepc
;
133 env
->sepc
= env
->sepc_hs
;
135 env
->vscause
= env
->scause
;
136 env
->scause
= env
->scause_hs
;
138 env
->vstval
= env
->sbadaddr
;
139 env
->sbadaddr
= env
->stval_hs
;
141 env
->vsatp
= env
->satp
;
142 env
->satp
= env
->satp_hs
;
144 /* Current V=0 and we are about to change to V=1 */
145 env
->mstatus_hs
= env
->mstatus
& mstatus_mask
;
146 env
->mstatus
&= ~mstatus_mask
;
147 env
->mstatus
|= env
->vsstatus
;
149 env
->stvec_hs
= env
->stvec
;
150 env
->stvec
= env
->vstvec
;
152 env
->sscratch_hs
= env
->sscratch
;
153 env
->sscratch
= env
->vsscratch
;
155 env
->sepc_hs
= env
->sepc
;
156 env
->sepc
= env
->vsepc
;
158 env
->scause_hs
= env
->scause
;
159 env
->scause
= env
->vscause
;
161 env
->stval_hs
= env
->sbadaddr
;
162 env
->sbadaddr
= env
->vstval
;
164 env
->satp_hs
= env
->satp
;
165 env
->satp
= env
->vsatp
;
169 bool riscv_cpu_virt_enabled(CPURISCVState
*env
)
171 if (!riscv_has_ext(env
, RVH
)) {
175 return get_field(env
->virt
, VIRT_ONOFF
);
178 void riscv_cpu_set_virt_enabled(CPURISCVState
*env
, bool enable
)
180 if (!riscv_has_ext(env
, RVH
)) {
184 /* Flush the TLB on all virt mode changes. */
185 if (get_field(env
->virt
, VIRT_ONOFF
) != enable
) {
186 tlb_flush(env_cpu(env
));
189 env
->virt
= set_field(env
->virt
, VIRT_ONOFF
, enable
);
192 bool riscv_cpu_force_hs_excep_enabled(CPURISCVState
*env
)
194 if (!riscv_has_ext(env
, RVH
)) {
198 return get_field(env
->virt
, FORCE_HS_EXCEP
);
201 void riscv_cpu_set_force_hs_excep(CPURISCVState
*env
, bool enable
)
203 if (!riscv_has_ext(env
, RVH
)) {
207 env
->virt
= set_field(env
->virt
, FORCE_HS_EXCEP
, enable
);
210 bool riscv_cpu_two_stage_lookup(int mmu_idx
)
212 return mmu_idx
& TB_FLAGS_PRIV_HYP_ACCESS_MASK
;
215 int riscv_cpu_claim_interrupts(RISCVCPU
*cpu
, uint32_t interrupts
)
217 CPURISCVState
*env
= &cpu
->env
;
218 if (env
->miclaim
& interrupts
) {
221 env
->miclaim
|= interrupts
;
226 uint32_t riscv_cpu_update_mip(RISCVCPU
*cpu
, uint32_t mask
, uint32_t value
)
228 CPURISCVState
*env
= &cpu
->env
;
229 CPUState
*cs
= CPU(cpu
);
230 uint32_t old
= env
->mip
;
233 if (!qemu_mutex_iothread_locked()) {
235 qemu_mutex_lock_iothread();
238 env
->mip
= (env
->mip
& ~mask
) | (value
& mask
);
241 cpu_interrupt(cs
, CPU_INTERRUPT_HARD
);
243 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
247 qemu_mutex_unlock_iothread();
253 void riscv_cpu_set_rdtime_fn(CPURISCVState
*env
, uint64_t (*fn
)(uint32_t),
257 env
->rdtime_fn_arg
= arg
;
260 void riscv_cpu_set_mode(CPURISCVState
*env
, target_ulong newpriv
)
262 if (newpriv
> PRV_M
) {
263 g_assert_not_reached();
265 if (newpriv
== PRV_H
) {
268 /* tlb_flush is unnecessary as mode is contained in mmu_idx */
272 * Clear the load reservation - otherwise a reservation placed in one
273 * context/process can be used by another, resulting in an SC succeeding
274 * incorrectly. Version 2.2 of the ISA specification explicitly requires
275 * this behaviour, while later revisions say that the kernel "should" use
276 * an SC instruction to force the yielding of a load reservation on a
277 * preemptive context switch. As a result, do both.
282 /* get_physical_address - get the physical address for this virtual address
284 * Do a page table walk to obtain the physical address corresponding to a
285 * virtual address. Returns 0 if the translation was successful
287 * Adapted from Spike's mmu_t::translate and mmu_t::walk
289 * @env: CPURISCVState
290 * @physical: This will be set to the calculated physical address
291 * @prot: The returned protection attributes
292 * @addr: The virtual address to be translated
293 * @fault_pte_addr: If not NULL, this will be set to fault pte address
294 * when a error occurs on pte address translation.
295 * This will already be shifted to match htval.
296 * @access_type: The type of MMU access
297 * @mmu_idx: Indicates current privilege level
298 * @first_stage: Are we in first stage translation?
299 * Second stage is used for hypervisor guest translation
300 * @two_stage: Are we going to perform two stage translation
302 static int get_physical_address(CPURISCVState
*env
, hwaddr
*physical
,
303 int *prot
, target_ulong addr
,
304 target_ulong
*fault_pte_addr
,
305 int access_type
, int mmu_idx
,
306 bool first_stage
, bool two_stage
)
308 /* NOTE: the env->pc value visible here will not be
309 * correct, but the value visible to the exception handler
310 * (riscv_cpu_do_interrupt) is correct */
312 MemTxAttrs attrs
= MEMTXATTRS_UNSPECIFIED
;
313 int mode
= mmu_idx
& TB_FLAGS_PRIV_MMU_MASK
;
314 bool use_background
= false;
317 * Check if we should use the background registers for the two
318 * stage translation. We don't need to check if we actually need
319 * two stage translation as that happened before this function
320 * was called. Background registers will be used if the guest has
321 * forced a two stage translation to be on (in HS or M mode).
323 if (!riscv_cpu_virt_enabled(env
) && riscv_cpu_two_stage_lookup(mmu_idx
)) {
324 use_background
= true;
327 if (mode
== PRV_M
&& access_type
!= MMU_INST_FETCH
) {
328 if (get_field(env
->mstatus
, MSTATUS_MPRV
)) {
329 mode
= get_field(env
->mstatus
, MSTATUS_MPP
);
333 if (first_stage
== false) {
334 /* We are in stage 2 translation, this is similar to stage 1. */
335 /* Stage 2 is always taken as U-mode */
339 if (mode
== PRV_M
|| !riscv_feature(env
, RISCV_FEATURE_MMU
)) {
341 *prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
342 return TRANSLATE_SUCCESS
;
348 int levels
, ptidxbits
, ptesize
, vm
, sum
, mxr
, widened
;
350 if (first_stage
== true) {
351 mxr
= get_field(env
->mstatus
, MSTATUS_MXR
);
353 mxr
= get_field(env
->vsstatus
, MSTATUS_MXR
);
356 if (first_stage
== true) {
357 if (use_background
) {
358 base
= (hwaddr
)get_field(env
->vsatp
, SATP_PPN
) << PGSHIFT
;
359 vm
= get_field(env
->vsatp
, SATP_MODE
);
361 base
= (hwaddr
)get_field(env
->satp
, SATP_PPN
) << PGSHIFT
;
362 vm
= get_field(env
->satp
, SATP_MODE
);
366 base
= (hwaddr
)get_field(env
->hgatp
, HGATP_PPN
) << PGSHIFT
;
367 vm
= get_field(env
->hgatp
, HGATP_MODE
);
370 /* status.SUM will be ignored if execute on background */
371 sum
= get_field(env
->mstatus
, MSTATUS_SUM
) || use_background
;
374 levels
= 2; ptidxbits
= 10; ptesize
= 4; break;
376 levels
= 3; ptidxbits
= 9; ptesize
= 8; break;
378 levels
= 4; ptidxbits
= 9; ptesize
= 8; break;
380 levels
= 5; ptidxbits
= 9; ptesize
= 8; break;
383 *prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
384 return TRANSLATE_SUCCESS
;
386 g_assert_not_reached();
389 CPUState
*cs
= env_cpu(env
);
390 int va_bits
= PGSHIFT
+ levels
* ptidxbits
+ widened
;
391 target_ulong mask
, masked_msbs
;
393 if (TARGET_LONG_BITS
> (va_bits
- 1)) {
394 mask
= (1L << (TARGET_LONG_BITS
- (va_bits
- 1))) - 1;
398 masked_msbs
= (addr
>> (va_bits
- 1)) & mask
;
400 if (masked_msbs
!= 0 && masked_msbs
!= mask
) {
401 return TRANSLATE_FAIL
;
404 int ptshift
= (levels
- 1) * ptidxbits
;
407 #if !TCG_OVERSIZED_GUEST
410 for (i
= 0; i
< levels
; i
++, ptshift
-= ptidxbits
) {
413 idx
= (addr
>> (PGSHIFT
+ ptshift
)) &
414 ((1 << (ptidxbits
+ widened
)) - 1);
416 idx
= (addr
>> (PGSHIFT
+ ptshift
)) &
417 ((1 << ptidxbits
) - 1);
420 /* check that physical address of PTE is legal */
423 if (two_stage
&& first_stage
) {
427 /* Do the second stage translation on the base PTE address. */
428 int vbase_ret
= get_physical_address(env
, &vbase
, &vbase_prot
,
429 base
, NULL
, MMU_DATA_LOAD
,
430 mmu_idx
, false, true);
432 if (vbase_ret
!= TRANSLATE_SUCCESS
) {
433 if (fault_pte_addr
) {
434 *fault_pte_addr
= (base
+ idx
* ptesize
) >> 2;
436 return TRANSLATE_G_STAGE_FAIL
;
439 pte_addr
= vbase
+ idx
* ptesize
;
441 pte_addr
= base
+ idx
* ptesize
;
444 if (riscv_feature(env
, RISCV_FEATURE_PMP
) &&
445 !pmp_hart_has_privs(env
, pte_addr
, sizeof(target_ulong
),
446 1 << MMU_DATA_LOAD
, PRV_S
)) {
447 return TRANSLATE_PMP_FAIL
;
451 if (riscv_cpu_is_32bit(env
)) {
452 pte
= address_space_ldl(cs
->as
, pte_addr
, attrs
, &res
);
454 pte
= address_space_ldq(cs
->as
, pte_addr
, attrs
, &res
);
457 if (res
!= MEMTX_OK
) {
458 return TRANSLATE_FAIL
;
461 hwaddr ppn
= pte
>> PTE_PPN_SHIFT
;
463 if (!(pte
& PTE_V
)) {
465 return TRANSLATE_FAIL
;
466 } else if (!(pte
& (PTE_R
| PTE_W
| PTE_X
))) {
467 /* Inner PTE, continue walking */
468 base
= ppn
<< PGSHIFT
;
469 } else if ((pte
& (PTE_R
| PTE_W
| PTE_X
)) == PTE_W
) {
470 /* Reserved leaf PTE flags: PTE_W */
471 return TRANSLATE_FAIL
;
472 } else if ((pte
& (PTE_R
| PTE_W
| PTE_X
)) == (PTE_W
| PTE_X
)) {
473 /* Reserved leaf PTE flags: PTE_W + PTE_X */
474 return TRANSLATE_FAIL
;
475 } else if ((pte
& PTE_U
) && ((mode
!= PRV_U
) &&
476 (!sum
|| access_type
== MMU_INST_FETCH
))) {
477 /* User PTE flags when not U mode and mstatus.SUM is not set,
478 or the access type is an instruction fetch */
479 return TRANSLATE_FAIL
;
480 } else if (!(pte
& PTE_U
) && (mode
!= PRV_S
)) {
481 /* Supervisor PTE flags when not S mode */
482 return TRANSLATE_FAIL
;
483 } else if (ppn
& ((1ULL << ptshift
) - 1)) {
485 return TRANSLATE_FAIL
;
486 } else if (access_type
== MMU_DATA_LOAD
&& !((pte
& PTE_R
) ||
487 ((pte
& PTE_X
) && mxr
))) {
488 /* Read access check failed */
489 return TRANSLATE_FAIL
;
490 } else if (access_type
== MMU_DATA_STORE
&& !(pte
& PTE_W
)) {
491 /* Write access check failed */
492 return TRANSLATE_FAIL
;
493 } else if (access_type
== MMU_INST_FETCH
&& !(pte
& PTE_X
)) {
494 /* Fetch access check failed */
495 return TRANSLATE_FAIL
;
497 /* if necessary, set accessed and dirty bits. */
498 target_ulong updated_pte
= pte
| PTE_A
|
499 (access_type
== MMU_DATA_STORE
? PTE_D
: 0);
501 /* Page table updates need to be atomic with MTTCG enabled */
502 if (updated_pte
!= pte
) {
504 * - if accessed or dirty bits need updating, and the PTE is
505 * in RAM, then we do so atomically with a compare and swap.
506 * - if the PTE is in IO space or ROM, then it can't be updated
507 * and we return TRANSLATE_FAIL.
508 * - if the PTE changed by the time we went to update it, then
509 * it is no longer valid and we must re-walk the page table.
512 hwaddr l
= sizeof(target_ulong
), addr1
;
513 mr
= address_space_translate(cs
->as
, pte_addr
,
514 &addr1
, &l
, false, MEMTXATTRS_UNSPECIFIED
);
515 if (memory_region_is_ram(mr
)) {
516 target_ulong
*pte_pa
=
517 qemu_map_ram_ptr(mr
->ram_block
, addr1
);
518 #if TCG_OVERSIZED_GUEST
519 /* MTTCG is not enabled on oversized TCG guests so
520 * page table updates do not need to be atomic */
521 *pte_pa
= pte
= updated_pte
;
523 target_ulong old_pte
=
524 qatomic_cmpxchg(pte_pa
, pte
, updated_pte
);
525 if (old_pte
!= pte
) {
532 /* misconfigured PTE in ROM (AD bits are not preset) or
533 * PTE is in IO space and can't be updated atomically */
534 return TRANSLATE_FAIL
;
538 /* for superpage mappings, make a fake leaf PTE for the TLB's
540 target_ulong vpn
= addr
>> PGSHIFT
;
541 *physical
= ((ppn
| (vpn
& ((1L << ptshift
) - 1))) << PGSHIFT
) |
542 (addr
& ~TARGET_PAGE_MASK
);
544 /* set permissions on the TLB entry */
545 if ((pte
& PTE_R
) || ((pte
& PTE_X
) && mxr
)) {
551 /* add write permission on stores or if the page is already dirty,
552 so that we TLB miss on later writes to update the dirty bit */
554 (access_type
== MMU_DATA_STORE
|| (pte
& PTE_D
))) {
557 return TRANSLATE_SUCCESS
;
560 return TRANSLATE_FAIL
;
563 static void raise_mmu_exception(CPURISCVState
*env
, target_ulong address
,
564 MMUAccessType access_type
, bool pmp_violation
,
565 bool first_stage
, bool two_stage
)
567 CPUState
*cs
= env_cpu(env
);
568 int page_fault_exceptions
;
570 page_fault_exceptions
=
571 get_field(env
->satp
, SATP_MODE
) != VM_1_10_MBARE
&&
574 page_fault_exceptions
=
575 get_field(env
->hgatp
, HGATP_MODE
) != VM_1_10_MBARE
&&
578 switch (access_type
) {
580 if (riscv_cpu_virt_enabled(env
) && !first_stage
) {
581 cs
->exception_index
= RISCV_EXCP_INST_GUEST_PAGE_FAULT
;
583 cs
->exception_index
= page_fault_exceptions
?
584 RISCV_EXCP_INST_PAGE_FAULT
: RISCV_EXCP_INST_ACCESS_FAULT
;
588 if (two_stage
&& !first_stage
) {
589 cs
->exception_index
= RISCV_EXCP_LOAD_GUEST_ACCESS_FAULT
;
591 cs
->exception_index
= page_fault_exceptions
?
592 RISCV_EXCP_LOAD_PAGE_FAULT
: RISCV_EXCP_LOAD_ACCESS_FAULT
;
596 if (two_stage
&& !first_stage
) {
597 cs
->exception_index
= RISCV_EXCP_STORE_GUEST_AMO_ACCESS_FAULT
;
599 cs
->exception_index
= page_fault_exceptions
?
600 RISCV_EXCP_STORE_PAGE_FAULT
: RISCV_EXCP_STORE_AMO_ACCESS_FAULT
;
604 g_assert_not_reached();
606 env
->badaddr
= address
;
609 hwaddr
riscv_cpu_get_phys_page_debug(CPUState
*cs
, vaddr addr
)
611 RISCVCPU
*cpu
= RISCV_CPU(cs
);
612 CPURISCVState
*env
= &cpu
->env
;
615 int mmu_idx
= cpu_mmu_index(&cpu
->env
, false);
617 if (get_physical_address(env
, &phys_addr
, &prot
, addr
, NULL
, 0, mmu_idx
,
618 true, riscv_cpu_virt_enabled(env
))) {
622 if (riscv_cpu_virt_enabled(env
)) {
623 if (get_physical_address(env
, &phys_addr
, &prot
, phys_addr
, NULL
,
624 0, mmu_idx
, false, true)) {
629 return phys_addr
& TARGET_PAGE_MASK
;
632 void riscv_cpu_do_transaction_failed(CPUState
*cs
, hwaddr physaddr
,
633 vaddr addr
, unsigned size
,
634 MMUAccessType access_type
,
635 int mmu_idx
, MemTxAttrs attrs
,
636 MemTxResult response
, uintptr_t retaddr
)
638 RISCVCPU
*cpu
= RISCV_CPU(cs
);
639 CPURISCVState
*env
= &cpu
->env
;
641 if (access_type
== MMU_DATA_STORE
) {
642 cs
->exception_index
= RISCV_EXCP_STORE_AMO_ACCESS_FAULT
;
644 cs
->exception_index
= RISCV_EXCP_LOAD_ACCESS_FAULT
;
648 riscv_raise_exception(&cpu
->env
, cs
->exception_index
, retaddr
);
651 void riscv_cpu_do_unaligned_access(CPUState
*cs
, vaddr addr
,
652 MMUAccessType access_type
, int mmu_idx
,
655 RISCVCPU
*cpu
= RISCV_CPU(cs
);
656 CPURISCVState
*env
= &cpu
->env
;
657 switch (access_type
) {
659 cs
->exception_index
= RISCV_EXCP_INST_ADDR_MIS
;
662 cs
->exception_index
= RISCV_EXCP_LOAD_ADDR_MIS
;
665 cs
->exception_index
= RISCV_EXCP_STORE_AMO_ADDR_MIS
;
668 g_assert_not_reached();
671 riscv_raise_exception(env
, cs
->exception_index
, retaddr
);
675 bool riscv_cpu_tlb_fill(CPUState
*cs
, vaddr address
, int size
,
676 MMUAccessType access_type
, int mmu_idx
,
677 bool probe
, uintptr_t retaddr
)
679 RISCVCPU
*cpu
= RISCV_CPU(cs
);
680 CPURISCVState
*env
= &cpu
->env
;
681 #ifndef CONFIG_USER_ONLY
685 bool pmp_violation
= false;
686 bool first_stage_error
= true;
687 bool two_stage_lookup
= false;
688 int ret
= TRANSLATE_FAIL
;
690 target_ulong tlb_size
= 0;
692 env
->guest_phys_fault_addr
= 0;
694 qemu_log_mask(CPU_LOG_MMU
, "%s ad %" VADDR_PRIx
" rw %d mmu_idx %d\n",
695 __func__
, address
, access_type
, mmu_idx
);
697 if (mode
== PRV_M
&& access_type
!= MMU_INST_FETCH
) {
698 if (get_field(env
->mstatus
, MSTATUS_MPRV
)) {
699 mode
= get_field(env
->mstatus
, MSTATUS_MPP
);
703 if (riscv_has_ext(env
, RVH
) && env
->priv
== PRV_M
&&
704 access_type
!= MMU_INST_FETCH
&&
705 get_field(env
->mstatus
, MSTATUS_MPRV
) &&
706 get_field(env
->mstatus
, MSTATUS_MPV
)) {
707 two_stage_lookup
= true;
710 if (riscv_cpu_virt_enabled(env
) ||
711 ((riscv_cpu_two_stage_lookup(mmu_idx
) || two_stage_lookup
) &&
712 access_type
!= MMU_INST_FETCH
)) {
713 /* Two stage lookup */
714 ret
= get_physical_address(env
, &pa
, &prot
, address
,
715 &env
->guest_phys_fault_addr
, access_type
,
716 mmu_idx
, true, true);
719 * A G-stage exception may be triggered during two state lookup.
720 * And the env->guest_phys_fault_addr has already been set in
721 * get_physical_address().
723 if (ret
== TRANSLATE_G_STAGE_FAIL
) {
724 first_stage_error
= false;
725 access_type
= MMU_DATA_LOAD
;
728 qemu_log_mask(CPU_LOG_MMU
,
729 "%s 1st-stage address=%" VADDR_PRIx
" ret %d physical "
730 TARGET_FMT_plx
" prot %d\n",
731 __func__
, address
, ret
, pa
, prot
);
733 if (ret
== TRANSLATE_SUCCESS
) {
734 /* Second stage lookup */
737 ret
= get_physical_address(env
, &pa
, &prot2
, im_address
, NULL
,
738 access_type
, mmu_idx
, false, true);
740 qemu_log_mask(CPU_LOG_MMU
,
741 "%s 2nd-stage address=%" VADDR_PRIx
" ret %d physical "
742 TARGET_FMT_plx
" prot %d\n",
743 __func__
, im_address
, ret
, pa
, prot2
);
747 if (riscv_feature(env
, RISCV_FEATURE_PMP
) &&
748 (ret
== TRANSLATE_SUCCESS
) &&
749 !pmp_hart_has_privs(env
, pa
, size
, 1 << access_type
, mode
)) {
750 ret
= TRANSLATE_PMP_FAIL
;
753 if (ret
!= TRANSLATE_SUCCESS
) {
755 * Guest physical address translation failed, this is a HS
758 first_stage_error
= false;
759 env
->guest_phys_fault_addr
= (im_address
|
761 (TARGET_PAGE_SIZE
- 1))) >> 2;
765 /* Single stage lookup */
766 ret
= get_physical_address(env
, &pa
, &prot
, address
, NULL
,
767 access_type
, mmu_idx
, true, false);
769 qemu_log_mask(CPU_LOG_MMU
,
770 "%s address=%" VADDR_PRIx
" ret %d physical "
771 TARGET_FMT_plx
" prot %d\n",
772 __func__
, address
, ret
, pa
, prot
);
775 if (riscv_feature(env
, RISCV_FEATURE_PMP
) &&
776 (ret
== TRANSLATE_SUCCESS
) &&
777 !pmp_hart_has_privs(env
, pa
, size
, 1 << access_type
, mode
)) {
778 ret
= TRANSLATE_PMP_FAIL
;
780 if (ret
== TRANSLATE_PMP_FAIL
) {
781 pmp_violation
= true;
784 if (ret
== TRANSLATE_SUCCESS
) {
785 if (pmp_is_range_in_tlb(env
, pa
& TARGET_PAGE_MASK
, &tlb_size
)) {
786 tlb_set_page(cs
, address
& ~(tlb_size
- 1), pa
& ~(tlb_size
- 1),
787 prot
, mmu_idx
, tlb_size
);
789 tlb_set_page(cs
, address
& TARGET_PAGE_MASK
, pa
& TARGET_PAGE_MASK
,
790 prot
, mmu_idx
, TARGET_PAGE_SIZE
);
796 raise_mmu_exception(env
, address
, access_type
, pmp_violation
,
798 riscv_cpu_virt_enabled(env
) ||
799 riscv_cpu_two_stage_lookup(mmu_idx
));
800 riscv_raise_exception(env
, cs
->exception_index
, retaddr
);
806 switch (access_type
) {
808 cs
->exception_index
= RISCV_EXCP_INST_PAGE_FAULT
;
811 cs
->exception_index
= RISCV_EXCP_LOAD_PAGE_FAULT
;
814 cs
->exception_index
= RISCV_EXCP_STORE_PAGE_FAULT
;
817 g_assert_not_reached();
819 env
->badaddr
= address
;
820 cpu_loop_exit_restore(cs
, retaddr
);
827 * Adapted from Spike's processor_t::take_trap.
830 void riscv_cpu_do_interrupt(CPUState
*cs
)
832 #if !defined(CONFIG_USER_ONLY)
834 RISCVCPU
*cpu
= RISCV_CPU(cs
);
835 CPURISCVState
*env
= &cpu
->env
;
836 bool force_hs_execp
= riscv_cpu_force_hs_excep_enabled(env
);
839 /* cs->exception is 32-bits wide unlike mcause which is XLEN-bits wide
840 * so we mask off the MSB and separate into trap type and cause.
842 bool async
= !!(cs
->exception_index
& RISCV_EXCP_INT_FLAG
);
843 target_ulong cause
= cs
->exception_index
& RISCV_EXCP_INT_MASK
;
844 target_ulong deleg
= async
? env
->mideleg
: env
->medeleg
;
845 bool write_tval
= false;
846 target_ulong tval
= 0;
847 target_ulong htval
= 0;
848 target_ulong mtval2
= 0;
851 /* set tval to badaddr for traps with address information */
853 case RISCV_EXCP_INST_GUEST_PAGE_FAULT
:
854 case RISCV_EXCP_LOAD_GUEST_ACCESS_FAULT
:
855 case RISCV_EXCP_STORE_GUEST_AMO_ACCESS_FAULT
:
856 force_hs_execp
= true;
858 case RISCV_EXCP_INST_ADDR_MIS
:
859 case RISCV_EXCP_INST_ACCESS_FAULT
:
860 case RISCV_EXCP_LOAD_ADDR_MIS
:
861 case RISCV_EXCP_STORE_AMO_ADDR_MIS
:
862 case RISCV_EXCP_LOAD_ACCESS_FAULT
:
863 case RISCV_EXCP_STORE_AMO_ACCESS_FAULT
:
864 case RISCV_EXCP_INST_PAGE_FAULT
:
865 case RISCV_EXCP_LOAD_PAGE_FAULT
:
866 case RISCV_EXCP_STORE_PAGE_FAULT
:
873 /* ecall is dispatched as one cause so translate based on mode */
874 if (cause
== RISCV_EXCP_U_ECALL
) {
875 assert(env
->priv
<= 3);
877 if (env
->priv
== PRV_M
) {
878 cause
= RISCV_EXCP_M_ECALL
;
879 } else if (env
->priv
== PRV_S
&& riscv_cpu_virt_enabled(env
)) {
880 cause
= RISCV_EXCP_VS_ECALL
;
881 } else if (env
->priv
== PRV_S
&& !riscv_cpu_virt_enabled(env
)) {
882 cause
= RISCV_EXCP_S_ECALL
;
883 } else if (env
->priv
== PRV_U
) {
884 cause
= RISCV_EXCP_U_ECALL
;
889 trace_riscv_trap(env
->mhartid
, async
, cause
, env
->pc
, tval
,
890 riscv_cpu_get_trap_name(cause
, async
));
892 qemu_log_mask(CPU_LOG_INT
,
893 "%s: hart:"TARGET_FMT_ld
", async:%d, cause:"TARGET_FMT_lx
", "
894 "epc:0x"TARGET_FMT_lx
", tval:0x"TARGET_FMT_lx
", desc=%s\n",
895 __func__
, env
->mhartid
, async
, cause
, env
->pc
, tval
,
896 riscv_cpu_get_trap_name(cause
, async
));
898 if (env
->priv
<= PRV_S
&&
899 cause
< TARGET_LONG_BITS
&& ((deleg
>> cause
) & 1)) {
900 /* handle the trap in S-mode */
901 if (riscv_has_ext(env
, RVH
)) {
902 target_ulong hdeleg
= async
? env
->hideleg
: env
->hedeleg
;
903 bool two_stage_lookup
= false;
905 if (env
->priv
== PRV_M
||
906 (env
->priv
== PRV_S
&& !riscv_cpu_virt_enabled(env
)) ||
907 (env
->priv
== PRV_U
&& !riscv_cpu_virt_enabled(env
) &&
908 get_field(env
->hstatus
, HSTATUS_HU
))) {
909 two_stage_lookup
= true;
912 if ((riscv_cpu_virt_enabled(env
) || two_stage_lookup
) && write_tval
) {
914 * If we are writing a guest virtual address to stval, set
915 * this to 1. If we are trapping to VS we will set this to 0
918 env
->hstatus
= set_field(env
->hstatus
, HSTATUS_GVA
, 1);
920 /* For other HS-mode traps, we set this to 0. */
921 env
->hstatus
= set_field(env
->hstatus
, HSTATUS_GVA
, 0);
924 if (riscv_cpu_virt_enabled(env
) && ((hdeleg
>> cause
) & 1) &&
926 /* Trap to VS mode */
928 * See if we need to adjust cause. Yes if its VS mode interrupt
929 * no if hypervisor has delegated one of hs mode's interrupt
931 if (cause
== IRQ_VS_TIMER
|| cause
== IRQ_VS_SOFT
||
932 cause
== IRQ_VS_EXT
) {
935 env
->hstatus
= set_field(env
->hstatus
, HSTATUS_GVA
, 0);
936 } else if (riscv_cpu_virt_enabled(env
)) {
937 /* Trap into HS mode, from virt */
938 riscv_cpu_swap_hypervisor_regs(env
);
939 env
->hstatus
= set_field(env
->hstatus
, HSTATUS_SPVP
,
941 env
->hstatus
= set_field(env
->hstatus
, HSTATUS_SPV
,
942 riscv_cpu_virt_enabled(env
));
944 htval
= env
->guest_phys_fault_addr
;
946 riscv_cpu_set_virt_enabled(env
, 0);
947 riscv_cpu_set_force_hs_excep(env
, 0);
949 /* Trap into HS mode */
950 if (!two_stage_lookup
) {
951 env
->hstatus
= set_field(env
->hstatus
, HSTATUS_SPV
,
952 riscv_cpu_virt_enabled(env
));
954 htval
= env
->guest_phys_fault_addr
;
959 s
= set_field(s
, MSTATUS_SPIE
, get_field(s
, MSTATUS_SIE
));
960 s
= set_field(s
, MSTATUS_SPP
, env
->priv
);
961 s
= set_field(s
, MSTATUS_SIE
, 0);
963 env
->scause
= cause
| ((target_ulong
)async
<< (TARGET_LONG_BITS
- 1));
965 env
->sbadaddr
= tval
;
967 env
->pc
= (env
->stvec
>> 2 << 2) +
968 ((async
&& (env
->stvec
& 3) == 1) ? cause
* 4 : 0);
969 riscv_cpu_set_mode(env
, PRV_S
);
971 /* handle the trap in M-mode */
972 if (riscv_has_ext(env
, RVH
)) {
973 if (riscv_cpu_virt_enabled(env
)) {
974 riscv_cpu_swap_hypervisor_regs(env
);
976 env
->mstatus
= set_field(env
->mstatus
, MSTATUS_MPV
,
977 riscv_cpu_virt_enabled(env
));
978 if (riscv_cpu_virt_enabled(env
) && tval
) {
979 env
->mstatus
= set_field(env
->mstatus
, MSTATUS_GVA
, 1);
982 mtval2
= env
->guest_phys_fault_addr
;
984 /* Trapping to M mode, virt is disabled */
985 riscv_cpu_set_virt_enabled(env
, 0);
986 riscv_cpu_set_force_hs_excep(env
, 0);
990 s
= set_field(s
, MSTATUS_MPIE
, get_field(s
, MSTATUS_MIE
));
991 s
= set_field(s
, MSTATUS_MPP
, env
->priv
);
992 s
= set_field(s
, MSTATUS_MIE
, 0);
994 env
->mcause
= cause
| ~(((target_ulong
)-1) >> async
);
996 env
->mbadaddr
= tval
;
997 env
->mtval2
= mtval2
;
998 env
->pc
= (env
->mtvec
>> 2 << 2) +
999 ((async
&& (env
->mtvec
& 3) == 1) ? cause
* 4 : 0);
1000 riscv_cpu_set_mode(env
, PRV_M
);
1003 /* NOTE: it is not necessary to yield load reservations here. It is only
1004 * necessary for an SC from "another hart" to cause a load reservation
1005 * to be yielded. Refer to the memory consistency model section of the
1006 * RISC-V ISA Specification.
1010 cs
->exception_index
= EXCP_NONE
; /* mark handled to qemu */