MAINTAINERS: mark megasas as maintained
[qemu/ar7.git] / target-sh4 / cpu.c
blobe7f05212da74389840ab1cf014d6af2934718121
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 "cpu.h"
23 #include "qemu-common.h"
24 #include "migration/vmstate.h"
27 static void superh_cpu_set_pc(CPUState *cs, vaddr value)
29 SuperHCPU *cpu = SUPERH_CPU(cs);
31 cpu->env.pc = value;
34 static void superh_cpu_synchronize_from_tb(CPUState *cs, TranslationBlock *tb)
36 SuperHCPU *cpu = SUPERH_CPU(cs);
38 cpu->env.pc = tb->pc;
39 cpu->env.flags = tb->flags;
42 static bool superh_cpu_has_work(CPUState *cs)
44 return cs->interrupt_request & CPU_INTERRUPT_HARD;
47 /* CPUClass::reset() */
48 static void superh_cpu_reset(CPUState *s)
50 SuperHCPU *cpu = SUPERH_CPU(s);
51 SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(cpu);
52 CPUSH4State *env = &cpu->env;
54 scc->parent_reset(s);
56 memset(env, 0, offsetof(CPUSH4State, id));
57 tlb_flush(s, 1);
59 env->pc = 0xA0000000;
60 #if defined(CONFIG_USER_ONLY)
61 env->fpscr = FPSCR_PR; /* value for userspace according to the kernel */
62 set_float_rounding_mode(float_round_nearest_even, &env->fp_status); /* ?! */
63 #else
64 env->sr = SR_MD | SR_RB | SR_BL | SR_I3 | SR_I2 | SR_I1 | SR_I0;
65 env->fpscr = FPSCR_DN | FPSCR_RM_ZERO; /* CPU reset value according to SH4 manual */
66 set_float_rounding_mode(float_round_to_zero, &env->fp_status);
67 set_flush_to_zero(1, &env->fp_status);
68 #endif
69 set_default_nan_mode(1, &env->fp_status);
72 typedef struct SuperHCPUListState {
73 fprintf_function cpu_fprintf;
74 FILE *file;
75 } SuperHCPUListState;
77 /* Sort alphabetically by type name. */
78 static gint superh_cpu_list_compare(gconstpointer a, gconstpointer b)
80 ObjectClass *class_a = (ObjectClass *)a;
81 ObjectClass *class_b = (ObjectClass *)b;
82 const char *name_a, *name_b;
84 name_a = object_class_get_name(class_a);
85 name_b = object_class_get_name(class_b);
86 return strcmp(name_a, name_b);
89 static void superh_cpu_list_entry(gpointer data, gpointer user_data)
91 ObjectClass *oc = data;
92 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
93 SuperHCPUListState *s = user_data;
95 (*s->cpu_fprintf)(s->file, "%s\n",
96 scc->name);
99 void sh4_cpu_list(FILE *f, fprintf_function cpu_fprintf)
101 SuperHCPUListState s = {
102 .cpu_fprintf = cpu_fprintf,
103 .file = f,
105 GSList *list;
107 list = object_class_get_list(TYPE_SUPERH_CPU, false);
108 list = g_slist_sort(list, superh_cpu_list_compare);
109 g_slist_foreach(list, superh_cpu_list_entry, &s);
110 g_slist_free(list);
113 static gint superh_cpu_name_compare(gconstpointer a, gconstpointer b)
115 const SuperHCPUClass *scc = SUPERH_CPU_CLASS(a);
116 const char *name = b;
118 return strcasecmp(scc->name, name);
121 static ObjectClass *superh_cpu_class_by_name(const char *cpu_model)
123 ObjectClass *oc;
124 GSList *list, *item;
126 if (cpu_model == NULL) {
127 return NULL;
129 if (strcasecmp(cpu_model, "any") == 0) {
130 return object_class_by_name(TYPE_SH7750R_CPU);
133 oc = object_class_by_name(cpu_model);
134 if (oc != NULL && object_class_dynamic_cast(oc, TYPE_SUPERH_CPU) != NULL
135 && !object_class_is_abstract(oc)) {
136 return oc;
139 oc = NULL;
140 list = object_class_get_list(TYPE_SUPERH_CPU, false);
141 item = g_slist_find_custom(list, cpu_model, superh_cpu_name_compare);
142 if (item != NULL) {
143 oc = item->data;
145 g_slist_free(list);
146 return oc;
149 SuperHCPU *cpu_sh4_init(const char *cpu_model)
151 return SUPERH_CPU(cpu_generic_init(TYPE_SUPERH_CPU, cpu_model));
154 static void sh7750r_cpu_initfn(Object *obj)
156 SuperHCPU *cpu = SUPERH_CPU(obj);
157 CPUSH4State *env = &cpu->env;
159 env->id = SH_CPU_SH7750R;
160 env->features = SH_FEATURE_BCR3_AND_BCR4;
163 static void sh7750r_class_init(ObjectClass *oc, void *data)
165 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
167 scc->name = "SH7750R";
168 scc->pvr = 0x00050000;
169 scc->prr = 0x00000100;
170 scc->cvr = 0x00110000;
173 static const TypeInfo sh7750r_type_info = {
174 .name = TYPE_SH7750R_CPU,
175 .parent = TYPE_SUPERH_CPU,
176 .class_init = sh7750r_class_init,
177 .instance_init = sh7750r_cpu_initfn,
180 static void sh7751r_cpu_initfn(Object *obj)
182 SuperHCPU *cpu = SUPERH_CPU(obj);
183 CPUSH4State *env = &cpu->env;
185 env->id = SH_CPU_SH7751R;
186 env->features = SH_FEATURE_BCR3_AND_BCR4;
189 static void sh7751r_class_init(ObjectClass *oc, void *data)
191 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
193 scc->name = "SH7751R";
194 scc->pvr = 0x04050005;
195 scc->prr = 0x00000113;
196 scc->cvr = 0x00110000; /* Neutered caches, should be 0x20480000 */
199 static const TypeInfo sh7751r_type_info = {
200 .name = TYPE_SH7751R_CPU,
201 .parent = TYPE_SUPERH_CPU,
202 .class_init = sh7751r_class_init,
203 .instance_init = sh7751r_cpu_initfn,
206 static void sh7785_cpu_initfn(Object *obj)
208 SuperHCPU *cpu = SUPERH_CPU(obj);
209 CPUSH4State *env = &cpu->env;
211 env->id = SH_CPU_SH7785;
212 env->features = SH_FEATURE_SH4A;
215 static void sh7785_class_init(ObjectClass *oc, void *data)
217 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
219 scc->name = "SH7785";
220 scc->pvr = 0x10300700;
221 scc->prr = 0x00000200;
222 scc->cvr = 0x71440211;
225 static const TypeInfo sh7785_type_info = {
226 .name = TYPE_SH7785_CPU,
227 .parent = TYPE_SUPERH_CPU,
228 .class_init = sh7785_class_init,
229 .instance_init = sh7785_cpu_initfn,
232 static void superh_cpu_realizefn(DeviceState *dev, Error **errp)
234 CPUState *cs = CPU(dev);
235 SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(dev);
237 cpu_reset(cs);
238 qemu_init_vcpu(cs);
240 scc->parent_realize(dev, errp);
243 static void superh_cpu_initfn(Object *obj)
245 CPUState *cs = CPU(obj);
246 SuperHCPU *cpu = SUPERH_CPU(obj);
247 CPUSH4State *env = &cpu->env;
249 cs->env_ptr = env;
250 cpu_exec_init(env);
252 env->movcal_backup_tail = &(env->movcal_backup);
254 if (tcg_enabled()) {
255 sh4_translate_init();
259 static const VMStateDescription vmstate_sh_cpu = {
260 .name = "cpu",
261 .unmigratable = 1,
264 static void superh_cpu_class_init(ObjectClass *oc, void *data)
266 DeviceClass *dc = DEVICE_CLASS(oc);
267 CPUClass *cc = CPU_CLASS(oc);
268 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
270 scc->parent_realize = dc->realize;
271 dc->realize = superh_cpu_realizefn;
273 scc->parent_reset = cc->reset;
274 cc->reset = superh_cpu_reset;
276 cc->class_by_name = superh_cpu_class_by_name;
277 cc->has_work = superh_cpu_has_work;
278 cc->do_interrupt = superh_cpu_do_interrupt;
279 cc->dump_state = superh_cpu_dump_state;
280 cc->set_pc = superh_cpu_set_pc;
281 cc->synchronize_from_tb = superh_cpu_synchronize_from_tb;
282 cc->gdb_read_register = superh_cpu_gdb_read_register;
283 cc->gdb_write_register = superh_cpu_gdb_write_register;
284 #ifdef CONFIG_USER_ONLY
285 cc->handle_mmu_fault = superh_cpu_handle_mmu_fault;
286 #else
287 cc->get_phys_page_debug = superh_cpu_get_phys_page_debug;
288 #endif
289 dc->vmsd = &vmstate_sh_cpu;
290 cc->gdb_num_core_regs = 59;
293 static const TypeInfo superh_cpu_type_info = {
294 .name = TYPE_SUPERH_CPU,
295 .parent = TYPE_CPU,
296 .instance_size = sizeof(SuperHCPU),
297 .instance_init = superh_cpu_initfn,
298 .abstract = true,
299 .class_size = sizeof(SuperHCPUClass),
300 .class_init = superh_cpu_class_init,
303 static void superh_cpu_register_types(void)
305 type_register_static(&superh_cpu_type_info);
306 type_register_static(&sh7750r_type_info);
307 type_register_static(&sh7751r_type_info);
308 type_register_static(&sh7785_type_info);
311 type_init(superh_cpu_register_types)