mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-18 23:52:14 -06:00
target/arm: Update arm_phys_excp_target_el for TGE
The TGE bit routes all asynchronous exceptions to EL2. Tested-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20200206105448.4726-33-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
85d0dc9fa2
commit
d1b31428fd
1 changed files with 6 additions and 0 deletions
|
@ -8446,6 +8446,12 @@ uint32_t arm_phys_excp_target_el(CPUState *cs, uint32_t excp_idx,
|
||||||
break;
|
break;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* For these purposes, TGE and AMO/IMO/FMO both force the
|
||||||
|
* interrupt to EL2. Fold TGE into the bit extracted above.
|
||||||
|
*/
|
||||||
|
hcr |= (hcr_el2 & HCR_TGE) != 0;
|
||||||
|
|
||||||
/* Perform a table-lookup for the target EL given the current state */
|
/* Perform a table-lookup for the target EL given the current state */
|
||||||
target_el = target_el_table[is64][scr][rw][hcr][secure][cur_el];
|
target_el = target_el_table[is64][scr][rw][hcr][secure][cur_el];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue