mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
target/riscv: Remove the hardcoded HGATP_MODE macro
Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Message-id: 665f624bfdc2e3ca64265004b07de7489c77a766.1619234854.git.alistair.francis@wdc.com
This commit is contained in:
parent
5f10e6d895
commit
994b6bb2db
2 changed files with 15 additions and 20 deletions
|
@ -413,8 +413,13 @@ static int get_physical_address(CPURISCVState *env, hwaddr *physical,
|
|||
}
|
||||
widened = 0;
|
||||
} else {
|
||||
base = (hwaddr)get_field(env->hgatp, HGATP_PPN) << PGSHIFT;
|
||||
vm = get_field(env->hgatp, HGATP_MODE);
|
||||
if (riscv_cpu_is_32bit(env)) {
|
||||
base = (hwaddr)get_field(env->hgatp, SATP32_PPN) << PGSHIFT;
|
||||
vm = get_field(env->hgatp, SATP32_MODE);
|
||||
} else {
|
||||
base = (hwaddr)get_field(env->hgatp, SATP64_PPN) << PGSHIFT;
|
||||
vm = get_field(env->hgatp, SATP64_MODE);
|
||||
}
|
||||
widened = 2;
|
||||
}
|
||||
/* status.SUM will be ignored if execute on background */
|
||||
|
@ -618,16 +623,17 @@ static void raise_mmu_exception(CPURISCVState *env, target_ulong address,
|
|||
bool first_stage, bool two_stage)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int page_fault_exceptions;
|
||||
int page_fault_exceptions, vm;
|
||||
|
||||
if (first_stage) {
|
||||
page_fault_exceptions =
|
||||
get_field(env->satp, SATP_MODE) != VM_1_10_MBARE &&
|
||||
!pmp_violation;
|
||||
vm = get_field(env->satp, SATP_MODE);
|
||||
} else if (riscv_cpu_is_32bit(env)) {
|
||||
vm = get_field(env->hgatp, SATP32_MODE);
|
||||
} else {
|
||||
page_fault_exceptions =
|
||||
get_field(env->hgatp, HGATP_MODE) != VM_1_10_MBARE &&
|
||||
!pmp_violation;
|
||||
vm = get_field(env->hgatp, SATP64_MODE);
|
||||
}
|
||||
page_fault_exceptions = vm != VM_1_10_MBARE && !pmp_violation;
|
||||
|
||||
switch (access_type) {
|
||||
case MMU_INST_FETCH:
|
||||
if (riscv_cpu_virt_enabled(env) && !first_stage) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue