target/riscv: Fix VS mode interrupts forwarding.
Currently riscv_cpu_local_irq_pending is used to find out pending interrupt and VS mode interrupts are being shifted to represent S mode interrupts in this function. So when the cause returned by this function is passed to riscv_cpu_do_interrupt to actually forward the interrupt, the VS mode forwarding check does not work as intended and interrupt is actually forwarded to hypervisor. This patch fixes this issue. Signed-off-by: Rajnesh Kanwal <rajnesh.kanwal49@gmail.com> Reviewed-by: Palmer Dabbelt <palmerdabbelt@google.com> Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
This commit is contained in:
parent
c6fc0fc1a7
commit
c5969a3a3c
@ -46,7 +46,7 @@ static int riscv_cpu_local_irq_pending(CPURISCVState *env)
|
|||||||
target_ulong pending = env->mip & env->mie &
|
target_ulong pending = env->mip & env->mie &
|
||||||
~(MIP_VSSIP | MIP_VSTIP | MIP_VSEIP);
|
~(MIP_VSSIP | MIP_VSTIP | MIP_VSEIP);
|
||||||
target_ulong vspending = (env->mip & env->mie &
|
target_ulong vspending = (env->mip & env->mie &
|
||||||
(MIP_VSSIP | MIP_VSTIP | MIP_VSEIP)) >> 1;
|
(MIP_VSSIP | MIP_VSTIP | MIP_VSEIP));
|
||||||
|
|
||||||
target_ulong mie = env->priv < PRV_M ||
|
target_ulong mie = env->priv < PRV_M ||
|
||||||
(env->priv == PRV_M && mstatus_mie);
|
(env->priv == PRV_M && mstatus_mie);
|
||||||
@ -907,6 +907,13 @@ void riscv_cpu_do_interrupt(CPUState *cs)
|
|||||||
|
|
||||||
if (riscv_cpu_virt_enabled(env) && ((hdeleg >> cause) & 1) &&
|
if (riscv_cpu_virt_enabled(env) && ((hdeleg >> cause) & 1) &&
|
||||||
!force_hs_execp) {
|
!force_hs_execp) {
|
||||||
|
/*
|
||||||
|
* See if we need to adjust cause. Yes if its VS mode interrupt
|
||||||
|
* no if hypervisor has delegated one of hs mode's interrupt
|
||||||
|
*/
|
||||||
|
if (cause == IRQ_VS_TIMER || cause == IRQ_VS_SOFT ||
|
||||||
|
cause == IRQ_VS_EXT)
|
||||||
|
cause = cause - 1;
|
||||||
/* Trap to VS mode */
|
/* Trap to VS mode */
|
||||||
} else if (riscv_cpu_virt_enabled(env)) {
|
} else if (riscv_cpu_virt_enabled(env)) {
|
||||||
/* Trap into HS mode, from virt */
|
/* Trap into HS mode, from virt */
|
||||||
|
Loading…
Reference in New Issue
Block a user