mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
target/arm: Make cpu_register() available for other files
Make cpu_register() (renamed to arm_cpu_register()) available from internals.h so we can register CPUs also from other files in the future. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Eric Auger <eric.auger@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20200423073358.27155-3-philmd@redhat.com Message-ID: <20190921150420.30743-2-thuth@redhat.com> [PMD: Only take cpu_register() from Thomas's patch] Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
9fb005b02d
commit
37bcf24445
3 changed files with 11 additions and 16 deletions
|
@ -35,7 +35,14 @@ struct arm_boot_info;
|
||||||
|
|
||||||
#define TYPE_ARM_MAX_CPU "max-" TYPE_ARM_CPU
|
#define TYPE_ARM_MAX_CPU "max-" TYPE_ARM_CPU
|
||||||
|
|
||||||
typedef struct ARMCPUInfo ARMCPUInfo;
|
typedef struct ARMCPUInfo {
|
||||||
|
const char *name;
|
||||||
|
void (*initfn)(Object *obj);
|
||||||
|
void (*class_init)(ObjectClass *oc, void *data);
|
||||||
|
} ARMCPUInfo;
|
||||||
|
|
||||||
|
void arm_cpu_register(const ARMCPUInfo *info);
|
||||||
|
void aarch64_cpu_register(const ARMCPUInfo *info);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ARMCPUClass:
|
* ARMCPUClass:
|
||||||
|
|
|
@ -2693,12 +2693,6 @@ static void arm_max_initfn(Object *obj)
|
||||||
|
|
||||||
#endif /* !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64) */
|
#endif /* !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64) */
|
||||||
|
|
||||||
struct ARMCPUInfo {
|
|
||||||
const char *name;
|
|
||||||
void (*initfn)(Object *obj);
|
|
||||||
void (*class_init)(ObjectClass *oc, void *data);
|
|
||||||
};
|
|
||||||
|
|
||||||
static const ARMCPUInfo arm_cpus[] = {
|
static const ARMCPUInfo arm_cpus[] = {
|
||||||
#if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
|
#if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
|
||||||
{ .name = "arm926", .initfn = arm926_initfn },
|
{ .name = "arm926", .initfn = arm926_initfn },
|
||||||
|
@ -2864,7 +2858,7 @@ static void cpu_register_class_init(ObjectClass *oc, void *data)
|
||||||
acc->info = data;
|
acc->info = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cpu_register(const ARMCPUInfo *info)
|
void arm_cpu_register(const ARMCPUInfo *info)
|
||||||
{
|
{
|
||||||
TypeInfo type_info = {
|
TypeInfo type_info = {
|
||||||
.parent = TYPE_ARM_CPU,
|
.parent = TYPE_ARM_CPU,
|
||||||
|
@ -2905,7 +2899,7 @@ static void arm_cpu_register_types(void)
|
||||||
type_register_static(&idau_interface_type_info);
|
type_register_static(&idau_interface_type_info);
|
||||||
|
|
||||||
while (info->name) {
|
while (info->name) {
|
||||||
cpu_register(info);
|
arm_cpu_register(info);
|
||||||
info++;
|
info++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -737,12 +737,6 @@ static void aarch64_max_initfn(Object *obj)
|
||||||
cpu_max_set_sve_max_vq, NULL, NULL, &error_fatal);
|
cpu_max_set_sve_max_vq, NULL, NULL, &error_fatal);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ARMCPUInfo {
|
|
||||||
const char *name;
|
|
||||||
void (*initfn)(Object *obj);
|
|
||||||
void (*class_init)(ObjectClass *oc, void *data);
|
|
||||||
};
|
|
||||||
|
|
||||||
static const ARMCPUInfo aarch64_cpus[] = {
|
static const ARMCPUInfo aarch64_cpus[] = {
|
||||||
{ .name = "cortex-a57", .initfn = aarch64_a57_initfn },
|
{ .name = "cortex-a57", .initfn = aarch64_a57_initfn },
|
||||||
{ .name = "cortex-a53", .initfn = aarch64_a53_initfn },
|
{ .name = "cortex-a53", .initfn = aarch64_a53_initfn },
|
||||||
|
@ -825,7 +819,7 @@ static void cpu_register_class_init(ObjectClass *oc, void *data)
|
||||||
acc->info = data;
|
acc->info = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void aarch64_cpu_register(const ARMCPUInfo *info)
|
void aarch64_cpu_register(const ARMCPUInfo *info)
|
||||||
{
|
{
|
||||||
TypeInfo type_info = {
|
TypeInfo type_info = {
|
||||||
.parent = TYPE_AARCH64_CPU,
|
.parent = TYPE_AARCH64_CPU,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue