target/riscv: Remove unnecessary riscv_*_names[] declaration
[qemu/ar7.git] / target / riscv / cpu.c
blobaa48bca83092bce31bec736d0587e3e53ce4f24c
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 "internals.h"
26 #include "exec/exec-all.h"
27 #include "qapi/error.h"
28 #include "qemu/error-report.h"
29 #include "hw/qdev-properties.h"
30 #include "migration/vmstate.h"
31 #include "fpu/softfloat-helpers.h"
33 /* RISC-V CPU definitions */
35 static const char riscv_exts[26] = "IEMAFDQCLBJTPVNSUHKORWXYZG";
37 const char * const riscv_int_regnames[] = {
38 "x0/zero", "x1/ra", "x2/sp", "x3/gp", "x4/tp", "x5/t0", "x6/t1",
39 "x7/t2", "x8/s0", "x9/s1", "x10/a0", "x11/a1", "x12/a2", "x13/a3",
40 "x14/a4", "x15/a5", "x16/a6", "x17/a7", "x18/s2", "x19/s3", "x20/s4",
41 "x21/s5", "x22/s6", "x23/s7", "x24/s8", "x25/s9", "x26/s10", "x27/s11",
42 "x28/t3", "x29/t4", "x30/t5", "x31/t6"
45 const char * const riscv_fpr_regnames[] = {
46 "f0/ft0", "f1/ft1", "f2/ft2", "f3/ft3", "f4/ft4", "f5/ft5",
47 "f6/ft6", "f7/ft7", "f8/fs0", "f9/fs1", "f10/fa0", "f11/fa1",
48 "f12/fa2", "f13/fa3", "f14/fa4", "f15/fa5", "f16/fa6", "f17/fa7",
49 "f18/fs2", "f19/fs3", "f20/fs4", "f21/fs5", "f22/fs6", "f23/fs7",
50 "f24/fs8", "f25/fs9", "f26/fs10", "f27/fs11", "f28/ft8", "f29/ft9",
51 "f30/ft10", "f31/ft11"
54 static const char * const riscv_excp_names[] = {
55 "misaligned_fetch",
56 "fault_fetch",
57 "illegal_instruction",
58 "breakpoint",
59 "misaligned_load",
60 "fault_load",
61 "misaligned_store",
62 "fault_store",
63 "user_ecall",
64 "supervisor_ecall",
65 "hypervisor_ecall",
66 "machine_ecall",
67 "exec_page_fault",
68 "load_page_fault",
69 "reserved",
70 "store_page_fault",
71 "reserved",
72 "reserved",
73 "reserved",
74 "reserved",
75 "guest_exec_page_fault",
76 "guest_load_page_fault",
77 "reserved",
78 "guest_store_page_fault",
81 static const char * const riscv_intr_names[] = {
82 "u_software",
83 "s_software",
84 "vs_software",
85 "m_software",
86 "u_timer",
87 "s_timer",
88 "vs_timer",
89 "m_timer",
90 "u_external",
91 "s_external",
92 "vs_external",
93 "m_external",
94 "reserved",
95 "reserved",
96 "reserved",
97 "reserved"
100 const char *riscv_cpu_get_trap_name(target_ulong cause, bool async)
102 if (async) {
103 return (cause < ARRAY_SIZE(riscv_intr_names)) ?
104 riscv_intr_names[cause] : "(unknown)";
105 } else {
106 return (cause < ARRAY_SIZE(riscv_excp_names)) ?
107 riscv_excp_names[cause] : "(unknown)";
111 bool riscv_cpu_is_32bit(CPURISCVState *env)
113 if (env->misa & RV64) {
114 return false;
117 return true;
120 static void set_misa(CPURISCVState *env, target_ulong misa)
122 env->misa_mask = env->misa = misa;
125 static void set_priv_version(CPURISCVState *env, int priv_ver)
127 env->priv_ver = priv_ver;
130 static void set_vext_version(CPURISCVState *env, int vext_ver)
132 env->vext_ver = vext_ver;
135 static void set_feature(CPURISCVState *env, int feature)
137 env->features |= (1ULL << feature);
140 static void set_resetvec(CPURISCVState *env, target_ulong resetvec)
142 #ifndef CONFIG_USER_ONLY
143 env->resetvec = resetvec;
144 #endif
147 static void riscv_any_cpu_init(Object *obj)
149 CPURISCVState *env = &RISCV_CPU(obj)->env;
150 #if defined(TARGET_RISCV32)
151 set_misa(env, RV32 | RVI | RVM | RVA | RVF | RVD | RVC | RVU);
152 #elif defined(TARGET_RISCV64)
153 set_misa(env, RV64 | RVI | RVM | RVA | RVF | RVD | RVC | RVU);
154 #endif
155 set_priv_version(env, PRIV_VERSION_1_11_0);
158 #if defined(TARGET_RISCV64)
159 static void rv64_base_cpu_init(Object *obj)
161 CPURISCVState *env = &RISCV_CPU(obj)->env;
162 /* We set this in the realise function */
163 set_misa(env, RV64);
166 static void rv64_sifive_u_cpu_init(Object *obj)
168 CPURISCVState *env = &RISCV_CPU(obj)->env;
169 set_misa(env, RV64 | RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
170 set_priv_version(env, PRIV_VERSION_1_10_0);
173 static void rv64_sifive_e_cpu_init(Object *obj)
175 CPURISCVState *env = &RISCV_CPU(obj)->env;
176 set_misa(env, RV64 | RVI | RVM | RVA | RVC | RVU);
177 set_priv_version(env, PRIV_VERSION_1_10_0);
178 qdev_prop_set_bit(DEVICE(obj), "mmu", false);
180 #else
181 static void rv32_base_cpu_init(Object *obj)
183 CPURISCVState *env = &RISCV_CPU(obj)->env;
184 /* We set this in the realise function */
185 set_misa(env, RV32);
188 static void rv32_sifive_u_cpu_init(Object *obj)
190 CPURISCVState *env = &RISCV_CPU(obj)->env;
191 set_misa(env, RV32 | RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
192 set_priv_version(env, PRIV_VERSION_1_10_0);
195 static void rv32_sifive_e_cpu_init(Object *obj)
197 CPURISCVState *env = &RISCV_CPU(obj)->env;
198 set_misa(env, RV32 | RVI | RVM | RVA | RVC | RVU);
199 set_priv_version(env, PRIV_VERSION_1_10_0);
200 qdev_prop_set_bit(DEVICE(obj), "mmu", false);
203 static void rv32_ibex_cpu_init(Object *obj)
205 CPURISCVState *env = &RISCV_CPU(obj)->env;
206 set_misa(env, RV32 | RVI | RVM | RVC | RVU);
207 set_priv_version(env, PRIV_VERSION_1_10_0);
208 qdev_prop_set_bit(DEVICE(obj), "mmu", false);
209 qdev_prop_set_bit(DEVICE(obj), "x-epmp", true);
212 static void rv32_imafcu_nommu_cpu_init(Object *obj)
214 CPURISCVState *env = &RISCV_CPU(obj)->env;
215 set_misa(env, RV32 | RVI | RVM | RVA | RVF | RVC | RVU);
216 set_priv_version(env, PRIV_VERSION_1_10_0);
217 set_resetvec(env, DEFAULT_RSTVEC);
218 qdev_prop_set_bit(DEVICE(obj), "mmu", false);
220 #endif
222 static ObjectClass *riscv_cpu_class_by_name(const char *cpu_model)
224 ObjectClass *oc;
225 char *typename;
226 char **cpuname;
228 cpuname = g_strsplit(cpu_model, ",", 1);
229 typename = g_strdup_printf(RISCV_CPU_TYPE_NAME("%s"), cpuname[0]);
230 oc = object_class_by_name(typename);
231 g_strfreev(cpuname);
232 g_free(typename);
233 if (!oc || !object_class_dynamic_cast(oc, TYPE_RISCV_CPU) ||
234 object_class_is_abstract(oc)) {
235 return NULL;
237 return oc;
240 static void riscv_cpu_dump_state(CPUState *cs, FILE *f, int flags)
242 RISCVCPU *cpu = RISCV_CPU(cs);
243 CPURISCVState *env = &cpu->env;
244 int i;
246 #if !defined(CONFIG_USER_ONLY)
247 if (riscv_has_ext(env, RVH)) {
248 qemu_fprintf(f, " %s %d\n", "V = ", riscv_cpu_virt_enabled(env));
250 #endif
251 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "pc ", env->pc);
252 #ifndef CONFIG_USER_ONLY
253 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mhartid ", env->mhartid);
254 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mstatus ", (target_ulong)env->mstatus);
255 if (riscv_cpu_is_32bit(env)) {
256 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mstatush ",
257 (target_ulong)(env->mstatus >> 32));
259 if (riscv_has_ext(env, RVH)) {
260 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "hstatus ", env->hstatus);
261 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "vsstatus ",
262 (target_ulong)env->vsstatus);
264 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mip ", env->mip);
265 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mie ", env->mie);
266 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mideleg ", env->mideleg);
267 if (riscv_has_ext(env, RVH)) {
268 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "hideleg ", env->hideleg);
270 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "medeleg ", env->medeleg);
271 if (riscv_has_ext(env, RVH)) {
272 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "hedeleg ", env->hedeleg);
274 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mtvec ", env->mtvec);
275 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "stvec ", env->stvec);
276 if (riscv_has_ext(env, RVH)) {
277 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "vstvec ", env->vstvec);
279 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mepc ", env->mepc);
280 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "sepc ", env->sepc);
281 if (riscv_has_ext(env, RVH)) {
282 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "vsepc ", env->vsepc);
284 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mcause ", env->mcause);
285 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "scause ", env->scause);
286 if (riscv_has_ext(env, RVH)) {
287 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "vscause ", env->vscause);
289 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mtval ", env->mtval);
290 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "stval ", env->stval);
291 if (riscv_has_ext(env, RVH)) {
292 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "htval ", env->htval);
293 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mtval2 ", env->mtval2);
295 #endif
297 for (i = 0; i < 32; i++) {
298 qemu_fprintf(f, " %s " TARGET_FMT_lx,
299 riscv_int_regnames[i], env->gpr[i]);
300 if ((i & 3) == 3) {
301 qemu_fprintf(f, "\n");
304 if (flags & CPU_DUMP_FPU) {
305 for (i = 0; i < 32; i++) {
306 qemu_fprintf(f, " %s %016" PRIx64,
307 riscv_fpr_regnames[i], env->fpr[i]);
308 if ((i & 3) == 3) {
309 qemu_fprintf(f, "\n");
315 static void riscv_cpu_set_pc(CPUState *cs, vaddr value)
317 RISCVCPU *cpu = RISCV_CPU(cs);
318 CPURISCVState *env = &cpu->env;
319 env->pc = value;
322 static void riscv_cpu_synchronize_from_tb(CPUState *cs,
323 const TranslationBlock *tb)
325 RISCVCPU *cpu = RISCV_CPU(cs);
326 CPURISCVState *env = &cpu->env;
327 env->pc = tb->pc;
330 static bool riscv_cpu_has_work(CPUState *cs)
332 #ifndef CONFIG_USER_ONLY
333 RISCVCPU *cpu = RISCV_CPU(cs);
334 CPURISCVState *env = &cpu->env;
336 * Definition of the WFI instruction requires it to ignore the privilege
337 * mode and delegation registers, but respect individual enables
339 return (env->mip & env->mie) != 0;
340 #else
341 return true;
342 #endif
345 void restore_state_to_opc(CPURISCVState *env, TranslationBlock *tb,
346 target_ulong *data)
348 env->pc = data[0];
351 static void riscv_cpu_reset(DeviceState *dev)
353 CPUState *cs = CPU(dev);
354 RISCVCPU *cpu = RISCV_CPU(cs);
355 RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(cpu);
356 CPURISCVState *env = &cpu->env;
358 mcc->parent_reset(dev);
359 #ifndef CONFIG_USER_ONLY
360 env->priv = PRV_M;
361 env->mstatus &= ~(MSTATUS_MIE | MSTATUS_MPRV);
362 env->mcause = 0;
363 env->pc = env->resetvec;
364 env->two_stage_lookup = false;
365 #endif
366 cs->exception_index = RISCV_EXCP_NONE;
367 env->load_res = -1;
368 set_default_nan_mode(1, &env->fp_status);
371 static void riscv_cpu_disas_set_info(CPUState *s, disassemble_info *info)
373 RISCVCPU *cpu = RISCV_CPU(s);
374 if (riscv_cpu_is_32bit(&cpu->env)) {
375 info->print_insn = print_insn_riscv32;
376 } else {
377 info->print_insn = print_insn_riscv64;
381 static void riscv_cpu_realize(DeviceState *dev, Error **errp)
383 CPUState *cs = CPU(dev);
384 RISCVCPU *cpu = RISCV_CPU(dev);
385 CPURISCVState *env = &cpu->env;
386 RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(dev);
387 int priv_version = PRIV_VERSION_1_11_0;
388 int vext_version = VEXT_VERSION_0_07_1;
389 target_ulong target_misa = env->misa;
390 Error *local_err = NULL;
392 cpu_exec_realizefn(cs, &local_err);
393 if (local_err != NULL) {
394 error_propagate(errp, local_err);
395 return;
398 if (cpu->cfg.priv_spec) {
399 if (!g_strcmp0(cpu->cfg.priv_spec, "v1.11.0")) {
400 priv_version = PRIV_VERSION_1_11_0;
401 } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.10.0")) {
402 priv_version = PRIV_VERSION_1_10_0;
403 } else {
404 error_setg(errp,
405 "Unsupported privilege spec version '%s'",
406 cpu->cfg.priv_spec);
407 return;
411 set_priv_version(env, priv_version);
412 set_vext_version(env, vext_version);
414 if (cpu->cfg.mmu) {
415 set_feature(env, RISCV_FEATURE_MMU);
418 if (cpu->cfg.pmp) {
419 set_feature(env, RISCV_FEATURE_PMP);
422 * Enhanced PMP should only be available
423 * on harts with PMP support
425 if (cpu->cfg.epmp) {
426 set_feature(env, RISCV_FEATURE_EPMP);
430 set_resetvec(env, cpu->cfg.resetvec);
432 /* If only XLEN is set for misa, then set misa from properties */
433 if (env->misa == RV32 || env->misa == RV64) {
434 /* Do some ISA extension error checking */
435 if (cpu->cfg.ext_i && cpu->cfg.ext_e) {
436 error_setg(errp,
437 "I and E extensions are incompatible");
438 return;
441 if (!cpu->cfg.ext_i && !cpu->cfg.ext_e) {
442 error_setg(errp,
443 "Either I or E extension must be set");
444 return;
447 if (cpu->cfg.ext_g && !(cpu->cfg.ext_i & cpu->cfg.ext_m &
448 cpu->cfg.ext_a & cpu->cfg.ext_f &
449 cpu->cfg.ext_d)) {
450 warn_report("Setting G will also set IMAFD");
451 cpu->cfg.ext_i = true;
452 cpu->cfg.ext_m = true;
453 cpu->cfg.ext_a = true;
454 cpu->cfg.ext_f = true;
455 cpu->cfg.ext_d = true;
458 /* Set the ISA extensions, checks should have happened above */
459 if (cpu->cfg.ext_i) {
460 target_misa |= RVI;
462 if (cpu->cfg.ext_e) {
463 target_misa |= RVE;
465 if (cpu->cfg.ext_m) {
466 target_misa |= RVM;
468 if (cpu->cfg.ext_a) {
469 target_misa |= RVA;
471 if (cpu->cfg.ext_f) {
472 target_misa |= RVF;
474 if (cpu->cfg.ext_d) {
475 target_misa |= RVD;
477 if (cpu->cfg.ext_c) {
478 target_misa |= RVC;
480 if (cpu->cfg.ext_s) {
481 target_misa |= RVS;
483 if (cpu->cfg.ext_u) {
484 target_misa |= RVU;
486 if (cpu->cfg.ext_h) {
487 target_misa |= RVH;
489 if (cpu->cfg.ext_v) {
490 target_misa |= RVV;
491 if (!is_power_of_2(cpu->cfg.vlen)) {
492 error_setg(errp,
493 "Vector extension VLEN must be power of 2");
494 return;
496 if (cpu->cfg.vlen > RV_VLEN_MAX || cpu->cfg.vlen < 128) {
497 error_setg(errp,
498 "Vector extension implementation only supports VLEN "
499 "in the range [128, %d]", RV_VLEN_MAX);
500 return;
502 if (!is_power_of_2(cpu->cfg.elen)) {
503 error_setg(errp,
504 "Vector extension ELEN must be power of 2");
505 return;
507 if (cpu->cfg.elen > 64 || cpu->cfg.vlen < 8) {
508 error_setg(errp,
509 "Vector extension implementation only supports ELEN "
510 "in the range [8, 64]");
511 return;
513 if (cpu->cfg.vext_spec) {
514 if (!g_strcmp0(cpu->cfg.vext_spec, "v0.7.1")) {
515 vext_version = VEXT_VERSION_0_07_1;
516 } else {
517 error_setg(errp,
518 "Unsupported vector spec version '%s'",
519 cpu->cfg.vext_spec);
520 return;
522 } else {
523 qemu_log("vector version is not specified, "
524 "use the default value v0.7.1\n");
526 set_vext_version(env, vext_version);
529 set_misa(env, target_misa);
532 riscv_cpu_register_gdb_regs_for_features(cs);
534 qemu_init_vcpu(cs);
535 cpu_reset(cs);
537 mcc->parent_realize(dev, errp);
540 static void riscv_cpu_init(Object *obj)
542 RISCVCPU *cpu = RISCV_CPU(obj);
544 cpu_set_cpustate_pointers(cpu);
547 static Property riscv_cpu_properties[] = {
548 DEFINE_PROP_BOOL("i", RISCVCPU, cfg.ext_i, true),
549 DEFINE_PROP_BOOL("e", RISCVCPU, cfg.ext_e, false),
550 DEFINE_PROP_BOOL("g", RISCVCPU, cfg.ext_g, true),
551 DEFINE_PROP_BOOL("m", RISCVCPU, cfg.ext_m, true),
552 DEFINE_PROP_BOOL("a", RISCVCPU, cfg.ext_a, true),
553 DEFINE_PROP_BOOL("f", RISCVCPU, cfg.ext_f, true),
554 DEFINE_PROP_BOOL("d", RISCVCPU, cfg.ext_d, true),
555 DEFINE_PROP_BOOL("c", RISCVCPU, cfg.ext_c, true),
556 DEFINE_PROP_BOOL("s", RISCVCPU, cfg.ext_s, true),
557 DEFINE_PROP_BOOL("u", RISCVCPU, cfg.ext_u, true),
558 /* This is experimental so mark with 'x-' */
559 DEFINE_PROP_BOOL("x-h", RISCVCPU, cfg.ext_h, false),
560 DEFINE_PROP_BOOL("x-v", RISCVCPU, cfg.ext_v, false),
561 DEFINE_PROP_BOOL("Counters", RISCVCPU, cfg.ext_counters, true),
562 DEFINE_PROP_BOOL("Zifencei", RISCVCPU, cfg.ext_ifencei, true),
563 DEFINE_PROP_BOOL("Zicsr", RISCVCPU, cfg.ext_icsr, true),
564 DEFINE_PROP_STRING("priv_spec", RISCVCPU, cfg.priv_spec),
565 DEFINE_PROP_STRING("vext_spec", RISCVCPU, cfg.vext_spec),
566 DEFINE_PROP_UINT16("vlen", RISCVCPU, cfg.vlen, 128),
567 DEFINE_PROP_UINT16("elen", RISCVCPU, cfg.elen, 64),
568 DEFINE_PROP_BOOL("mmu", RISCVCPU, cfg.mmu, true),
569 DEFINE_PROP_BOOL("pmp", RISCVCPU, cfg.pmp, true),
570 DEFINE_PROP_BOOL("x-epmp", RISCVCPU, cfg.epmp, false),
572 DEFINE_PROP_UINT64("resetvec", RISCVCPU, cfg.resetvec, DEFAULT_RSTVEC),
573 DEFINE_PROP_END_OF_LIST(),
576 static gchar *riscv_gdb_arch_name(CPUState *cs)
578 RISCVCPU *cpu = RISCV_CPU(cs);
579 CPURISCVState *env = &cpu->env;
581 if (riscv_cpu_is_32bit(env)) {
582 return g_strdup("riscv:rv32");
583 } else {
584 return g_strdup("riscv:rv64");
588 static const char *riscv_gdb_get_dynamic_xml(CPUState *cs, const char *xmlname)
590 RISCVCPU *cpu = RISCV_CPU(cs);
592 if (strcmp(xmlname, "riscv-csr.xml") == 0) {
593 return cpu->dyn_csr_xml;
596 return NULL;
599 #ifndef CONFIG_USER_ONLY
600 #include "hw/core/sysemu-cpu-ops.h"
602 static const struct SysemuCPUOps riscv_sysemu_ops = {
603 .get_phys_page_debug = riscv_cpu_get_phys_page_debug,
604 .write_elf64_note = riscv_cpu_write_elf64_note,
605 .write_elf32_note = riscv_cpu_write_elf32_note,
606 .legacy_vmsd = &vmstate_riscv_cpu,
608 #endif
610 #include "hw/core/tcg-cpu-ops.h"
612 static const struct TCGCPUOps riscv_tcg_ops = {
613 .initialize = riscv_translate_init,
614 .synchronize_from_tb = riscv_cpu_synchronize_from_tb,
615 .cpu_exec_interrupt = riscv_cpu_exec_interrupt,
616 .tlb_fill = riscv_cpu_tlb_fill,
618 #ifndef CONFIG_USER_ONLY
619 .do_interrupt = riscv_cpu_do_interrupt,
620 .do_transaction_failed = riscv_cpu_do_transaction_failed,
621 .do_unaligned_access = riscv_cpu_do_unaligned_access,
622 #endif /* !CONFIG_USER_ONLY */
625 static void riscv_cpu_class_init(ObjectClass *c, void *data)
627 RISCVCPUClass *mcc = RISCV_CPU_CLASS(c);
628 CPUClass *cc = CPU_CLASS(c);
629 DeviceClass *dc = DEVICE_CLASS(c);
631 device_class_set_parent_realize(dc, riscv_cpu_realize,
632 &mcc->parent_realize);
634 device_class_set_parent_reset(dc, riscv_cpu_reset, &mcc->parent_reset);
636 cc->class_by_name = riscv_cpu_class_by_name;
637 cc->has_work = riscv_cpu_has_work;
638 cc->dump_state = riscv_cpu_dump_state;
639 cc->set_pc = riscv_cpu_set_pc;
640 cc->gdb_read_register = riscv_cpu_gdb_read_register;
641 cc->gdb_write_register = riscv_cpu_gdb_write_register;
642 cc->gdb_num_core_regs = 33;
643 #if defined(TARGET_RISCV32)
644 cc->gdb_core_xml_file = "riscv-32bit-cpu.xml";
645 #elif defined(TARGET_RISCV64)
646 cc->gdb_core_xml_file = "riscv-64bit-cpu.xml";
647 #endif
648 cc->gdb_stop_before_watchpoint = true;
649 cc->disas_set_info = riscv_cpu_disas_set_info;
650 #ifndef CONFIG_USER_ONLY
651 cc->sysemu_ops = &riscv_sysemu_ops;
652 #endif
653 cc->gdb_arch_name = riscv_gdb_arch_name;
654 cc->gdb_get_dynamic_xml = riscv_gdb_get_dynamic_xml;
655 cc->tcg_ops = &riscv_tcg_ops;
657 device_class_set_props(dc, riscv_cpu_properties);
660 char *riscv_isa_string(RISCVCPU *cpu)
662 int i;
663 const size_t maxlen = sizeof("rv128") + sizeof(riscv_exts) + 1;
664 char *isa_str = g_new(char, maxlen);
665 char *p = isa_str + snprintf(isa_str, maxlen, "rv%d", TARGET_LONG_BITS);
666 for (i = 0; i < sizeof(riscv_exts); i++) {
667 if (cpu->env.misa & RV(riscv_exts[i])) {
668 *p++ = qemu_tolower(riscv_exts[i]);
671 *p = '\0';
672 return isa_str;
675 static gint riscv_cpu_list_compare(gconstpointer a, gconstpointer b)
677 ObjectClass *class_a = (ObjectClass *)a;
678 ObjectClass *class_b = (ObjectClass *)b;
679 const char *name_a, *name_b;
681 name_a = object_class_get_name(class_a);
682 name_b = object_class_get_name(class_b);
683 return strcmp(name_a, name_b);
686 static void riscv_cpu_list_entry(gpointer data, gpointer user_data)
688 const char *typename = object_class_get_name(OBJECT_CLASS(data));
689 int len = strlen(typename) - strlen(RISCV_CPU_TYPE_SUFFIX);
691 qemu_printf("%.*s\n", len, typename);
694 void riscv_cpu_list(void)
696 GSList *list;
698 list = object_class_get_list(TYPE_RISCV_CPU, false);
699 list = g_slist_sort(list, riscv_cpu_list_compare);
700 g_slist_foreach(list, riscv_cpu_list_entry, NULL);
701 g_slist_free(list);
704 #define DEFINE_CPU(type_name, initfn) \
706 .name = type_name, \
707 .parent = TYPE_RISCV_CPU, \
708 .instance_init = initfn \
711 static const TypeInfo riscv_cpu_type_infos[] = {
713 .name = TYPE_RISCV_CPU,
714 .parent = TYPE_CPU,
715 .instance_size = sizeof(RISCVCPU),
716 .instance_align = __alignof__(RISCVCPU),
717 .instance_init = riscv_cpu_init,
718 .abstract = true,
719 .class_size = sizeof(RISCVCPUClass),
720 .class_init = riscv_cpu_class_init,
722 DEFINE_CPU(TYPE_RISCV_CPU_ANY, riscv_any_cpu_init),
723 #if defined(TARGET_RISCV32)
724 DEFINE_CPU(TYPE_RISCV_CPU_BASE32, rv32_base_cpu_init),
725 DEFINE_CPU(TYPE_RISCV_CPU_IBEX, rv32_ibex_cpu_init),
726 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E31, rv32_sifive_e_cpu_init),
727 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E34, rv32_imafcu_nommu_cpu_init),
728 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U34, rv32_sifive_u_cpu_init),
729 #elif defined(TARGET_RISCV64)
730 DEFINE_CPU(TYPE_RISCV_CPU_BASE64, rv64_base_cpu_init),
731 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E51, rv64_sifive_e_cpu_init),
732 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U54, rv64_sifive_u_cpu_init),
733 DEFINE_CPU(TYPE_RISCV_CPU_SHAKTI_C, rv64_sifive_u_cpu_init),
734 #endif
737 DEFINE_TYPES(riscv_cpu_type_infos)