mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
target-i386: Convert kvm_default_*features to property/value pairs
Convert the kvm_default_features and kvm_default_unset_features arrays into a simple list of property/value pairs that will be applied to X86CPU objects when using KVM. Acked-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
a32ef3bfc1
commit
5114e84222
4 changed files with 65 additions and 45 deletions
|
@ -478,38 +478,6 @@ const char *get_register_name_32(unsigned int reg)
|
|||
return x86_reg_info_32[reg].name;
|
||||
}
|
||||
|
||||
/* KVM-specific features that are automatically added to all CPU models
|
||||
* when KVM is enabled.
|
||||
*/
|
||||
static uint32_t kvm_default_features[FEATURE_WORDS] = {
|
||||
[FEAT_KVM] = (1 << KVM_FEATURE_CLOCKSOURCE) |
|
||||
(1 << KVM_FEATURE_NOP_IO_DELAY) |
|
||||
(1 << KVM_FEATURE_CLOCKSOURCE2) |
|
||||
(1 << KVM_FEATURE_ASYNC_PF) |
|
||||
(1 << KVM_FEATURE_STEAL_TIME) |
|
||||
(1 << KVM_FEATURE_PV_EOI) |
|
||||
(1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT),
|
||||
[FEAT_1_ECX] = CPUID_EXT_X2APIC,
|
||||
};
|
||||
|
||||
/* Features that are not added by default to any CPU model when KVM is enabled.
|
||||
*/
|
||||
static uint32_t kvm_default_unset_features[FEATURE_WORDS] = {
|
||||
[FEAT_1_EDX] = CPUID_ACPI,
|
||||
[FEAT_1_ECX] = CPUID_EXT_MONITOR,
|
||||
[FEAT_8000_0001_ECX] = CPUID_EXT3_SVM,
|
||||
};
|
||||
|
||||
void x86_cpu_compat_kvm_no_autoenable(FeatureWord w, uint32_t features)
|
||||
{
|
||||
kvm_default_features[w] &= ~features;
|
||||
}
|
||||
|
||||
void x86_cpu_compat_kvm_no_autodisable(FeatureWord w, uint32_t features)
|
||||
{
|
||||
kvm_default_unset_features[w] &= ~features;
|
||||
}
|
||||
|
||||
/*
|
||||
* Returns the set of feature flags that are supported and migratable by
|
||||
* QEMU, for a given FeatureWord.
|
||||
|
@ -1392,6 +1360,43 @@ static X86CPUDefinition builtin_x86_defs[] = {
|
|||
},
|
||||
};
|
||||
|
||||
typedef struct PropValue {
|
||||
const char *prop, *value;
|
||||
} PropValue;
|
||||
|
||||
/* KVM-specific features that are automatically added/removed
|
||||
* from all CPU models when KVM is enabled.
|
||||
*/
|
||||
static PropValue kvm_default_props[] = {
|
||||
{ "kvmclock", "on" },
|
||||
{ "kvm-nopiodelay", "on" },
|
||||
{ "kvm-asyncpf", "on" },
|
||||
{ "kvm-steal-time", "on" },
|
||||
{ "kvm-pv-eoi", "on" },
|
||||
{ "kvmclock-stable-bit", "on" },
|
||||
{ "x2apic", "on" },
|
||||
{ "acpi", "off" },
|
||||
{ "monitor", "off" },
|
||||
{ "svm", "off" },
|
||||
{ NULL, NULL },
|
||||
};
|
||||
|
||||
void x86_cpu_change_kvm_default(const char *prop, const char *value)
|
||||
{
|
||||
PropValue *pv;
|
||||
for (pv = kvm_default_props; pv->prop; pv++) {
|
||||
if (!strcmp(pv->prop, prop)) {
|
||||
pv->value = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* It is valid to call this function only for properties that
|
||||
* are already present in the kvm_default_props table.
|
||||
*/
|
||||
assert(pv->prop);
|
||||
}
|
||||
|
||||
static uint32_t x86_cpu_get_supported_feature_word(FeatureWord w,
|
||||
bool migratable_only);
|
||||
|
||||
|
@ -2061,6 +2066,18 @@ static int x86_cpu_filter_features(X86CPU *cpu)
|
|||
return rv;
|
||||
}
|
||||
|
||||
static void x86_cpu_apply_props(X86CPU *cpu, PropValue *props)
|
||||
{
|
||||
PropValue *pv;
|
||||
for (pv = props; pv->prop; pv++) {
|
||||
if (!pv->value) {
|
||||
continue;
|
||||
}
|
||||
object_property_parse(OBJECT(cpu), pv->value, pv->prop,
|
||||
&error_abort);
|
||||
}
|
||||
}
|
||||
|
||||
/* Load data from X86CPUDefinition
|
||||
*/
|
||||
static void x86_cpu_load_def(X86CPU *cpu, X86CPUDefinition *def, Error **errp)
|
||||
|
@ -2084,11 +2101,7 @@ static void x86_cpu_load_def(X86CPU *cpu, X86CPUDefinition *def, Error **errp)
|
|||
|
||||
/* Special cases not set in the X86CPUDefinition structs: */
|
||||
if (kvm_enabled()) {
|
||||
FeatureWord w;
|
||||
for (w = 0; w < FEATURE_WORDS; w++) {
|
||||
env->features[w] |= kvm_default_features[w];
|
||||
env->features[w] &= ~kvm_default_unset_features[w];
|
||||
}
|
||||
x86_cpu_apply_props(cpu, kvm_default_props);
|
||||
}
|
||||
|
||||
env->features[FEAT_1_ECX] |= CPUID_EXT_HYPERVISOR;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue