Skip to content

Commit

Permalink
target-i386: Add "model-id" property to X86CPU
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Färber <afaerber@suse.de>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
  • Loading branch information
afaerber committed Apr 24, 2012
1 parent 303e843 commit 4b406ad
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions target-i386/cpu.c
Expand Up @@ -673,8 +673,11 @@ static void x86_cpuid_version_set_stepping(Object *obj, Visitor *v,
env->cpuid_version |= value & 0xf;
}

static void x86_cpuid_set_model_id(CPUX86State *env, const char *model_id)
static void x86_cpuid_set_model_id(Object *obj, const char *model_id,
Error **errp)
{
X86CPU *cpu = X86_CPU(obj);
CPUX86State *env = &cpu->env;
int c, len, i;

if (model_id == NULL) {
Expand Down Expand Up @@ -1006,7 +1009,7 @@ int cpu_x86_register(X86CPU *cpu, const char *cpu_model)
env->cpuid_ext3_features &= TCG_EXT3_FEATURES;
env->cpuid_svm_features &= TCG_SVM_FEATURES;
}
x86_cpuid_set_model_id(env, def->model_id);
object_property_set_str(OBJECT(cpu), def->model_id, "model-id", &error);
if (error_is_set(&error)) {
error_free(error);
return -1;
Expand Down Expand Up @@ -1545,6 +1548,9 @@ static void x86_cpu_initfn(Object *obj)
object_property_add(obj, "stepping", "int",
NULL,
x86_cpuid_version_set_stepping, NULL, NULL, NULL);
object_property_add_str(obj, "model-id",
NULL,
x86_cpuid_set_model_id, NULL);

env->cpuid_apic_id = env->cpu_index;
mce_init(cpu);
Expand Down

0 comments on commit 4b406ad

Please sign in to comment.