mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-17 15:12:07 -06:00
target: Move ArchCPUClass definition to 'cpu.h'
The OBJECT_DECLARE_CPU_TYPE() macro forward-declares each ArchCPUClass type. These forward declarations are sufficient for code in hw/ to use the QOM definitions. No need to expose these structure definitions. Keep each local to their target/ by moving them to the corresponding "cpu.h" header. Suggested-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20231013140116.255-13-philmd@linaro.org>
This commit is contained in:
parent
c61b18a5d0
commit
9348028e7e
37 changed files with 287 additions and 335 deletions
|
@ -21,7 +21,6 @@
|
||||||
#define QEMU_ALPHA_CPU_QOM_H
|
#define QEMU_ALPHA_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_ALPHA_CPU "alpha-cpu"
|
#define TYPE_ALPHA_CPU "alpha-cpu"
|
||||||
|
|
||||||
|
@ -30,19 +29,4 @@ OBJECT_DECLARE_CPU_TYPE(AlphaCPU, AlphaCPUClass, ALPHA_CPU)
|
||||||
#define ALPHA_CPU_TYPE_SUFFIX "-" TYPE_ALPHA_CPU
|
#define ALPHA_CPU_TYPE_SUFFIX "-" TYPE_ALPHA_CPU
|
||||||
#define ALPHA_CPU_TYPE_NAME(model) model ALPHA_CPU_TYPE_SUFFIX
|
#define ALPHA_CPU_TYPE_NAME(model) model ALPHA_CPU_TYPE_SUFFIX
|
||||||
|
|
||||||
/**
|
|
||||||
* AlphaCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_reset: The parent class' reset handler.
|
|
||||||
*
|
|
||||||
* An Alpha CPU model.
|
|
||||||
*/
|
|
||||||
struct AlphaCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
DeviceReset parent_reset;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -267,6 +267,19 @@ struct ArchCPU {
|
||||||
QEMUTimer *alarm_timer;
|
QEMUTimer *alarm_timer;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AlphaCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_reset: The parent class' reset handler.
|
||||||
|
*
|
||||||
|
* An Alpha CPU model.
|
||||||
|
*/
|
||||||
|
struct AlphaCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
DeviceReset parent_reset;
|
||||||
|
};
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
extern const VMStateDescription vmstate_alpha_cpu;
|
extern const VMStateDescription vmstate_alpha_cpu;
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#define QEMU_ARM_CPU_QOM_H
|
#define QEMU_ARM_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_ARM_CPU "arm-cpu"
|
#define TYPE_ARM_CPU "arm-cpu"
|
||||||
|
|
||||||
|
@ -29,35 +28,9 @@ OBJECT_DECLARE_CPU_TYPE(ARMCPU, ARMCPUClass, ARM_CPU)
|
||||||
|
|
||||||
#define TYPE_ARM_MAX_CPU "max-" TYPE_ARM_CPU
|
#define TYPE_ARM_MAX_CPU "max-" TYPE_ARM_CPU
|
||||||
|
|
||||||
typedef struct ARMCPUInfo {
|
|
||||||
const char *name;
|
|
||||||
void (*initfn)(Object *obj);
|
|
||||||
void (*class_init)(ObjectClass *oc, void *data);
|
|
||||||
} ARMCPUInfo;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* ARMCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
*
|
|
||||||
* An ARM CPU model.
|
|
||||||
*/
|
|
||||||
struct ARMCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
const ARMCPUInfo *info;
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#define TYPE_AARCH64_CPU "aarch64-cpu"
|
#define TYPE_AARCH64_CPU "aarch64-cpu"
|
||||||
typedef struct AArch64CPUClass AArch64CPUClass;
|
typedef struct AArch64CPUClass AArch64CPUClass;
|
||||||
DECLARE_CLASS_CHECKERS(AArch64CPUClass, AARCH64_CPU,
|
DECLARE_CLASS_CHECKERS(AArch64CPUClass, AARCH64_CPU,
|
||||||
TYPE_AARCH64_CPU)
|
TYPE_AARCH64_CPU)
|
||||||
|
|
||||||
struct AArch64CPUClass {
|
|
||||||
ARMCPUClass parent_class;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1116,6 +1116,31 @@ struct ArchCPU {
|
||||||
uint64_t gt_cntfrq_hz;
|
uint64_t gt_cntfrq_hz;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef struct ARMCPUInfo {
|
||||||
|
const char *name;
|
||||||
|
void (*initfn)(Object *obj);
|
||||||
|
void (*class_init)(ObjectClass *oc, void *data);
|
||||||
|
} ARMCPUInfo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ARMCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
*
|
||||||
|
* An ARM CPU model.
|
||||||
|
*/
|
||||||
|
struct ARMCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
const ARMCPUInfo *info;
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct AArch64CPUClass {
|
||||||
|
ARMCPUClass parent_class;
|
||||||
|
};
|
||||||
|
|
||||||
/* Callback functions for the generic timer's timers. */
|
/* Callback functions for the generic timer's timers. */
|
||||||
void arm_gt_ptimer_cb(void *opaque);
|
void arm_gt_ptimer_cb(void *opaque);
|
||||||
void arm_gt_vtimer_cb(void *opaque);
|
void arm_gt_vtimer_cb(void *opaque);
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
#define TARGET_AVR_CPU_QOM_H
|
#define TARGET_AVR_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_AVR_CPU "avr-cpu"
|
#define TYPE_AVR_CPU "avr-cpu"
|
||||||
|
|
||||||
|
@ -31,19 +30,4 @@ OBJECT_DECLARE_CPU_TYPE(AVRCPU, AVRCPUClass, AVR_CPU)
|
||||||
#define AVR_CPU_TYPE_SUFFIX "-" TYPE_AVR_CPU
|
#define AVR_CPU_TYPE_SUFFIX "-" TYPE_AVR_CPU
|
||||||
#define AVR_CPU_TYPE_NAME(name) (name AVR_CPU_TYPE_SUFFIX)
|
#define AVR_CPU_TYPE_NAME(name) (name AVR_CPU_TYPE_SUFFIX)
|
||||||
|
|
||||||
/**
|
|
||||||
* AVRCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
*
|
|
||||||
* A AVR CPU model.
|
|
||||||
*/
|
|
||||||
struct AVRCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* TARGET_AVR_CPU_QOM_H */
|
#endif /* TARGET_AVR_CPU_QOM_H */
|
||||||
|
|
|
@ -147,6 +147,20 @@ struct ArchCPU {
|
||||||
CPUAVRState env;
|
CPUAVRState env;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AVRCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
*
|
||||||
|
* A AVR CPU model.
|
||||||
|
*/
|
||||||
|
struct AVRCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
};
|
||||||
|
|
||||||
extern const struct VMStateDescription vms_avr_cpu;
|
extern const struct VMStateDescription vms_avr_cpu;
|
||||||
|
|
||||||
void avr_cpu_do_interrupt(CPUState *cpu);
|
void avr_cpu_do_interrupt(CPUState *cpu);
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#define QEMU_CRIS_CPU_QOM_H
|
#define QEMU_CRIS_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_CRIS_CPU "cris-cpu"
|
#define TYPE_CRIS_CPU "cris-cpu"
|
||||||
|
|
||||||
|
@ -30,22 +29,4 @@ OBJECT_DECLARE_CPU_TYPE(CRISCPU, CRISCPUClass, CRIS_CPU)
|
||||||
#define CRIS_CPU_TYPE_SUFFIX "-" TYPE_CRIS_CPU
|
#define CRIS_CPU_TYPE_SUFFIX "-" TYPE_CRIS_CPU
|
||||||
#define CRIS_CPU_TYPE_NAME(name) (name CRIS_CPU_TYPE_SUFFIX)
|
#define CRIS_CPU_TYPE_NAME(name) (name CRIS_CPU_TYPE_SUFFIX)
|
||||||
|
|
||||||
/**
|
|
||||||
* CRISCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
* @vr: Version Register value.
|
|
||||||
*
|
|
||||||
* A CRIS CPU model.
|
|
||||||
*/
|
|
||||||
struct CRISCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
|
|
||||||
uint32_t vr;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -179,6 +179,22 @@ struct ArchCPU {
|
||||||
CPUCRISState env;
|
CPUCRISState env;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CRISCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
* @vr: Version Register value.
|
||||||
|
*
|
||||||
|
* A CRIS CPU model.
|
||||||
|
*/
|
||||||
|
struct CRISCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
|
||||||
|
uint32_t vr;
|
||||||
|
};
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
extern const VMStateDescription vmstate_cris_cpu;
|
extern const VMStateDescription vmstate_cris_cpu;
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
#define QEMU_HEXAGON_CPU_QOM_H
|
#define QEMU_HEXAGON_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_HEXAGON_CPU "hexagon-cpu"
|
#define TYPE_HEXAGON_CPU "hexagon-cpu"
|
||||||
|
|
||||||
|
|
|
@ -21,26 +21,10 @@
|
||||||
#define QEMU_HPPA_CPU_QOM_H
|
#define QEMU_HPPA_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_HPPA_CPU "hppa-cpu"
|
#define TYPE_HPPA_CPU "hppa-cpu"
|
||||||
#define TYPE_HPPA64_CPU "hppa64-cpu"
|
#define TYPE_HPPA64_CPU "hppa64-cpu"
|
||||||
|
|
||||||
OBJECT_DECLARE_CPU_TYPE(HPPACPU, HPPACPUClass, HPPA_CPU)
|
OBJECT_DECLARE_CPU_TYPE(HPPACPU, HPPACPUClass, HPPA_CPU)
|
||||||
|
|
||||||
/**
|
|
||||||
* HPPACPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_reset: The parent class' reset handler.
|
|
||||||
*
|
|
||||||
* An HPPA CPU model.
|
|
||||||
*/
|
|
||||||
struct HPPACPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
DeviceReset parent_reset;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -253,6 +253,20 @@ struct ArchCPU {
|
||||||
QEMUTimer *alarm_timer;
|
QEMUTimer *alarm_timer;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HPPACPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_reset: The parent class' reset handler.
|
||||||
|
*
|
||||||
|
* An HPPA CPU model.
|
||||||
|
*/
|
||||||
|
struct HPPACPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
DeviceReset parent_reset;
|
||||||
|
};
|
||||||
|
|
||||||
#include "exec/cpu-all.h"
|
#include "exec/cpu-all.h"
|
||||||
|
|
||||||
static inline bool hppa_is_pa20(CPUHPPAState *env)
|
static inline bool hppa_is_pa20(CPUHPPAState *env)
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
#define QEMU_I386_CPU_QOM_H
|
#define QEMU_I386_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qemu/notify.h"
|
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#ifdef TARGET_X86_64
|
#ifdef TARGET_X86_64
|
||||||
#define TYPE_X86_CPU "x86_64-cpu"
|
#define TYPE_X86_CPU "x86_64-cpu"
|
||||||
|
@ -35,41 +33,4 @@ OBJECT_DECLARE_CPU_TYPE(X86CPU, X86CPUClass, X86_CPU)
|
||||||
#define X86_CPU_TYPE_SUFFIX "-" TYPE_X86_CPU
|
#define X86_CPU_TYPE_SUFFIX "-" TYPE_X86_CPU
|
||||||
#define X86_CPU_TYPE_NAME(name) (name X86_CPU_TYPE_SUFFIX)
|
#define X86_CPU_TYPE_NAME(name) (name X86_CPU_TYPE_SUFFIX)
|
||||||
|
|
||||||
typedef struct X86CPUModel X86CPUModel;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X86CPUClass:
|
|
||||||
* @cpu_def: CPU model definition
|
|
||||||
* @host_cpuid_required: Whether CPU model requires cpuid from host.
|
|
||||||
* @ordering: Ordering on the "-cpu help" CPU model list.
|
|
||||||
* @migration_safe: See CpuDefinitionInfo::migration_safe
|
|
||||||
* @static_model: See CpuDefinitionInfo::static
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
*
|
|
||||||
* An x86 CPU model or family.
|
|
||||||
*/
|
|
||||||
struct X86CPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
/* CPU definition, automatically loaded by instance_init if not NULL.
|
|
||||||
* Should be eventually replaced by subclass-specific property defaults.
|
|
||||||
*/
|
|
||||||
X86CPUModel *model;
|
|
||||||
|
|
||||||
bool host_cpuid_required;
|
|
||||||
int ordering;
|
|
||||||
bool migration_safe;
|
|
||||||
bool static_model;
|
|
||||||
|
|
||||||
/* Optional description of CPU model.
|
|
||||||
* If unavailable, cpu_def->model_id is used */
|
|
||||||
const char *model_description;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
DeviceUnrealize parent_unrealize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -2037,6 +2037,44 @@ struct ArchCPU {
|
||||||
bool xen_vapic;
|
bool xen_vapic;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef struct X86CPUModel X86CPUModel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* X86CPUClass:
|
||||||
|
* @cpu_def: CPU model definition
|
||||||
|
* @host_cpuid_required: Whether CPU model requires cpuid from host.
|
||||||
|
* @ordering: Ordering on the "-cpu help" CPU model list.
|
||||||
|
* @migration_safe: See CpuDefinitionInfo::migration_safe
|
||||||
|
* @static_model: See CpuDefinitionInfo::static
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
*
|
||||||
|
* An x86 CPU model or family.
|
||||||
|
*/
|
||||||
|
struct X86CPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* CPU definition, automatically loaded by instance_init if not NULL.
|
||||||
|
* Should be eventually replaced by subclass-specific property defaults.
|
||||||
|
*/
|
||||||
|
X86CPUModel *model;
|
||||||
|
|
||||||
|
bool host_cpuid_required;
|
||||||
|
int ordering;
|
||||||
|
bool migration_safe;
|
||||||
|
bool static_model;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Optional description of CPU model.
|
||||||
|
* If unavailable, cpu_def->model_id is used.
|
||||||
|
*/
|
||||||
|
const char *model_description;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
DeviceUnrealize parent_unrealize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
};
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
extern const VMStateDescription vmstate_x86_cpu;
|
extern const VMStateDescription vmstate_x86_cpu;
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#define LOONGARCH_CPU_QOM_H
|
#define LOONGARCH_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_LOONGARCH_CPU "loongarch-cpu"
|
#define TYPE_LOONGARCH_CPU "loongarch-cpu"
|
||||||
#define TYPE_LOONGARCH32_CPU "loongarch32-cpu"
|
#define TYPE_LOONGARCH32_CPU "loongarch32-cpu"
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#define QEMU_M68K_CPU_QOM_H
|
#define QEMU_M68K_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_M68K_CPU "m68k-cpu"
|
#define TYPE_M68K_CPU "m68k-cpu"
|
||||||
|
|
||||||
|
@ -30,19 +29,4 @@ OBJECT_DECLARE_CPU_TYPE(M68kCPU, M68kCPUClass, M68K_CPU)
|
||||||
#define M68K_CPU_TYPE_SUFFIX "-" TYPE_M68K_CPU
|
#define M68K_CPU_TYPE_SUFFIX "-" TYPE_M68K_CPU
|
||||||
#define M68K_CPU_TYPE_NAME(model) model M68K_CPU_TYPE_SUFFIX
|
#define M68K_CPU_TYPE_NAME(model) model M68K_CPU_TYPE_SUFFIX
|
||||||
|
|
||||||
/*
|
|
||||||
* M68kCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
*
|
|
||||||
* A Motorola 68k CPU model.
|
|
||||||
*/
|
|
||||||
struct M68kCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -169,6 +169,19 @@ struct ArchCPU {
|
||||||
CPUM68KState env;
|
CPUM68KState env;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* M68kCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
*
|
||||||
|
* A Motorola 68k CPU model.
|
||||||
|
*/
|
||||||
|
struct M68kCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
};
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
void m68k_cpu_do_interrupt(CPUState *cpu);
|
void m68k_cpu_do_interrupt(CPUState *cpu);
|
||||||
|
|
|
@ -21,25 +21,9 @@
|
||||||
#define QEMU_MICROBLAZE_CPU_QOM_H
|
#define QEMU_MICROBLAZE_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_MICROBLAZE_CPU "microblaze-cpu"
|
#define TYPE_MICROBLAZE_CPU "microblaze-cpu"
|
||||||
|
|
||||||
OBJECT_DECLARE_CPU_TYPE(MicroBlazeCPU, MicroBlazeCPUClass, MICROBLAZE_CPU)
|
OBJECT_DECLARE_CPU_TYPE(MicroBlazeCPU, MicroBlazeCPUClass, MICROBLAZE_CPU)
|
||||||
|
|
||||||
/**
|
|
||||||
* MicroBlazeCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
*
|
|
||||||
* A MicroBlaze CPU model.
|
|
||||||
*/
|
|
||||||
struct MicroBlazeCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -355,6 +355,19 @@ struct ArchCPU {
|
||||||
MicroBlazeCPUConfig cfg;
|
MicroBlazeCPUConfig cfg;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MicroBlazeCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
*
|
||||||
|
* A MicroBlaze CPU model.
|
||||||
|
*/
|
||||||
|
struct MicroBlazeCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
};
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
void mb_cpu_do_interrupt(CPUState *cs);
|
void mb_cpu_do_interrupt(CPUState *cs);
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#define QEMU_MIPS_CPU_QOM_H
|
#define QEMU_MIPS_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#ifdef TARGET_MIPS64
|
#ifdef TARGET_MIPS64
|
||||||
#define TYPE_MIPS_CPU "mips64-cpu"
|
#define TYPE_MIPS_CPU "mips64-cpu"
|
||||||
|
@ -34,23 +33,4 @@ OBJECT_DECLARE_CPU_TYPE(MIPSCPU, MIPSCPUClass, MIPS_CPU)
|
||||||
#define MIPS_CPU_TYPE_SUFFIX "-" TYPE_MIPS_CPU
|
#define MIPS_CPU_TYPE_SUFFIX "-" TYPE_MIPS_CPU
|
||||||
#define MIPS_CPU_TYPE_NAME(model) model MIPS_CPU_TYPE_SUFFIX
|
#define MIPS_CPU_TYPE_NAME(model) model MIPS_CPU_TYPE_SUFFIX
|
||||||
|
|
||||||
/**
|
|
||||||
* MIPSCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
*
|
|
||||||
* A MIPS CPU model.
|
|
||||||
*/
|
|
||||||
struct MIPSCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
const struct mips_def_t *cpu_def;
|
|
||||||
|
|
||||||
/* Used for the jazz board to modify mips_cpu_do_transaction_failed. */
|
|
||||||
bool no_data_aborts;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1217,6 +1217,23 @@ struct ArchCPU {
|
||||||
Clock *count_div; /* Divider for CP0_Count clock */
|
Clock *count_div; /* Divider for CP0_Count clock */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MIPSCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
*
|
||||||
|
* A MIPS CPU model.
|
||||||
|
*/
|
||||||
|
struct MIPSCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
const struct mips_def_t *cpu_def;
|
||||||
|
|
||||||
|
/* Used for the jazz board to modify mips_cpu_do_transaction_failed. */
|
||||||
|
bool no_data_aborts;
|
||||||
|
};
|
||||||
|
|
||||||
void mips_cpu_list(void);
|
void mips_cpu_list(void);
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
#define QEMU_NIOS2_CPU_QOM_H
|
#define QEMU_NIOS2_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_NIOS2_CPU "nios2-cpu"
|
#define TYPE_NIOS2_CPU "nios2-cpu"
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
#define QEMU_OPENRISC_CPU_QOM_H
|
#define QEMU_OPENRISC_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_OPENRISC_CPU "or1k-cpu"
|
#define TYPE_OPENRISC_CPU "or1k-cpu"
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
#define RISCV_CPU_QOM_H
|
#define RISCV_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_RISCV_CPU "riscv-cpu"
|
#define TYPE_RISCV_CPU "riscv-cpu"
|
||||||
#define TYPE_RISCV_DYNAMIC_CPU "riscv-dynamic-cpu"
|
#define TYPE_RISCV_DYNAMIC_CPU "riscv-dynamic-cpu"
|
||||||
|
@ -44,21 +43,6 @@
|
||||||
#define TYPE_RISCV_CPU_VEYRON_V1 RISCV_CPU_TYPE_NAME("veyron-v1")
|
#define TYPE_RISCV_CPU_VEYRON_V1 RISCV_CPU_TYPE_NAME("veyron-v1")
|
||||||
#define TYPE_RISCV_CPU_HOST RISCV_CPU_TYPE_NAME("host")
|
#define TYPE_RISCV_CPU_HOST RISCV_CPU_TYPE_NAME("host")
|
||||||
|
|
||||||
typedef struct CPUArchState CPURISCVState;
|
|
||||||
|
|
||||||
OBJECT_DECLARE_CPU_TYPE(RISCVCPU, RISCVCPUClass, RISCV_CPU)
|
OBJECT_DECLARE_CPU_TYPE(RISCVCPU, RISCVCPUClass, RISCV_CPU)
|
||||||
|
|
||||||
/**
|
|
||||||
* RISCVCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
*
|
|
||||||
* A RISCV CPU model.
|
|
||||||
*/
|
|
||||||
struct RISCVCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
};
|
|
||||||
#endif /* RISCV_CPU_QOM_H */
|
#endif /* RISCV_CPU_QOM_H */
|
||||||
|
|
|
@ -32,6 +32,8 @@
|
||||||
#include "qapi/qapi-types-common.h"
|
#include "qapi/qapi-types-common.h"
|
||||||
#include "cpu-qom.h"
|
#include "cpu-qom.h"
|
||||||
|
|
||||||
|
typedef struct CPUArchState CPURISCVState;
|
||||||
|
|
||||||
#define CPU_RESOLVING_TYPE TYPE_RISCV_CPU
|
#define CPU_RESOLVING_TYPE TYPE_RISCV_CPU
|
||||||
|
|
||||||
#if defined(TARGET_RISCV32)
|
#if defined(TARGET_RISCV32)
|
||||||
|
@ -436,6 +438,20 @@ struct ArchCPU {
|
||||||
GHashTable *pmu_event_ctr_map;
|
GHashTable *pmu_event_ctr_map;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* RISCVCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
*
|
||||||
|
* A RISCV CPU model.
|
||||||
|
*/
|
||||||
|
struct RISCVCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
};
|
||||||
|
|
||||||
static inline int riscv_has_ext(CPURISCVState *env, target_ulong ext)
|
static inline int riscv_has_ext(CPURISCVState *env, target_ulong ext)
|
||||||
{
|
{
|
||||||
return (env->misa_ext & ext) != 0;
|
return (env->misa_ext & ext) != 0;
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
#define RX_CPU_QOM_H
|
#define RX_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_RX_CPU "rx-cpu"
|
#define TYPE_RX_CPU "rx-cpu"
|
||||||
|
|
||||||
|
@ -31,18 +30,4 @@ OBJECT_DECLARE_CPU_TYPE(RXCPU, RXCPUClass, RX_CPU)
|
||||||
#define RX_CPU_TYPE_SUFFIX "-" TYPE_RX_CPU
|
#define RX_CPU_TYPE_SUFFIX "-" TYPE_RX_CPU
|
||||||
#define RX_CPU_TYPE_NAME(model) model RX_CPU_TYPE_SUFFIX
|
#define RX_CPU_TYPE_NAME(model) model RX_CPU_TYPE_SUFFIX
|
||||||
|
|
||||||
/*
|
|
||||||
* RXCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
*
|
|
||||||
* A RX CPU model.
|
|
||||||
*/
|
|
||||||
struct RXCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -112,6 +112,20 @@ struct ArchCPU {
|
||||||
CPURXState env;
|
CPURXState env;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* RXCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
*
|
||||||
|
* A RX CPU model.
|
||||||
|
*/
|
||||||
|
struct RXCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
};
|
||||||
|
|
||||||
#define CPU_RESOLVING_TYPE TYPE_RX_CPU
|
#define CPU_RESOLVING_TYPE TYPE_RX_CPU
|
||||||
|
|
||||||
const char *rx_crname(uint8_t cr);
|
const char *rx_crname(uint8_t cr);
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#define QEMU_S390_CPU_QOM_H
|
#define QEMU_S390_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_S390_CPU "s390x-cpu"
|
#define TYPE_S390_CPU "s390x-cpu"
|
||||||
|
|
||||||
|
@ -30,38 +29,4 @@ OBJECT_DECLARE_CPU_TYPE(S390CPU, S390CPUClass, S390_CPU)
|
||||||
#define S390_CPU_TYPE_SUFFIX "-" TYPE_S390_CPU
|
#define S390_CPU_TYPE_SUFFIX "-" TYPE_S390_CPU
|
||||||
#define S390_CPU_TYPE_NAME(name) (name S390_CPU_TYPE_SUFFIX)
|
#define S390_CPU_TYPE_NAME(name) (name S390_CPU_TYPE_SUFFIX)
|
||||||
|
|
||||||
typedef struct S390CPUModel S390CPUModel;
|
|
||||||
typedef struct S390CPUDef S390CPUDef;
|
|
||||||
|
|
||||||
typedef enum cpu_reset_type {
|
|
||||||
S390_CPU_RESET_NORMAL,
|
|
||||||
S390_CPU_RESET_INITIAL,
|
|
||||||
S390_CPU_RESET_CLEAR,
|
|
||||||
} cpu_reset_type;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* S390CPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_reset: The parent class' reset handler.
|
|
||||||
* @load_normal: Performs a load normal.
|
|
||||||
* @cpu_reset: Performs a CPU reset.
|
|
||||||
* @initial_cpu_reset: Performs an initial CPU reset.
|
|
||||||
*
|
|
||||||
* An S/390 CPU model.
|
|
||||||
*/
|
|
||||||
struct S390CPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
const S390CPUDef *cpu_def;
|
|
||||||
bool kvm_required;
|
|
||||||
bool is_static;
|
|
||||||
bool is_migration_safe;
|
|
||||||
const char *desc;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
DeviceReset parent_reset;
|
|
||||||
void (*load_normal)(CPUState *cpu);
|
|
||||||
void (*reset)(CPUState *cpu, cpu_reset_type type);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -180,6 +180,36 @@ struct ArchCPU {
|
||||||
uint32_t irqstate_saved_size;
|
uint32_t irqstate_saved_size;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef enum cpu_reset_type {
|
||||||
|
S390_CPU_RESET_NORMAL,
|
||||||
|
S390_CPU_RESET_INITIAL,
|
||||||
|
S390_CPU_RESET_CLEAR,
|
||||||
|
} cpu_reset_type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* S390CPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_reset: The parent class' reset handler.
|
||||||
|
* @load_normal: Performs a load normal.
|
||||||
|
* @cpu_reset: Performs a CPU reset.
|
||||||
|
* @initial_cpu_reset: Performs an initial CPU reset.
|
||||||
|
*
|
||||||
|
* An S/390 CPU model.
|
||||||
|
*/
|
||||||
|
struct S390CPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
const S390CPUDef *cpu_def;
|
||||||
|
bool kvm_required;
|
||||||
|
bool is_static;
|
||||||
|
bool is_migration_safe;
|
||||||
|
const char *desc;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
DeviceReset parent_reset;
|
||||||
|
void (*load_normal)(CPUState *cpu);
|
||||||
|
void (*reset)(CPUState *cpu, cpu_reset_type type);
|
||||||
|
};
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
extern const VMStateDescription vmstate_s390_cpu;
|
extern const VMStateDescription vmstate_s390_cpu;
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
|
|
||||||
/* static CPU definition */
|
/* static CPU definition */
|
||||||
struct S390CPUDef {
|
typedef struct S390CPUDef {
|
||||||
const char *name; /* name exposed to the user */
|
const char *name; /* name exposed to the user */
|
||||||
const char *desc; /* description exposed to the user */
|
const char *desc; /* description exposed to the user */
|
||||||
uint8_t gen; /* hw generation identification */
|
uint8_t gen; /* hw generation identification */
|
||||||
|
@ -38,10 +38,10 @@ struct S390CPUDef {
|
||||||
S390FeatBitmap full_feat;
|
S390FeatBitmap full_feat;
|
||||||
/* used to init full_feat from generated data */
|
/* used to init full_feat from generated data */
|
||||||
S390FeatInit full_init;
|
S390FeatInit full_init;
|
||||||
};
|
} S390CPUDef;
|
||||||
|
|
||||||
/* CPU model based on a CPU definition */
|
/* CPU model based on a CPU definition */
|
||||||
struct S390CPUModel {
|
typedef struct S390CPUModel {
|
||||||
const S390CPUDef *def;
|
const S390CPUDef *def;
|
||||||
S390FeatBitmap features;
|
S390FeatBitmap features;
|
||||||
/* values copied from the "host" model, can change during migration */
|
/* values copied from the "host" model, can change during migration */
|
||||||
|
@ -49,7 +49,7 @@ struct S390CPUModel {
|
||||||
uint32_t cpu_id; /* CPU id */
|
uint32_t cpu_id; /* CPU id */
|
||||||
uint8_t cpu_id_format; /* CPU id format bit */
|
uint8_t cpu_id_format; /* CPU id format bit */
|
||||||
uint8_t cpu_ver; /* CPU version, usually "ff" for kvm */
|
uint8_t cpu_ver; /* CPU version, usually "ff" for kvm */
|
||||||
};
|
} S390CPUModel;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* CPU ID
|
* CPU ID
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#define QEMU_SUPERH_CPU_QOM_H
|
#define QEMU_SUPERH_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_SUPERH_CPU "superh-cpu"
|
#define TYPE_SUPERH_CPU "superh-cpu"
|
||||||
|
|
||||||
|
@ -34,26 +33,4 @@ OBJECT_DECLARE_CPU_TYPE(SuperHCPU, SuperHCPUClass, SUPERH_CPU)
|
||||||
#define SUPERH_CPU_TYPE_SUFFIX "-" TYPE_SUPERH_CPU
|
#define SUPERH_CPU_TYPE_SUFFIX "-" TYPE_SUPERH_CPU
|
||||||
#define SUPERH_CPU_TYPE_NAME(model) model SUPERH_CPU_TYPE_SUFFIX
|
#define SUPERH_CPU_TYPE_NAME(model) model SUPERH_CPU_TYPE_SUFFIX
|
||||||
|
|
||||||
/**
|
|
||||||
* SuperHCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
* @pvr: Processor Version Register
|
|
||||||
* @prr: Processor Revision Register
|
|
||||||
* @cvr: Cache Version Register
|
|
||||||
*
|
|
||||||
* A SuperH CPU model.
|
|
||||||
*/
|
|
||||||
struct SuperHCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
|
|
||||||
uint32_t pvr;
|
|
||||||
uint32_t prr;
|
|
||||||
uint32_t cvr;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -209,6 +209,26 @@ struct ArchCPU {
|
||||||
CPUSH4State env;
|
CPUSH4State env;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SuperHCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
* @pvr: Processor Version Register
|
||||||
|
* @prr: Processor Revision Register
|
||||||
|
* @cvr: Cache Version Register
|
||||||
|
*
|
||||||
|
* A SuperH CPU model.
|
||||||
|
*/
|
||||||
|
struct SuperHCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
|
||||||
|
uint32_t pvr;
|
||||||
|
uint32_t prr;
|
||||||
|
uint32_t cvr;
|
||||||
|
};
|
||||||
|
|
||||||
void superh_cpu_dump_state(CPUState *cpu, FILE *f, int flags);
|
void superh_cpu_dump_state(CPUState *cpu, FILE *f, int flags);
|
||||||
int superh_cpu_gdb_read_register(CPUState *cpu, GByteArray *buf, int reg);
|
int superh_cpu_gdb_read_register(CPUState *cpu, GByteArray *buf, int reg);
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#define QEMU_SPARC_CPU_QOM_H
|
#define QEMU_SPARC_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#ifdef TARGET_SPARC64
|
#ifdef TARGET_SPARC64
|
||||||
#define TYPE_SPARC_CPU "sparc64-cpu"
|
#define TYPE_SPARC_CPU "sparc64-cpu"
|
||||||
|
@ -34,21 +33,4 @@ OBJECT_DECLARE_CPU_TYPE(SPARCCPU, SPARCCPUClass, SPARC_CPU)
|
||||||
#define SPARC_CPU_TYPE_SUFFIX "-" TYPE_SPARC_CPU
|
#define SPARC_CPU_TYPE_SUFFIX "-" TYPE_SPARC_CPU
|
||||||
#define SPARC_CPU_TYPE_NAME(model) model SPARC_CPU_TYPE_SUFFIX
|
#define SPARC_CPU_TYPE_NAME(model) model SPARC_CPU_TYPE_SUFFIX
|
||||||
|
|
||||||
typedef struct sparc_def_t sparc_def_t;
|
|
||||||
/**
|
|
||||||
* SPARCCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
*
|
|
||||||
* A SPARC CPU model.
|
|
||||||
*/
|
|
||||||
struct SPARCCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
sparc_def_t *cpu_def;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -249,7 +249,7 @@ typedef struct trap_state {
|
||||||
#endif
|
#endif
|
||||||
#define TARGET_INSN_START_EXTRA_WORDS 1
|
#define TARGET_INSN_START_EXTRA_WORDS 1
|
||||||
|
|
||||||
struct sparc_def_t {
|
typedef struct sparc_def_t {
|
||||||
const char *name;
|
const char *name;
|
||||||
target_ulong iu_version;
|
target_ulong iu_version;
|
||||||
uint32_t fpu_version;
|
uint32_t fpu_version;
|
||||||
|
@ -263,7 +263,7 @@ struct sparc_def_t {
|
||||||
uint32_t features;
|
uint32_t features;
|
||||||
uint32_t nwindows;
|
uint32_t nwindows;
|
||||||
uint32_t maxtl;
|
uint32_t maxtl;
|
||||||
};
|
} sparc_def_t;
|
||||||
|
|
||||||
#define FEATURE(X) CPU_FEATURE_BIT_##X,
|
#define FEATURE(X) CPU_FEATURE_BIT_##X,
|
||||||
enum {
|
enum {
|
||||||
|
@ -567,6 +567,20 @@ struct ArchCPU {
|
||||||
CPUSPARCState env;
|
CPUSPARCState env;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SPARCCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
*
|
||||||
|
* A SPARC CPU model.
|
||||||
|
*/
|
||||||
|
struct SPARCCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
sparc_def_t *cpu_def;
|
||||||
|
};
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
extern const VMStateDescription vmstate_sparc_cpu;
|
extern const VMStateDescription vmstate_sparc_cpu;
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
#define QEMU_TRICORE_CPU_QOM_H
|
#define QEMU_TRICORE_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
|
|
||||||
#define TYPE_TRICORE_CPU "tricore-cpu"
|
#define TYPE_TRICORE_CPU "tricore-cpu"
|
||||||
|
|
||||||
|
@ -31,12 +29,4 @@ OBJECT_DECLARE_CPU_TYPE(TriCoreCPU, TriCoreCPUClass, TRICORE_CPU)
|
||||||
#define TRICORE_CPU_TYPE_SUFFIX "-" TYPE_TRICORE_CPU
|
#define TRICORE_CPU_TYPE_SUFFIX "-" TYPE_TRICORE_CPU
|
||||||
#define TRICORE_CPU_TYPE_NAME(model) model TRICORE_CPU_TYPE_SUFFIX
|
#define TRICORE_CPU_TYPE_NAME(model) model TRICORE_CPU_TYPE_SUFFIX
|
||||||
|
|
||||||
struct TriCoreCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* QEMU_TRICORE_CPU_QOM_H */
|
#endif /* QEMU_TRICORE_CPU_QOM_H */
|
||||||
|
|
|
@ -68,6 +68,12 @@ struct ArchCPU {
|
||||||
CPUTriCoreState env;
|
CPUTriCoreState env;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct TriCoreCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
};
|
||||||
|
|
||||||
hwaddr tricore_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
|
hwaddr tricore_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
|
||||||
void tricore_cpu_dump_state(CPUState *cpu, FILE *f, int flags);
|
void tricore_cpu_dump_state(CPUState *cpu, FILE *f, int flags);
|
||||||
|
|
|
@ -30,7 +30,6 @@
|
||||||
#define QEMU_XTENSA_CPU_QOM_H
|
#define QEMU_XTENSA_CPU_QOM_H
|
||||||
|
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "qom/object.h"
|
|
||||||
|
|
||||||
#define TYPE_XTENSA_CPU "xtensa-cpu"
|
#define TYPE_XTENSA_CPU "xtensa-cpu"
|
||||||
|
|
||||||
|
@ -39,24 +38,4 @@ OBJECT_DECLARE_CPU_TYPE(XtensaCPU, XtensaCPUClass, XTENSA_CPU)
|
||||||
#define XTENSA_CPU_TYPE_SUFFIX "-" TYPE_XTENSA_CPU
|
#define XTENSA_CPU_TYPE_SUFFIX "-" TYPE_XTENSA_CPU
|
||||||
#define XTENSA_CPU_TYPE_NAME(model) model XTENSA_CPU_TYPE_SUFFIX
|
#define XTENSA_CPU_TYPE_NAME(model) model XTENSA_CPU_TYPE_SUFFIX
|
||||||
|
|
||||||
typedef struct XtensaConfig XtensaConfig;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* XtensaCPUClass:
|
|
||||||
* @parent_realize: The parent class' realize handler.
|
|
||||||
* @parent_phases: The parent class' reset phase handlers.
|
|
||||||
* @config: The CPU core configuration.
|
|
||||||
*
|
|
||||||
* An Xtensa CPU model.
|
|
||||||
*/
|
|
||||||
struct XtensaCPUClass {
|
|
||||||
CPUClass parent_class;
|
|
||||||
|
|
||||||
DeviceRealize parent_realize;
|
|
||||||
ResettablePhases parent_phases;
|
|
||||||
|
|
||||||
const XtensaConfig *config;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -426,7 +426,7 @@ extern const XtensaOpcodeTranslators xtensa_core_opcodes;
|
||||||
extern const XtensaOpcodeTranslators xtensa_fpu2000_opcodes;
|
extern const XtensaOpcodeTranslators xtensa_fpu2000_opcodes;
|
||||||
extern const XtensaOpcodeTranslators xtensa_fpu_opcodes;
|
extern const XtensaOpcodeTranslators xtensa_fpu_opcodes;
|
||||||
|
|
||||||
struct XtensaConfig {
|
typedef struct XtensaConfig {
|
||||||
const char *name;
|
const char *name;
|
||||||
uint64_t options;
|
uint64_t options;
|
||||||
XtensaGdbRegmap gdb_regmap;
|
XtensaGdbRegmap gdb_regmap;
|
||||||
|
@ -489,7 +489,7 @@ struct XtensaConfig {
|
||||||
const xtensa_mpu_entry *mpu_bg;
|
const xtensa_mpu_entry *mpu_bg;
|
||||||
|
|
||||||
bool use_first_nan;
|
bool use_first_nan;
|
||||||
};
|
} XtensaConfig;
|
||||||
|
|
||||||
typedef struct XtensaConfigList {
|
typedef struct XtensaConfigList {
|
||||||
const XtensaConfig *config;
|
const XtensaConfig *config;
|
||||||
|
@ -562,6 +562,22 @@ struct ArchCPU {
|
||||||
Clock *clock;
|
Clock *clock;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* XtensaCPUClass:
|
||||||
|
* @parent_realize: The parent class' realize handler.
|
||||||
|
* @parent_phases: The parent class' reset phase handlers.
|
||||||
|
* @config: The CPU core configuration.
|
||||||
|
*
|
||||||
|
* An Xtensa CPU model.
|
||||||
|
*/
|
||||||
|
struct XtensaCPUClass {
|
||||||
|
CPUClass parent_class;
|
||||||
|
|
||||||
|
DeviceRealize parent_realize;
|
||||||
|
ResettablePhases parent_phases;
|
||||||
|
|
||||||
|
const XtensaConfig *config;
|
||||||
|
};
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
bool xtensa_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
|
bool xtensa_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue