diff mbox

[edk2,4/7] ArmPkg/ArmExceptionLib: don't restore ESR and FAR upon exception return

Message ID 1458220815-6944-5-git-send-email-ard.biesheuvel@linaro.org
State Accepted
Commit 2187f9a0523c44604a27bbf6563d5c373e73cc31
Headers show

Commit Message

Ard Biesheuvel March 17, 2016, 1:20 p.m. UTC
ESR and FAR are populated by the hardware upon exception entry, and
describe the exception, not the interrupted context. So there is no point
in restoring their values before returning from the exception.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

---
 ArmPkg/Library/ArmExceptionLib/AArch64/ExceptionSupport.S | 6 ------
 1 file changed, 6 deletions(-)

-- 
2.5.0

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
diff mbox

Patch

diff --git a/ArmPkg/Library/ArmExceptionLib/AArch64/ExceptionSupport.S b/ArmPkg/Library/ArmExceptionLib/AArch64/ExceptionSupport.S
index 3117e710fa53..c7ea061a93ea 100644
--- a/ArmPkg/Library/ArmExceptionLib/AArch64/ExceptionSupport.S
+++ b/ArmPkg/Library/ArmExceptionLib/AArch64/ExceptionSupport.S
@@ -356,18 +356,12 @@  ASM_PFX(CommonExceptionEntry):
   EL1_OR_EL2_OR_EL3(x6)
 1:msr      elr_el1, x1   // Exception Link Register
   msr      spsr_el1,x2   // Saved Processor Status Register 32bit
-  msr      esr_el1, x4   // EL1 Exception syndrome register 32bit
-  msr      far_el1, x5   // EL1 Fault Address Register
   b        4f
 2:msr      elr_el2, x1   // Exception Link Register
   msr      spsr_el2,x2   // Saved Processor Status Register 32bit
-  msr      esr_el2, x4   // EL2 Exception syndrome register 32bit
-  msr      far_el2, x5   // EL2 Fault Address Register
   b        4f
 3:msr      elr_el3, x1   // Exception Link Register
   msr      spsr_el3,x2   // Saved Processor Status Register 32bit
-  msr      esr_el3, x4   // EL3 Exception syndrome register 32bit
-  msr      far_el3, x5   // EL3 Fault Address Register
 4:msr      fpsr, x3      // Floating point Status Register  32bit
 
   // pop all regs and return from exception.