mirror of
https://github.com/riscv-software-src/opensbi
synced 2025-10-14 21:06:04 +01:00
lib: sbi_misaligned_ldst: Set GVA if not emulating
If a particular misaligned load or store cannot be emulated at all, for the redirected trap, trap.gva is set to 0, but it should be the same as mstatus[h].GVA of the original trap. Fix this so that if the trap is destined for HS-mode, hstatus.GVA is then set correctly. Fixes: 1c4ce74f5128 ("lib: sbi: Set gva when creating sbi_trap_info") Signed-off-by: Vivian Wang <dramforever@live.com> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Reviewed-by: Anup Patel <anup@brainfault.org>
This commit is contained in:
parent
37a0d83b6d
commit
46e744ab67
@ -129,7 +129,7 @@ int sbi_misaligned_load_handler(ulong addr, ulong tval2, ulong tinst,
|
|||||||
uptrap.tval = addr;
|
uptrap.tval = addr;
|
||||||
uptrap.tval2 = tval2;
|
uptrap.tval2 = tval2;
|
||||||
uptrap.tinst = tinst;
|
uptrap.tinst = tinst;
|
||||||
uptrap.gva = 0;
|
uptrap.gva = sbi_regs_gva(regs);
|
||||||
return sbi_trap_redirect(regs, &uptrap);
|
return sbi_trap_redirect(regs, &uptrap);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -245,7 +245,7 @@ int sbi_misaligned_store_handler(ulong addr, ulong tval2, ulong tinst,
|
|||||||
uptrap.tval = addr;
|
uptrap.tval = addr;
|
||||||
uptrap.tval2 = tval2;
|
uptrap.tval2 = tval2;
|
||||||
uptrap.tinst = tinst;
|
uptrap.tinst = tinst;
|
||||||
uptrap.gva = 0;
|
uptrap.gva = sbi_regs_gva(regs);
|
||||||
return sbi_trap_redirect(regs, &uptrap);
|
return sbi_trap_redirect(regs, &uptrap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user