diff options
author | Eduardo Habkost | 2015-11-03 20:24:18 +0100 |
---|---|---|
committer | Eduardo Habkost | 2015-11-05 19:27:59 +0100 |
commit | 6aa91e4a0237ddcebb85e3a95e166f3b3cfa42ae (patch) | |
tree | 5e2797f1e7abd8fdb1b51c750d3eb2dfffae1c2e /include/hw/i386/pc.h | |
parent | target-i386: Remove ABM from qemu64 CPU model (diff) | |
download | qemu-6aa91e4a0237ddcebb85e3a95e166f3b3cfa42ae.tar.gz qemu-6aa91e4a0237ddcebb85e3a95e166f3b3cfa42ae.tar.xz qemu-6aa91e4a0237ddcebb85e3a95e166f3b3cfa42ae.zip |
target-i386: Remove POPCNT from qemu64 and qemu32 CPU models
POPCNT is not available on Penryn and older and on Opteron_G2 and older,
and we want to make the default CPU runnable in most hosts, so it won't
be enabled by default in KVM mode.
We should eventually have all features supported by TCG enabled by
default in TCG mode, but as we don't have a good mechanism today to
ensure we have different defaults in KVM and TCG mode, disable POPCNT in
the qemu64 and qemu32 CPU models entirely.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/hw/i386/pc.h')
-rw-r--r-- | include/hw/i386/pc.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 8b54863646..4bbc0ffc53 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -337,6 +337,16 @@ bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *); .driver = "qemu64" "-" TYPE_X86_CPU,\ .property = "abm",\ .value = "on",\ + },\ + {\ + .driver = "qemu64" "-" TYPE_X86_CPU,\ + .property = "popcnt",\ + .value = "on",\ + },\ + {\ + .driver = "qemu32" "-" TYPE_X86_CPU,\ + .property = "popcnt",\ + .value = "on",\ }, #define PC_COMPAT_2_3 \ |