mirror of https://github.com/acidanthera/audk.git
ArmPkg/ArmGicDxe ARM: fix encoding for GICv3 interrupt acknowledge
Fix a typo in the 32-bit ARM version of the GICv3 driver, which uses the wrong system register encoding to access ICC_IAR1, and attempted to access ICC_IAR0 instead. This results in boot time hangs both under QEMU emulation and on real hardware. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
This commit is contained in:
parent
9cabe9d457
commit
66127011a5
|
@ -66,7 +66,7 @@ ASM_FUNC(ArmGicV3EndOfInterrupt)
|
|||
// VOID
|
||||
// );
|
||||
ASM_FUNC(ArmGicV3AcknowledgeInterrupt)
|
||||
mrc p15, 0, r0, c12, c8, 0 //ICC_IAR1
|
||||
mrc p15, 0, r0, c12, c12, 0 //ICC_IAR1
|
||||
bx lr
|
||||
|
||||
//VOID
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
// VOID
|
||||
// );
|
||||
RVCT_ASM_EXPORT ArmGicV3AcknowledgeInterrupt
|
||||
mrc p15, 0, r0, c12, c8, 0 //ICC_IAR1
|
||||
mrc p15, 0, r0, c12, c12, 0 //ICC_IAR1
|
||||
bx lr
|
||||
|
||||
//VOID
|
||||
|
|
Loading…
Reference in New Issue