From: Andreas Färber Date: Thu, 3 May 2012 03:45:10 +0000 (+0200) Subject: spapr: Use cpu_ppc_init() to obtain PowerPCCPU X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=05769733e046e01a08696bcdf0beae8284fc1662;p=qemu.git spapr: Use cpu_ppc_init() to obtain PowerPCCPU Needed for spapr_cpu_reset(). Signed-off-by: Andreas Färber Acked-by: Alexander Graf --- diff --git a/hw/spapr.c b/hw/spapr.c index cca20f9a51..26723309b2 100644 --- a/hw/spapr.c +++ b/hw/spapr.c @@ -518,6 +518,7 @@ static void ppc_spapr_init(ram_addr_t ram_size, const char *initrd_filename, const char *cpu_model) { + PowerPCCPU *cpu; CPUPPCState *env; int i; MemoryRegion *sysmem = get_system_memory(); @@ -560,12 +561,13 @@ static void ppc_spapr_init(ram_addr_t ram_size, cpu_model = kvm_enabled() ? "host" : "POWER7"; } for (i = 0; i < smp_cpus; i++) { - env = cpu_init(cpu_model); - - if (!env) { + cpu = cpu_ppc_init(cpu_model); + if (cpu == NULL) { fprintf(stderr, "Unable to find PowerPC CPU definition\n"); exit(1); } + env = &cpu->env; + /* Set time-base frequency to 512 MHz */ cpu_ppc_tb_init(env, TIMEBASE_FREQ); qemu_register_reset(spapr_cpu_reset, env);