target-cris: QOM'ify CPU
[qemu.git] / target-cris / cpu.c
blob784846ba3ccdb4c7394c648f3347d028b2c7af4c
1 /*
2 * QEMU CRIS CPU
4 * Copyright (c) 2012 SUSE LINUX Products GmbH
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see
18 * <http://www.gnu.org/licenses/lgpl-2.1.html>
21 #include "cpu.h"
22 #include "qemu-common.h"
25 /* CPUClass::reset() */
26 static void cris_cpu_reset(CPUState *s)
28 CRISCPU *cpu = CRIS_CPU(s);
29 CRISCPUClass *ccc = CRIS_CPU_GET_CLASS(cpu);
30 CPUCRISState *env = &cpu->env;
32 ccc->parent_reset(s);
34 cpu_state_reset(env);
37 static void cris_cpu_class_init(ObjectClass *oc, void *data)
39 CPUClass *cc = CPU_CLASS(oc);
40 CRISCPUClass *ccc = CRIS_CPU_CLASS(oc);
42 ccc->parent_reset = cc->reset;
43 cc->reset = cris_cpu_reset;
46 static const TypeInfo cris_cpu_type_info = {
47 .name = TYPE_CRIS_CPU,
48 .parent = TYPE_CPU,
49 .instance_size = sizeof(CRISCPU),
50 .abstract = false,
51 .class_size = sizeof(CRISCPUClass),
52 .class_init = cris_cpu_class_init,
55 static void cris_cpu_register_types(void)
57 type_register_static(&cris_cpu_type_info);
60 type_init(cris_cpu_register_types)