mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-07 20:26:20 +00:00
target-i386: Add property getter for CPU stepping
Signed-off-by: Andreas Färber <afaerber@suse.de> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com>
This commit is contained in:
parent
67e30c8349
commit
35112e415a
@ -675,6 +675,18 @@ static void x86_cpuid_version_set_model(Object *obj, Visitor *v, void *opaque,
|
|||||||
env->cpuid_version |= ((value & 0xf) << 4) | ((value >> 4) << 16);
|
env->cpuid_version |= ((value & 0xf) << 4) | ((value >> 4) << 16);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void x86_cpuid_version_get_stepping(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 & 0xf;
|
||||||
|
visit_type_int(v, &value, name, errp);
|
||||||
|
}
|
||||||
|
|
||||||
static void x86_cpuid_version_set_stepping(Object *obj, Visitor *v,
|
static void x86_cpuid_version_set_stepping(Object *obj, Visitor *v,
|
||||||
void *opaque, const char *name,
|
void *opaque, const char *name,
|
||||||
Error **errp)
|
Error **errp)
|
||||||
@ -1570,7 +1582,7 @@ static void x86_cpu_initfn(Object *obj)
|
|||||||
x86_cpuid_version_get_model,
|
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,
|
x86_cpuid_version_get_stepping,
|
||||||
x86_cpuid_version_set_stepping, NULL, NULL, NULL);
|
x86_cpuid_version_set_stepping, NULL, NULL, NULL);
|
||||||
object_property_add_str(obj, "model-id",
|
object_property_add_str(obj, "model-id",
|
||||||
NULL,
|
NULL,
|
||||||
|
Loading…
Reference in New Issue
Block a user