xref: /openbmc/qemu/target/riscv/cpu.c (revision e91a7227)
1 /*
2  * QEMU RISC-V CPU
3  *
4  * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
5  * Copyright (c) 2017-2018 SiFive, Inc.
6  *
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.
10  *
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.
15  *
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/>.
18  */
19 
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"
32 
33 /* RISC-V CPU definitions */
34 
35 static const char riscv_exts[26] = "IEMAFDQCLBJTPVNSUHKORWXYZG";
36 
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"
43 };
44 
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"
52 };
53 
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",
79 };
80 
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"
98 };
99 
100 const char *riscv_cpu_get_trap_name(target_ulong cause, bool async)
101 {
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)";
108     }
109 }
110 
111 bool riscv_cpu_is_32bit(CPURISCVState *env)
112 {
113     return env->misa_mxl == MXL_RV32;
114 }
115 
116 static void set_misa(CPURISCVState *env, RISCVMXL mxl, uint32_t ext)
117 {
118     env->misa_mxl_max = env->misa_mxl = mxl;
119     env->misa_ext_mask = env->misa_ext = ext;
120 }
121 
122 static void set_priv_version(CPURISCVState *env, int priv_ver)
123 {
124     env->priv_ver = priv_ver;
125 }
126 
127 static void set_vext_version(CPURISCVState *env, int vext_ver)
128 {
129     env->vext_ver = vext_ver;
130 }
131 
132 static void set_feature(CPURISCVState *env, int feature)
133 {
134     env->features |= (1ULL << feature);
135 }
136 
137 static void set_resetvec(CPURISCVState *env, target_ulong resetvec)
138 {
139 #ifndef CONFIG_USER_ONLY
140     env->resetvec = resetvec;
141 #endif
142 }
143 
144 static void riscv_any_cpu_init(Object *obj)
145 {
146     CPURISCVState *env = &RISCV_CPU(obj)->env;
147 #if defined(TARGET_RISCV32)
148     set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVD | RVC | RVU);
149 #elif defined(TARGET_RISCV64)
150     set_misa(env, MXL_RV64, RVI | RVM | RVA | RVF | RVD | RVC | RVU);
151 #endif
152     set_priv_version(env, PRIV_VERSION_1_11_0);
153 }
154 
155 #if defined(TARGET_RISCV64)
156 static void rv64_base_cpu_init(Object *obj)
157 {
158     CPURISCVState *env = &RISCV_CPU(obj)->env;
159     /* We set this in the realise function */
160     set_misa(env, MXL_RV64, 0);
161 }
162 
163 static void rv64_sifive_u_cpu_init(Object *obj)
164 {
165     CPURISCVState *env = &RISCV_CPU(obj)->env;
166     set_misa(env, MXL_RV64, RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
167     set_priv_version(env, PRIV_VERSION_1_10_0);
168 }
169 
170 static void rv64_sifive_e_cpu_init(Object *obj)
171 {
172     CPURISCVState *env = &RISCV_CPU(obj)->env;
173     set_misa(env, MXL_RV64, RVI | RVM | RVA | RVC | RVU);
174     set_priv_version(env, PRIV_VERSION_1_10_0);
175     qdev_prop_set_bit(DEVICE(obj), "mmu", false);
176 }
177 #else
178 static void rv32_base_cpu_init(Object *obj)
179 {
180     CPURISCVState *env = &RISCV_CPU(obj)->env;
181     /* We set this in the realise function */
182     set_misa(env, MXL_RV32, 0);
183 }
184 
185 static void rv32_sifive_u_cpu_init(Object *obj)
186 {
187     CPURISCVState *env = &RISCV_CPU(obj)->env;
188     set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
189     set_priv_version(env, PRIV_VERSION_1_10_0);
190 }
191 
192 static void rv32_sifive_e_cpu_init(Object *obj)
193 {
194     CPURISCVState *env = &RISCV_CPU(obj)->env;
195     set_misa(env, MXL_RV32, RVI | RVM | RVA | RVC | RVU);
196     set_priv_version(env, PRIV_VERSION_1_10_0);
197     qdev_prop_set_bit(DEVICE(obj), "mmu", false);
198 }
199 
200 static void rv32_ibex_cpu_init(Object *obj)
201 {
202     CPURISCVState *env = &RISCV_CPU(obj)->env;
203     set_misa(env, MXL_RV32, RVI | RVM | RVC | RVU);
204     set_priv_version(env, PRIV_VERSION_1_10_0);
205     qdev_prop_set_bit(DEVICE(obj), "mmu", false);
206     qdev_prop_set_bit(DEVICE(obj), "x-epmp", true);
207 }
208 
209 static void rv32_imafcu_nommu_cpu_init(Object *obj)
210 {
211     CPURISCVState *env = &RISCV_CPU(obj)->env;
212     set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVC | RVU);
213     set_priv_version(env, PRIV_VERSION_1_10_0);
214     set_resetvec(env, DEFAULT_RSTVEC);
215     qdev_prop_set_bit(DEVICE(obj), "mmu", false);
216 }
217 #endif
218 
219 static ObjectClass *riscv_cpu_class_by_name(const char *cpu_model)
220 {
221     ObjectClass *oc;
222     char *typename;
223     char **cpuname;
224 
225     cpuname = g_strsplit(cpu_model, ",", 1);
226     typename = g_strdup_printf(RISCV_CPU_TYPE_NAME("%s"), cpuname[0]);
227     oc = object_class_by_name(typename);
228     g_strfreev(cpuname);
229     g_free(typename);
230     if (!oc || !object_class_dynamic_cast(oc, TYPE_RISCV_CPU) ||
231         object_class_is_abstract(oc)) {
232         return NULL;
233     }
234     return oc;
235 }
236 
237 static void riscv_cpu_dump_state(CPUState *cs, FILE *f, int flags)
238 {
239     RISCVCPU *cpu = RISCV_CPU(cs);
240     CPURISCVState *env = &cpu->env;
241     int i;
242 
243 #if !defined(CONFIG_USER_ONLY)
244     if (riscv_has_ext(env, RVH)) {
245         qemu_fprintf(f, " %s %d\n", "V      =  ", riscv_cpu_virt_enabled(env));
246     }
247 #endif
248     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "pc      ", env->pc);
249 #ifndef CONFIG_USER_ONLY
250     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mhartid ", env->mhartid);
251     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mstatus ", (target_ulong)env->mstatus);
252     if (riscv_cpu_is_32bit(env)) {
253         qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mstatush ",
254                      (target_ulong)(env->mstatus >> 32));
255     }
256     if (riscv_has_ext(env, RVH)) {
257         qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "hstatus ", env->hstatus);
258         qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "vsstatus",
259                      (target_ulong)env->vsstatus);
260     }
261     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mip     ", env->mip);
262     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mie     ", env->mie);
263     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mideleg ", env->mideleg);
264     if (riscv_has_ext(env, RVH)) {
265         qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "hideleg ", env->hideleg);
266     }
267     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "medeleg ", env->medeleg);
268     if (riscv_has_ext(env, RVH)) {
269         qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "hedeleg ", env->hedeleg);
270     }
271     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mtvec   ", env->mtvec);
272     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "stvec   ", env->stvec);
273     if (riscv_has_ext(env, RVH)) {
274         qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "vstvec  ", env->vstvec);
275     }
276     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mepc    ", env->mepc);
277     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "sepc    ", env->sepc);
278     if (riscv_has_ext(env, RVH)) {
279         qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "vsepc   ", env->vsepc);
280     }
281     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mcause  ", env->mcause);
282     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "scause  ", env->scause);
283     if (riscv_has_ext(env, RVH)) {
284         qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "vscause ", env->vscause);
285     }
286     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mtval   ", env->mtval);
287     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "stval   ", env->stval);
288     if (riscv_has_ext(env, RVH)) {
289         qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "htval   ", env->htval);
290         qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mtval2  ", env->mtval2);
291     }
292     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "mscratch", env->mscratch);
293     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "sscratch", env->sscratch);
294     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "satp    ", env->satp);
295 #endif
296 
297     for (i = 0; i < 32; i++) {
298         qemu_fprintf(f, " %-8s " TARGET_FMT_lx,
299                      riscv_int_regnames[i], env->gpr[i]);
300         if ((i & 3) == 3) {
301             qemu_fprintf(f, "\n");
302         }
303     }
304     if (flags & CPU_DUMP_FPU) {
305         for (i = 0; i < 32; i++) {
306             qemu_fprintf(f, " %-8s %016" PRIx64,
307                          riscv_fpr_regnames[i], env->fpr[i]);
308             if ((i & 3) == 3) {
309                 qemu_fprintf(f, "\n");
310             }
311         }
312     }
313 }
314 
315 static void riscv_cpu_set_pc(CPUState *cs, vaddr value)
316 {
317     RISCVCPU *cpu = RISCV_CPU(cs);
318     CPURISCVState *env = &cpu->env;
319     env->pc = value;
320 }
321 
322 static void riscv_cpu_synchronize_from_tb(CPUState *cs,
323                                           const TranslationBlock *tb)
324 {
325     RISCVCPU *cpu = RISCV_CPU(cs);
326     CPURISCVState *env = &cpu->env;
327     env->pc = tb->pc;
328 }
329 
330 static bool riscv_cpu_has_work(CPUState *cs)
331 {
332 #ifndef CONFIG_USER_ONLY
333     RISCVCPU *cpu = RISCV_CPU(cs);
334     CPURISCVState *env = &cpu->env;
335     /*
336      * Definition of the WFI instruction requires it to ignore the privilege
337      * mode and delegation registers, but respect individual enables
338      */
339     return (env->mip & env->mie) != 0;
340 #else
341     return true;
342 #endif
343 }
344 
345 void restore_state_to_opc(CPURISCVState *env, TranslationBlock *tb,
346                           target_ulong *data)
347 {
348     env->pc = data[0];
349 }
350 
351 static void riscv_cpu_reset(DeviceState *dev)
352 {
353     CPUState *cs = CPU(dev);
354     RISCVCPU *cpu = RISCV_CPU(cs);
355     RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(cpu);
356     CPURISCVState *env = &cpu->env;
357 
358     mcc->parent_reset(dev);
359 #ifndef CONFIG_USER_ONLY
360     env->misa_mxl = env->misa_mxl_max;
361     env->priv = PRV_M;
362     env->mstatus &= ~(MSTATUS_MIE | MSTATUS_MPRV);
363     env->mcause = 0;
364     env->pc = env->resetvec;
365     env->two_stage_lookup = false;
366 #endif
367     cs->exception_index = RISCV_EXCP_NONE;
368     env->load_res = -1;
369     set_default_nan_mode(1, &env->fp_status);
370 }
371 
372 static void riscv_cpu_disas_set_info(CPUState *s, disassemble_info *info)
373 {
374     RISCVCPU *cpu = RISCV_CPU(s);
375     if (riscv_cpu_is_32bit(&cpu->env)) {
376         info->print_insn = print_insn_riscv32;
377     } else {
378         info->print_insn = print_insn_riscv64;
379     }
380 }
381 
382 static void riscv_cpu_realize(DeviceState *dev, Error **errp)
383 {
384     CPUState *cs = CPU(dev);
385     RISCVCPU *cpu = RISCV_CPU(dev);
386     CPURISCVState *env = &cpu->env;
387     RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(dev);
388     int priv_version = 0;
389     Error *local_err = NULL;
390 
391     cpu_exec_realizefn(cs, &local_err);
392     if (local_err != NULL) {
393         error_propagate(errp, local_err);
394         return;
395     }
396 
397     if (cpu->cfg.priv_spec) {
398         if (!g_strcmp0(cpu->cfg.priv_spec, "v1.11.0")) {
399             priv_version = PRIV_VERSION_1_11_0;
400         } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.10.0")) {
401             priv_version = PRIV_VERSION_1_10_0;
402         } else {
403             error_setg(errp,
404                        "Unsupported privilege spec version '%s'",
405                        cpu->cfg.priv_spec);
406             return;
407         }
408     }
409 
410     if (priv_version) {
411         set_priv_version(env, priv_version);
412     } else if (!env->priv_ver) {
413         set_priv_version(env, PRIV_VERSION_1_11_0);
414     }
415 
416     if (cpu->cfg.mmu) {
417         set_feature(env, RISCV_FEATURE_MMU);
418     }
419 
420     if (cpu->cfg.pmp) {
421         set_feature(env, RISCV_FEATURE_PMP);
422 
423         /*
424          * Enhanced PMP should only be available
425          * on harts with PMP support
426          */
427         if (cpu->cfg.epmp) {
428             set_feature(env, RISCV_FEATURE_EPMP);
429         }
430     }
431 
432     set_resetvec(env, cpu->cfg.resetvec);
433 
434     /* Validate that MISA_MXL is set properly. */
435     switch (env->misa_mxl_max) {
436 #ifdef TARGET_RISCV64
437     case MXL_RV64:
438         break;
439 #endif
440     case MXL_RV32:
441         break;
442     default:
443         g_assert_not_reached();
444     }
445     assert(env->misa_mxl_max == env->misa_mxl);
446 
447     /* If only MISA_EXT is unset for misa, then set it from properties */
448     if (env->misa_ext == 0) {
449         uint32_t ext = 0;
450 
451         /* Do some ISA extension error checking */
452         if (cpu->cfg.ext_i && cpu->cfg.ext_e) {
453             error_setg(errp,
454                        "I and E extensions are incompatible");
455                        return;
456        }
457 
458         if (!cpu->cfg.ext_i && !cpu->cfg.ext_e) {
459             error_setg(errp,
460                        "Either I or E extension must be set");
461                        return;
462        }
463 
464        if (cpu->cfg.ext_g && !(cpu->cfg.ext_i & cpu->cfg.ext_m &
465                                cpu->cfg.ext_a & cpu->cfg.ext_f &
466                                cpu->cfg.ext_d)) {
467             warn_report("Setting G will also set IMAFD");
468             cpu->cfg.ext_i = true;
469             cpu->cfg.ext_m = true;
470             cpu->cfg.ext_a = true;
471             cpu->cfg.ext_f = true;
472             cpu->cfg.ext_d = true;
473         }
474 
475         /* Set the ISA extensions, checks should have happened above */
476         if (cpu->cfg.ext_i) {
477             ext |= RVI;
478         }
479         if (cpu->cfg.ext_e) {
480             ext |= RVE;
481         }
482         if (cpu->cfg.ext_m) {
483             ext |= RVM;
484         }
485         if (cpu->cfg.ext_a) {
486             ext |= RVA;
487         }
488         if (cpu->cfg.ext_f) {
489             ext |= RVF;
490         }
491         if (cpu->cfg.ext_d) {
492             ext |= RVD;
493         }
494         if (cpu->cfg.ext_c) {
495             ext |= RVC;
496         }
497         if (cpu->cfg.ext_s) {
498             ext |= RVS;
499         }
500         if (cpu->cfg.ext_u) {
501             ext |= RVU;
502         }
503         if (cpu->cfg.ext_h) {
504             ext |= RVH;
505         }
506         if (cpu->cfg.ext_v) {
507             int vext_version = VEXT_VERSION_0_07_1;
508             ext |= RVV;
509             if (!is_power_of_2(cpu->cfg.vlen)) {
510                 error_setg(errp,
511                         "Vector extension VLEN must be power of 2");
512                 return;
513             }
514             if (cpu->cfg.vlen > RV_VLEN_MAX || cpu->cfg.vlen < 128) {
515                 error_setg(errp,
516                         "Vector extension implementation only supports VLEN "
517                         "in the range [128, %d]", RV_VLEN_MAX);
518                 return;
519             }
520             if (!is_power_of_2(cpu->cfg.elen)) {
521                 error_setg(errp,
522                         "Vector extension ELEN must be power of 2");
523                 return;
524             }
525             if (cpu->cfg.elen > 64 || cpu->cfg.vlen < 8) {
526                 error_setg(errp,
527                         "Vector extension implementation only supports ELEN "
528                         "in the range [8, 64]");
529                 return;
530             }
531             if (cpu->cfg.vext_spec) {
532                 if (!g_strcmp0(cpu->cfg.vext_spec, "v0.7.1")) {
533                     vext_version = VEXT_VERSION_0_07_1;
534                 } else {
535                     error_setg(errp,
536                            "Unsupported vector spec version '%s'",
537                            cpu->cfg.vext_spec);
538                     return;
539                 }
540             } else {
541                 qemu_log("vector version is not specified, "
542                         "use the default value v0.7.1\n");
543             }
544             set_vext_version(env, vext_version);
545         }
546 
547         set_misa(env, env->misa_mxl, ext);
548     }
549 
550     riscv_cpu_register_gdb_regs_for_features(cs);
551 
552     qemu_init_vcpu(cs);
553     cpu_reset(cs);
554 
555     mcc->parent_realize(dev, errp);
556 }
557 
558 #ifndef CONFIG_USER_ONLY
559 static void riscv_cpu_set_irq(void *opaque, int irq, int level)
560 {
561     RISCVCPU *cpu = RISCV_CPU(opaque);
562 
563     switch (irq) {
564     case IRQ_U_SOFT:
565     case IRQ_S_SOFT:
566     case IRQ_VS_SOFT:
567     case IRQ_M_SOFT:
568     case IRQ_U_TIMER:
569     case IRQ_S_TIMER:
570     case IRQ_VS_TIMER:
571     case IRQ_M_TIMER:
572     case IRQ_U_EXT:
573     case IRQ_S_EXT:
574     case IRQ_VS_EXT:
575     case IRQ_M_EXT:
576         riscv_cpu_update_mip(cpu, 1 << irq, BOOL_TO_MASK(level));
577         break;
578     default:
579         g_assert_not_reached();
580     }
581 }
582 #endif /* CONFIG_USER_ONLY */
583 
584 static void riscv_cpu_init(Object *obj)
585 {
586     RISCVCPU *cpu = RISCV_CPU(obj);
587 
588     cpu_set_cpustate_pointers(cpu);
589 
590 #ifndef CONFIG_USER_ONLY
591     qdev_init_gpio_in(DEVICE(cpu), riscv_cpu_set_irq, 12);
592 #endif /* CONFIG_USER_ONLY */
593 }
594 
595 static Property riscv_cpu_properties[] = {
596     /* Defaults for standard extensions */
597     DEFINE_PROP_BOOL("i", RISCVCPU, cfg.ext_i, true),
598     DEFINE_PROP_BOOL("e", RISCVCPU, cfg.ext_e, false),
599     DEFINE_PROP_BOOL("g", RISCVCPU, cfg.ext_g, true),
600     DEFINE_PROP_BOOL("m", RISCVCPU, cfg.ext_m, true),
601     DEFINE_PROP_BOOL("a", RISCVCPU, cfg.ext_a, true),
602     DEFINE_PROP_BOOL("f", RISCVCPU, cfg.ext_f, true),
603     DEFINE_PROP_BOOL("d", RISCVCPU, cfg.ext_d, true),
604     DEFINE_PROP_BOOL("c", RISCVCPU, cfg.ext_c, true),
605     DEFINE_PROP_BOOL("s", RISCVCPU, cfg.ext_s, true),
606     DEFINE_PROP_BOOL("u", RISCVCPU, cfg.ext_u, true),
607     DEFINE_PROP_BOOL("Counters", RISCVCPU, cfg.ext_counters, true),
608     DEFINE_PROP_BOOL("Zifencei", RISCVCPU, cfg.ext_ifencei, true),
609     DEFINE_PROP_BOOL("Zicsr", RISCVCPU, cfg.ext_icsr, true),
610     DEFINE_PROP_BOOL("mmu", RISCVCPU, cfg.mmu, true),
611     DEFINE_PROP_BOOL("pmp", RISCVCPU, cfg.pmp, true),
612 
613     DEFINE_PROP_STRING("priv_spec", RISCVCPU, cfg.priv_spec),
614 
615     /* These are experimental so mark with 'x-' */
616     DEFINE_PROP_BOOL("x-zba", RISCVCPU, cfg.ext_zba, false),
617     DEFINE_PROP_BOOL("x-zbb", RISCVCPU, cfg.ext_zbb, false),
618     DEFINE_PROP_BOOL("x-zbc", RISCVCPU, cfg.ext_zbc, false),
619     DEFINE_PROP_BOOL("x-zbs", RISCVCPU, cfg.ext_zbs, false),
620     DEFINE_PROP_BOOL("x-h", RISCVCPU, cfg.ext_h, false),
621     DEFINE_PROP_BOOL("x-v", RISCVCPU, cfg.ext_v, false),
622     DEFINE_PROP_STRING("vext_spec", RISCVCPU, cfg.vext_spec),
623     DEFINE_PROP_UINT16("vlen", RISCVCPU, cfg.vlen, 128),
624     DEFINE_PROP_UINT16("elen", RISCVCPU, cfg.elen, 64),
625     /* ePMP 0.9.3 */
626     DEFINE_PROP_BOOL("x-epmp", RISCVCPU, cfg.epmp, false),
627 
628     DEFINE_PROP_UINT64("resetvec", RISCVCPU, cfg.resetvec, DEFAULT_RSTVEC),
629     DEFINE_PROP_END_OF_LIST(),
630 };
631 
632 static gchar *riscv_gdb_arch_name(CPUState *cs)
633 {
634     RISCVCPU *cpu = RISCV_CPU(cs);
635     CPURISCVState *env = &cpu->env;
636 
637     if (riscv_cpu_is_32bit(env)) {
638         return g_strdup("riscv:rv32");
639     } else {
640         return g_strdup("riscv:rv64");
641     }
642 }
643 
644 static const char *riscv_gdb_get_dynamic_xml(CPUState *cs, const char *xmlname)
645 {
646     RISCVCPU *cpu = RISCV_CPU(cs);
647 
648     if (strcmp(xmlname, "riscv-csr.xml") == 0) {
649         return cpu->dyn_csr_xml;
650     }
651 
652     return NULL;
653 }
654 
655 #ifndef CONFIG_USER_ONLY
656 #include "hw/core/sysemu-cpu-ops.h"
657 
658 static const struct SysemuCPUOps riscv_sysemu_ops = {
659     .get_phys_page_debug = riscv_cpu_get_phys_page_debug,
660     .write_elf64_note = riscv_cpu_write_elf64_note,
661     .write_elf32_note = riscv_cpu_write_elf32_note,
662     .legacy_vmsd = &vmstate_riscv_cpu,
663 };
664 #endif
665 
666 #include "hw/core/tcg-cpu-ops.h"
667 
668 static const struct TCGCPUOps riscv_tcg_ops = {
669     .initialize = riscv_translate_init,
670     .synchronize_from_tb = riscv_cpu_synchronize_from_tb,
671     .tlb_fill = riscv_cpu_tlb_fill,
672 
673 #ifndef CONFIG_USER_ONLY
674     .cpu_exec_interrupt = riscv_cpu_exec_interrupt,
675     .do_interrupt = riscv_cpu_do_interrupt,
676     .do_transaction_failed = riscv_cpu_do_transaction_failed,
677     .do_unaligned_access = riscv_cpu_do_unaligned_access,
678 #endif /* !CONFIG_USER_ONLY */
679 };
680 
681 static void riscv_cpu_class_init(ObjectClass *c, void *data)
682 {
683     RISCVCPUClass *mcc = RISCV_CPU_CLASS(c);
684     CPUClass *cc = CPU_CLASS(c);
685     DeviceClass *dc = DEVICE_CLASS(c);
686 
687     device_class_set_parent_realize(dc, riscv_cpu_realize,
688                                     &mcc->parent_realize);
689 
690     device_class_set_parent_reset(dc, riscv_cpu_reset, &mcc->parent_reset);
691 
692     cc->class_by_name = riscv_cpu_class_by_name;
693     cc->has_work = riscv_cpu_has_work;
694     cc->dump_state = riscv_cpu_dump_state;
695     cc->set_pc = riscv_cpu_set_pc;
696     cc->gdb_read_register = riscv_cpu_gdb_read_register;
697     cc->gdb_write_register = riscv_cpu_gdb_write_register;
698     cc->gdb_num_core_regs = 33;
699 #if defined(TARGET_RISCV32)
700     cc->gdb_core_xml_file = "riscv-32bit-cpu.xml";
701 #elif defined(TARGET_RISCV64)
702     cc->gdb_core_xml_file = "riscv-64bit-cpu.xml";
703 #endif
704     cc->gdb_stop_before_watchpoint = true;
705     cc->disas_set_info = riscv_cpu_disas_set_info;
706 #ifndef CONFIG_USER_ONLY
707     cc->sysemu_ops = &riscv_sysemu_ops;
708 #endif
709     cc->gdb_arch_name = riscv_gdb_arch_name;
710     cc->gdb_get_dynamic_xml = riscv_gdb_get_dynamic_xml;
711     cc->tcg_ops = &riscv_tcg_ops;
712 
713     device_class_set_props(dc, riscv_cpu_properties);
714 }
715 
716 char *riscv_isa_string(RISCVCPU *cpu)
717 {
718     int i;
719     const size_t maxlen = sizeof("rv128") + sizeof(riscv_exts) + 1;
720     char *isa_str = g_new(char, maxlen);
721     char *p = isa_str + snprintf(isa_str, maxlen, "rv%d", TARGET_LONG_BITS);
722     for (i = 0; i < sizeof(riscv_exts); i++) {
723         if (cpu->env.misa_ext & RV(riscv_exts[i])) {
724             *p++ = qemu_tolower(riscv_exts[i]);
725         }
726     }
727     *p = '\0';
728     return isa_str;
729 }
730 
731 static gint riscv_cpu_list_compare(gconstpointer a, gconstpointer b)
732 {
733     ObjectClass *class_a = (ObjectClass *)a;
734     ObjectClass *class_b = (ObjectClass *)b;
735     const char *name_a, *name_b;
736 
737     name_a = object_class_get_name(class_a);
738     name_b = object_class_get_name(class_b);
739     return strcmp(name_a, name_b);
740 }
741 
742 static void riscv_cpu_list_entry(gpointer data, gpointer user_data)
743 {
744     const char *typename = object_class_get_name(OBJECT_CLASS(data));
745     int len = strlen(typename) - strlen(RISCV_CPU_TYPE_SUFFIX);
746 
747     qemu_printf("%.*s\n", len, typename);
748 }
749 
750 void riscv_cpu_list(void)
751 {
752     GSList *list;
753 
754     list = object_class_get_list(TYPE_RISCV_CPU, false);
755     list = g_slist_sort(list, riscv_cpu_list_compare);
756     g_slist_foreach(list, riscv_cpu_list_entry, NULL);
757     g_slist_free(list);
758 }
759 
760 #define DEFINE_CPU(type_name, initfn)      \
761     {                                      \
762         .name = type_name,                 \
763         .parent = TYPE_RISCV_CPU,          \
764         .instance_init = initfn            \
765     }
766 
767 static const TypeInfo riscv_cpu_type_infos[] = {
768     {
769         .name = TYPE_RISCV_CPU,
770         .parent = TYPE_CPU,
771         .instance_size = sizeof(RISCVCPU),
772         .instance_align = __alignof__(RISCVCPU),
773         .instance_init = riscv_cpu_init,
774         .abstract = true,
775         .class_size = sizeof(RISCVCPUClass),
776         .class_init = riscv_cpu_class_init,
777     },
778     DEFINE_CPU(TYPE_RISCV_CPU_ANY,              riscv_any_cpu_init),
779 #if defined(TARGET_RISCV32)
780     DEFINE_CPU(TYPE_RISCV_CPU_BASE32,           rv32_base_cpu_init),
781     DEFINE_CPU(TYPE_RISCV_CPU_IBEX,             rv32_ibex_cpu_init),
782     DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E31,       rv32_sifive_e_cpu_init),
783     DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E34,       rv32_imafcu_nommu_cpu_init),
784     DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U34,       rv32_sifive_u_cpu_init),
785 #elif defined(TARGET_RISCV64)
786     DEFINE_CPU(TYPE_RISCV_CPU_BASE64,           rv64_base_cpu_init),
787     DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E51,       rv64_sifive_e_cpu_init),
788     DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U54,       rv64_sifive_u_cpu_init),
789     DEFINE_CPU(TYPE_RISCV_CPU_SHAKTI_C,         rv64_sifive_u_cpu_init),
790 #endif
791 };
792 
793 DEFINE_TYPES(riscv_cpu_type_infos)
794