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