mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
target/riscv: Adjust pmpcfg access with mxl
Signed-off-by: LIU Zhiwei <zhiwei_liu@c-sky.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 20220120122050.41546-2-zhiwei_liu@c-sky.com Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
4211fc5532
commit
79f26b3b95
2 changed files with 23 additions and 8 deletions
|
@ -463,16 +463,11 @@ void pmpcfg_csr_write(CPURISCVState *env, uint32_t reg_index,
|
|||
{
|
||||
int i;
|
||||
uint8_t cfg_val;
|
||||
int pmpcfg_nums = 2 << riscv_cpu_mxl(env);
|
||||
|
||||
trace_pmpcfg_csr_write(env->mhartid, reg_index, val);
|
||||
|
||||
if ((reg_index & 1) && (sizeof(target_ulong) == 8)) {
|
||||
qemu_log_mask(LOG_GUEST_ERROR,
|
||||
"ignoring pmpcfg write - incorrect address\n");
|
||||
return;
|
||||
}
|
||||
|
||||
for (i = 0; i < sizeof(target_ulong); i++) {
|
||||
for (i = 0; i < pmpcfg_nums; i++) {
|
||||
cfg_val = (val >> 8 * i) & 0xff;
|
||||
pmp_write_cfg(env, (reg_index * 4) + i, cfg_val);
|
||||
}
|
||||
|
@ -490,8 +485,9 @@ target_ulong pmpcfg_csr_read(CPURISCVState *env, uint32_t reg_index)
|
|||
int i;
|
||||
target_ulong cfg_val = 0;
|
||||
target_ulong val = 0;
|
||||
int pmpcfg_nums = 2 << riscv_cpu_mxl(env);
|
||||
|
||||
for (i = 0; i < sizeof(target_ulong); i++) {
|
||||
for (i = 0; i < pmpcfg_nums; i++) {
|
||||
val = pmp_read_cfg(env, (reg_index * 4) + i);
|
||||
cfg_val |= (val << (i * 8));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue