Merge remote-tracking branch 'remotes/armbru/tags/pull-build-2019-07-02-v2' into...
[qemu/ar7.git] / target / riscv / cpu.c
blobf8d07bd20ad7634785a560d7b208be66f5b92191
1 /*
2 * QEMU RISC-V CPU
4 * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
5 * Copyright (c) 2017-2018 SiFive, Inc.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2 or later, as published by the Free Software Foundation.
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "qemu/qemu-print.h"
22 #include "qemu/ctype.h"
23 #include "qemu/log.h"
24 #include "cpu.h"
25 #include "exec/exec-all.h"
26 #include "qapi/error.h"
27 #include "qemu/error-report.h"
28 #include "hw/qdev-properties.h"
29 #include "migration/vmstate.h"
31 /* RISC-V CPU definitions */
33 static const char riscv_exts[26] = "IEMAFDQCLBJTPVNSUHKORWXYZG";
35 const char * const riscv_int_regnames[] = {
36 "zero", "ra", "sp", "gp", "tp", "t0", "t1", "t2",
37 "s0", "s1", "a0", "a1", "a2", "a3", "a4", "a5",
38 "a6", "a7", "s2", "s3", "s4", "s5", "s6", "s7",
39 "s8", "s9", "s10", "s11", "t3", "t4", "t5", "t6"
42 const char * const riscv_fpr_regnames[] = {
43 "ft0", "ft1", "ft2", "ft3", "ft4", "ft5", "ft6", "ft7",
44 "fs0", "fs1", "fa0", "fa1", "fa2", "fa3", "fa4", "fa5",
45 "fa6", "fa7", "fs2", "fs3", "fs4", "fs5", "fs6", "fs7",
46 "fs8", "fs9", "fs10", "fs11", "ft8", "ft9", "ft10", "ft11"
49 const char * const riscv_excp_names[] = {
50 "misaligned_fetch",
51 "fault_fetch",
52 "illegal_instruction",
53 "breakpoint",
54 "misaligned_load",
55 "fault_load",
56 "misaligned_store",
57 "fault_store",
58 "user_ecall",
59 "supervisor_ecall",
60 "hypervisor_ecall",
61 "machine_ecall",
62 "exec_page_fault",
63 "load_page_fault",
64 "reserved",
65 "store_page_fault"
68 const char * const riscv_intr_names[] = {
69 "u_software",
70 "s_software",
71 "h_software",
72 "m_software",
73 "u_timer",
74 "s_timer",
75 "h_timer",
76 "m_timer",
77 "u_external",
78 "s_external",
79 "h_external",
80 "m_external",
81 "reserved",
82 "reserved",
83 "reserved",
84 "reserved"
87 static void set_misa(CPURISCVState *env, target_ulong misa)
89 env->misa_mask = env->misa = misa;
92 static void set_priv_version(CPURISCVState *env, int priv_ver)
94 env->priv_ver = priv_ver;
97 static void set_feature(CPURISCVState *env, int feature)
99 env->features |= (1ULL << feature);
102 static void set_resetvec(CPURISCVState *env, int resetvec)
104 #ifndef CONFIG_USER_ONLY
105 env->resetvec = resetvec;
106 #endif
109 static void riscv_any_cpu_init(Object *obj)
111 CPURISCVState *env = &RISCV_CPU(obj)->env;
112 set_misa(env, RVXLEN | RVI | RVM | RVA | RVF | RVD | RVC | RVU);
113 set_priv_version(env, PRIV_VERSION_1_11_0);
114 set_resetvec(env, DEFAULT_RSTVEC);
117 #if defined(TARGET_RISCV32)
119 static void riscv_base32_cpu_init(Object *obj)
121 CPURISCVState *env = &RISCV_CPU(obj)->env;
122 /* We set this in the realise function */
123 set_misa(env, 0);
126 static void rv32gcsu_priv1_09_1_cpu_init(Object *obj)
128 CPURISCVState *env = &RISCV_CPU(obj)->env;
129 set_misa(env, RV32 | RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
130 set_priv_version(env, PRIV_VERSION_1_09_1);
131 set_resetvec(env, DEFAULT_RSTVEC);
132 set_feature(env, RISCV_FEATURE_MMU);
133 set_feature(env, RISCV_FEATURE_PMP);
136 static void rv32gcsu_priv1_10_0_cpu_init(Object *obj)
138 CPURISCVState *env = &RISCV_CPU(obj)->env;
139 set_misa(env, RV32 | RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
140 set_priv_version(env, PRIV_VERSION_1_10_0);
141 set_resetvec(env, DEFAULT_RSTVEC);
142 set_feature(env, RISCV_FEATURE_MMU);
143 set_feature(env, RISCV_FEATURE_PMP);
146 static void rv32imacu_nommu_cpu_init(Object *obj)
148 CPURISCVState *env = &RISCV_CPU(obj)->env;
149 set_misa(env, RV32 | RVI | RVM | RVA | RVC | RVU);
150 set_priv_version(env, PRIV_VERSION_1_10_0);
151 set_resetvec(env, DEFAULT_RSTVEC);
152 set_feature(env, RISCV_FEATURE_PMP);
155 #elif defined(TARGET_RISCV64)
157 static void riscv_base64_cpu_init(Object *obj)
159 CPURISCVState *env = &RISCV_CPU(obj)->env;
160 /* We set this in the realise function */
161 set_misa(env, 0);
164 static void rv64gcsu_priv1_09_1_cpu_init(Object *obj)
166 CPURISCVState *env = &RISCV_CPU(obj)->env;
167 set_misa(env, RV64 | RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
168 set_priv_version(env, PRIV_VERSION_1_09_1);
169 set_resetvec(env, DEFAULT_RSTVEC);
170 set_feature(env, RISCV_FEATURE_MMU);
171 set_feature(env, RISCV_FEATURE_PMP);
174 static void rv64gcsu_priv1_10_0_cpu_init(Object *obj)
176 CPURISCVState *env = &RISCV_CPU(obj)->env;
177 set_misa(env, RV64 | RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
178 set_priv_version(env, PRIV_VERSION_1_10_0);
179 set_resetvec(env, DEFAULT_RSTVEC);
180 set_feature(env, RISCV_FEATURE_MMU);
181 set_feature(env, RISCV_FEATURE_PMP);
184 static void rv64imacu_nommu_cpu_init(Object *obj)
186 CPURISCVState *env = &RISCV_CPU(obj)->env;
187 set_misa(env, RV64 | RVI | RVM | RVA | RVC | RVU);
188 set_priv_version(env, PRIV_VERSION_1_10_0);
189 set_resetvec(env, DEFAULT_RSTVEC);
190 set_feature(env, RISCV_FEATURE_PMP);
193 #endif
195 static ObjectClass *riscv_cpu_class_by_name(const char *cpu_model)
197 ObjectClass *oc;
198 char *typename;
199 char **cpuname;
201 cpuname = g_strsplit(cpu_model, ",", 1);
202 typename = g_strdup_printf(RISCV_CPU_TYPE_NAME("%s"), cpuname[0]);
203 oc = object_class_by_name(typename);
204 g_strfreev(cpuname);
205 g_free(typename);
206 if (!oc || !object_class_dynamic_cast(oc, TYPE_RISCV_CPU) ||
207 object_class_is_abstract(oc)) {
208 return NULL;
210 return oc;
213 static void riscv_cpu_dump_state(CPUState *cs, FILE *f, int flags)
215 RISCVCPU *cpu = RISCV_CPU(cs);
216 CPURISCVState *env = &cpu->env;
217 int i;
219 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "pc ", env->pc);
220 #ifndef CONFIG_USER_ONLY
221 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mhartid ", env->mhartid);
222 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mstatus ", env->mstatus);
223 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mip ",
224 (target_ulong)atomic_read(&env->mip));
225 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mie ", env->mie);
226 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mideleg ", env->mideleg);
227 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "medeleg ", env->medeleg);
228 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mtvec ", env->mtvec);
229 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mepc ", env->mepc);
230 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mcause ", env->mcause);
231 #endif
233 for (i = 0; i < 32; i++) {
234 qemu_fprintf(f, " %s " TARGET_FMT_lx,
235 riscv_int_regnames[i], env->gpr[i]);
236 if ((i & 3) == 3) {
237 qemu_fprintf(f, "\n");
240 if (flags & CPU_DUMP_FPU) {
241 for (i = 0; i < 32; i++) {
242 qemu_fprintf(f, " %s %016" PRIx64,
243 riscv_fpr_regnames[i], env->fpr[i]);
244 if ((i & 3) == 3) {
245 qemu_fprintf(f, "\n");
251 static void riscv_cpu_set_pc(CPUState *cs, vaddr value)
253 RISCVCPU *cpu = RISCV_CPU(cs);
254 CPURISCVState *env = &cpu->env;
255 env->pc = value;
258 static void riscv_cpu_synchronize_from_tb(CPUState *cs, TranslationBlock *tb)
260 RISCVCPU *cpu = RISCV_CPU(cs);
261 CPURISCVState *env = &cpu->env;
262 env->pc = tb->pc;
265 static bool riscv_cpu_has_work(CPUState *cs)
267 #ifndef CONFIG_USER_ONLY
268 RISCVCPU *cpu = RISCV_CPU(cs);
269 CPURISCVState *env = &cpu->env;
271 * Definition of the WFI instruction requires it to ignore the privilege
272 * mode and delegation registers, but respect individual enables
274 return (atomic_read(&env->mip) & env->mie) != 0;
275 #else
276 return true;
277 #endif
280 void restore_state_to_opc(CPURISCVState *env, TranslationBlock *tb,
281 target_ulong *data)
283 env->pc = data[0];
286 static void riscv_cpu_reset(CPUState *cs)
288 RISCVCPU *cpu = RISCV_CPU(cs);
289 RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(cpu);
290 CPURISCVState *env = &cpu->env;
292 mcc->parent_reset(cs);
293 #ifndef CONFIG_USER_ONLY
294 env->priv = PRV_M;
295 env->mstatus &= ~(MSTATUS_MIE | MSTATUS_MPRV);
296 env->mcause = 0;
297 env->pc = env->resetvec;
298 #endif
299 cs->exception_index = EXCP_NONE;
300 env->load_res = -1;
301 set_default_nan_mode(1, &env->fp_status);
304 static void riscv_cpu_disas_set_info(CPUState *s, disassemble_info *info)
306 #if defined(TARGET_RISCV32)
307 info->print_insn = print_insn_riscv32;
308 #elif defined(TARGET_RISCV64)
309 info->print_insn = print_insn_riscv64;
310 #endif
313 static void riscv_cpu_realize(DeviceState *dev, Error **errp)
315 CPUState *cs = CPU(dev);
316 RISCVCPU *cpu = RISCV_CPU(dev);
317 CPURISCVState *env = &cpu->env;
318 RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(dev);
319 int priv_version = PRIV_VERSION_1_11_0;
320 target_ulong target_misa = 0;
321 Error *local_err = NULL;
323 cpu_exec_realizefn(cs, &local_err);
324 if (local_err != NULL) {
325 error_propagate(errp, local_err);
326 return;
329 if (cpu->cfg.priv_spec) {
330 if (!g_strcmp0(cpu->cfg.priv_spec, "v1.11.0")) {
331 priv_version = PRIV_VERSION_1_11_0;
332 } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.10.0")) {
333 priv_version = PRIV_VERSION_1_10_0;
334 } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.9.1")) {
335 priv_version = PRIV_VERSION_1_09_1;
336 } else {
337 error_setg(errp,
338 "Unsupported privilege spec version '%s'",
339 cpu->cfg.priv_spec);
340 return;
344 set_priv_version(env, priv_version);
345 set_resetvec(env, DEFAULT_RSTVEC);
347 if (cpu->cfg.mmu) {
348 set_feature(env, RISCV_FEATURE_MMU);
351 if (cpu->cfg.pmp) {
352 set_feature(env, RISCV_FEATURE_PMP);
355 /* If misa isn't set (rv32 and rv64 machines) set it here */
356 if (!env->misa) {
357 /* Do some ISA extension error checking */
358 if (cpu->cfg.ext_i && cpu->cfg.ext_e) {
359 error_setg(errp,
360 "I and E extensions are incompatible");
361 return;
364 if (!cpu->cfg.ext_i && !cpu->cfg.ext_e) {
365 error_setg(errp,
366 "Either I or E extension must be set");
367 return;
370 if (cpu->cfg.ext_g && !(cpu->cfg.ext_i & cpu->cfg.ext_m &
371 cpu->cfg.ext_a & cpu->cfg.ext_f &
372 cpu->cfg.ext_d)) {
373 warn_report("Setting G will also set IMAFD");
374 cpu->cfg.ext_i = true;
375 cpu->cfg.ext_m = true;
376 cpu->cfg.ext_a = true;
377 cpu->cfg.ext_f = true;
378 cpu->cfg.ext_d = true;
381 /* Set the ISA extensions, checks should have happened above */
382 if (cpu->cfg.ext_i) {
383 target_misa |= RVI;
385 if (cpu->cfg.ext_e) {
386 target_misa |= RVE;
388 if (cpu->cfg.ext_m) {
389 target_misa |= RVM;
391 if (cpu->cfg.ext_a) {
392 target_misa |= RVA;
394 if (cpu->cfg.ext_f) {
395 target_misa |= RVF;
397 if (cpu->cfg.ext_d) {
398 target_misa |= RVD;
400 if (cpu->cfg.ext_c) {
401 target_misa |= RVC;
403 if (cpu->cfg.ext_s) {
404 target_misa |= RVS;
406 if (cpu->cfg.ext_u) {
407 target_misa |= RVU;
410 set_misa(env, RVXLEN | target_misa);
413 riscv_cpu_register_gdb_regs_for_features(cs);
415 qemu_init_vcpu(cs);
416 cpu_reset(cs);
418 mcc->parent_realize(dev, errp);
421 static void riscv_cpu_init(Object *obj)
423 RISCVCPU *cpu = RISCV_CPU(obj);
425 cpu_set_cpustate_pointers(cpu);
428 static const VMStateDescription vmstate_riscv_cpu = {
429 .name = "cpu",
430 .unmigratable = 1,
433 static Property riscv_cpu_properties[] = {
434 DEFINE_PROP_BOOL("i", RISCVCPU, cfg.ext_i, true),
435 DEFINE_PROP_BOOL("e", RISCVCPU, cfg.ext_e, false),
436 DEFINE_PROP_BOOL("g", RISCVCPU, cfg.ext_g, true),
437 DEFINE_PROP_BOOL("m", RISCVCPU, cfg.ext_m, true),
438 DEFINE_PROP_BOOL("a", RISCVCPU, cfg.ext_a, true),
439 DEFINE_PROP_BOOL("f", RISCVCPU, cfg.ext_f, true),
440 DEFINE_PROP_BOOL("d", RISCVCPU, cfg.ext_d, true),
441 DEFINE_PROP_BOOL("c", RISCVCPU, cfg.ext_c, true),
442 DEFINE_PROP_BOOL("s", RISCVCPU, cfg.ext_s, true),
443 DEFINE_PROP_BOOL("u", RISCVCPU, cfg.ext_u, true),
444 DEFINE_PROP_BOOL("Counters", RISCVCPU, cfg.ext_counters, true),
445 DEFINE_PROP_BOOL("Zifencei", RISCVCPU, cfg.ext_ifencei, true),
446 DEFINE_PROP_BOOL("Zicsr", RISCVCPU, cfg.ext_icsr, true),
447 DEFINE_PROP_STRING("priv_spec", RISCVCPU, cfg.priv_spec),
448 DEFINE_PROP_BOOL("mmu", RISCVCPU, cfg.mmu, true),
449 DEFINE_PROP_BOOL("pmp", RISCVCPU, cfg.pmp, true),
450 DEFINE_PROP_END_OF_LIST(),
453 static void riscv_cpu_class_init(ObjectClass *c, void *data)
455 RISCVCPUClass *mcc = RISCV_CPU_CLASS(c);
456 CPUClass *cc = CPU_CLASS(c);
457 DeviceClass *dc = DEVICE_CLASS(c);
459 device_class_set_parent_realize(dc, riscv_cpu_realize,
460 &mcc->parent_realize);
462 mcc->parent_reset = cc->reset;
463 cc->reset = riscv_cpu_reset;
465 cc->class_by_name = riscv_cpu_class_by_name;
466 cc->has_work = riscv_cpu_has_work;
467 cc->do_interrupt = riscv_cpu_do_interrupt;
468 cc->cpu_exec_interrupt = riscv_cpu_exec_interrupt;
469 cc->dump_state = riscv_cpu_dump_state;
470 cc->set_pc = riscv_cpu_set_pc;
471 cc->synchronize_from_tb = riscv_cpu_synchronize_from_tb;
472 cc->gdb_read_register = riscv_cpu_gdb_read_register;
473 cc->gdb_write_register = riscv_cpu_gdb_write_register;
474 cc->gdb_num_core_regs = 33;
475 #if defined(TARGET_RISCV32)
476 cc->gdb_core_xml_file = "riscv-32bit-cpu.xml";
477 #elif defined(TARGET_RISCV64)
478 cc->gdb_core_xml_file = "riscv-64bit-cpu.xml";
479 #endif
480 cc->gdb_stop_before_watchpoint = true;
481 cc->disas_set_info = riscv_cpu_disas_set_info;
482 #ifndef CONFIG_USER_ONLY
483 cc->do_unassigned_access = riscv_cpu_unassigned_access;
484 cc->do_unaligned_access = riscv_cpu_do_unaligned_access;
485 cc->get_phys_page_debug = riscv_cpu_get_phys_page_debug;
486 #endif
487 #ifdef CONFIG_TCG
488 cc->tcg_initialize = riscv_translate_init;
489 cc->tlb_fill = riscv_cpu_tlb_fill;
490 #endif
491 /* For now, mark unmigratable: */
492 cc->vmsd = &vmstate_riscv_cpu;
493 dc->props = riscv_cpu_properties;
496 char *riscv_isa_string(RISCVCPU *cpu)
498 int i;
499 const size_t maxlen = sizeof("rv128") + sizeof(riscv_exts) + 1;
500 char *isa_str = g_new(char, maxlen);
501 char *p = isa_str + snprintf(isa_str, maxlen, "rv%d", TARGET_LONG_BITS);
502 for (i = 0; i < sizeof(riscv_exts); i++) {
503 if (cpu->env.misa & RV(riscv_exts[i])) {
504 *p++ = qemu_tolower(riscv_exts[i]);
507 *p = '\0';
508 return isa_str;
511 static gint riscv_cpu_list_compare(gconstpointer a, gconstpointer b)
513 ObjectClass *class_a = (ObjectClass *)a;
514 ObjectClass *class_b = (ObjectClass *)b;
515 const char *name_a, *name_b;
517 name_a = object_class_get_name(class_a);
518 name_b = object_class_get_name(class_b);
519 return strcmp(name_a, name_b);
522 static void riscv_cpu_list_entry(gpointer data, gpointer user_data)
524 const char *typename = object_class_get_name(OBJECT_CLASS(data));
525 int len = strlen(typename) - strlen(RISCV_CPU_TYPE_SUFFIX);
527 qemu_printf("%.*s\n", len, typename);
530 void riscv_cpu_list(void)
532 GSList *list;
534 list = object_class_get_list(TYPE_RISCV_CPU, false);
535 list = g_slist_sort(list, riscv_cpu_list_compare);
536 g_slist_foreach(list, riscv_cpu_list_entry, NULL);
537 g_slist_free(list);
540 #define DEFINE_CPU(type_name, initfn) \
542 .name = type_name, \
543 .parent = TYPE_RISCV_CPU, \
544 .instance_init = initfn \
547 static const TypeInfo riscv_cpu_type_infos[] = {
549 .name = TYPE_RISCV_CPU,
550 .parent = TYPE_CPU,
551 .instance_size = sizeof(RISCVCPU),
552 .instance_init = riscv_cpu_init,
553 .abstract = true,
554 .class_size = sizeof(RISCVCPUClass),
555 .class_init = riscv_cpu_class_init,
557 DEFINE_CPU(TYPE_RISCV_CPU_ANY, riscv_any_cpu_init),
558 #if defined(TARGET_RISCV32)
559 DEFINE_CPU(TYPE_RISCV_CPU_BASE32, riscv_base32_cpu_init),
560 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E31, rv32imacu_nommu_cpu_init),
561 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U34, rv32gcsu_priv1_10_0_cpu_init),
562 /* Depreacted */
563 DEFINE_CPU(TYPE_RISCV_CPU_RV32IMACU_NOMMU, rv32imacu_nommu_cpu_init),
564 DEFINE_CPU(TYPE_RISCV_CPU_RV32GCSU_V1_09_1, rv32gcsu_priv1_09_1_cpu_init),
565 DEFINE_CPU(TYPE_RISCV_CPU_RV32GCSU_V1_10_0, rv32gcsu_priv1_10_0_cpu_init)
566 #elif defined(TARGET_RISCV64)
567 DEFINE_CPU(TYPE_RISCV_CPU_BASE64, riscv_base64_cpu_init),
568 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E51, rv64imacu_nommu_cpu_init),
569 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U54, rv64gcsu_priv1_10_0_cpu_init),
570 /* Deprecated */
571 DEFINE_CPU(TYPE_RISCV_CPU_RV64IMACU_NOMMU, rv64imacu_nommu_cpu_init),
572 DEFINE_CPU(TYPE_RISCV_CPU_RV64GCSU_V1_09_1, rv64gcsu_priv1_09_1_cpu_init),
573 DEFINE_CPU(TYPE_RISCV_CPU_RV64GCSU_V1_10_0, rv64gcsu_priv1_10_0_cpu_init)
574 #endif
577 DEFINE_TYPES(riscv_cpu_type_infos)