mirror of https://github.com/xemu-project/xemu.git
target/riscv: rvb: add b-ext version cpu option
Default b-ext version is v0.93. Signed-off-by: Frank Chang <frank.chang@sifive.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 20210505160620.15723-18-frank.chang@sifive.com Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
d52e94081e
commit
d2c1a177b1
|
@ -127,6 +127,11 @@ static void set_priv_version(CPURISCVState *env, int priv_ver)
|
|||
env->priv_ver = priv_ver;
|
||||
}
|
||||
|
||||
static void set_bext_version(CPURISCVState *env, int bext_ver)
|
||||
{
|
||||
env->bext_ver = bext_ver;
|
||||
}
|
||||
|
||||
static void set_vext_version(CPURISCVState *env, int vext_ver)
|
||||
{
|
||||
env->vext_ver = vext_ver;
|
||||
|
@ -388,6 +393,7 @@ static void riscv_cpu_realize(DeviceState *dev, Error **errp)
|
|||
CPURISCVState *env = &cpu->env;
|
||||
RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(dev);
|
||||
int priv_version = PRIV_VERSION_1_11_0;
|
||||
int bext_version = BEXT_VERSION_0_93_0;
|
||||
int vext_version = VEXT_VERSION_0_07_1;
|
||||
target_ulong target_misa = env->misa;
|
||||
Error *local_err = NULL;
|
||||
|
@ -412,6 +418,7 @@ static void riscv_cpu_realize(DeviceState *dev, Error **errp)
|
|||
}
|
||||
|
||||
set_priv_version(env, priv_version);
|
||||
set_bext_version(env, bext_version);
|
||||
set_vext_version(env, vext_version);
|
||||
|
||||
if (cpu->cfg.mmu) {
|
||||
|
@ -491,6 +498,21 @@ static void riscv_cpu_realize(DeviceState *dev, Error **errp)
|
|||
}
|
||||
if (cpu->cfg.ext_b) {
|
||||
target_misa |= RVB;
|
||||
|
||||
if (cpu->cfg.bext_spec) {
|
||||
if (!g_strcmp0(cpu->cfg.bext_spec, "v0.93")) {
|
||||
bext_version = BEXT_VERSION_0_93_0;
|
||||
} else {
|
||||
error_setg(errp,
|
||||
"Unsupported bitmanip spec version '%s'",
|
||||
cpu->cfg.bext_spec);
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
qemu_log("bitmanip version is not specified, "
|
||||
"use the default value v0.93\n");
|
||||
}
|
||||
set_bext_version(env, bext_version);
|
||||
}
|
||||
if (cpu->cfg.ext_v) {
|
||||
target_misa |= RVV;
|
||||
|
@ -569,6 +591,7 @@ static Property riscv_cpu_properties[] = {
|
|||
DEFINE_PROP_BOOL("Zifencei", RISCVCPU, cfg.ext_ifencei, true),
|
||||
DEFINE_PROP_BOOL("Zicsr", RISCVCPU, cfg.ext_icsr, true),
|
||||
DEFINE_PROP_STRING("priv_spec", RISCVCPU, cfg.priv_spec),
|
||||
DEFINE_PROP_STRING("bext_spec", RISCVCPU, cfg.bext_spec),
|
||||
DEFINE_PROP_STRING("vext_spec", RISCVCPU, cfg.vext_spec),
|
||||
DEFINE_PROP_UINT16("vlen", RISCVCPU, cfg.vlen, 128),
|
||||
DEFINE_PROP_UINT16("elen", RISCVCPU, cfg.elen, 64),
|
||||
|
|
|
@ -83,6 +83,7 @@ enum {
|
|||
#define PRIV_VERSION_1_10_0 0x00011000
|
||||
#define PRIV_VERSION_1_11_0 0x00011100
|
||||
|
||||
#define BEXT_VERSION_0_93_0 0x00009300
|
||||
#define VEXT_VERSION_0_07_1 0x00000701
|
||||
|
||||
enum {
|
||||
|
@ -132,6 +133,7 @@ struct CPURISCVState {
|
|||
target_ulong guest_phys_fault_addr;
|
||||
|
||||
target_ulong priv_ver;
|
||||
target_ulong bext_ver;
|
||||
target_ulong vext_ver;
|
||||
target_ulong misa;
|
||||
target_ulong misa_mask;
|
||||
|
@ -297,6 +299,7 @@ struct RISCVCPU {
|
|||
|
||||
char *priv_spec;
|
||||
char *user_spec;
|
||||
char *bext_spec;
|
||||
char *vext_spec;
|
||||
uint16_t vlen;
|
||||
uint16_t elen;
|
||||
|
|
Loading…
Reference in New Issue