mirror of https://github.com/xemu-project/xemu.git
target/riscv: Update VS timer whenever htimedelta changes
The htimedelta[h] CSR has impact on the VS timer comparison so we
should call riscv_timer_write_timecmp() whenever htimedelta changes.
Fixes: 3ec0fe18a3
("target/riscv: Add vstimecmp suppor")
Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20230120125950.2246378-2-apatel@ventanamicro.com>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
32c435a1ae
commit
2cfb3b6c9b
|
@ -3045,6 +3045,8 @@ static RISCVException read_htimedelta(CPURISCVState *env, int csrno,
|
||||||
static RISCVException write_htimedelta(CPURISCVState *env, int csrno,
|
static RISCVException write_htimedelta(CPURISCVState *env, int csrno,
|
||||||
target_ulong val)
|
target_ulong val)
|
||||||
{
|
{
|
||||||
|
RISCVCPU *cpu = env_archcpu(env);
|
||||||
|
|
||||||
if (!env->rdtime_fn) {
|
if (!env->rdtime_fn) {
|
||||||
return RISCV_EXCP_ILLEGAL_INST;
|
return RISCV_EXCP_ILLEGAL_INST;
|
||||||
}
|
}
|
||||||
|
@ -3054,6 +3056,12 @@ static RISCVException write_htimedelta(CPURISCVState *env, int csrno,
|
||||||
} else {
|
} else {
|
||||||
env->htimedelta = val;
|
env->htimedelta = val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (cpu->cfg.ext_sstc && env->rdtime_fn) {
|
||||||
|
riscv_timer_write_timecmp(cpu, env->vstimer, env->vstimecmp,
|
||||||
|
env->htimedelta, MIP_VSTIP);
|
||||||
|
}
|
||||||
|
|
||||||
return RISCV_EXCP_NONE;
|
return RISCV_EXCP_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3071,11 +3079,19 @@ static RISCVException read_htimedeltah(CPURISCVState *env, int csrno,
|
||||||
static RISCVException write_htimedeltah(CPURISCVState *env, int csrno,
|
static RISCVException write_htimedeltah(CPURISCVState *env, int csrno,
|
||||||
target_ulong val)
|
target_ulong val)
|
||||||
{
|
{
|
||||||
|
RISCVCPU *cpu = env_archcpu(env);
|
||||||
|
|
||||||
if (!env->rdtime_fn) {
|
if (!env->rdtime_fn) {
|
||||||
return RISCV_EXCP_ILLEGAL_INST;
|
return RISCV_EXCP_ILLEGAL_INST;
|
||||||
}
|
}
|
||||||
|
|
||||||
env->htimedelta = deposit64(env->htimedelta, 32, 32, (uint64_t)val);
|
env->htimedelta = deposit64(env->htimedelta, 32, 32, (uint64_t)val);
|
||||||
|
|
||||||
|
if (cpu->cfg.ext_sstc && env->rdtime_fn) {
|
||||||
|
riscv_timer_write_timecmp(cpu, env->vstimer, env->vstimecmp,
|
||||||
|
env->htimedelta, MIP_VSTIP);
|
||||||
|
}
|
||||||
|
|
||||||
return RISCV_EXCP_NONE;
|
return RISCV_EXCP_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue