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