2013-01-18 17:42:18 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
2013-01-18 17:42:22 +08:00
|
|
|
* Vineetg: March 2009 (Supporting 2 levels of Interrupts)
|
|
|
|
* Stack switching code can no longer reliably rely on the fact that
|
|
|
|
* if we are NOT in user mode, stack is switched to kernel mode.
|
|
|
|
* e.g. L2 IRQ interrupted a L1 ISR which had not yet completed
|
|
|
|
* it's prologue including stack switching from user mode
|
|
|
|
*
|
2013-01-18 17:42:18 +08:00
|
|
|
* Vineetg: Aug 28th 2008: Bug #94984
|
|
|
|
* -Zero Overhead Loop Context shd be cleared when entering IRQ/EXcp/Trap
|
|
|
|
* Normally CPU does this automatically, however when doing FAKE rtie,
|
|
|
|
* we also need to explicitly do this. The problem in macros
|
|
|
|
* FAKE_RET_FROM_EXCPN and FAKE_RET_FROM_EXCPN_LOCK_IRQ was that this bit
|
|
|
|
* was being "CLEARED" rather then "SET". Actually "SET" clears ZOL context
|
|
|
|
*
|
|
|
|
* Vineetg: May 5th 2008
|
2013-02-11 22:22:57 +08:00
|
|
|
* -Modified CALLEE_REG save/restore macros to handle the fact that
|
|
|
|
* r25 contains the kernel current task ptr
|
2013-01-18 17:42:18 +08:00
|
|
|
* - Defined Stack Switching Macro to be reused in all intr/excp hdlrs
|
|
|
|
* - Shaved off 11 instructions from RESTORE_ALL_INT1 by using the
|
|
|
|
* address Write back load ld.ab instead of seperate ld/add instn
|
|
|
|
*
|
|
|
|
* Amit Bhor, Sameer Dhavale: Codito Technologies 2004
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_ARC_ENTRY_H
|
|
|
|
#define __ASM_ARC_ENTRY_H
|
|
|
|
|
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
#include <asm/unistd.h> /* For NR_syscalls defination */
|
|
|
|
#include <asm/asm-offsets.h>
|
|
|
|
#include <asm/arcregs.h>
|
|
|
|
#include <asm/ptrace.h>
|
2013-02-11 22:22:57 +08:00
|
|
|
#include <asm/processor.h> /* For VMALLOC_START */
|
2013-01-18 17:42:18 +08:00
|
|
|
#include <asm/thread_info.h> /* For THREAD_SIZE */
|
2013-07-27 06:29:40 +08:00
|
|
|
#include <asm/mmu.h>
|
2013-01-18 17:42:18 +08:00
|
|
|
|
|
|
|
/* Note on the LD/ST addr modes with addr reg wback
|
|
|
|
*
|
|
|
|
* LD.a same as LD.aw
|
|
|
|
*
|
|
|
|
* LD.a reg1, [reg2, x] => Pre Incr
|
|
|
|
* Eff Addr for load = [reg2 + x]
|
|
|
|
*
|
|
|
|
* LD.ab reg1, [reg2, x] => Post Incr
|
|
|
|
* Eff Addr for load = [reg2]
|
|
|
|
*/
|
|
|
|
|
2013-05-28 15:54:43 +08:00
|
|
|
.macro PUSH reg
|
|
|
|
st.a \reg, [sp, -4]
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro PUSHAX aux
|
|
|
|
lr r9, [\aux]
|
|
|
|
PUSH r9
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro POP reg
|
|
|
|
ld.ab \reg, [sp, 4]
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro POPAX aux
|
|
|
|
POP r9
|
|
|
|
sr r9, [\aux]
|
|
|
|
.endm
|
|
|
|
|
2013-01-18 17:42:18 +08:00
|
|
|
/*--------------------------------------------------------------
|
2013-05-28 15:54:43 +08:00
|
|
|
* Helpers to save/restore Scratch Regs:
|
|
|
|
* used by Interrupt/Exception Prologue/Epilogue
|
2013-01-18 17:42:18 +08:00
|
|
|
*-------------------------------------------------------------*/
|
2013-05-28 15:54:43 +08:00
|
|
|
.macro SAVE_R0_TO_R12
|
|
|
|
PUSH r0
|
|
|
|
PUSH r1
|
|
|
|
PUSH r2
|
|
|
|
PUSH r3
|
|
|
|
PUSH r4
|
|
|
|
PUSH r5
|
|
|
|
PUSH r6
|
|
|
|
PUSH r7
|
|
|
|
PUSH r8
|
|
|
|
PUSH r9
|
|
|
|
PUSH r10
|
|
|
|
PUSH r11
|
|
|
|
PUSH r12
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro RESTORE_R12_TO_R0
|
|
|
|
POP r12
|
|
|
|
POP r11
|
|
|
|
POP r10
|
|
|
|
POP r9
|
|
|
|
POP r8
|
|
|
|
POP r7
|
|
|
|
POP r6
|
|
|
|
POP r5
|
|
|
|
POP r4
|
|
|
|
POP r3
|
|
|
|
POP r2
|
|
|
|
POP r1
|
|
|
|
POP r0
|
ARC: pt_regs update #4: r25 saved/restored unconditionally
(This is a VERY IMP change for low level interrupt/exception handling)
-----------------------------------------------------------------------
WHAT
-----------------------------------------------------------------------
* User 25 now saved in pt_regs->user_r25 (vs. tsk->thread_info.user_r25)
* This allows Low level interrupt code to unconditionally save r25
(vs. the prev version which would only do it for U->K transition).
Ofcourse for nested interrupts, only the pt_regs->user_r25 of
bottom-most frame is useful.
* simplifies the interrupt prologue/epilogue
* Needed for ARCv2 ISA code and done here to keep design similar with
ARCompact event handling
-----------------------------------------------------------------------
WHY
-------------------------------------------------------------------------
With CONFIG_ARC_CURR_IN_REG, r25 is used to cache "current" task pointer
in kernel mode. So when entering kernel mode from User Mode
- user r25 is specially safe-kept (it being a callee reg is NOT part of
pt_regs which are saved by default on each interrupt/trap/exception)
- r25 loaded with current task pointer.
Further, if interrupt was taken in kernel mode, this is skipped since we
know that r25 already has valid "current" pointer.
With 2 level of interrupts in ARCompact ISA, detecting this is difficult
but still possible, since we could be in kernel mode but r25 not already saved
(in fact the stack itself might not have been switched).
A. User mode
B. L1 IRQ taken
C. L2 IRQ taken (while on 1st line of L1 ISR)
So in #C, although in kernel mode, r25 not saved (infact SP not
switched at all)
Given that ARcompact has manual stack switching, we could use a bit of
trickey - The low level code would make sure that SP is only set to kernel
mode value at the very end (after saving r25). So a non kernel mode SP,
even if in kernel mode, meant r25 was NOT saved.
The same paradigm won't work in ARCv2 ISA since SP is auto-switched so
it's setting can't be delayed/constrained.
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
2013-05-28 16:20:41 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_ARC_CURR_IN_REG
|
|
|
|
ld r25, [sp, 12]
|
|
|
|
#endif
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
2013-05-28 15:54:43 +08:00
|
|
|
* Helpers to save/restore callee-saved regs:
|
|
|
|
* used by several macros below
|
2013-01-18 17:42:18 +08:00
|
|
|
*-------------------------------------------------------------*/
|
2013-05-28 15:54:43 +08:00
|
|
|
.macro SAVE_R13_TO_R24
|
|
|
|
PUSH r13
|
|
|
|
PUSH r14
|
|
|
|
PUSH r15
|
|
|
|
PUSH r16
|
|
|
|
PUSH r17
|
|
|
|
PUSH r18
|
|
|
|
PUSH r19
|
|
|
|
PUSH r20
|
|
|
|
PUSH r21
|
|
|
|
PUSH r22
|
|
|
|
PUSH r23
|
|
|
|
PUSH r24
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro RESTORE_R24_TO_R13
|
|
|
|
POP r24
|
|
|
|
POP r23
|
|
|
|
POP r22
|
|
|
|
POP r21
|
|
|
|
POP r20
|
|
|
|
POP r19
|
|
|
|
POP r18
|
|
|
|
POP r17
|
|
|
|
POP r16
|
|
|
|
POP r15
|
|
|
|
POP r14
|
|
|
|
POP r13
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
ARC: pt_regs update #4: r25 saved/restored unconditionally
(This is a VERY IMP change for low level interrupt/exception handling)
-----------------------------------------------------------------------
WHAT
-----------------------------------------------------------------------
* User 25 now saved in pt_regs->user_r25 (vs. tsk->thread_info.user_r25)
* This allows Low level interrupt code to unconditionally save r25
(vs. the prev version which would only do it for U->K transition).
Ofcourse for nested interrupts, only the pt_regs->user_r25 of
bottom-most frame is useful.
* simplifies the interrupt prologue/epilogue
* Needed for ARCv2 ISA code and done here to keep design similar with
ARCompact event handling
-----------------------------------------------------------------------
WHY
-------------------------------------------------------------------------
With CONFIG_ARC_CURR_IN_REG, r25 is used to cache "current" task pointer
in kernel mode. So when entering kernel mode from User Mode
- user r25 is specially safe-kept (it being a callee reg is NOT part of
pt_regs which are saved by default on each interrupt/trap/exception)
- r25 loaded with current task pointer.
Further, if interrupt was taken in kernel mode, this is skipped since we
know that r25 already has valid "current" pointer.
With 2 level of interrupts in ARCompact ISA, detecting this is difficult
but still possible, since we could be in kernel mode but r25 not already saved
(in fact the stack itself might not have been switched).
A. User mode
B. L1 IRQ taken
C. L2 IRQ taken (while on 1st line of L1 ISR)
So in #C, although in kernel mode, r25 not saved (infact SP not
switched at all)
Given that ARcompact has manual stack switching, we could use a bit of
trickey - The low level code would make sure that SP is only set to kernel
mode value at the very end (after saving r25). So a non kernel mode SP,
even if in kernel mode, meant r25 was NOT saved.
The same paradigm won't work in ARCv2 ISA since SP is auto-switched so
it's setting can't be delayed/constrained.
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
2013-05-28 16:20:41 +08:00
|
|
|
#define OFF_USER_R25_FROM_R24 (SZ_CALLEE_REGS + SZ_PT_REGS - 8)/4
|
2013-01-18 17:42:18 +08:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
2013-05-28 15:54:43 +08:00
|
|
|
* Collect User Mode callee regs as struct callee_regs - needed by
|
|
|
|
* fork/do_signal/unaligned-access-emulation.
|
|
|
|
* (By default only scratch regs are saved on entry to kernel)
|
|
|
|
*
|
|
|
|
* Special handling for r25 if used for caching Task Pointer.
|
|
|
|
* It would have been saved in task->thread.user_r25 already, but to keep
|
|
|
|
* the interface same it is copied into regular r25 placeholder in
|
|
|
|
* struct callee_regs.
|
2013-01-18 17:42:18 +08:00
|
|
|
*-------------------------------------------------------------*/
|
|
|
|
.macro SAVE_CALLEE_SAVED_USER
|
2013-05-28 15:54:43 +08:00
|
|
|
|
|
|
|
SAVE_R13_TO_R24
|
2013-02-11 22:22:57 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_ARC_CURR_IN_REG
|
|
|
|
; Retrieve orig r25 and save it on stack
|
ARC: pt_regs update #4: r25 saved/restored unconditionally
(This is a VERY IMP change for low level interrupt/exception handling)
-----------------------------------------------------------------------
WHAT
-----------------------------------------------------------------------
* User 25 now saved in pt_regs->user_r25 (vs. tsk->thread_info.user_r25)
* This allows Low level interrupt code to unconditionally save r25
(vs. the prev version which would only do it for U->K transition).
Ofcourse for nested interrupts, only the pt_regs->user_r25 of
bottom-most frame is useful.
* simplifies the interrupt prologue/epilogue
* Needed for ARCv2 ISA code and done here to keep design similar with
ARCompact event handling
-----------------------------------------------------------------------
WHY
-------------------------------------------------------------------------
With CONFIG_ARC_CURR_IN_REG, r25 is used to cache "current" task pointer
in kernel mode. So when entering kernel mode from User Mode
- user r25 is specially safe-kept (it being a callee reg is NOT part of
pt_regs which are saved by default on each interrupt/trap/exception)
- r25 loaded with current task pointer.
Further, if interrupt was taken in kernel mode, this is skipped since we
know that r25 already has valid "current" pointer.
With 2 level of interrupts in ARCompact ISA, detecting this is difficult
but still possible, since we could be in kernel mode but r25 not already saved
(in fact the stack itself might not have been switched).
A. User mode
B. L1 IRQ taken
C. L2 IRQ taken (while on 1st line of L1 ISR)
So in #C, although in kernel mode, r25 not saved (infact SP not
switched at all)
Given that ARcompact has manual stack switching, we could use a bit of
trickey - The low level code would make sure that SP is only set to kernel
mode value at the very end (after saving r25). So a non kernel mode SP,
even if in kernel mode, meant r25 was NOT saved.
The same paradigm won't work in ARCv2 ISA since SP is auto-switched so
it's setting can't be delayed/constrained.
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
2013-05-28 16:20:41 +08:00
|
|
|
ld.as r12, [sp, OFF_USER_R25_FROM_R24]
|
2013-02-11 22:22:57 +08:00
|
|
|
st.a r12, [sp, -4]
|
|
|
|
#else
|
2013-05-28 15:54:43 +08:00
|
|
|
PUSH r25
|
2013-02-11 22:22:57 +08:00
|
|
|
#endif
|
2013-01-18 17:42:18 +08:00
|
|
|
|
|
|
|
.endm
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
2013-05-28 15:54:43 +08:00
|
|
|
* Save kernel Mode callee regs at the time of Contect Switch.
|
|
|
|
*
|
|
|
|
* Special handling for r25 if used for caching Task Pointer.
|
|
|
|
* Kernel simply skips saving it since it will be loaded with
|
|
|
|
* incoming task pointer anyways
|
2013-01-18 17:42:18 +08:00
|
|
|
*-------------------------------------------------------------*/
|
|
|
|
.macro SAVE_CALLEE_SAVED_KERNEL
|
2013-05-28 15:54:43 +08:00
|
|
|
|
|
|
|
SAVE_R13_TO_R24
|
|
|
|
|
2013-02-11 22:22:57 +08:00
|
|
|
#ifdef CONFIG_ARC_CURR_IN_REG
|
2013-05-28 00:13:41 +08:00
|
|
|
sub sp, sp, 4
|
2013-02-11 22:22:57 +08:00
|
|
|
#else
|
2013-05-28 15:54:43 +08:00
|
|
|
PUSH r25
|
2013-02-11 22:22:57 +08:00
|
|
|
#endif
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
2013-05-28 15:54:43 +08:00
|
|
|
* Opposite of SAVE_CALLEE_SAVED_KERNEL
|
2013-01-18 17:42:18 +08:00
|
|
|
*-------------------------------------------------------------*/
|
|
|
|
.macro RESTORE_CALLEE_SAVED_KERNEL
|
|
|
|
|
2013-02-11 22:22:57 +08:00
|
|
|
#ifdef CONFIG_ARC_CURR_IN_REG
|
2013-05-28 00:13:41 +08:00
|
|
|
add sp, sp, 4 /* skip usual r25 placeholder */
|
2013-02-11 22:22:57 +08:00
|
|
|
#else
|
2013-05-28 15:54:43 +08:00
|
|
|
POP r25
|
2013-02-11 22:22:57 +08:00
|
|
|
#endif
|
2013-05-28 15:54:43 +08:00
|
|
|
RESTORE_R24_TO_R13
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
2013-01-18 17:42:19 +08:00
|
|
|
/*--------------------------------------------------------------
|
2013-05-28 15:54:43 +08:00
|
|
|
* Opposite of SAVE_CALLEE_SAVED_USER
|
|
|
|
*
|
|
|
|
* ptrace tracer or unaligned-access fixup might have changed a user mode
|
|
|
|
* callee reg which is saved back to usual r25 storage location
|
2013-01-18 17:42:19 +08:00
|
|
|
*-------------------------------------------------------------*/
|
|
|
|
.macro RESTORE_CALLEE_SAVED_USER
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARC_CURR_IN_REG
|
|
|
|
ld.ab r12, [sp, 4]
|
ARC: pt_regs update #4: r25 saved/restored unconditionally
(This is a VERY IMP change for low level interrupt/exception handling)
-----------------------------------------------------------------------
WHAT
-----------------------------------------------------------------------
* User 25 now saved in pt_regs->user_r25 (vs. tsk->thread_info.user_r25)
* This allows Low level interrupt code to unconditionally save r25
(vs. the prev version which would only do it for U->K transition).
Ofcourse for nested interrupts, only the pt_regs->user_r25 of
bottom-most frame is useful.
* simplifies the interrupt prologue/epilogue
* Needed for ARCv2 ISA code and done here to keep design similar with
ARCompact event handling
-----------------------------------------------------------------------
WHY
-------------------------------------------------------------------------
With CONFIG_ARC_CURR_IN_REG, r25 is used to cache "current" task pointer
in kernel mode. So when entering kernel mode from User Mode
- user r25 is specially safe-kept (it being a callee reg is NOT part of
pt_regs which are saved by default on each interrupt/trap/exception)
- r25 loaded with current task pointer.
Further, if interrupt was taken in kernel mode, this is skipped since we
know that r25 already has valid "current" pointer.
With 2 level of interrupts in ARCompact ISA, detecting this is difficult
but still possible, since we could be in kernel mode but r25 not already saved
(in fact the stack itself might not have been switched).
A. User mode
B. L1 IRQ taken
C. L2 IRQ taken (while on 1st line of L1 ISR)
So in #C, although in kernel mode, r25 not saved (infact SP not
switched at all)
Given that ARcompact has manual stack switching, we could use a bit of
trickey - The low level code would make sure that SP is only set to kernel
mode value at the very end (after saving r25). So a non kernel mode SP,
even if in kernel mode, meant r25 was NOT saved.
The same paradigm won't work in ARCv2 ISA since SP is auto-switched so
it's setting can't be delayed/constrained.
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
2013-05-28 16:20:41 +08:00
|
|
|
st.as r12, [sp, OFF_USER_R25_FROM_R24]
|
2013-01-18 17:42:19 +08:00
|
|
|
#else
|
2013-05-28 15:54:43 +08:00
|
|
|
POP r25
|
2013-01-18 17:42:19 +08:00
|
|
|
#endif
|
2013-05-28 15:54:43 +08:00
|
|
|
RESTORE_R24_TO_R13
|
2013-01-18 17:42:19 +08:00
|
|
|
.endm
|
|
|
|
|
2013-01-18 17:42:18 +08:00
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* Super FAST Restore callee saved regs by simply re-adjusting SP
|
|
|
|
*-------------------------------------------------------------*/
|
|
|
|
.macro DISCARD_CALLEE_SAVED_USER
|
2013-05-28 00:13:41 +08:00
|
|
|
add sp, sp, SZ_CALLEE_REGS
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------
|
|
|
|
* given a tsk struct, get to the base of it's kernel mode stack
|
|
|
|
* tsk->thread_info is really a PAGE, whose bottom hoists stack
|
|
|
|
* which grows upwards towards thread_info
|
|
|
|
*------------------------------------------------------------*/
|
|
|
|
|
|
|
|
.macro GET_TSK_STACK_BASE tsk, out
|
|
|
|
|
|
|
|
/* Get task->thread_info (this is essentially start of a PAGE) */
|
|
|
|
ld \out, [\tsk, TASK_THREAD_INFO]
|
|
|
|
|
|
|
|
/* Go to end of page where stack begins (grows upwards) */
|
2013-05-28 12:04:45 +08:00
|
|
|
add2 \out, \out, (THREAD_SIZE)/4
|
2013-01-18 17:42:18 +08:00
|
|
|
|
|
|
|
.endm
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* Switch to Kernel Mode stack if SP points to User Mode stack
|
|
|
|
*
|
|
|
|
* Entry : r9 contains pre-IRQ/exception/trap status32
|
|
|
|
* Exit : SP is set to kernel mode stack pointer
|
2013-02-11 22:22:57 +08:00
|
|
|
* If CURR_IN_REG, r25 set to "current" task pointer
|
2013-01-18 17:42:18 +08:00
|
|
|
* Clobbers: r9
|
|
|
|
*-------------------------------------------------------------*/
|
|
|
|
|
|
|
|
.macro SWITCH_TO_KERNEL_STK
|
|
|
|
|
|
|
|
/* User Mode when this happened ? Yes: Proceed to switch stack */
|
|
|
|
bbit1 r9, STATUS_U_BIT, 88f
|
|
|
|
|
|
|
|
/* OK we were already in kernel mode when this event happened, thus can
|
|
|
|
* assume SP is kernel mode SP. _NO_ need to do any stack switching
|
|
|
|
*/
|
|
|
|
|
2013-01-18 17:42:22 +08:00
|
|
|
#ifdef CONFIG_ARC_COMPACT_IRQ_LEVELS
|
|
|
|
/* However....
|
|
|
|
* If Level 2 Interrupts enabled, we may end up with a corner case:
|
|
|
|
* 1. User Task executing
|
|
|
|
* 2. L1 IRQ taken, ISR starts (CPU auto-switched to KERNEL mode)
|
|
|
|
* 3. But before it could switch SP from USER to KERNEL stack
|
|
|
|
* a L2 IRQ "Interrupts" L1
|
|
|
|
* Thay way although L2 IRQ happened in Kernel mode, stack is still
|
|
|
|
* not switched.
|
|
|
|
* To handle this, we may need to switch stack even if in kernel mode
|
|
|
|
* provided SP has values in range of USER mode stack ( < 0x7000_0000 )
|
|
|
|
*/
|
|
|
|
brlo sp, VMALLOC_START, 88f
|
|
|
|
|
|
|
|
/* TODO: vineetg:
|
|
|
|
* We need to be a bit more cautious here. What if a kernel bug in
|
|
|
|
* L1 ISR, caused SP to go whaco (some small value which looks like
|
|
|
|
* USER stk) and then we take L2 ISR.
|
|
|
|
* Above brlo alone would treat it as a valid L1-L2 sceanrio
|
|
|
|
* instead of shouting alound
|
|
|
|
* The only feasible way is to make sure this L2 happened in
|
|
|
|
* L1 prelogue ONLY i.e. ilink2 is less than a pre-set marker in
|
|
|
|
* L1 ISR before it switches stack
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2013-01-18 17:42:18 +08:00
|
|
|
/* Save Pre Intr/Exception KERNEL MODE SP on kernel stack
|
|
|
|
* safe-keeping not really needed, but it keeps the epilogue code
|
|
|
|
* (SP restore) simpler/uniform.
|
|
|
|
*/
|
2013-05-27 21:21:27 +08:00
|
|
|
b.d 66f
|
|
|
|
mov r9, sp
|
2013-01-18 17:42:18 +08:00
|
|
|
|
|
|
|
88: /*------Intr/Ecxp happened in user mode, "switch" stack ------ */
|
|
|
|
|
|
|
|
GET_CURR_TASK_ON_CPU r9
|
|
|
|
|
|
|
|
/* With current tsk in r9, get it's kernel mode stack base */
|
|
|
|
GET_TSK_STACK_BASE r9, r9
|
|
|
|
|
2013-05-27 21:21:27 +08:00
|
|
|
66:
|
ARC: pt_regs update #4: r25 saved/restored unconditionally
(This is a VERY IMP change for low level interrupt/exception handling)
-----------------------------------------------------------------------
WHAT
-----------------------------------------------------------------------
* User 25 now saved in pt_regs->user_r25 (vs. tsk->thread_info.user_r25)
* This allows Low level interrupt code to unconditionally save r25
(vs. the prev version which would only do it for U->K transition).
Ofcourse for nested interrupts, only the pt_regs->user_r25 of
bottom-most frame is useful.
* simplifies the interrupt prologue/epilogue
* Needed for ARCv2 ISA code and done here to keep design similar with
ARCompact event handling
-----------------------------------------------------------------------
WHY
-------------------------------------------------------------------------
With CONFIG_ARC_CURR_IN_REG, r25 is used to cache "current" task pointer
in kernel mode. So when entering kernel mode from User Mode
- user r25 is specially safe-kept (it being a callee reg is NOT part of
pt_regs which are saved by default on each interrupt/trap/exception)
- r25 loaded with current task pointer.
Further, if interrupt was taken in kernel mode, this is skipped since we
know that r25 already has valid "current" pointer.
With 2 level of interrupts in ARCompact ISA, detecting this is difficult
but still possible, since we could be in kernel mode but r25 not already saved
(in fact the stack itself might not have been switched).
A. User mode
B. L1 IRQ taken
C. L2 IRQ taken (while on 1st line of L1 ISR)
So in #C, although in kernel mode, r25 not saved (infact SP not
switched at all)
Given that ARcompact has manual stack switching, we could use a bit of
trickey - The low level code would make sure that SP is only set to kernel
mode value at the very end (after saving r25). So a non kernel mode SP,
even if in kernel mode, meant r25 was NOT saved.
The same paradigm won't work in ARCv2 ISA since SP is auto-switched so
it's setting can't be delayed/constrained.
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
2013-05-28 16:20:41 +08:00
|
|
|
#ifdef CONFIG_ARC_CURR_IN_REG
|
|
|
|
/*
|
|
|
|
* Treat r25 as scratch reg, save it on stack first
|
|
|
|
* Load it with current task pointer
|
|
|
|
*/
|
|
|
|
st r25, [r9, -4]
|
|
|
|
GET_CURR_TASK_ON_CPU r25
|
|
|
|
#endif
|
|
|
|
|
2013-01-18 17:42:18 +08:00
|
|
|
/* Save Pre Intr/Exception User SP on kernel stack */
|
2013-06-11 21:26:54 +08:00
|
|
|
st.a sp, [r9, -16] ; Make room for orig_r0, ECR, user_r25
|
2013-01-18 17:42:18 +08:00
|
|
|
|
|
|
|
/* CAUTION:
|
|
|
|
* SP should be set at the very end when we are done with everything
|
|
|
|
* In case of 2 levels of interrupt we depend on value of SP to assume
|
|
|
|
* that everything else is done (loading r25 etc)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* set SP to point to kernel mode stack */
|
|
|
|
mov sp, r9
|
|
|
|
|
2013-05-27 21:21:27 +08:00
|
|
|
/* ----- Stack Switched to kernel Mode, Now save REG FILE ----- */
|
2013-01-18 17:42:18 +08:00
|
|
|
|
|
|
|
.endm
|
|
|
|
|
|
|
|
/*------------------------------------------------------------
|
|
|
|
* "FAKE" a rtie to return from CPU Exception context
|
|
|
|
* This is to re-enable Exceptions within exception
|
|
|
|
* Look at EV_ProtV to see how this is actually used
|
|
|
|
*-------------------------------------------------------------*/
|
|
|
|
|
2015-02-27 19:13:08 +08:00
|
|
|
.macro FAKE_RET_FROM_EXCPN
|
|
|
|
|
|
|
|
ld r9, [sp, PT_status32]
|
|
|
|
bic r9, r9, (STATUS_U_MASK|STATUS_DE_MASK)
|
|
|
|
bset r9, r9, STATUS_L_BIT
|
|
|
|
sr r9, [erstatus]
|
|
|
|
mov r9, 55f
|
|
|
|
sr r9, [eret]
|
2013-01-18 17:42:18 +08:00
|
|
|
|
|
|
|
rtie
|
|
|
|
55:
|
|
|
|
.endm
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @reg [OUT] &thread_info of "current"
|
|
|
|
*/
|
|
|
|
.macro GET_CURR_THR_INFO_FROM_SP reg
|
2013-05-28 15:54:43 +08:00
|
|
|
bic \reg, sp, (THREAD_SIZE - 1)
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @reg [OUT] thread_info->flags of "current"
|
|
|
|
*/
|
|
|
|
.macro GET_CURR_THR_INFO_FLAGS reg
|
|
|
|
GET_CURR_THR_INFO_FROM_SP \reg
|
|
|
|
ld \reg, [\reg, THREAD_INFO_FLAGS]
|
|
|
|
.endm
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
2014-10-13 17:42:25 +08:00
|
|
|
* For early Exception/ISR Prologue, a core reg is temporarily needed to
|
2013-01-18 17:42:18 +08:00
|
|
|
* code the rest of prolog (stack switching). This is done by stashing
|
|
|
|
* it to memory (non-SMP case) or SCRATCH0 Aux Reg (SMP).
|
|
|
|
*
|
|
|
|
* Before saving the full regfile - this reg is restored back, only
|
2013-07-09 17:37:13 +08:00
|
|
|
* to be saved again on kernel mode stack, as part of pt_regs.
|
2013-01-18 17:42:18 +08:00
|
|
|
*-------------------------------------------------------------*/
|
2014-10-13 17:42:25 +08:00
|
|
|
.macro PROLOG_FREEUP_REG reg, mem
|
2013-01-18 17:42:23 +08:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
sr \reg, [ARC_REG_SCRATCH_DATA0]
|
|
|
|
#else
|
2014-10-13 17:42:25 +08:00
|
|
|
st \reg, [\mem]
|
2013-01-18 17:42:23 +08:00
|
|
|
#endif
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
2014-10-13 17:42:25 +08:00
|
|
|
.macro PROLOG_RESTORE_REG reg, mem
|
2013-01-18 17:42:23 +08:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
lr \reg, [ARC_REG_SCRATCH_DATA0]
|
|
|
|
#else
|
2014-10-13 17:42:25 +08:00
|
|
|
ld \reg, [\mem]
|
2013-01-18 17:42:23 +08:00
|
|
|
#endif
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
2013-07-09 17:37:13 +08:00
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* Exception Entry prologue
|
|
|
|
* -Switches stack to K mode (if not already)
|
|
|
|
* -Saves the register file
|
|
|
|
*
|
|
|
|
* After this it is safe to call the "C" handlers
|
|
|
|
*-------------------------------------------------------------*/
|
|
|
|
.macro EXCEPTION_PROLOGUE
|
|
|
|
|
|
|
|
/* Need at least 1 reg to code the early exception prologue */
|
2014-10-13 17:42:25 +08:00
|
|
|
PROLOG_FREEUP_REG r9, @ex_saved_reg1
|
2013-07-09 17:37:13 +08:00
|
|
|
|
|
|
|
/* U/K mode at time of exception (stack not switched if already K) */
|
|
|
|
lr r9, [erstatus]
|
|
|
|
|
|
|
|
/* ARC700 doesn't provide auto-stack switching */
|
|
|
|
SWITCH_TO_KERNEL_STK
|
|
|
|
|
2013-06-11 21:26:54 +08:00
|
|
|
lr r9, [ecr]
|
|
|
|
st r9, [sp, 8] /* ECR */
|
2013-02-11 22:31:24 +08:00
|
|
|
st r0, [sp, 4] /* orig_r0, needed only for sys calls */
|
|
|
|
|
2013-01-18 17:42:18 +08:00
|
|
|
/* Restore r9 used to code the early prologue */
|
2014-10-13 17:42:25 +08:00
|
|
|
PROLOG_RESTORE_REG r9, @ex_saved_reg1
|
2013-01-18 17:42:18 +08:00
|
|
|
|
2013-05-28 15:54:43 +08:00
|
|
|
SAVE_R0_TO_R12
|
|
|
|
PUSH gp
|
|
|
|
PUSH fp
|
|
|
|
PUSH blink
|
|
|
|
PUSHAX eret
|
|
|
|
PUSHAX erstatus
|
|
|
|
PUSH lp_count
|
|
|
|
PUSHAX lp_end
|
|
|
|
PUSHAX lp_start
|
|
|
|
PUSHAX erbta
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* Restore all registers used by system call or Exceptions
|
|
|
|
* SP should always be pointing to the next free stack element
|
|
|
|
* when entering this macro.
|
|
|
|
*
|
|
|
|
* NOTE:
|
|
|
|
*
|
|
|
|
* It is recommended that lp_count/ilink1/ilink2 not be used as a dest reg
|
|
|
|
* for memory load operations. If used in that way interrupts are deffered
|
|
|
|
* by hardware and that is not good.
|
|
|
|
*-------------------------------------------------------------*/
|
2014-10-14 14:53:50 +08:00
|
|
|
.macro EXCEPTION_EPILOGUE
|
2013-05-28 15:54:43 +08:00
|
|
|
POPAX erbta
|
|
|
|
POPAX lp_start
|
|
|
|
POPAX lp_end
|
|
|
|
|
|
|
|
POP r9
|
|
|
|
mov lp_count, r9 ;LD to lp_count is not allowed
|
|
|
|
|
|
|
|
POPAX erstatus
|
|
|
|
POPAX eret
|
|
|
|
POP blink
|
|
|
|
POP fp
|
|
|
|
POP gp
|
|
|
|
RESTORE_R12_TO_R0
|
2013-01-18 17:42:18 +08:00
|
|
|
|
|
|
|
ld sp, [sp] /* restore original sp */
|
2013-06-11 21:26:54 +08:00
|
|
|
/* orig_r0, ECR, user_r25 skipped automatically */
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
2014-10-13 20:43:35 +08:00
|
|
|
/* Dummy ECR values for Interrupts */
|
|
|
|
#define event_IRQ1 0x0031abcd
|
|
|
|
#define event_IRQ2 0x0032abcd
|
2013-01-18 17:42:18 +08:00
|
|
|
|
2014-10-13 20:43:35 +08:00
|
|
|
.macro INTERRUPT_PROLOGUE LVL
|
2013-01-18 17:42:18 +08:00
|
|
|
|
2014-10-13 20:43:35 +08:00
|
|
|
/* free up r9 as scratchpad */
|
|
|
|
PROLOG_FREEUP_REG r9, @int\LVL\()_saved_reg
|
2013-01-18 17:42:18 +08:00
|
|
|
|
2014-10-13 20:43:35 +08:00
|
|
|
/* Which mode (user/kernel) was the system in when intr occurred */
|
|
|
|
lr r9, [status32_l\LVL\()]
|
2013-05-28 15:54:43 +08:00
|
|
|
|
2014-10-13 20:43:35 +08:00
|
|
|
SWITCH_TO_KERNEL_STK
|
2013-01-18 17:42:22 +08:00
|
|
|
|
2014-10-13 17:42:25 +08:00
|
|
|
/* restore original r9 */
|
2014-10-13 20:43:35 +08:00
|
|
|
PROLOG_RESTORE_REG r9, @int\LVL\()_saved_reg
|
2013-01-18 17:42:22 +08:00
|
|
|
|
2014-10-13 20:43:35 +08:00
|
|
|
/* now we are ready to save the remaining context */
|
|
|
|
st 0x003\LVL\()abcd, [sp, 8] /* Dummy ECR */
|
2013-01-18 17:42:22 +08:00
|
|
|
st 0, [sp, 4] /* orig_r0 , N/A for IRQ */
|
2013-05-28 15:54:43 +08:00
|
|
|
|
|
|
|
SAVE_R0_TO_R12
|
|
|
|
PUSH gp
|
|
|
|
PUSH fp
|
|
|
|
PUSH blink
|
2014-10-13 20:43:35 +08:00
|
|
|
PUSH ilink\LVL\()
|
|
|
|
PUSHAX status32_l\LVL\()
|
2013-05-28 15:54:43 +08:00
|
|
|
PUSH lp_count
|
|
|
|
PUSHAX lp_end
|
|
|
|
PUSHAX lp_start
|
2014-10-13 20:43:35 +08:00
|
|
|
PUSHAX bta_l\LVL\()
|
2013-01-18 17:42:22 +08:00
|
|
|
.endm
|
|
|
|
|
2013-01-18 17:42:18 +08:00
|
|
|
/*--------------------------------------------------------------
|
|
|
|
* Restore all registers used by interrupt handlers.
|
|
|
|
*
|
|
|
|
* NOTE:
|
|
|
|
*
|
|
|
|
* It is recommended that lp_count/ilink1/ilink2 not be used as a dest reg
|
|
|
|
* for memory load operations. If used in that way interrupts are deffered
|
|
|
|
* by hardware and that is not good.
|
|
|
|
*-------------------------------------------------------------*/
|
2014-10-13 20:43:35 +08:00
|
|
|
.macro INTERRUPT_EPILOGUE LVL
|
|
|
|
POPAX bta_l\LVL\()
|
2013-05-28 15:54:43 +08:00
|
|
|
POPAX lp_start
|
|
|
|
POPAX lp_end
|
|
|
|
|
|
|
|
POP r9
|
|
|
|
mov lp_count, r9 ;LD to lp_count is not allowed
|
|
|
|
|
2014-10-13 20:43:35 +08:00
|
|
|
POPAX status32_l\LVL\()
|
|
|
|
POP ilink\LVL\()
|
2013-05-28 15:54:43 +08:00
|
|
|
POP blink
|
|
|
|
POP fp
|
|
|
|
POP gp
|
|
|
|
RESTORE_R12_TO_R0
|
2013-01-18 17:42:18 +08:00
|
|
|
|
|
|
|
ld sp, [sp] /* restore original sp */
|
2013-06-11 21:26:54 +08:00
|
|
|
/* orig_r0, ECR, user_r25 skipped automatically */
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
|
|
|
/* Get CPU-ID of this core */
|
|
|
|
.macro GET_CPU_ID reg
|
|
|
|
lr \reg, [identity]
|
|
|
|
lsr \reg, \reg, 8
|
|
|
|
bmsk \reg, \reg, 7
|
|
|
|
.endm
|
|
|
|
|
2013-01-18 17:42:23 +08:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
|
|
|
|
/*-------------------------------------------------
|
|
|
|
* Retrieve the current running task on this CPU
|
|
|
|
* 1. Determine curr CPU id.
|
|
|
|
* 2. Use it to index into _current_task[ ]
|
|
|
|
*/
|
|
|
|
.macro GET_CURR_TASK_ON_CPU reg
|
|
|
|
GET_CPU_ID \reg
|
|
|
|
ld.as \reg, [@_current_task, \reg]
|
|
|
|
.endm
|
|
|
|
|
|
|
|
/*-------------------------------------------------
|
|
|
|
* Save a new task as the "current" task on this CPU
|
|
|
|
* 1. Determine curr CPU id.
|
|
|
|
* 2. Use it to index into _current_task[ ]
|
|
|
|
*
|
|
|
|
* Coded differently than GET_CURR_TASK_ON_CPU (which uses LD.AS)
|
|
|
|
* because ST r0, [r1, offset] can ONLY have s9 @offset
|
|
|
|
* while LD can take s9 (4 byte insn) or LIMM (8 byte insn)
|
|
|
|
*/
|
|
|
|
|
|
|
|
.macro SET_CURR_TASK_ON_CPU tsk, tmp
|
|
|
|
GET_CPU_ID \tmp
|
|
|
|
add2 \tmp, @_current_task, \tmp
|
|
|
|
st \tsk, [\tmp]
|
|
|
|
#ifdef CONFIG_ARC_CURR_IN_REG
|
|
|
|
mov r25, \tsk
|
|
|
|
#endif
|
|
|
|
|
|
|
|
.endm
|
|
|
|
|
|
|
|
|
|
|
|
#else /* Uniprocessor implementation of macros */
|
|
|
|
|
2013-01-18 17:42:18 +08:00
|
|
|
.macro GET_CURR_TASK_ON_CPU reg
|
|
|
|
ld \reg, [@_current_task]
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro SET_CURR_TASK_ON_CPU tsk, tmp
|
|
|
|
st \tsk, [@_current_task]
|
2013-02-11 22:22:57 +08:00
|
|
|
#ifdef CONFIG_ARC_CURR_IN_REG
|
|
|
|
mov r25, \tsk
|
|
|
|
#endif
|
2013-01-18 17:42:18 +08:00
|
|
|
.endm
|
|
|
|
|
2013-01-18 17:42:23 +08:00
|
|
|
#endif /* SMP / UNI */
|
|
|
|
|
2013-01-18 17:42:18 +08:00
|
|
|
/* ------------------------------------------------------------------
|
|
|
|
* Get the ptr to some field of Current Task at @off in task struct
|
2013-02-11 22:22:57 +08:00
|
|
|
* -Uses r25 for Current task ptr if that is enabled
|
2013-01-18 17:42:18 +08:00
|
|
|
*/
|
|
|
|
|
2013-02-11 22:22:57 +08:00
|
|
|
#ifdef CONFIG_ARC_CURR_IN_REG
|
|
|
|
|
|
|
|
.macro GET_CURR_TASK_FIELD_PTR off, reg
|
|
|
|
add \reg, r25, \off
|
|
|
|
.endm
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2013-01-18 17:42:18 +08:00
|
|
|
.macro GET_CURR_TASK_FIELD_PTR off, reg
|
|
|
|
GET_CURR_TASK_ON_CPU \reg
|
|
|
|
add \reg, \reg, \off
|
|
|
|
.endm
|
|
|
|
|
2013-02-11 22:22:57 +08:00
|
|
|
#endif /* CONFIG_ARC_CURR_IN_REG */
|
|
|
|
|
2013-01-18 17:42:18 +08:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
|
|
|
#endif /* __ASM_ARC_ENTRY_H */
|