Message ID | 20240129233043.34558-25-richard.henderson@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | hw/core: Introduce CPUClass hook for mmu_index | expand |
On Tue, Jan 30, 2024 at 10:03 AM Richard Henderson <richard.henderson@linaro.org> wrote: > > Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Alistair > --- > target/riscv/cpu.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c > index 8cbfc7e781..be21fa09c6 100644 > --- a/target/riscv/cpu.c > +++ b/target/riscv/cpu.c > @@ -867,6 +867,11 @@ static bool riscv_cpu_has_work(CPUState *cs) > #endif > } > > +static int riscv_cpu_mmu_index(CPUState *cs, bool ifetch) > +{ > + return riscv_env_mmu_index(cpu_env(cs), ifetch); > +} > + > static void riscv_cpu_reset_hold(Object *obj) > { > #ifndef CONFIG_USER_ONLY > @@ -1810,6 +1815,7 @@ static void riscv_cpu_class_init(ObjectClass *c, void *data) > > cc->class_by_name = riscv_cpu_class_by_name; > cc->has_work = riscv_cpu_has_work; > + cc->mmu_index = riscv_cpu_mmu_index; > cc->dump_state = riscv_cpu_dump_state; > cc->set_pc = riscv_cpu_set_pc; > cc->get_pc = riscv_cpu_get_pc; > -- > 2.34.1 > >
diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c index 8cbfc7e781..be21fa09c6 100644 --- a/target/riscv/cpu.c +++ b/target/riscv/cpu.c @@ -867,6 +867,11 @@ static bool riscv_cpu_has_work(CPUState *cs) #endif } +static int riscv_cpu_mmu_index(CPUState *cs, bool ifetch) +{ + return riscv_env_mmu_index(cpu_env(cs), ifetch); +} + static void riscv_cpu_reset_hold(Object *obj) { #ifndef CONFIG_USER_ONLY @@ -1810,6 +1815,7 @@ static void riscv_cpu_class_init(ObjectClass *c, void *data) cc->class_by_name = riscv_cpu_class_by_name; cc->has_work = riscv_cpu_has_work; + cc->mmu_index = riscv_cpu_mmu_index; cc->dump_state = riscv_cpu_dump_state; cc->set_pc = riscv_cpu_set_pc; cc->get_pc = riscv_cpu_get_pc;
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> --- target/riscv/cpu.c | 6 ++++++ 1 file changed, 6 insertions(+)