qom: Introduce CPUClass.tcg_initialize
[qemu/ar7.git] / target / sh4 / cpu.c
blob89abce2472d8a7b2926871c13efdd7464a67ca45
1 /*
2 * QEMU SuperH CPU
4 * Copyright (c) 2005 Samuel Tardieu
5 * Copyright (c) 2012 SUSE LINUX Products GmbH
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see
19 * <http://www.gnu.org/licenses/lgpl-2.1.html>
22 #include "qemu/osdep.h"
23 #include "qapi/error.h"
24 #include "cpu.h"
25 #include "qemu-common.h"
26 #include "migration/vmstate.h"
27 #include "exec/exec-all.h"
30 static void superh_cpu_set_pc(CPUState *cs, vaddr value)
32 SuperHCPU *cpu = SUPERH_CPU(cs);
34 cpu->env.pc = value;
37 static void superh_cpu_synchronize_from_tb(CPUState *cs, TranslationBlock *tb)
39 SuperHCPU *cpu = SUPERH_CPU(cs);
41 cpu->env.pc = tb->pc;
42 cpu->env.flags = tb->flags & TB_FLAG_ENVFLAGS_MASK;
45 static bool superh_cpu_has_work(CPUState *cs)
47 return cs->interrupt_request & CPU_INTERRUPT_HARD;
50 /* CPUClass::reset() */
51 static void superh_cpu_reset(CPUState *s)
53 SuperHCPU *cpu = SUPERH_CPU(s);
54 SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(cpu);
55 CPUSH4State *env = &cpu->env;
57 scc->parent_reset(s);
59 memset(env, 0, offsetof(CPUSH4State, end_reset_fields));
61 env->pc = 0xA0000000;
62 #if defined(CONFIG_USER_ONLY)
63 env->fpscr = FPSCR_PR; /* value for userspace according to the kernel */
64 set_float_rounding_mode(float_round_nearest_even, &env->fp_status); /* ?! */
65 #else
66 env->sr = (1u << SR_MD) | (1u << SR_RB) | (1u << SR_BL) |
67 (1u << SR_I3) | (1u << SR_I2) | (1u << SR_I1) | (1u << SR_I0);
68 env->fpscr = FPSCR_DN | FPSCR_RM_ZERO; /* CPU reset value according to SH4 manual */
69 set_float_rounding_mode(float_round_to_zero, &env->fp_status);
70 set_flush_to_zero(1, &env->fp_status);
71 #endif
72 set_default_nan_mode(1, &env->fp_status);
73 set_snan_bit_is_one(1, &env->fp_status);
76 static void superh_cpu_disas_set_info(CPUState *cpu, disassemble_info *info)
78 info->mach = bfd_mach_sh4;
79 info->print_insn = print_insn_sh;
82 typedef struct SuperHCPUListState {
83 fprintf_function cpu_fprintf;
84 FILE *file;
85 } SuperHCPUListState;
87 /* Sort alphabetically by type name. */
88 static gint superh_cpu_list_compare(gconstpointer a, gconstpointer b)
90 ObjectClass *class_a = (ObjectClass *)a;
91 ObjectClass *class_b = (ObjectClass *)b;
92 const char *name_a, *name_b;
94 name_a = object_class_get_name(class_a);
95 name_b = object_class_get_name(class_b);
96 return strcmp(name_a, name_b);
99 static void superh_cpu_list_entry(gpointer data, gpointer user_data)
101 ObjectClass *oc = data;
102 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
103 SuperHCPUListState *s = user_data;
105 (*s->cpu_fprintf)(s->file, "%s\n",
106 scc->name);
109 void sh4_cpu_list(FILE *f, fprintf_function cpu_fprintf)
111 SuperHCPUListState s = {
112 .cpu_fprintf = cpu_fprintf,
113 .file = f,
115 GSList *list;
117 list = object_class_get_list(TYPE_SUPERH_CPU, false);
118 list = g_slist_sort(list, superh_cpu_list_compare);
119 g_slist_foreach(list, superh_cpu_list_entry, &s);
120 g_slist_free(list);
123 static gint superh_cpu_name_compare(gconstpointer a, gconstpointer b)
125 const SuperHCPUClass *scc = SUPERH_CPU_CLASS(a);
126 const char *name = b;
128 return strcasecmp(scc->name, name);
131 static ObjectClass *superh_cpu_class_by_name(const char *cpu_model)
133 ObjectClass *oc;
134 GSList *list, *item;
136 if (strcasecmp(cpu_model, "any") == 0) {
137 return object_class_by_name(TYPE_SH7750R_CPU);
140 oc = object_class_by_name(cpu_model);
141 if (oc != NULL && object_class_dynamic_cast(oc, TYPE_SUPERH_CPU) != NULL
142 && !object_class_is_abstract(oc)) {
143 return oc;
146 oc = NULL;
147 list = object_class_get_list(TYPE_SUPERH_CPU, false);
148 item = g_slist_find_custom(list, cpu_model, superh_cpu_name_compare);
149 if (item != NULL) {
150 oc = item->data;
152 g_slist_free(list);
153 return oc;
156 static void sh7750r_cpu_initfn(Object *obj)
158 SuperHCPU *cpu = SUPERH_CPU(obj);
159 CPUSH4State *env = &cpu->env;
161 env->id = SH_CPU_SH7750R;
162 env->features = SH_FEATURE_BCR3_AND_BCR4;
165 static void sh7750r_class_init(ObjectClass *oc, void *data)
167 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
169 scc->name = "SH7750R";
170 scc->pvr = 0x00050000;
171 scc->prr = 0x00000100;
172 scc->cvr = 0x00110000;
175 static const TypeInfo sh7750r_type_info = {
176 .name = TYPE_SH7750R_CPU,
177 .parent = TYPE_SUPERH_CPU,
178 .class_init = sh7750r_class_init,
179 .instance_init = sh7750r_cpu_initfn,
182 static void sh7751r_cpu_initfn(Object *obj)
184 SuperHCPU *cpu = SUPERH_CPU(obj);
185 CPUSH4State *env = &cpu->env;
187 env->id = SH_CPU_SH7751R;
188 env->features = SH_FEATURE_BCR3_AND_BCR4;
191 static void sh7751r_class_init(ObjectClass *oc, void *data)
193 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
195 scc->name = "SH7751R";
196 scc->pvr = 0x04050005;
197 scc->prr = 0x00000113;
198 scc->cvr = 0x00110000; /* Neutered caches, should be 0x20480000 */
201 static const TypeInfo sh7751r_type_info = {
202 .name = TYPE_SH7751R_CPU,
203 .parent = TYPE_SUPERH_CPU,
204 .class_init = sh7751r_class_init,
205 .instance_init = sh7751r_cpu_initfn,
208 static void sh7785_cpu_initfn(Object *obj)
210 SuperHCPU *cpu = SUPERH_CPU(obj);
211 CPUSH4State *env = &cpu->env;
213 env->id = SH_CPU_SH7785;
214 env->features = SH_FEATURE_SH4A;
217 static void sh7785_class_init(ObjectClass *oc, void *data)
219 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
221 scc->name = "SH7785";
222 scc->pvr = 0x10300700;
223 scc->prr = 0x00000200;
224 scc->cvr = 0x71440211;
227 static const TypeInfo sh7785_type_info = {
228 .name = TYPE_SH7785_CPU,
229 .parent = TYPE_SUPERH_CPU,
230 .class_init = sh7785_class_init,
231 .instance_init = sh7785_cpu_initfn,
234 static void superh_cpu_realizefn(DeviceState *dev, Error **errp)
236 CPUState *cs = CPU(dev);
237 SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(dev);
238 Error *local_err = NULL;
240 cpu_exec_realizefn(cs, &local_err);
241 if (local_err != NULL) {
242 error_propagate(errp, local_err);
243 return;
246 cpu_reset(cs);
247 qemu_init_vcpu(cs);
249 scc->parent_realize(dev, errp);
252 static void superh_cpu_initfn(Object *obj)
254 CPUState *cs = CPU(obj);
255 SuperHCPU *cpu = SUPERH_CPU(obj);
256 CPUSH4State *env = &cpu->env;
258 cs->env_ptr = env;
260 env->movcal_backup_tail = &(env->movcal_backup);
263 static const VMStateDescription vmstate_sh_cpu = {
264 .name = "cpu",
265 .unmigratable = 1,
268 static void superh_cpu_class_init(ObjectClass *oc, void *data)
270 DeviceClass *dc = DEVICE_CLASS(oc);
271 CPUClass *cc = CPU_CLASS(oc);
272 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
274 scc->parent_realize = dc->realize;
275 dc->realize = superh_cpu_realizefn;
277 scc->parent_reset = cc->reset;
278 cc->reset = superh_cpu_reset;
280 cc->class_by_name = superh_cpu_class_by_name;
281 cc->has_work = superh_cpu_has_work;
282 cc->do_interrupt = superh_cpu_do_interrupt;
283 cc->cpu_exec_interrupt = superh_cpu_exec_interrupt;
284 cc->dump_state = superh_cpu_dump_state;
285 cc->set_pc = superh_cpu_set_pc;
286 cc->synchronize_from_tb = superh_cpu_synchronize_from_tb;
287 cc->gdb_read_register = superh_cpu_gdb_read_register;
288 cc->gdb_write_register = superh_cpu_gdb_write_register;
289 #ifdef CONFIG_USER_ONLY
290 cc->handle_mmu_fault = superh_cpu_handle_mmu_fault;
291 #else
292 cc->do_unaligned_access = superh_cpu_do_unaligned_access;
293 cc->get_phys_page_debug = superh_cpu_get_phys_page_debug;
294 #endif
295 cc->disas_set_info = superh_cpu_disas_set_info;
296 cc->tcg_initialize = sh4_translate_init;
298 cc->gdb_num_core_regs = 59;
300 dc->vmsd = &vmstate_sh_cpu;
303 static const TypeInfo superh_cpu_type_info = {
304 .name = TYPE_SUPERH_CPU,
305 .parent = TYPE_CPU,
306 .instance_size = sizeof(SuperHCPU),
307 .instance_init = superh_cpu_initfn,
308 .abstract = true,
309 .class_size = sizeof(SuperHCPUClass),
310 .class_init = superh_cpu_class_init,
313 static void superh_cpu_register_types(void)
315 type_register_static(&superh_cpu_type_info);
316 type_register_static(&sh7750r_type_info);
317 type_register_static(&sh7751r_type_info);
318 type_register_static(&sh7785_type_info);
321 type_init(superh_cpu_register_types)