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>
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);
34 static void superh_cpu_synchronize_from_tb(CPUState *cs, TranslationBlock *tb)
36 SuperHCPU *cpu = SUPERH_CPU(cs);
39 cpu->env.flags = tb->flags;
42 /* CPUClass::reset() */
43 static void superh_cpu_reset(CPUState *s)
45 SuperHCPU *cpu = SUPERH_CPU(s);
46 SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(cpu);
47 CPUSH4State *env = &cpu->env;
51 memset(env, 0, offsetof(CPUSH4State, breakpoints));
55 #if defined(CONFIG_USER_ONLY)
56 env->fpscr = FPSCR_PR; /* value for userspace according to the kernel */
57 set_float_rounding_mode(float_round_nearest_even, &env->fp_status); /* ?! */
59 env->sr = SR_MD | SR_RB | SR_BL | SR_I3 | SR_I2 | SR_I1 | SR_I0;
60 env->fpscr = FPSCR_DN | FPSCR_RM_ZERO; /* CPU reset value according to SH4 manual */
61 set_float_rounding_mode(float_round_to_zero, &env->fp_status);
62 set_flush_to_zero(1, &env->fp_status);
64 set_default_nan_mode(1, &env->fp_status);
67 typedef struct SuperHCPUListState {
68 fprintf_function cpu_fprintf;
72 /* Sort alphabetically by type name. */
73 static gint superh_cpu_list_compare(gconstpointer a, gconstpointer b)
75 ObjectClass *class_a = (ObjectClass *)a;
76 ObjectClass *class_b = (ObjectClass *)b;
77 const char *name_a, *name_b;
79 name_a = object_class_get_name(class_a);
80 name_b = object_class_get_name(class_b);
81 return strcmp(name_a, name_b);
84 static void superh_cpu_list_entry(gpointer data, gpointer user_data)
86 ObjectClass *oc = data;
87 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
88 SuperHCPUListState *s = user_data;
90 (*s->cpu_fprintf)(s->file, "%s\n",
94 void sh4_cpu_list(FILE *f, fprintf_function cpu_fprintf)
96 SuperHCPUListState s = {
97 .cpu_fprintf = cpu_fprintf,
102 list = object_class_get_list(TYPE_SUPERH_CPU, false);
103 list = g_slist_sort(list, superh_cpu_list_compare);
104 g_slist_foreach(list, superh_cpu_list_entry, &s);
108 static gint superh_cpu_name_compare(gconstpointer a, gconstpointer b)
110 const SuperHCPUClass *scc = SUPERH_CPU_CLASS(a);
111 const char *name = b;
113 return strcasecmp(scc->name, name);
116 static ObjectClass *superh_cpu_class_by_name(const char *cpu_model)
121 if (cpu_model == NULL) {
124 if (strcasecmp(cpu_model, "any") == 0) {
125 return object_class_by_name(TYPE_SH7750R_CPU);
128 oc = object_class_by_name(cpu_model);
129 if (oc != NULL && object_class_dynamic_cast(oc, TYPE_SUPERH_CPU) != NULL
130 && !object_class_is_abstract(oc)) {
135 list = object_class_get_list(TYPE_SUPERH_CPU, false);
136 item = g_slist_find_custom(list, cpu_model, superh_cpu_name_compare);
144 SuperHCPU *cpu_sh4_init(const char *cpu_model)
149 oc = superh_cpu_class_by_name(cpu_model);
153 cpu = SUPERH_CPU(object_new(object_class_get_name(oc)));
155 object_property_set_bool(OBJECT(cpu), true, "realized", NULL);
160 static void sh7750r_cpu_initfn(Object *obj)
162 SuperHCPU *cpu = SUPERH_CPU(obj);
163 CPUSH4State *env = &cpu->env;
165 env->id = SH_CPU_SH7750R;
166 env->features = SH_FEATURE_BCR3_AND_BCR4;
169 static void sh7750r_class_init(ObjectClass *oc, void *data)
171 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
173 scc->name = "SH7750R";
174 scc->pvr = 0x00050000;
175 scc->prr = 0x00000100;
176 scc->cvr = 0x00110000;
179 static const TypeInfo sh7750r_type_info = {
180 .name = TYPE_SH7750R_CPU,
181 .parent = TYPE_SUPERH_CPU,
182 .class_init = sh7750r_class_init,
183 .instance_init = sh7750r_cpu_initfn,
186 static void sh7751r_cpu_initfn(Object *obj)
188 SuperHCPU *cpu = SUPERH_CPU(obj);
189 CPUSH4State *env = &cpu->env;
191 env->id = SH_CPU_SH7751R;
192 env->features = SH_FEATURE_BCR3_AND_BCR4;
195 static void sh7751r_class_init(ObjectClass *oc, void *data)
197 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
199 scc->name = "SH7751R";
200 scc->pvr = 0x04050005;
201 scc->prr = 0x00000113;
202 scc->cvr = 0x00110000; /* Neutered caches, should be 0x20480000 */
205 static const TypeInfo sh7751r_type_info = {
206 .name = TYPE_SH7751R_CPU,
207 .parent = TYPE_SUPERH_CPU,
208 .class_init = sh7751r_class_init,
209 .instance_init = sh7751r_cpu_initfn,
212 static void sh7785_cpu_initfn(Object *obj)
214 SuperHCPU *cpu = SUPERH_CPU(obj);
215 CPUSH4State *env = &cpu->env;
217 env->id = SH_CPU_SH7785;
218 env->features = SH_FEATURE_SH4A;
221 static void sh7785_class_init(ObjectClass *oc, void *data)
223 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
225 scc->name = "SH7785";
226 scc->pvr = 0x10300700;
227 scc->prr = 0x00000200;
228 scc->cvr = 0x71440211;
231 static const TypeInfo sh7785_type_info = {
232 .name = TYPE_SH7785_CPU,
233 .parent = TYPE_SUPERH_CPU,
234 .class_init = sh7785_class_init,
235 .instance_init = sh7785_cpu_initfn,
238 static void superh_cpu_realizefn(DeviceState *dev, Error **errp)
240 CPUState *cs = CPU(dev);
241 SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(dev);
246 scc->parent_realize(dev, errp);
249 static void superh_cpu_initfn(Object *obj)
251 CPUState *cs = CPU(obj);
252 SuperHCPU *cpu = SUPERH_CPU(obj);
253 CPUSH4State *env = &cpu->env;
258 env->movcal_backup_tail = &(env->movcal_backup);
261 sh4_translate_init();
265 static const VMStateDescription vmstate_sh_cpu = {
270 static void superh_cpu_class_init(ObjectClass *oc, void *data)
272 DeviceClass *dc = DEVICE_CLASS(oc);
273 CPUClass *cc = CPU_CLASS(oc);
274 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
276 scc->parent_realize = dc->realize;
277 dc->realize = superh_cpu_realizefn;
279 scc->parent_reset = cc->reset;
280 cc->reset = superh_cpu_reset;
282 cc->class_by_name = superh_cpu_class_by_name;
283 cc->do_interrupt = superh_cpu_do_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 #ifndef CONFIG_USER_ONLY
290 cc->get_phys_page_debug = superh_cpu_get_phys_page_debug;
292 dc->vmsd = &vmstate_sh_cpu;
293 cc->gdb_num_core_regs = 59;
296 static const TypeInfo superh_cpu_type_info = {
297 .name = TYPE_SUPERH_CPU,
299 .instance_size = sizeof(SuperHCPU),
300 .instance_init = superh_cpu_initfn,
302 .class_size = sizeof(SuperHCPUClass),
303 .class_init = superh_cpu_class_init,
306 static void superh_cpu_register_types(void)
308 type_register_static(&superh_cpu_type_info);
309 type_register_static(&sh7750r_type_info);
310 type_register_static(&sh7751r_type_info);
311 type_register_static(&sh7785_type_info);
314 type_init(superh_cpu_register_types)