mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-21 09:02:00 -06:00
target/mips: Let get_physical_address() take MMUAccessType argument
All these functions: - mips_cpu_get_phys_page_debug() - cpu_mips_translate_address() - mips_cpu_tlb_fill() - page_table_walk_refill() - walk_directory() call get_physical_address() passing a MMUAccessType type. Let the prototype use it as argument, as it is stricter than an integer. 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-12-f4bug@amsat.org>
This commit is contained in:
parent
ca354f0004
commit
7c6e2049f0
1 changed files with 10 additions and 10 deletions
|
@ -259,7 +259,7 @@ static int get_segctl_physical_address(CPUMIPSState *env, hwaddr *physical,
|
||||||
|
|
||||||
static int get_physical_address(CPUMIPSState *env, hwaddr *physical,
|
static int get_physical_address(CPUMIPSState *env, hwaddr *physical,
|
||||||
int *prot, target_ulong real_address,
|
int *prot, target_ulong real_address,
|
||||||
int rw, int mmu_idx)
|
MMUAccessType access_type, int mmu_idx)
|
||||||
{
|
{
|
||||||
/* User mode can only access useg/xuseg */
|
/* User mode can only access useg/xuseg */
|
||||||
#if defined(TARGET_MIPS64)
|
#if defined(TARGET_MIPS64)
|
||||||
|
@ -306,14 +306,14 @@ static int get_physical_address(CPUMIPSState *env, hwaddr *physical,
|
||||||
segctl = env->CP0_SegCtl2 >> 16;
|
segctl = env->CP0_SegCtl2 >> 16;
|
||||||
}
|
}
|
||||||
ret = get_segctl_physical_address(env, physical, prot,
|
ret = get_segctl_physical_address(env, physical, prot,
|
||||||
real_address, rw,
|
real_address, access_type,
|
||||||
mmu_idx, segctl, 0x3FFFFFFF);
|
mmu_idx, segctl, 0x3FFFFFFF);
|
||||||
#if defined(TARGET_MIPS64)
|
#if defined(TARGET_MIPS64)
|
||||||
} else if (address < 0x4000000000000000ULL) {
|
} else if (address < 0x4000000000000000ULL) {
|
||||||
/* xuseg */
|
/* xuseg */
|
||||||
if (UX && address <= (0x3FFFFFFFFFFFFFFFULL & env->SEGMask)) {
|
if (UX && address <= (0x3FFFFFFFFFFFFFFFULL & env->SEGMask)) {
|
||||||
ret = env->tlb->map_address(env, physical, prot,
|
ret = env->tlb->map_address(env, physical, prot,
|
||||||
real_address, rw);
|
real_address, access_type);
|
||||||
} else {
|
} else {
|
||||||
ret = TLBRET_BADADDR;
|
ret = TLBRET_BADADDR;
|
||||||
}
|
}
|
||||||
|
@ -322,7 +322,7 @@ static int get_physical_address(CPUMIPSState *env, hwaddr *physical,
|
||||||
if ((supervisor_mode || kernel_mode) &&
|
if ((supervisor_mode || kernel_mode) &&
|
||||||
SX && address <= (0x7FFFFFFFFFFFFFFFULL & env->SEGMask)) {
|
SX && address <= (0x7FFFFFFFFFFFFFFFULL & env->SEGMask)) {
|
||||||
ret = env->tlb->map_address(env, physical, prot,
|
ret = env->tlb->map_address(env, physical, prot,
|
||||||
real_address, rw);
|
real_address, access_type);
|
||||||
} else {
|
} else {
|
||||||
ret = TLBRET_BADADDR;
|
ret = TLBRET_BADADDR;
|
||||||
}
|
}
|
||||||
|
@ -349,7 +349,7 @@ static int get_physical_address(CPUMIPSState *env, hwaddr *physical,
|
||||||
/* Does CP0_Status.KX/SX/UX permit the access mode (am) */
|
/* Does CP0_Status.KX/SX/UX permit the access mode (am) */
|
||||||
if (env->CP0_Status & am_ksux[am]) {
|
if (env->CP0_Status & am_ksux[am]) {
|
||||||
ret = get_seg_physical_address(env, physical, prot,
|
ret = get_seg_physical_address(env, physical, prot,
|
||||||
real_address, rw,
|
real_address, access_type,
|
||||||
mmu_idx, am, false, env->PAMask,
|
mmu_idx, am, false, env->PAMask,
|
||||||
0);
|
0);
|
||||||
} else {
|
} else {
|
||||||
|
@ -363,7 +363,7 @@ static int get_physical_address(CPUMIPSState *env, hwaddr *physical,
|
||||||
if (kernel_mode && KX &&
|
if (kernel_mode && KX &&
|
||||||
address <= (0xFFFFFFFF7FFFFFFFULL & env->SEGMask)) {
|
address <= (0xFFFFFFFF7FFFFFFFULL & env->SEGMask)) {
|
||||||
ret = env->tlb->map_address(env, physical, prot,
|
ret = env->tlb->map_address(env, physical, prot,
|
||||||
real_address, rw);
|
real_address, access_type);
|
||||||
} else {
|
} else {
|
||||||
ret = TLBRET_BADADDR;
|
ret = TLBRET_BADADDR;
|
||||||
}
|
}
|
||||||
|
@ -371,17 +371,17 @@ static int get_physical_address(CPUMIPSState *env, hwaddr *physical,
|
||||||
} else if (address < KSEG1_BASE) {
|
} else if (address < KSEG1_BASE) {
|
||||||
/* kseg0 */
|
/* kseg0 */
|
||||||
ret = get_segctl_physical_address(env, physical, prot, real_address,
|
ret = get_segctl_physical_address(env, physical, prot, real_address,
|
||||||
rw, mmu_idx,
|
access_type, mmu_idx,
|
||||||
env->CP0_SegCtl1 >> 16, 0x1FFFFFFF);
|
env->CP0_SegCtl1 >> 16, 0x1FFFFFFF);
|
||||||
} else if (address < KSEG2_BASE) {
|
} else if (address < KSEG2_BASE) {
|
||||||
/* kseg1 */
|
/* kseg1 */
|
||||||
ret = get_segctl_physical_address(env, physical, prot, real_address,
|
ret = get_segctl_physical_address(env, physical, prot, real_address,
|
||||||
rw, mmu_idx,
|
access_type, mmu_idx,
|
||||||
env->CP0_SegCtl1, 0x1FFFFFFF);
|
env->CP0_SegCtl1, 0x1FFFFFFF);
|
||||||
} else if (address < KSEG3_BASE) {
|
} else if (address < KSEG3_BASE) {
|
||||||
/* sseg (kseg2) */
|
/* sseg (kseg2) */
|
||||||
ret = get_segctl_physical_address(env, physical, prot, real_address,
|
ret = get_segctl_physical_address(env, physical, prot, real_address,
|
||||||
rw, mmu_idx,
|
access_type, mmu_idx,
|
||||||
env->CP0_SegCtl0 >> 16, 0x1FFFFFFF);
|
env->CP0_SegCtl0 >> 16, 0x1FFFFFFF);
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
|
@ -389,7 +389,7 @@ static int get_physical_address(CPUMIPSState *env, hwaddr *physical,
|
||||||
* XXX: debug segment is not emulated
|
* XXX: debug segment is not emulated
|
||||||
*/
|
*/
|
||||||
ret = get_segctl_physical_address(env, physical, prot, real_address,
|
ret = get_segctl_physical_address(env, physical, prot, real_address,
|
||||||
rw, mmu_idx,
|
access_type, mmu_idx,
|
||||||
env->CP0_SegCtl0, 0x1FFFFFFF);
|
env->CP0_SegCtl0, 0x1FFFFFFF);
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue