a939c50079
The RISC-V base cache management operation (CBO) ISA extension has been ratified. It defines three extensions: Cache-Block Management, Cache-Block Prefetch and Cache-Block Zero. More information about the spec can be found at [1]. Let's start by implementing the Cache-Block Zero extension, Zicboz. It uses the cbo.zero instruction that, as with all CBO instructions that will be added later, needs to be implemented in an overlap group with the LQ instruction due to overlapping patterns. cbo.zero throws a Illegal Instruction/Virtual Instruction exception depending on CSR state. This is also the case for the remaining cbo instructions we're going to add next, so create a check_zicbo_envcfg() that will be used by all Zicbo[mz] instructions. [1] https://github.com/riscv/riscv-CMOs/blob/master/specifications/cmobase-v1.0.1.pdf Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Co-developed-by: Philipp Tomsich <philipp.tomsich@vrull.eu> Signed-off-by: Christoph Muellner <cmuellner@linux.com> Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Reviewed-by: Weiwei Li <liweiwei@iscas.ac.cn> Message-ID: <20230224132536.552293-3-dbarboza@ventanamicro.com> Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
377 lines
11 KiB
C
377 lines
11 KiB
C
/*
|
|
* RISC-V Emulation Helpers for QEMU.
|
|
*
|
|
* Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
|
|
* Copyright (c) 2017-2018 SiFive, Inc.
|
|
* Copyright (c) 2022 VRULL GmbH
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2 or later, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "cpu.h"
|
|
#include "qemu/main-loop.h"
|
|
#include "exec/exec-all.h"
|
|
#include "exec/helper-proto.h"
|
|
|
|
/* Exceptions processing helpers */
|
|
G_NORETURN void riscv_raise_exception(CPURISCVState *env,
|
|
uint32_t exception, uintptr_t pc)
|
|
{
|
|
CPUState *cs = env_cpu(env);
|
|
cs->exception_index = exception;
|
|
cpu_loop_exit_restore(cs, pc);
|
|
}
|
|
|
|
void helper_raise_exception(CPURISCVState *env, uint32_t exception)
|
|
{
|
|
riscv_raise_exception(env, exception, 0);
|
|
}
|
|
|
|
target_ulong helper_csrr(CPURISCVState *env, int csr)
|
|
{
|
|
/*
|
|
* The seed CSR must be accessed with a read-write instruction. A
|
|
* read-only instruction such as CSRRS/CSRRC with rs1=x0 or CSRRSI/
|
|
* CSRRCI with uimm=0 will raise an illegal instruction exception.
|
|
*/
|
|
if (csr == CSR_SEED) {
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
|
}
|
|
|
|
target_ulong val = 0;
|
|
RISCVException ret = riscv_csrrw(env, csr, &val, 0, 0);
|
|
|
|
if (ret != RISCV_EXCP_NONE) {
|
|
riscv_raise_exception(env, ret, GETPC());
|
|
}
|
|
return val;
|
|
}
|
|
|
|
void helper_csrw(CPURISCVState *env, int csr, target_ulong src)
|
|
{
|
|
target_ulong mask = env->xl == MXL_RV32 ? UINT32_MAX : (target_ulong)-1;
|
|
RISCVException ret = riscv_csrrw(env, csr, NULL, src, mask);
|
|
|
|
if (ret != RISCV_EXCP_NONE) {
|
|
riscv_raise_exception(env, ret, GETPC());
|
|
}
|
|
}
|
|
|
|
target_ulong helper_csrrw(CPURISCVState *env, int csr,
|
|
target_ulong src, target_ulong write_mask)
|
|
{
|
|
target_ulong val = 0;
|
|
RISCVException ret = riscv_csrrw(env, csr, &val, src, write_mask);
|
|
|
|
if (ret != RISCV_EXCP_NONE) {
|
|
riscv_raise_exception(env, ret, GETPC());
|
|
}
|
|
return val;
|
|
}
|
|
|
|
target_ulong helper_csrr_i128(CPURISCVState *env, int csr)
|
|
{
|
|
Int128 rv = int128_zero();
|
|
RISCVException ret = riscv_csrrw_i128(env, csr, &rv,
|
|
int128_zero(),
|
|
int128_zero());
|
|
|
|
if (ret != RISCV_EXCP_NONE) {
|
|
riscv_raise_exception(env, ret, GETPC());
|
|
}
|
|
|
|
env->retxh = int128_gethi(rv);
|
|
return int128_getlo(rv);
|
|
}
|
|
|
|
void helper_csrw_i128(CPURISCVState *env, int csr,
|
|
target_ulong srcl, target_ulong srch)
|
|
{
|
|
RISCVException ret = riscv_csrrw_i128(env, csr, NULL,
|
|
int128_make128(srcl, srch),
|
|
UINT128_MAX);
|
|
|
|
if (ret != RISCV_EXCP_NONE) {
|
|
riscv_raise_exception(env, ret, GETPC());
|
|
}
|
|
}
|
|
|
|
target_ulong helper_csrrw_i128(CPURISCVState *env, int csr,
|
|
target_ulong srcl, target_ulong srch,
|
|
target_ulong maskl, target_ulong maskh)
|
|
{
|
|
Int128 rv = int128_zero();
|
|
RISCVException ret = riscv_csrrw_i128(env, csr, &rv,
|
|
int128_make128(srcl, srch),
|
|
int128_make128(maskl, maskh));
|
|
|
|
if (ret != RISCV_EXCP_NONE) {
|
|
riscv_raise_exception(env, ret, GETPC());
|
|
}
|
|
|
|
env->retxh = int128_gethi(rv);
|
|
return int128_getlo(rv);
|
|
}
|
|
|
|
|
|
/*
|
|
* check_zicbo_envcfg
|
|
*
|
|
* Raise virtual exceptions and illegal instruction exceptions for
|
|
* Zicbo[mz] instructions based on the settings of [mhs]envcfg as
|
|
* specified in section 2.5.1 of the CMO specification.
|
|
*/
|
|
static void check_zicbo_envcfg(CPURISCVState *env, target_ulong envbits,
|
|
uintptr_t ra)
|
|
{
|
|
#ifndef CONFIG_USER_ONLY
|
|
if ((env->priv < PRV_M) && !get_field(env->menvcfg, envbits)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, ra);
|
|
}
|
|
|
|
if (riscv_cpu_virt_enabled(env) &&
|
|
(((env->priv < PRV_H) && !get_field(env->henvcfg, envbits)) ||
|
|
((env->priv < PRV_S) && !get_field(env->senvcfg, envbits)))) {
|
|
riscv_raise_exception(env, RISCV_EXCP_VIRT_INSTRUCTION_FAULT, ra);
|
|
}
|
|
|
|
if ((env->priv < PRV_S) && !get_field(env->senvcfg, envbits)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, ra);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void helper_cbo_zero(CPURISCVState *env, target_ulong address)
|
|
{
|
|
RISCVCPU *cpu = env_archcpu(env);
|
|
uint16_t cbozlen = cpu->cfg.cboz_blocksize;
|
|
int mmu_idx = cpu_mmu_index(env, false);
|
|
uintptr_t ra = GETPC();
|
|
void *mem;
|
|
|
|
check_zicbo_envcfg(env, MENVCFG_CBZE, ra);
|
|
|
|
/* Mask off low-bits to align-down to the cache-block. */
|
|
address &= ~(cbozlen - 1);
|
|
|
|
/*
|
|
* cbo.zero requires MMU_DATA_STORE access. Do a probe_write()
|
|
* to raise any exceptions, including PMP.
|
|
*/
|
|
mem = probe_write(env, address, cbozlen, mmu_idx, ra);
|
|
|
|
if (likely(mem)) {
|
|
memset(mem, 0, cbozlen);
|
|
} else {
|
|
/*
|
|
* This means that we're dealing with an I/O page. Section 4.2
|
|
* of cmobase v1.0.1 says:
|
|
*
|
|
* "Cache-block zero instructions store zeros independently
|
|
* of whether data from the underlying memory locations are
|
|
* cacheable."
|
|
*
|
|
* Write zeros in address + cbozlen regardless of not being
|
|
* a RAM page.
|
|
*/
|
|
for (int i = 0; i < cbozlen; i++) {
|
|
cpu_stb_mmuidx_ra(env, address + i, 0, mmu_idx, ra);
|
|
}
|
|
}
|
|
}
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
target_ulong helper_sret(CPURISCVState *env)
|
|
{
|
|
uint64_t mstatus;
|
|
target_ulong prev_priv, prev_virt;
|
|
|
|
if (!(env->priv >= PRV_S)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
|
}
|
|
|
|
target_ulong retpc = env->sepc;
|
|
if (!riscv_has_ext(env, RVC) && (retpc & 0x3)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_INST_ADDR_MIS, GETPC());
|
|
}
|
|
|
|
if (get_field(env->mstatus, MSTATUS_TSR) && !(env->priv >= PRV_M)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
|
}
|
|
|
|
if (riscv_has_ext(env, RVH) && riscv_cpu_virt_enabled(env) &&
|
|
get_field(env->hstatus, HSTATUS_VTSR)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_VIRT_INSTRUCTION_FAULT, GETPC());
|
|
}
|
|
|
|
mstatus = env->mstatus;
|
|
prev_priv = get_field(mstatus, MSTATUS_SPP);
|
|
mstatus = set_field(mstatus, MSTATUS_SIE,
|
|
get_field(mstatus, MSTATUS_SPIE));
|
|
mstatus = set_field(mstatus, MSTATUS_SPIE, 1);
|
|
mstatus = set_field(mstatus, MSTATUS_SPP, PRV_U);
|
|
if (env->priv_ver >= PRIV_VERSION_1_12_0) {
|
|
mstatus = set_field(mstatus, MSTATUS_MPRV, 0);
|
|
}
|
|
env->mstatus = mstatus;
|
|
|
|
if (riscv_has_ext(env, RVH) && !riscv_cpu_virt_enabled(env)) {
|
|
/* We support Hypervisor extensions and virtulisation is disabled */
|
|
target_ulong hstatus = env->hstatus;
|
|
|
|
prev_virt = get_field(hstatus, HSTATUS_SPV);
|
|
|
|
hstatus = set_field(hstatus, HSTATUS_SPV, 0);
|
|
|
|
env->hstatus = hstatus;
|
|
|
|
if (prev_virt) {
|
|
riscv_cpu_swap_hypervisor_regs(env);
|
|
}
|
|
|
|
riscv_cpu_set_virt_enabled(env, prev_virt);
|
|
}
|
|
|
|
riscv_cpu_set_mode(env, prev_priv);
|
|
|
|
return retpc;
|
|
}
|
|
|
|
target_ulong helper_mret(CPURISCVState *env)
|
|
{
|
|
if (!(env->priv >= PRV_M)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
|
}
|
|
|
|
target_ulong retpc = env->mepc;
|
|
if (!riscv_has_ext(env, RVC) && (retpc & 0x3)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_INST_ADDR_MIS, GETPC());
|
|
}
|
|
|
|
uint64_t mstatus = env->mstatus;
|
|
target_ulong prev_priv = get_field(mstatus, MSTATUS_MPP);
|
|
|
|
if (riscv_cpu_cfg(env)->pmp &&
|
|
!pmp_get_num_rules(env) && (prev_priv != PRV_M)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_INST_ACCESS_FAULT, GETPC());
|
|
}
|
|
|
|
target_ulong prev_virt = get_field(env->mstatus, MSTATUS_MPV);
|
|
mstatus = set_field(mstatus, MSTATUS_MIE,
|
|
get_field(mstatus, MSTATUS_MPIE));
|
|
mstatus = set_field(mstatus, MSTATUS_MPIE, 1);
|
|
mstatus = set_field(mstatus, MSTATUS_MPP, PRV_U);
|
|
mstatus = set_field(mstatus, MSTATUS_MPV, 0);
|
|
if ((env->priv_ver >= PRIV_VERSION_1_12_0) && (prev_priv != PRV_M)) {
|
|
mstatus = set_field(mstatus, MSTATUS_MPRV, 0);
|
|
}
|
|
env->mstatus = mstatus;
|
|
riscv_cpu_set_mode(env, prev_priv);
|
|
|
|
if (riscv_has_ext(env, RVH)) {
|
|
if (prev_virt) {
|
|
riscv_cpu_swap_hypervisor_regs(env);
|
|
}
|
|
|
|
riscv_cpu_set_virt_enabled(env, prev_virt);
|
|
}
|
|
|
|
return retpc;
|
|
}
|
|
|
|
void helper_wfi(CPURISCVState *env)
|
|
{
|
|
CPUState *cs = env_cpu(env);
|
|
bool rvs = riscv_has_ext(env, RVS);
|
|
bool prv_u = env->priv == PRV_U;
|
|
bool prv_s = env->priv == PRV_S;
|
|
|
|
if (((prv_s || (!rvs && prv_u)) && get_field(env->mstatus, MSTATUS_TW)) ||
|
|
(rvs && prv_u && !riscv_cpu_virt_enabled(env))) {
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
|
} else if (riscv_cpu_virt_enabled(env) && (prv_u ||
|
|
(prv_s && get_field(env->hstatus, HSTATUS_VTW)))) {
|
|
riscv_raise_exception(env, RISCV_EXCP_VIRT_INSTRUCTION_FAULT, GETPC());
|
|
} else {
|
|
cs->halted = 1;
|
|
cs->exception_index = EXCP_HLT;
|
|
cpu_loop_exit(cs);
|
|
}
|
|
}
|
|
|
|
void helper_tlb_flush(CPURISCVState *env)
|
|
{
|
|
CPUState *cs = env_cpu(env);
|
|
if (!(env->priv >= PRV_S) ||
|
|
(env->priv == PRV_S &&
|
|
get_field(env->mstatus, MSTATUS_TVM))) {
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
|
} else if (riscv_has_ext(env, RVH) && riscv_cpu_virt_enabled(env) &&
|
|
get_field(env->hstatus, HSTATUS_VTVM)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_VIRT_INSTRUCTION_FAULT, GETPC());
|
|
} else {
|
|
tlb_flush(cs);
|
|
}
|
|
}
|
|
|
|
void helper_tlb_flush_all(CPURISCVState *env)
|
|
{
|
|
CPUState *cs = env_cpu(env);
|
|
tlb_flush_all_cpus_synced(cs);
|
|
}
|
|
|
|
void helper_hyp_tlb_flush(CPURISCVState *env)
|
|
{
|
|
CPUState *cs = env_cpu(env);
|
|
|
|
if (env->priv == PRV_S && riscv_cpu_virt_enabled(env)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_VIRT_INSTRUCTION_FAULT, GETPC());
|
|
}
|
|
|
|
if (env->priv == PRV_M ||
|
|
(env->priv == PRV_S && !riscv_cpu_virt_enabled(env))) {
|
|
tlb_flush(cs);
|
|
return;
|
|
}
|
|
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
|
}
|
|
|
|
void helper_hyp_gvma_tlb_flush(CPURISCVState *env)
|
|
{
|
|
if (env->priv == PRV_S && !riscv_cpu_virt_enabled(env) &&
|
|
get_field(env->mstatus, MSTATUS_TVM)) {
|
|
riscv_raise_exception(env, RISCV_EXCP_ILLEGAL_INST, GETPC());
|
|
}
|
|
|
|
helper_hyp_tlb_flush(env);
|
|
}
|
|
|
|
target_ulong helper_hyp_hlvx_hu(CPURISCVState *env, target_ulong address)
|
|
{
|
|
int mmu_idx = cpu_mmu_index(env, true) | TB_FLAGS_PRIV_HYP_ACCESS_MASK;
|
|
|
|
return cpu_lduw_mmuidx_ra(env, address, mmu_idx, GETPC());
|
|
}
|
|
|
|
target_ulong helper_hyp_hlvx_wu(CPURISCVState *env, target_ulong address)
|
|
{
|
|
int mmu_idx = cpu_mmu_index(env, true) | TB_FLAGS_PRIV_HYP_ACCESS_MASK;
|
|
|
|
return cpu_ldl_mmuidx_ra(env, address, mmu_idx, GETPC());
|
|
}
|
|
|
|
#endif /* !CONFIG_USER_ONLY */
|