diff options
| author | Andreas Färber | 2012-04-11 23:41:06 +0200 |
|---|---|---|
| committer | Edgar E. Iglesias | 2012-04-24 16:04:56 +0200 |
| commit | aa0d1267b3aa69c87fbd37a896bdd3f44d45c3f3 (patch) | |
| tree | c457377f2b7a2221bfbd09f35ce6b2edbf4893a1 /target-cris | |
| parent | target-cris: QOM'ify CPU reset (diff) | |
| download | qemu-aa0d1267b3aa69c87fbd37a896bdd3f44d45c3f3.tar.gz qemu-aa0d1267b3aa69c87fbd37a896bdd3f44d45c3f3.tar.xz qemu-aa0d1267b3aa69c87fbd37a896bdd3f44d45c3f3.zip | |
target-cris: Start QOM'ifying CPU init
Move VR-independent code from cpu_cris_init() into an initfn.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-cris')
| -rw-r--r-- | target-cris/cpu.c | 9 | ||||
| -rw-r--r-- | target-cris/translate.c | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/target-cris/cpu.c b/target-cris/cpu.c index 93c7e005f8..c596609bd4 100644 --- a/target-cris/cpu.c +++ b/target-cris/cpu.c @@ -55,6 +55,14 @@ static void cris_cpu_reset(CPUState *s) #endif } +static void cris_cpu_initfn(Object *obj) +{ + CRISCPU *cpu = CRIS_CPU(obj); + CPUCRISState *env = &cpu->env; + + cpu_exec_init(env); +} + static void cris_cpu_class_init(ObjectClass *oc, void *data) { CPUClass *cc = CPU_CLASS(oc); @@ -68,6 +76,7 @@ static const TypeInfo cris_cpu_type_info = { .name = TYPE_CRIS_CPU, .parent = TYPE_CPU, .instance_size = sizeof(CRISCPU), + .instance_init = cris_cpu_initfn, .abstract = false, .class_size = sizeof(CRISCPUClass), .class_init = cris_cpu_class_init, diff --git a/target-cris/translate.c b/target-cris/translate.c index d3dbac2363..e353ea3fa8 100644 --- a/target-cris/translate.c +++ b/target-cris/translate.c @@ -3514,7 +3514,7 @@ CPUCRISState *cpu_cris_init (const char *cpu_model) env = &cpu->env; env->pregs[PR_VR] = vr_by_name(cpu_model); - cpu_exec_init(env); + cpu_reset(CPU(cpu)); qemu_init_vcpu(env); |
