diff options
author | Igor Mammedov <imammedo@redhat.com> | 2016-04-20 11:28:57 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-06-24 05:21:16 +0300 |
commit | ac35f13ba8f80533b21016ced01aa55891952251 (patch) | |
tree | 19e786a9fd727c601cab940122026f82dd561f3f /hw/isa | |
parent | 5e1b5d93887b52eede156f846b6c4c5c8bbcfcdb (diff) | |
download | qemu-ac35f13ba8f80533b21016ced01aa55891952251.zip qemu-ac35f13ba8f80533b21016ced01aa55891952251.tar.gz qemu-ac35f13ba8f80533b21016ced01aa55891952251.tar.bz2 |
pc: acpi: introduce AcpiDeviceIfClass.madt_cpu hook
Add madt_cpu callback to AcpiDeviceIfClass and use
it for generating LAPIC MADT entries for CPUs.
Later it will be used for generating x2APIC
entries in case of more than 255 CPUs and also
would be reused by ARM target when ACPI CPU hotplug
is introduced there.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/isa')
-rw-r--r-- | hw/isa/lpc_ich9.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/isa/lpc_ich9.c b/hw/isa/lpc_ich9.c index 213741b..c1a4f1b 100644 --- a/hw/isa/lpc_ich9.c +++ b/hw/isa/lpc_ich9.c @@ -714,6 +714,7 @@ static void ich9_lpc_class_init(ObjectClass *klass, void *data) hc->unplug = ich9_pm_device_unplug_cb; adevc->ospm_status = ich9_pm_ospm_status; adevc->send_event = ich9_send_gpe; + adevc->madt_cpu = pc_madt_cpu_entry; } static const TypeInfo ich9_lpc_info = { |