xen/xen_platform: QOM casting sweep
[qemu.git] / target-moxie / cpu.c
blob92ca5946bfe7d1d986346b519140a1391e232890
1 /*
2 * QEMU Moxie CPU
4 * Copyright (c) 2013 Anthony Green
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 General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "cpu.h"
21 #include "qemu-common.h"
22 #include "migration/vmstate.h"
23 #include "machine.h"
25 static void moxie_cpu_reset(CPUState *s)
27 MoxieCPU *cpu = MOXIE_CPU(s);
28 MoxieCPUClass *mcc = MOXIE_CPU_GET_CLASS(cpu);
29 CPUMoxieState *env = &cpu->env;
31 mcc->parent_reset(s);
33 memset(env, 0, offsetof(CPUMoxieState, breakpoints));
34 env->pc = 0x1000;
36 tlb_flush(env, 1);
39 static void moxie_cpu_realizefn(DeviceState *dev, Error **errp)
41 MoxieCPU *cpu = MOXIE_CPU(dev);
42 MoxieCPUClass *mcc = MOXIE_CPU_GET_CLASS(dev);
44 cpu_reset(CPU(cpu));
46 mcc->parent_realize(dev, errp);
49 static void moxie_cpu_initfn(Object *obj)
51 CPUState *cs = CPU(obj);
52 MoxieCPU *cpu = MOXIE_CPU(obj);
53 static int inited;
55 cs->env_ptr = &cpu->env;
56 cpu_exec_init(&cpu->env);
58 if (tcg_enabled() && !inited) {
59 inited = 1;
60 moxie_translate_init();
64 static ObjectClass *moxie_cpu_class_by_name(const char *cpu_model)
66 ObjectClass *oc;
68 if (cpu_model == NULL) {
69 return NULL;
72 oc = object_class_by_name(cpu_model);
73 if (oc != NULL && (!object_class_dynamic_cast(oc, TYPE_MOXIE_CPU) ||
74 object_class_is_abstract(oc))) {
75 return NULL;
77 return oc;
80 static void moxie_cpu_class_init(ObjectClass *oc, void *data)
82 DeviceClass *dc = DEVICE_CLASS(oc);
83 CPUClass *cc = CPU_CLASS(oc);
84 MoxieCPUClass *mcc = MOXIE_CPU_CLASS(oc);
86 mcc->parent_realize = dc->realize;
87 dc->realize = moxie_cpu_realizefn;
89 mcc->parent_reset = cc->reset;
90 cc->reset = moxie_cpu_reset;
92 cc->class_by_name = moxie_cpu_class_by_name;
94 cc->do_interrupt = moxie_cpu_do_interrupt;
95 cc->dump_state = moxie_cpu_dump_state;
96 cpu_class_set_vmsd(cc, &vmstate_moxie_cpu);
99 static void moxielite_initfn(Object *obj)
101 /* Set cpu feature flags */
104 static void moxie_any_initfn(Object *obj)
106 /* Set cpu feature flags */
109 typedef struct MoxieCPUInfo {
110 const char *name;
111 void (*initfn)(Object *obj);
112 } MoxieCPUInfo;
114 static const MoxieCPUInfo moxie_cpus[] = {
115 { .name = "MoxieLite", .initfn = moxielite_initfn },
116 { .name = "any", .initfn = moxie_any_initfn },
119 MoxieCPU *cpu_moxie_init(const char *cpu_model)
121 MoxieCPU *cpu;
122 ObjectClass *oc;
124 oc = moxie_cpu_class_by_name(cpu_model);
125 if (oc == NULL) {
126 return NULL;
128 cpu = MOXIE_CPU(object_new(object_class_get_name(oc)));
129 cpu->env.cpu_model_str = cpu_model;
131 object_property_set_bool(OBJECT(cpu), true, "realized", NULL);
133 return cpu;
136 static void cpu_register(const MoxieCPUInfo *info)
138 TypeInfo type_info = {
139 .parent = TYPE_MOXIE_CPU,
140 .instance_size = sizeof(MoxieCPU),
141 .instance_init = info->initfn,
142 .class_size = sizeof(MoxieCPUClass),
145 type_info.name = g_strdup_printf("%s-" TYPE_MOXIE_CPU, info->name);
146 type_register(&type_info);
147 g_free((void *)type_info.name);
150 static const TypeInfo moxie_cpu_type_info = {
151 .name = TYPE_MOXIE_CPU,
152 .parent = TYPE_CPU,
153 .instance_size = sizeof(MoxieCPU),
154 .instance_init = moxie_cpu_initfn,
155 .class_size = sizeof(MoxieCPUClass),
156 .class_init = moxie_cpu_class_init,
159 static void moxie_cpu_register_types(void)
161 int i;
162 type_register_static(&moxie_cpu_type_info);
163 for (i = 0; i < ARRAY_SIZE(moxie_cpus); i++) {
164 cpu_register(&moxie_cpus[i]);
168 type_init(moxie_cpu_register_types)