Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
target/riscv: Hoist second stage mode change to callers
Move the check from the top of get_physical_address to
the two callers, where passing mmu_idx makes no sense.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Weiwei Li <liweiwei@iscas.ac.cn>
Tested-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
Message-Id: <20230325105429.1142530-19-richard.henderson@linaro.org>
Message-Id: <20230412114333.118895-19-richard.henderson@linaro.org>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
  • Loading branch information
rth7680 authored and alistair23 committed May 5, 2023
1 parent eaecd47 commit a427c83
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions target/riscv/cpu_helper.c
Expand Up @@ -777,14 +777,6 @@ static int get_physical_address(CPURISCVState *env, hwaddr *physical,
use_background = true;
}

if (first_stage == false) {
/*
* We are in stage 2 translation, this is similar to stage 1.
* Stage 2 is always taken as U-mode
*/
mode = PRV_U;
}

if (mode == PRV_M || !riscv_cpu_cfg(env)->mmu) {
*physical = addr;
*prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
Expand Down Expand Up @@ -890,7 +882,7 @@ static int get_physical_address(CPURISCVState *env, hwaddr *physical,
/* Do the second stage translation on the base PTE address. */
int vbase_ret = get_physical_address(env, &vbase, &vbase_prot,
base, NULL, MMU_DATA_LOAD,
mmu_idx, false, true,
MMUIdx_U, false, true,
is_debug);

if (vbase_ret != TRANSLATE_SUCCESS) {
Expand Down Expand Up @@ -1271,7 +1263,7 @@ bool riscv_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
im_address = pa;

ret = get_physical_address(env, &pa, &prot2, im_address, NULL,
access_type, mmu_idx, false, true,
access_type, MMUIdx_U, false, true,
false);

qemu_log_mask(CPU_LOG_MMU,
Expand Down

0 comments on commit a427c83

Please sign in to comment.