mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
target/hppa: Add MemOp argument to hppa_get_physical_address
Just add the argument, unused at this point. Zero is the safe do-nothing value for all callers. Reviewed-by: Helge Deller <deller@gmx.de> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
795592fef7
commit
4e6939c934
4 changed files with 8 additions and 7 deletions
|
@ -369,7 +369,7 @@ bool hppa_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
|
||||||
void hppa_cpu_do_interrupt(CPUState *cpu);
|
void hppa_cpu_do_interrupt(CPUState *cpu);
|
||||||
bool hppa_cpu_exec_interrupt(CPUState *cpu, int int_req);
|
bool hppa_cpu_exec_interrupt(CPUState *cpu, int int_req);
|
||||||
int hppa_get_physical_address(CPUHPPAState *env, vaddr addr, int mmu_idx,
|
int hppa_get_physical_address(CPUHPPAState *env, vaddr addr, int mmu_idx,
|
||||||
int type, hwaddr *pphys, int *pprot);
|
int type, MemOp mop, hwaddr *pphys, int *pprot);
|
||||||
void hppa_cpu_do_transaction_failed(CPUState *cs, hwaddr physaddr,
|
void hppa_cpu_do_transaction_failed(CPUState *cs, hwaddr physaddr,
|
||||||
vaddr addr, unsigned size,
|
vaddr addr, unsigned size,
|
||||||
MMUAccessType access_type,
|
MMUAccessType access_type,
|
||||||
|
|
|
@ -167,7 +167,7 @@ void hppa_cpu_do_interrupt(CPUState *cs)
|
||||||
|
|
||||||
vaddr = hppa_form_gva_psw(old_psw, env->iasq_f, vaddr);
|
vaddr = hppa_form_gva_psw(old_psw, env->iasq_f, vaddr);
|
||||||
t = hppa_get_physical_address(env, vaddr, MMU_KERNEL_IDX,
|
t = hppa_get_physical_address(env, vaddr, MMU_KERNEL_IDX,
|
||||||
0, &paddr, &prot);
|
0, 0, &paddr, &prot);
|
||||||
if (t >= 0) {
|
if (t >= 0) {
|
||||||
/* We can't re-load the instruction. */
|
/* We can't re-load the instruction. */
|
||||||
env->cr[CR_IIR] = 0;
|
env->cr[CR_IIR] = 0;
|
||||||
|
|
|
@ -197,7 +197,7 @@ static int match_prot_id64(CPUHPPAState *env, uint32_t access_id)
|
||||||
}
|
}
|
||||||
|
|
||||||
int hppa_get_physical_address(CPUHPPAState *env, vaddr addr, int mmu_idx,
|
int hppa_get_physical_address(CPUHPPAState *env, vaddr addr, int mmu_idx,
|
||||||
int type, hwaddr *pphys, int *pprot)
|
int type, MemOp mop, hwaddr *pphys, int *pprot)
|
||||||
{
|
{
|
||||||
hwaddr phys;
|
hwaddr phys;
|
||||||
int prot, r_prot, w_prot, x_prot, priv;
|
int prot, r_prot, w_prot, x_prot, priv;
|
||||||
|
@ -340,7 +340,7 @@ hwaddr hppa_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
|
||||||
mmu_idx = (cpu->env.psw & PSW_D ? MMU_KERNEL_IDX :
|
mmu_idx = (cpu->env.psw & PSW_D ? MMU_KERNEL_IDX :
|
||||||
cpu->env.psw & PSW_W ? MMU_ABS_W_IDX : MMU_ABS_IDX);
|
cpu->env.psw & PSW_W ? MMU_ABS_W_IDX : MMU_ABS_IDX);
|
||||||
|
|
||||||
excp = hppa_get_physical_address(&cpu->env, addr, mmu_idx, 0,
|
excp = hppa_get_physical_address(&cpu->env, addr, mmu_idx, 0, 0,
|
||||||
&phys, &prot);
|
&phys, &prot);
|
||||||
|
|
||||||
/* Since we're translating for debugging, the only error that is a
|
/* Since we're translating for debugging, the only error that is a
|
||||||
|
@ -438,7 +438,8 @@ bool hppa_cpu_tlb_fill(CPUState *cs, vaddr addr, int size,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
excp = hppa_get_physical_address(env, addr, mmu_idx, a_prot, &phys, &prot);
|
excp = hppa_get_physical_address(env, addr, mmu_idx, a_prot, 0,
|
||||||
|
&phys, &prot);
|
||||||
if (unlikely(excp >= 0)) {
|
if (unlikely(excp >= 0)) {
|
||||||
if (probe) {
|
if (probe) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -678,7 +679,7 @@ target_ulong HELPER(lpa)(CPUHPPAState *env, target_ulong addr)
|
||||||
hwaddr phys;
|
hwaddr phys;
|
||||||
int prot, excp;
|
int prot, excp;
|
||||||
|
|
||||||
excp = hppa_get_physical_address(env, addr, MMU_KERNEL_IDX, 0,
|
excp = hppa_get_physical_address(env, addr, MMU_KERNEL_IDX, 0, 0,
|
||||||
&phys, &prot);
|
&phys, &prot);
|
||||||
if (excp >= 0) {
|
if (excp >= 0) {
|
||||||
if (excp == EXCP_DTLB_MISS) {
|
if (excp == EXCP_DTLB_MISS) {
|
||||||
|
|
|
@ -334,7 +334,7 @@ target_ulong HELPER(probe)(CPUHPPAState *env, target_ulong addr,
|
||||||
}
|
}
|
||||||
|
|
||||||
mmu_idx = PRIV_P_TO_MMU_IDX(level, env->psw & PSW_P);
|
mmu_idx = PRIV_P_TO_MMU_IDX(level, env->psw & PSW_P);
|
||||||
excp = hppa_get_physical_address(env, addr, mmu_idx, 0, &phys, &prot);
|
excp = hppa_get_physical_address(env, addr, mmu_idx, 0, 0, &phys, &prot);
|
||||||
if (excp >= 0) {
|
if (excp >= 0) {
|
||||||
cpu_restore_state(env_cpu(env), GETPC());
|
cpu_restore_state(env_cpu(env), GETPC());
|
||||||
hppa_set_ior_and_isr(env, addr, MMU_IDX_MMU_DISABLED(mmu_idx));
|
hppa_set_ior_and_isr(env, addr, MMU_IDX_MMU_DISABLED(mmu_idx));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue