aboutsummaryrefslogtreecommitdiff
path: root/target/mips
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-01-28 01:48:28 +0100
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-02-21 19:42:33 +0100
commit496892282520d7e55ce3b48b7cdc772199a44ad4 (patch)
treebc47552093c6ff51f1077592d3b1d2046a5a5a73 /target/mips
parentafe2fe4d04d3b260c1802adb59d851905f3bcb3c (diff)
downloadqemu-496892282520d7e55ce3b48b7cdc772199a44ad4.zip
qemu-496892282520d7e55ce3b48b7cdc772199a44ad4.tar.gz
qemu-496892282520d7e55ce3b48b7cdc772199a44ad4.tar.bz2
target/mips: Remove access_type argument from get_seg_physical_address
get_seg_physical_address() doesn't use the 'access_type' argument, remove it to simplify. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Message-Id: <20210128144125.3696119-3-f4bug@amsat.org>
Diffstat (limited to 'target/mips')
-rw-r--r--target/mips/tlb_helper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/mips/tlb_helper.c b/target/mips/tlb_helper.c
index 1af2dc9..9906292 100644
--- a/target/mips/tlb_helper.c
+++ b/target/mips/tlb_helper.c
@@ -222,7 +222,7 @@ static int is_seg_am_mapped(unsigned int am, bool eu, int mmu_idx)
static int get_seg_physical_address(CPUMIPSState *env, hwaddr *physical,
int *prot, target_ulong real_address,
- int rw, int access_type, int mmu_idx,
+ int rw, int mmu_idx,
unsigned int am, bool eu,
target_ulong segmask,
hwaddr physical_base)
@@ -253,7 +253,7 @@ static int get_segctl_physical_address(CPUMIPSState *env, hwaddr *physical,
hwaddr pa = ((hwaddr)segctl & CP0SC_PA_MASK) << 20;
return get_seg_physical_address(env, physical, prot, real_address, rw,
- access_type, mmu_idx, am, eu, segmask,
+ mmu_idx, am, eu, segmask,
pa & ~(hwaddr)segmask);
}
@@ -349,7 +349,7 @@ static int get_physical_address(CPUMIPSState *env, hwaddr *physical,
/* Does CP0_Status.KX/SX/UX permit the access mode (am) */
if (env->CP0_Status & am_ksux[am]) {
ret = get_seg_physical_address(env, physical, prot,
- real_address, rw, access_type,
+ real_address, rw,
mmu_idx, am, false, env->PAMask,
0);
} else {