diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2019-04-02 16:47:37 +0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2019-05-10 11:12:50 -0700 |
commit | 0137c93ff8cbcebf8f8b1bc354b5928016387eef (patch) | |
tree | 09009340b19420b4563d54f82f59e40826cedca0 /target/nios2/cpu.h | |
parent | ccfd61fc6bda50456d54b915ddcdc248751b3098 (diff) | |
download | qemu-0137c93ff8cbcebf8f8b1bc354b5928016387eef.zip |
target/nios2: Convert to CPUClass::tlb_fill
Remove the leftover debugging cpu_dump_state.
Cc: Chris Wulff <crwulff@gmail.com>
Cc: Marek Vasut <marex@denx.de>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/nios2/cpu.h')
-rw-r--r-- | target/nios2/cpu.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target/nios2/cpu.h b/target/nios2/cpu.h index 881e7d58c9..60a916b2e5 100644 --- a/target/nios2/cpu.h +++ b/target/nios2/cpu.h @@ -252,8 +252,9 @@ static inline int cpu_mmu_index(CPUNios2State *env, bool ifetch) MMU_SUPERVISOR_IDX; } -int nios2_cpu_handle_mmu_fault(CPUState *env, vaddr address, int size, - int rw, int mmu_idx); +bool nios2_cpu_tlb_fill(CPUState *cs, vaddr address, int size, + MMUAccessType access_type, int mmu_idx, + bool probe, uintptr_t retaddr); static inline int cpu_interrupts_enabled(CPUNios2State *env) { |