mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
target/rx: Populate CPUClass.mmu_index
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
a5c7797496
commit
ef5cc166da
1 changed files with 6 additions and 0 deletions
|
@ -64,6 +64,11 @@ static bool rx_cpu_has_work(CPUState *cs)
|
||||||
(CPU_INTERRUPT_HARD | CPU_INTERRUPT_FIR);
|
(CPU_INTERRUPT_HARD | CPU_INTERRUPT_FIR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int riscv_cpu_mmu_index(CPUState *cs, bool ifunc)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static void rx_cpu_reset_hold(Object *obj)
|
static void rx_cpu_reset_hold(Object *obj)
|
||||||
{
|
{
|
||||||
RXCPU *cpu = RX_CPU(obj);
|
RXCPU *cpu = RX_CPU(obj);
|
||||||
|
@ -204,6 +209,7 @@ static void rx_cpu_class_init(ObjectClass *klass, void *data)
|
||||||
|
|
||||||
cc->class_by_name = rx_cpu_class_by_name;
|
cc->class_by_name = rx_cpu_class_by_name;
|
||||||
cc->has_work = rx_cpu_has_work;
|
cc->has_work = rx_cpu_has_work;
|
||||||
|
cc->mmu_index = riscv_cpu_mmu_index;
|
||||||
cc->dump_state = rx_cpu_dump_state;
|
cc->dump_state = rx_cpu_dump_state;
|
||||||
cc->set_pc = rx_cpu_set_pc;
|
cc->set_pc = rx_cpu_set_pc;
|
||||||
cc->get_pc = rx_cpu_get_pc;
|
cc->get_pc = rx_cpu_get_pc;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue