]>
Commit | Line | Data |
---|---|---|
e739a48e AF |
1 | /* |
2 | * QEMU CRIS CPU | |
3 | * | |
1c3b52fb AF |
4 | * Copyright (c) 2008 AXIS Communications AB |
5 | * Written by Edgar E. Iglesias. | |
6 | * | |
e739a48e AF |
7 | * Copyright (c) 2012 SUSE LINUX Products GmbH |
8 | * | |
9 | * This library is free software; you can redistribute it and/or | |
10 | * modify it under the terms of the GNU Lesser General Public | |
11 | * License as published by the Free Software Foundation; either | |
12 | * version 2.1 of the License, or (at your option) any later version. | |
13 | * | |
14 | * This library is distributed in the hope that it will be useful, | |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 | * Lesser General Public License for more details. | |
18 | * | |
19 | * You should have received a copy of the GNU Lesser General Public | |
20 | * License along with this library; if not, see | |
21 | * <http://www.gnu.org/licenses/lgpl-2.1.html> | |
22 | */ | |
23 | ||
23b0d7df | 24 | #include "qemu/osdep.h" |
e739a48e AF |
25 | #include "cpu.h" |
26 | #include "qemu-common.h" | |
1c3b52fb | 27 | #include "mmu.h" |
e739a48e AF |
28 | |
29 | ||
f45748f1 AF |
30 | static void cris_cpu_set_pc(CPUState *cs, vaddr value) |
31 | { | |
32 | CRISCPU *cpu = CRIS_CPU(cs); | |
33 | ||
34 | cpu->env.pc = value; | |
35 | } | |
36 | ||
8c2e1b00 AF |
37 | static bool cris_cpu_has_work(CPUState *cs) |
38 | { | |
39 | return cs->interrupt_request & (CPU_INTERRUPT_HARD | CPU_INTERRUPT_NMI); | |
40 | } | |
41 | ||
e739a48e AF |
42 | /* CPUClass::reset() */ |
43 | static void cris_cpu_reset(CPUState *s) | |
44 | { | |
45 | CRISCPU *cpu = CRIS_CPU(s); | |
46 | CRISCPUClass *ccc = CRIS_CPU_GET_CLASS(cpu); | |
47 | CPUCRISState *env = &cpu->env; | |
1c3b52fb AF |
48 | uint32_t vr; |
49 | ||
e739a48e AF |
50 | ccc->parent_reset(s); |
51 | ||
1c3b52fb | 52 | vr = env->pregs[PR_VR]; |
f0c3c505 | 53 | memset(env, 0, offsetof(CPUCRISState, load_info)); |
1c3b52fb | 54 | env->pregs[PR_VR] = vr; |
00c8cb0a | 55 | tlb_flush(s, 1); |
1c3b52fb AF |
56 | |
57 | #if defined(CONFIG_USER_ONLY) | |
58 | /* start in user mode with interrupts enabled. */ | |
59 | env->pregs[PR_CCS] |= U_FLAG | I_FLAG | P_FLAG; | |
60 | #else | |
61 | cris_mmu_init(env); | |
62 | env->pregs[PR_CCS] = 0; | |
63 | #endif | |
e739a48e AF |
64 | } |
65 | ||
6ae064fc AF |
66 | static ObjectClass *cris_cpu_class_by_name(const char *cpu_model) |
67 | { | |
68 | ObjectClass *oc; | |
69 | char *typename; | |
70 | ||
71 | if (cpu_model == NULL) { | |
72 | return NULL; | |
73 | } | |
74 | ||
fd5d5afa EI |
75 | #if defined(CONFIG_USER_ONLY) |
76 | if (strcasecmp(cpu_model, "any") == 0) { | |
77 | return object_class_by_name("crisv32-" TYPE_CRIS_CPU); | |
78 | } | |
79 | #endif | |
80 | ||
6ae064fc AF |
81 | typename = g_strdup_printf("%s-" TYPE_CRIS_CPU, cpu_model); |
82 | oc = object_class_by_name(typename); | |
83 | g_free(typename); | |
84 | if (oc != NULL && (!object_class_dynamic_cast(oc, TYPE_CRIS_CPU) || | |
85 | object_class_is_abstract(oc))) { | |
86 | oc = NULL; | |
87 | } | |
88 | return oc; | |
89 | } | |
90 | ||
91 | CRISCPU *cpu_cris_init(const char *cpu_model) | |
92 | { | |
9262685b | 93 | return CRIS_CPU(cpu_generic_init(TYPE_CRIS_CPU, cpu_model)); |
6ae064fc AF |
94 | } |
95 | ||
96 | /* Sort alphabetically by VR. */ | |
97 | static gint cris_cpu_list_compare(gconstpointer a, gconstpointer b) | |
98 | { | |
99 | CRISCPUClass *ccc_a = CRIS_CPU_CLASS(a); | |
100 | CRISCPUClass *ccc_b = CRIS_CPU_CLASS(b); | |
101 | ||
102 | /* */ | |
103 | if (ccc_a->vr > ccc_b->vr) { | |
104 | return 1; | |
105 | } else if (ccc_a->vr < ccc_b->vr) { | |
106 | return -1; | |
107 | } else { | |
108 | return 0; | |
109 | } | |
110 | } | |
111 | ||
112 | static void cris_cpu_list_entry(gpointer data, gpointer user_data) | |
113 | { | |
114 | ObjectClass *oc = data; | |
115 | CPUListState *s = user_data; | |
116 | const char *typename = object_class_get_name(oc); | |
117 | char *name; | |
118 | ||
119 | name = g_strndup(typename, strlen(typename) - strlen("-" TYPE_CRIS_CPU)); | |
120 | (*s->cpu_fprintf)(s->file, " %s\n", name); | |
121 | g_free(name); | |
122 | } | |
123 | ||
124 | void cris_cpu_list(FILE *f, fprintf_function cpu_fprintf) | |
125 | { | |
126 | CPUListState s = { | |
127 | .file = f, | |
128 | .cpu_fprintf = cpu_fprintf, | |
129 | }; | |
130 | GSList *list; | |
131 | ||
132 | list = object_class_get_list(TYPE_CRIS_CPU, false); | |
133 | list = g_slist_sort(list, cris_cpu_list_compare); | |
134 | (*cpu_fprintf)(f, "Available CPUs:\n"); | |
135 | g_slist_foreach(list, cris_cpu_list_entry, &s); | |
136 | g_slist_free(list); | |
137 | } | |
138 | ||
ca45f8b0 AF |
139 | static void cris_cpu_realizefn(DeviceState *dev, Error **errp) |
140 | { | |
14a10fc3 | 141 | CPUState *cs = CPU(dev); |
ca45f8b0 AF |
142 | CRISCPUClass *ccc = CRIS_CPU_GET_CLASS(dev); |
143 | ||
14a10fc3 AF |
144 | cpu_reset(cs); |
145 | qemu_init_vcpu(cs); | |
ca45f8b0 AF |
146 | |
147 | ccc->parent_realize(dev, errp); | |
148 | } | |
149 | ||
3065839c EI |
150 | #ifndef CONFIG_USER_ONLY |
151 | static void cris_cpu_set_irq(void *opaque, int irq, int level) | |
152 | { | |
153 | CRISCPU *cpu = opaque; | |
154 | CPUState *cs = CPU(cpu); | |
155 | int type = irq == CRIS_CPU_IRQ ? CPU_INTERRUPT_HARD : CPU_INTERRUPT_NMI; | |
156 | ||
157 | if (level) { | |
158 | cpu_interrupt(cs, type); | |
159 | } else { | |
160 | cpu_reset_interrupt(cs, type); | |
161 | } | |
162 | } | |
163 | #endif | |
164 | ||
6b625fde PC |
165 | static void cris_disas_set_info(CPUState *cpu, disassemble_info *info) |
166 | { | |
167 | CRISCPU *cc = CRIS_CPU(cpu); | |
168 | CPUCRISState *env = &cc->env; | |
169 | ||
170 | if (env->pregs[PR_VR] != 32) { | |
171 | info->mach = bfd_mach_cris_v0_v10; | |
172 | info->print_insn = print_insn_crisv10; | |
173 | } else { | |
174 | info->mach = bfd_mach_cris_v32; | |
175 | info->print_insn = print_insn_crisv32; | |
176 | } | |
177 | } | |
178 | ||
aa0d1267 AF |
179 | static void cris_cpu_initfn(Object *obj) |
180 | { | |
c05efcb1 | 181 | CPUState *cs = CPU(obj); |
aa0d1267 | 182 | CRISCPU *cpu = CRIS_CPU(obj); |
6ae064fc | 183 | CRISCPUClass *ccc = CRIS_CPU_GET_CLASS(obj); |
aa0d1267 | 184 | CPUCRISState *env = &cpu->env; |
d1a94fec | 185 | static bool tcg_initialized; |
aa0d1267 | 186 | |
c05efcb1 | 187 | cs->env_ptr = env; |
4bad9e39 | 188 | cpu_exec_init(cs, &error_abort); |
d1a94fec | 189 | |
6ae064fc AF |
190 | env->pregs[PR_VR] = ccc->vr; |
191 | ||
3065839c EI |
192 | #ifndef CONFIG_USER_ONLY |
193 | /* IRQ and NMI lines. */ | |
194 | qdev_init_gpio_in(DEVICE(cpu), cris_cpu_set_irq, 2); | |
195 | #endif | |
196 | ||
d1a94fec AF |
197 | if (tcg_enabled() && !tcg_initialized) { |
198 | tcg_initialized = true; | |
199 | if (env->pregs[PR_VR] < 32) { | |
200 | cris_initialize_crisv10_tcg(); | |
201 | } else { | |
202 | cris_initialize_tcg(); | |
203 | } | |
204 | } | |
aa0d1267 AF |
205 | } |
206 | ||
6ae064fc AF |
207 | static void crisv8_cpu_class_init(ObjectClass *oc, void *data) |
208 | { | |
b21bfeea | 209 | CPUClass *cc = CPU_CLASS(oc); |
6ae064fc AF |
210 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); |
211 | ||
212 | ccc->vr = 8; | |
b21bfeea | 213 | cc->do_interrupt = crisv10_cpu_do_interrupt; |
90431220 | 214 | cc->gdb_read_register = crisv10_cpu_gdb_read_register; |
6ae064fc AF |
215 | } |
216 | ||
217 | static void crisv9_cpu_class_init(ObjectClass *oc, void *data) | |
218 | { | |
b21bfeea | 219 | CPUClass *cc = CPU_CLASS(oc); |
6ae064fc AF |
220 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); |
221 | ||
222 | ccc->vr = 9; | |
b21bfeea | 223 | cc->do_interrupt = crisv10_cpu_do_interrupt; |
90431220 | 224 | cc->gdb_read_register = crisv10_cpu_gdb_read_register; |
6ae064fc AF |
225 | } |
226 | ||
227 | static void crisv10_cpu_class_init(ObjectClass *oc, void *data) | |
228 | { | |
b21bfeea | 229 | CPUClass *cc = CPU_CLASS(oc); |
6ae064fc AF |
230 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); |
231 | ||
232 | ccc->vr = 10; | |
b21bfeea | 233 | cc->do_interrupt = crisv10_cpu_do_interrupt; |
90431220 | 234 | cc->gdb_read_register = crisv10_cpu_gdb_read_register; |
6ae064fc AF |
235 | } |
236 | ||
237 | static void crisv11_cpu_class_init(ObjectClass *oc, void *data) | |
238 | { | |
b21bfeea | 239 | CPUClass *cc = CPU_CLASS(oc); |
6ae064fc AF |
240 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); |
241 | ||
242 | ccc->vr = 11; | |
b21bfeea | 243 | cc->do_interrupt = crisv10_cpu_do_interrupt; |
90431220 | 244 | cc->gdb_read_register = crisv10_cpu_gdb_read_register; |
6ae064fc AF |
245 | } |
246 | ||
247 | static void crisv32_cpu_class_init(ObjectClass *oc, void *data) | |
248 | { | |
249 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); | |
250 | ||
251 | ccc->vr = 32; | |
252 | } | |
253 | ||
254 | #define TYPE(model) model "-" TYPE_CRIS_CPU | |
255 | ||
256 | static const TypeInfo cris_cpu_model_type_infos[] = { | |
257 | { | |
258 | .name = TYPE("crisv8"), | |
259 | .parent = TYPE_CRIS_CPU, | |
260 | .class_init = crisv8_cpu_class_init, | |
261 | }, { | |
262 | .name = TYPE("crisv9"), | |
263 | .parent = TYPE_CRIS_CPU, | |
264 | .class_init = crisv9_cpu_class_init, | |
265 | }, { | |
266 | .name = TYPE("crisv10"), | |
267 | .parent = TYPE_CRIS_CPU, | |
268 | .class_init = crisv10_cpu_class_init, | |
269 | }, { | |
270 | .name = TYPE("crisv11"), | |
271 | .parent = TYPE_CRIS_CPU, | |
272 | .class_init = crisv11_cpu_class_init, | |
273 | }, { | |
274 | .name = TYPE("crisv32"), | |
275 | .parent = TYPE_CRIS_CPU, | |
276 | .class_init = crisv32_cpu_class_init, | |
277 | } | |
278 | }; | |
279 | ||
280 | #undef TYPE | |
281 | ||
e739a48e AF |
282 | static void cris_cpu_class_init(ObjectClass *oc, void *data) |
283 | { | |
ca45f8b0 | 284 | DeviceClass *dc = DEVICE_CLASS(oc); |
e739a48e AF |
285 | CPUClass *cc = CPU_CLASS(oc); |
286 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); | |
287 | ||
ca45f8b0 AF |
288 | ccc->parent_realize = dc->realize; |
289 | dc->realize = cris_cpu_realizefn; | |
290 | ||
e739a48e AF |
291 | ccc->parent_reset = cc->reset; |
292 | cc->reset = cris_cpu_reset; | |
6ae064fc AF |
293 | |
294 | cc->class_by_name = cris_cpu_class_by_name; | |
8c2e1b00 | 295 | cc->has_work = cris_cpu_has_work; |
97a8ea5a | 296 | cc->do_interrupt = cris_cpu_do_interrupt; |
5a1f7f44 | 297 | cc->cpu_exec_interrupt = cris_cpu_exec_interrupt; |
878096ee | 298 | cc->dump_state = cris_cpu_dump_state; |
f45748f1 | 299 | cc->set_pc = cris_cpu_set_pc; |
5b50e790 AF |
300 | cc->gdb_read_register = cris_cpu_gdb_read_register; |
301 | cc->gdb_write_register = cris_cpu_gdb_write_register; | |
7510454e AF |
302 | #ifdef CONFIG_USER_ONLY |
303 | cc->handle_mmu_fault = cris_cpu_handle_mmu_fault; | |
304 | #else | |
00b941e5 | 305 | cc->get_phys_page_debug = cris_cpu_get_phys_page_debug; |
16a1b6e9 | 306 | dc->vmsd = &vmstate_cris_cpu; |
00b941e5 | 307 | #endif |
a0e372f0 AF |
308 | |
309 | cc->gdb_num_core_regs = 49; | |
2472b6c0 | 310 | cc->gdb_stop_before_watchpoint = true; |
6b625fde PC |
311 | |
312 | cc->disas_set_info = cris_disas_set_info; | |
4c315c27 MA |
313 | |
314 | /* | |
315 | * Reason: cris_cpu_initfn() calls cpu_exec_init(), which saves | |
316 | * the object in cpus -> dangling pointer after final | |
317 | * object_unref(). | |
318 | */ | |
319 | dc->cannot_destroy_with_object_finalize_yet = true; | |
e739a48e AF |
320 | } |
321 | ||
322 | static const TypeInfo cris_cpu_type_info = { | |
323 | .name = TYPE_CRIS_CPU, | |
324 | .parent = TYPE_CPU, | |
325 | .instance_size = sizeof(CRISCPU), | |
aa0d1267 | 326 | .instance_init = cris_cpu_initfn, |
6ae064fc | 327 | .abstract = true, |
e739a48e AF |
328 | .class_size = sizeof(CRISCPUClass), |
329 | .class_init = cris_cpu_class_init, | |
330 | }; | |
331 | ||
332 | static void cris_cpu_register_types(void) | |
333 | { | |
6ae064fc AF |
334 | int i; |
335 | ||
e739a48e | 336 | type_register_static(&cris_cpu_type_info); |
6ae064fc AF |
337 | for (i = 0; i < ARRAY_SIZE(cris_cpu_model_type_infos); i++) { |
338 | type_register_static(&cris_cpu_model_type_infos[i]); | |
339 | } | |
e739a48e AF |
340 | } |
341 | ||
342 | type_init(cris_cpu_register_types) |