Skip to content

Commit

Permalink
target/cris: Populate CPUClass.mmu_index
Browse files Browse the repository at this point in the history
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed Feb 2, 2024
1 parent 97fc0c2 commit 3f605a1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions target/cris/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ static bool cris_cpu_has_work(CPUState *cs)
return cs->interrupt_request & (CPU_INTERRUPT_HARD | CPU_INTERRUPT_NMI);
}

static int cris_cpu_mmu_index(CPUState *cs, bool ifetch)
{
return !!(cpu_env(cs)->pregs[PR_CCS] & U_FLAG);
}

static void cris_cpu_reset_hold(Object *obj)
{
CPUState *s = CPU(obj);
Expand Down Expand Up @@ -274,6 +279,7 @@ static void cris_cpu_class_init(ObjectClass *oc, void *data)

cc->class_by_name = cris_cpu_class_by_name;
cc->has_work = cris_cpu_has_work;
cc->mmu_index = cris_cpu_mmu_index;
cc->dump_state = cris_cpu_dump_state;
cc->set_pc = cris_cpu_set_pc;
cc->get_pc = cris_cpu_get_pc;
Expand Down

0 comments on commit 3f605a1

Please sign in to comment.