mirror of https://github.com/xemu-project/xemu.git
tricore: use generic cpu_model parsing
Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <1507211474-188400-31-git-send-email-imammedo@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
b9ad9d5b21
commit
0f550c5cc7
|
@ -71,10 +71,7 @@ static void tricore_testboard_init(MachineState *machine, int board_id)
|
||||||
MemoryRegion *pcp_data = g_new(MemoryRegion, 1);
|
MemoryRegion *pcp_data = g_new(MemoryRegion, 1);
|
||||||
MemoryRegion *pcp_text = g_new(MemoryRegion, 1);
|
MemoryRegion *pcp_text = g_new(MemoryRegion, 1);
|
||||||
|
|
||||||
if (!machine->cpu_model) {
|
cpu = TRICORE_CPU(cpu_create(machine->cpu_type));
|
||||||
machine->cpu_model = "tc1796";
|
|
||||||
}
|
|
||||||
cpu = TRICORE_CPU(cpu_generic_init(TYPE_TRICORE_CPU, machine->cpu_model));
|
|
||||||
env = &cpu->env;
|
env = &cpu->env;
|
||||||
memory_region_init_ram(ext_cram, NULL, "powerlink_ext_c.ram",
|
memory_region_init_ram(ext_cram, NULL, "powerlink_ext_c.ram",
|
||||||
2 * 1024 * 1024, &error_fatal);
|
2 * 1024 * 1024, &error_fatal);
|
||||||
|
@ -114,6 +111,7 @@ static void ttb_machine_init(MachineClass *mc)
|
||||||
mc->desc = "a minimal TriCore board";
|
mc->desc = "a minimal TriCore board";
|
||||||
mc->init = tricoreboard_init;
|
mc->init = tricoreboard_init;
|
||||||
mc->is_default = 0;
|
mc->is_default = 0;
|
||||||
|
mc->default_cpu_type = TRICORE_CPU_TYPE_NAME("tc1796");
|
||||||
}
|
}
|
||||||
|
|
||||||
DEFINE_MACHINE("tricore_testboard", ttb_machine_init)
|
DEFINE_MACHINE("tricore_testboard", ttb_machine_init)
|
||||||
|
|
Loading…
Reference in New Issue