1 /* 2 * QEMU RISC-V CPU 3 * 4 * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu 5 * Copyright (c) 2017-2018 SiFive, Inc. 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms and conditions of the GNU General Public License, 9 * version 2 or later, as published by the Free Software Foundation. 10 * 11 * This program is distributed in the hope it will be useful, but WITHOUT 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 14 * more details. 15 * 16 * You should have received a copy of the GNU General Public License along with 17 * this program. If not, see <http://www.gnu.org/licenses/>. 18 */ 19 20 #include "qemu/osdep.h" 21 #include "qemu/qemu-print.h" 22 #include "qemu/ctype.h" 23 #include "qemu/log.h" 24 #include "cpu.h" 25 #include "internals.h" 26 #include "exec/exec-all.h" 27 #include "qapi/error.h" 28 #include "qemu/error-report.h" 29 #include "hw/qdev-properties.h" 30 #include "migration/vmstate.h" 31 #include "fpu/softfloat-helpers.h" 32 #include "sysemu/kvm.h" 33 #include "kvm_riscv.h" 34 35 /* RISC-V CPU definitions */ 36 37 static const char riscv_exts[26] = "IEMAFDQCLBJTPVNSUHKORWXYZG"; 38 39 const char * const riscv_int_regnames[] = { 40 "x0/zero", "x1/ra", "x2/sp", "x3/gp", "x4/tp", "x5/t0", "x6/t1", 41 "x7/t2", "x8/s0", "x9/s1", "x10/a0", "x11/a1", "x12/a2", "x13/a3", 42 "x14/a4", "x15/a5", "x16/a6", "x17/a7", "x18/s2", "x19/s3", "x20/s4", 43 "x21/s5", "x22/s6", "x23/s7", "x24/s8", "x25/s9", "x26/s10", "x27/s11", 44 "x28/t3", "x29/t4", "x30/t5", "x31/t6" 45 }; 46 47 const char * const riscv_int_regnamesh[] = { 48 "x0h/zeroh", "x1h/rah", "x2h/sph", "x3h/gph", "x4h/tph", "x5h/t0h", 49 "x6h/t1h", "x7h/t2h", "x8h/s0h", "x9h/s1h", "x10h/a0h", "x11h/a1h", 50 "x12h/a2h", "x13h/a3h", "x14h/a4h", "x15h/a5h", "x16h/a6h", "x17h/a7h", 51 "x18h/s2h", "x19h/s3h", "x20h/s4h", "x21h/s5h", "x22h/s6h", "x23h/s7h", 52 "x24h/s8h", "x25h/s9h", "x26h/s10h", "x27h/s11h", "x28h/t3h", "x29h/t4h", 53 "x30h/t5h", "x31h/t6h" 54 }; 55 56 const char * const riscv_fpr_regnames[] = { 57 "f0/ft0", "f1/ft1", "f2/ft2", "f3/ft3", "f4/ft4", "f5/ft5", 58 "f6/ft6", "f7/ft7", "f8/fs0", "f9/fs1", "f10/fa0", "f11/fa1", 59 "f12/fa2", "f13/fa3", "f14/fa4", "f15/fa5", "f16/fa6", "f17/fa7", 60 "f18/fs2", "f19/fs3", "f20/fs4", "f21/fs5", "f22/fs6", "f23/fs7", 61 "f24/fs8", "f25/fs9", "f26/fs10", "f27/fs11", "f28/ft8", "f29/ft9", 62 "f30/ft10", "f31/ft11" 63 }; 64 65 static const char * const riscv_excp_names[] = { 66 "misaligned_fetch", 67 "fault_fetch", 68 "illegal_instruction", 69 "breakpoint", 70 "misaligned_load", 71 "fault_load", 72 "misaligned_store", 73 "fault_store", 74 "user_ecall", 75 "supervisor_ecall", 76 "hypervisor_ecall", 77 "machine_ecall", 78 "exec_page_fault", 79 "load_page_fault", 80 "reserved", 81 "store_page_fault", 82 "reserved", 83 "reserved", 84 "reserved", 85 "reserved", 86 "guest_exec_page_fault", 87 "guest_load_page_fault", 88 "reserved", 89 "guest_store_page_fault", 90 }; 91 92 static const char * const riscv_intr_names[] = { 93 "u_software", 94 "s_software", 95 "vs_software", 96 "m_software", 97 "u_timer", 98 "s_timer", 99 "vs_timer", 100 "m_timer", 101 "u_external", 102 "s_external", 103 "vs_external", 104 "m_external", 105 "reserved", 106 "reserved", 107 "reserved", 108 "reserved" 109 }; 110 111 const char *riscv_cpu_get_trap_name(target_ulong cause, bool async) 112 { 113 if (async) { 114 return (cause < ARRAY_SIZE(riscv_intr_names)) ? 115 riscv_intr_names[cause] : "(unknown)"; 116 } else { 117 return (cause < ARRAY_SIZE(riscv_excp_names)) ? 118 riscv_excp_names[cause] : "(unknown)"; 119 } 120 } 121 122 static void set_misa(CPURISCVState *env, RISCVMXL mxl, uint32_t ext) 123 { 124 env->misa_mxl_max = env->misa_mxl = mxl; 125 env->misa_ext_mask = env->misa_ext = ext; 126 } 127 128 static void set_priv_version(CPURISCVState *env, int priv_ver) 129 { 130 env->priv_ver = priv_ver; 131 } 132 133 static void set_vext_version(CPURISCVState *env, int vext_ver) 134 { 135 env->vext_ver = vext_ver; 136 } 137 138 static void set_feature(CPURISCVState *env, int feature) 139 { 140 env->features |= (1ULL << feature); 141 } 142 143 static void set_resetvec(CPURISCVState *env, target_ulong resetvec) 144 { 145 #ifndef CONFIG_USER_ONLY 146 env->resetvec = resetvec; 147 #endif 148 } 149 150 static void riscv_any_cpu_init(Object *obj) 151 { 152 CPURISCVState *env = &RISCV_CPU(obj)->env; 153 #if defined(TARGET_RISCV32) 154 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVD | RVC | RVU); 155 #elif defined(TARGET_RISCV64) 156 set_misa(env, MXL_RV64, RVI | RVM | RVA | RVF | RVD | RVC | RVU); 157 #endif 158 set_priv_version(env, PRIV_VERSION_1_11_0); 159 } 160 161 #if defined(TARGET_RISCV64) 162 static void rv64_base_cpu_init(Object *obj) 163 { 164 CPURISCVState *env = &RISCV_CPU(obj)->env; 165 /* We set this in the realise function */ 166 set_misa(env, MXL_RV64, 0); 167 } 168 169 static void rv64_sifive_u_cpu_init(Object *obj) 170 { 171 CPURISCVState *env = &RISCV_CPU(obj)->env; 172 set_misa(env, MXL_RV64, RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU); 173 set_priv_version(env, PRIV_VERSION_1_10_0); 174 } 175 176 static void rv64_sifive_e_cpu_init(Object *obj) 177 { 178 CPURISCVState *env = &RISCV_CPU(obj)->env; 179 set_misa(env, MXL_RV64, RVI | RVM | RVA | RVC | RVU); 180 set_priv_version(env, PRIV_VERSION_1_10_0); 181 qdev_prop_set_bit(DEVICE(obj), "mmu", false); 182 } 183 184 static void rv128_base_cpu_init(Object *obj) 185 { 186 if (qemu_tcg_mttcg_enabled()) { 187 /* Missing 128-bit aligned atomics */ 188 error_report("128-bit RISC-V currently does not work with Multi " 189 "Threaded TCG. Please use: -accel tcg,thread=single"); 190 exit(EXIT_FAILURE); 191 } 192 CPURISCVState *env = &RISCV_CPU(obj)->env; 193 /* We set this in the realise function */ 194 set_misa(env, MXL_RV128, 0); 195 } 196 #else 197 static void rv32_base_cpu_init(Object *obj) 198 { 199 CPURISCVState *env = &RISCV_CPU(obj)->env; 200 /* We set this in the realise function */ 201 set_misa(env, MXL_RV32, 0); 202 } 203 204 static void rv32_sifive_u_cpu_init(Object *obj) 205 { 206 CPURISCVState *env = &RISCV_CPU(obj)->env; 207 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU); 208 set_priv_version(env, PRIV_VERSION_1_10_0); 209 } 210 211 static void rv32_sifive_e_cpu_init(Object *obj) 212 { 213 CPURISCVState *env = &RISCV_CPU(obj)->env; 214 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVC | RVU); 215 set_priv_version(env, PRIV_VERSION_1_10_0); 216 qdev_prop_set_bit(DEVICE(obj), "mmu", false); 217 } 218 219 static void rv32_ibex_cpu_init(Object *obj) 220 { 221 CPURISCVState *env = &RISCV_CPU(obj)->env; 222 set_misa(env, MXL_RV32, RVI | RVM | RVC | RVU); 223 set_priv_version(env, PRIV_VERSION_1_10_0); 224 qdev_prop_set_bit(DEVICE(obj), "mmu", false); 225 qdev_prop_set_bit(DEVICE(obj), "x-epmp", true); 226 } 227 228 static void rv32_imafcu_nommu_cpu_init(Object *obj) 229 { 230 CPURISCVState *env = &RISCV_CPU(obj)->env; 231 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVC | RVU); 232 set_priv_version(env, PRIV_VERSION_1_10_0); 233 set_resetvec(env, DEFAULT_RSTVEC); 234 qdev_prop_set_bit(DEVICE(obj), "mmu", false); 235 } 236 #endif 237 238 #if defined(CONFIG_KVM) 239 static void riscv_host_cpu_init(Object *obj) 240 { 241 CPURISCVState *env = &RISCV_CPU(obj)->env; 242 #if defined(TARGET_RISCV32) 243 set_misa(env, MXL_RV32, 0); 244 #elif defined(TARGET_RISCV64) 245 set_misa(env, MXL_RV64, 0); 246 #endif 247 } 248 #endif 249 250 static ObjectClass *riscv_cpu_class_by_name(const char *cpu_model) 251 { 252 ObjectClass *oc; 253 char *typename; 254 char **cpuname; 255 256 cpuname = g_strsplit(cpu_model, ",", 1); 257 typename = g_strdup_printf(RISCV_CPU_TYPE_NAME("%s"), cpuname[0]); 258 oc = object_class_by_name(typename); 259 g_strfreev(cpuname); 260 g_free(typename); 261 if (!oc || !object_class_dynamic_cast(oc, TYPE_RISCV_CPU) || 262 object_class_is_abstract(oc)) { 263 return NULL; 264 } 265 return oc; 266 } 267 268 static void riscv_cpu_dump_state(CPUState *cs, FILE *f, int flags) 269 { 270 RISCVCPU *cpu = RISCV_CPU(cs); 271 CPURISCVState *env = &cpu->env; 272 int i; 273 274 #if !defined(CONFIG_USER_ONLY) 275 if (riscv_has_ext(env, RVH)) { 276 qemu_fprintf(f, " %s %d\n", "V = ", riscv_cpu_virt_enabled(env)); 277 } 278 #endif 279 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "pc ", env->pc); 280 #ifndef CONFIG_USER_ONLY 281 { 282 static const int dump_csrs[] = { 283 CSR_MHARTID, 284 CSR_MSTATUS, 285 CSR_MSTATUSH, 286 CSR_HSTATUS, 287 CSR_VSSTATUS, 288 CSR_MIP, 289 CSR_MIE, 290 CSR_MIDELEG, 291 CSR_HIDELEG, 292 CSR_MEDELEG, 293 CSR_HEDELEG, 294 CSR_MTVEC, 295 CSR_STVEC, 296 CSR_VSTVEC, 297 CSR_MEPC, 298 CSR_SEPC, 299 CSR_VSEPC, 300 CSR_MCAUSE, 301 CSR_SCAUSE, 302 CSR_VSCAUSE, 303 CSR_MTVAL, 304 CSR_STVAL, 305 CSR_HTVAL, 306 CSR_MTVAL2, 307 CSR_MSCRATCH, 308 CSR_SSCRATCH, 309 CSR_SATP, 310 CSR_MMTE, 311 CSR_UPMBASE, 312 CSR_UPMMASK, 313 CSR_SPMBASE, 314 CSR_SPMMASK, 315 CSR_MPMBASE, 316 CSR_MPMMASK, 317 }; 318 319 for (int i = 0; i < ARRAY_SIZE(dump_csrs); ++i) { 320 int csrno = dump_csrs[i]; 321 target_ulong val = 0; 322 RISCVException res = riscv_csrrw_debug(env, csrno, &val, 0, 0); 323 324 /* 325 * Rely on the smode, hmode, etc, predicates within csr.c 326 * to do the filtering of the registers that are present. 327 */ 328 if (res == RISCV_EXCP_NONE) { 329 qemu_fprintf(f, " %-8s " TARGET_FMT_lx "\n", 330 csr_ops[csrno].name, val); 331 } 332 } 333 } 334 #endif 335 336 for (i = 0; i < 32; i++) { 337 qemu_fprintf(f, " %-8s " TARGET_FMT_lx, 338 riscv_int_regnames[i], env->gpr[i]); 339 if ((i & 3) == 3) { 340 qemu_fprintf(f, "\n"); 341 } 342 } 343 if (flags & CPU_DUMP_FPU) { 344 for (i = 0; i < 32; i++) { 345 qemu_fprintf(f, " %-8s %016" PRIx64, 346 riscv_fpr_regnames[i], env->fpr[i]); 347 if ((i & 3) == 3) { 348 qemu_fprintf(f, "\n"); 349 } 350 } 351 } 352 } 353 354 static void riscv_cpu_set_pc(CPUState *cs, vaddr value) 355 { 356 RISCVCPU *cpu = RISCV_CPU(cs); 357 CPURISCVState *env = &cpu->env; 358 359 if (env->xl == MXL_RV32) { 360 env->pc = (int32_t)value; 361 } else { 362 env->pc = value; 363 } 364 } 365 366 static void riscv_cpu_synchronize_from_tb(CPUState *cs, 367 const TranslationBlock *tb) 368 { 369 RISCVCPU *cpu = RISCV_CPU(cs); 370 CPURISCVState *env = &cpu->env; 371 RISCVMXL xl = FIELD_EX32(tb->flags, TB_FLAGS, XL); 372 373 if (xl == MXL_RV32) { 374 env->pc = (int32_t)tb->pc; 375 } else { 376 env->pc = tb->pc; 377 } 378 } 379 380 static bool riscv_cpu_has_work(CPUState *cs) 381 { 382 #ifndef CONFIG_USER_ONLY 383 RISCVCPU *cpu = RISCV_CPU(cs); 384 CPURISCVState *env = &cpu->env; 385 /* 386 * Definition of the WFI instruction requires it to ignore the privilege 387 * mode and delegation registers, but respect individual enables 388 */ 389 return (env->mip & env->mie) != 0; 390 #else 391 return true; 392 #endif 393 } 394 395 void restore_state_to_opc(CPURISCVState *env, TranslationBlock *tb, 396 target_ulong *data) 397 { 398 RISCVMXL xl = FIELD_EX32(tb->flags, TB_FLAGS, XL); 399 if (xl == MXL_RV32) { 400 env->pc = (int32_t)data[0]; 401 } else { 402 env->pc = data[0]; 403 } 404 } 405 406 static void riscv_cpu_reset(DeviceState *dev) 407 { 408 CPUState *cs = CPU(dev); 409 RISCVCPU *cpu = RISCV_CPU(cs); 410 RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(cpu); 411 CPURISCVState *env = &cpu->env; 412 413 mcc->parent_reset(dev); 414 #ifndef CONFIG_USER_ONLY 415 env->misa_mxl = env->misa_mxl_max; 416 env->priv = PRV_M; 417 env->mstatus &= ~(MSTATUS_MIE | MSTATUS_MPRV); 418 if (env->misa_mxl > MXL_RV32) { 419 /* 420 * The reset status of SXL/UXL is undefined, but mstatus is WARL 421 * and we must ensure that the value after init is valid for read. 422 */ 423 env->mstatus = set_field(env->mstatus, MSTATUS64_SXL, env->misa_mxl); 424 env->mstatus = set_field(env->mstatus, MSTATUS64_UXL, env->misa_mxl); 425 } 426 env->mcause = 0; 427 env->pc = env->resetvec; 428 env->two_stage_lookup = false; 429 /* mmte is supposed to have pm.current hardwired to 1 */ 430 env->mmte |= (PM_EXT_INITIAL | MMTE_M_PM_CURRENT); 431 #endif 432 env->xl = riscv_cpu_mxl(env); 433 riscv_cpu_update_mask(env); 434 cs->exception_index = RISCV_EXCP_NONE; 435 env->load_res = -1; 436 set_default_nan_mode(1, &env->fp_status); 437 438 #ifndef CONFIG_USER_ONLY 439 if (kvm_enabled()) { 440 kvm_riscv_reset_vcpu(cpu); 441 } 442 #endif 443 } 444 445 static void riscv_cpu_disas_set_info(CPUState *s, disassemble_info *info) 446 { 447 RISCVCPU *cpu = RISCV_CPU(s); 448 449 switch (riscv_cpu_mxl(&cpu->env)) { 450 case MXL_RV32: 451 info->print_insn = print_insn_riscv32; 452 break; 453 case MXL_RV64: 454 info->print_insn = print_insn_riscv64; 455 break; 456 case MXL_RV128: 457 info->print_insn = print_insn_riscv128; 458 break; 459 default: 460 g_assert_not_reached(); 461 } 462 } 463 464 static void riscv_cpu_realize(DeviceState *dev, Error **errp) 465 { 466 CPUState *cs = CPU(dev); 467 RISCVCPU *cpu = RISCV_CPU(dev); 468 CPURISCVState *env = &cpu->env; 469 RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(dev); 470 CPUClass *cc = CPU_CLASS(mcc); 471 int priv_version = 0; 472 Error *local_err = NULL; 473 474 cpu_exec_realizefn(cs, &local_err); 475 if (local_err != NULL) { 476 error_propagate(errp, local_err); 477 return; 478 } 479 480 if (cpu->cfg.priv_spec) { 481 if (!g_strcmp0(cpu->cfg.priv_spec, "v1.11.0")) { 482 priv_version = PRIV_VERSION_1_11_0; 483 } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.10.0")) { 484 priv_version = PRIV_VERSION_1_10_0; 485 } else { 486 error_setg(errp, 487 "Unsupported privilege spec version '%s'", 488 cpu->cfg.priv_spec); 489 return; 490 } 491 } 492 493 if (priv_version) { 494 set_priv_version(env, priv_version); 495 } else if (!env->priv_ver) { 496 set_priv_version(env, PRIV_VERSION_1_11_0); 497 } 498 499 if (cpu->cfg.mmu) { 500 set_feature(env, RISCV_FEATURE_MMU); 501 } 502 503 if (cpu->cfg.pmp) { 504 set_feature(env, RISCV_FEATURE_PMP); 505 506 /* 507 * Enhanced PMP should only be available 508 * on harts with PMP support 509 */ 510 if (cpu->cfg.epmp) { 511 set_feature(env, RISCV_FEATURE_EPMP); 512 } 513 } 514 515 set_resetvec(env, cpu->cfg.resetvec); 516 517 /* Validate that MISA_MXL is set properly. */ 518 switch (env->misa_mxl_max) { 519 #ifdef TARGET_RISCV64 520 case MXL_RV64: 521 cc->gdb_core_xml_file = "riscv-64bit-cpu.xml"; 522 break; 523 case MXL_RV128: 524 break; 525 #endif 526 case MXL_RV32: 527 cc->gdb_core_xml_file = "riscv-32bit-cpu.xml"; 528 break; 529 default: 530 g_assert_not_reached(); 531 } 532 assert(env->misa_mxl_max == env->misa_mxl); 533 534 /* If only MISA_EXT is unset for misa, then set it from properties */ 535 if (env->misa_ext == 0) { 536 uint32_t ext = 0; 537 538 /* Do some ISA extension error checking */ 539 if (cpu->cfg.ext_i && cpu->cfg.ext_e) { 540 error_setg(errp, 541 "I and E extensions are incompatible"); 542 return; 543 } 544 545 if (!cpu->cfg.ext_i && !cpu->cfg.ext_e) { 546 error_setg(errp, 547 "Either I or E extension must be set"); 548 return; 549 } 550 551 if (cpu->cfg.ext_g && !(cpu->cfg.ext_i & cpu->cfg.ext_m & 552 cpu->cfg.ext_a & cpu->cfg.ext_f & 553 cpu->cfg.ext_d)) { 554 warn_report("Setting G will also set IMAFD"); 555 cpu->cfg.ext_i = true; 556 cpu->cfg.ext_m = true; 557 cpu->cfg.ext_a = true; 558 cpu->cfg.ext_f = true; 559 cpu->cfg.ext_d = true; 560 } 561 562 /* Set the ISA extensions, checks should have happened above */ 563 if (cpu->cfg.ext_i) { 564 ext |= RVI; 565 } 566 if (cpu->cfg.ext_e) { 567 ext |= RVE; 568 } 569 if (cpu->cfg.ext_m) { 570 ext |= RVM; 571 } 572 if (cpu->cfg.ext_a) { 573 ext |= RVA; 574 } 575 if (cpu->cfg.ext_f) { 576 ext |= RVF; 577 } 578 if (cpu->cfg.ext_d) { 579 ext |= RVD; 580 } 581 if (cpu->cfg.ext_c) { 582 ext |= RVC; 583 } 584 if (cpu->cfg.ext_s) { 585 ext |= RVS; 586 } 587 if (cpu->cfg.ext_u) { 588 ext |= RVU; 589 } 590 if (cpu->cfg.ext_h) { 591 ext |= RVH; 592 } 593 if (cpu->cfg.ext_v) { 594 int vext_version = VEXT_VERSION_1_00_0; 595 ext |= RVV; 596 if (!is_power_of_2(cpu->cfg.vlen)) { 597 error_setg(errp, 598 "Vector extension VLEN must be power of 2"); 599 return; 600 } 601 if (cpu->cfg.vlen > RV_VLEN_MAX || cpu->cfg.vlen < 128) { 602 error_setg(errp, 603 "Vector extension implementation only supports VLEN " 604 "in the range [128, %d]", RV_VLEN_MAX); 605 return; 606 } 607 if (!is_power_of_2(cpu->cfg.elen)) { 608 error_setg(errp, 609 "Vector extension ELEN must be power of 2"); 610 return; 611 } 612 if (cpu->cfg.elen > 64 || cpu->cfg.vlen < 8) { 613 error_setg(errp, 614 "Vector extension implementation only supports ELEN " 615 "in the range [8, 64]"); 616 return; 617 } 618 if (cpu->cfg.vext_spec) { 619 if (!g_strcmp0(cpu->cfg.vext_spec, "v1.0")) { 620 vext_version = VEXT_VERSION_1_00_0; 621 } else { 622 error_setg(errp, 623 "Unsupported vector spec version '%s'", 624 cpu->cfg.vext_spec); 625 return; 626 } 627 } else { 628 qemu_log("vector version is not specified, " 629 "use the default value v1.0\n"); 630 } 631 set_vext_version(env, vext_version); 632 } 633 if ((cpu->cfg.ext_zve32f || cpu->cfg.ext_zve64f) && !cpu->cfg.ext_f) { 634 error_setg(errp, "Zve32f/Zve64f extension depends upon RVF."); 635 return; 636 } 637 if (cpu->cfg.ext_j) { 638 ext |= RVJ; 639 } 640 641 set_misa(env, env->misa_mxl, ext); 642 } 643 644 riscv_cpu_register_gdb_regs_for_features(cs); 645 646 qemu_init_vcpu(cs); 647 cpu_reset(cs); 648 649 mcc->parent_realize(dev, errp); 650 } 651 652 #ifndef CONFIG_USER_ONLY 653 static void riscv_cpu_set_irq(void *opaque, int irq, int level) 654 { 655 RISCVCPU *cpu = RISCV_CPU(opaque); 656 657 switch (irq) { 658 case IRQ_U_SOFT: 659 case IRQ_S_SOFT: 660 case IRQ_VS_SOFT: 661 case IRQ_M_SOFT: 662 case IRQ_U_TIMER: 663 case IRQ_S_TIMER: 664 case IRQ_VS_TIMER: 665 case IRQ_M_TIMER: 666 case IRQ_U_EXT: 667 case IRQ_S_EXT: 668 case IRQ_VS_EXT: 669 case IRQ_M_EXT: 670 if (kvm_enabled()) { 671 kvm_riscv_set_irq(cpu, irq, level); 672 } else { 673 riscv_cpu_update_mip(cpu, 1 << irq, BOOL_TO_MASK(level)); 674 } 675 break; 676 default: 677 g_assert_not_reached(); 678 } 679 } 680 #endif /* CONFIG_USER_ONLY */ 681 682 static void riscv_cpu_init(Object *obj) 683 { 684 RISCVCPU *cpu = RISCV_CPU(obj); 685 686 cpu_set_cpustate_pointers(cpu); 687 688 #ifndef CONFIG_USER_ONLY 689 qdev_init_gpio_in(DEVICE(cpu), riscv_cpu_set_irq, 12); 690 #endif /* CONFIG_USER_ONLY */ 691 } 692 693 static Property riscv_cpu_properties[] = { 694 /* Defaults for standard extensions */ 695 DEFINE_PROP_BOOL("i", RISCVCPU, cfg.ext_i, true), 696 DEFINE_PROP_BOOL("e", RISCVCPU, cfg.ext_e, false), 697 DEFINE_PROP_BOOL("g", RISCVCPU, cfg.ext_g, true), 698 DEFINE_PROP_BOOL("m", RISCVCPU, cfg.ext_m, true), 699 DEFINE_PROP_BOOL("a", RISCVCPU, cfg.ext_a, true), 700 DEFINE_PROP_BOOL("f", RISCVCPU, cfg.ext_f, true), 701 DEFINE_PROP_BOOL("d", RISCVCPU, cfg.ext_d, true), 702 DEFINE_PROP_BOOL("c", RISCVCPU, cfg.ext_c, true), 703 DEFINE_PROP_BOOL("s", RISCVCPU, cfg.ext_s, true), 704 DEFINE_PROP_BOOL("u", RISCVCPU, cfg.ext_u, true), 705 DEFINE_PROP_BOOL("v", RISCVCPU, cfg.ext_v, false), 706 DEFINE_PROP_BOOL("h", RISCVCPU, cfg.ext_h, true), 707 DEFINE_PROP_BOOL("Counters", RISCVCPU, cfg.ext_counters, true), 708 DEFINE_PROP_BOOL("Zifencei", RISCVCPU, cfg.ext_ifencei, true), 709 DEFINE_PROP_BOOL("Zicsr", RISCVCPU, cfg.ext_icsr, true), 710 DEFINE_PROP_BOOL("Zfh", RISCVCPU, cfg.ext_zfh, false), 711 DEFINE_PROP_BOOL("Zfhmin", RISCVCPU, cfg.ext_zfhmin, false), 712 DEFINE_PROP_BOOL("Zve32f", RISCVCPU, cfg.ext_zve32f, false), 713 DEFINE_PROP_BOOL("Zve64f", RISCVCPU, cfg.ext_zve64f, false), 714 DEFINE_PROP_BOOL("mmu", RISCVCPU, cfg.mmu, true), 715 DEFINE_PROP_BOOL("pmp", RISCVCPU, cfg.pmp, true), 716 717 DEFINE_PROP_STRING("priv_spec", RISCVCPU, cfg.priv_spec), 718 DEFINE_PROP_STRING("vext_spec", RISCVCPU, cfg.vext_spec), 719 DEFINE_PROP_UINT16("vlen", RISCVCPU, cfg.vlen, 128), 720 DEFINE_PROP_UINT16("elen", RISCVCPU, cfg.elen, 64), 721 722 DEFINE_PROP_BOOL("zba", RISCVCPU, cfg.ext_zba, true), 723 DEFINE_PROP_BOOL("zbb", RISCVCPU, cfg.ext_zbb, true), 724 DEFINE_PROP_BOOL("zbc", RISCVCPU, cfg.ext_zbc, true), 725 DEFINE_PROP_BOOL("zbs", RISCVCPU, cfg.ext_zbs, true), 726 727 /* These are experimental so mark with 'x-' */ 728 DEFINE_PROP_BOOL("x-j", RISCVCPU, cfg.ext_j, false), 729 /* ePMP 0.9.3 */ 730 DEFINE_PROP_BOOL("x-epmp", RISCVCPU, cfg.epmp, false), 731 732 DEFINE_PROP_UINT64("resetvec", RISCVCPU, cfg.resetvec, DEFAULT_RSTVEC), 733 DEFINE_PROP_END_OF_LIST(), 734 }; 735 736 static gchar *riscv_gdb_arch_name(CPUState *cs) 737 { 738 RISCVCPU *cpu = RISCV_CPU(cs); 739 CPURISCVState *env = &cpu->env; 740 741 switch (riscv_cpu_mxl(env)) { 742 case MXL_RV32: 743 return g_strdup("riscv:rv32"); 744 case MXL_RV64: 745 case MXL_RV128: 746 return g_strdup("riscv:rv64"); 747 default: 748 g_assert_not_reached(); 749 } 750 } 751 752 static const char *riscv_gdb_get_dynamic_xml(CPUState *cs, const char *xmlname) 753 { 754 RISCVCPU *cpu = RISCV_CPU(cs); 755 756 if (strcmp(xmlname, "riscv-csr.xml") == 0) { 757 return cpu->dyn_csr_xml; 758 } else if (strcmp(xmlname, "riscv-vector.xml") == 0) { 759 return cpu->dyn_vreg_xml; 760 } 761 762 return NULL; 763 } 764 765 #ifndef CONFIG_USER_ONLY 766 #include "hw/core/sysemu-cpu-ops.h" 767 768 static const struct SysemuCPUOps riscv_sysemu_ops = { 769 .get_phys_page_debug = riscv_cpu_get_phys_page_debug, 770 .write_elf64_note = riscv_cpu_write_elf64_note, 771 .write_elf32_note = riscv_cpu_write_elf32_note, 772 .legacy_vmsd = &vmstate_riscv_cpu, 773 }; 774 #endif 775 776 #include "hw/core/tcg-cpu-ops.h" 777 778 static const struct TCGCPUOps riscv_tcg_ops = { 779 .initialize = riscv_translate_init, 780 .synchronize_from_tb = riscv_cpu_synchronize_from_tb, 781 782 #ifndef CONFIG_USER_ONLY 783 .tlb_fill = riscv_cpu_tlb_fill, 784 .cpu_exec_interrupt = riscv_cpu_exec_interrupt, 785 .do_interrupt = riscv_cpu_do_interrupt, 786 .do_transaction_failed = riscv_cpu_do_transaction_failed, 787 .do_unaligned_access = riscv_cpu_do_unaligned_access, 788 #endif /* !CONFIG_USER_ONLY */ 789 }; 790 791 static void riscv_cpu_class_init(ObjectClass *c, void *data) 792 { 793 RISCVCPUClass *mcc = RISCV_CPU_CLASS(c); 794 CPUClass *cc = CPU_CLASS(c); 795 DeviceClass *dc = DEVICE_CLASS(c); 796 797 device_class_set_parent_realize(dc, riscv_cpu_realize, 798 &mcc->parent_realize); 799 800 device_class_set_parent_reset(dc, riscv_cpu_reset, &mcc->parent_reset); 801 802 cc->class_by_name = riscv_cpu_class_by_name; 803 cc->has_work = riscv_cpu_has_work; 804 cc->dump_state = riscv_cpu_dump_state; 805 cc->set_pc = riscv_cpu_set_pc; 806 cc->gdb_read_register = riscv_cpu_gdb_read_register; 807 cc->gdb_write_register = riscv_cpu_gdb_write_register; 808 cc->gdb_num_core_regs = 33; 809 cc->gdb_stop_before_watchpoint = true; 810 cc->disas_set_info = riscv_cpu_disas_set_info; 811 #ifndef CONFIG_USER_ONLY 812 cc->sysemu_ops = &riscv_sysemu_ops; 813 #endif 814 cc->gdb_arch_name = riscv_gdb_arch_name; 815 cc->gdb_get_dynamic_xml = riscv_gdb_get_dynamic_xml; 816 cc->tcg_ops = &riscv_tcg_ops; 817 818 device_class_set_props(dc, riscv_cpu_properties); 819 } 820 821 char *riscv_isa_string(RISCVCPU *cpu) 822 { 823 int i; 824 const size_t maxlen = sizeof("rv128") + sizeof(riscv_exts) + 1; 825 char *isa_str = g_new(char, maxlen); 826 char *p = isa_str + snprintf(isa_str, maxlen, "rv%d", TARGET_LONG_BITS); 827 for (i = 0; i < sizeof(riscv_exts); i++) { 828 if (cpu->env.misa_ext & RV(riscv_exts[i])) { 829 *p++ = qemu_tolower(riscv_exts[i]); 830 } 831 } 832 *p = '\0'; 833 return isa_str; 834 } 835 836 static gint riscv_cpu_list_compare(gconstpointer a, gconstpointer b) 837 { 838 ObjectClass *class_a = (ObjectClass *)a; 839 ObjectClass *class_b = (ObjectClass *)b; 840 const char *name_a, *name_b; 841 842 name_a = object_class_get_name(class_a); 843 name_b = object_class_get_name(class_b); 844 return strcmp(name_a, name_b); 845 } 846 847 static void riscv_cpu_list_entry(gpointer data, gpointer user_data) 848 { 849 const char *typename = object_class_get_name(OBJECT_CLASS(data)); 850 int len = strlen(typename) - strlen(RISCV_CPU_TYPE_SUFFIX); 851 852 qemu_printf("%.*s\n", len, typename); 853 } 854 855 void riscv_cpu_list(void) 856 { 857 GSList *list; 858 859 list = object_class_get_list(TYPE_RISCV_CPU, false); 860 list = g_slist_sort(list, riscv_cpu_list_compare); 861 g_slist_foreach(list, riscv_cpu_list_entry, NULL); 862 g_slist_free(list); 863 } 864 865 #define DEFINE_CPU(type_name, initfn) \ 866 { \ 867 .name = type_name, \ 868 .parent = TYPE_RISCV_CPU, \ 869 .instance_init = initfn \ 870 } 871 872 static const TypeInfo riscv_cpu_type_infos[] = { 873 { 874 .name = TYPE_RISCV_CPU, 875 .parent = TYPE_CPU, 876 .instance_size = sizeof(RISCVCPU), 877 .instance_align = __alignof__(RISCVCPU), 878 .instance_init = riscv_cpu_init, 879 .abstract = true, 880 .class_size = sizeof(RISCVCPUClass), 881 .class_init = riscv_cpu_class_init, 882 }, 883 DEFINE_CPU(TYPE_RISCV_CPU_ANY, riscv_any_cpu_init), 884 #if defined(CONFIG_KVM) 885 DEFINE_CPU(TYPE_RISCV_CPU_HOST, riscv_host_cpu_init), 886 #endif 887 #if defined(TARGET_RISCV32) 888 DEFINE_CPU(TYPE_RISCV_CPU_BASE32, rv32_base_cpu_init), 889 DEFINE_CPU(TYPE_RISCV_CPU_IBEX, rv32_ibex_cpu_init), 890 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E31, rv32_sifive_e_cpu_init), 891 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E34, rv32_imafcu_nommu_cpu_init), 892 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U34, rv32_sifive_u_cpu_init), 893 #elif defined(TARGET_RISCV64) 894 DEFINE_CPU(TYPE_RISCV_CPU_BASE64, rv64_base_cpu_init), 895 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E51, rv64_sifive_e_cpu_init), 896 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U54, rv64_sifive_u_cpu_init), 897 DEFINE_CPU(TYPE_RISCV_CPU_SHAKTI_C, rv64_sifive_u_cpu_init), 898 DEFINE_CPU(TYPE_RISCV_CPU_BASE128, rv128_base_cpu_init), 899 #endif 900 }; 901 902 DEFINE_TYPES(riscv_cpu_type_infos) 903