xref: /openbmc/qemu/target/riscv/cpu.c (revision aa903cf3)
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 "cpu_vendorid.h"
26 #include "pmu.h"
27 #include "internals.h"
28 #include "time_helper.h"
29 #include "exec/exec-all.h"
30 #include "qapi/error.h"
31 #include "qapi/visitor.h"
32 #include "qemu/error-report.h"
33 #include "hw/qdev-properties.h"
34 #include "migration/vmstate.h"
35 #include "fpu/softfloat-helpers.h"
36 #include "sysemu/kvm.h"
37 #include "kvm_riscv.h"
38 #include "tcg/tcg.h"
39 
40 /* RISC-V CPU definitions */
41 
42 #define RISCV_CPU_MARCHID   ((QEMU_VERSION_MAJOR << 16) | \
43                              (QEMU_VERSION_MINOR << 8)  | \
44                              (QEMU_VERSION_MICRO))
45 #define RISCV_CPU_MIMPID    RISCV_CPU_MARCHID
46 
47 static const char riscv_single_letter_exts[] = "IEMAFDQCPVH";
48 
49 struct isa_ext_data {
50     const char *name;
51     int min_version;
52     int ext_enable_offset;
53 };
54 
55 #define ISA_EXT_DATA_ENTRY(_name, _min_ver, _prop) \
56     {#_name, _min_ver, offsetof(struct RISCVCPUConfig, _prop)}
57 
58 /*
59  * Here are the ordering rules of extension naming defined by RISC-V
60  * specification :
61  * 1. All extensions should be separated from other multi-letter extensions
62  *    by an underscore.
63  * 2. The first letter following the 'Z' conventionally indicates the most
64  *    closely related alphabetical extension category, IMAFDQLCBKJTPVH.
65  *    If multiple 'Z' extensions are named, they should be ordered first
66  *    by category, then alphabetically within a category.
67  * 3. Standard supervisor-level extensions (starts with 'S') should be
68  *    listed after standard unprivileged extensions.  If multiple
69  *    supervisor-level extensions are listed, they should be ordered
70  *    alphabetically.
71  * 4. Non-standard extensions (starts with 'X') must be listed after all
72  *    standard extensions. They must be separated from other multi-letter
73  *    extensions by an underscore.
74  *
75  * Single letter extensions are checked in riscv_cpu_validate_misa_priv()
76  * instead.
77  */
78 static const struct isa_ext_data isa_edata_arr[] = {
79     ISA_EXT_DATA_ENTRY(zicbom, PRIV_VERSION_1_12_0, ext_icbom),
80     ISA_EXT_DATA_ENTRY(zicboz, PRIV_VERSION_1_12_0, ext_icboz),
81     ISA_EXT_DATA_ENTRY(zicond, PRIV_VERSION_1_12_0, ext_zicond),
82     ISA_EXT_DATA_ENTRY(zicsr, PRIV_VERSION_1_10_0, ext_icsr),
83     ISA_EXT_DATA_ENTRY(zifencei, PRIV_VERSION_1_10_0, ext_ifencei),
84     ISA_EXT_DATA_ENTRY(zihintpause, PRIV_VERSION_1_10_0, ext_zihintpause),
85     ISA_EXT_DATA_ENTRY(zawrs, PRIV_VERSION_1_12_0, ext_zawrs),
86     ISA_EXT_DATA_ENTRY(zfh, PRIV_VERSION_1_11_0, ext_zfh),
87     ISA_EXT_DATA_ENTRY(zfhmin, PRIV_VERSION_1_11_0, ext_zfhmin),
88     ISA_EXT_DATA_ENTRY(zfinx, PRIV_VERSION_1_12_0, ext_zfinx),
89     ISA_EXT_DATA_ENTRY(zdinx, PRIV_VERSION_1_12_0, ext_zdinx),
90     ISA_EXT_DATA_ENTRY(zca, PRIV_VERSION_1_12_0, ext_zca),
91     ISA_EXT_DATA_ENTRY(zcb, PRIV_VERSION_1_12_0, ext_zcb),
92     ISA_EXT_DATA_ENTRY(zcf, PRIV_VERSION_1_12_0, ext_zcf),
93     ISA_EXT_DATA_ENTRY(zcd, PRIV_VERSION_1_12_0, ext_zcd),
94     ISA_EXT_DATA_ENTRY(zce, PRIV_VERSION_1_12_0, ext_zce),
95     ISA_EXT_DATA_ENTRY(zcmp, PRIV_VERSION_1_12_0, ext_zcmp),
96     ISA_EXT_DATA_ENTRY(zcmt, PRIV_VERSION_1_12_0, ext_zcmt),
97     ISA_EXT_DATA_ENTRY(zba, PRIV_VERSION_1_12_0, ext_zba),
98     ISA_EXT_DATA_ENTRY(zbb, PRIV_VERSION_1_12_0, ext_zbb),
99     ISA_EXT_DATA_ENTRY(zbc, PRIV_VERSION_1_12_0, ext_zbc),
100     ISA_EXT_DATA_ENTRY(zbkb, PRIV_VERSION_1_12_0, ext_zbkb),
101     ISA_EXT_DATA_ENTRY(zbkc, PRIV_VERSION_1_12_0, ext_zbkc),
102     ISA_EXT_DATA_ENTRY(zbkx, PRIV_VERSION_1_12_0, ext_zbkx),
103     ISA_EXT_DATA_ENTRY(zbs, PRIV_VERSION_1_12_0, ext_zbs),
104     ISA_EXT_DATA_ENTRY(zk, PRIV_VERSION_1_12_0, ext_zk),
105     ISA_EXT_DATA_ENTRY(zkn, PRIV_VERSION_1_12_0, ext_zkn),
106     ISA_EXT_DATA_ENTRY(zknd, PRIV_VERSION_1_12_0, ext_zknd),
107     ISA_EXT_DATA_ENTRY(zkne, PRIV_VERSION_1_12_0, ext_zkne),
108     ISA_EXT_DATA_ENTRY(zknh, PRIV_VERSION_1_12_0, ext_zknh),
109     ISA_EXT_DATA_ENTRY(zkr, PRIV_VERSION_1_12_0, ext_zkr),
110     ISA_EXT_DATA_ENTRY(zks, PRIV_VERSION_1_12_0, ext_zks),
111     ISA_EXT_DATA_ENTRY(zksed, PRIV_VERSION_1_12_0, ext_zksed),
112     ISA_EXT_DATA_ENTRY(zksh, PRIV_VERSION_1_12_0, ext_zksh),
113     ISA_EXT_DATA_ENTRY(zkt, PRIV_VERSION_1_12_0, ext_zkt),
114     ISA_EXT_DATA_ENTRY(zve32f, PRIV_VERSION_1_10_0, ext_zve32f),
115     ISA_EXT_DATA_ENTRY(zve64f, PRIV_VERSION_1_10_0, ext_zve64f),
116     ISA_EXT_DATA_ENTRY(zve64d, PRIV_VERSION_1_10_0, ext_zve64d),
117     ISA_EXT_DATA_ENTRY(zvfh, PRIV_VERSION_1_12_0, ext_zvfh),
118     ISA_EXT_DATA_ENTRY(zvfhmin, PRIV_VERSION_1_12_0, ext_zvfhmin),
119     ISA_EXT_DATA_ENTRY(zhinx, PRIV_VERSION_1_12_0, ext_zhinx),
120     ISA_EXT_DATA_ENTRY(zhinxmin, PRIV_VERSION_1_12_0, ext_zhinxmin),
121     ISA_EXT_DATA_ENTRY(smaia, PRIV_VERSION_1_12_0, ext_smaia),
122     ISA_EXT_DATA_ENTRY(smstateen, PRIV_VERSION_1_12_0, ext_smstateen),
123     ISA_EXT_DATA_ENTRY(ssaia, PRIV_VERSION_1_12_0, ext_ssaia),
124     ISA_EXT_DATA_ENTRY(sscofpmf, PRIV_VERSION_1_12_0, ext_sscofpmf),
125     ISA_EXT_DATA_ENTRY(sstc, PRIV_VERSION_1_12_0, ext_sstc),
126     ISA_EXT_DATA_ENTRY(svadu, PRIV_VERSION_1_12_0, ext_svadu),
127     ISA_EXT_DATA_ENTRY(svinval, PRIV_VERSION_1_12_0, ext_svinval),
128     ISA_EXT_DATA_ENTRY(svnapot, PRIV_VERSION_1_12_0, ext_svnapot),
129     ISA_EXT_DATA_ENTRY(svpbmt, PRIV_VERSION_1_12_0, ext_svpbmt),
130     ISA_EXT_DATA_ENTRY(xtheadba, PRIV_VERSION_1_11_0, ext_xtheadba),
131     ISA_EXT_DATA_ENTRY(xtheadbb, PRIV_VERSION_1_11_0, ext_xtheadbb),
132     ISA_EXT_DATA_ENTRY(xtheadbs, PRIV_VERSION_1_11_0, ext_xtheadbs),
133     ISA_EXT_DATA_ENTRY(xtheadcmo, PRIV_VERSION_1_11_0, ext_xtheadcmo),
134     ISA_EXT_DATA_ENTRY(xtheadcondmov, PRIV_VERSION_1_11_0, ext_xtheadcondmov),
135     ISA_EXT_DATA_ENTRY(xtheadfmemidx, PRIV_VERSION_1_11_0, ext_xtheadfmemidx),
136     ISA_EXT_DATA_ENTRY(xtheadfmv, PRIV_VERSION_1_11_0, ext_xtheadfmv),
137     ISA_EXT_DATA_ENTRY(xtheadmac, PRIV_VERSION_1_11_0, ext_xtheadmac),
138     ISA_EXT_DATA_ENTRY(xtheadmemidx, PRIV_VERSION_1_11_0, ext_xtheadmemidx),
139     ISA_EXT_DATA_ENTRY(xtheadmempair, PRIV_VERSION_1_11_0, ext_xtheadmempair),
140     ISA_EXT_DATA_ENTRY(xtheadsync, PRIV_VERSION_1_11_0, ext_xtheadsync),
141     ISA_EXT_DATA_ENTRY(xventanacondops, PRIV_VERSION_1_12_0, ext_XVentanaCondOps),
142 };
143 
144 static bool isa_ext_is_enabled(RISCVCPU *cpu,
145                                const struct isa_ext_data *edata)
146 {
147     bool *ext_enabled = (void *)&cpu->cfg + edata->ext_enable_offset;
148 
149     return *ext_enabled;
150 }
151 
152 static void isa_ext_update_enabled(RISCVCPU *cpu,
153                                    const struct isa_ext_data *edata, bool en)
154 {
155     bool *ext_enabled = (void *)&cpu->cfg + edata->ext_enable_offset;
156 
157     *ext_enabled = en;
158 }
159 
160 const char * const riscv_int_regnames[] = {
161     "x0/zero", "x1/ra",  "x2/sp",  "x3/gp",  "x4/tp",  "x5/t0",   "x6/t1",
162     "x7/t2",   "x8/s0",  "x9/s1",  "x10/a0", "x11/a1", "x12/a2",  "x13/a3",
163     "x14/a4",  "x15/a5", "x16/a6", "x17/a7", "x18/s2", "x19/s3",  "x20/s4",
164     "x21/s5",  "x22/s6", "x23/s7", "x24/s8", "x25/s9", "x26/s10", "x27/s11",
165     "x28/t3",  "x29/t4", "x30/t5", "x31/t6"
166 };
167 
168 const char * const riscv_int_regnamesh[] = {
169     "x0h/zeroh", "x1h/rah",  "x2h/sph",   "x3h/gph",   "x4h/tph",  "x5h/t0h",
170     "x6h/t1h",   "x7h/t2h",  "x8h/s0h",   "x9h/s1h",   "x10h/a0h", "x11h/a1h",
171     "x12h/a2h",  "x13h/a3h", "x14h/a4h",  "x15h/a5h",  "x16h/a6h", "x17h/a7h",
172     "x18h/s2h",  "x19h/s3h", "x20h/s4h",  "x21h/s5h",  "x22h/s6h", "x23h/s7h",
173     "x24h/s8h",  "x25h/s9h", "x26h/s10h", "x27h/s11h", "x28h/t3h", "x29h/t4h",
174     "x30h/t5h",  "x31h/t6h"
175 };
176 
177 const char * const riscv_fpr_regnames[] = {
178     "f0/ft0",   "f1/ft1",  "f2/ft2",   "f3/ft3",   "f4/ft4",  "f5/ft5",
179     "f6/ft6",   "f7/ft7",  "f8/fs0",   "f9/fs1",   "f10/fa0", "f11/fa1",
180     "f12/fa2",  "f13/fa3", "f14/fa4",  "f15/fa5",  "f16/fa6", "f17/fa7",
181     "f18/fs2",  "f19/fs3", "f20/fs4",  "f21/fs5",  "f22/fs6", "f23/fs7",
182     "f24/fs8",  "f25/fs9", "f26/fs10", "f27/fs11", "f28/ft8", "f29/ft9",
183     "f30/ft10", "f31/ft11"
184 };
185 
186 static const char * const riscv_excp_names[] = {
187     "misaligned_fetch",
188     "fault_fetch",
189     "illegal_instruction",
190     "breakpoint",
191     "misaligned_load",
192     "fault_load",
193     "misaligned_store",
194     "fault_store",
195     "user_ecall",
196     "supervisor_ecall",
197     "hypervisor_ecall",
198     "machine_ecall",
199     "exec_page_fault",
200     "load_page_fault",
201     "reserved",
202     "store_page_fault",
203     "reserved",
204     "reserved",
205     "reserved",
206     "reserved",
207     "guest_exec_page_fault",
208     "guest_load_page_fault",
209     "reserved",
210     "guest_store_page_fault",
211 };
212 
213 static const char * const riscv_intr_names[] = {
214     "u_software",
215     "s_software",
216     "vs_software",
217     "m_software",
218     "u_timer",
219     "s_timer",
220     "vs_timer",
221     "m_timer",
222     "u_external",
223     "s_external",
224     "vs_external",
225     "m_external",
226     "reserved",
227     "reserved",
228     "reserved",
229     "reserved"
230 };
231 
232 static void riscv_cpu_add_user_properties(Object *obj);
233 
234 const char *riscv_cpu_get_trap_name(target_ulong cause, bool async)
235 {
236     if (async) {
237         return (cause < ARRAY_SIZE(riscv_intr_names)) ?
238                riscv_intr_names[cause] : "(unknown)";
239     } else {
240         return (cause < ARRAY_SIZE(riscv_excp_names)) ?
241                riscv_excp_names[cause] : "(unknown)";
242     }
243 }
244 
245 static void set_misa(CPURISCVState *env, RISCVMXL mxl, uint32_t ext)
246 {
247     env->misa_mxl_max = env->misa_mxl = mxl;
248     env->misa_ext_mask = env->misa_ext = ext;
249 }
250 
251 #ifndef CONFIG_USER_ONLY
252 static uint8_t satp_mode_from_str(const char *satp_mode_str)
253 {
254     if (!strncmp(satp_mode_str, "mbare", 5)) {
255         return VM_1_10_MBARE;
256     }
257 
258     if (!strncmp(satp_mode_str, "sv32", 4)) {
259         return VM_1_10_SV32;
260     }
261 
262     if (!strncmp(satp_mode_str, "sv39", 4)) {
263         return VM_1_10_SV39;
264     }
265 
266     if (!strncmp(satp_mode_str, "sv48", 4)) {
267         return VM_1_10_SV48;
268     }
269 
270     if (!strncmp(satp_mode_str, "sv57", 4)) {
271         return VM_1_10_SV57;
272     }
273 
274     if (!strncmp(satp_mode_str, "sv64", 4)) {
275         return VM_1_10_SV64;
276     }
277 
278     g_assert_not_reached();
279 }
280 
281 uint8_t satp_mode_max_from_map(uint32_t map)
282 {
283     /* map here has at least one bit set, so no problem with clz */
284     return 31 - __builtin_clz(map);
285 }
286 
287 const char *satp_mode_str(uint8_t satp_mode, bool is_32_bit)
288 {
289     if (is_32_bit) {
290         switch (satp_mode) {
291         case VM_1_10_SV32:
292             return "sv32";
293         case VM_1_10_MBARE:
294             return "none";
295         }
296     } else {
297         switch (satp_mode) {
298         case VM_1_10_SV64:
299             return "sv64";
300         case VM_1_10_SV57:
301             return "sv57";
302         case VM_1_10_SV48:
303             return "sv48";
304         case VM_1_10_SV39:
305             return "sv39";
306         case VM_1_10_MBARE:
307             return "none";
308         }
309     }
310 
311     g_assert_not_reached();
312 }
313 
314 static void set_satp_mode_max_supported(RISCVCPU *cpu,
315                                         uint8_t satp_mode)
316 {
317     bool rv32 = riscv_cpu_mxl(&cpu->env) == MXL_RV32;
318     const bool *valid_vm = rv32 ? valid_vm_1_10_32 : valid_vm_1_10_64;
319 
320     for (int i = 0; i <= satp_mode; ++i) {
321         if (valid_vm[i]) {
322             cpu->cfg.satp_mode.supported |= (1 << i);
323         }
324     }
325 }
326 
327 /* Set the satp mode to the max supported */
328 static void set_satp_mode_default_map(RISCVCPU *cpu)
329 {
330     cpu->cfg.satp_mode.map = cpu->cfg.satp_mode.supported;
331 }
332 #endif
333 
334 static void riscv_any_cpu_init(Object *obj)
335 {
336     RISCVCPU *cpu = RISCV_CPU(obj);
337     CPURISCVState *env = &cpu->env;
338 #if defined(TARGET_RISCV32)
339     set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVD | RVC | RVU);
340 #elif defined(TARGET_RISCV64)
341     set_misa(env, MXL_RV64, RVI | RVM | RVA | RVF | RVD | RVC | RVU);
342 #endif
343 
344 #ifndef CONFIG_USER_ONLY
345     set_satp_mode_max_supported(RISCV_CPU(obj),
346         riscv_cpu_mxl(&RISCV_CPU(obj)->env) == MXL_RV32 ?
347         VM_1_10_SV32 : VM_1_10_SV57);
348 #endif
349 
350     env->priv_ver = PRIV_VERSION_LATEST;
351 
352     /* inherited from parent obj via riscv_cpu_init() */
353     cpu->cfg.ext_ifencei = true;
354     cpu->cfg.ext_icsr = true;
355     cpu->cfg.mmu = true;
356     cpu->cfg.pmp = true;
357 }
358 
359 #if defined(TARGET_RISCV64)
360 static void rv64_base_cpu_init(Object *obj)
361 {
362     CPURISCVState *env = &RISCV_CPU(obj)->env;
363     /* We set this in the realise function */
364     set_misa(env, MXL_RV64, 0);
365     riscv_cpu_add_user_properties(obj);
366     /* Set latest version of privileged specification */
367     env->priv_ver = PRIV_VERSION_LATEST;
368 #ifndef CONFIG_USER_ONLY
369     set_satp_mode_max_supported(RISCV_CPU(obj), VM_1_10_SV57);
370 #endif
371 }
372 
373 static void rv64_sifive_u_cpu_init(Object *obj)
374 {
375     RISCVCPU *cpu = RISCV_CPU(obj);
376     CPURISCVState *env = &cpu->env;
377     set_misa(env, MXL_RV64, RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
378     env->priv_ver = PRIV_VERSION_1_10_0;
379 #ifndef CONFIG_USER_ONLY
380     set_satp_mode_max_supported(RISCV_CPU(obj), VM_1_10_SV39);
381 #endif
382 
383     /* inherited from parent obj via riscv_cpu_init() */
384     cpu->cfg.ext_ifencei = true;
385     cpu->cfg.ext_icsr = true;
386     cpu->cfg.mmu = true;
387     cpu->cfg.pmp = true;
388 }
389 
390 static void rv64_sifive_e_cpu_init(Object *obj)
391 {
392     CPURISCVState *env = &RISCV_CPU(obj)->env;
393     RISCVCPU *cpu = RISCV_CPU(obj);
394 
395     set_misa(env, MXL_RV64, RVI | RVM | RVA | RVC | RVU);
396     env->priv_ver = PRIV_VERSION_1_10_0;
397 #ifndef CONFIG_USER_ONLY
398     set_satp_mode_max_supported(cpu, VM_1_10_MBARE);
399 #endif
400 
401     /* inherited from parent obj via riscv_cpu_init() */
402     cpu->cfg.ext_ifencei = true;
403     cpu->cfg.ext_icsr = true;
404     cpu->cfg.pmp = true;
405 }
406 
407 static void rv64_thead_c906_cpu_init(Object *obj)
408 {
409     CPURISCVState *env = &RISCV_CPU(obj)->env;
410     RISCVCPU *cpu = RISCV_CPU(obj);
411 
412     set_misa(env, MXL_RV64, RVG | RVC | RVS | RVU);
413     env->priv_ver = PRIV_VERSION_1_11_0;
414 
415     cpu->cfg.ext_zfh = true;
416     cpu->cfg.mmu = true;
417     cpu->cfg.ext_xtheadba = true;
418     cpu->cfg.ext_xtheadbb = true;
419     cpu->cfg.ext_xtheadbs = true;
420     cpu->cfg.ext_xtheadcmo = true;
421     cpu->cfg.ext_xtheadcondmov = true;
422     cpu->cfg.ext_xtheadfmemidx = true;
423     cpu->cfg.ext_xtheadmac = true;
424     cpu->cfg.ext_xtheadmemidx = true;
425     cpu->cfg.ext_xtheadmempair = true;
426     cpu->cfg.ext_xtheadsync = true;
427 
428     cpu->cfg.mvendorid = THEAD_VENDOR_ID;
429 #ifndef CONFIG_USER_ONLY
430     set_satp_mode_max_supported(cpu, VM_1_10_SV39);
431 #endif
432 
433     /* inherited from parent obj via riscv_cpu_init() */
434     cpu->cfg.pmp = true;
435 }
436 
437 static void rv64_veyron_v1_cpu_init(Object *obj)
438 {
439     CPURISCVState *env = &RISCV_CPU(obj)->env;
440     RISCVCPU *cpu = RISCV_CPU(obj);
441 
442     set_misa(env, MXL_RV64, RVG | RVC | RVS | RVU | RVH);
443     env->priv_ver = PRIV_VERSION_1_12_0;
444 
445     /* Enable ISA extensions */
446     cpu->cfg.mmu = true;
447     cpu->cfg.ext_ifencei = true;
448     cpu->cfg.ext_icsr = true;
449     cpu->cfg.pmp = true;
450     cpu->cfg.ext_icbom = true;
451     cpu->cfg.cbom_blocksize = 64;
452     cpu->cfg.cboz_blocksize = 64;
453     cpu->cfg.ext_icboz = true;
454     cpu->cfg.ext_smaia = true;
455     cpu->cfg.ext_ssaia = true;
456     cpu->cfg.ext_sscofpmf = true;
457     cpu->cfg.ext_sstc = true;
458     cpu->cfg.ext_svinval = true;
459     cpu->cfg.ext_svnapot = true;
460     cpu->cfg.ext_svpbmt = true;
461     cpu->cfg.ext_smstateen = true;
462     cpu->cfg.ext_zba = true;
463     cpu->cfg.ext_zbb = true;
464     cpu->cfg.ext_zbc = true;
465     cpu->cfg.ext_zbs = true;
466     cpu->cfg.ext_XVentanaCondOps = true;
467 
468     cpu->cfg.mvendorid = VEYRON_V1_MVENDORID;
469     cpu->cfg.marchid = VEYRON_V1_MARCHID;
470     cpu->cfg.mimpid = VEYRON_V1_MIMPID;
471 
472 #ifndef CONFIG_USER_ONLY
473     set_satp_mode_max_supported(cpu, VM_1_10_SV48);
474 #endif
475 }
476 
477 static void rv128_base_cpu_init(Object *obj)
478 {
479     if (qemu_tcg_mttcg_enabled()) {
480         /* Missing 128-bit aligned atomics */
481         error_report("128-bit RISC-V currently does not work with Multi "
482                      "Threaded TCG. Please use: -accel tcg,thread=single");
483         exit(EXIT_FAILURE);
484     }
485     CPURISCVState *env = &RISCV_CPU(obj)->env;
486     /* We set this in the realise function */
487     set_misa(env, MXL_RV128, 0);
488     riscv_cpu_add_user_properties(obj);
489     /* Set latest version of privileged specification */
490     env->priv_ver = PRIV_VERSION_LATEST;
491 #ifndef CONFIG_USER_ONLY
492     set_satp_mode_max_supported(RISCV_CPU(obj), VM_1_10_SV57);
493 #endif
494 }
495 #else
496 static void rv32_base_cpu_init(Object *obj)
497 {
498     CPURISCVState *env = &RISCV_CPU(obj)->env;
499     /* We set this in the realise function */
500     set_misa(env, MXL_RV32, 0);
501     riscv_cpu_add_user_properties(obj);
502     /* Set latest version of privileged specification */
503     env->priv_ver = PRIV_VERSION_LATEST;
504 #ifndef CONFIG_USER_ONLY
505     set_satp_mode_max_supported(RISCV_CPU(obj), VM_1_10_SV32);
506 #endif
507 }
508 
509 static void rv32_sifive_u_cpu_init(Object *obj)
510 {
511     RISCVCPU *cpu = RISCV_CPU(obj);
512     CPURISCVState *env = &cpu->env;
513     set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU);
514     env->priv_ver = PRIV_VERSION_1_10_0;
515 #ifndef CONFIG_USER_ONLY
516     set_satp_mode_max_supported(RISCV_CPU(obj), VM_1_10_SV32);
517 #endif
518 
519     /* inherited from parent obj via riscv_cpu_init() */
520     cpu->cfg.ext_ifencei = true;
521     cpu->cfg.ext_icsr = true;
522     cpu->cfg.mmu = true;
523     cpu->cfg.pmp = true;
524 }
525 
526 static void rv32_sifive_e_cpu_init(Object *obj)
527 {
528     CPURISCVState *env = &RISCV_CPU(obj)->env;
529     RISCVCPU *cpu = RISCV_CPU(obj);
530 
531     set_misa(env, MXL_RV32, RVI | RVM | RVA | RVC | RVU);
532     env->priv_ver = PRIV_VERSION_1_10_0;
533 #ifndef CONFIG_USER_ONLY
534     set_satp_mode_max_supported(cpu, VM_1_10_MBARE);
535 #endif
536 
537     /* inherited from parent obj via riscv_cpu_init() */
538     cpu->cfg.ext_ifencei = true;
539     cpu->cfg.ext_icsr = true;
540     cpu->cfg.pmp = true;
541 }
542 
543 static void rv32_ibex_cpu_init(Object *obj)
544 {
545     CPURISCVState *env = &RISCV_CPU(obj)->env;
546     RISCVCPU *cpu = RISCV_CPU(obj);
547 
548     set_misa(env, MXL_RV32, RVI | RVM | RVC | RVU);
549     env->priv_ver = PRIV_VERSION_1_11_0;
550 #ifndef CONFIG_USER_ONLY
551     set_satp_mode_max_supported(cpu, VM_1_10_MBARE);
552 #endif
553     cpu->cfg.epmp = true;
554 
555     /* inherited from parent obj via riscv_cpu_init() */
556     cpu->cfg.ext_ifencei = true;
557     cpu->cfg.ext_icsr = true;
558     cpu->cfg.pmp = true;
559 }
560 
561 static void rv32_imafcu_nommu_cpu_init(Object *obj)
562 {
563     CPURISCVState *env = &RISCV_CPU(obj)->env;
564     RISCVCPU *cpu = RISCV_CPU(obj);
565 
566     set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVC | RVU);
567     env->priv_ver = PRIV_VERSION_1_10_0;
568 #ifndef CONFIG_USER_ONLY
569     set_satp_mode_max_supported(cpu, VM_1_10_MBARE);
570 #endif
571 
572     /* inherited from parent obj via riscv_cpu_init() */
573     cpu->cfg.ext_ifencei = true;
574     cpu->cfg.ext_icsr = true;
575     cpu->cfg.pmp = true;
576 }
577 #endif
578 
579 #if defined(CONFIG_KVM)
580 static void riscv_host_cpu_init(Object *obj)
581 {
582     CPURISCVState *env = &RISCV_CPU(obj)->env;
583 #if defined(TARGET_RISCV32)
584     set_misa(env, MXL_RV32, 0);
585 #elif defined(TARGET_RISCV64)
586     set_misa(env, MXL_RV64, 0);
587 #endif
588     riscv_cpu_add_user_properties(obj);
589 }
590 #endif /* CONFIG_KVM */
591 
592 static ObjectClass *riscv_cpu_class_by_name(const char *cpu_model)
593 {
594     ObjectClass *oc;
595     char *typename;
596     char **cpuname;
597 
598     cpuname = g_strsplit(cpu_model, ",", 1);
599     typename = g_strdup_printf(RISCV_CPU_TYPE_NAME("%s"), cpuname[0]);
600     oc = object_class_by_name(typename);
601     g_strfreev(cpuname);
602     g_free(typename);
603     if (!oc || !object_class_dynamic_cast(oc, TYPE_RISCV_CPU) ||
604         object_class_is_abstract(oc)) {
605         return NULL;
606     }
607     return oc;
608 }
609 
610 static void riscv_cpu_dump_state(CPUState *cs, FILE *f, int flags)
611 {
612     RISCVCPU *cpu = RISCV_CPU(cs);
613     CPURISCVState *env = &cpu->env;
614     int i;
615 
616 #if !defined(CONFIG_USER_ONLY)
617     if (riscv_has_ext(env, RVH)) {
618         qemu_fprintf(f, " %s %d\n", "V      =  ", env->virt_enabled);
619     }
620 #endif
621     qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "pc      ", env->pc);
622 #ifndef CONFIG_USER_ONLY
623     {
624         static const int dump_csrs[] = {
625             CSR_MHARTID,
626             CSR_MSTATUS,
627             CSR_MSTATUSH,
628             /*
629              * CSR_SSTATUS is intentionally omitted here as its value
630              * can be figured out by looking at CSR_MSTATUS
631              */
632             CSR_HSTATUS,
633             CSR_VSSTATUS,
634             CSR_MIP,
635             CSR_MIE,
636             CSR_MIDELEG,
637             CSR_HIDELEG,
638             CSR_MEDELEG,
639             CSR_HEDELEG,
640             CSR_MTVEC,
641             CSR_STVEC,
642             CSR_VSTVEC,
643             CSR_MEPC,
644             CSR_SEPC,
645             CSR_VSEPC,
646             CSR_MCAUSE,
647             CSR_SCAUSE,
648             CSR_VSCAUSE,
649             CSR_MTVAL,
650             CSR_STVAL,
651             CSR_HTVAL,
652             CSR_MTVAL2,
653             CSR_MSCRATCH,
654             CSR_SSCRATCH,
655             CSR_SATP,
656             CSR_MMTE,
657             CSR_UPMBASE,
658             CSR_UPMMASK,
659             CSR_SPMBASE,
660             CSR_SPMMASK,
661             CSR_MPMBASE,
662             CSR_MPMMASK,
663         };
664 
665         for (int i = 0; i < ARRAY_SIZE(dump_csrs); ++i) {
666             int csrno = dump_csrs[i];
667             target_ulong val = 0;
668             RISCVException res = riscv_csrrw_debug(env, csrno, &val, 0, 0);
669 
670             /*
671              * Rely on the smode, hmode, etc, predicates within csr.c
672              * to do the filtering of the registers that are present.
673              */
674             if (res == RISCV_EXCP_NONE) {
675                 qemu_fprintf(f, " %-8s " TARGET_FMT_lx "\n",
676                              csr_ops[csrno].name, val);
677             }
678         }
679     }
680 #endif
681 
682     for (i = 0; i < 32; i++) {
683         qemu_fprintf(f, " %-8s " TARGET_FMT_lx,
684                      riscv_int_regnames[i], env->gpr[i]);
685         if ((i & 3) == 3) {
686             qemu_fprintf(f, "\n");
687         }
688     }
689     if (flags & CPU_DUMP_FPU) {
690         for (i = 0; i < 32; i++) {
691             qemu_fprintf(f, " %-8s %016" PRIx64,
692                          riscv_fpr_regnames[i], env->fpr[i]);
693             if ((i & 3) == 3) {
694                 qemu_fprintf(f, "\n");
695             }
696         }
697     }
698 }
699 
700 static void riscv_cpu_set_pc(CPUState *cs, vaddr value)
701 {
702     RISCVCPU *cpu = RISCV_CPU(cs);
703     CPURISCVState *env = &cpu->env;
704 
705     if (env->xl == MXL_RV32) {
706         env->pc = (int32_t)value;
707     } else {
708         env->pc = value;
709     }
710 }
711 
712 static vaddr riscv_cpu_get_pc(CPUState *cs)
713 {
714     RISCVCPU *cpu = RISCV_CPU(cs);
715     CPURISCVState *env = &cpu->env;
716 
717     /* Match cpu_get_tb_cpu_state. */
718     if (env->xl == MXL_RV32) {
719         return env->pc & UINT32_MAX;
720     }
721     return env->pc;
722 }
723 
724 static void riscv_cpu_synchronize_from_tb(CPUState *cs,
725                                           const TranslationBlock *tb)
726 {
727     if (!(tb_cflags(tb) & CF_PCREL)) {
728         RISCVCPU *cpu = RISCV_CPU(cs);
729         CPURISCVState *env = &cpu->env;
730         RISCVMXL xl = FIELD_EX32(tb->flags, TB_FLAGS, XL);
731 
732         tcg_debug_assert(!(cs->tcg_cflags & CF_PCREL));
733 
734         if (xl == MXL_RV32) {
735             env->pc = (int32_t) tb->pc;
736         } else {
737             env->pc = tb->pc;
738         }
739     }
740 }
741 
742 static bool riscv_cpu_has_work(CPUState *cs)
743 {
744 #ifndef CONFIG_USER_ONLY
745     RISCVCPU *cpu = RISCV_CPU(cs);
746     CPURISCVState *env = &cpu->env;
747     /*
748      * Definition of the WFI instruction requires it to ignore the privilege
749      * mode and delegation registers, but respect individual enables
750      */
751     return riscv_cpu_all_pending(env) != 0;
752 #else
753     return true;
754 #endif
755 }
756 
757 static void riscv_restore_state_to_opc(CPUState *cs,
758                                        const TranslationBlock *tb,
759                                        const uint64_t *data)
760 {
761     RISCVCPU *cpu = RISCV_CPU(cs);
762     CPURISCVState *env = &cpu->env;
763     RISCVMXL xl = FIELD_EX32(tb->flags, TB_FLAGS, XL);
764     target_ulong pc;
765 
766     if (tb_cflags(tb) & CF_PCREL) {
767         pc = (env->pc & TARGET_PAGE_MASK) | data[0];
768     } else {
769         pc = data[0];
770     }
771 
772     if (xl == MXL_RV32) {
773         env->pc = (int32_t)pc;
774     } else {
775         env->pc = pc;
776     }
777     env->bins = data[1];
778 }
779 
780 static void riscv_cpu_reset_hold(Object *obj)
781 {
782 #ifndef CONFIG_USER_ONLY
783     uint8_t iprio;
784     int i, irq, rdzero;
785 #endif
786     CPUState *cs = CPU(obj);
787     RISCVCPU *cpu = RISCV_CPU(cs);
788     RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(cpu);
789     CPURISCVState *env = &cpu->env;
790 
791     if (mcc->parent_phases.hold) {
792         mcc->parent_phases.hold(obj);
793     }
794 #ifndef CONFIG_USER_ONLY
795     env->misa_mxl = env->misa_mxl_max;
796     env->priv = PRV_M;
797     env->mstatus &= ~(MSTATUS_MIE | MSTATUS_MPRV);
798     if (env->misa_mxl > MXL_RV32) {
799         /*
800          * The reset status of SXL/UXL is undefined, but mstatus is WARL
801          * and we must ensure that the value after init is valid for read.
802          */
803         env->mstatus = set_field(env->mstatus, MSTATUS64_SXL, env->misa_mxl);
804         env->mstatus = set_field(env->mstatus, MSTATUS64_UXL, env->misa_mxl);
805         if (riscv_has_ext(env, RVH)) {
806             env->vsstatus = set_field(env->vsstatus,
807                                       MSTATUS64_SXL, env->misa_mxl);
808             env->vsstatus = set_field(env->vsstatus,
809                                       MSTATUS64_UXL, env->misa_mxl);
810             env->mstatus_hs = set_field(env->mstatus_hs,
811                                         MSTATUS64_SXL, env->misa_mxl);
812             env->mstatus_hs = set_field(env->mstatus_hs,
813                                         MSTATUS64_UXL, env->misa_mxl);
814         }
815     }
816     env->mcause = 0;
817     env->miclaim = MIP_SGEIP;
818     env->pc = env->resetvec;
819     env->bins = 0;
820     env->two_stage_lookup = false;
821 
822     env->menvcfg = (cpu->cfg.ext_svpbmt ? MENVCFG_PBMTE : 0) |
823                    (cpu->cfg.ext_svadu ? MENVCFG_HADE : 0);
824     env->henvcfg = (cpu->cfg.ext_svpbmt ? HENVCFG_PBMTE : 0) |
825                    (cpu->cfg.ext_svadu ? HENVCFG_HADE : 0);
826 
827     /* Initialized default priorities of local interrupts. */
828     for (i = 0; i < ARRAY_SIZE(env->miprio); i++) {
829         iprio = riscv_cpu_default_priority(i);
830         env->miprio[i] = (i == IRQ_M_EXT) ? 0 : iprio;
831         env->siprio[i] = (i == IRQ_S_EXT) ? 0 : iprio;
832         env->hviprio[i] = 0;
833     }
834     i = 0;
835     while (!riscv_cpu_hviprio_index2irq(i, &irq, &rdzero)) {
836         if (!rdzero) {
837             env->hviprio[irq] = env->miprio[irq];
838         }
839         i++;
840     }
841     /* mmte is supposed to have pm.current hardwired to 1 */
842     env->mmte |= (EXT_STATUS_INITIAL | MMTE_M_PM_CURRENT);
843 #endif
844     env->xl = riscv_cpu_mxl(env);
845     riscv_cpu_update_mask(env);
846     cs->exception_index = RISCV_EXCP_NONE;
847     env->load_res = -1;
848     set_default_nan_mode(1, &env->fp_status);
849 
850 #ifndef CONFIG_USER_ONLY
851     if (cpu->cfg.debug) {
852         riscv_trigger_init(env);
853     }
854 
855     if (kvm_enabled()) {
856         kvm_riscv_reset_vcpu(cpu);
857     }
858 #endif
859 }
860 
861 static void riscv_cpu_disas_set_info(CPUState *s, disassemble_info *info)
862 {
863     RISCVCPU *cpu = RISCV_CPU(s);
864     CPURISCVState *env = &cpu->env;
865     info->target_info = &cpu->cfg;
866 
867     switch (env->xl) {
868     case MXL_RV32:
869         info->print_insn = print_insn_riscv32;
870         break;
871     case MXL_RV64:
872         info->print_insn = print_insn_riscv64;
873         break;
874     case MXL_RV128:
875         info->print_insn = print_insn_riscv128;
876         break;
877     default:
878         g_assert_not_reached();
879     }
880 }
881 
882 static void riscv_cpu_validate_v(CPURISCVState *env, RISCVCPUConfig *cfg,
883                                  Error **errp)
884 {
885     int vext_version = VEXT_VERSION_1_00_0;
886 
887     if (!is_power_of_2(cfg->vlen)) {
888         error_setg(errp, "Vector extension VLEN must be power of 2");
889         return;
890     }
891     if (cfg->vlen > RV_VLEN_MAX || cfg->vlen < 128) {
892         error_setg(errp,
893                    "Vector extension implementation only supports VLEN "
894                    "in the range [128, %d]", RV_VLEN_MAX);
895         return;
896     }
897     if (!is_power_of_2(cfg->elen)) {
898         error_setg(errp, "Vector extension ELEN must be power of 2");
899         return;
900     }
901     if (cfg->elen > 64 || cfg->elen < 8) {
902         error_setg(errp,
903                    "Vector extension implementation only supports ELEN "
904                    "in the range [8, 64]");
905         return;
906     }
907     if (cfg->vext_spec) {
908         if (!g_strcmp0(cfg->vext_spec, "v1.0")) {
909             vext_version = VEXT_VERSION_1_00_0;
910         } else {
911             error_setg(errp, "Unsupported vector spec version '%s'",
912                        cfg->vext_spec);
913             return;
914         }
915     } else {
916         qemu_log("vector version is not specified, "
917                  "use the default value v1.0\n");
918     }
919     env->vext_ver = vext_version;
920 }
921 
922 static void riscv_cpu_validate_priv_spec(RISCVCPU *cpu, Error **errp)
923 {
924     CPURISCVState *env = &cpu->env;
925     int priv_version = -1;
926 
927     if (cpu->cfg.priv_spec) {
928         if (!g_strcmp0(cpu->cfg.priv_spec, "v1.12.0")) {
929             priv_version = PRIV_VERSION_1_12_0;
930         } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.11.0")) {
931             priv_version = PRIV_VERSION_1_11_0;
932         } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.10.0")) {
933             priv_version = PRIV_VERSION_1_10_0;
934         } else {
935             error_setg(errp,
936                        "Unsupported privilege spec version '%s'",
937                        cpu->cfg.priv_spec);
938             return;
939         }
940 
941         env->priv_ver = priv_version;
942     }
943 }
944 
945 static void riscv_cpu_disable_priv_spec_isa_exts(RISCVCPU *cpu)
946 {
947     CPURISCVState *env = &cpu->env;
948     int i;
949 
950     /* Force disable extensions if priv spec version does not match */
951     for (i = 0; i < ARRAY_SIZE(isa_edata_arr); i++) {
952         if (isa_ext_is_enabled(cpu, &isa_edata_arr[i]) &&
953             (env->priv_ver < isa_edata_arr[i].min_version)) {
954             isa_ext_update_enabled(cpu, &isa_edata_arr[i], false);
955 #ifndef CONFIG_USER_ONLY
956             warn_report("disabling %s extension for hart 0x" TARGET_FMT_lx
957                         " because privilege spec version does not match",
958                         isa_edata_arr[i].name, env->mhartid);
959 #else
960             warn_report("disabling %s extension because "
961                         "privilege spec version does not match",
962                         isa_edata_arr[i].name);
963 #endif
964         }
965     }
966 }
967 
968 static void riscv_cpu_validate_misa_mxl(RISCVCPU *cpu, Error **errp)
969 {
970     RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(cpu);
971     CPUClass *cc = CPU_CLASS(mcc);
972     CPURISCVState *env = &cpu->env;
973 
974     /* Validate that MISA_MXL is set properly. */
975     switch (env->misa_mxl_max) {
976 #ifdef TARGET_RISCV64
977     case MXL_RV64:
978     case MXL_RV128:
979         cc->gdb_core_xml_file = "riscv-64bit-cpu.xml";
980         break;
981 #endif
982     case MXL_RV32:
983         cc->gdb_core_xml_file = "riscv-32bit-cpu.xml";
984         break;
985     default:
986         g_assert_not_reached();
987     }
988 
989     if (env->misa_mxl_max != env->misa_mxl) {
990         error_setg(errp, "misa_mxl_max must be equal to misa_mxl");
991         return;
992     }
993 }
994 
995 /*
996  * Check consistency between chosen extensions while setting
997  * cpu->cfg accordingly.
998  */
999 void riscv_cpu_validate_set_extensions(RISCVCPU *cpu, Error **errp)
1000 {
1001     CPURISCVState *env = &cpu->env;
1002     Error *local_err = NULL;
1003 
1004     /* Do some ISA extension error checking */
1005     if (riscv_has_ext(env, RVG) &&
1006         !(riscv_has_ext(env, RVI) && riscv_has_ext(env, RVM) &&
1007           riscv_has_ext(env, RVA) && riscv_has_ext(env, RVF) &&
1008           riscv_has_ext(env, RVD) &&
1009           cpu->cfg.ext_icsr && cpu->cfg.ext_ifencei)) {
1010         warn_report("Setting G will also set IMAFD_Zicsr_Zifencei");
1011         cpu->cfg.ext_icsr = true;
1012         cpu->cfg.ext_ifencei = true;
1013 
1014         env->misa_ext |= RVI | RVM | RVA | RVF | RVD;
1015         env->misa_ext_mask |= RVI | RVM | RVA | RVF | RVD;
1016     }
1017 
1018     if (riscv_has_ext(env, RVI) && riscv_has_ext(env, RVE)) {
1019         error_setg(errp,
1020                    "I and E extensions are incompatible");
1021         return;
1022     }
1023 
1024     if (!riscv_has_ext(env, RVI) && !riscv_has_ext(env, RVE)) {
1025         error_setg(errp,
1026                    "Either I or E extension must be set");
1027         return;
1028     }
1029 
1030     if (riscv_has_ext(env, RVS) && !riscv_has_ext(env, RVU)) {
1031         error_setg(errp,
1032                    "Setting S extension without U extension is illegal");
1033         return;
1034     }
1035 
1036     if (riscv_has_ext(env, RVH) && !riscv_has_ext(env, RVI)) {
1037         error_setg(errp,
1038                    "H depends on an I base integer ISA with 32 x registers");
1039         return;
1040     }
1041 
1042     if (riscv_has_ext(env, RVH) && !riscv_has_ext(env, RVS)) {
1043         error_setg(errp, "H extension implicitly requires S-mode");
1044         return;
1045     }
1046 
1047     if (riscv_has_ext(env, RVF) && !cpu->cfg.ext_icsr) {
1048         error_setg(errp, "F extension requires Zicsr");
1049         return;
1050     }
1051 
1052     if ((cpu->cfg.ext_zawrs) && !riscv_has_ext(env, RVA)) {
1053         error_setg(errp, "Zawrs extension requires A extension");
1054         return;
1055     }
1056 
1057     if (cpu->cfg.ext_zfh) {
1058         cpu->cfg.ext_zfhmin = true;
1059     }
1060 
1061     if (cpu->cfg.ext_zfhmin && !riscv_has_ext(env, RVF)) {
1062         error_setg(errp, "Zfh/Zfhmin extensions require F extension");
1063         return;
1064     }
1065 
1066     if (riscv_has_ext(env, RVD) && !riscv_has_ext(env, RVF)) {
1067         error_setg(errp, "D extension requires F extension");
1068         return;
1069     }
1070 
1071     if (riscv_has_ext(env, RVV)) {
1072         riscv_cpu_validate_v(env, &cpu->cfg, &local_err);
1073         if (local_err != NULL) {
1074             error_propagate(errp, local_err);
1075             return;
1076         }
1077 
1078         /* The V vector extension depends on the Zve64d extension */
1079         cpu->cfg.ext_zve64d = true;
1080     }
1081 
1082     /* The Zve64d extension depends on the Zve64f extension */
1083     if (cpu->cfg.ext_zve64d) {
1084         cpu->cfg.ext_zve64f = true;
1085     }
1086 
1087     /* The Zve64f extension depends on the Zve32f extension */
1088     if (cpu->cfg.ext_zve64f) {
1089         cpu->cfg.ext_zve32f = true;
1090     }
1091 
1092     if (cpu->cfg.ext_zve64d && !riscv_has_ext(env, RVD)) {
1093         error_setg(errp, "Zve64d/V extensions require D extension");
1094         return;
1095     }
1096 
1097     if (cpu->cfg.ext_zve32f && !riscv_has_ext(env, RVF)) {
1098         error_setg(errp, "Zve32f/Zve64f extensions require F extension");
1099         return;
1100     }
1101 
1102     if (cpu->cfg.ext_zvfh) {
1103         cpu->cfg.ext_zvfhmin = true;
1104     }
1105 
1106     if (cpu->cfg.ext_zvfhmin && !cpu->cfg.ext_zve32f) {
1107         error_setg(errp, "Zvfh/Zvfhmin extensions require Zve32f extension");
1108         return;
1109     }
1110 
1111     if (cpu->cfg.ext_zvfh && !cpu->cfg.ext_zfhmin) {
1112         error_setg(errp, "Zvfh extensions requires Zfhmin extension");
1113         return;
1114     }
1115 
1116     /* Set the ISA extensions, checks should have happened above */
1117     if (cpu->cfg.ext_zhinx) {
1118         cpu->cfg.ext_zhinxmin = true;
1119     }
1120 
1121     if ((cpu->cfg.ext_zdinx || cpu->cfg.ext_zhinxmin) && !cpu->cfg.ext_zfinx) {
1122         error_setg(errp, "Zdinx/Zhinx/Zhinxmin extensions require Zfinx");
1123         return;
1124     }
1125 
1126     if (cpu->cfg.ext_zfinx) {
1127         if (!cpu->cfg.ext_icsr) {
1128             error_setg(errp, "Zfinx extension requires Zicsr");
1129             return;
1130         }
1131         if (riscv_has_ext(env, RVF)) {
1132             error_setg(errp,
1133                        "Zfinx cannot be supported together with F extension");
1134             return;
1135         }
1136     }
1137 
1138     if (cpu->cfg.ext_zce) {
1139         cpu->cfg.ext_zca = true;
1140         cpu->cfg.ext_zcb = true;
1141         cpu->cfg.ext_zcmp = true;
1142         cpu->cfg.ext_zcmt = true;
1143         if (riscv_has_ext(env, RVF) && env->misa_mxl_max == MXL_RV32) {
1144             cpu->cfg.ext_zcf = true;
1145         }
1146     }
1147 
1148     if (riscv_has_ext(env, RVC)) {
1149         cpu->cfg.ext_zca = true;
1150         if (riscv_has_ext(env, RVF) && env->misa_mxl_max == MXL_RV32) {
1151             cpu->cfg.ext_zcf = true;
1152         }
1153         if (riscv_has_ext(env, RVD)) {
1154             cpu->cfg.ext_zcd = true;
1155         }
1156     }
1157 
1158     if (env->misa_mxl_max != MXL_RV32 && cpu->cfg.ext_zcf) {
1159         error_setg(errp, "Zcf extension is only relevant to RV32");
1160         return;
1161     }
1162 
1163     if (!riscv_has_ext(env, RVF) && cpu->cfg.ext_zcf) {
1164         error_setg(errp, "Zcf extension requires F extension");
1165         return;
1166     }
1167 
1168     if (!riscv_has_ext(env, RVD) && cpu->cfg.ext_zcd) {
1169         error_setg(errp, "Zcd extension requires D extension");
1170         return;
1171     }
1172 
1173     if ((cpu->cfg.ext_zcf || cpu->cfg.ext_zcd || cpu->cfg.ext_zcb ||
1174          cpu->cfg.ext_zcmp || cpu->cfg.ext_zcmt) && !cpu->cfg.ext_zca) {
1175         error_setg(errp, "Zcf/Zcd/Zcb/Zcmp/Zcmt extensions require Zca "
1176                          "extension");
1177         return;
1178     }
1179 
1180     if (cpu->cfg.ext_zcd && (cpu->cfg.ext_zcmp || cpu->cfg.ext_zcmt)) {
1181         error_setg(errp, "Zcmp/Zcmt extensions are incompatible with "
1182                          "Zcd extension");
1183         return;
1184     }
1185 
1186     if (cpu->cfg.ext_zcmt && !cpu->cfg.ext_icsr) {
1187         error_setg(errp, "Zcmt extension requires Zicsr extension");
1188         return;
1189     }
1190 
1191     if (cpu->cfg.ext_zk) {
1192         cpu->cfg.ext_zkn = true;
1193         cpu->cfg.ext_zkr = true;
1194         cpu->cfg.ext_zkt = true;
1195     }
1196 
1197     if (cpu->cfg.ext_zkn) {
1198         cpu->cfg.ext_zbkb = true;
1199         cpu->cfg.ext_zbkc = true;
1200         cpu->cfg.ext_zbkx = true;
1201         cpu->cfg.ext_zkne = true;
1202         cpu->cfg.ext_zknd = true;
1203         cpu->cfg.ext_zknh = true;
1204     }
1205 
1206     if (cpu->cfg.ext_zks) {
1207         cpu->cfg.ext_zbkb = true;
1208         cpu->cfg.ext_zbkc = true;
1209         cpu->cfg.ext_zbkx = true;
1210         cpu->cfg.ext_zksed = true;
1211         cpu->cfg.ext_zksh = true;
1212     }
1213 
1214     /*
1215      * Disable isa extensions based on priv spec after we
1216      * validated and set everything we need.
1217      */
1218     riscv_cpu_disable_priv_spec_isa_exts(cpu);
1219 }
1220 
1221 #ifndef CONFIG_USER_ONLY
1222 static void riscv_cpu_satp_mode_finalize(RISCVCPU *cpu, Error **errp)
1223 {
1224     bool rv32 = riscv_cpu_mxl(&cpu->env) == MXL_RV32;
1225     uint8_t satp_mode_map_max;
1226     uint8_t satp_mode_supported_max =
1227                         satp_mode_max_from_map(cpu->cfg.satp_mode.supported);
1228 
1229     if (cpu->cfg.satp_mode.map == 0) {
1230         if (cpu->cfg.satp_mode.init == 0) {
1231             /* If unset by the user, we fallback to the default satp mode. */
1232             set_satp_mode_default_map(cpu);
1233         } else {
1234             /*
1235              * Find the lowest level that was disabled and then enable the
1236              * first valid level below which can be found in
1237              * valid_vm_1_10_32/64.
1238              */
1239             for (int i = 1; i < 16; ++i) {
1240                 if ((cpu->cfg.satp_mode.init & (1 << i)) &&
1241                     (cpu->cfg.satp_mode.supported & (1 << i))) {
1242                     for (int j = i - 1; j >= 0; --j) {
1243                         if (cpu->cfg.satp_mode.supported & (1 << j)) {
1244                             cpu->cfg.satp_mode.map |= (1 << j);
1245                             break;
1246                         }
1247                     }
1248                     break;
1249                 }
1250             }
1251         }
1252     }
1253 
1254     satp_mode_map_max = satp_mode_max_from_map(cpu->cfg.satp_mode.map);
1255 
1256     /* Make sure the user asked for a supported configuration (HW and qemu) */
1257     if (satp_mode_map_max > satp_mode_supported_max) {
1258         error_setg(errp, "satp_mode %s is higher than hw max capability %s",
1259                    satp_mode_str(satp_mode_map_max, rv32),
1260                    satp_mode_str(satp_mode_supported_max, rv32));
1261         return;
1262     }
1263 
1264     /*
1265      * Make sure the user did not ask for an invalid configuration as per
1266      * the specification.
1267      */
1268     if (!rv32) {
1269         for (int i = satp_mode_map_max - 1; i >= 0; --i) {
1270             if (!(cpu->cfg.satp_mode.map & (1 << i)) &&
1271                 (cpu->cfg.satp_mode.init & (1 << i)) &&
1272                 (cpu->cfg.satp_mode.supported & (1 << i))) {
1273                 error_setg(errp, "cannot disable %s satp mode if %s "
1274                            "is enabled", satp_mode_str(i, false),
1275                            satp_mode_str(satp_mode_map_max, false));
1276                 return;
1277             }
1278         }
1279     }
1280 
1281     /* Finally expand the map so that all valid modes are set */
1282     for (int i = satp_mode_map_max - 1; i >= 0; --i) {
1283         if (cpu->cfg.satp_mode.supported & (1 << i)) {
1284             cpu->cfg.satp_mode.map |= (1 << i);
1285         }
1286     }
1287 }
1288 #endif
1289 
1290 static void riscv_cpu_finalize_features(RISCVCPU *cpu, Error **errp)
1291 {
1292 #ifndef CONFIG_USER_ONLY
1293     Error *local_err = NULL;
1294 
1295     riscv_cpu_satp_mode_finalize(cpu, &local_err);
1296     if (local_err != NULL) {
1297         error_propagate(errp, local_err);
1298         return;
1299     }
1300 #endif
1301 }
1302 
1303 static void riscv_cpu_validate_misa_priv(CPURISCVState *env, Error **errp)
1304 {
1305     if (riscv_has_ext(env, RVH) && env->priv_ver < PRIV_VERSION_1_12_0) {
1306         error_setg(errp, "H extension requires priv spec 1.12.0");
1307         return;
1308     }
1309 }
1310 
1311 static void riscv_cpu_realize(DeviceState *dev, Error **errp)
1312 {
1313     CPUState *cs = CPU(dev);
1314     RISCVCPU *cpu = RISCV_CPU(dev);
1315     CPURISCVState *env = &cpu->env;
1316     RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(dev);
1317     Error *local_err = NULL;
1318 
1319     cpu_exec_realizefn(cs, &local_err);
1320     if (local_err != NULL) {
1321         error_propagate(errp, local_err);
1322         return;
1323     }
1324 
1325     riscv_cpu_validate_misa_mxl(cpu, &local_err);
1326     if (local_err != NULL) {
1327         error_propagate(errp, local_err);
1328         return;
1329     }
1330 
1331     riscv_cpu_validate_priv_spec(cpu, &local_err);
1332     if (local_err != NULL) {
1333         error_propagate(errp, local_err);
1334         return;
1335     }
1336 
1337     riscv_cpu_validate_misa_priv(env, &local_err);
1338     if (local_err != NULL) {
1339         error_propagate(errp, local_err);
1340         return;
1341     }
1342 
1343     if (cpu->cfg.epmp && !cpu->cfg.pmp) {
1344         /*
1345          * Enhanced PMP should only be available
1346          * on harts with PMP support
1347          */
1348         error_setg(errp, "Invalid configuration: EPMP requires PMP support");
1349         return;
1350     }
1351 
1352     riscv_cpu_validate_set_extensions(cpu, &local_err);
1353     if (local_err != NULL) {
1354         error_propagate(errp, local_err);
1355         return;
1356     }
1357 
1358 #ifndef CONFIG_USER_ONLY
1359     cs->tcg_cflags |= CF_PCREL;
1360 
1361     if (cpu->cfg.ext_sstc) {
1362         riscv_timer_init(cpu);
1363     }
1364 
1365     if (cpu->cfg.pmu_num) {
1366         if (!riscv_pmu_init(cpu, cpu->cfg.pmu_num) && cpu->cfg.ext_sscofpmf) {
1367             cpu->pmu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
1368                                           riscv_pmu_timer_cb, cpu);
1369         }
1370      }
1371 #endif
1372 
1373     riscv_cpu_finalize_features(cpu, &local_err);
1374     if (local_err != NULL) {
1375         error_propagate(errp, local_err);
1376         return;
1377     }
1378 
1379     riscv_cpu_register_gdb_regs_for_features(cs);
1380 
1381     qemu_init_vcpu(cs);
1382     cpu_reset(cs);
1383 
1384     mcc->parent_realize(dev, errp);
1385 }
1386 
1387 #ifndef CONFIG_USER_ONLY
1388 static void cpu_riscv_get_satp(Object *obj, Visitor *v, const char *name,
1389                                void *opaque, Error **errp)
1390 {
1391     RISCVSATPMap *satp_map = opaque;
1392     uint8_t satp = satp_mode_from_str(name);
1393     bool value;
1394 
1395     value = satp_map->map & (1 << satp);
1396 
1397     visit_type_bool(v, name, &value, errp);
1398 }
1399 
1400 static void cpu_riscv_set_satp(Object *obj, Visitor *v, const char *name,
1401                                void *opaque, Error **errp)
1402 {
1403     RISCVSATPMap *satp_map = opaque;
1404     uint8_t satp = satp_mode_from_str(name);
1405     bool value;
1406 
1407     if (!visit_type_bool(v, name, &value, errp)) {
1408         return;
1409     }
1410 
1411     satp_map->map = deposit32(satp_map->map, satp, 1, value);
1412     satp_map->init |= 1 << satp;
1413 }
1414 
1415 static void riscv_add_satp_mode_properties(Object *obj)
1416 {
1417     RISCVCPU *cpu = RISCV_CPU(obj);
1418 
1419     if (cpu->env.misa_mxl == MXL_RV32) {
1420         object_property_add(obj, "sv32", "bool", cpu_riscv_get_satp,
1421                             cpu_riscv_set_satp, NULL, &cpu->cfg.satp_mode);
1422     } else {
1423         object_property_add(obj, "sv39", "bool", cpu_riscv_get_satp,
1424                             cpu_riscv_set_satp, NULL, &cpu->cfg.satp_mode);
1425         object_property_add(obj, "sv48", "bool", cpu_riscv_get_satp,
1426                             cpu_riscv_set_satp, NULL, &cpu->cfg.satp_mode);
1427         object_property_add(obj, "sv57", "bool", cpu_riscv_get_satp,
1428                             cpu_riscv_set_satp, NULL, &cpu->cfg.satp_mode);
1429         object_property_add(obj, "sv64", "bool", cpu_riscv_get_satp,
1430                             cpu_riscv_set_satp, NULL, &cpu->cfg.satp_mode);
1431     }
1432 }
1433 
1434 static void riscv_cpu_set_irq(void *opaque, int irq, int level)
1435 {
1436     RISCVCPU *cpu = RISCV_CPU(opaque);
1437     CPURISCVState *env = &cpu->env;
1438 
1439     if (irq < IRQ_LOCAL_MAX) {
1440         switch (irq) {
1441         case IRQ_U_SOFT:
1442         case IRQ_S_SOFT:
1443         case IRQ_VS_SOFT:
1444         case IRQ_M_SOFT:
1445         case IRQ_U_TIMER:
1446         case IRQ_S_TIMER:
1447         case IRQ_VS_TIMER:
1448         case IRQ_M_TIMER:
1449         case IRQ_U_EXT:
1450         case IRQ_VS_EXT:
1451         case IRQ_M_EXT:
1452             if (kvm_enabled()) {
1453                 kvm_riscv_set_irq(cpu, irq, level);
1454             } else {
1455                 riscv_cpu_update_mip(env, 1 << irq, BOOL_TO_MASK(level));
1456             }
1457              break;
1458         case IRQ_S_EXT:
1459             if (kvm_enabled()) {
1460                 kvm_riscv_set_irq(cpu, irq, level);
1461             } else {
1462                 env->external_seip = level;
1463                 riscv_cpu_update_mip(env, 1 << irq,
1464                                      BOOL_TO_MASK(level | env->software_seip));
1465             }
1466             break;
1467         default:
1468             g_assert_not_reached();
1469         }
1470     } else if (irq < (IRQ_LOCAL_MAX + IRQ_LOCAL_GUEST_MAX)) {
1471         /* Require H-extension for handling guest local interrupts */
1472         if (!riscv_has_ext(env, RVH)) {
1473             g_assert_not_reached();
1474         }
1475 
1476         /* Compute bit position in HGEIP CSR */
1477         irq = irq - IRQ_LOCAL_MAX + 1;
1478         if (env->geilen < irq) {
1479             g_assert_not_reached();
1480         }
1481 
1482         /* Update HGEIP CSR */
1483         env->hgeip &= ~((target_ulong)1 << irq);
1484         if (level) {
1485             env->hgeip |= (target_ulong)1 << irq;
1486         }
1487 
1488         /* Update mip.SGEIP bit */
1489         riscv_cpu_update_mip(env, MIP_SGEIP,
1490                              BOOL_TO_MASK(!!(env->hgeie & env->hgeip)));
1491     } else {
1492         g_assert_not_reached();
1493     }
1494 }
1495 #endif /* CONFIG_USER_ONLY */
1496 
1497 static void riscv_cpu_init(Object *obj)
1498 {
1499     RISCVCPU *cpu = RISCV_CPU(obj);
1500 
1501     cpu_set_cpustate_pointers(cpu);
1502 
1503 #ifndef CONFIG_USER_ONLY
1504     qdev_init_gpio_in(DEVICE(cpu), riscv_cpu_set_irq,
1505                       IRQ_LOCAL_MAX + IRQ_LOCAL_GUEST_MAX);
1506 #endif /* CONFIG_USER_ONLY */
1507 }
1508 
1509 typedef struct RISCVCPUMisaExtConfig {
1510     const char *name;
1511     const char *description;
1512     target_ulong misa_bit;
1513     bool enabled;
1514 } RISCVCPUMisaExtConfig;
1515 
1516 static void cpu_set_misa_ext_cfg(Object *obj, Visitor *v, const char *name,
1517                                  void *opaque, Error **errp)
1518 {
1519     const RISCVCPUMisaExtConfig *misa_ext_cfg = opaque;
1520     target_ulong misa_bit = misa_ext_cfg->misa_bit;
1521     RISCVCPU *cpu = RISCV_CPU(obj);
1522     CPURISCVState *env = &cpu->env;
1523     bool value;
1524 
1525     if (!visit_type_bool(v, name, &value, errp)) {
1526         return;
1527     }
1528 
1529     if (value) {
1530         env->misa_ext |= misa_bit;
1531         env->misa_ext_mask |= misa_bit;
1532     } else {
1533         env->misa_ext &= ~misa_bit;
1534         env->misa_ext_mask &= ~misa_bit;
1535     }
1536 }
1537 
1538 static void cpu_get_misa_ext_cfg(Object *obj, Visitor *v, const char *name,
1539                                  void *opaque, Error **errp)
1540 {
1541     const RISCVCPUMisaExtConfig *misa_ext_cfg = opaque;
1542     target_ulong misa_bit = misa_ext_cfg->misa_bit;
1543     RISCVCPU *cpu = RISCV_CPU(obj);
1544     CPURISCVState *env = &cpu->env;
1545     bool value;
1546 
1547     value = env->misa_ext & misa_bit;
1548 
1549     visit_type_bool(v, name, &value, errp);
1550 }
1551 
1552 static const RISCVCPUMisaExtConfig misa_ext_cfgs[] = {
1553     {.name = "a", .description = "Atomic instructions",
1554      .misa_bit = RVA, .enabled = true},
1555     {.name = "c", .description = "Compressed instructions",
1556      .misa_bit = RVC, .enabled = true},
1557     {.name = "d", .description = "Double-precision float point",
1558      .misa_bit = RVD, .enabled = true},
1559     {.name = "f", .description = "Single-precision float point",
1560      .misa_bit = RVF, .enabled = true},
1561     {.name = "i", .description = "Base integer instruction set",
1562      .misa_bit = RVI, .enabled = true},
1563     {.name = "e", .description = "Base integer instruction set (embedded)",
1564      .misa_bit = RVE, .enabled = false},
1565     {.name = "m", .description = "Integer multiplication and division",
1566      .misa_bit = RVM, .enabled = true},
1567     {.name = "s", .description = "Supervisor-level instructions",
1568      .misa_bit = RVS, .enabled = true},
1569     {.name = "u", .description = "User-level instructions",
1570      .misa_bit = RVU, .enabled = true},
1571     {.name = "h", .description = "Hypervisor",
1572      .misa_bit = RVH, .enabled = true},
1573     {.name = "x-j", .description = "Dynamic translated languages",
1574      .misa_bit = RVJ, .enabled = false},
1575     {.name = "v", .description = "Vector operations",
1576      .misa_bit = RVV, .enabled = false},
1577     {.name = "g", .description = "General purpose (IMAFD_Zicsr_Zifencei)",
1578      .misa_bit = RVG, .enabled = false},
1579 };
1580 
1581 static void riscv_cpu_add_misa_properties(Object *cpu_obj)
1582 {
1583     int i;
1584 
1585     for (i = 0; i < ARRAY_SIZE(misa_ext_cfgs); i++) {
1586         const RISCVCPUMisaExtConfig *misa_cfg = &misa_ext_cfgs[i];
1587 
1588         object_property_add(cpu_obj, misa_cfg->name, "bool",
1589                             cpu_get_misa_ext_cfg,
1590                             cpu_set_misa_ext_cfg,
1591                             NULL, (void *)misa_cfg);
1592         object_property_set_description(cpu_obj, misa_cfg->name,
1593                                         misa_cfg->description);
1594         object_property_set_bool(cpu_obj, misa_cfg->name,
1595                                  misa_cfg->enabled, NULL);
1596     }
1597 }
1598 
1599 static Property riscv_cpu_extensions[] = {
1600     /* Defaults for standard extensions */
1601     DEFINE_PROP_UINT8("pmu-num", RISCVCPU, cfg.pmu_num, 16),
1602     DEFINE_PROP_BOOL("sscofpmf", RISCVCPU, cfg.ext_sscofpmf, false),
1603     DEFINE_PROP_BOOL("Zifencei", RISCVCPU, cfg.ext_ifencei, true),
1604     DEFINE_PROP_BOOL("Zicsr", RISCVCPU, cfg.ext_icsr, true),
1605     DEFINE_PROP_BOOL("Zihintpause", RISCVCPU, cfg.ext_zihintpause, true),
1606     DEFINE_PROP_BOOL("Zawrs", RISCVCPU, cfg.ext_zawrs, true),
1607     DEFINE_PROP_BOOL("Zfh", RISCVCPU, cfg.ext_zfh, false),
1608     DEFINE_PROP_BOOL("Zfhmin", RISCVCPU, cfg.ext_zfhmin, false),
1609     DEFINE_PROP_BOOL("Zve32f", RISCVCPU, cfg.ext_zve32f, false),
1610     DEFINE_PROP_BOOL("Zve64f", RISCVCPU, cfg.ext_zve64f, false),
1611     DEFINE_PROP_BOOL("Zve64d", RISCVCPU, cfg.ext_zve64d, false),
1612     DEFINE_PROP_BOOL("mmu", RISCVCPU, cfg.mmu, true),
1613     DEFINE_PROP_BOOL("pmp", RISCVCPU, cfg.pmp, true),
1614     DEFINE_PROP_BOOL("sstc", RISCVCPU, cfg.ext_sstc, true),
1615 
1616     DEFINE_PROP_STRING("priv_spec", RISCVCPU, cfg.priv_spec),
1617     DEFINE_PROP_STRING("vext_spec", RISCVCPU, cfg.vext_spec),
1618     DEFINE_PROP_UINT16("vlen", RISCVCPU, cfg.vlen, 128),
1619     DEFINE_PROP_UINT16("elen", RISCVCPU, cfg.elen, 64),
1620 
1621     DEFINE_PROP_BOOL("smstateen", RISCVCPU, cfg.ext_smstateen, false),
1622     DEFINE_PROP_BOOL("svadu", RISCVCPU, cfg.ext_svadu, true),
1623     DEFINE_PROP_BOOL("svinval", RISCVCPU, cfg.ext_svinval, false),
1624     DEFINE_PROP_BOOL("svnapot", RISCVCPU, cfg.ext_svnapot, false),
1625     DEFINE_PROP_BOOL("svpbmt", RISCVCPU, cfg.ext_svpbmt, false),
1626 
1627     DEFINE_PROP_BOOL("zba", RISCVCPU, cfg.ext_zba, true),
1628     DEFINE_PROP_BOOL("zbb", RISCVCPU, cfg.ext_zbb, true),
1629     DEFINE_PROP_BOOL("zbc", RISCVCPU, cfg.ext_zbc, true),
1630     DEFINE_PROP_BOOL("zbkb", RISCVCPU, cfg.ext_zbkb, false),
1631     DEFINE_PROP_BOOL("zbkc", RISCVCPU, cfg.ext_zbkc, false),
1632     DEFINE_PROP_BOOL("zbkx", RISCVCPU, cfg.ext_zbkx, false),
1633     DEFINE_PROP_BOOL("zbs", RISCVCPU, cfg.ext_zbs, true),
1634     DEFINE_PROP_BOOL("zk", RISCVCPU, cfg.ext_zk, false),
1635     DEFINE_PROP_BOOL("zkn", RISCVCPU, cfg.ext_zkn, false),
1636     DEFINE_PROP_BOOL("zknd", RISCVCPU, cfg.ext_zknd, false),
1637     DEFINE_PROP_BOOL("zkne", RISCVCPU, cfg.ext_zkne, false),
1638     DEFINE_PROP_BOOL("zknh", RISCVCPU, cfg.ext_zknh, false),
1639     DEFINE_PROP_BOOL("zkr", RISCVCPU, cfg.ext_zkr, false),
1640     DEFINE_PROP_BOOL("zks", RISCVCPU, cfg.ext_zks, false),
1641     DEFINE_PROP_BOOL("zksed", RISCVCPU, cfg.ext_zksed, false),
1642     DEFINE_PROP_BOOL("zksh", RISCVCPU, cfg.ext_zksh, false),
1643     DEFINE_PROP_BOOL("zkt", RISCVCPU, cfg.ext_zkt, false),
1644 
1645     DEFINE_PROP_BOOL("zdinx", RISCVCPU, cfg.ext_zdinx, false),
1646     DEFINE_PROP_BOOL("zfinx", RISCVCPU, cfg.ext_zfinx, false),
1647     DEFINE_PROP_BOOL("zhinx", RISCVCPU, cfg.ext_zhinx, false),
1648     DEFINE_PROP_BOOL("zhinxmin", RISCVCPU, cfg.ext_zhinxmin, false),
1649 
1650     DEFINE_PROP_BOOL("zicbom", RISCVCPU, cfg.ext_icbom, true),
1651     DEFINE_PROP_UINT16("cbom_blocksize", RISCVCPU, cfg.cbom_blocksize, 64),
1652     DEFINE_PROP_BOOL("zicboz", RISCVCPU, cfg.ext_icboz, true),
1653     DEFINE_PROP_UINT16("cboz_blocksize", RISCVCPU, cfg.cboz_blocksize, 64),
1654 
1655     DEFINE_PROP_BOOL("zmmul", RISCVCPU, cfg.ext_zmmul, false),
1656 
1657     DEFINE_PROP_BOOL("zca", RISCVCPU, cfg.ext_zca, false),
1658     DEFINE_PROP_BOOL("zcb", RISCVCPU, cfg.ext_zcb, false),
1659     DEFINE_PROP_BOOL("zcd", RISCVCPU, cfg.ext_zcd, false),
1660     DEFINE_PROP_BOOL("zce", RISCVCPU, cfg.ext_zce, false),
1661     DEFINE_PROP_BOOL("zcf", RISCVCPU, cfg.ext_zcf, false),
1662     DEFINE_PROP_BOOL("zcmp", RISCVCPU, cfg.ext_zcmp, false),
1663     DEFINE_PROP_BOOL("zcmt", RISCVCPU, cfg.ext_zcmt, false),
1664 
1665     /* Vendor-specific custom extensions */
1666     DEFINE_PROP_BOOL("xtheadba", RISCVCPU, cfg.ext_xtheadba, false),
1667     DEFINE_PROP_BOOL("xtheadbb", RISCVCPU, cfg.ext_xtheadbb, false),
1668     DEFINE_PROP_BOOL("xtheadbs", RISCVCPU, cfg.ext_xtheadbs, false),
1669     DEFINE_PROP_BOOL("xtheadcmo", RISCVCPU, cfg.ext_xtheadcmo, false),
1670     DEFINE_PROP_BOOL("xtheadcondmov", RISCVCPU, cfg.ext_xtheadcondmov, false),
1671     DEFINE_PROP_BOOL("xtheadfmemidx", RISCVCPU, cfg.ext_xtheadfmemidx, false),
1672     DEFINE_PROP_BOOL("xtheadfmv", RISCVCPU, cfg.ext_xtheadfmv, false),
1673     DEFINE_PROP_BOOL("xtheadmac", RISCVCPU, cfg.ext_xtheadmac, false),
1674     DEFINE_PROP_BOOL("xtheadmemidx", RISCVCPU, cfg.ext_xtheadmemidx, false),
1675     DEFINE_PROP_BOOL("xtheadmempair", RISCVCPU, cfg.ext_xtheadmempair, false),
1676     DEFINE_PROP_BOOL("xtheadsync", RISCVCPU, cfg.ext_xtheadsync, false),
1677     DEFINE_PROP_BOOL("xventanacondops", RISCVCPU, cfg.ext_XVentanaCondOps, false),
1678 
1679     /* These are experimental so mark with 'x-' */
1680     DEFINE_PROP_BOOL("x-zicond", RISCVCPU, cfg.ext_zicond, false),
1681 
1682     /* ePMP 0.9.3 */
1683     DEFINE_PROP_BOOL("x-epmp", RISCVCPU, cfg.epmp, false),
1684     DEFINE_PROP_BOOL("x-smaia", RISCVCPU, cfg.ext_smaia, false),
1685     DEFINE_PROP_BOOL("x-ssaia", RISCVCPU, cfg.ext_ssaia, false),
1686 
1687     DEFINE_PROP_BOOL("x-zvfh", RISCVCPU, cfg.ext_zvfh, false),
1688     DEFINE_PROP_BOOL("x-zvfhmin", RISCVCPU, cfg.ext_zvfhmin, false),
1689 
1690     DEFINE_PROP_END_OF_LIST(),
1691 };
1692 
1693 /*
1694  * Add CPU properties with user-facing flags.
1695  *
1696  * This will overwrite existing env->misa_ext values with the
1697  * defaults set via riscv_cpu_add_misa_properties().
1698  */
1699 static void riscv_cpu_add_user_properties(Object *obj)
1700 {
1701     Property *prop;
1702     DeviceState *dev = DEVICE(obj);
1703 
1704     riscv_cpu_add_misa_properties(obj);
1705 
1706     for (prop = riscv_cpu_extensions; prop && prop->name; prop++) {
1707         qdev_property_add_static(dev, prop);
1708     }
1709 
1710 #ifndef CONFIG_USER_ONLY
1711     riscv_add_satp_mode_properties(obj);
1712 #endif
1713 }
1714 
1715 static Property riscv_cpu_properties[] = {
1716     DEFINE_PROP_BOOL("debug", RISCVCPU, cfg.debug, true),
1717 
1718     DEFINE_PROP_UINT32("mvendorid", RISCVCPU, cfg.mvendorid, 0),
1719     DEFINE_PROP_UINT64("marchid", RISCVCPU, cfg.marchid, RISCV_CPU_MARCHID),
1720     DEFINE_PROP_UINT64("mimpid", RISCVCPU, cfg.mimpid, RISCV_CPU_MIMPID),
1721 
1722 #ifndef CONFIG_USER_ONLY
1723     DEFINE_PROP_UINT64("resetvec", RISCVCPU, env.resetvec, DEFAULT_RSTVEC),
1724 #endif
1725 
1726     DEFINE_PROP_BOOL("short-isa-string", RISCVCPU, cfg.short_isa_string, false),
1727 
1728     DEFINE_PROP_BOOL("rvv_ta_all_1s", RISCVCPU, cfg.rvv_ta_all_1s, false),
1729     DEFINE_PROP_BOOL("rvv_ma_all_1s", RISCVCPU, cfg.rvv_ma_all_1s, false),
1730 
1731     /*
1732      * write_misa() is marked as experimental for now so mark
1733      * it with -x and default to 'false'.
1734      */
1735     DEFINE_PROP_BOOL("x-misa-w", RISCVCPU, cfg.misa_w, false),
1736     DEFINE_PROP_END_OF_LIST(),
1737 };
1738 
1739 static gchar *riscv_gdb_arch_name(CPUState *cs)
1740 {
1741     RISCVCPU *cpu = RISCV_CPU(cs);
1742     CPURISCVState *env = &cpu->env;
1743 
1744     switch (riscv_cpu_mxl(env)) {
1745     case MXL_RV32:
1746         return g_strdup("riscv:rv32");
1747     case MXL_RV64:
1748     case MXL_RV128:
1749         return g_strdup("riscv:rv64");
1750     default:
1751         g_assert_not_reached();
1752     }
1753 }
1754 
1755 static const char *riscv_gdb_get_dynamic_xml(CPUState *cs, const char *xmlname)
1756 {
1757     RISCVCPU *cpu = RISCV_CPU(cs);
1758 
1759     if (strcmp(xmlname, "riscv-csr.xml") == 0) {
1760         return cpu->dyn_csr_xml;
1761     } else if (strcmp(xmlname, "riscv-vector.xml") == 0) {
1762         return cpu->dyn_vreg_xml;
1763     }
1764 
1765     return NULL;
1766 }
1767 
1768 #ifndef CONFIG_USER_ONLY
1769 static int64_t riscv_get_arch_id(CPUState *cs)
1770 {
1771     RISCVCPU *cpu = RISCV_CPU(cs);
1772 
1773     return cpu->env.mhartid;
1774 }
1775 
1776 #include "hw/core/sysemu-cpu-ops.h"
1777 
1778 static const struct SysemuCPUOps riscv_sysemu_ops = {
1779     .get_phys_page_debug = riscv_cpu_get_phys_page_debug,
1780     .write_elf64_note = riscv_cpu_write_elf64_note,
1781     .write_elf32_note = riscv_cpu_write_elf32_note,
1782     .legacy_vmsd = &vmstate_riscv_cpu,
1783 };
1784 #endif
1785 
1786 #include "hw/core/tcg-cpu-ops.h"
1787 
1788 static const struct TCGCPUOps riscv_tcg_ops = {
1789     .initialize = riscv_translate_init,
1790     .synchronize_from_tb = riscv_cpu_synchronize_from_tb,
1791     .restore_state_to_opc = riscv_restore_state_to_opc,
1792 
1793 #ifndef CONFIG_USER_ONLY
1794     .tlb_fill = riscv_cpu_tlb_fill,
1795     .cpu_exec_interrupt = riscv_cpu_exec_interrupt,
1796     .do_interrupt = riscv_cpu_do_interrupt,
1797     .do_transaction_failed = riscv_cpu_do_transaction_failed,
1798     .do_unaligned_access = riscv_cpu_do_unaligned_access,
1799     .debug_excp_handler = riscv_cpu_debug_excp_handler,
1800     .debug_check_breakpoint = riscv_cpu_debug_check_breakpoint,
1801     .debug_check_watchpoint = riscv_cpu_debug_check_watchpoint,
1802 #endif /* !CONFIG_USER_ONLY */
1803 };
1804 
1805 static void riscv_cpu_class_init(ObjectClass *c, void *data)
1806 {
1807     RISCVCPUClass *mcc = RISCV_CPU_CLASS(c);
1808     CPUClass *cc = CPU_CLASS(c);
1809     DeviceClass *dc = DEVICE_CLASS(c);
1810     ResettableClass *rc = RESETTABLE_CLASS(c);
1811 
1812     device_class_set_parent_realize(dc, riscv_cpu_realize,
1813                                     &mcc->parent_realize);
1814 
1815     resettable_class_set_parent_phases(rc, NULL, riscv_cpu_reset_hold, NULL,
1816                                        &mcc->parent_phases);
1817 
1818     cc->class_by_name = riscv_cpu_class_by_name;
1819     cc->has_work = riscv_cpu_has_work;
1820     cc->dump_state = riscv_cpu_dump_state;
1821     cc->set_pc = riscv_cpu_set_pc;
1822     cc->get_pc = riscv_cpu_get_pc;
1823     cc->gdb_read_register = riscv_cpu_gdb_read_register;
1824     cc->gdb_write_register = riscv_cpu_gdb_write_register;
1825     cc->gdb_num_core_regs = 33;
1826     cc->gdb_stop_before_watchpoint = true;
1827     cc->disas_set_info = riscv_cpu_disas_set_info;
1828 #ifndef CONFIG_USER_ONLY
1829     cc->sysemu_ops = &riscv_sysemu_ops;
1830     cc->get_arch_id = riscv_get_arch_id;
1831 #endif
1832     cc->gdb_arch_name = riscv_gdb_arch_name;
1833     cc->gdb_get_dynamic_xml = riscv_gdb_get_dynamic_xml;
1834     cc->tcg_ops = &riscv_tcg_ops;
1835 
1836     device_class_set_props(dc, riscv_cpu_properties);
1837 }
1838 
1839 static void riscv_isa_string_ext(RISCVCPU *cpu, char **isa_str,
1840                                  int max_str_len)
1841 {
1842     char *old = *isa_str;
1843     char *new = *isa_str;
1844     int i;
1845 
1846     for (i = 0; i < ARRAY_SIZE(isa_edata_arr); i++) {
1847         if (cpu->env.priv_ver >= isa_edata_arr[i].min_version &&
1848             isa_ext_is_enabled(cpu, &isa_edata_arr[i])) {
1849             new = g_strconcat(old, "_", isa_edata_arr[i].name, NULL);
1850             g_free(old);
1851             old = new;
1852         }
1853     }
1854 
1855     *isa_str = new;
1856 }
1857 
1858 char *riscv_isa_string(RISCVCPU *cpu)
1859 {
1860     int i;
1861     const size_t maxlen = sizeof("rv128") + sizeof(riscv_single_letter_exts);
1862     char *isa_str = g_new(char, maxlen);
1863     char *p = isa_str + snprintf(isa_str, maxlen, "rv%d", TARGET_LONG_BITS);
1864     for (i = 0; i < sizeof(riscv_single_letter_exts) - 1; i++) {
1865         if (cpu->env.misa_ext & RV(riscv_single_letter_exts[i])) {
1866             *p++ = qemu_tolower(riscv_single_letter_exts[i]);
1867         }
1868     }
1869     *p = '\0';
1870     if (!cpu->cfg.short_isa_string) {
1871         riscv_isa_string_ext(cpu, &isa_str, maxlen);
1872     }
1873     return isa_str;
1874 }
1875 
1876 static gint riscv_cpu_list_compare(gconstpointer a, gconstpointer b)
1877 {
1878     ObjectClass *class_a = (ObjectClass *)a;
1879     ObjectClass *class_b = (ObjectClass *)b;
1880     const char *name_a, *name_b;
1881 
1882     name_a = object_class_get_name(class_a);
1883     name_b = object_class_get_name(class_b);
1884     return strcmp(name_a, name_b);
1885 }
1886 
1887 static void riscv_cpu_list_entry(gpointer data, gpointer user_data)
1888 {
1889     const char *typename = object_class_get_name(OBJECT_CLASS(data));
1890     int len = strlen(typename) - strlen(RISCV_CPU_TYPE_SUFFIX);
1891 
1892     qemu_printf("%.*s\n", len, typename);
1893 }
1894 
1895 void riscv_cpu_list(void)
1896 {
1897     GSList *list;
1898 
1899     list = object_class_get_list(TYPE_RISCV_CPU, false);
1900     list = g_slist_sort(list, riscv_cpu_list_compare);
1901     g_slist_foreach(list, riscv_cpu_list_entry, NULL);
1902     g_slist_free(list);
1903 }
1904 
1905 #define DEFINE_CPU(type_name, initfn)      \
1906     {                                      \
1907         .name = type_name,                 \
1908         .parent = TYPE_RISCV_CPU,          \
1909         .instance_init = initfn            \
1910     }
1911 
1912 #define DEFINE_DYNAMIC_CPU(type_name, initfn) \
1913     {                                         \
1914         .name = type_name,                    \
1915         .parent = TYPE_RISCV_DYNAMIC_CPU,     \
1916         .instance_init = initfn               \
1917     }
1918 
1919 static const TypeInfo riscv_cpu_type_infos[] = {
1920     {
1921         .name = TYPE_RISCV_CPU,
1922         .parent = TYPE_CPU,
1923         .instance_size = sizeof(RISCVCPU),
1924         .instance_align = __alignof__(RISCVCPU),
1925         .instance_init = riscv_cpu_init,
1926         .abstract = true,
1927         .class_size = sizeof(RISCVCPUClass),
1928         .class_init = riscv_cpu_class_init,
1929     },
1930     {
1931         .name = TYPE_RISCV_DYNAMIC_CPU,
1932         .parent = TYPE_RISCV_CPU,
1933         .abstract = true,
1934     },
1935     DEFINE_DYNAMIC_CPU(TYPE_RISCV_CPU_ANY,      riscv_any_cpu_init),
1936 #if defined(CONFIG_KVM)
1937     DEFINE_CPU(TYPE_RISCV_CPU_HOST,             riscv_host_cpu_init),
1938 #endif
1939 #if defined(TARGET_RISCV32)
1940     DEFINE_DYNAMIC_CPU(TYPE_RISCV_CPU_BASE32,   rv32_base_cpu_init),
1941     DEFINE_CPU(TYPE_RISCV_CPU_IBEX,             rv32_ibex_cpu_init),
1942     DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E31,       rv32_sifive_e_cpu_init),
1943     DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E34,       rv32_imafcu_nommu_cpu_init),
1944     DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U34,       rv32_sifive_u_cpu_init),
1945 #elif defined(TARGET_RISCV64)
1946     DEFINE_DYNAMIC_CPU(TYPE_RISCV_CPU_BASE64,   rv64_base_cpu_init),
1947     DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E51,       rv64_sifive_e_cpu_init),
1948     DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U54,       rv64_sifive_u_cpu_init),
1949     DEFINE_CPU(TYPE_RISCV_CPU_SHAKTI_C,         rv64_sifive_u_cpu_init),
1950     DEFINE_CPU(TYPE_RISCV_CPU_THEAD_C906,       rv64_thead_c906_cpu_init),
1951     DEFINE_CPU(TYPE_RISCV_CPU_VEYRON_V1,        rv64_veyron_v1_cpu_init),
1952     DEFINE_DYNAMIC_CPU(TYPE_RISCV_CPU_BASE128,  rv128_base_cpu_init),
1953 #endif
1954 };
1955 
1956 DEFINE_TYPES(riscv_cpu_type_infos)
1957