2012-04-02 23:20:08 +02:00
|
|
|
/*
|
|
|
|
* QEMU x86 CPU
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 SUSE LINUX Products GmbH
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see
|
|
|
|
* <http://www.gnu.org/licenses/lgpl-2.1.html>
|
|
|
|
*/
|
|
|
|
#ifndef QEMU_I386_CPU_QOM_H
|
|
|
|
#define QEMU_I386_CPU_QOM_H
|
|
|
|
|
2012-12-17 18:19:50 +01:00
|
|
|
#include "qom/cpu.h"
|
2015-03-31 14:12:25 +02:00
|
|
|
#include "qemu/notify.h"
|
2012-04-02 23:20:08 +02:00
|
|
|
|
|
|
|
#ifdef TARGET_X86_64
|
|
|
|
#define TYPE_X86_CPU "x86_64-cpu"
|
|
|
|
#else
|
|
|
|
#define TYPE_X86_CPU "i386-cpu"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define X86_CPU_CLASS(klass) \
|
|
|
|
OBJECT_CLASS_CHECK(X86CPUClass, (klass), TYPE_X86_CPU)
|
|
|
|
#define X86_CPU(obj) \
|
|
|
|
OBJECT_CHECK(X86CPU, (obj), TYPE_X86_CPU)
|
|
|
|
#define X86_CPU_GET_CLASS(obj) \
|
|
|
|
OBJECT_GET_CLASS(X86CPUClass, (obj), TYPE_X86_CPU)
|
|
|
|
|
2014-02-10 11:21:30 +01:00
|
|
|
/**
|
|
|
|
* X86CPUDefinition:
|
|
|
|
*
|
|
|
|
* CPU model definition data that was not converted to QOM per-subclass
|
|
|
|
* property defaults yet.
|
|
|
|
*/
|
|
|
|
typedef struct X86CPUDefinition X86CPUDefinition;
|
|
|
|
|
2012-04-02 23:20:08 +02:00
|
|
|
/**
|
|
|
|
* X86CPUClass:
|
2014-02-10 11:21:30 +01:00
|
|
|
* @cpu_def: CPU model definition
|
|
|
|
* @kvm_required: Whether CPU model requires KVM to be enabled.
|
2017-01-19 22:04:45 +01:00
|
|
|
* @ordering: Ordering on the "-cpu help" CPU model list.
|
2017-01-16 19:12:12 +01:00
|
|
|
* @migration_safe: See CpuDefinitionInfo::migration_safe
|
i386: Define static "base" CPU model
The query-cpu-model-expand QMP command needs at least one static
model, to allow the "static" expansion mode to be implemented.
Instead of defining static versions of every CPU model, define a
"base" CPU model that has absolutely no feature flag enabled.
Despite having no CPUID data set at all, "-cpu base" is even a
functional CPU:
* It can boot a Slackware Linux 1.01 image with a Linux 0.99.12
kernel[1].
* It is even possible to boot[2] a modern Fedora x86_64 guest by
manually enabling the following CPU features:
-cpu base,+lm,+msr,+pae,+fpu,+cx8,+cmov,+sse,+sse2,+fxsr
[1] http://www.qemu-advent-calendar.org/2014/#day-1
[2] This is what can be seen in the guest:
[root@localhost ~]# cat /proc/cpuinfo
processor : 0
vendor_id : unknown
cpu family : 0
model : 0
model name : 00/00
stepping : 0
physical id : 0
siblings : 1
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 1
wp : yes
flags : fpu msr pae cx8 cmov fxsr sse sse2 lm nopl
bugs :
bogomips : 5832.70
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
[root@localhost ~]# x86info -v -a
x86info v1.30. Dave Jones 2001-2011
Feedback to <davej@redhat.com>.
No TSC, MHz calculation cannot be performed.
Unknown vendor (0)
MP Table:
Family: 0 Model: 0 Stepping: 0
CPU Model (x86info's best guess):
eax in: 0x00000000, eax = 00000001 ebx = 00000000 ecx = 00000000 edx = 00000000
eax in: 0x00000001, eax = 00000000 ebx = 00000800 ecx = 00000000 edx = 07008161
eax in: 0x80000000, eax = 80000001 ebx = 00000000 ecx = 00000000 edx = 00000000
eax in: 0x80000001, eax = 00000000 ebx = 00000000 ecx = 00000000 edx = 20000000
Feature flags:
fpu Onboard FPU
msr Model-Specific Registers
pae Physical Address Extensions
cx8 CMPXCHG8 instruction
cmov CMOV instruction
fxsr FXSAVE and FXRSTOR instructions
sse SSE support
sse2 SSE2 support
Long NOPs supported: yes
Address sizes : 0 bits physical, 0 bits virtual
0MHz processor (estimate).
running at an estimated 0MHz
[root@localhost ~]#
Message-Id: <20170222190029.17243-2-ehabkost@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Tested-by: Jiri Denemark <jdenemar@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
2017-02-22 20:00:27 +01:00
|
|
|
* @static_model: See CpuDefinitionInfo::static
|
2013-01-16 03:41:47 +01:00
|
|
|
* @parent_realize: The parent class' realize handler.
|
2012-04-02 23:20:08 +02:00
|
|
|
* @parent_reset: The parent class' reset handler.
|
|
|
|
*
|
|
|
|
* An x86 CPU model or family.
|
|
|
|
*/
|
|
|
|
typedef struct X86CPUClass {
|
|
|
|
/*< private >*/
|
|
|
|
CPUClass parent_class;
|
|
|
|
/*< public >*/
|
|
|
|
|
2017-02-22 19:39:19 +01:00
|
|
|
/* CPU definition, automatically loaded by instance_init if not NULL.
|
|
|
|
* Should be eventually replaced by subclass-specific property defaults.
|
|
|
|
*/
|
2014-02-10 11:21:30 +01:00
|
|
|
X86CPUDefinition *cpu_def;
|
|
|
|
|
|
|
|
bool kvm_required;
|
2017-01-19 22:04:45 +01:00
|
|
|
int ordering;
|
2017-01-16 19:12:12 +01:00
|
|
|
bool migration_safe;
|
i386: Define static "base" CPU model
The query-cpu-model-expand QMP command needs at least one static
model, to allow the "static" expansion mode to be implemented.
Instead of defining static versions of every CPU model, define a
"base" CPU model that has absolutely no feature flag enabled.
Despite having no CPUID data set at all, "-cpu base" is even a
functional CPU:
* It can boot a Slackware Linux 1.01 image with a Linux 0.99.12
kernel[1].
* It is even possible to boot[2] a modern Fedora x86_64 guest by
manually enabling the following CPU features:
-cpu base,+lm,+msr,+pae,+fpu,+cx8,+cmov,+sse,+sse2,+fxsr
[1] http://www.qemu-advent-calendar.org/2014/#day-1
[2] This is what can be seen in the guest:
[root@localhost ~]# cat /proc/cpuinfo
processor : 0
vendor_id : unknown
cpu family : 0
model : 0
model name : 00/00
stepping : 0
physical id : 0
siblings : 1
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 1
wp : yes
flags : fpu msr pae cx8 cmov fxsr sse sse2 lm nopl
bugs :
bogomips : 5832.70
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
[root@localhost ~]# x86info -v -a
x86info v1.30. Dave Jones 2001-2011
Feedback to <davej@redhat.com>.
No TSC, MHz calculation cannot be performed.
Unknown vendor (0)
MP Table:
Family: 0 Model: 0 Stepping: 0
CPU Model (x86info's best guess):
eax in: 0x00000000, eax = 00000001 ebx = 00000000 ecx = 00000000 edx = 00000000
eax in: 0x00000001, eax = 00000000 ebx = 00000800 ecx = 00000000 edx = 07008161
eax in: 0x80000000, eax = 80000001 ebx = 00000000 ecx = 00000000 edx = 00000000
eax in: 0x80000001, eax = 00000000 ebx = 00000000 ecx = 00000000 edx = 20000000
Feature flags:
fpu Onboard FPU
msr Model-Specific Registers
pae Physical Address Extensions
cx8 CMPXCHG8 instruction
cmov CMOV instruction
fxsr FXSAVE and FXRSTOR instructions
sse SSE support
sse2 SSE2 support
Long NOPs supported: yes
Address sizes : 0 bits physical, 0 bits virtual
0MHz processor (estimate).
running at an estimated 0MHz
[root@localhost ~]#
Message-Id: <20170222190029.17243-2-ehabkost@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Tested-by: Jiri Denemark <jdenemar@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
2017-02-22 20:00:27 +01:00
|
|
|
bool static_model;
|
2014-02-10 11:21:30 +01:00
|
|
|
|
2016-09-30 20:49:36 +02:00
|
|
|
/* Optional description of CPU model.
|
|
|
|
* If unavailable, cpu_def->model_id is used */
|
|
|
|
const char *model_description;
|
|
|
|
|
2013-01-16 03:41:47 +01:00
|
|
|
DeviceRealize parent_realize;
|
2016-10-20 13:26:04 +02:00
|
|
|
DeviceUnrealize parent_unrealize;
|
2012-04-02 23:20:08 +02:00
|
|
|
void (*parent_reset)(CPUState *cpu);
|
|
|
|
} X86CPUClass;
|
|
|
|
|
2016-03-15 13:49:25 +01:00
|
|
|
typedef struct X86CPU X86CPU;
|
2014-09-13 18:45:14 +02:00
|
|
|
|
2012-04-02 23:20:08 +02:00
|
|
|
#endif
|