mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
x86: lpc9: let firmware negotiate 'CPU hotplug with SMI' features
It will allow firmware to notify QEMU that firmware requires SMI being triggered on CPU hot[un]plug, so that it would be able to account for hotplugged CPU and relocate it to new SMM base and/or safely remove CPU on unplug. Using negotiated features, follow up patches will insert SMI upcall into AML code, to make sure that firmware processes hotplug before guest OS would attempt to use new CPU. Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Tested-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20200923094650.1301166-2-imammedo@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
2d69eba5fe
commit
00dc02d284
3 changed files with 18 additions and 1 deletions
|
@ -97,7 +97,9 @@
|
|||
#include "trace.h"
|
||||
#include CONFIG_DEVICES
|
||||
|
||||
GlobalProperty pc_compat_5_1[] = {};
|
||||
GlobalProperty pc_compat_5_1[] = {
|
||||
{ "ICH9-LPC", "x-smi-cpu-hotplug", "off" },
|
||||
};
|
||||
const size_t pc_compat_5_1_len = G_N_ELEMENTS(pc_compat_5_1);
|
||||
|
||||
GlobalProperty pc_compat_5_0[] = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue