alpha: replace cpu_alpha_init() with cpu_generic_init()
cpu_alpha_init() used to provide default fallback if invalid (i.e. non existent) cpu_model were provided. dp264 machine provides its own default so sole user of fallback is [bsd|linux]-user targets which specifies 'any' cpu model that fallbacks to "ev67" in cpu_alpha_init(). Push fallback handling into alpha_cpu_class_by_name() and replace cpu_alpha_init() with cpu_generic_init(). Signed-off-by: Igor Mammedov <imammedo@redhat.com> Acked-by: Richard Henderson <rth@twiddle.net> Message-Id: <1503592308-93913-10-git-send-email-imammedo@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
6ad76dfd13
commit
82a3d1f81f
@ -51,7 +51,7 @@ static int clipper_pci_map_irq(PCIDevice *d, int irq_num)
|
|||||||
static void clipper_init(MachineState *machine)
|
static void clipper_init(MachineState *machine)
|
||||||
{
|
{
|
||||||
ram_addr_t ram_size = machine->ram_size;
|
ram_addr_t ram_size = machine->ram_size;
|
||||||
const char *cpu_model = machine->cpu_model;
|
const char *cpu_model = machine->cpu_model ? machine->cpu_model : "ev67";
|
||||||
const char *kernel_filename = machine->kernel_filename;
|
const char *kernel_filename = machine->kernel_filename;
|
||||||
const char *kernel_cmdline = machine->kernel_cmdline;
|
const char *kernel_cmdline = machine->kernel_cmdline;
|
||||||
const char *initrd_filename = machine->initrd_filename;
|
const char *initrd_filename = machine->initrd_filename;
|
||||||
@ -67,7 +67,11 @@ static void clipper_init(MachineState *machine)
|
|||||||
/* Create up to 4 cpus. */
|
/* Create up to 4 cpus. */
|
||||||
memset(cpus, 0, sizeof(cpus));
|
memset(cpus, 0, sizeof(cpus));
|
||||||
for (i = 0; i < smp_cpus; ++i) {
|
for (i = 0; i < smp_cpus; ++i) {
|
||||||
cpus[i] = cpu_alpha_init(cpu_model ? cpu_model : "ev67");
|
cpus[i] = ALPHA_CPU(cpu_generic_init(TYPE_ALPHA_CPU, cpu_model));
|
||||||
|
if (!cpus[i]) {
|
||||||
|
error_report("Unable to find CPU definition");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cpus[0]->env.trap_arg0 = ram_size;
|
cpus[0]->env.trap_arg0 = ram_size;
|
||||||
|
@ -155,24 +155,14 @@ static ObjectClass *alpha_cpu_class_by_name(const char *cpu_model)
|
|||||||
if (oc != NULL && object_class_is_abstract(oc)) {
|
if (oc != NULL && object_class_is_abstract(oc)) {
|
||||||
oc = NULL;
|
oc = NULL;
|
||||||
}
|
}
|
||||||
return oc;
|
|
||||||
}
|
|
||||||
|
|
||||||
AlphaCPU *cpu_alpha_init(const char *cpu_model)
|
/* TODO: remove match everything nonsense */
|
||||||
{
|
|
||||||
AlphaCPU *cpu;
|
|
||||||
ObjectClass *cpu_class;
|
|
||||||
|
|
||||||
cpu_class = alpha_cpu_class_by_name(cpu_model);
|
|
||||||
if (cpu_class == NULL) {
|
|
||||||
/* Default to ev67; no reason not to emulate insns by default. */
|
/* Default to ev67; no reason not to emulate insns by default. */
|
||||||
cpu_class = object_class_by_name(TYPE("ev67"));
|
if (!oc) {
|
||||||
|
oc = object_class_by_name(TYPE("ev67"));
|
||||||
}
|
}
|
||||||
cpu = ALPHA_CPU(object_new(object_class_get_name(cpu_class)));
|
|
||||||
|
|
||||||
object_property_set_bool(OBJECT(cpu), true, "realized", NULL);
|
return oc;
|
||||||
|
|
||||||
return cpu;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ev4_cpu_initfn(Object *obj)
|
static void ev4_cpu_initfn(Object *obj)
|
||||||
|
@ -468,9 +468,7 @@ enum {
|
|||||||
|
|
||||||
void alpha_translate_init(void);
|
void alpha_translate_init(void);
|
||||||
|
|
||||||
AlphaCPU *cpu_alpha_init(const char *cpu_model);
|
#define cpu_init(cpu_model) cpu_generic_init(TYPE_ALPHA_CPU, cpu_model)
|
||||||
|
|
||||||
#define cpu_init(cpu_model) CPU(cpu_alpha_init(cpu_model))
|
|
||||||
|
|
||||||
void alpha_cpu_list(FILE *f, fprintf_function cpu_fprintf);
|
void alpha_cpu_list(FILE *f, fprintf_function cpu_fprintf);
|
||||||
/* you can call this signal handler from your SIGBUS and SIGSEGV
|
/* you can call this signal handler from your SIGBUS and SIGSEGV
|
||||||
|
Loading…
Reference in New Issue
Block a user