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