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 "pmu.h" 26 #include "internals.h" 27 #include "time_helper.h" 28 #include "exec/exec-all.h" 29 #include "qapi/error.h" 30 #include "qemu/error-report.h" 31 #include "hw/qdev-properties.h" 32 #include "migration/vmstate.h" 33 #include "fpu/softfloat-helpers.h" 34 #include "sysemu/kvm.h" 35 #include "kvm_riscv.h" 36 37 /* RISC-V CPU definitions */ 38 39 #define RISCV_CPU_MARCHID ((QEMU_VERSION_MAJOR << 16) | \ 40 (QEMU_VERSION_MINOR << 8) | \ 41 (QEMU_VERSION_MICRO)) 42 #define RISCV_CPU_MIMPID RISCV_CPU_MARCHID 43 44 static const char riscv_single_letter_exts[] = "IEMAFDQCPVH"; 45 46 struct isa_ext_data { 47 const char *name; 48 bool multi_letter; 49 int min_version; 50 int ext_enable_offset; 51 }; 52 53 #define ISA_EXT_DATA_ENTRY(_name, _m_letter, _min_ver, _prop) \ 54 {#_name, _m_letter, _min_ver, offsetof(struct RISCVCPUConfig, _prop)} 55 56 /** 57 * Here are the ordering rules of extension naming defined by RISC-V 58 * specification : 59 * 1. All extensions should be separated from other multi-letter extensions 60 * by an underscore. 61 * 2. The first letter following the 'Z' conventionally indicates the most 62 * closely related alphabetical extension category, IMAFDQLCBKJTPVH. 63 * If multiple 'Z' extensions are named, they should be ordered first 64 * by category, then alphabetically within a category. 65 * 3. Standard supervisor-level extensions (starts with 'S') should be 66 * listed after standard unprivileged extensions. If multiple 67 * supervisor-level extensions are listed, they should be ordered 68 * alphabetically. 69 * 4. Non-standard extensions (starts with 'X') must be listed after all 70 * standard extensions. They must be separated from other multi-letter 71 * extensions by an underscore. 72 */ 73 static const struct isa_ext_data isa_edata_arr[] = { 74 ISA_EXT_DATA_ENTRY(h, false, PRIV_VERSION_1_12_0, ext_h), 75 ISA_EXT_DATA_ENTRY(v, false, PRIV_VERSION_1_12_0, ext_v), 76 ISA_EXT_DATA_ENTRY(zicsr, true, PRIV_VERSION_1_10_0, ext_icsr), 77 ISA_EXT_DATA_ENTRY(zifencei, true, PRIV_VERSION_1_10_0, ext_ifencei), 78 ISA_EXT_DATA_ENTRY(zihintpause, true, PRIV_VERSION_1_10_0, ext_zihintpause), 79 ISA_EXT_DATA_ENTRY(zawrs, true, PRIV_VERSION_1_12_0, ext_zawrs), 80 ISA_EXT_DATA_ENTRY(zfh, true, PRIV_VERSION_1_12_0, ext_zfh), 81 ISA_EXT_DATA_ENTRY(zfhmin, true, PRIV_VERSION_1_12_0, ext_zfhmin), 82 ISA_EXT_DATA_ENTRY(zfinx, true, PRIV_VERSION_1_12_0, ext_zfinx), 83 ISA_EXT_DATA_ENTRY(zdinx, true, PRIV_VERSION_1_12_0, ext_zdinx), 84 ISA_EXT_DATA_ENTRY(zba, true, PRIV_VERSION_1_12_0, ext_zba), 85 ISA_EXT_DATA_ENTRY(zbb, true, PRIV_VERSION_1_12_0, ext_zbb), 86 ISA_EXT_DATA_ENTRY(zbc, true, PRIV_VERSION_1_12_0, ext_zbc), 87 ISA_EXT_DATA_ENTRY(zbkb, true, PRIV_VERSION_1_12_0, ext_zbkb), 88 ISA_EXT_DATA_ENTRY(zbkc, true, PRIV_VERSION_1_12_0, ext_zbkc), 89 ISA_EXT_DATA_ENTRY(zbkx, true, PRIV_VERSION_1_12_0, ext_zbkx), 90 ISA_EXT_DATA_ENTRY(zbs, true, PRIV_VERSION_1_12_0, ext_zbs), 91 ISA_EXT_DATA_ENTRY(zk, true, PRIV_VERSION_1_12_0, ext_zk), 92 ISA_EXT_DATA_ENTRY(zkn, true, PRIV_VERSION_1_12_0, ext_zkn), 93 ISA_EXT_DATA_ENTRY(zknd, true, PRIV_VERSION_1_12_0, ext_zknd), 94 ISA_EXT_DATA_ENTRY(zkne, true, PRIV_VERSION_1_12_0, ext_zkne), 95 ISA_EXT_DATA_ENTRY(zknh, true, PRIV_VERSION_1_12_0, ext_zknh), 96 ISA_EXT_DATA_ENTRY(zkr, true, PRIV_VERSION_1_12_0, ext_zkr), 97 ISA_EXT_DATA_ENTRY(zks, true, PRIV_VERSION_1_12_0, ext_zks), 98 ISA_EXT_DATA_ENTRY(zksed, true, PRIV_VERSION_1_12_0, ext_zksed), 99 ISA_EXT_DATA_ENTRY(zksh, true, PRIV_VERSION_1_12_0, ext_zksh), 100 ISA_EXT_DATA_ENTRY(zkt, true, PRIV_VERSION_1_12_0, ext_zkt), 101 ISA_EXT_DATA_ENTRY(zve32f, true, PRIV_VERSION_1_12_0, ext_zve32f), 102 ISA_EXT_DATA_ENTRY(zve64f, true, PRIV_VERSION_1_12_0, ext_zve64f), 103 ISA_EXT_DATA_ENTRY(zhinx, true, PRIV_VERSION_1_12_0, ext_zhinx), 104 ISA_EXT_DATA_ENTRY(zhinxmin, true, PRIV_VERSION_1_12_0, ext_zhinxmin), 105 ISA_EXT_DATA_ENTRY(smaia, true, PRIV_VERSION_1_12_0, ext_smaia), 106 ISA_EXT_DATA_ENTRY(ssaia, true, PRIV_VERSION_1_12_0, ext_ssaia), 107 ISA_EXT_DATA_ENTRY(sscofpmf, true, PRIV_VERSION_1_12_0, ext_sscofpmf), 108 ISA_EXT_DATA_ENTRY(sstc, true, PRIV_VERSION_1_12_0, ext_sstc), 109 ISA_EXT_DATA_ENTRY(svinval, true, PRIV_VERSION_1_12_0, ext_svinval), 110 ISA_EXT_DATA_ENTRY(svnapot, true, PRIV_VERSION_1_12_0, ext_svnapot), 111 ISA_EXT_DATA_ENTRY(svpbmt, true, PRIV_VERSION_1_12_0, ext_svpbmt), 112 ISA_EXT_DATA_ENTRY(xtheadba, true, PRIV_VERSION_1_11_0, ext_xtheadba), 113 ISA_EXT_DATA_ENTRY(xtheadbb, true, PRIV_VERSION_1_11_0, ext_xtheadbb), 114 ISA_EXT_DATA_ENTRY(xtheadbs, true, PRIV_VERSION_1_11_0, ext_xtheadbs), 115 ISA_EXT_DATA_ENTRY(xtheadcmo, true, PRIV_VERSION_1_11_0, ext_xtheadcmo), 116 ISA_EXT_DATA_ENTRY(xtheadcondmov, true, PRIV_VERSION_1_11_0, ext_xtheadcondmov), 117 ISA_EXT_DATA_ENTRY(xtheadmac, true, PRIV_VERSION_1_11_0, ext_xtheadmac), 118 ISA_EXT_DATA_ENTRY(xtheadmemidx, true, PRIV_VERSION_1_11_0, ext_xtheadmemidx), 119 ISA_EXT_DATA_ENTRY(xtheadmempair, true, PRIV_VERSION_1_11_0, ext_xtheadmempair), 120 ISA_EXT_DATA_ENTRY(xtheadsync, true, PRIV_VERSION_1_11_0, ext_xtheadsync), 121 ISA_EXT_DATA_ENTRY(xventanacondops, true, PRIV_VERSION_1_12_0, ext_XVentanaCondOps), 122 }; 123 124 static bool isa_ext_is_enabled(RISCVCPU *cpu, 125 const struct isa_ext_data *edata) 126 { 127 bool *ext_enabled = (void *)&cpu->cfg + edata->ext_enable_offset; 128 129 return *ext_enabled; 130 } 131 132 static void isa_ext_update_enabled(RISCVCPU *cpu, 133 const struct isa_ext_data *edata, bool en) 134 { 135 bool *ext_enabled = (void *)&cpu->cfg + edata->ext_enable_offset; 136 137 *ext_enabled = en; 138 } 139 140 const char * const riscv_int_regnames[] = { 141 "x0/zero", "x1/ra", "x2/sp", "x3/gp", "x4/tp", "x5/t0", "x6/t1", 142 "x7/t2", "x8/s0", "x9/s1", "x10/a0", "x11/a1", "x12/a2", "x13/a3", 143 "x14/a4", "x15/a5", "x16/a6", "x17/a7", "x18/s2", "x19/s3", "x20/s4", 144 "x21/s5", "x22/s6", "x23/s7", "x24/s8", "x25/s9", "x26/s10", "x27/s11", 145 "x28/t3", "x29/t4", "x30/t5", "x31/t6" 146 }; 147 148 const char * const riscv_int_regnamesh[] = { 149 "x0h/zeroh", "x1h/rah", "x2h/sph", "x3h/gph", "x4h/tph", "x5h/t0h", 150 "x6h/t1h", "x7h/t2h", "x8h/s0h", "x9h/s1h", "x10h/a0h", "x11h/a1h", 151 "x12h/a2h", "x13h/a3h", "x14h/a4h", "x15h/a5h", "x16h/a6h", "x17h/a7h", 152 "x18h/s2h", "x19h/s3h", "x20h/s4h", "x21h/s5h", "x22h/s6h", "x23h/s7h", 153 "x24h/s8h", "x25h/s9h", "x26h/s10h", "x27h/s11h", "x28h/t3h", "x29h/t4h", 154 "x30h/t5h", "x31h/t6h" 155 }; 156 157 const char * const riscv_fpr_regnames[] = { 158 "f0/ft0", "f1/ft1", "f2/ft2", "f3/ft3", "f4/ft4", "f5/ft5", 159 "f6/ft6", "f7/ft7", "f8/fs0", "f9/fs1", "f10/fa0", "f11/fa1", 160 "f12/fa2", "f13/fa3", "f14/fa4", "f15/fa5", "f16/fa6", "f17/fa7", 161 "f18/fs2", "f19/fs3", "f20/fs4", "f21/fs5", "f22/fs6", "f23/fs7", 162 "f24/fs8", "f25/fs9", "f26/fs10", "f27/fs11", "f28/ft8", "f29/ft9", 163 "f30/ft10", "f31/ft11" 164 }; 165 166 static const char * const riscv_excp_names[] = { 167 "misaligned_fetch", 168 "fault_fetch", 169 "illegal_instruction", 170 "breakpoint", 171 "misaligned_load", 172 "fault_load", 173 "misaligned_store", 174 "fault_store", 175 "user_ecall", 176 "supervisor_ecall", 177 "hypervisor_ecall", 178 "machine_ecall", 179 "exec_page_fault", 180 "load_page_fault", 181 "reserved", 182 "store_page_fault", 183 "reserved", 184 "reserved", 185 "reserved", 186 "reserved", 187 "guest_exec_page_fault", 188 "guest_load_page_fault", 189 "reserved", 190 "guest_store_page_fault", 191 }; 192 193 static const char * const riscv_intr_names[] = { 194 "u_software", 195 "s_software", 196 "vs_software", 197 "m_software", 198 "u_timer", 199 "s_timer", 200 "vs_timer", 201 "m_timer", 202 "u_external", 203 "s_external", 204 "vs_external", 205 "m_external", 206 "reserved", 207 "reserved", 208 "reserved", 209 "reserved" 210 }; 211 212 static void register_cpu_props(DeviceState *dev); 213 214 const char *riscv_cpu_get_trap_name(target_ulong cause, bool async) 215 { 216 if (async) { 217 return (cause < ARRAY_SIZE(riscv_intr_names)) ? 218 riscv_intr_names[cause] : "(unknown)"; 219 } else { 220 return (cause < ARRAY_SIZE(riscv_excp_names)) ? 221 riscv_excp_names[cause] : "(unknown)"; 222 } 223 } 224 225 static void set_misa(CPURISCVState *env, RISCVMXL mxl, uint32_t ext) 226 { 227 env->misa_mxl_max = env->misa_mxl = mxl; 228 env->misa_ext_mask = env->misa_ext = ext; 229 } 230 231 static void set_priv_version(CPURISCVState *env, int priv_ver) 232 { 233 env->priv_ver = priv_ver; 234 } 235 236 static void set_vext_version(CPURISCVState *env, int vext_ver) 237 { 238 env->vext_ver = vext_ver; 239 } 240 241 static void riscv_any_cpu_init(Object *obj) 242 { 243 CPURISCVState *env = &RISCV_CPU(obj)->env; 244 #if defined(TARGET_RISCV32) 245 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVD | RVC | RVU); 246 #elif defined(TARGET_RISCV64) 247 set_misa(env, MXL_RV64, RVI | RVM | RVA | RVF | RVD | RVC | RVU); 248 #endif 249 set_priv_version(env, PRIV_VERSION_1_12_0); 250 register_cpu_props(DEVICE(obj)); 251 } 252 253 #if defined(TARGET_RISCV64) 254 static void rv64_base_cpu_init(Object *obj) 255 { 256 CPURISCVState *env = &RISCV_CPU(obj)->env; 257 /* We set this in the realise function */ 258 set_misa(env, MXL_RV64, 0); 259 register_cpu_props(DEVICE(obj)); 260 /* Set latest version of privileged specification */ 261 set_priv_version(env, PRIV_VERSION_1_12_0); 262 } 263 264 static void rv64_sifive_u_cpu_init(Object *obj) 265 { 266 CPURISCVState *env = &RISCV_CPU(obj)->env; 267 set_misa(env, MXL_RV64, RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU); 268 register_cpu_props(DEVICE(obj)); 269 set_priv_version(env, PRIV_VERSION_1_10_0); 270 } 271 272 static void rv64_sifive_e_cpu_init(Object *obj) 273 { 274 CPURISCVState *env = &RISCV_CPU(obj)->env; 275 RISCVCPU *cpu = RISCV_CPU(obj); 276 277 set_misa(env, MXL_RV64, RVI | RVM | RVA | RVC | RVU); 278 register_cpu_props(DEVICE(obj)); 279 set_priv_version(env, PRIV_VERSION_1_10_0); 280 cpu->cfg.mmu = false; 281 } 282 283 static void rv128_base_cpu_init(Object *obj) 284 { 285 if (qemu_tcg_mttcg_enabled()) { 286 /* Missing 128-bit aligned atomics */ 287 error_report("128-bit RISC-V currently does not work with Multi " 288 "Threaded TCG. Please use: -accel tcg,thread=single"); 289 exit(EXIT_FAILURE); 290 } 291 CPURISCVState *env = &RISCV_CPU(obj)->env; 292 /* We set this in the realise function */ 293 set_misa(env, MXL_RV128, 0); 294 register_cpu_props(DEVICE(obj)); 295 /* Set latest version of privileged specification */ 296 set_priv_version(env, PRIV_VERSION_1_12_0); 297 } 298 #else 299 static void rv32_base_cpu_init(Object *obj) 300 { 301 CPURISCVState *env = &RISCV_CPU(obj)->env; 302 /* We set this in the realise function */ 303 set_misa(env, MXL_RV32, 0); 304 register_cpu_props(DEVICE(obj)); 305 /* Set latest version of privileged specification */ 306 set_priv_version(env, PRIV_VERSION_1_12_0); 307 } 308 309 static void rv32_sifive_u_cpu_init(Object *obj) 310 { 311 CPURISCVState *env = &RISCV_CPU(obj)->env; 312 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU); 313 register_cpu_props(DEVICE(obj)); 314 set_priv_version(env, PRIV_VERSION_1_10_0); 315 } 316 317 static void rv32_sifive_e_cpu_init(Object *obj) 318 { 319 CPURISCVState *env = &RISCV_CPU(obj)->env; 320 RISCVCPU *cpu = RISCV_CPU(obj); 321 322 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVC | RVU); 323 register_cpu_props(DEVICE(obj)); 324 set_priv_version(env, PRIV_VERSION_1_10_0); 325 cpu->cfg.mmu = false; 326 } 327 328 static void rv32_ibex_cpu_init(Object *obj) 329 { 330 CPURISCVState *env = &RISCV_CPU(obj)->env; 331 RISCVCPU *cpu = RISCV_CPU(obj); 332 333 set_misa(env, MXL_RV32, RVI | RVM | RVC | RVU); 334 register_cpu_props(DEVICE(obj)); 335 set_priv_version(env, PRIV_VERSION_1_11_0); 336 cpu->cfg.mmu = false; 337 cpu->cfg.epmp = true; 338 } 339 340 static void rv32_imafcu_nommu_cpu_init(Object *obj) 341 { 342 CPURISCVState *env = &RISCV_CPU(obj)->env; 343 RISCVCPU *cpu = RISCV_CPU(obj); 344 345 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVC | RVU); 346 register_cpu_props(DEVICE(obj)); 347 set_priv_version(env, PRIV_VERSION_1_10_0); 348 cpu->cfg.mmu = false; 349 } 350 #endif 351 352 #if defined(CONFIG_KVM) 353 static void riscv_host_cpu_init(Object *obj) 354 { 355 CPURISCVState *env = &RISCV_CPU(obj)->env; 356 #if defined(TARGET_RISCV32) 357 set_misa(env, MXL_RV32, 0); 358 #elif defined(TARGET_RISCV64) 359 set_misa(env, MXL_RV64, 0); 360 #endif 361 register_cpu_props(DEVICE(obj)); 362 } 363 #endif 364 365 static ObjectClass *riscv_cpu_class_by_name(const char *cpu_model) 366 { 367 ObjectClass *oc; 368 char *typename; 369 char **cpuname; 370 371 cpuname = g_strsplit(cpu_model, ",", 1); 372 typename = g_strdup_printf(RISCV_CPU_TYPE_NAME("%s"), cpuname[0]); 373 oc = object_class_by_name(typename); 374 g_strfreev(cpuname); 375 g_free(typename); 376 if (!oc || !object_class_dynamic_cast(oc, TYPE_RISCV_CPU) || 377 object_class_is_abstract(oc)) { 378 return NULL; 379 } 380 return oc; 381 } 382 383 static void riscv_cpu_dump_state(CPUState *cs, FILE *f, int flags) 384 { 385 RISCVCPU *cpu = RISCV_CPU(cs); 386 CPURISCVState *env = &cpu->env; 387 int i; 388 389 #if !defined(CONFIG_USER_ONLY) 390 if (riscv_has_ext(env, RVH)) { 391 qemu_fprintf(f, " %s %d\n", "V = ", riscv_cpu_virt_enabled(env)); 392 } 393 #endif 394 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "pc ", env->pc); 395 #ifndef CONFIG_USER_ONLY 396 { 397 static const int dump_csrs[] = { 398 CSR_MHARTID, 399 CSR_MSTATUS, 400 CSR_MSTATUSH, 401 /* 402 * CSR_SSTATUS is intentionally omitted here as its value 403 * can be figured out by looking at CSR_MSTATUS 404 */ 405 CSR_HSTATUS, 406 CSR_VSSTATUS, 407 CSR_MIP, 408 CSR_MIE, 409 CSR_MIDELEG, 410 CSR_HIDELEG, 411 CSR_MEDELEG, 412 CSR_HEDELEG, 413 CSR_MTVEC, 414 CSR_STVEC, 415 CSR_VSTVEC, 416 CSR_MEPC, 417 CSR_SEPC, 418 CSR_VSEPC, 419 CSR_MCAUSE, 420 CSR_SCAUSE, 421 CSR_VSCAUSE, 422 CSR_MTVAL, 423 CSR_STVAL, 424 CSR_HTVAL, 425 CSR_MTVAL2, 426 CSR_MSCRATCH, 427 CSR_SSCRATCH, 428 CSR_SATP, 429 CSR_MMTE, 430 CSR_UPMBASE, 431 CSR_UPMMASK, 432 CSR_SPMBASE, 433 CSR_SPMMASK, 434 CSR_MPMBASE, 435 CSR_MPMMASK, 436 }; 437 438 for (int i = 0; i < ARRAY_SIZE(dump_csrs); ++i) { 439 int csrno = dump_csrs[i]; 440 target_ulong val = 0; 441 RISCVException res = riscv_csrrw_debug(env, csrno, &val, 0, 0); 442 443 /* 444 * Rely on the smode, hmode, etc, predicates within csr.c 445 * to do the filtering of the registers that are present. 446 */ 447 if (res == RISCV_EXCP_NONE) { 448 qemu_fprintf(f, " %-8s " TARGET_FMT_lx "\n", 449 csr_ops[csrno].name, val); 450 } 451 } 452 } 453 #endif 454 455 for (i = 0; i < 32; i++) { 456 qemu_fprintf(f, " %-8s " TARGET_FMT_lx, 457 riscv_int_regnames[i], env->gpr[i]); 458 if ((i & 3) == 3) { 459 qemu_fprintf(f, "\n"); 460 } 461 } 462 if (flags & CPU_DUMP_FPU) { 463 for (i = 0; i < 32; i++) { 464 qemu_fprintf(f, " %-8s %016" PRIx64, 465 riscv_fpr_regnames[i], env->fpr[i]); 466 if ((i & 3) == 3) { 467 qemu_fprintf(f, "\n"); 468 } 469 } 470 } 471 } 472 473 static void riscv_cpu_set_pc(CPUState *cs, vaddr value) 474 { 475 RISCVCPU *cpu = RISCV_CPU(cs); 476 CPURISCVState *env = &cpu->env; 477 478 if (env->xl == MXL_RV32) { 479 env->pc = (int32_t)value; 480 } else { 481 env->pc = value; 482 } 483 } 484 485 static vaddr riscv_cpu_get_pc(CPUState *cs) 486 { 487 RISCVCPU *cpu = RISCV_CPU(cs); 488 CPURISCVState *env = &cpu->env; 489 490 /* Match cpu_get_tb_cpu_state. */ 491 if (env->xl == MXL_RV32) { 492 return env->pc & UINT32_MAX; 493 } 494 return env->pc; 495 } 496 497 static void riscv_cpu_synchronize_from_tb(CPUState *cs, 498 const TranslationBlock *tb) 499 { 500 RISCVCPU *cpu = RISCV_CPU(cs); 501 CPURISCVState *env = &cpu->env; 502 RISCVMXL xl = FIELD_EX32(tb->flags, TB_FLAGS, XL); 503 504 if (xl == MXL_RV32) { 505 env->pc = (int32_t)tb_pc(tb); 506 } else { 507 env->pc = tb_pc(tb); 508 } 509 } 510 511 static bool riscv_cpu_has_work(CPUState *cs) 512 { 513 #ifndef CONFIG_USER_ONLY 514 RISCVCPU *cpu = RISCV_CPU(cs); 515 CPURISCVState *env = &cpu->env; 516 /* 517 * Definition of the WFI instruction requires it to ignore the privilege 518 * mode and delegation registers, but respect individual enables 519 */ 520 return riscv_cpu_all_pending(env) != 0; 521 #else 522 return true; 523 #endif 524 } 525 526 static void riscv_restore_state_to_opc(CPUState *cs, 527 const TranslationBlock *tb, 528 const uint64_t *data) 529 { 530 RISCVCPU *cpu = RISCV_CPU(cs); 531 CPURISCVState *env = &cpu->env; 532 RISCVMXL xl = FIELD_EX32(tb->flags, TB_FLAGS, XL); 533 534 if (xl == MXL_RV32) { 535 env->pc = (int32_t)data[0]; 536 } else { 537 env->pc = data[0]; 538 } 539 env->bins = data[1]; 540 } 541 542 static void riscv_cpu_reset_hold(Object *obj) 543 { 544 #ifndef CONFIG_USER_ONLY 545 uint8_t iprio; 546 int i, irq, rdzero; 547 #endif 548 CPUState *cs = CPU(obj); 549 RISCVCPU *cpu = RISCV_CPU(cs); 550 RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(cpu); 551 CPURISCVState *env = &cpu->env; 552 553 if (mcc->parent_phases.hold) { 554 mcc->parent_phases.hold(obj); 555 } 556 #ifndef CONFIG_USER_ONLY 557 env->misa_mxl = env->misa_mxl_max; 558 env->priv = PRV_M; 559 env->mstatus &= ~(MSTATUS_MIE | MSTATUS_MPRV); 560 if (env->misa_mxl > MXL_RV32) { 561 /* 562 * The reset status of SXL/UXL is undefined, but mstatus is WARL 563 * and we must ensure that the value after init is valid for read. 564 */ 565 env->mstatus = set_field(env->mstatus, MSTATUS64_SXL, env->misa_mxl); 566 env->mstatus = set_field(env->mstatus, MSTATUS64_UXL, env->misa_mxl); 567 if (riscv_has_ext(env, RVH)) { 568 env->vsstatus = set_field(env->vsstatus, 569 MSTATUS64_SXL, env->misa_mxl); 570 env->vsstatus = set_field(env->vsstatus, 571 MSTATUS64_UXL, env->misa_mxl); 572 env->mstatus_hs = set_field(env->mstatus_hs, 573 MSTATUS64_SXL, env->misa_mxl); 574 env->mstatus_hs = set_field(env->mstatus_hs, 575 MSTATUS64_UXL, env->misa_mxl); 576 } 577 } 578 env->mcause = 0; 579 env->miclaim = MIP_SGEIP; 580 env->pc = env->resetvec; 581 env->bins = 0; 582 env->two_stage_lookup = false; 583 584 /* Initialized default priorities of local interrupts. */ 585 for (i = 0; i < ARRAY_SIZE(env->miprio); i++) { 586 iprio = riscv_cpu_default_priority(i); 587 env->miprio[i] = (i == IRQ_M_EXT) ? 0 : iprio; 588 env->siprio[i] = (i == IRQ_S_EXT) ? 0 : iprio; 589 env->hviprio[i] = 0; 590 } 591 i = 0; 592 while (!riscv_cpu_hviprio_index2irq(i, &irq, &rdzero)) { 593 if (!rdzero) { 594 env->hviprio[irq] = env->miprio[irq]; 595 } 596 i++; 597 } 598 /* mmte is supposed to have pm.current hardwired to 1 */ 599 env->mmte |= (PM_EXT_INITIAL | MMTE_M_PM_CURRENT); 600 #endif 601 env->xl = riscv_cpu_mxl(env); 602 riscv_cpu_update_mask(env); 603 cs->exception_index = RISCV_EXCP_NONE; 604 env->load_res = -1; 605 set_default_nan_mode(1, &env->fp_status); 606 607 #ifndef CONFIG_USER_ONLY 608 if (riscv_feature(env, RISCV_FEATURE_DEBUG)) { 609 riscv_trigger_init(env); 610 } 611 612 if (kvm_enabled()) { 613 kvm_riscv_reset_vcpu(cpu); 614 } 615 #endif 616 } 617 618 static void riscv_cpu_disas_set_info(CPUState *s, disassemble_info *info) 619 { 620 RISCVCPU *cpu = RISCV_CPU(s); 621 622 switch (riscv_cpu_mxl(&cpu->env)) { 623 case MXL_RV32: 624 info->print_insn = print_insn_riscv32; 625 break; 626 case MXL_RV64: 627 info->print_insn = print_insn_riscv64; 628 break; 629 case MXL_RV128: 630 info->print_insn = print_insn_riscv128; 631 break; 632 default: 633 g_assert_not_reached(); 634 } 635 } 636 637 /* 638 * Check consistency between chosen extensions while setting 639 * cpu->cfg accordingly, doing a set_misa() in the end. 640 */ 641 static void riscv_cpu_validate_set_extensions(RISCVCPU *cpu, Error **errp) 642 { 643 CPURISCVState *env = &cpu->env; 644 uint32_t ext = 0; 645 646 /* Do some ISA extension error checking */ 647 if (cpu->cfg.ext_g && !(cpu->cfg.ext_i && cpu->cfg.ext_m && 648 cpu->cfg.ext_a && cpu->cfg.ext_f && 649 cpu->cfg.ext_d && 650 cpu->cfg.ext_icsr && cpu->cfg.ext_ifencei)) { 651 warn_report("Setting G will also set IMAFD_Zicsr_Zifencei"); 652 cpu->cfg.ext_i = true; 653 cpu->cfg.ext_m = true; 654 cpu->cfg.ext_a = true; 655 cpu->cfg.ext_f = true; 656 cpu->cfg.ext_d = true; 657 cpu->cfg.ext_icsr = true; 658 cpu->cfg.ext_ifencei = true; 659 } 660 661 if (cpu->cfg.ext_i && cpu->cfg.ext_e) { 662 error_setg(errp, 663 "I and E extensions are incompatible"); 664 return; 665 } 666 667 if (!cpu->cfg.ext_i && !cpu->cfg.ext_e) { 668 error_setg(errp, 669 "Either I or E extension must be set"); 670 return; 671 } 672 673 if (cpu->cfg.ext_s && !cpu->cfg.ext_u) { 674 error_setg(errp, 675 "Setting S extension without U extension is illegal"); 676 return; 677 } 678 679 if (cpu->cfg.ext_h && !cpu->cfg.ext_i) { 680 error_setg(errp, 681 "H depends on an I base integer ISA with 32 x registers"); 682 return; 683 } 684 685 if (cpu->cfg.ext_h && !cpu->cfg.ext_s) { 686 error_setg(errp, "H extension implicitly requires S-mode"); 687 return; 688 } 689 690 if (cpu->cfg.ext_f && !cpu->cfg.ext_icsr) { 691 error_setg(errp, "F extension requires Zicsr"); 692 return; 693 } 694 695 if ((cpu->cfg.ext_zawrs) && !cpu->cfg.ext_a) { 696 error_setg(errp, "Zawrs extension requires A extension"); 697 return; 698 } 699 700 if ((cpu->cfg.ext_zfh || cpu->cfg.ext_zfhmin) && !cpu->cfg.ext_f) { 701 error_setg(errp, "Zfh/Zfhmin extensions require F extension"); 702 return; 703 } 704 705 if (cpu->cfg.ext_d && !cpu->cfg.ext_f) { 706 error_setg(errp, "D extension requires F extension"); 707 return; 708 } 709 710 if (cpu->cfg.ext_v && !cpu->cfg.ext_d) { 711 error_setg(errp, "V extension requires D extension"); 712 return; 713 } 714 715 if ((cpu->cfg.ext_zve32f || cpu->cfg.ext_zve64f) && !cpu->cfg.ext_f) { 716 error_setg(errp, "Zve32f/Zve64f extensions require F extension"); 717 return; 718 } 719 720 /* Set the ISA extensions, checks should have happened above */ 721 if (cpu->cfg.ext_zdinx || cpu->cfg.ext_zhinx || 722 cpu->cfg.ext_zhinxmin) { 723 cpu->cfg.ext_zfinx = true; 724 } 725 726 if (cpu->cfg.ext_zfinx) { 727 if (!cpu->cfg.ext_icsr) { 728 error_setg(errp, "Zfinx extension requires Zicsr"); 729 return; 730 } 731 if (cpu->cfg.ext_f) { 732 error_setg(errp, 733 "Zfinx cannot be supported together with F extension"); 734 return; 735 } 736 } 737 738 if (cpu->cfg.ext_zk) { 739 cpu->cfg.ext_zkn = true; 740 cpu->cfg.ext_zkr = true; 741 cpu->cfg.ext_zkt = true; 742 } 743 744 if (cpu->cfg.ext_zkn) { 745 cpu->cfg.ext_zbkb = true; 746 cpu->cfg.ext_zbkc = true; 747 cpu->cfg.ext_zbkx = true; 748 cpu->cfg.ext_zkne = true; 749 cpu->cfg.ext_zknd = true; 750 cpu->cfg.ext_zknh = true; 751 } 752 753 if (cpu->cfg.ext_zks) { 754 cpu->cfg.ext_zbkb = true; 755 cpu->cfg.ext_zbkc = true; 756 cpu->cfg.ext_zbkx = true; 757 cpu->cfg.ext_zksed = true; 758 cpu->cfg.ext_zksh = true; 759 } 760 761 if (cpu->cfg.ext_i) { 762 ext |= RVI; 763 } 764 if (cpu->cfg.ext_e) { 765 ext |= RVE; 766 } 767 if (cpu->cfg.ext_m) { 768 ext |= RVM; 769 } 770 if (cpu->cfg.ext_a) { 771 ext |= RVA; 772 } 773 if (cpu->cfg.ext_f) { 774 ext |= RVF; 775 } 776 if (cpu->cfg.ext_d) { 777 ext |= RVD; 778 } 779 if (cpu->cfg.ext_c) { 780 ext |= RVC; 781 } 782 if (cpu->cfg.ext_s) { 783 ext |= RVS; 784 } 785 if (cpu->cfg.ext_u) { 786 ext |= RVU; 787 } 788 if (cpu->cfg.ext_h) { 789 ext |= RVH; 790 } 791 if (cpu->cfg.ext_v) { 792 int vext_version = VEXT_VERSION_1_00_0; 793 ext |= RVV; 794 if (!is_power_of_2(cpu->cfg.vlen)) { 795 error_setg(errp, 796 "Vector extension VLEN must be power of 2"); 797 return; 798 } 799 if (cpu->cfg.vlen > RV_VLEN_MAX || cpu->cfg.vlen < 128) { 800 error_setg(errp, 801 "Vector extension implementation only supports VLEN " 802 "in the range [128, %d]", RV_VLEN_MAX); 803 return; 804 } 805 if (!is_power_of_2(cpu->cfg.elen)) { 806 error_setg(errp, 807 "Vector extension ELEN must be power of 2"); 808 return; 809 } 810 if (cpu->cfg.elen > 64 || cpu->cfg.elen < 8) { 811 error_setg(errp, 812 "Vector extension implementation only supports ELEN " 813 "in the range [8, 64]"); 814 return; 815 } 816 if (cpu->cfg.vext_spec) { 817 if (!g_strcmp0(cpu->cfg.vext_spec, "v1.0")) { 818 vext_version = VEXT_VERSION_1_00_0; 819 } else { 820 error_setg(errp, 821 "Unsupported vector spec version '%s'", 822 cpu->cfg.vext_spec); 823 return; 824 } 825 } else { 826 qemu_log("vector version is not specified, " 827 "use the default value v1.0\n"); 828 } 829 set_vext_version(env, vext_version); 830 } 831 if (cpu->cfg.ext_j) { 832 ext |= RVJ; 833 } 834 835 set_misa(env, env->misa_mxl, ext); 836 } 837 838 static void riscv_cpu_realize(DeviceState *dev, Error **errp) 839 { 840 CPUState *cs = CPU(dev); 841 RISCVCPU *cpu = RISCV_CPU(dev); 842 CPURISCVState *env = &cpu->env; 843 RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(dev); 844 CPUClass *cc = CPU_CLASS(mcc); 845 int i, priv_version = -1; 846 Error *local_err = NULL; 847 848 cpu_exec_realizefn(cs, &local_err); 849 if (local_err != NULL) { 850 error_propagate(errp, local_err); 851 return; 852 } 853 854 if (cpu->cfg.priv_spec) { 855 if (!g_strcmp0(cpu->cfg.priv_spec, "v1.12.0")) { 856 priv_version = PRIV_VERSION_1_12_0; 857 } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.11.0")) { 858 priv_version = PRIV_VERSION_1_11_0; 859 } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.10.0")) { 860 priv_version = PRIV_VERSION_1_10_0; 861 } else { 862 error_setg(errp, 863 "Unsupported privilege spec version '%s'", 864 cpu->cfg.priv_spec); 865 return; 866 } 867 } 868 869 if (priv_version >= PRIV_VERSION_1_10_0) { 870 set_priv_version(env, priv_version); 871 } 872 873 /* Force disable extensions if priv spec version does not match */ 874 for (i = 0; i < ARRAY_SIZE(isa_edata_arr); i++) { 875 if (isa_ext_is_enabled(cpu, &isa_edata_arr[i]) && 876 (env->priv_ver < isa_edata_arr[i].min_version)) { 877 isa_ext_update_enabled(cpu, &isa_edata_arr[i], false); 878 #ifndef CONFIG_USER_ONLY 879 warn_report("disabling %s extension for hart 0x" TARGET_FMT_lx 880 " because privilege spec version does not match", 881 isa_edata_arr[i].name, env->mhartid); 882 #else 883 warn_report("disabling %s extension because " 884 "privilege spec version does not match", 885 isa_edata_arr[i].name); 886 #endif 887 } 888 } 889 890 if (cpu->cfg.mmu) { 891 riscv_set_feature(env, RISCV_FEATURE_MMU); 892 } 893 894 if (cpu->cfg.pmp) { 895 riscv_set_feature(env, RISCV_FEATURE_PMP); 896 897 /* 898 * Enhanced PMP should only be available 899 * on harts with PMP support 900 */ 901 if (cpu->cfg.epmp) { 902 riscv_set_feature(env, RISCV_FEATURE_EPMP); 903 } 904 } 905 906 if (cpu->cfg.debug) { 907 riscv_set_feature(env, RISCV_FEATURE_DEBUG); 908 } 909 910 911 #ifndef CONFIG_USER_ONLY 912 if (cpu->cfg.ext_sstc) { 913 riscv_timer_init(cpu); 914 } 915 #endif /* CONFIG_USER_ONLY */ 916 917 /* Validate that MISA_MXL is set properly. */ 918 switch (env->misa_mxl_max) { 919 #ifdef TARGET_RISCV64 920 case MXL_RV64: 921 case MXL_RV128: 922 cc->gdb_core_xml_file = "riscv-64bit-cpu.xml"; 923 break; 924 #endif 925 case MXL_RV32: 926 cc->gdb_core_xml_file = "riscv-32bit-cpu.xml"; 927 break; 928 default: 929 g_assert_not_reached(); 930 } 931 assert(env->misa_mxl_max == env->misa_mxl); 932 933 riscv_cpu_validate_set_extensions(cpu, &local_err); 934 if (local_err != NULL) { 935 error_propagate(errp, local_err); 936 return; 937 } 938 939 #ifndef CONFIG_USER_ONLY 940 if (cpu->cfg.pmu_num) { 941 if (!riscv_pmu_init(cpu, cpu->cfg.pmu_num) && cpu->cfg.ext_sscofpmf) { 942 cpu->pmu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, 943 riscv_pmu_timer_cb, cpu); 944 } 945 } 946 #endif 947 948 riscv_cpu_register_gdb_regs_for_features(cs); 949 950 qemu_init_vcpu(cs); 951 cpu_reset(cs); 952 953 mcc->parent_realize(dev, errp); 954 } 955 956 #ifndef CONFIG_USER_ONLY 957 static void riscv_cpu_set_irq(void *opaque, int irq, int level) 958 { 959 RISCVCPU *cpu = RISCV_CPU(opaque); 960 CPURISCVState *env = &cpu->env; 961 962 if (irq < IRQ_LOCAL_MAX) { 963 switch (irq) { 964 case IRQ_U_SOFT: 965 case IRQ_S_SOFT: 966 case IRQ_VS_SOFT: 967 case IRQ_M_SOFT: 968 case IRQ_U_TIMER: 969 case IRQ_S_TIMER: 970 case IRQ_VS_TIMER: 971 case IRQ_M_TIMER: 972 case IRQ_U_EXT: 973 case IRQ_VS_EXT: 974 case IRQ_M_EXT: 975 if (kvm_enabled()) { 976 kvm_riscv_set_irq(cpu, irq, level); 977 } else { 978 riscv_cpu_update_mip(cpu, 1 << irq, BOOL_TO_MASK(level)); 979 } 980 break; 981 case IRQ_S_EXT: 982 if (kvm_enabled()) { 983 kvm_riscv_set_irq(cpu, irq, level); 984 } else { 985 env->external_seip = level; 986 riscv_cpu_update_mip(cpu, 1 << irq, 987 BOOL_TO_MASK(level | env->software_seip)); 988 } 989 break; 990 default: 991 g_assert_not_reached(); 992 } 993 } else if (irq < (IRQ_LOCAL_MAX + IRQ_LOCAL_GUEST_MAX)) { 994 /* Require H-extension for handling guest local interrupts */ 995 if (!riscv_has_ext(env, RVH)) { 996 g_assert_not_reached(); 997 } 998 999 /* Compute bit position in HGEIP CSR */ 1000 irq = irq - IRQ_LOCAL_MAX + 1; 1001 if (env->geilen < irq) { 1002 g_assert_not_reached(); 1003 } 1004 1005 /* Update HGEIP CSR */ 1006 env->hgeip &= ~((target_ulong)1 << irq); 1007 if (level) { 1008 env->hgeip |= (target_ulong)1 << irq; 1009 } 1010 1011 /* Update mip.SGEIP bit */ 1012 riscv_cpu_update_mip(cpu, MIP_SGEIP, 1013 BOOL_TO_MASK(!!(env->hgeie & env->hgeip))); 1014 } else { 1015 g_assert_not_reached(); 1016 } 1017 } 1018 #endif /* CONFIG_USER_ONLY */ 1019 1020 static void riscv_cpu_init(Object *obj) 1021 { 1022 RISCVCPU *cpu = RISCV_CPU(obj); 1023 1024 cpu->cfg.ext_ifencei = true; 1025 cpu->cfg.ext_icsr = true; 1026 cpu->cfg.mmu = true; 1027 cpu->cfg.pmp = true; 1028 1029 cpu_set_cpustate_pointers(cpu); 1030 1031 #ifndef CONFIG_USER_ONLY 1032 qdev_init_gpio_in(DEVICE(cpu), riscv_cpu_set_irq, 1033 IRQ_LOCAL_MAX + IRQ_LOCAL_GUEST_MAX); 1034 #endif /* CONFIG_USER_ONLY */ 1035 } 1036 1037 static Property riscv_cpu_extensions[] = { 1038 /* Defaults for standard extensions */ 1039 DEFINE_PROP_BOOL("i", RISCVCPU, cfg.ext_i, true), 1040 DEFINE_PROP_BOOL("e", RISCVCPU, cfg.ext_e, false), 1041 DEFINE_PROP_BOOL("g", RISCVCPU, cfg.ext_g, false), 1042 DEFINE_PROP_BOOL("m", RISCVCPU, cfg.ext_m, true), 1043 DEFINE_PROP_BOOL("a", RISCVCPU, cfg.ext_a, true), 1044 DEFINE_PROP_BOOL("f", RISCVCPU, cfg.ext_f, true), 1045 DEFINE_PROP_BOOL("d", RISCVCPU, cfg.ext_d, true), 1046 DEFINE_PROP_BOOL("c", RISCVCPU, cfg.ext_c, true), 1047 DEFINE_PROP_BOOL("s", RISCVCPU, cfg.ext_s, true), 1048 DEFINE_PROP_BOOL("u", RISCVCPU, cfg.ext_u, true), 1049 DEFINE_PROP_BOOL("v", RISCVCPU, cfg.ext_v, false), 1050 DEFINE_PROP_BOOL("h", RISCVCPU, cfg.ext_h, true), 1051 DEFINE_PROP_UINT8("pmu-num", RISCVCPU, cfg.pmu_num, 16), 1052 DEFINE_PROP_BOOL("sscofpmf", RISCVCPU, cfg.ext_sscofpmf, false), 1053 DEFINE_PROP_BOOL("Zifencei", RISCVCPU, cfg.ext_ifencei, true), 1054 DEFINE_PROP_BOOL("Zicsr", RISCVCPU, cfg.ext_icsr, true), 1055 DEFINE_PROP_BOOL("Zihintpause", RISCVCPU, cfg.ext_zihintpause, true), 1056 DEFINE_PROP_BOOL("Zawrs", RISCVCPU, cfg.ext_zawrs, true), 1057 DEFINE_PROP_BOOL("Zfh", RISCVCPU, cfg.ext_zfh, false), 1058 DEFINE_PROP_BOOL("Zfhmin", RISCVCPU, cfg.ext_zfhmin, false), 1059 DEFINE_PROP_BOOL("Zve32f", RISCVCPU, cfg.ext_zve32f, false), 1060 DEFINE_PROP_BOOL("Zve64f", RISCVCPU, cfg.ext_zve64f, false), 1061 DEFINE_PROP_BOOL("mmu", RISCVCPU, cfg.mmu, true), 1062 DEFINE_PROP_BOOL("pmp", RISCVCPU, cfg.pmp, true), 1063 DEFINE_PROP_BOOL("sstc", RISCVCPU, cfg.ext_sstc, true), 1064 1065 DEFINE_PROP_STRING("priv_spec", RISCVCPU, cfg.priv_spec), 1066 DEFINE_PROP_STRING("vext_spec", RISCVCPU, cfg.vext_spec), 1067 DEFINE_PROP_UINT16("vlen", RISCVCPU, cfg.vlen, 128), 1068 DEFINE_PROP_UINT16("elen", RISCVCPU, cfg.elen, 64), 1069 1070 DEFINE_PROP_BOOL("svinval", RISCVCPU, cfg.ext_svinval, false), 1071 DEFINE_PROP_BOOL("svnapot", RISCVCPU, cfg.ext_svnapot, false), 1072 DEFINE_PROP_BOOL("svpbmt", RISCVCPU, cfg.ext_svpbmt, false), 1073 1074 DEFINE_PROP_BOOL("zba", RISCVCPU, cfg.ext_zba, true), 1075 DEFINE_PROP_BOOL("zbb", RISCVCPU, cfg.ext_zbb, true), 1076 DEFINE_PROP_BOOL("zbc", RISCVCPU, cfg.ext_zbc, true), 1077 DEFINE_PROP_BOOL("zbkb", RISCVCPU, cfg.ext_zbkb, false), 1078 DEFINE_PROP_BOOL("zbkc", RISCVCPU, cfg.ext_zbkc, false), 1079 DEFINE_PROP_BOOL("zbkx", RISCVCPU, cfg.ext_zbkx, false), 1080 DEFINE_PROP_BOOL("zbs", RISCVCPU, cfg.ext_zbs, true), 1081 DEFINE_PROP_BOOL("zk", RISCVCPU, cfg.ext_zk, false), 1082 DEFINE_PROP_BOOL("zkn", RISCVCPU, cfg.ext_zkn, false), 1083 DEFINE_PROP_BOOL("zknd", RISCVCPU, cfg.ext_zknd, false), 1084 DEFINE_PROP_BOOL("zkne", RISCVCPU, cfg.ext_zkne, false), 1085 DEFINE_PROP_BOOL("zknh", RISCVCPU, cfg.ext_zknh, false), 1086 DEFINE_PROP_BOOL("zkr", RISCVCPU, cfg.ext_zkr, false), 1087 DEFINE_PROP_BOOL("zks", RISCVCPU, cfg.ext_zks, false), 1088 DEFINE_PROP_BOOL("zksed", RISCVCPU, cfg.ext_zksed, false), 1089 DEFINE_PROP_BOOL("zksh", RISCVCPU, cfg.ext_zksh, false), 1090 DEFINE_PROP_BOOL("zkt", RISCVCPU, cfg.ext_zkt, false), 1091 1092 DEFINE_PROP_BOOL("zdinx", RISCVCPU, cfg.ext_zdinx, false), 1093 DEFINE_PROP_BOOL("zfinx", RISCVCPU, cfg.ext_zfinx, false), 1094 DEFINE_PROP_BOOL("zhinx", RISCVCPU, cfg.ext_zhinx, false), 1095 DEFINE_PROP_BOOL("zhinxmin", RISCVCPU, cfg.ext_zhinxmin, false), 1096 1097 DEFINE_PROP_BOOL("zmmul", RISCVCPU, cfg.ext_zmmul, false), 1098 1099 /* Vendor-specific custom extensions */ 1100 DEFINE_PROP_BOOL("xtheadba", RISCVCPU, cfg.ext_xtheadba, false), 1101 DEFINE_PROP_BOOL("xtheadbb", RISCVCPU, cfg.ext_xtheadbb, false), 1102 DEFINE_PROP_BOOL("xtheadbs", RISCVCPU, cfg.ext_xtheadbs, false), 1103 DEFINE_PROP_BOOL("xtheadcmo", RISCVCPU, cfg.ext_xtheadcmo, false), 1104 DEFINE_PROP_BOOL("xtheadcondmov", RISCVCPU, cfg.ext_xtheadcondmov, false), 1105 DEFINE_PROP_BOOL("xtheadmac", RISCVCPU, cfg.ext_xtheadmac, false), 1106 DEFINE_PROP_BOOL("xtheadmemidx", RISCVCPU, cfg.ext_xtheadmemidx, false), 1107 DEFINE_PROP_BOOL("xtheadmempair", RISCVCPU, cfg.ext_xtheadmempair, false), 1108 DEFINE_PROP_BOOL("xtheadsync", RISCVCPU, cfg.ext_xtheadsync, false), 1109 DEFINE_PROP_BOOL("xventanacondops", RISCVCPU, cfg.ext_XVentanaCondOps, false), 1110 1111 /* These are experimental so mark with 'x-' */ 1112 DEFINE_PROP_BOOL("x-j", RISCVCPU, cfg.ext_j, false), 1113 /* ePMP 0.9.3 */ 1114 DEFINE_PROP_BOOL("x-epmp", RISCVCPU, cfg.epmp, false), 1115 DEFINE_PROP_BOOL("x-smaia", RISCVCPU, cfg.ext_smaia, false), 1116 DEFINE_PROP_BOOL("x-ssaia", RISCVCPU, cfg.ext_ssaia, false), 1117 1118 DEFINE_PROP_END_OF_LIST(), 1119 }; 1120 1121 /* 1122 * Register CPU props based on env.misa_ext. If a non-zero 1123 * value was set, register only the required cpu->cfg.ext_* 1124 * properties and leave. env.misa_ext = 0 means that we want 1125 * all the default properties to be registered. 1126 */ 1127 static void register_cpu_props(DeviceState *dev) 1128 { 1129 RISCVCPU *cpu = RISCV_CPU(OBJECT(dev)); 1130 uint32_t misa_ext = cpu->env.misa_ext; 1131 Property *prop; 1132 1133 /* 1134 * If misa_ext is not zero, set cfg properties now to 1135 * allow them to be read during riscv_cpu_realize() 1136 * later on. 1137 */ 1138 if (cpu->env.misa_ext != 0) { 1139 cpu->cfg.ext_i = misa_ext & RVI; 1140 cpu->cfg.ext_e = misa_ext & RVE; 1141 cpu->cfg.ext_m = misa_ext & RVM; 1142 cpu->cfg.ext_a = misa_ext & RVA; 1143 cpu->cfg.ext_f = misa_ext & RVF; 1144 cpu->cfg.ext_d = misa_ext & RVD; 1145 cpu->cfg.ext_v = misa_ext & RVV; 1146 cpu->cfg.ext_c = misa_ext & RVC; 1147 cpu->cfg.ext_s = misa_ext & RVS; 1148 cpu->cfg.ext_u = misa_ext & RVU; 1149 cpu->cfg.ext_h = misa_ext & RVH; 1150 cpu->cfg.ext_j = misa_ext & RVJ; 1151 1152 /* 1153 * We don't want to set the default riscv_cpu_extensions 1154 * in this case. 1155 */ 1156 return; 1157 } 1158 1159 for (prop = riscv_cpu_extensions; prop && prop->name; prop++) { 1160 qdev_property_add_static(dev, prop); 1161 } 1162 } 1163 1164 static Property riscv_cpu_properties[] = { 1165 DEFINE_PROP_BOOL("debug", RISCVCPU, cfg.debug, true), 1166 1167 DEFINE_PROP_UINT32("mvendorid", RISCVCPU, cfg.mvendorid, 0), 1168 DEFINE_PROP_UINT64("marchid", RISCVCPU, cfg.marchid, RISCV_CPU_MARCHID), 1169 DEFINE_PROP_UINT64("mimpid", RISCVCPU, cfg.mimpid, RISCV_CPU_MIMPID), 1170 1171 #ifndef CONFIG_USER_ONLY 1172 DEFINE_PROP_UINT64("resetvec", RISCVCPU, env.resetvec, DEFAULT_RSTVEC), 1173 #endif 1174 1175 DEFINE_PROP_BOOL("short-isa-string", RISCVCPU, cfg.short_isa_string, false), 1176 1177 DEFINE_PROP_BOOL("rvv_ta_all_1s", RISCVCPU, cfg.rvv_ta_all_1s, false), 1178 DEFINE_PROP_BOOL("rvv_ma_all_1s", RISCVCPU, cfg.rvv_ma_all_1s, false), 1179 DEFINE_PROP_END_OF_LIST(), 1180 }; 1181 1182 static gchar *riscv_gdb_arch_name(CPUState *cs) 1183 { 1184 RISCVCPU *cpu = RISCV_CPU(cs); 1185 CPURISCVState *env = &cpu->env; 1186 1187 switch (riscv_cpu_mxl(env)) { 1188 case MXL_RV32: 1189 return g_strdup("riscv:rv32"); 1190 case MXL_RV64: 1191 case MXL_RV128: 1192 return g_strdup("riscv:rv64"); 1193 default: 1194 g_assert_not_reached(); 1195 } 1196 } 1197 1198 static const char *riscv_gdb_get_dynamic_xml(CPUState *cs, const char *xmlname) 1199 { 1200 RISCVCPU *cpu = RISCV_CPU(cs); 1201 1202 if (strcmp(xmlname, "riscv-csr.xml") == 0) { 1203 return cpu->dyn_csr_xml; 1204 } else if (strcmp(xmlname, "riscv-vector.xml") == 0) { 1205 return cpu->dyn_vreg_xml; 1206 } 1207 1208 return NULL; 1209 } 1210 1211 #ifndef CONFIG_USER_ONLY 1212 #include "hw/core/sysemu-cpu-ops.h" 1213 1214 static const struct SysemuCPUOps riscv_sysemu_ops = { 1215 .get_phys_page_debug = riscv_cpu_get_phys_page_debug, 1216 .write_elf64_note = riscv_cpu_write_elf64_note, 1217 .write_elf32_note = riscv_cpu_write_elf32_note, 1218 .legacy_vmsd = &vmstate_riscv_cpu, 1219 }; 1220 #endif 1221 1222 #include "hw/core/tcg-cpu-ops.h" 1223 1224 static const struct TCGCPUOps riscv_tcg_ops = { 1225 .initialize = riscv_translate_init, 1226 .synchronize_from_tb = riscv_cpu_synchronize_from_tb, 1227 .restore_state_to_opc = riscv_restore_state_to_opc, 1228 1229 #ifndef CONFIG_USER_ONLY 1230 .tlb_fill = riscv_cpu_tlb_fill, 1231 .cpu_exec_interrupt = riscv_cpu_exec_interrupt, 1232 .do_interrupt = riscv_cpu_do_interrupt, 1233 .do_transaction_failed = riscv_cpu_do_transaction_failed, 1234 .do_unaligned_access = riscv_cpu_do_unaligned_access, 1235 .debug_excp_handler = riscv_cpu_debug_excp_handler, 1236 .debug_check_breakpoint = riscv_cpu_debug_check_breakpoint, 1237 .debug_check_watchpoint = riscv_cpu_debug_check_watchpoint, 1238 #endif /* !CONFIG_USER_ONLY */ 1239 }; 1240 1241 static void riscv_cpu_class_init(ObjectClass *c, void *data) 1242 { 1243 RISCVCPUClass *mcc = RISCV_CPU_CLASS(c); 1244 CPUClass *cc = CPU_CLASS(c); 1245 DeviceClass *dc = DEVICE_CLASS(c); 1246 ResettableClass *rc = RESETTABLE_CLASS(c); 1247 1248 device_class_set_parent_realize(dc, riscv_cpu_realize, 1249 &mcc->parent_realize); 1250 1251 resettable_class_set_parent_phases(rc, NULL, riscv_cpu_reset_hold, NULL, 1252 &mcc->parent_phases); 1253 1254 cc->class_by_name = riscv_cpu_class_by_name; 1255 cc->has_work = riscv_cpu_has_work; 1256 cc->dump_state = riscv_cpu_dump_state; 1257 cc->set_pc = riscv_cpu_set_pc; 1258 cc->get_pc = riscv_cpu_get_pc; 1259 cc->gdb_read_register = riscv_cpu_gdb_read_register; 1260 cc->gdb_write_register = riscv_cpu_gdb_write_register; 1261 cc->gdb_num_core_regs = 33; 1262 cc->gdb_stop_before_watchpoint = true; 1263 cc->disas_set_info = riscv_cpu_disas_set_info; 1264 #ifndef CONFIG_USER_ONLY 1265 cc->sysemu_ops = &riscv_sysemu_ops; 1266 #endif 1267 cc->gdb_arch_name = riscv_gdb_arch_name; 1268 cc->gdb_get_dynamic_xml = riscv_gdb_get_dynamic_xml; 1269 cc->tcg_ops = &riscv_tcg_ops; 1270 1271 device_class_set_props(dc, riscv_cpu_properties); 1272 } 1273 1274 static void riscv_isa_string_ext(RISCVCPU *cpu, char **isa_str, int max_str_len) 1275 { 1276 char *old = *isa_str; 1277 char *new = *isa_str; 1278 int i; 1279 1280 for (i = 0; i < ARRAY_SIZE(isa_edata_arr); i++) { 1281 if (isa_edata_arr[i].multi_letter && 1282 isa_ext_is_enabled(cpu, &isa_edata_arr[i])) { 1283 new = g_strconcat(old, "_", isa_edata_arr[i].name, NULL); 1284 g_free(old); 1285 old = new; 1286 } 1287 } 1288 1289 *isa_str = new; 1290 } 1291 1292 char *riscv_isa_string(RISCVCPU *cpu) 1293 { 1294 int i; 1295 const size_t maxlen = sizeof("rv128") + sizeof(riscv_single_letter_exts); 1296 char *isa_str = g_new(char, maxlen); 1297 char *p = isa_str + snprintf(isa_str, maxlen, "rv%d", TARGET_LONG_BITS); 1298 for (i = 0; i < sizeof(riscv_single_letter_exts) - 1; i++) { 1299 if (cpu->env.misa_ext & RV(riscv_single_letter_exts[i])) { 1300 *p++ = qemu_tolower(riscv_single_letter_exts[i]); 1301 } 1302 } 1303 *p = '\0'; 1304 if (!cpu->cfg.short_isa_string) { 1305 riscv_isa_string_ext(cpu, &isa_str, maxlen); 1306 } 1307 return isa_str; 1308 } 1309 1310 static gint riscv_cpu_list_compare(gconstpointer a, gconstpointer b) 1311 { 1312 ObjectClass *class_a = (ObjectClass *)a; 1313 ObjectClass *class_b = (ObjectClass *)b; 1314 const char *name_a, *name_b; 1315 1316 name_a = object_class_get_name(class_a); 1317 name_b = object_class_get_name(class_b); 1318 return strcmp(name_a, name_b); 1319 } 1320 1321 static void riscv_cpu_list_entry(gpointer data, gpointer user_data) 1322 { 1323 const char *typename = object_class_get_name(OBJECT_CLASS(data)); 1324 int len = strlen(typename) - strlen(RISCV_CPU_TYPE_SUFFIX); 1325 1326 qemu_printf("%.*s\n", len, typename); 1327 } 1328 1329 void riscv_cpu_list(void) 1330 { 1331 GSList *list; 1332 1333 list = object_class_get_list(TYPE_RISCV_CPU, false); 1334 list = g_slist_sort(list, riscv_cpu_list_compare); 1335 g_slist_foreach(list, riscv_cpu_list_entry, NULL); 1336 g_slist_free(list); 1337 } 1338 1339 #define DEFINE_CPU(type_name, initfn) \ 1340 { \ 1341 .name = type_name, \ 1342 .parent = TYPE_RISCV_CPU, \ 1343 .instance_init = initfn \ 1344 } 1345 1346 static const TypeInfo riscv_cpu_type_infos[] = { 1347 { 1348 .name = TYPE_RISCV_CPU, 1349 .parent = TYPE_CPU, 1350 .instance_size = sizeof(RISCVCPU), 1351 .instance_align = __alignof__(RISCVCPU), 1352 .instance_init = riscv_cpu_init, 1353 .abstract = true, 1354 .class_size = sizeof(RISCVCPUClass), 1355 .class_init = riscv_cpu_class_init, 1356 }, 1357 DEFINE_CPU(TYPE_RISCV_CPU_ANY, riscv_any_cpu_init), 1358 #if defined(CONFIG_KVM) 1359 DEFINE_CPU(TYPE_RISCV_CPU_HOST, riscv_host_cpu_init), 1360 #endif 1361 #if defined(TARGET_RISCV32) 1362 DEFINE_CPU(TYPE_RISCV_CPU_BASE32, rv32_base_cpu_init), 1363 DEFINE_CPU(TYPE_RISCV_CPU_IBEX, rv32_ibex_cpu_init), 1364 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E31, rv32_sifive_e_cpu_init), 1365 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E34, rv32_imafcu_nommu_cpu_init), 1366 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U34, rv32_sifive_u_cpu_init), 1367 #elif defined(TARGET_RISCV64) 1368 DEFINE_CPU(TYPE_RISCV_CPU_BASE64, rv64_base_cpu_init), 1369 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E51, rv64_sifive_e_cpu_init), 1370 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U54, rv64_sifive_u_cpu_init), 1371 DEFINE_CPU(TYPE_RISCV_CPU_SHAKTI_C, rv64_sifive_u_cpu_init), 1372 DEFINE_CPU(TYPE_RISCV_CPU_BASE128, rv128_base_cpu_init), 1373 #endif 1374 }; 1375 1376 DEFINE_TYPES(riscv_cpu_type_infos) 1377