mirror of https://gitee.com/openkylin/qemu.git
realview: Use cpu_arm_init() to obtain ARMCPU
Needed for arm_pic_init_cpu(). Signed-off-by: Andreas Färber <afaerber@suse.de> Acked-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
5d309320e3
commit
9077f01b45
|
@ -50,7 +50,8 @@ static void realview_init(ram_addr_t ram_size,
|
||||||
const char *initrd_filename, const char *cpu_model,
|
const char *initrd_filename, const char *cpu_model,
|
||||||
enum realview_board_type board_type)
|
enum realview_board_type board_type)
|
||||||
{
|
{
|
||||||
CPUARMState *env = NULL;
|
ARMCPU *cpu = NULL;
|
||||||
|
CPUARMState *env;
|
||||||
MemoryRegion *sysmem = get_system_memory();
|
MemoryRegion *sysmem = get_system_memory();
|
||||||
MemoryRegion *ram_lo = g_new(MemoryRegion, 1);
|
MemoryRegion *ram_lo = g_new(MemoryRegion, 1);
|
||||||
MemoryRegion *ram_hi = g_new(MemoryRegion, 1);
|
MemoryRegion *ram_hi = g_new(MemoryRegion, 1);
|
||||||
|
@ -88,14 +89,15 @@ static void realview_init(ram_addr_t ram_size,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
for (n = 0; n < smp_cpus; n++) {
|
for (n = 0; n < smp_cpus; n++) {
|
||||||
env = cpu_init(cpu_model);
|
cpu = cpu_arm_init(cpu_model);
|
||||||
if (!env) {
|
if (!cpu) {
|
||||||
fprintf(stderr, "Unable to find CPU definition\n");
|
fprintf(stderr, "Unable to find CPU definition\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
irqp = arm_pic_init_cpu(env);
|
irqp = arm_pic_init_cpu(&cpu->env);
|
||||||
cpu_irq[n] = irqp[ARM_PIC_CPU_IRQ];
|
cpu_irq[n] = irqp[ARM_PIC_CPU_IRQ];
|
||||||
}
|
}
|
||||||
|
env = &cpu->env;
|
||||||
if (arm_feature(env, ARM_FEATURE_V7)) {
|
if (arm_feature(env, ARM_FEATURE_V7)) {
|
||||||
if (is_mpcore) {
|
if (is_mpcore) {
|
||||||
proc_id = 0x0c000000;
|
proc_id = 0x0c000000;
|
||||||
|
|
Loading…
Reference in New Issue