提交 67e30c83 编写于 作者: A Andreas Färber

target-i386: Add property getter for CPU model

Signed-off-by: NAndreas Färber <afaerber@suse.de>
Reviewed-by: NIgor Mammedov <imammedo@redhat.com>
Reviewed-by: NMichael Roth <mdroth@linux.vnet.ibm.com>
上级 95b8519d
...@@ -640,6 +640,18 @@ static void x86_cpuid_version_set_family(Object *obj, Visitor *v, void *opaque, ...@@ -640,6 +640,18 @@ static void x86_cpuid_version_set_family(Object *obj, Visitor *v, void *opaque,
} }
} }
static void x86_cpuid_version_get_model(Object *obj, Visitor *v, void *opaque,
const char *name, Error **errp)
{
X86CPU *cpu = X86_CPU(obj);
CPUX86State *env = &cpu->env;
int64_t value;
value = (env->cpuid_version >> 4) & 0xf;
value |= ((env->cpuid_version >> 16) & 0xf) << 4;
visit_type_int(v, &value, name, errp);
}
static void x86_cpuid_version_set_model(Object *obj, Visitor *v, void *opaque, static void x86_cpuid_version_set_model(Object *obj, Visitor *v, void *opaque,
const char *name, Error **errp) const char *name, Error **errp)
{ {
...@@ -1555,7 +1567,7 @@ static void x86_cpu_initfn(Object *obj) ...@@ -1555,7 +1567,7 @@ static void x86_cpu_initfn(Object *obj)
x86_cpuid_version_get_family, x86_cpuid_version_get_family,
x86_cpuid_version_set_family, NULL, NULL, NULL); x86_cpuid_version_set_family, NULL, NULL, NULL);
object_property_add(obj, "model", "int", object_property_add(obj, "model", "int",
NULL, x86_cpuid_version_get_model,
x86_cpuid_version_set_model, NULL, NULL, NULL); x86_cpuid_version_set_model, NULL, NULL, NULL);
object_property_add(obj, "stepping", "int", object_property_add(obj, "stepping", "int",
NULL, NULL,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册