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 "qapi/visitor.h" 32 #include "qemu/error-report.h" 33 #include "hw/qdev-properties.h" 34 #include "migration/vmstate.h" 35 #include "fpu/softfloat-helpers.h" 36 #include "sysemu/kvm.h" 37 #include "kvm_riscv.h" 38 #include "tcg/tcg.h" 39 40 /* RISC-V CPU definitions */ 41 42 #define RISCV_CPU_MARCHID ((QEMU_VERSION_MAJOR << 16) | \ 43 (QEMU_VERSION_MINOR << 8) | \ 44 (QEMU_VERSION_MICRO)) 45 #define RISCV_CPU_MIMPID RISCV_CPU_MARCHID 46 47 static const char riscv_single_letter_exts[] = "IEMAFDQCPVH"; 48 49 struct isa_ext_data { 50 const char *name; 51 int min_version; 52 int ext_enable_offset; 53 }; 54 55 #define ISA_EXT_DATA_ENTRY(_name, _min_ver, _prop) \ 56 {#_name, _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 * Single letter extensions are checked in riscv_cpu_validate_misa_priv() 76 * instead. 77 */ 78 static const struct isa_ext_data isa_edata_arr[] = { 79 ISA_EXT_DATA_ENTRY(zicbom, PRIV_VERSION_1_12_0, ext_icbom), 80 ISA_EXT_DATA_ENTRY(zicboz, PRIV_VERSION_1_12_0, ext_icboz), 81 ISA_EXT_DATA_ENTRY(zicond, PRIV_VERSION_1_12_0, ext_zicond), 82 ISA_EXT_DATA_ENTRY(zicsr, PRIV_VERSION_1_10_0, ext_icsr), 83 ISA_EXT_DATA_ENTRY(zifencei, PRIV_VERSION_1_10_0, ext_ifencei), 84 ISA_EXT_DATA_ENTRY(zihintpause, PRIV_VERSION_1_10_0, ext_zihintpause), 85 ISA_EXT_DATA_ENTRY(zawrs, PRIV_VERSION_1_12_0, ext_zawrs), 86 ISA_EXT_DATA_ENTRY(zfh, PRIV_VERSION_1_11_0, ext_zfh), 87 ISA_EXT_DATA_ENTRY(zfhmin, PRIV_VERSION_1_11_0, ext_zfhmin), 88 ISA_EXT_DATA_ENTRY(zfinx, PRIV_VERSION_1_12_0, ext_zfinx), 89 ISA_EXT_DATA_ENTRY(zdinx, PRIV_VERSION_1_12_0, ext_zdinx), 90 ISA_EXT_DATA_ENTRY(zca, PRIV_VERSION_1_12_0, ext_zca), 91 ISA_EXT_DATA_ENTRY(zcb, PRIV_VERSION_1_12_0, ext_zcb), 92 ISA_EXT_DATA_ENTRY(zcf, PRIV_VERSION_1_12_0, ext_zcf), 93 ISA_EXT_DATA_ENTRY(zcd, PRIV_VERSION_1_12_0, ext_zcd), 94 ISA_EXT_DATA_ENTRY(zce, PRIV_VERSION_1_12_0, ext_zce), 95 ISA_EXT_DATA_ENTRY(zcmp, PRIV_VERSION_1_12_0, ext_zcmp), 96 ISA_EXT_DATA_ENTRY(zcmt, PRIV_VERSION_1_12_0, ext_zcmt), 97 ISA_EXT_DATA_ENTRY(zba, PRIV_VERSION_1_12_0, ext_zba), 98 ISA_EXT_DATA_ENTRY(zbb, PRIV_VERSION_1_12_0, ext_zbb), 99 ISA_EXT_DATA_ENTRY(zbc, PRIV_VERSION_1_12_0, ext_zbc), 100 ISA_EXT_DATA_ENTRY(zbkb, PRIV_VERSION_1_12_0, ext_zbkb), 101 ISA_EXT_DATA_ENTRY(zbkc, PRIV_VERSION_1_12_0, ext_zbkc), 102 ISA_EXT_DATA_ENTRY(zbkx, PRIV_VERSION_1_12_0, ext_zbkx), 103 ISA_EXT_DATA_ENTRY(zbs, PRIV_VERSION_1_12_0, ext_zbs), 104 ISA_EXT_DATA_ENTRY(zk, PRIV_VERSION_1_12_0, ext_zk), 105 ISA_EXT_DATA_ENTRY(zkn, PRIV_VERSION_1_12_0, ext_zkn), 106 ISA_EXT_DATA_ENTRY(zknd, PRIV_VERSION_1_12_0, ext_zknd), 107 ISA_EXT_DATA_ENTRY(zkne, PRIV_VERSION_1_12_0, ext_zkne), 108 ISA_EXT_DATA_ENTRY(zknh, PRIV_VERSION_1_12_0, ext_zknh), 109 ISA_EXT_DATA_ENTRY(zkr, PRIV_VERSION_1_12_0, ext_zkr), 110 ISA_EXT_DATA_ENTRY(zks, PRIV_VERSION_1_12_0, ext_zks), 111 ISA_EXT_DATA_ENTRY(zksed, PRIV_VERSION_1_12_0, ext_zksed), 112 ISA_EXT_DATA_ENTRY(zksh, PRIV_VERSION_1_12_0, ext_zksh), 113 ISA_EXT_DATA_ENTRY(zkt, PRIV_VERSION_1_12_0, ext_zkt), 114 ISA_EXT_DATA_ENTRY(zve32f, PRIV_VERSION_1_10_0, ext_zve32f), 115 ISA_EXT_DATA_ENTRY(zve64f, PRIV_VERSION_1_10_0, ext_zve64f), 116 ISA_EXT_DATA_ENTRY(zve64d, PRIV_VERSION_1_10_0, ext_zve64d), 117 ISA_EXT_DATA_ENTRY(zvfh, PRIV_VERSION_1_12_0, ext_zvfh), 118 ISA_EXT_DATA_ENTRY(zvfhmin, PRIV_VERSION_1_12_0, ext_zvfhmin), 119 ISA_EXT_DATA_ENTRY(zhinx, PRIV_VERSION_1_12_0, ext_zhinx), 120 ISA_EXT_DATA_ENTRY(zhinxmin, PRIV_VERSION_1_12_0, ext_zhinxmin), 121 ISA_EXT_DATA_ENTRY(smaia, PRIV_VERSION_1_12_0, ext_smaia), 122 ISA_EXT_DATA_ENTRY(ssaia, PRIV_VERSION_1_12_0, ext_ssaia), 123 ISA_EXT_DATA_ENTRY(sscofpmf, PRIV_VERSION_1_12_0, ext_sscofpmf), 124 ISA_EXT_DATA_ENTRY(sstc, PRIV_VERSION_1_12_0, ext_sstc), 125 ISA_EXT_DATA_ENTRY(svadu, PRIV_VERSION_1_12_0, ext_svadu), 126 ISA_EXT_DATA_ENTRY(svinval, PRIV_VERSION_1_12_0, ext_svinval), 127 ISA_EXT_DATA_ENTRY(svnapot, PRIV_VERSION_1_12_0, ext_svnapot), 128 ISA_EXT_DATA_ENTRY(svpbmt, PRIV_VERSION_1_12_0, ext_svpbmt), 129 ISA_EXT_DATA_ENTRY(xtheadba, PRIV_VERSION_1_11_0, ext_xtheadba), 130 ISA_EXT_DATA_ENTRY(xtheadbb, PRIV_VERSION_1_11_0, ext_xtheadbb), 131 ISA_EXT_DATA_ENTRY(xtheadbs, PRIV_VERSION_1_11_0, ext_xtheadbs), 132 ISA_EXT_DATA_ENTRY(xtheadcmo, PRIV_VERSION_1_11_0, ext_xtheadcmo), 133 ISA_EXT_DATA_ENTRY(xtheadcondmov, PRIV_VERSION_1_11_0, ext_xtheadcondmov), 134 ISA_EXT_DATA_ENTRY(xtheadfmemidx, PRIV_VERSION_1_11_0, ext_xtheadfmemidx), 135 ISA_EXT_DATA_ENTRY(xtheadfmv, PRIV_VERSION_1_11_0, ext_xtheadfmv), 136 ISA_EXT_DATA_ENTRY(xtheadmac, PRIV_VERSION_1_11_0, ext_xtheadmac), 137 ISA_EXT_DATA_ENTRY(xtheadmemidx, PRIV_VERSION_1_11_0, ext_xtheadmemidx), 138 ISA_EXT_DATA_ENTRY(xtheadmempair, PRIV_VERSION_1_11_0, ext_xtheadmempair), 139 ISA_EXT_DATA_ENTRY(xtheadsync, PRIV_VERSION_1_11_0, ext_xtheadsync), 140 ISA_EXT_DATA_ENTRY(xventanacondops, PRIV_VERSION_1_12_0, ext_XVentanaCondOps), 141 }; 142 143 static bool isa_ext_is_enabled(RISCVCPU *cpu, 144 const struct isa_ext_data *edata) 145 { 146 bool *ext_enabled = (void *)&cpu->cfg + edata->ext_enable_offset; 147 148 return *ext_enabled; 149 } 150 151 static void isa_ext_update_enabled(RISCVCPU *cpu, 152 const struct isa_ext_data *edata, bool en) 153 { 154 bool *ext_enabled = (void *)&cpu->cfg + edata->ext_enable_offset; 155 156 *ext_enabled = en; 157 } 158 159 const char * const riscv_int_regnames[] = { 160 "x0/zero", "x1/ra", "x2/sp", "x3/gp", "x4/tp", "x5/t0", "x6/t1", 161 "x7/t2", "x8/s0", "x9/s1", "x10/a0", "x11/a1", "x12/a2", "x13/a3", 162 "x14/a4", "x15/a5", "x16/a6", "x17/a7", "x18/s2", "x19/s3", "x20/s4", 163 "x21/s5", "x22/s6", "x23/s7", "x24/s8", "x25/s9", "x26/s10", "x27/s11", 164 "x28/t3", "x29/t4", "x30/t5", "x31/t6" 165 }; 166 167 const char * const riscv_int_regnamesh[] = { 168 "x0h/zeroh", "x1h/rah", "x2h/sph", "x3h/gph", "x4h/tph", "x5h/t0h", 169 "x6h/t1h", "x7h/t2h", "x8h/s0h", "x9h/s1h", "x10h/a0h", "x11h/a1h", 170 "x12h/a2h", "x13h/a3h", "x14h/a4h", "x15h/a5h", "x16h/a6h", "x17h/a7h", 171 "x18h/s2h", "x19h/s3h", "x20h/s4h", "x21h/s5h", "x22h/s6h", "x23h/s7h", 172 "x24h/s8h", "x25h/s9h", "x26h/s10h", "x27h/s11h", "x28h/t3h", "x29h/t4h", 173 "x30h/t5h", "x31h/t6h" 174 }; 175 176 const char * const riscv_fpr_regnames[] = { 177 "f0/ft0", "f1/ft1", "f2/ft2", "f3/ft3", "f4/ft4", "f5/ft5", 178 "f6/ft6", "f7/ft7", "f8/fs0", "f9/fs1", "f10/fa0", "f11/fa1", 179 "f12/fa2", "f13/fa3", "f14/fa4", "f15/fa5", "f16/fa6", "f17/fa7", 180 "f18/fs2", "f19/fs3", "f20/fs4", "f21/fs5", "f22/fs6", "f23/fs7", 181 "f24/fs8", "f25/fs9", "f26/fs10", "f27/fs11", "f28/ft8", "f29/ft9", 182 "f30/ft10", "f31/ft11" 183 }; 184 185 static const char * const riscv_excp_names[] = { 186 "misaligned_fetch", 187 "fault_fetch", 188 "illegal_instruction", 189 "breakpoint", 190 "misaligned_load", 191 "fault_load", 192 "misaligned_store", 193 "fault_store", 194 "user_ecall", 195 "supervisor_ecall", 196 "hypervisor_ecall", 197 "machine_ecall", 198 "exec_page_fault", 199 "load_page_fault", 200 "reserved", 201 "store_page_fault", 202 "reserved", 203 "reserved", 204 "reserved", 205 "reserved", 206 "guest_exec_page_fault", 207 "guest_load_page_fault", 208 "reserved", 209 "guest_store_page_fault", 210 }; 211 212 static const char * const riscv_intr_names[] = { 213 "u_software", 214 "s_software", 215 "vs_software", 216 "m_software", 217 "u_timer", 218 "s_timer", 219 "vs_timer", 220 "m_timer", 221 "u_external", 222 "s_external", 223 "vs_external", 224 "m_external", 225 "reserved", 226 "reserved", 227 "reserved", 228 "reserved" 229 }; 230 231 static void riscv_cpu_add_user_properties(Object *obj); 232 233 const char *riscv_cpu_get_trap_name(target_ulong cause, bool async) 234 { 235 if (async) { 236 return (cause < ARRAY_SIZE(riscv_intr_names)) ? 237 riscv_intr_names[cause] : "(unknown)"; 238 } else { 239 return (cause < ARRAY_SIZE(riscv_excp_names)) ? 240 riscv_excp_names[cause] : "(unknown)"; 241 } 242 } 243 244 static void set_misa(CPURISCVState *env, RISCVMXL mxl, uint32_t ext) 245 { 246 env->misa_mxl_max = env->misa_mxl = mxl; 247 env->misa_ext_mask = env->misa_ext = ext; 248 } 249 250 static void set_priv_version(CPURISCVState *env, int priv_ver) 251 { 252 env->priv_ver = priv_ver; 253 } 254 255 #ifndef CONFIG_USER_ONLY 256 static uint8_t satp_mode_from_str(const char *satp_mode_str) 257 { 258 if (!strncmp(satp_mode_str, "mbare", 5)) { 259 return VM_1_10_MBARE; 260 } 261 262 if (!strncmp(satp_mode_str, "sv32", 4)) { 263 return VM_1_10_SV32; 264 } 265 266 if (!strncmp(satp_mode_str, "sv39", 4)) { 267 return VM_1_10_SV39; 268 } 269 270 if (!strncmp(satp_mode_str, "sv48", 4)) { 271 return VM_1_10_SV48; 272 } 273 274 if (!strncmp(satp_mode_str, "sv57", 4)) { 275 return VM_1_10_SV57; 276 } 277 278 if (!strncmp(satp_mode_str, "sv64", 4)) { 279 return VM_1_10_SV64; 280 } 281 282 g_assert_not_reached(); 283 } 284 285 uint8_t satp_mode_max_from_map(uint32_t map) 286 { 287 /* map here has at least one bit set, so no problem with clz */ 288 return 31 - __builtin_clz(map); 289 } 290 291 const char *satp_mode_str(uint8_t satp_mode, bool is_32_bit) 292 { 293 if (is_32_bit) { 294 switch (satp_mode) { 295 case VM_1_10_SV32: 296 return "sv32"; 297 case VM_1_10_MBARE: 298 return "none"; 299 } 300 } else { 301 switch (satp_mode) { 302 case VM_1_10_SV64: 303 return "sv64"; 304 case VM_1_10_SV57: 305 return "sv57"; 306 case VM_1_10_SV48: 307 return "sv48"; 308 case VM_1_10_SV39: 309 return "sv39"; 310 case VM_1_10_MBARE: 311 return "none"; 312 } 313 } 314 315 g_assert_not_reached(); 316 } 317 318 static void set_satp_mode_max_supported(RISCVCPU *cpu, 319 uint8_t satp_mode) 320 { 321 bool rv32 = riscv_cpu_mxl(&cpu->env) == MXL_RV32; 322 const bool *valid_vm = rv32 ? valid_vm_1_10_32 : valid_vm_1_10_64; 323 324 for (int i = 0; i <= satp_mode; ++i) { 325 if (valid_vm[i]) { 326 cpu->cfg.satp_mode.supported |= (1 << i); 327 } 328 } 329 } 330 331 /* Set the satp mode to the max supported */ 332 static void set_satp_mode_default_map(RISCVCPU *cpu) 333 { 334 cpu->cfg.satp_mode.map = cpu->cfg.satp_mode.supported; 335 } 336 #endif 337 338 static void riscv_any_cpu_init(Object *obj) 339 { 340 CPURISCVState *env = &RISCV_CPU(obj)->env; 341 #if defined(TARGET_RISCV32) 342 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVD | RVC | RVU); 343 #elif defined(TARGET_RISCV64) 344 set_misa(env, MXL_RV64, RVI | RVM | RVA | RVF | RVD | RVC | RVU); 345 #endif 346 347 #ifndef CONFIG_USER_ONLY 348 set_satp_mode_max_supported(RISCV_CPU(obj), 349 riscv_cpu_mxl(&RISCV_CPU(obj)->env) == MXL_RV32 ? 350 VM_1_10_SV32 : VM_1_10_SV57); 351 #endif 352 353 set_priv_version(env, PRIV_VERSION_1_12_0); 354 } 355 356 #if defined(TARGET_RISCV64) 357 static void rv64_base_cpu_init(Object *obj) 358 { 359 CPURISCVState *env = &RISCV_CPU(obj)->env; 360 /* We set this in the realise function */ 361 set_misa(env, MXL_RV64, 0); 362 riscv_cpu_add_user_properties(obj); 363 /* Set latest version of privileged specification */ 364 set_priv_version(env, PRIV_VERSION_1_12_0); 365 #ifndef CONFIG_USER_ONLY 366 set_satp_mode_max_supported(RISCV_CPU(obj), VM_1_10_SV57); 367 #endif 368 } 369 370 static void rv64_sifive_u_cpu_init(Object *obj) 371 { 372 CPURISCVState *env = &RISCV_CPU(obj)->env; 373 set_misa(env, MXL_RV64, RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU); 374 set_priv_version(env, PRIV_VERSION_1_10_0); 375 #ifndef CONFIG_USER_ONLY 376 set_satp_mode_max_supported(RISCV_CPU(obj), VM_1_10_SV39); 377 #endif 378 } 379 380 static void rv64_sifive_e_cpu_init(Object *obj) 381 { 382 CPURISCVState *env = &RISCV_CPU(obj)->env; 383 RISCVCPU *cpu = RISCV_CPU(obj); 384 385 set_misa(env, MXL_RV64, RVI | RVM | RVA | RVC | RVU); 386 set_priv_version(env, PRIV_VERSION_1_10_0); 387 cpu->cfg.mmu = false; 388 #ifndef CONFIG_USER_ONLY 389 set_satp_mode_max_supported(cpu, VM_1_10_MBARE); 390 #endif 391 } 392 393 static void rv64_thead_c906_cpu_init(Object *obj) 394 { 395 CPURISCVState *env = &RISCV_CPU(obj)->env; 396 RISCVCPU *cpu = RISCV_CPU(obj); 397 398 set_misa(env, MXL_RV64, RVG | RVC | RVS | RVU); 399 set_priv_version(env, PRIV_VERSION_1_11_0); 400 401 cpu->cfg.ext_zfh = true; 402 cpu->cfg.mmu = true; 403 cpu->cfg.ext_xtheadba = true; 404 cpu->cfg.ext_xtheadbb = true; 405 cpu->cfg.ext_xtheadbs = true; 406 cpu->cfg.ext_xtheadcmo = true; 407 cpu->cfg.ext_xtheadcondmov = true; 408 cpu->cfg.ext_xtheadfmemidx = true; 409 cpu->cfg.ext_xtheadmac = true; 410 cpu->cfg.ext_xtheadmemidx = true; 411 cpu->cfg.ext_xtheadmempair = true; 412 cpu->cfg.ext_xtheadsync = true; 413 414 cpu->cfg.mvendorid = THEAD_VENDOR_ID; 415 #ifndef CONFIG_USER_ONLY 416 set_satp_mode_max_supported(cpu, VM_1_10_SV39); 417 #endif 418 } 419 420 static void rv64_veyron_v1_cpu_init(Object *obj) 421 { 422 CPURISCVState *env = &RISCV_CPU(obj)->env; 423 RISCVCPU *cpu = RISCV_CPU(obj); 424 425 set_misa(env, MXL_RV64, RVG | RVC | RVS | RVU | RVH); 426 env->priv_ver = PRIV_VERSION_1_12_0; 427 428 /* Enable ISA extensions */ 429 cpu->cfg.mmu = true; 430 cpu->cfg.ext_icbom = true; 431 cpu->cfg.cbom_blocksize = 64; 432 cpu->cfg.cboz_blocksize = 64; 433 cpu->cfg.ext_icboz = true; 434 cpu->cfg.ext_smaia = true; 435 cpu->cfg.ext_ssaia = true; 436 cpu->cfg.ext_sscofpmf = true; 437 cpu->cfg.ext_sstc = true; 438 cpu->cfg.ext_svinval = true; 439 cpu->cfg.ext_svnapot = true; 440 cpu->cfg.ext_svpbmt = true; 441 cpu->cfg.ext_smstateen = true; 442 cpu->cfg.ext_zba = true; 443 cpu->cfg.ext_zbb = true; 444 cpu->cfg.ext_zbc = true; 445 cpu->cfg.ext_zbs = true; 446 cpu->cfg.ext_XVentanaCondOps = true; 447 448 cpu->cfg.mvendorid = VEYRON_V1_MVENDORID; 449 cpu->cfg.marchid = VEYRON_V1_MARCHID; 450 cpu->cfg.mimpid = VEYRON_V1_MIMPID; 451 452 #ifndef CONFIG_USER_ONLY 453 set_satp_mode_max_supported(cpu, VM_1_10_SV48); 454 #endif 455 } 456 457 static void rv128_base_cpu_init(Object *obj) 458 { 459 if (qemu_tcg_mttcg_enabled()) { 460 /* Missing 128-bit aligned atomics */ 461 error_report("128-bit RISC-V currently does not work with Multi " 462 "Threaded TCG. Please use: -accel tcg,thread=single"); 463 exit(EXIT_FAILURE); 464 } 465 CPURISCVState *env = &RISCV_CPU(obj)->env; 466 /* We set this in the realise function */ 467 set_misa(env, MXL_RV128, 0); 468 riscv_cpu_add_user_properties(obj); 469 /* Set latest version of privileged specification */ 470 set_priv_version(env, PRIV_VERSION_1_12_0); 471 #ifndef CONFIG_USER_ONLY 472 set_satp_mode_max_supported(RISCV_CPU(obj), VM_1_10_SV57); 473 #endif 474 } 475 #else 476 static void rv32_base_cpu_init(Object *obj) 477 { 478 CPURISCVState *env = &RISCV_CPU(obj)->env; 479 /* We set this in the realise function */ 480 set_misa(env, MXL_RV32, 0); 481 riscv_cpu_add_user_properties(obj); 482 /* Set latest version of privileged specification */ 483 set_priv_version(env, PRIV_VERSION_1_12_0); 484 #ifndef CONFIG_USER_ONLY 485 set_satp_mode_max_supported(RISCV_CPU(obj), VM_1_10_SV32); 486 #endif 487 } 488 489 static void rv32_sifive_u_cpu_init(Object *obj) 490 { 491 CPURISCVState *env = &RISCV_CPU(obj)->env; 492 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVD | RVC | RVS | RVU); 493 set_priv_version(env, PRIV_VERSION_1_10_0); 494 #ifndef CONFIG_USER_ONLY 495 set_satp_mode_max_supported(RISCV_CPU(obj), VM_1_10_SV32); 496 #endif 497 } 498 499 static void rv32_sifive_e_cpu_init(Object *obj) 500 { 501 CPURISCVState *env = &RISCV_CPU(obj)->env; 502 RISCVCPU *cpu = RISCV_CPU(obj); 503 504 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVC | RVU); 505 set_priv_version(env, PRIV_VERSION_1_10_0); 506 cpu->cfg.mmu = false; 507 #ifndef CONFIG_USER_ONLY 508 set_satp_mode_max_supported(cpu, VM_1_10_MBARE); 509 #endif 510 } 511 512 static void rv32_ibex_cpu_init(Object *obj) 513 { 514 CPURISCVState *env = &RISCV_CPU(obj)->env; 515 RISCVCPU *cpu = RISCV_CPU(obj); 516 517 set_misa(env, MXL_RV32, RVI | RVM | RVC | RVU); 518 set_priv_version(env, PRIV_VERSION_1_11_0); 519 cpu->cfg.mmu = false; 520 #ifndef CONFIG_USER_ONLY 521 set_satp_mode_max_supported(cpu, VM_1_10_MBARE); 522 #endif 523 cpu->cfg.epmp = true; 524 } 525 526 static void rv32_imafcu_nommu_cpu_init(Object *obj) 527 { 528 CPURISCVState *env = &RISCV_CPU(obj)->env; 529 RISCVCPU *cpu = RISCV_CPU(obj); 530 531 set_misa(env, MXL_RV32, RVI | RVM | RVA | RVF | RVC | RVU); 532 set_priv_version(env, PRIV_VERSION_1_10_0); 533 cpu->cfg.mmu = false; 534 #ifndef CONFIG_USER_ONLY 535 set_satp_mode_max_supported(cpu, VM_1_10_MBARE); 536 #endif 537 } 538 #endif 539 540 #if defined(CONFIG_KVM) 541 static void riscv_host_cpu_init(Object *obj) 542 { 543 CPURISCVState *env = &RISCV_CPU(obj)->env; 544 #if defined(TARGET_RISCV32) 545 set_misa(env, MXL_RV32, 0); 546 #elif defined(TARGET_RISCV64) 547 set_misa(env, MXL_RV64, 0); 548 #endif 549 riscv_cpu_add_user_properties(obj); 550 } 551 #endif 552 553 static ObjectClass *riscv_cpu_class_by_name(const char *cpu_model) 554 { 555 ObjectClass *oc; 556 char *typename; 557 char **cpuname; 558 559 cpuname = g_strsplit(cpu_model, ",", 1); 560 typename = g_strdup_printf(RISCV_CPU_TYPE_NAME("%s"), cpuname[0]); 561 oc = object_class_by_name(typename); 562 g_strfreev(cpuname); 563 g_free(typename); 564 if (!oc || !object_class_dynamic_cast(oc, TYPE_RISCV_CPU) || 565 object_class_is_abstract(oc)) { 566 return NULL; 567 } 568 return oc; 569 } 570 571 static void riscv_cpu_dump_state(CPUState *cs, FILE *f, int flags) 572 { 573 RISCVCPU *cpu = RISCV_CPU(cs); 574 CPURISCVState *env = &cpu->env; 575 int i; 576 577 #if !defined(CONFIG_USER_ONLY) 578 if (riscv_has_ext(env, RVH)) { 579 qemu_fprintf(f, " %s %d\n", "V = ", env->virt_enabled); 580 } 581 #endif 582 qemu_fprintf(f, " %s " TARGET_FMT_lx "\n", "pc ", env->pc); 583 #ifndef CONFIG_USER_ONLY 584 { 585 static const int dump_csrs[] = { 586 CSR_MHARTID, 587 CSR_MSTATUS, 588 CSR_MSTATUSH, 589 /* 590 * CSR_SSTATUS is intentionally omitted here as its value 591 * can be figured out by looking at CSR_MSTATUS 592 */ 593 CSR_HSTATUS, 594 CSR_VSSTATUS, 595 CSR_MIP, 596 CSR_MIE, 597 CSR_MIDELEG, 598 CSR_HIDELEG, 599 CSR_MEDELEG, 600 CSR_HEDELEG, 601 CSR_MTVEC, 602 CSR_STVEC, 603 CSR_VSTVEC, 604 CSR_MEPC, 605 CSR_SEPC, 606 CSR_VSEPC, 607 CSR_MCAUSE, 608 CSR_SCAUSE, 609 CSR_VSCAUSE, 610 CSR_MTVAL, 611 CSR_STVAL, 612 CSR_HTVAL, 613 CSR_MTVAL2, 614 CSR_MSCRATCH, 615 CSR_SSCRATCH, 616 CSR_SATP, 617 CSR_MMTE, 618 CSR_UPMBASE, 619 CSR_UPMMASK, 620 CSR_SPMBASE, 621 CSR_SPMMASK, 622 CSR_MPMBASE, 623 CSR_MPMMASK, 624 }; 625 626 for (int i = 0; i < ARRAY_SIZE(dump_csrs); ++i) { 627 int csrno = dump_csrs[i]; 628 target_ulong val = 0; 629 RISCVException res = riscv_csrrw_debug(env, csrno, &val, 0, 0); 630 631 /* 632 * Rely on the smode, hmode, etc, predicates within csr.c 633 * to do the filtering of the registers that are present. 634 */ 635 if (res == RISCV_EXCP_NONE) { 636 qemu_fprintf(f, " %-8s " TARGET_FMT_lx "\n", 637 csr_ops[csrno].name, val); 638 } 639 } 640 } 641 #endif 642 643 for (i = 0; i < 32; i++) { 644 qemu_fprintf(f, " %-8s " TARGET_FMT_lx, 645 riscv_int_regnames[i], env->gpr[i]); 646 if ((i & 3) == 3) { 647 qemu_fprintf(f, "\n"); 648 } 649 } 650 if (flags & CPU_DUMP_FPU) { 651 for (i = 0; i < 32; i++) { 652 qemu_fprintf(f, " %-8s %016" PRIx64, 653 riscv_fpr_regnames[i], env->fpr[i]); 654 if ((i & 3) == 3) { 655 qemu_fprintf(f, "\n"); 656 } 657 } 658 } 659 } 660 661 static void riscv_cpu_set_pc(CPUState *cs, vaddr value) 662 { 663 RISCVCPU *cpu = RISCV_CPU(cs); 664 CPURISCVState *env = &cpu->env; 665 666 if (env->xl == MXL_RV32) { 667 env->pc = (int32_t)value; 668 } else { 669 env->pc = value; 670 } 671 } 672 673 static vaddr riscv_cpu_get_pc(CPUState *cs) 674 { 675 RISCVCPU *cpu = RISCV_CPU(cs); 676 CPURISCVState *env = &cpu->env; 677 678 /* Match cpu_get_tb_cpu_state. */ 679 if (env->xl == MXL_RV32) { 680 return env->pc & UINT32_MAX; 681 } 682 return env->pc; 683 } 684 685 static void riscv_cpu_synchronize_from_tb(CPUState *cs, 686 const TranslationBlock *tb) 687 { 688 RISCVCPU *cpu = RISCV_CPU(cs); 689 CPURISCVState *env = &cpu->env; 690 RISCVMXL xl = FIELD_EX32(tb->flags, TB_FLAGS, XL); 691 692 tcg_debug_assert(!(cs->tcg_cflags & CF_PCREL)); 693 694 if (xl == MXL_RV32) { 695 env->pc = (int32_t) tb->pc; 696 } else { 697 env->pc = tb->pc; 698 } 699 } 700 701 static bool riscv_cpu_has_work(CPUState *cs) 702 { 703 #ifndef CONFIG_USER_ONLY 704 RISCVCPU *cpu = RISCV_CPU(cs); 705 CPURISCVState *env = &cpu->env; 706 /* 707 * Definition of the WFI instruction requires it to ignore the privilege 708 * mode and delegation registers, but respect individual enables 709 */ 710 return riscv_cpu_all_pending(env) != 0; 711 #else 712 return true; 713 #endif 714 } 715 716 static void riscv_restore_state_to_opc(CPUState *cs, 717 const TranslationBlock *tb, 718 const uint64_t *data) 719 { 720 RISCVCPU *cpu = RISCV_CPU(cs); 721 CPURISCVState *env = &cpu->env; 722 RISCVMXL xl = FIELD_EX32(tb->flags, TB_FLAGS, XL); 723 724 if (xl == MXL_RV32) { 725 env->pc = (int32_t)data[0]; 726 } else { 727 env->pc = data[0]; 728 } 729 env->bins = data[1]; 730 } 731 732 static void riscv_cpu_reset_hold(Object *obj) 733 { 734 #ifndef CONFIG_USER_ONLY 735 uint8_t iprio; 736 int i, irq, rdzero; 737 #endif 738 CPUState *cs = CPU(obj); 739 RISCVCPU *cpu = RISCV_CPU(cs); 740 RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(cpu); 741 CPURISCVState *env = &cpu->env; 742 743 if (mcc->parent_phases.hold) { 744 mcc->parent_phases.hold(obj); 745 } 746 #ifndef CONFIG_USER_ONLY 747 env->misa_mxl = env->misa_mxl_max; 748 env->priv = PRV_M; 749 env->mstatus &= ~(MSTATUS_MIE | MSTATUS_MPRV); 750 if (env->misa_mxl > MXL_RV32) { 751 /* 752 * The reset status of SXL/UXL is undefined, but mstatus is WARL 753 * and we must ensure that the value after init is valid for read. 754 */ 755 env->mstatus = set_field(env->mstatus, MSTATUS64_SXL, env->misa_mxl); 756 env->mstatus = set_field(env->mstatus, MSTATUS64_UXL, env->misa_mxl); 757 if (riscv_has_ext(env, RVH)) { 758 env->vsstatus = set_field(env->vsstatus, 759 MSTATUS64_SXL, env->misa_mxl); 760 env->vsstatus = set_field(env->vsstatus, 761 MSTATUS64_UXL, env->misa_mxl); 762 env->mstatus_hs = set_field(env->mstatus_hs, 763 MSTATUS64_SXL, env->misa_mxl); 764 env->mstatus_hs = set_field(env->mstatus_hs, 765 MSTATUS64_UXL, env->misa_mxl); 766 } 767 } 768 env->mcause = 0; 769 env->miclaim = MIP_SGEIP; 770 env->pc = env->resetvec; 771 env->bins = 0; 772 env->two_stage_lookup = false; 773 774 env->menvcfg = (cpu->cfg.ext_svpbmt ? MENVCFG_PBMTE : 0) | 775 (cpu->cfg.ext_svadu ? MENVCFG_HADE : 0); 776 env->henvcfg = (cpu->cfg.ext_svpbmt ? HENVCFG_PBMTE : 0) | 777 (cpu->cfg.ext_svadu ? HENVCFG_HADE : 0); 778 779 /* Initialized default priorities of local interrupts. */ 780 for (i = 0; i < ARRAY_SIZE(env->miprio); i++) { 781 iprio = riscv_cpu_default_priority(i); 782 env->miprio[i] = (i == IRQ_M_EXT) ? 0 : iprio; 783 env->siprio[i] = (i == IRQ_S_EXT) ? 0 : iprio; 784 env->hviprio[i] = 0; 785 } 786 i = 0; 787 while (!riscv_cpu_hviprio_index2irq(i, &irq, &rdzero)) { 788 if (!rdzero) { 789 env->hviprio[irq] = env->miprio[irq]; 790 } 791 i++; 792 } 793 /* mmte is supposed to have pm.current hardwired to 1 */ 794 env->mmte |= (EXT_STATUS_INITIAL | MMTE_M_PM_CURRENT); 795 #endif 796 env->xl = riscv_cpu_mxl(env); 797 riscv_cpu_update_mask(env); 798 cs->exception_index = RISCV_EXCP_NONE; 799 env->load_res = -1; 800 set_default_nan_mode(1, &env->fp_status); 801 802 #ifndef CONFIG_USER_ONLY 803 if (cpu->cfg.debug) { 804 riscv_trigger_init(env); 805 } 806 807 if (kvm_enabled()) { 808 kvm_riscv_reset_vcpu(cpu); 809 } 810 #endif 811 } 812 813 static void riscv_cpu_disas_set_info(CPUState *s, disassemble_info *info) 814 { 815 RISCVCPU *cpu = RISCV_CPU(s); 816 817 switch (riscv_cpu_mxl(&cpu->env)) { 818 case MXL_RV32: 819 info->print_insn = print_insn_riscv32; 820 break; 821 case MXL_RV64: 822 info->print_insn = print_insn_riscv64; 823 break; 824 case MXL_RV128: 825 info->print_insn = print_insn_riscv128; 826 break; 827 default: 828 g_assert_not_reached(); 829 } 830 } 831 832 static void riscv_cpu_validate_v(CPURISCVState *env, RISCVCPUConfig *cfg, 833 Error **errp) 834 { 835 int vext_version = VEXT_VERSION_1_00_0; 836 837 if (!is_power_of_2(cfg->vlen)) { 838 error_setg(errp, "Vector extension VLEN must be power of 2"); 839 return; 840 } 841 if (cfg->vlen > RV_VLEN_MAX || cfg->vlen < 128) { 842 error_setg(errp, 843 "Vector extension implementation only supports VLEN " 844 "in the range [128, %d]", RV_VLEN_MAX); 845 return; 846 } 847 if (!is_power_of_2(cfg->elen)) { 848 error_setg(errp, "Vector extension ELEN must be power of 2"); 849 return; 850 } 851 if (cfg->elen > 64 || cfg->elen < 8) { 852 error_setg(errp, 853 "Vector extension implementation only supports ELEN " 854 "in the range [8, 64]"); 855 return; 856 } 857 if (cfg->vext_spec) { 858 if (!g_strcmp0(cfg->vext_spec, "v1.0")) { 859 vext_version = VEXT_VERSION_1_00_0; 860 } else { 861 error_setg(errp, "Unsupported vector spec version '%s'", 862 cfg->vext_spec); 863 return; 864 } 865 } else { 866 qemu_log("vector version is not specified, " 867 "use the default value v1.0\n"); 868 } 869 env->vext_ver = vext_version; 870 } 871 872 /* 873 * Check consistency between chosen extensions while setting 874 * cpu->cfg accordingly. 875 */ 876 static void riscv_cpu_validate_set_extensions(RISCVCPU *cpu, Error **errp) 877 { 878 CPURISCVState *env = &cpu->env; 879 Error *local_err = NULL; 880 881 /* Do some ISA extension error checking */ 882 if (riscv_has_ext(env, RVG) && 883 !(riscv_has_ext(env, RVI) && riscv_has_ext(env, RVM) && 884 riscv_has_ext(env, RVA) && riscv_has_ext(env, RVF) && 885 riscv_has_ext(env, RVD) && 886 cpu->cfg.ext_icsr && cpu->cfg.ext_ifencei)) { 887 warn_report("Setting G will also set IMAFD_Zicsr_Zifencei"); 888 cpu->cfg.ext_icsr = true; 889 cpu->cfg.ext_ifencei = true; 890 891 env->misa_ext |= RVI | RVM | RVA | RVF | RVD; 892 env->misa_ext_mask = env->misa_ext; 893 } 894 895 if (riscv_has_ext(env, RVI) && riscv_has_ext(env, RVE)) { 896 error_setg(errp, 897 "I and E extensions are incompatible"); 898 return; 899 } 900 901 if (!riscv_has_ext(env, RVI) && !riscv_has_ext(env, RVE)) { 902 error_setg(errp, 903 "Either I or E extension must be set"); 904 return; 905 } 906 907 if (riscv_has_ext(env, RVS) && !riscv_has_ext(env, RVU)) { 908 error_setg(errp, 909 "Setting S extension without U extension is illegal"); 910 return; 911 } 912 913 if (riscv_has_ext(env, RVH) && !riscv_has_ext(env, RVI)) { 914 error_setg(errp, 915 "H depends on an I base integer ISA with 32 x registers"); 916 return; 917 } 918 919 if (riscv_has_ext(env, RVH) && !riscv_has_ext(env, RVS)) { 920 error_setg(errp, "H extension implicitly requires S-mode"); 921 return; 922 } 923 924 if (riscv_has_ext(env, RVF) && !cpu->cfg.ext_icsr) { 925 error_setg(errp, "F extension requires Zicsr"); 926 return; 927 } 928 929 if ((cpu->cfg.ext_zawrs) && !riscv_has_ext(env, RVA)) { 930 error_setg(errp, "Zawrs extension requires A extension"); 931 return; 932 } 933 934 if (cpu->cfg.ext_zfh) { 935 cpu->cfg.ext_zfhmin = true; 936 } 937 938 if (cpu->cfg.ext_zfhmin && !riscv_has_ext(env, RVF)) { 939 error_setg(errp, "Zfh/Zfhmin extensions require F extension"); 940 return; 941 } 942 943 if (riscv_has_ext(env, RVD) && !riscv_has_ext(env, RVF)) { 944 error_setg(errp, "D extension requires F extension"); 945 return; 946 } 947 948 if (riscv_has_ext(env, RVV)) { 949 riscv_cpu_validate_v(env, &cpu->cfg, &local_err); 950 if (local_err != NULL) { 951 error_propagate(errp, local_err); 952 return; 953 } 954 955 /* The V vector extension depends on the Zve64d extension */ 956 cpu->cfg.ext_zve64d = true; 957 } 958 959 /* The Zve64d extension depends on the Zve64f extension */ 960 if (cpu->cfg.ext_zve64d) { 961 cpu->cfg.ext_zve64f = true; 962 } 963 964 /* The Zve64f extension depends on the Zve32f extension */ 965 if (cpu->cfg.ext_zve64f) { 966 cpu->cfg.ext_zve32f = true; 967 } 968 969 if (cpu->cfg.ext_zve64d && !riscv_has_ext(env, RVD)) { 970 error_setg(errp, "Zve64d/V extensions require D extension"); 971 return; 972 } 973 974 if (cpu->cfg.ext_zve32f && !riscv_has_ext(env, RVF)) { 975 error_setg(errp, "Zve32f/Zve64f extensions require F extension"); 976 return; 977 } 978 979 if (cpu->cfg.ext_zvfh) { 980 cpu->cfg.ext_zvfhmin = true; 981 } 982 983 if (cpu->cfg.ext_zvfhmin && !cpu->cfg.ext_zve32f) { 984 error_setg(errp, "Zvfh/Zvfhmin extensions require Zve32f extension"); 985 return; 986 } 987 988 if (cpu->cfg.ext_zvfh && !cpu->cfg.ext_zfhmin) { 989 error_setg(errp, "Zvfh extensions requires Zfhmin extension"); 990 return; 991 } 992 993 /* Set the ISA extensions, checks should have happened above */ 994 if (cpu->cfg.ext_zhinx) { 995 cpu->cfg.ext_zhinxmin = true; 996 } 997 998 if ((cpu->cfg.ext_zdinx || cpu->cfg.ext_zhinxmin) && !cpu->cfg.ext_zfinx) { 999 error_setg(errp, "Zdinx/Zhinx/Zhinxmin extensions require Zfinx"); 1000 return; 1001 } 1002 1003 if (cpu->cfg.ext_zfinx) { 1004 if (!cpu->cfg.ext_icsr) { 1005 error_setg(errp, "Zfinx extension requires Zicsr"); 1006 return; 1007 } 1008 if (riscv_has_ext(env, RVF)) { 1009 error_setg(errp, 1010 "Zfinx cannot be supported together with F extension"); 1011 return; 1012 } 1013 } 1014 1015 if (cpu->cfg.ext_zce) { 1016 cpu->cfg.ext_zca = true; 1017 cpu->cfg.ext_zcb = true; 1018 cpu->cfg.ext_zcmp = true; 1019 cpu->cfg.ext_zcmt = true; 1020 if (riscv_has_ext(env, RVF) && env->misa_mxl_max == MXL_RV32) { 1021 cpu->cfg.ext_zcf = true; 1022 } 1023 } 1024 1025 if (riscv_has_ext(env, RVC)) { 1026 cpu->cfg.ext_zca = true; 1027 if (riscv_has_ext(env, RVF) && env->misa_mxl_max == MXL_RV32) { 1028 cpu->cfg.ext_zcf = true; 1029 } 1030 if (riscv_has_ext(env, RVD)) { 1031 cpu->cfg.ext_zcd = true; 1032 } 1033 } 1034 1035 if (env->misa_mxl_max != MXL_RV32 && cpu->cfg.ext_zcf) { 1036 error_setg(errp, "Zcf extension is only relevant to RV32"); 1037 return; 1038 } 1039 1040 if (!riscv_has_ext(env, RVF) && cpu->cfg.ext_zcf) { 1041 error_setg(errp, "Zcf extension requires F extension"); 1042 return; 1043 } 1044 1045 if (!riscv_has_ext(env, RVD) && cpu->cfg.ext_zcd) { 1046 error_setg(errp, "Zcd extension requires D extension"); 1047 return; 1048 } 1049 1050 if ((cpu->cfg.ext_zcf || cpu->cfg.ext_zcd || cpu->cfg.ext_zcb || 1051 cpu->cfg.ext_zcmp || cpu->cfg.ext_zcmt) && !cpu->cfg.ext_zca) { 1052 error_setg(errp, "Zcf/Zcd/Zcb/Zcmp/Zcmt extensions require Zca " 1053 "extension"); 1054 return; 1055 } 1056 1057 if (cpu->cfg.ext_zcd && (cpu->cfg.ext_zcmp || cpu->cfg.ext_zcmt)) { 1058 error_setg(errp, "Zcmp/Zcmt extensions are incompatible with " 1059 "Zcd extension"); 1060 return; 1061 } 1062 1063 if (cpu->cfg.ext_zcmt && !cpu->cfg.ext_icsr) { 1064 error_setg(errp, "Zcmt extension requires Zicsr extension"); 1065 return; 1066 } 1067 1068 if (cpu->cfg.ext_zk) { 1069 cpu->cfg.ext_zkn = true; 1070 cpu->cfg.ext_zkr = true; 1071 cpu->cfg.ext_zkt = true; 1072 } 1073 1074 if (cpu->cfg.ext_zkn) { 1075 cpu->cfg.ext_zbkb = true; 1076 cpu->cfg.ext_zbkc = true; 1077 cpu->cfg.ext_zbkx = true; 1078 cpu->cfg.ext_zkne = true; 1079 cpu->cfg.ext_zknd = true; 1080 cpu->cfg.ext_zknh = true; 1081 } 1082 1083 if (cpu->cfg.ext_zks) { 1084 cpu->cfg.ext_zbkb = true; 1085 cpu->cfg.ext_zbkc = true; 1086 cpu->cfg.ext_zbkx = true; 1087 cpu->cfg.ext_zksed = true; 1088 cpu->cfg.ext_zksh = true; 1089 } 1090 } 1091 1092 #ifndef CONFIG_USER_ONLY 1093 static void riscv_cpu_satp_mode_finalize(RISCVCPU *cpu, Error **errp) 1094 { 1095 bool rv32 = riscv_cpu_mxl(&cpu->env) == MXL_RV32; 1096 uint8_t satp_mode_map_max; 1097 uint8_t satp_mode_supported_max = 1098 satp_mode_max_from_map(cpu->cfg.satp_mode.supported); 1099 1100 if (cpu->cfg.satp_mode.map == 0) { 1101 if (cpu->cfg.satp_mode.init == 0) { 1102 /* If unset by the user, we fallback to the default satp mode. */ 1103 set_satp_mode_default_map(cpu); 1104 } else { 1105 /* 1106 * Find the lowest level that was disabled and then enable the 1107 * first valid level below which can be found in 1108 * valid_vm_1_10_32/64. 1109 */ 1110 for (int i = 1; i < 16; ++i) { 1111 if ((cpu->cfg.satp_mode.init & (1 << i)) && 1112 (cpu->cfg.satp_mode.supported & (1 << i))) { 1113 for (int j = i - 1; j >= 0; --j) { 1114 if (cpu->cfg.satp_mode.supported & (1 << j)) { 1115 cpu->cfg.satp_mode.map |= (1 << j); 1116 break; 1117 } 1118 } 1119 break; 1120 } 1121 } 1122 } 1123 } 1124 1125 satp_mode_map_max = satp_mode_max_from_map(cpu->cfg.satp_mode.map); 1126 1127 /* Make sure the user asked for a supported configuration (HW and qemu) */ 1128 if (satp_mode_map_max > satp_mode_supported_max) { 1129 error_setg(errp, "satp_mode %s is higher than hw max capability %s", 1130 satp_mode_str(satp_mode_map_max, rv32), 1131 satp_mode_str(satp_mode_supported_max, rv32)); 1132 return; 1133 } 1134 1135 /* 1136 * Make sure the user did not ask for an invalid configuration as per 1137 * the specification. 1138 */ 1139 if (!rv32) { 1140 for (int i = satp_mode_map_max - 1; i >= 0; --i) { 1141 if (!(cpu->cfg.satp_mode.map & (1 << i)) && 1142 (cpu->cfg.satp_mode.init & (1 << i)) && 1143 (cpu->cfg.satp_mode.supported & (1 << i))) { 1144 error_setg(errp, "cannot disable %s satp mode if %s " 1145 "is enabled", satp_mode_str(i, false), 1146 satp_mode_str(satp_mode_map_max, false)); 1147 return; 1148 } 1149 } 1150 } 1151 1152 /* Finally expand the map so that all valid modes are set */ 1153 for (int i = satp_mode_map_max - 1; i >= 0; --i) { 1154 if (cpu->cfg.satp_mode.supported & (1 << i)) { 1155 cpu->cfg.satp_mode.map |= (1 << i); 1156 } 1157 } 1158 } 1159 #endif 1160 1161 static void riscv_cpu_finalize_features(RISCVCPU *cpu, Error **errp) 1162 { 1163 #ifndef CONFIG_USER_ONLY 1164 Error *local_err = NULL; 1165 1166 riscv_cpu_satp_mode_finalize(cpu, &local_err); 1167 if (local_err != NULL) { 1168 error_propagate(errp, local_err); 1169 return; 1170 } 1171 #endif 1172 } 1173 1174 static void riscv_cpu_validate_misa_priv(CPURISCVState *env, Error **errp) 1175 { 1176 if (riscv_has_ext(env, RVH) && env->priv_ver < PRIV_VERSION_1_12_0) { 1177 error_setg(errp, "H extension requires priv spec 1.12.0"); 1178 return; 1179 } 1180 } 1181 1182 static void riscv_cpu_realize(DeviceState *dev, Error **errp) 1183 { 1184 CPUState *cs = CPU(dev); 1185 RISCVCPU *cpu = RISCV_CPU(dev); 1186 CPURISCVState *env = &cpu->env; 1187 RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(dev); 1188 CPUClass *cc = CPU_CLASS(mcc); 1189 int i, priv_version = -1; 1190 Error *local_err = NULL; 1191 1192 cpu_exec_realizefn(cs, &local_err); 1193 if (local_err != NULL) { 1194 error_propagate(errp, local_err); 1195 return; 1196 } 1197 1198 if (cpu->cfg.priv_spec) { 1199 if (!g_strcmp0(cpu->cfg.priv_spec, "v1.12.0")) { 1200 priv_version = PRIV_VERSION_1_12_0; 1201 } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.11.0")) { 1202 priv_version = PRIV_VERSION_1_11_0; 1203 } else if (!g_strcmp0(cpu->cfg.priv_spec, "v1.10.0")) { 1204 priv_version = PRIV_VERSION_1_10_0; 1205 } else { 1206 error_setg(errp, 1207 "Unsupported privilege spec version '%s'", 1208 cpu->cfg.priv_spec); 1209 return; 1210 } 1211 } 1212 1213 if (priv_version >= PRIV_VERSION_1_10_0) { 1214 set_priv_version(env, priv_version); 1215 } 1216 1217 riscv_cpu_validate_misa_priv(env, &local_err); 1218 if (local_err != NULL) { 1219 error_propagate(errp, local_err); 1220 return; 1221 } 1222 1223 /* Force disable extensions if priv spec version does not match */ 1224 for (i = 0; i < ARRAY_SIZE(isa_edata_arr); i++) { 1225 if (isa_ext_is_enabled(cpu, &isa_edata_arr[i]) && 1226 (env->priv_ver < isa_edata_arr[i].min_version)) { 1227 isa_ext_update_enabled(cpu, &isa_edata_arr[i], false); 1228 #ifndef CONFIG_USER_ONLY 1229 warn_report("disabling %s extension for hart 0x" TARGET_FMT_lx 1230 " because privilege spec version does not match", 1231 isa_edata_arr[i].name, env->mhartid); 1232 #else 1233 warn_report("disabling %s extension because " 1234 "privilege spec version does not match", 1235 isa_edata_arr[i].name); 1236 #endif 1237 } 1238 } 1239 1240 if (cpu->cfg.epmp && !cpu->cfg.pmp) { 1241 /* 1242 * Enhanced PMP should only be available 1243 * on harts with PMP support 1244 */ 1245 error_setg(errp, "Invalid configuration: EPMP requires PMP support"); 1246 return; 1247 } 1248 1249 1250 #ifndef CONFIG_USER_ONLY 1251 if (cpu->cfg.ext_sstc) { 1252 riscv_timer_init(cpu); 1253 } 1254 #endif /* CONFIG_USER_ONLY */ 1255 1256 /* Validate that MISA_MXL is set properly. */ 1257 switch (env->misa_mxl_max) { 1258 #ifdef TARGET_RISCV64 1259 case MXL_RV64: 1260 case MXL_RV128: 1261 cc->gdb_core_xml_file = "riscv-64bit-cpu.xml"; 1262 break; 1263 #endif 1264 case MXL_RV32: 1265 cc->gdb_core_xml_file = "riscv-32bit-cpu.xml"; 1266 break; 1267 default: 1268 g_assert_not_reached(); 1269 } 1270 assert(env->misa_mxl_max == env->misa_mxl); 1271 1272 riscv_cpu_validate_set_extensions(cpu, &local_err); 1273 if (local_err != NULL) { 1274 error_propagate(errp, local_err); 1275 return; 1276 } 1277 1278 #ifndef CONFIG_USER_ONLY 1279 if (cpu->cfg.pmu_num) { 1280 if (!riscv_pmu_init(cpu, cpu->cfg.pmu_num) && cpu->cfg.ext_sscofpmf) { 1281 cpu->pmu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, 1282 riscv_pmu_timer_cb, cpu); 1283 } 1284 } 1285 #endif 1286 1287 riscv_cpu_finalize_features(cpu, &local_err); 1288 if (local_err != NULL) { 1289 error_propagate(errp, local_err); 1290 return; 1291 } 1292 1293 riscv_cpu_register_gdb_regs_for_features(cs); 1294 1295 qemu_init_vcpu(cs); 1296 cpu_reset(cs); 1297 1298 mcc->parent_realize(dev, errp); 1299 } 1300 1301 #ifndef CONFIG_USER_ONLY 1302 static void cpu_riscv_get_satp(Object *obj, Visitor *v, const char *name, 1303 void *opaque, Error **errp) 1304 { 1305 RISCVSATPMap *satp_map = opaque; 1306 uint8_t satp = satp_mode_from_str(name); 1307 bool value; 1308 1309 value = satp_map->map & (1 << satp); 1310 1311 visit_type_bool(v, name, &value, errp); 1312 } 1313 1314 static void cpu_riscv_set_satp(Object *obj, Visitor *v, const char *name, 1315 void *opaque, Error **errp) 1316 { 1317 RISCVSATPMap *satp_map = opaque; 1318 uint8_t satp = satp_mode_from_str(name); 1319 bool value; 1320 1321 if (!visit_type_bool(v, name, &value, errp)) { 1322 return; 1323 } 1324 1325 satp_map->map = deposit32(satp_map->map, satp, 1, value); 1326 satp_map->init |= 1 << satp; 1327 } 1328 1329 static void riscv_add_satp_mode_properties(Object *obj) 1330 { 1331 RISCVCPU *cpu = RISCV_CPU(obj); 1332 1333 if (cpu->env.misa_mxl == MXL_RV32) { 1334 object_property_add(obj, "sv32", "bool", cpu_riscv_get_satp, 1335 cpu_riscv_set_satp, NULL, &cpu->cfg.satp_mode); 1336 } else { 1337 object_property_add(obj, "sv39", "bool", cpu_riscv_get_satp, 1338 cpu_riscv_set_satp, NULL, &cpu->cfg.satp_mode); 1339 object_property_add(obj, "sv48", "bool", cpu_riscv_get_satp, 1340 cpu_riscv_set_satp, NULL, &cpu->cfg.satp_mode); 1341 object_property_add(obj, "sv57", "bool", cpu_riscv_get_satp, 1342 cpu_riscv_set_satp, NULL, &cpu->cfg.satp_mode); 1343 object_property_add(obj, "sv64", "bool", cpu_riscv_get_satp, 1344 cpu_riscv_set_satp, NULL, &cpu->cfg.satp_mode); 1345 } 1346 } 1347 1348 static void riscv_cpu_set_irq(void *opaque, int irq, int level) 1349 { 1350 RISCVCPU *cpu = RISCV_CPU(opaque); 1351 CPURISCVState *env = &cpu->env; 1352 1353 if (irq < IRQ_LOCAL_MAX) { 1354 switch (irq) { 1355 case IRQ_U_SOFT: 1356 case IRQ_S_SOFT: 1357 case IRQ_VS_SOFT: 1358 case IRQ_M_SOFT: 1359 case IRQ_U_TIMER: 1360 case IRQ_S_TIMER: 1361 case IRQ_VS_TIMER: 1362 case IRQ_M_TIMER: 1363 case IRQ_U_EXT: 1364 case IRQ_VS_EXT: 1365 case IRQ_M_EXT: 1366 if (kvm_enabled()) { 1367 kvm_riscv_set_irq(cpu, irq, level); 1368 } else { 1369 riscv_cpu_update_mip(env, 1 << irq, BOOL_TO_MASK(level)); 1370 } 1371 break; 1372 case IRQ_S_EXT: 1373 if (kvm_enabled()) { 1374 kvm_riscv_set_irq(cpu, irq, level); 1375 } else { 1376 env->external_seip = level; 1377 riscv_cpu_update_mip(env, 1 << irq, 1378 BOOL_TO_MASK(level | env->software_seip)); 1379 } 1380 break; 1381 default: 1382 g_assert_not_reached(); 1383 } 1384 } else if (irq < (IRQ_LOCAL_MAX + IRQ_LOCAL_GUEST_MAX)) { 1385 /* Require H-extension for handling guest local interrupts */ 1386 if (!riscv_has_ext(env, RVH)) { 1387 g_assert_not_reached(); 1388 } 1389 1390 /* Compute bit position in HGEIP CSR */ 1391 irq = irq - IRQ_LOCAL_MAX + 1; 1392 if (env->geilen < irq) { 1393 g_assert_not_reached(); 1394 } 1395 1396 /* Update HGEIP CSR */ 1397 env->hgeip &= ~((target_ulong)1 << irq); 1398 if (level) { 1399 env->hgeip |= (target_ulong)1 << irq; 1400 } 1401 1402 /* Update mip.SGEIP bit */ 1403 riscv_cpu_update_mip(env, MIP_SGEIP, 1404 BOOL_TO_MASK(!!(env->hgeie & env->hgeip))); 1405 } else { 1406 g_assert_not_reached(); 1407 } 1408 } 1409 #endif /* CONFIG_USER_ONLY */ 1410 1411 static void riscv_cpu_init(Object *obj) 1412 { 1413 RISCVCPU *cpu = RISCV_CPU(obj); 1414 1415 cpu->cfg.ext_ifencei = true; 1416 cpu->cfg.ext_icsr = true; 1417 cpu->cfg.mmu = true; 1418 cpu->cfg.pmp = true; 1419 1420 cpu_set_cpustate_pointers(cpu); 1421 1422 #ifndef CONFIG_USER_ONLY 1423 qdev_init_gpio_in(DEVICE(cpu), riscv_cpu_set_irq, 1424 IRQ_LOCAL_MAX + IRQ_LOCAL_GUEST_MAX); 1425 #endif /* CONFIG_USER_ONLY */ 1426 } 1427 1428 typedef struct RISCVCPUMisaExtConfig { 1429 const char *name; 1430 const char *description; 1431 target_ulong misa_bit; 1432 bool enabled; 1433 } RISCVCPUMisaExtConfig; 1434 1435 static void cpu_set_misa_ext_cfg(Object *obj, Visitor *v, const char *name, 1436 void *opaque, Error **errp) 1437 { 1438 const RISCVCPUMisaExtConfig *misa_ext_cfg = opaque; 1439 target_ulong misa_bit = misa_ext_cfg->misa_bit; 1440 RISCVCPU *cpu = RISCV_CPU(obj); 1441 CPURISCVState *env = &cpu->env; 1442 bool value; 1443 1444 if (!visit_type_bool(v, name, &value, errp)) { 1445 return; 1446 } 1447 1448 if (value) { 1449 env->misa_ext |= misa_bit; 1450 env->misa_ext_mask |= misa_bit; 1451 } else { 1452 env->misa_ext &= ~misa_bit; 1453 env->misa_ext_mask &= ~misa_bit; 1454 } 1455 } 1456 1457 static void cpu_get_misa_ext_cfg(Object *obj, Visitor *v, const char *name, 1458 void *opaque, Error **errp) 1459 { 1460 const RISCVCPUMisaExtConfig *misa_ext_cfg = opaque; 1461 target_ulong misa_bit = misa_ext_cfg->misa_bit; 1462 RISCVCPU *cpu = RISCV_CPU(obj); 1463 CPURISCVState *env = &cpu->env; 1464 bool value; 1465 1466 value = env->misa_ext & misa_bit; 1467 1468 visit_type_bool(v, name, &value, errp); 1469 } 1470 1471 static const RISCVCPUMisaExtConfig misa_ext_cfgs[] = { 1472 {.name = "a", .description = "Atomic instructions", 1473 .misa_bit = RVA, .enabled = true}, 1474 {.name = "c", .description = "Compressed instructions", 1475 .misa_bit = RVC, .enabled = true}, 1476 {.name = "d", .description = "Double-precision float point", 1477 .misa_bit = RVD, .enabled = true}, 1478 {.name = "f", .description = "Single-precision float point", 1479 .misa_bit = RVF, .enabled = true}, 1480 {.name = "i", .description = "Base integer instruction set", 1481 .misa_bit = RVI, .enabled = true}, 1482 {.name = "e", .description = "Base integer instruction set (embedded)", 1483 .misa_bit = RVE, .enabled = false}, 1484 {.name = "m", .description = "Integer multiplication and division", 1485 .misa_bit = RVM, .enabled = true}, 1486 {.name = "s", .description = "Supervisor-level instructions", 1487 .misa_bit = RVS, .enabled = true}, 1488 {.name = "u", .description = "User-level instructions", 1489 .misa_bit = RVU, .enabled = true}, 1490 {.name = "h", .description = "Hypervisor", 1491 .misa_bit = RVH, .enabled = true}, 1492 {.name = "x-j", .description = "Dynamic translated languages", 1493 .misa_bit = RVJ, .enabled = false}, 1494 {.name = "v", .description = "Vector operations", 1495 .misa_bit = RVV, .enabled = false}, 1496 {.name = "g", .description = "General purpose (IMAFD_Zicsr_Zifencei)", 1497 .misa_bit = RVG, .enabled = false}, 1498 }; 1499 1500 static void riscv_cpu_add_misa_properties(Object *cpu_obj) 1501 { 1502 int i; 1503 1504 for (i = 0; i < ARRAY_SIZE(misa_ext_cfgs); i++) { 1505 const RISCVCPUMisaExtConfig *misa_cfg = &misa_ext_cfgs[i]; 1506 1507 object_property_add(cpu_obj, misa_cfg->name, "bool", 1508 cpu_get_misa_ext_cfg, 1509 cpu_set_misa_ext_cfg, 1510 NULL, (void *)misa_cfg); 1511 object_property_set_description(cpu_obj, misa_cfg->name, 1512 misa_cfg->description); 1513 object_property_set_bool(cpu_obj, misa_cfg->name, 1514 misa_cfg->enabled, NULL); 1515 } 1516 } 1517 1518 static Property riscv_cpu_extensions[] = { 1519 /* Defaults for standard extensions */ 1520 DEFINE_PROP_UINT8("pmu-num", RISCVCPU, cfg.pmu_num, 16), 1521 DEFINE_PROP_BOOL("sscofpmf", RISCVCPU, cfg.ext_sscofpmf, false), 1522 DEFINE_PROP_BOOL("Zifencei", RISCVCPU, cfg.ext_ifencei, true), 1523 DEFINE_PROP_BOOL("Zicsr", RISCVCPU, cfg.ext_icsr, true), 1524 DEFINE_PROP_BOOL("Zihintpause", RISCVCPU, cfg.ext_zihintpause, true), 1525 DEFINE_PROP_BOOL("Zawrs", RISCVCPU, cfg.ext_zawrs, true), 1526 DEFINE_PROP_BOOL("Zfh", RISCVCPU, cfg.ext_zfh, false), 1527 DEFINE_PROP_BOOL("Zfhmin", RISCVCPU, cfg.ext_zfhmin, false), 1528 DEFINE_PROP_BOOL("Zve32f", RISCVCPU, cfg.ext_zve32f, false), 1529 DEFINE_PROP_BOOL("Zve64f", RISCVCPU, cfg.ext_zve64f, false), 1530 DEFINE_PROP_BOOL("Zve64d", RISCVCPU, cfg.ext_zve64d, false), 1531 DEFINE_PROP_BOOL("mmu", RISCVCPU, cfg.mmu, true), 1532 DEFINE_PROP_BOOL("pmp", RISCVCPU, cfg.pmp, true), 1533 DEFINE_PROP_BOOL("sstc", RISCVCPU, cfg.ext_sstc, true), 1534 1535 DEFINE_PROP_STRING("priv_spec", RISCVCPU, cfg.priv_spec), 1536 DEFINE_PROP_STRING("vext_spec", RISCVCPU, cfg.vext_spec), 1537 DEFINE_PROP_UINT16("vlen", RISCVCPU, cfg.vlen, 128), 1538 DEFINE_PROP_UINT16("elen", RISCVCPU, cfg.elen, 64), 1539 1540 DEFINE_PROP_BOOL("svadu", RISCVCPU, cfg.ext_svadu, true), 1541 1542 DEFINE_PROP_BOOL("svinval", RISCVCPU, cfg.ext_svinval, false), 1543 DEFINE_PROP_BOOL("svnapot", RISCVCPU, cfg.ext_svnapot, false), 1544 DEFINE_PROP_BOOL("svpbmt", RISCVCPU, cfg.ext_svpbmt, false), 1545 1546 DEFINE_PROP_BOOL("zba", RISCVCPU, cfg.ext_zba, true), 1547 DEFINE_PROP_BOOL("zbb", RISCVCPU, cfg.ext_zbb, true), 1548 DEFINE_PROP_BOOL("zbc", RISCVCPU, cfg.ext_zbc, true), 1549 DEFINE_PROP_BOOL("zbkb", RISCVCPU, cfg.ext_zbkb, false), 1550 DEFINE_PROP_BOOL("zbkc", RISCVCPU, cfg.ext_zbkc, false), 1551 DEFINE_PROP_BOOL("zbkx", RISCVCPU, cfg.ext_zbkx, false), 1552 DEFINE_PROP_BOOL("zbs", RISCVCPU, cfg.ext_zbs, true), 1553 DEFINE_PROP_BOOL("zk", RISCVCPU, cfg.ext_zk, false), 1554 DEFINE_PROP_BOOL("zkn", RISCVCPU, cfg.ext_zkn, false), 1555 DEFINE_PROP_BOOL("zknd", RISCVCPU, cfg.ext_zknd, false), 1556 DEFINE_PROP_BOOL("zkne", RISCVCPU, cfg.ext_zkne, false), 1557 DEFINE_PROP_BOOL("zknh", RISCVCPU, cfg.ext_zknh, false), 1558 DEFINE_PROP_BOOL("zkr", RISCVCPU, cfg.ext_zkr, false), 1559 DEFINE_PROP_BOOL("zks", RISCVCPU, cfg.ext_zks, false), 1560 DEFINE_PROP_BOOL("zksed", RISCVCPU, cfg.ext_zksed, false), 1561 DEFINE_PROP_BOOL("zksh", RISCVCPU, cfg.ext_zksh, false), 1562 DEFINE_PROP_BOOL("zkt", RISCVCPU, cfg.ext_zkt, false), 1563 1564 DEFINE_PROP_BOOL("zdinx", RISCVCPU, cfg.ext_zdinx, false), 1565 DEFINE_PROP_BOOL("zfinx", RISCVCPU, cfg.ext_zfinx, false), 1566 DEFINE_PROP_BOOL("zhinx", RISCVCPU, cfg.ext_zhinx, false), 1567 DEFINE_PROP_BOOL("zhinxmin", RISCVCPU, cfg.ext_zhinxmin, false), 1568 1569 DEFINE_PROP_BOOL("zicbom", RISCVCPU, cfg.ext_icbom, true), 1570 DEFINE_PROP_UINT16("cbom_blocksize", RISCVCPU, cfg.cbom_blocksize, 64), 1571 DEFINE_PROP_BOOL("zicboz", RISCVCPU, cfg.ext_icboz, true), 1572 DEFINE_PROP_UINT16("cboz_blocksize", RISCVCPU, cfg.cboz_blocksize, 64), 1573 1574 DEFINE_PROP_BOOL("zmmul", RISCVCPU, cfg.ext_zmmul, false), 1575 1576 DEFINE_PROP_BOOL("zca", RISCVCPU, cfg.ext_zca, false), 1577 DEFINE_PROP_BOOL("zcb", RISCVCPU, cfg.ext_zcb, false), 1578 DEFINE_PROP_BOOL("zcd", RISCVCPU, cfg.ext_zcd, false), 1579 DEFINE_PROP_BOOL("zce", RISCVCPU, cfg.ext_zce, false), 1580 DEFINE_PROP_BOOL("zcf", RISCVCPU, cfg.ext_zcf, false), 1581 DEFINE_PROP_BOOL("zcmp", RISCVCPU, cfg.ext_zcmp, false), 1582 DEFINE_PROP_BOOL("zcmt", RISCVCPU, cfg.ext_zcmt, false), 1583 1584 /* Vendor-specific custom extensions */ 1585 DEFINE_PROP_BOOL("xtheadba", RISCVCPU, cfg.ext_xtheadba, false), 1586 DEFINE_PROP_BOOL("xtheadbb", RISCVCPU, cfg.ext_xtheadbb, false), 1587 DEFINE_PROP_BOOL("xtheadbs", RISCVCPU, cfg.ext_xtheadbs, false), 1588 DEFINE_PROP_BOOL("xtheadcmo", RISCVCPU, cfg.ext_xtheadcmo, false), 1589 DEFINE_PROP_BOOL("xtheadcondmov", RISCVCPU, cfg.ext_xtheadcondmov, false), 1590 DEFINE_PROP_BOOL("xtheadfmemidx", RISCVCPU, cfg.ext_xtheadfmemidx, false), 1591 DEFINE_PROP_BOOL("xtheadfmv", RISCVCPU, cfg.ext_xtheadfmv, false), 1592 DEFINE_PROP_BOOL("xtheadmac", RISCVCPU, cfg.ext_xtheadmac, false), 1593 DEFINE_PROP_BOOL("xtheadmemidx", RISCVCPU, cfg.ext_xtheadmemidx, false), 1594 DEFINE_PROP_BOOL("xtheadmempair", RISCVCPU, cfg.ext_xtheadmempair, false), 1595 DEFINE_PROP_BOOL("xtheadsync", RISCVCPU, cfg.ext_xtheadsync, false), 1596 DEFINE_PROP_BOOL("xventanacondops", RISCVCPU, cfg.ext_XVentanaCondOps, false), 1597 1598 /* These are experimental so mark with 'x-' */ 1599 DEFINE_PROP_BOOL("x-zicond", RISCVCPU, cfg.ext_zicond, false), 1600 1601 /* ePMP 0.9.3 */ 1602 DEFINE_PROP_BOOL("x-epmp", RISCVCPU, cfg.epmp, false), 1603 DEFINE_PROP_BOOL("x-smaia", RISCVCPU, cfg.ext_smaia, false), 1604 DEFINE_PROP_BOOL("x-ssaia", RISCVCPU, cfg.ext_ssaia, false), 1605 1606 DEFINE_PROP_BOOL("x-zvfh", RISCVCPU, cfg.ext_zvfh, false), 1607 DEFINE_PROP_BOOL("x-zvfhmin", RISCVCPU, cfg.ext_zvfhmin, false), 1608 1609 DEFINE_PROP_END_OF_LIST(), 1610 }; 1611 1612 /* 1613 * Add CPU properties with user-facing flags. 1614 * 1615 * This will overwrite existing env->misa_ext values with the 1616 * defaults set via riscv_cpu_add_misa_properties(). 1617 */ 1618 static void riscv_cpu_add_user_properties(Object *obj) 1619 { 1620 Property *prop; 1621 DeviceState *dev = DEVICE(obj); 1622 1623 riscv_cpu_add_misa_properties(obj); 1624 1625 for (prop = riscv_cpu_extensions; prop && prop->name; prop++) { 1626 qdev_property_add_static(dev, prop); 1627 } 1628 1629 #ifndef CONFIG_USER_ONLY 1630 riscv_add_satp_mode_properties(obj); 1631 #endif 1632 } 1633 1634 static Property riscv_cpu_properties[] = { 1635 DEFINE_PROP_BOOL("debug", RISCVCPU, cfg.debug, true), 1636 1637 DEFINE_PROP_UINT32("mvendorid", RISCVCPU, cfg.mvendorid, 0), 1638 DEFINE_PROP_UINT64("marchid", RISCVCPU, cfg.marchid, RISCV_CPU_MARCHID), 1639 DEFINE_PROP_UINT64("mimpid", RISCVCPU, cfg.mimpid, RISCV_CPU_MIMPID), 1640 1641 #ifndef CONFIG_USER_ONLY 1642 DEFINE_PROP_UINT64("resetvec", RISCVCPU, env.resetvec, DEFAULT_RSTVEC), 1643 #endif 1644 1645 DEFINE_PROP_BOOL("short-isa-string", RISCVCPU, cfg.short_isa_string, false), 1646 1647 DEFINE_PROP_BOOL("rvv_ta_all_1s", RISCVCPU, cfg.rvv_ta_all_1s, false), 1648 DEFINE_PROP_BOOL("rvv_ma_all_1s", RISCVCPU, cfg.rvv_ma_all_1s, false), 1649 1650 /* 1651 * write_misa() is marked as experimental for now so mark 1652 * it with -x and default to 'false'. 1653 */ 1654 DEFINE_PROP_BOOL("x-misa-w", RISCVCPU, cfg.misa_w, false), 1655 DEFINE_PROP_END_OF_LIST(), 1656 }; 1657 1658 static gchar *riscv_gdb_arch_name(CPUState *cs) 1659 { 1660 RISCVCPU *cpu = RISCV_CPU(cs); 1661 CPURISCVState *env = &cpu->env; 1662 1663 switch (riscv_cpu_mxl(env)) { 1664 case MXL_RV32: 1665 return g_strdup("riscv:rv32"); 1666 case MXL_RV64: 1667 case MXL_RV128: 1668 return g_strdup("riscv:rv64"); 1669 default: 1670 g_assert_not_reached(); 1671 } 1672 } 1673 1674 static const char *riscv_gdb_get_dynamic_xml(CPUState *cs, const char *xmlname) 1675 { 1676 RISCVCPU *cpu = RISCV_CPU(cs); 1677 1678 if (strcmp(xmlname, "riscv-csr.xml") == 0) { 1679 return cpu->dyn_csr_xml; 1680 } else if (strcmp(xmlname, "riscv-vector.xml") == 0) { 1681 return cpu->dyn_vreg_xml; 1682 } 1683 1684 return NULL; 1685 } 1686 1687 #ifndef CONFIG_USER_ONLY 1688 static int64_t riscv_get_arch_id(CPUState *cs) 1689 { 1690 RISCVCPU *cpu = RISCV_CPU(cs); 1691 1692 return cpu->env.mhartid; 1693 } 1694 1695 #include "hw/core/sysemu-cpu-ops.h" 1696 1697 static const struct SysemuCPUOps riscv_sysemu_ops = { 1698 .get_phys_page_debug = riscv_cpu_get_phys_page_debug, 1699 .write_elf64_note = riscv_cpu_write_elf64_note, 1700 .write_elf32_note = riscv_cpu_write_elf32_note, 1701 .legacy_vmsd = &vmstate_riscv_cpu, 1702 }; 1703 #endif 1704 1705 #include "hw/core/tcg-cpu-ops.h" 1706 1707 static const struct TCGCPUOps riscv_tcg_ops = { 1708 .initialize = riscv_translate_init, 1709 .synchronize_from_tb = riscv_cpu_synchronize_from_tb, 1710 .restore_state_to_opc = riscv_restore_state_to_opc, 1711 1712 #ifndef CONFIG_USER_ONLY 1713 .tlb_fill = riscv_cpu_tlb_fill, 1714 .cpu_exec_interrupt = riscv_cpu_exec_interrupt, 1715 .do_interrupt = riscv_cpu_do_interrupt, 1716 .do_transaction_failed = riscv_cpu_do_transaction_failed, 1717 .do_unaligned_access = riscv_cpu_do_unaligned_access, 1718 .debug_excp_handler = riscv_cpu_debug_excp_handler, 1719 .debug_check_breakpoint = riscv_cpu_debug_check_breakpoint, 1720 .debug_check_watchpoint = riscv_cpu_debug_check_watchpoint, 1721 #endif /* !CONFIG_USER_ONLY */ 1722 }; 1723 1724 static void riscv_cpu_class_init(ObjectClass *c, void *data) 1725 { 1726 RISCVCPUClass *mcc = RISCV_CPU_CLASS(c); 1727 CPUClass *cc = CPU_CLASS(c); 1728 DeviceClass *dc = DEVICE_CLASS(c); 1729 ResettableClass *rc = RESETTABLE_CLASS(c); 1730 1731 device_class_set_parent_realize(dc, riscv_cpu_realize, 1732 &mcc->parent_realize); 1733 1734 resettable_class_set_parent_phases(rc, NULL, riscv_cpu_reset_hold, NULL, 1735 &mcc->parent_phases); 1736 1737 cc->class_by_name = riscv_cpu_class_by_name; 1738 cc->has_work = riscv_cpu_has_work; 1739 cc->dump_state = riscv_cpu_dump_state; 1740 cc->set_pc = riscv_cpu_set_pc; 1741 cc->get_pc = riscv_cpu_get_pc; 1742 cc->gdb_read_register = riscv_cpu_gdb_read_register; 1743 cc->gdb_write_register = riscv_cpu_gdb_write_register; 1744 cc->gdb_num_core_regs = 33; 1745 cc->gdb_stop_before_watchpoint = true; 1746 cc->disas_set_info = riscv_cpu_disas_set_info; 1747 #ifndef CONFIG_USER_ONLY 1748 cc->sysemu_ops = &riscv_sysemu_ops; 1749 cc->get_arch_id = riscv_get_arch_id; 1750 #endif 1751 cc->gdb_arch_name = riscv_gdb_arch_name; 1752 cc->gdb_get_dynamic_xml = riscv_gdb_get_dynamic_xml; 1753 cc->tcg_ops = &riscv_tcg_ops; 1754 1755 device_class_set_props(dc, riscv_cpu_properties); 1756 } 1757 1758 static void riscv_isa_string_ext(RISCVCPU *cpu, char **isa_str, 1759 int max_str_len) 1760 { 1761 char *old = *isa_str; 1762 char *new = *isa_str; 1763 int i; 1764 1765 for (i = 0; i < ARRAY_SIZE(isa_edata_arr); i++) { 1766 if (isa_ext_is_enabled(cpu, &isa_edata_arr[i])) { 1767 new = g_strconcat(old, "_", isa_edata_arr[i].name, NULL); 1768 g_free(old); 1769 old = new; 1770 } 1771 } 1772 1773 *isa_str = new; 1774 } 1775 1776 char *riscv_isa_string(RISCVCPU *cpu) 1777 { 1778 int i; 1779 const size_t maxlen = sizeof("rv128") + sizeof(riscv_single_letter_exts); 1780 char *isa_str = g_new(char, maxlen); 1781 char *p = isa_str + snprintf(isa_str, maxlen, "rv%d", TARGET_LONG_BITS); 1782 for (i = 0; i < sizeof(riscv_single_letter_exts) - 1; i++) { 1783 if (cpu->env.misa_ext & RV(riscv_single_letter_exts[i])) { 1784 *p++ = qemu_tolower(riscv_single_letter_exts[i]); 1785 } 1786 } 1787 *p = '\0'; 1788 if (!cpu->cfg.short_isa_string) { 1789 riscv_isa_string_ext(cpu, &isa_str, maxlen); 1790 } 1791 return isa_str; 1792 } 1793 1794 static gint riscv_cpu_list_compare(gconstpointer a, gconstpointer b) 1795 { 1796 ObjectClass *class_a = (ObjectClass *)a; 1797 ObjectClass *class_b = (ObjectClass *)b; 1798 const char *name_a, *name_b; 1799 1800 name_a = object_class_get_name(class_a); 1801 name_b = object_class_get_name(class_b); 1802 return strcmp(name_a, name_b); 1803 } 1804 1805 static void riscv_cpu_list_entry(gpointer data, gpointer user_data) 1806 { 1807 const char *typename = object_class_get_name(OBJECT_CLASS(data)); 1808 int len = strlen(typename) - strlen(RISCV_CPU_TYPE_SUFFIX); 1809 1810 qemu_printf("%.*s\n", len, typename); 1811 } 1812 1813 void riscv_cpu_list(void) 1814 { 1815 GSList *list; 1816 1817 list = object_class_get_list(TYPE_RISCV_CPU, false); 1818 list = g_slist_sort(list, riscv_cpu_list_compare); 1819 g_slist_foreach(list, riscv_cpu_list_entry, NULL); 1820 g_slist_free(list); 1821 } 1822 1823 #define DEFINE_CPU(type_name, initfn) \ 1824 { \ 1825 .name = type_name, \ 1826 .parent = TYPE_RISCV_CPU, \ 1827 .instance_init = initfn \ 1828 } 1829 1830 #define DEFINE_DYNAMIC_CPU(type_name, initfn) \ 1831 { \ 1832 .name = type_name, \ 1833 .parent = TYPE_RISCV_DYNAMIC_CPU, \ 1834 .instance_init = initfn \ 1835 } 1836 1837 static const TypeInfo riscv_cpu_type_infos[] = { 1838 { 1839 .name = TYPE_RISCV_CPU, 1840 .parent = TYPE_CPU, 1841 .instance_size = sizeof(RISCVCPU), 1842 .instance_align = __alignof__(RISCVCPU), 1843 .instance_init = riscv_cpu_init, 1844 .abstract = true, 1845 .class_size = sizeof(RISCVCPUClass), 1846 .class_init = riscv_cpu_class_init, 1847 }, 1848 { 1849 .name = TYPE_RISCV_DYNAMIC_CPU, 1850 .parent = TYPE_RISCV_CPU, 1851 .abstract = true, 1852 }, 1853 DEFINE_DYNAMIC_CPU(TYPE_RISCV_CPU_ANY, riscv_any_cpu_init), 1854 #if defined(CONFIG_KVM) 1855 DEFINE_CPU(TYPE_RISCV_CPU_HOST, riscv_host_cpu_init), 1856 #endif 1857 #if defined(TARGET_RISCV32) 1858 DEFINE_DYNAMIC_CPU(TYPE_RISCV_CPU_BASE32, rv32_base_cpu_init), 1859 DEFINE_CPU(TYPE_RISCV_CPU_IBEX, rv32_ibex_cpu_init), 1860 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E31, rv32_sifive_e_cpu_init), 1861 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E34, rv32_imafcu_nommu_cpu_init), 1862 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U34, rv32_sifive_u_cpu_init), 1863 #elif defined(TARGET_RISCV64) 1864 DEFINE_DYNAMIC_CPU(TYPE_RISCV_CPU_BASE64, rv64_base_cpu_init), 1865 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E51, rv64_sifive_e_cpu_init), 1866 DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U54, rv64_sifive_u_cpu_init), 1867 DEFINE_CPU(TYPE_RISCV_CPU_SHAKTI_C, rv64_sifive_u_cpu_init), 1868 DEFINE_CPU(TYPE_RISCV_CPU_THEAD_C906, rv64_thead_c906_cpu_init), 1869 DEFINE_CPU(TYPE_RISCV_CPU_VEYRON_V1, rv64_veyron_v1_cpu_init), 1870 DEFINE_DYNAMIC_CPU(TYPE_RISCV_CPU_BASE128, rv128_base_cpu_init), 1871 #endif 1872 }; 1873 1874 DEFINE_TYPES(riscv_cpu_type_infos) 1875