ARCv2: entry: early return from exception need not clear U & DE bits
authorAlexey Brodkin <Alexey.Brodkin@synopsys.com>
Tue, 16 Jul 2019 20:50:34 +0000 (23:50 +0300)
committerVineet Gupta <vgupta@synopsys.com>
Mon, 5 Aug 2019 07:01:29 +0000 (12:31 +0530)
Exception handlers call FAKE_RET_FROM_EXCPN to
 - clear AE bit: drop down from exception active to pure kernel mode
   allowing further excptions
 - set IE bit: re-enable interrupts

It additionally also clears U bit (user mode) and DE bit (delay slot
execution) which is redundant as hardware does that already on any taken
exception. Morevoer the current software clearing is bogus anyways as
the KFLAG instruction being used for purpose can't possibly write those
bits anyways.

So don't pretend to clear them.

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
[vgupta: rewrote changelog]

arch/arc/include/asm/entry-arcv2.h

index f5ae394..41b16f2 100644 (file)
 
 .macro FAKE_RET_FROM_EXCPN
        lr      r9, [status32]
-       bic     r9, r9, (STATUS_U_MASK|STATUS_DE_MASK|STATUS_AE_MASK)
+       bic     r9, r9, STATUS_AE_MASK
        or      r9, r9, STATUS_IE_MASK
        kflag   r9
 .endm