pc: Generate APIC IDs according to CPU topology

This keeps compatibility on machine-types pc-1.2 and older, and prints a
warning in case the requested configuration won't get the correct
topology.

I couldn't think of a better way to warn about broken topology when in
compat mode other than using error_report(). The warning message will
probably be buried in a log file somewhere, but it's better than
nothing.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
Eduardo Habkost 2013-01-22 18:25:09 -02:00 committed by Andreas Färber
parent 247c9de13f
commit 8932cfdf7b
3 changed files with 35 additions and 6 deletions

View File

@ -233,11 +233,17 @@ static void pc_init_pci(QEMUMachineInitArgs *args)
initrd_filename, cpu_model, 1, 1); initrd_filename, cpu_model, 1, 1);
} }
static void pc_init_pci_1_3(QEMUMachineInitArgs *args)
{
enable_compat_apic_id_mode();
pc_init_pci(args);
}
/* PC machine init function for pc-0.14 to pc-1.2 */ /* PC machine init function for pc-0.14 to pc-1.2 */
static void pc_init_pci_1_2(QEMUMachineInitArgs *args) static void pc_init_pci_1_2(QEMUMachineInitArgs *args)
{ {
disable_kvm_pv_eoi(); disable_kvm_pv_eoi();
pc_init_pci(args); pc_init_pci_1_3(args);
} }
/* PC init function for pc-0.10 to pc-0.13, and reused by xenfv */ /* PC init function for pc-0.10 to pc-0.13, and reused by xenfv */
@ -250,6 +256,7 @@ static void pc_init_pci_no_kvmclock(QEMUMachineInitArgs *args)
const char *initrd_filename = args->initrd_filename; const char *initrd_filename = args->initrd_filename;
const char *boot_device = args->boot_device; const char *boot_device = args->boot_device;
disable_kvm_pv_eoi(); disable_kvm_pv_eoi();
enable_compat_apic_id_mode();
pc_init1(get_system_memory(), pc_init1(get_system_memory(),
get_system_io(), get_system_io(),
ram_size, boot_device, ram_size, boot_device,
@ -268,6 +275,7 @@ static void pc_init_isa(QEMUMachineInitArgs *args)
if (cpu_model == NULL) if (cpu_model == NULL)
cpu_model = "486"; cpu_model = "486";
disable_kvm_pv_eoi(); disable_kvm_pv_eoi();
enable_compat_apic_id_mode();
pc_init1(get_system_memory(), pc_init1(get_system_memory(),
get_system_io(), get_system_io(),
ram_size, boot_device, ram_size, boot_device,
@ -306,7 +314,7 @@ static QEMUMachine pc_i440fx_machine_v1_4 = {
static QEMUMachine pc_machine_v1_3 = { static QEMUMachine pc_machine_v1_3 = {
.name = "pc-1.3", .name = "pc-1.3",
.desc = "Standard PC", .desc = "Standard PC",
.init = pc_init_pci, .init = pc_init_pci_1_3,
.max_cpus = 255, .max_cpus = 255,
.compat_props = (GlobalProperty[]) { .compat_props = (GlobalProperty[]) {
PC_COMPAT_1_3, PC_COMPAT_1_3,

View File

@ -23,6 +23,8 @@
#include "cpu.h" #include "cpu.h"
#include "sysemu/kvm.h" #include "sysemu/kvm.h"
#include "sysemu/cpus.h"
#include "topology.h"
#include "qemu/option.h" #include "qemu/option.h"
#include "qemu/config-file.h" #include "qemu/config-file.h"
@ -2194,6 +2196,14 @@ void x86_cpu_realize(Object *obj, Error **errp)
cpu_reset(CPU(cpu)); cpu_reset(CPU(cpu));
} }
/* Enables contiguous-apic-ID mode, for compatibility */
static bool compat_apic_id_mode;
void enable_compat_apic_id_mode(void)
{
compat_apic_id_mode = true;
}
/* Calculates initial APIC ID for a specific CPU index /* Calculates initial APIC ID for a specific CPU index
* *
* Currently we need to be able to calculate the APIC ID from the CPU index * Currently we need to be able to calculate the APIC ID from the CPU index
@ -2203,10 +2213,20 @@ void x86_cpu_realize(Object *obj, Error **errp)
*/ */
uint32_t x86_cpu_apic_id_from_index(unsigned int cpu_index) uint32_t x86_cpu_apic_id_from_index(unsigned int cpu_index)
{ {
/* right now APIC ID == CPU index. this will eventually change to use uint32_t correct_id;
* the CPU topology configuration properly static bool warned;
*/
return cpu_index; correct_id = x86_apicid_from_cpu_idx(smp_cores, smp_threads, cpu_index);
if (compat_apic_id_mode) {
if (cpu_index != correct_id && !warned) {
error_report("APIC IDs set in compatibility mode, "
"CPU topology won't match the configuration");
warned = true;
}
return cpu_index;
} else {
return correct_id;
}
} }
static void x86_cpu_initfn(Object *obj) static void x86_cpu_initfn(Object *obj)

View File

@ -1256,5 +1256,6 @@ void disable_kvm_pv_eoi(void);
const char *get_register_name_32(unsigned int reg); const char *get_register_name_32(unsigned int reg);
uint32_t x86_cpu_apic_id_from_index(unsigned int cpu_index); uint32_t x86_cpu_apic_id_from_index(unsigned int cpu_index);
void enable_compat_apic_id_mode(void);
#endif /* CPU_I386_H */ #endif /* CPU_I386_H */