1 /* 2 * QEMU SuperH CPU 3 * 4 * Copyright (c) 2005 Samuel Tardieu 5 * Copyright (c) 2012 SUSE LINUX Products GmbH 6 * 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. 11 * 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. 16 * 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> 20 */ 21 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" 28 29 30 static void superh_cpu_set_pc(CPUState *cs, vaddr value) 31 { 32 SuperHCPU *cpu = SUPERH_CPU(cs); 33 34 cpu->env.pc = value; 35 } 36 37 static void superh_cpu_synchronize_from_tb(CPUState *cs, TranslationBlock *tb) 38 { 39 SuperHCPU *cpu = SUPERH_CPU(cs); 40 41 cpu->env.pc = tb->pc; 42 cpu->env.flags = tb->flags & TB_FLAG_ENVFLAGS_MASK; 43 } 44 45 static bool superh_cpu_has_work(CPUState *cs) 46 { 47 return cs->interrupt_request & CPU_INTERRUPT_HARD; 48 } 49 50 /* CPUClass::reset() */ 51 static void superh_cpu_reset(CPUState *s) 52 { 53 SuperHCPU *cpu = SUPERH_CPU(s); 54 SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(cpu); 55 CPUSH4State *env = &cpu->env; 56 57 scc->parent_reset(s); 58 59 memset(env, 0, offsetof(CPUSH4State, end_reset_fields)); 60 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); 74 } 75 76 static void superh_cpu_disas_set_info(CPUState *cpu, disassemble_info *info) 77 { 78 info->mach = bfd_mach_sh4; 79 info->print_insn = print_insn_sh; 80 } 81 82 typedef struct SuperHCPUListState { 83 fprintf_function cpu_fprintf; 84 FILE *file; 85 } SuperHCPUListState; 86 87 /* Sort alphabetically by type name. */ 88 static gint superh_cpu_list_compare(gconstpointer a, gconstpointer b) 89 { 90 ObjectClass *class_a = (ObjectClass *)a; 91 ObjectClass *class_b = (ObjectClass *)b; 92 const char *name_a, *name_b; 93 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); 97 } 98 99 static void superh_cpu_list_entry(gpointer data, gpointer user_data) 100 { 101 ObjectClass *oc = data; 102 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc); 103 SuperHCPUListState *s = user_data; 104 105 (*s->cpu_fprintf)(s->file, "%s\n", 106 scc->name); 107 } 108 109 void sh4_cpu_list(FILE *f, fprintf_function cpu_fprintf) 110 { 111 SuperHCPUListState s = { 112 .cpu_fprintf = cpu_fprintf, 113 .file = f, 114 }; 115 GSList *list; 116 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); 121 } 122 123 static gint superh_cpu_name_compare(gconstpointer a, gconstpointer b) 124 { 125 const SuperHCPUClass *scc = SUPERH_CPU_CLASS(a); 126 const char *name = b; 127 128 return strcasecmp(scc->name, name); 129 } 130 131 static ObjectClass *superh_cpu_class_by_name(const char *cpu_model) 132 { 133 ObjectClass *oc; 134 GSList *list, *item; 135 136 if (cpu_model == NULL) { 137 return NULL; 138 } 139 if (strcasecmp(cpu_model, "any") == 0) { 140 return object_class_by_name(TYPE_SH7750R_CPU); 141 } 142 143 oc = object_class_by_name(cpu_model); 144 if (oc != NULL && object_class_dynamic_cast(oc, TYPE_SUPERH_CPU) != NULL 145 && !object_class_is_abstract(oc)) { 146 return oc; 147 } 148 149 oc = NULL; 150 list = object_class_get_list(TYPE_SUPERH_CPU, false); 151 item = g_slist_find_custom(list, cpu_model, superh_cpu_name_compare); 152 if (item != NULL) { 153 oc = item->data; 154 } 155 g_slist_free(list); 156 return oc; 157 } 158 159 static void sh7750r_cpu_initfn(Object *obj) 160 { 161 SuperHCPU *cpu = SUPERH_CPU(obj); 162 CPUSH4State *env = &cpu->env; 163 164 env->id = SH_CPU_SH7750R; 165 env->features = SH_FEATURE_BCR3_AND_BCR4; 166 } 167 168 static void sh7750r_class_init(ObjectClass *oc, void *data) 169 { 170 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc); 171 172 scc->name = "SH7750R"; 173 scc->pvr = 0x00050000; 174 scc->prr = 0x00000100; 175 scc->cvr = 0x00110000; 176 } 177 178 static const TypeInfo sh7750r_type_info = { 179 .name = TYPE_SH7750R_CPU, 180 .parent = TYPE_SUPERH_CPU, 181 .class_init = sh7750r_class_init, 182 .instance_init = sh7750r_cpu_initfn, 183 }; 184 185 static void sh7751r_cpu_initfn(Object *obj) 186 { 187 SuperHCPU *cpu = SUPERH_CPU(obj); 188 CPUSH4State *env = &cpu->env; 189 190 env->id = SH_CPU_SH7751R; 191 env->features = SH_FEATURE_BCR3_AND_BCR4; 192 } 193 194 static void sh7751r_class_init(ObjectClass *oc, void *data) 195 { 196 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc); 197 198 scc->name = "SH7751R"; 199 scc->pvr = 0x04050005; 200 scc->prr = 0x00000113; 201 scc->cvr = 0x00110000; /* Neutered caches, should be 0x20480000 */ 202 } 203 204 static const TypeInfo sh7751r_type_info = { 205 .name = TYPE_SH7751R_CPU, 206 .parent = TYPE_SUPERH_CPU, 207 .class_init = sh7751r_class_init, 208 .instance_init = sh7751r_cpu_initfn, 209 }; 210 211 static void sh7785_cpu_initfn(Object *obj) 212 { 213 SuperHCPU *cpu = SUPERH_CPU(obj); 214 CPUSH4State *env = &cpu->env; 215 216 env->id = SH_CPU_SH7785; 217 env->features = SH_FEATURE_SH4A; 218 } 219 220 static void sh7785_class_init(ObjectClass *oc, void *data) 221 { 222 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc); 223 224 scc->name = "SH7785"; 225 scc->pvr = 0x10300700; 226 scc->prr = 0x00000200; 227 scc->cvr = 0x71440211; 228 } 229 230 static const TypeInfo sh7785_type_info = { 231 .name = TYPE_SH7785_CPU, 232 .parent = TYPE_SUPERH_CPU, 233 .class_init = sh7785_class_init, 234 .instance_init = sh7785_cpu_initfn, 235 }; 236 237 static void superh_cpu_realizefn(DeviceState *dev, Error **errp) 238 { 239 CPUState *cs = CPU(dev); 240 SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(dev); 241 Error *local_err = NULL; 242 243 cpu_exec_realizefn(cs, &local_err); 244 if (local_err != NULL) { 245 error_propagate(errp, local_err); 246 return; 247 } 248 249 cpu_reset(cs); 250 qemu_init_vcpu(cs); 251 252 scc->parent_realize(dev, errp); 253 } 254 255 static void superh_cpu_initfn(Object *obj) 256 { 257 CPUState *cs = CPU(obj); 258 SuperHCPU *cpu = SUPERH_CPU(obj); 259 CPUSH4State *env = &cpu->env; 260 261 cs->env_ptr = env; 262 263 env->movcal_backup_tail = &(env->movcal_backup); 264 265 if (tcg_enabled()) { 266 sh4_translate_init(); 267 } 268 } 269 270 static const VMStateDescription vmstate_sh_cpu = { 271 .name = "cpu", 272 .unmigratable = 1, 273 }; 274 275 static void superh_cpu_class_init(ObjectClass *oc, void *data) 276 { 277 DeviceClass *dc = DEVICE_CLASS(oc); 278 CPUClass *cc = CPU_CLASS(oc); 279 SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc); 280 281 scc->parent_realize = dc->realize; 282 dc->realize = superh_cpu_realizefn; 283 284 scc->parent_reset = cc->reset; 285 cc->reset = superh_cpu_reset; 286 287 cc->class_by_name = superh_cpu_class_by_name; 288 cc->has_work = superh_cpu_has_work; 289 cc->do_interrupt = superh_cpu_do_interrupt; 290 cc->cpu_exec_interrupt = superh_cpu_exec_interrupt; 291 cc->dump_state = superh_cpu_dump_state; 292 cc->set_pc = superh_cpu_set_pc; 293 cc->synchronize_from_tb = superh_cpu_synchronize_from_tb; 294 cc->gdb_read_register = superh_cpu_gdb_read_register; 295 cc->gdb_write_register = superh_cpu_gdb_write_register; 296 #ifdef CONFIG_USER_ONLY 297 cc->handle_mmu_fault = superh_cpu_handle_mmu_fault; 298 #else 299 cc->do_unaligned_access = superh_cpu_do_unaligned_access; 300 cc->get_phys_page_debug = superh_cpu_get_phys_page_debug; 301 #endif 302 cc->disas_set_info = superh_cpu_disas_set_info; 303 304 cc->gdb_num_core_regs = 59; 305 306 dc->vmsd = &vmstate_sh_cpu; 307 } 308 309 static const TypeInfo superh_cpu_type_info = { 310 .name = TYPE_SUPERH_CPU, 311 .parent = TYPE_CPU, 312 .instance_size = sizeof(SuperHCPU), 313 .instance_init = superh_cpu_initfn, 314 .abstract = true, 315 .class_size = sizeof(SuperHCPUClass), 316 .class_init = superh_cpu_class_init, 317 }; 318 319 static void superh_cpu_register_types(void) 320 { 321 type_register_static(&superh_cpu_type_info); 322 type_register_static(&sh7750r_type_info); 323 type_register_static(&sh7751r_type_info); 324 type_register_static(&sh7785_type_info); 325 } 326 327 type_init(superh_cpu_register_types) 328