1 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef __ASM_ARC_ENTRY_ARCV2_H
4 #define __ASM_ARC_ENTRY_ARCV2_H
6 #include <asm/asm-offsets.h>
7 #include <asm/irqflags-arcv2.h>
8 #include <asm/thread_info.h> /* For THREAD_SIZE */
10 /*------------------------------------------------------------------------*/
11 .macro INTERRUPT_PROLOGUE called_from
13 ; Before jumping to Interrupt Vector
, hardware micro
-ops did following
:
14 ; 1. SP
auto-switched to kernel mode stack
15 ; 2. STATUS32
.Z flag set to U mode at time of
interrupt (U
:1, K
:0)
16 ; 3. Auto saved
: r0
-r11
, blink
, LPE
,LPS
,LPC
, JLI
,LDI
,EI
, PC
, STAT32
18 ; Now manually save
: r12
, sp
, fp
, gp
, r25
20 #ifdef CONFIG_ARC_HAS_ACCL_REGS
28 ; Saving pt_regs
->sp correctly requires some extra work due to the way
29 ; Auto stack
switch works
30 ; - U mode
: retrieve it from AUX_USER_SP
31 ; - K mode
: add the offset from current SP where H
/w starts
auto push
33 ; Utilize the fact that Z bit is set
if Intr taken in U mode
35 add
.nz r9
, r9
, SZ_PT_REGS
- PT_sp
- 4
45 #ifdef CONFIG_ARC_CURR_IN_REG
47 GET_CURR_TASK_ON_CPU r25
52 .ifnc \called_from
, exception
53 sub sp
, sp
, 12 ; BTA
/ECR
/orig_r0 placeholder per pt_regs
58 /*------------------------------------------------------------------------*/
59 .macro INTERRUPT_EPILOGUE called_from
61 .ifnc \called_from
, exception
62 add sp
, sp
, 12 ; skip BTA
/ECR
/orig_r0 placeholderss
65 #ifdef CONFIG_ARC_CURR_IN_REG
74 ; Don
't touch AUX_USER_SP if returning to K mode (Z bit set)
75 ; (Z bit set on K mode is inverse of INTERRUPT_PROLOGUE)
84 #ifdef CONFIG_ARC_HAS_ACCL_REGS
91 /*------------------------------------------------------------------------*/
92 .macro EXCEPTION_PROLOGUE
94 ; Before jumping to Exception Vector, hardware micro-ops did following:
95 ; 1. SP auto-switched to kernel mode stack
96 ; 2. STATUS32.Z flag set to U mode at time of interrupt (U:1,K:0)
98 ; Now manually save the complete reg file
100 PUSH r9 ; freeup a register: slot of erstatus
103 sub sp, sp, 12 ; skip JLI, LDI, EI
112 ld.as r9, [sp, 10] ; load stashed r9 (status32 stack slot)
114 st.as r10, [sp, 10] ; save status32 at it's right stack slot
127 ; -- for interrupts
, regs above are
auto-saved by h
/w in that order
--
128 ; Now
do what ISR prologue
does (manually save r12
, sp
, fp
, gp
, r25
)
130 ; Set Z flag
if this was from U
mode (expected by INTERRUPT_PROLOGUE
)
131 ; Although H
/w exception micro
-ops
do set Z flag
for U
mode (just like
132 ; for interrupts
), it could get clobbered in
case we soft land here from
133 ; a TLB Miss exception
handler (tlbex
.S
)
135 and r10
, r10
, STATUS_U_MASK
136 xor.f
0, r10
, STATUS_U_MASK
138 INTERRUPT_PROLOGUE exception
141 PUSHAX ecr
; r9 contains ECR
, expected by EV_Trap
146 /*------------------------------------------------------------------------*/
147 .macro EXCEPTION_EPILOGUE
149 ; Assumes r0 has PT_status32
150 btst r0
, STATUS_U_BIT
; Z flag set
if K
, used in INTERRUPT_EPILOGUE
152 add sp
, sp
, 8 ; orig_r0
/ECR don
't need restoring
155 INTERRUPT_EPILOGUE exception
177 add sp, sp, 12 ; skip JLI, LDI, EI
181 ld.as r9, [sp, -12] ; reload r9 which got clobbered
184 .macro FAKE_RET_FROM_EXCPN
186 bic r9, r9, (STATUS_U_MASK|STATUS_DE_MASK|STATUS_AE_MASK)
187 or r9, r9, (STATUS_L_MASK|STATUS_IE_MASK)
191 /* Get thread_info of "current" tsk */
192 .macro GET_CURR_THR_INFO_FROM_SP reg
193 bmskn \reg, sp, THREAD_SHIFT - 1
196 /* Get CPU-ID of this core */
197 .macro GET_CPU_ID reg
199 xbfu \reg, \reg, 0xE8 /* 00111 01000 */