aboutsummaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2024-01-29 09:38:31 +1000
committerRichard Henderson <richard.henderson@linaro.org>2024-02-03 16:46:09 +1000
commita5a2d7f64f0d71278fb338a25fb9a05f926b6845 (patch)
treeed0cb52b8240466d01d63aebbcbeb2936b30aa8d /target
parent3f262d256802b72a2b819de260c5e57effbc53f7 (diff)
downloadqemu-a5a2d7f64f0d71278fb338a25fb9a05f926b6845.zip
qemu-a5a2d7f64f0d71278fb338a25fb9a05f926b6845.tar.gz
qemu-a5a2d7f64f0d71278fb338a25fb9a05f926b6845.tar.bz2
target/m68k: Populate CPUClass.mmu_index
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target')
-rw-r--r--target/m68k/cpu.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/target/m68k/cpu.c b/target/m68k/cpu.c
index 44000f5..8a8392e 100644
--- a/target/m68k/cpu.c
+++ b/target/m68k/cpu.c
@@ -56,6 +56,11 @@ static bool m68k_cpu_has_work(CPUState *cs)
return cs->interrupt_request & CPU_INTERRUPT_HARD;
}
+static int m68k_cpu_mmu_index(CPUState *cs, bool ifetch)
+{
+ return cpu_env(cs)->sr & SR_S ? MMU_KERNEL_IDX : MMU_USER_IDX;
+}
+
static void m68k_set_feature(CPUM68KState *env, int feature)
{
env->features |= BIT_ULL(feature);
@@ -551,6 +556,7 @@ static void m68k_cpu_class_init(ObjectClass *c, void *data)
cc->class_by_name = m68k_cpu_class_by_name;
cc->has_work = m68k_cpu_has_work;
+ cc->mmu_index = m68k_cpu_mmu_index;
cc->dump_state = m68k_cpu_dump_state;
cc->set_pc = m68k_cpu_set_pc;
cc->get_pc = m68k_cpu_get_pc;