2005-06-24 07:01:16 +02:00
|
|
|
/*
|
|
|
|
* Low-level exception handling
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*
|
2013-01-05 01:57:17 +01:00
|
|
|
* Copyright (C) 2004 - 2008 by Tensilica Inc.
|
2015-07-16 09:37:31 +02:00
|
|
|
* Copyright (C) 2015 Cadence Design Systems Inc.
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
|
|
|
* Chris Zankel <chris@zankel.net>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
2005-09-09 20:57:26 +02:00
|
|
|
#include <asm/asm-offsets.h>
|
2017-12-10 06:18:47 +01:00
|
|
|
#include <asm/asmmacro.h>
|
2005-06-24 07:01:16 +02:00
|
|
|
#include <asm/processor.h>
|
2010-05-02 10:05:13 +02:00
|
|
|
#include <asm/coprocessor.h>
|
2005-06-24 07:01:16 +02:00
|
|
|
#include <asm/thread_info.h>
|
2016-09-04 20:26:36 +02:00
|
|
|
#include <asm/asm-uaccess.h>
|
2005-06-24 07:01:16 +02:00
|
|
|
#include <asm/unistd.h>
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
#include <asm/current.h>
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/signal.h>
|
2006-12-10 11:18:48 +01:00
|
|
|
#include <asm/tlbflush.h>
|
2008-11-06 15:40:46 +01:00
|
|
|
#include <variant/tie-asm.h>
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Unimplemented features. */
|
|
|
|
|
|
|
|
#undef KERNEL_STACK_OVERFLOW_CHECK
|
|
|
|
|
|
|
|
/* Not well tested.
|
|
|
|
*
|
|
|
|
* - fast_coprocessor
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Macro to find first bit set in WINDOWBASE from the left + 1
|
|
|
|
*
|
|
|
|
* 100....0 -> 1
|
|
|
|
* 010....0 -> 2
|
|
|
|
* 000....1 -> WSBITS
|
|
|
|
*/
|
|
|
|
|
|
|
|
.macro ffs_ws bit mask
|
|
|
|
|
|
|
|
#if XCHAL_HAVE_NSA
|
|
|
|
nsau \bit, \mask # 32-WSBITS ... 31 (32 iff 0)
|
|
|
|
addi \bit, \bit, WSBITS - 32 + 1 # uppest bit set -> return 1
|
|
|
|
#else
|
|
|
|
movi \bit, WSBITS
|
|
|
|
#if WSBITS > 16
|
|
|
|
_bltui \mask, 0x10000, 99f
|
|
|
|
addi \bit, \bit, -16
|
|
|
|
extui \mask, \mask, 16, 16
|
|
|
|
#endif
|
|
|
|
#if WSBITS > 8
|
|
|
|
99: _bltui \mask, 0x100, 99f
|
|
|
|
addi \bit, \bit, -8
|
|
|
|
srli \mask, \mask, 8
|
|
|
|
#endif
|
|
|
|
99: _bltui \mask, 0x10, 99f
|
|
|
|
addi \bit, \bit, -4
|
|
|
|
srli \mask, \mask, 4
|
|
|
|
99: _bltui \mask, 0x4, 99f
|
|
|
|
addi \bit, \bit, -2
|
|
|
|
srli \mask, \mask, 2
|
|
|
|
99: _bltui \mask, 0x2, 99f
|
|
|
|
addi \bit, \bit, -1
|
|
|
|
99:
|
|
|
|
|
|
|
|
#endif
|
|
|
|
.endm
|
|
|
|
|
2015-07-16 09:37:31 +02:00
|
|
|
|
|
|
|
.macro irq_save flags tmp
|
|
|
|
#if XTENSA_FAKE_NMI
|
|
|
|
#if defined(CONFIG_DEBUG_KERNEL) && (LOCKLEVEL | TOPLEVEL) >= XCHAL_DEBUGLEVEL
|
|
|
|
rsr \flags, ps
|
|
|
|
extui \tmp, \flags, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
|
|
|
|
bgei \tmp, LOCKLEVEL, 99f
|
|
|
|
rsil \tmp, LOCKLEVEL
|
|
|
|
99:
|
|
|
|
#else
|
|
|
|
movi \tmp, LOCKLEVEL
|
|
|
|
rsr \flags, ps
|
|
|
|
or \flags, \flags, \tmp
|
|
|
|
xsr \flags, ps
|
|
|
|
rsync
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
rsil \flags, LOCKLEVEL
|
|
|
|
#endif
|
|
|
|
.endm
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
/* ----------------- DEFAULT FIRST LEVEL EXCEPTION HANDLERS ----------------- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First-level exception handler for user exceptions.
|
|
|
|
* Save some special registers, extra states and all registers in the AR
|
|
|
|
* register file that were in use in the user task, and jump to the common
|
|
|
|
* exception code.
|
|
|
|
* We save SAR (used to calculate WMASK), and WB and WS (we don't have to
|
|
|
|
* save them for kernel exceptions).
|
|
|
|
*
|
|
|
|
* Entry condition for user_exception:
|
|
|
|
*
|
|
|
|
* a0: trashed, original value saved on stack (PT_AREG0)
|
|
|
|
* a1: a1
|
|
|
|
* a2: new stack pointer, original value in depc
|
2013-07-03 18:23:28 +02:00
|
|
|
* a3: a3
|
2005-06-24 07:01:16 +02:00
|
|
|
* depc: a2, original value saved on stack (PT_DEPC)
|
2013-07-03 18:23:28 +02:00
|
|
|
* excsave1: dispatch table
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
|
|
|
* PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
|
|
|
|
* < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
|
|
|
|
*
|
|
|
|
* Entry condition for _user_exception:
|
|
|
|
*
|
|
|
|
* a0-a3 and depc have been saved to PT_AREG0...PT_AREG3 and PT_DEPC
|
|
|
|
* excsave has been restored, and
|
|
|
|
* stack pointer (a1) has been set.
|
|
|
|
*
|
tree-wide: Assorted spelling fixes
In particular, several occurances of funny versions of 'success',
'unknown', 'therefore', 'acknowledge', 'argument', 'achieve', 'address',
'beginning', 'desirable', 'separate' and 'necessary' are fixed.
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Cc: Joe Perches <joe@perches.com>
Cc: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2010-02-03 01:01:28 +01:00
|
|
|
* Note: _user_exception might be at an odd address. Don't use call0..call12
|
2005-06-24 07:01:16 +02:00
|
|
|
*/
|
2017-12-04 05:55:35 +01:00
|
|
|
.literal_position
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
ENTRY(user_exception)
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
/* Save a1, a2, a3, and set SP. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, depc
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a1, a2, PT_AREG1
|
|
|
|
s32i a0, a2, PT_AREG2
|
|
|
|
s32i a3, a2, PT_AREG3
|
|
|
|
mov a1, a2
|
|
|
|
|
|
|
|
.globl _user_exception
|
|
|
|
_user_exception:
|
|
|
|
|
|
|
|
/* Save SAR and turn off single stepping */
|
|
|
|
|
|
|
|
movi a2, 0
|
2015-06-25 22:03:29 +02:00
|
|
|
wsr a2, depc # terminate user stack trace with 0
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a3, sar
|
|
|
|
xsr a2, icountlevel
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a3, a1, PT_SAR
|
2007-06-01 02:49:32 +02:00
|
|
|
s32i a2, a1, PT_ICOUNTLEVEL
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2013-02-24 04:35:57 +01:00
|
|
|
#if XCHAL_HAVE_THREADPTR
|
|
|
|
rur a2, threadptr
|
|
|
|
s32i a2, a1, PT_THREADPTR
|
|
|
|
#endif
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
/* Rotate ws so that the current windowbase is at bit0. */
|
|
|
|
/* Assume ws = xxwww1yyyy. Rotate ws right, so that a2 = yyyyxxwww1 */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a2, windowbase
|
|
|
|
rsr a3, windowstart
|
2005-06-24 07:01:16 +02:00
|
|
|
ssr a2
|
|
|
|
s32i a2, a1, PT_WINDOWBASE
|
|
|
|
s32i a3, a1, PT_WINDOWSTART
|
|
|
|
slli a2, a3, 32-WSBITS
|
|
|
|
src a2, a3, a2
|
|
|
|
srli a2, a2, 32-WSBITS
|
|
|
|
s32i a2, a1, PT_WMASK # needed for restoring registers
|
|
|
|
|
|
|
|
/* Save only live registers. */
|
|
|
|
|
|
|
|
_bbsi.l a2, 1, 1f
|
|
|
|
s32i a4, a1, PT_AREG4
|
|
|
|
s32i a5, a1, PT_AREG5
|
|
|
|
s32i a6, a1, PT_AREG6
|
|
|
|
s32i a7, a1, PT_AREG7
|
|
|
|
_bbsi.l a2, 2, 1f
|
|
|
|
s32i a8, a1, PT_AREG8
|
|
|
|
s32i a9, a1, PT_AREG9
|
|
|
|
s32i a10, a1, PT_AREG10
|
|
|
|
s32i a11, a1, PT_AREG11
|
|
|
|
_bbsi.l a2, 3, 1f
|
|
|
|
s32i a12, a1, PT_AREG12
|
|
|
|
s32i a13, a1, PT_AREG13
|
|
|
|
s32i a14, a1, PT_AREG14
|
|
|
|
s32i a15, a1, PT_AREG15
|
|
|
|
_bnei a2, 1, 1f # only one valid frame?
|
|
|
|
|
|
|
|
/* Only one valid frame, skip saving regs. */
|
|
|
|
|
|
|
|
j 2f
|
|
|
|
|
|
|
|
/* Save the remaining registers.
|
|
|
|
* We have to save all registers up to the first '1' from
|
|
|
|
* the right, except the current frame (bit 0).
|
|
|
|
* Assume a2 is: 001001000110001
|
2007-08-22 19:14:51 +02:00
|
|
|
* All register frames starting from the top field to the marked '1'
|
2005-06-24 07:01:16 +02:00
|
|
|
* must be saved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
1: addi a3, a2, -1 # eliminate '1' in bit 0: yyyyxxww0
|
|
|
|
neg a3, a3 # yyyyxxww0 -> YYYYXXWW1+1
|
|
|
|
and a3, a3, a2 # max. only one bit is set
|
|
|
|
|
|
|
|
/* Find number of frames to save */
|
|
|
|
|
|
|
|
ffs_ws a0, a3 # number of frames to the '1' from left
|
|
|
|
|
|
|
|
/* Store information into WMASK:
|
|
|
|
* bits 0..3: xxx1 masked lower 4 bits of the rotated windowstart,
|
|
|
|
* bits 4...: number of valid 4-register frames
|
|
|
|
*/
|
|
|
|
|
|
|
|
slli a3, a0, 4 # number of frames to save in bits 8..4
|
|
|
|
extui a2, a2, 0, 4 # mask for the first 16 registers
|
|
|
|
or a2, a3, a2
|
|
|
|
s32i a2, a1, PT_WMASK # needed when we restore the reg-file
|
|
|
|
|
|
|
|
/* Save 4 registers at a time */
|
|
|
|
|
|
|
|
1: rotw -1
|
|
|
|
s32i a0, a5, PT_AREG_END - 16
|
|
|
|
s32i a1, a5, PT_AREG_END - 12
|
|
|
|
s32i a2, a5, PT_AREG_END - 8
|
|
|
|
s32i a3, a5, PT_AREG_END - 4
|
|
|
|
addi a0, a4, -1
|
|
|
|
addi a1, a5, -16
|
|
|
|
_bnez a0, 1b
|
|
|
|
|
|
|
|
/* WINDOWBASE still in SAR! */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a2, sar # original WINDOWBASE
|
2005-06-24 07:01:16 +02:00
|
|
|
movi a3, 1
|
|
|
|
ssl a2
|
|
|
|
sll a3, a3
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a3, windowstart # set corresponding WINDOWSTART bit
|
|
|
|
wsr a2, windowbase # and WINDOWSTART
|
2005-06-24 07:01:16 +02:00
|
|
|
rsync
|
|
|
|
|
|
|
|
/* We are back to the original stack pointer (a1) */
|
|
|
|
|
2008-02-12 22:17:07 +01:00
|
|
|
2: /* Now, jump to the common exception handler. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
j common_exception
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(user_exception)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* First-level exit handler for kernel exceptions
|
|
|
|
* Save special registers and the live window frame.
|
|
|
|
* Note: Even though we changes the stack pointer, we don't have to do a
|
|
|
|
* MOVSP here, as we do that when we return from the exception.
|
|
|
|
* (See comment in the kernel exception exit code)
|
|
|
|
*
|
|
|
|
* Entry condition for kernel_exception:
|
|
|
|
*
|
|
|
|
* a0: trashed, original value saved on stack (PT_AREG0)
|
|
|
|
* a1: a1
|
|
|
|
* a2: new stack pointer, original in DEPC
|
2013-07-03 18:23:28 +02:00
|
|
|
* a3: a3
|
2005-06-24 07:01:16 +02:00
|
|
|
* depc: a2, original value saved on stack (PT_DEPC)
|
2013-07-03 18:23:28 +02:00
|
|
|
* excsave_1: dispatch table
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
|
|
|
* PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
|
|
|
|
* < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
|
|
|
|
*
|
|
|
|
* Entry condition for _kernel_exception:
|
|
|
|
*
|
|
|
|
* a0-a3 and depc have been saved to PT_AREG0...PT_AREG3 and PT_DEPC
|
|
|
|
* excsave has been restored, and
|
|
|
|
* stack pointer (a1) has been set.
|
|
|
|
*
|
tree-wide: Assorted spelling fixes
In particular, several occurances of funny versions of 'success',
'unknown', 'therefore', 'acknowledge', 'argument', 'achieve', 'address',
'beginning', 'desirable', 'separate' and 'necessary' are fixed.
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Cc: Joe Perches <joe@perches.com>
Cc: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2010-02-03 01:01:28 +01:00
|
|
|
* Note: _kernel_exception might be at an odd address. Don't use call0..call12
|
2005-06-24 07:01:16 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(kernel_exception)
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
/* Save a1, a2, a3, and set SP. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, depc # get a2
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a1, a2, PT_AREG1
|
|
|
|
s32i a0, a2, PT_AREG2
|
|
|
|
s32i a3, a2, PT_AREG3
|
|
|
|
mov a1, a2
|
|
|
|
|
|
|
|
.globl _kernel_exception
|
|
|
|
_kernel_exception:
|
|
|
|
|
|
|
|
/* Save SAR and turn off single stepping */
|
|
|
|
|
|
|
|
movi a2, 0
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a3, sar
|
|
|
|
xsr a2, icountlevel
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a3, a1, PT_SAR
|
2007-06-01 02:49:32 +02:00
|
|
|
s32i a2, a1, PT_ICOUNTLEVEL
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Rotate ws so that the current windowbase is at bit0. */
|
|
|
|
/* Assume ws = xxwww1yyyy. Rotate ws right, so that a2 = yyyyxxwww1 */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a2, windowbase # don't need to save these, we only
|
|
|
|
rsr a3, windowstart # need shifted windowstart: windowmask
|
2005-06-24 07:01:16 +02:00
|
|
|
ssr a2
|
|
|
|
slli a2, a3, 32-WSBITS
|
|
|
|
src a2, a3, a2
|
|
|
|
srli a2, a2, 32-WSBITS
|
|
|
|
s32i a2, a1, PT_WMASK # needed for kernel_exception_exit
|
|
|
|
|
|
|
|
/* Save only the live window-frame */
|
|
|
|
|
|
|
|
_bbsi.l a2, 1, 1f
|
|
|
|
s32i a4, a1, PT_AREG4
|
|
|
|
s32i a5, a1, PT_AREG5
|
|
|
|
s32i a6, a1, PT_AREG6
|
|
|
|
s32i a7, a1, PT_AREG7
|
|
|
|
_bbsi.l a2, 2, 1f
|
|
|
|
s32i a8, a1, PT_AREG8
|
|
|
|
s32i a9, a1, PT_AREG9
|
|
|
|
s32i a10, a1, PT_AREG10
|
|
|
|
s32i a11, a1, PT_AREG11
|
|
|
|
_bbsi.l a2, 3, 1f
|
|
|
|
s32i a12, a1, PT_AREG12
|
|
|
|
s32i a13, a1, PT_AREG13
|
|
|
|
s32i a14, a1, PT_AREG14
|
|
|
|
s32i a15, a1, PT_AREG15
|
|
|
|
|
2015-06-25 22:03:29 +02:00
|
|
|
_bnei a2, 1, 1f
|
|
|
|
|
|
|
|
/* Copy spill slots of a0 and a1 to imitate movsp
|
|
|
|
* in order to keep exception stack continuous
|
|
|
|
*/
|
|
|
|
l32i a3, a1, PT_SIZE
|
|
|
|
l32i a0, a1, PT_SIZE + 4
|
|
|
|
s32e a3, a1, -16
|
|
|
|
s32e a0, a1, -12
|
2005-06-24 07:01:16 +02:00
|
|
|
1:
|
2015-06-25 22:03:29 +02:00
|
|
|
l32i a0, a1, PT_AREG0 # restore saved a0
|
|
|
|
wsr a0, depc
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
#ifdef KERNEL_STACK_OVERFLOW_CHECK
|
|
|
|
|
|
|
|
/* Stack overflow check, for debugging */
|
|
|
|
extui a2, a1, TASK_SIZE_BITS,XX
|
|
|
|
movi a3, SIZE??
|
|
|
|
_bge a2, a3, out_of_stack_panic
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the common exception handler.
|
|
|
|
* We get here from the user exception handler or simply by falling through
|
|
|
|
* from the kernel exception handler.
|
|
|
|
* Save the remaining special registers, switch to kernel mode, and jump
|
|
|
|
* to the second-level exception handler.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
common_exception:
|
|
|
|
|
2007-06-01 02:49:32 +02:00
|
|
|
/* Save some registers, disable loops and clear the syscall flag. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a2, debugcause
|
|
|
|
rsr a3, epc1
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a2, a1, PT_DEBUGCAUSE
|
|
|
|
s32i a3, a1, PT_PC
|
|
|
|
|
2007-06-01 02:49:32 +02:00
|
|
|
movi a2, -1
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a3, excvaddr
|
2007-06-01 02:49:32 +02:00
|
|
|
s32i a2, a1, PT_SYSCALL
|
2005-06-24 07:01:16 +02:00
|
|
|
movi a2, 0
|
|
|
|
s32i a3, a1, PT_EXCVADDR
|
2015-09-24 22:11:53 +02:00
|
|
|
#if XCHAL_HAVE_LOOPS
|
2012-10-15 01:55:38 +02:00
|
|
|
xsr a2, lcount
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a2, a1, PT_LCOUNT
|
2015-09-24 22:11:53 +02:00
|
|
|
#endif
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* It is now save to restore the EXC_TABLE_FIXUP variable. */
|
|
|
|
|
2015-07-16 09:37:31 +02:00
|
|
|
rsr a2, exccause
|
2005-06-24 07:01:16 +02:00
|
|
|
movi a3, 0
|
2015-07-16 09:37:31 +02:00
|
|
|
rsr a0, excsave1
|
|
|
|
s32i a2, a1, PT_EXCCAUSE
|
|
|
|
s32i a3, a0, EXC_TABLE_FIXUP
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2015-06-25 22:03:29 +02:00
|
|
|
/* All unrecoverable states are saved on stack, now, and a1 is valid.
|
|
|
|
* Now we can allow exceptions again. In case we've got an interrupt
|
|
|
|
* PS.INTLEVEL is set to LOCKLEVEL disabling furhter interrupts,
|
|
|
|
* otherwise it's left unchanged.
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
2015-06-25 22:03:29 +02:00
|
|
|
* Set PS(EXCM = 0, UM = 0, RING = 0, OWB = 0, WOE = 1, INTLEVEL = X)
|
2005-06-24 07:01:16 +02:00
|
|
|
*/
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a3, ps
|
2015-07-16 09:37:31 +02:00
|
|
|
s32i a3, a1, PT_PS # save ps
|
|
|
|
|
|
|
|
#if XTENSA_FAKE_NMI
|
|
|
|
/* Correct PS needs to be saved in the PT_PS:
|
|
|
|
* - in case of exception or level-1 interrupt it's in the PS,
|
|
|
|
* and is already saved.
|
|
|
|
* - in case of medium level interrupt it's in the excsave2.
|
|
|
|
*/
|
|
|
|
movi a0, EXCCAUSE_MAPPED_NMI
|
|
|
|
extui a3, a3, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
|
|
|
|
beq a2, a0, .Lmedium_level_irq
|
|
|
|
bnei a2, EXCCAUSE_LEVEL1_INTERRUPT, .Lexception
|
|
|
|
beqz a3, .Llevel1_irq # level-1 IRQ sets ps.intlevel to 0
|
|
|
|
|
|
|
|
.Lmedium_level_irq:
|
|
|
|
rsr a0, excsave2
|
|
|
|
s32i a0, a1, PT_PS # save medium-level interrupt ps
|
|
|
|
bgei a3, LOCKLEVEL, .Lexception
|
|
|
|
|
|
|
|
.Llevel1_irq:
|
|
|
|
movi a3, LOCKLEVEL
|
|
|
|
|
|
|
|
.Lexception:
|
|
|
|
movi a0, 1 << PS_WOE_BIT
|
|
|
|
or a3, a3, a0
|
|
|
|
#else
|
|
|
|
addi a2, a2, -EXCCAUSE_LEVEL1_INTERRUPT
|
|
|
|
movi a0, LOCKLEVEL
|
2013-01-05 01:57:17 +01:00
|
|
|
extui a3, a3, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
|
|
|
|
# a3 = PS.INTLEVEL
|
2015-07-16 09:37:31 +02:00
|
|
|
moveqz a3, a0, a2 # a3 = LOCKLEVEL iff interrupt
|
2006-12-10 11:18:48 +01:00
|
|
|
movi a2, 1 << PS_WOE_BIT
|
2005-06-24 07:01:16 +02:00
|
|
|
or a3, a3, a2
|
2015-06-25 22:03:29 +02:00
|
|
|
rsr a2, exccause
|
2015-07-16 09:37:31 +02:00
|
|
|
#endif
|
|
|
|
|
2015-06-25 22:03:29 +02:00
|
|
|
/* restore return address (or 0 if return to userspace) */
|
|
|
|
rsr a0, depc
|
2015-07-16 09:37:31 +02:00
|
|
|
wsr a3, ps
|
|
|
|
rsync # PS.WOE => rsync => overflow
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
/* Save lbeg, lend */
|
2015-09-24 22:11:53 +02:00
|
|
|
#if XCHAL_HAVE_LOOPS
|
2015-06-25 22:03:29 +02:00
|
|
|
rsr a4, lbeg
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a3, lend
|
2015-06-25 22:03:29 +02:00
|
|
|
s32i a4, a1, PT_LBEG
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a3, a1, PT_LEND
|
2015-09-24 22:11:53 +02:00
|
|
|
#endif
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-11-15 03:25:48 +01:00
|
|
|
/* Save SCOMPARE1 */
|
|
|
|
|
|
|
|
#if XCHAL_HAVE_S32C1I
|
2015-06-25 22:03:29 +02:00
|
|
|
rsr a3, scompare1
|
|
|
|
s32i a3, a1, PT_SCOMPARE1
|
2012-11-15 03:25:48 +01:00
|
|
|
#endif
|
|
|
|
|
2008-02-12 22:17:07 +01:00
|
|
|
/* Save optional registers. */
|
|
|
|
|
2015-06-25 22:03:29 +02:00
|
|
|
save_xtregs_opt a1 a3 a4 a5 a6 a7 PT_XTREGS_OPT
|
2008-02-12 22:17:07 +01:00
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
/* Go to second-level dispatcher. Set up parameters to pass to the
|
|
|
|
* exception handler and call the exception handler.
|
|
|
|
*/
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
rsr a4, excsave1
|
2005-06-24 07:01:16 +02:00
|
|
|
mov a6, a1 # pass stack frame
|
2015-06-25 22:03:29 +02:00
|
|
|
mov a7, a2 # pass EXCCAUSE
|
|
|
|
addx4 a4, a2, a4
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a4, a4, EXC_TABLE_DEFAULT # load handler
|
|
|
|
|
|
|
|
/* Call the second-level handler */
|
|
|
|
|
|
|
|
callx4 a4
|
|
|
|
|
|
|
|
/* Jump here for exception exit */
|
2008-05-22 02:43:50 +02:00
|
|
|
.global common_exception_return
|
2005-06-24 07:01:16 +02:00
|
|
|
common_exception_return:
|
|
|
|
|
2015-07-16 09:37:31 +02:00
|
|
|
#if XTENSA_FAKE_NMI
|
|
|
|
l32i a2, a1, PT_EXCCAUSE
|
|
|
|
movi a3, EXCCAUSE_MAPPED_NMI
|
|
|
|
beq a2, a3, .LNMIexit
|
|
|
|
#endif
|
2013-03-31 04:32:42 +02:00
|
|
|
1:
|
2015-07-16 09:37:31 +02:00
|
|
|
irq_save a2, a3
|
2015-07-16 05:18:46 +02:00
|
|
|
#ifdef CONFIG_TRACE_IRQFLAGS
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 trace_hardirqs_off
|
2015-07-16 05:18:46 +02:00
|
|
|
#endif
|
2013-03-31 04:32:42 +02:00
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
/* Jump if we are returning from kernel exceptions. */
|
|
|
|
|
2013-08-26 13:12:58 +02:00
|
|
|
l32i a3, a1, PT_PS
|
2013-08-26 13:16:23 +02:00
|
|
|
GET_THREAD_INFO(a2, a1)
|
|
|
|
l32i a4, a2, TI_FLAGS
|
|
|
|
_bbci.l a3, PS_UM_BIT, 6f
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Specific to a user exception exit:
|
|
|
|
* We need to check some flags for signal handling and rescheduling,
|
|
|
|
* and have to restore WB and WS, extra states, and all registers
|
|
|
|
* in the register file that were in use in the user task.
|
2008-01-22 09:45:25 +01:00
|
|
|
* Note that we don't disable interrupts here.
|
2005-06-24 07:01:16 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
_bbsi.l a4, TIF_NEED_RESCHED, 3f
|
2012-04-24 08:30:16 +02:00
|
|
|
_bbsi.l a4, TIF_NOTIFY_RESUME, 2f
|
2013-05-15 17:34:05 +02:00
|
|
|
_bbci.l a4, TIF_SIGPENDING, 5f
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-04-24 08:30:16 +02:00
|
|
|
2: l32i a4, a1, PT_DEPC
|
2005-06-24 07:01:16 +02:00
|
|
|
bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 4f
|
|
|
|
|
2008-01-22 09:45:25 +01:00
|
|
|
/* Call do_signal() */
|
|
|
|
|
2015-07-16 05:18:46 +02:00
|
|
|
#ifdef CONFIG_TRACE_IRQFLAGS
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 trace_hardirqs_on
|
2015-07-16 05:18:46 +02:00
|
|
|
#endif
|
2013-08-26 13:12:58 +02:00
|
|
|
rsil a2, 0
|
2005-06-24 07:01:16 +02:00
|
|
|
mov a6, a1
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 do_notify_resume # int do_notify_resume(struct pt_regs*)
|
2005-06-24 07:01:16 +02:00
|
|
|
j 1b
|
|
|
|
|
2008-01-22 09:45:25 +01:00
|
|
|
3: /* Reschedule */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2015-07-16 05:18:46 +02:00
|
|
|
#ifdef CONFIG_TRACE_IRQFLAGS
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 trace_hardirqs_on
|
2015-07-16 05:18:46 +02:00
|
|
|
#endif
|
2013-08-26 13:12:58 +02:00
|
|
|
rsil a2, 0
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 schedule # void schedule (void)
|
2005-06-24 07:01:16 +02:00
|
|
|
j 1b
|
|
|
|
|
2013-08-26 13:16:23 +02:00
|
|
|
#ifdef CONFIG_PREEMPT
|
|
|
|
6:
|
|
|
|
_bbci.l a4, TIF_NEED_RESCHED, 4f
|
|
|
|
|
|
|
|
/* Check current_thread_info->preempt_count */
|
|
|
|
|
|
|
|
l32i a4, a2, TI_PRE_COUNT
|
|
|
|
bnez a4, 4f
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 preempt_schedule_irq
|
2013-08-26 13:16:23 +02:00
|
|
|
j 1b
|
|
|
|
#endif
|
|
|
|
|
2015-07-16 09:37:31 +02:00
|
|
|
#if XTENSA_FAKE_NMI
|
|
|
|
.LNMIexit:
|
|
|
|
l32i a3, a1, PT_PS
|
|
|
|
_bbci.l a3, PS_UM_BIT, 4f
|
|
|
|
#endif
|
|
|
|
|
2013-05-15 17:34:05 +02:00
|
|
|
5:
|
2016-01-24 08:32:10 +01:00
|
|
|
#ifdef CONFIG_HAVE_HW_BREAKPOINT
|
|
|
|
_bbci.l a4, TIF_DB_DISABLED, 7f
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 restore_dbreak
|
2016-01-24 08:32:10 +01:00
|
|
|
7:
|
|
|
|
#endif
|
2013-05-15 17:34:05 +02:00
|
|
|
#ifdef CONFIG_DEBUG_TLB_SANITY
|
|
|
|
l32i a4, a1, PT_DEPC
|
|
|
|
bgeui a4, VALID_DOUBLE_EXCEPTION_ADDRESS, 4f
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 check_tlb_sanity
|
2013-05-15 17:34:05 +02:00
|
|
|
#endif
|
2013-08-26 13:16:23 +02:00
|
|
|
6:
|
2013-08-26 13:12:58 +02:00
|
|
|
4:
|
|
|
|
#ifdef CONFIG_TRACE_IRQFLAGS
|
2015-07-16 05:18:46 +02:00
|
|
|
extui a4, a3, PS_INTLEVEL_SHIFT, PS_INTLEVEL_WIDTH
|
|
|
|
bgei a4, LOCKLEVEL, 1f
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 trace_hardirqs_on
|
2013-08-26 13:12:58 +02:00
|
|
|
1:
|
|
|
|
#endif
|
|
|
|
/* Restore optional registers. */
|
2008-01-22 09:45:25 +01:00
|
|
|
|
|
|
|
load_xtregs_opt a1 a2 a4 a5 a6 a7 PT_XTREGS_OPT
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-11-15 03:25:48 +01:00
|
|
|
/* Restore SCOMPARE1 */
|
|
|
|
|
|
|
|
#if XCHAL_HAVE_S32C1I
|
|
|
|
l32i a2, a1, PT_SCOMPARE1
|
|
|
|
wsr a2, scompare1
|
|
|
|
#endif
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a3, ps /* disable interrupts */
|
2008-01-22 09:45:25 +01:00
|
|
|
|
|
|
|
_bbci.l a3, PS_UM_BIT, kernel_exception_exit
|
|
|
|
|
|
|
|
user_exception_exit:
|
|
|
|
|
|
|
|
/* Restore the state of the task and return from the exception. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Switch to the user thread WINDOWBASE. Save SP temporarily in DEPC */
|
|
|
|
|
|
|
|
l32i a2, a1, PT_WINDOWBASE
|
|
|
|
l32i a3, a1, PT_WINDOWSTART
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a1, depc # use DEPC as temp storage
|
|
|
|
wsr a3, windowstart # restore WINDOWSTART
|
2005-06-24 07:01:16 +02:00
|
|
|
ssr a2 # preserve user's WB in the SAR
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a2, windowbase # switch to user's saved WB
|
2005-06-24 07:01:16 +02:00
|
|
|
rsync
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a1, depc # restore stack pointer
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a2, a1, PT_WMASK # register frames saved (in bits 4...9)
|
|
|
|
rotw -1 # we restore a4..a7
|
|
|
|
_bltui a6, 16, 1f # only have to restore current window?
|
|
|
|
|
|
|
|
/* The working registers are a0 and a3. We are restoring to
|
|
|
|
* a4..a7. Be careful not to destroy what we have just restored.
|
|
|
|
* Note: wmask has the format YYYYM:
|
|
|
|
* Y: number of registers saved in groups of 4
|
|
|
|
* M: 4 bit mask of first 16 registers
|
|
|
|
*/
|
|
|
|
|
|
|
|
mov a2, a6
|
|
|
|
mov a3, a5
|
|
|
|
|
|
|
|
2: rotw -1 # a0..a3 become a4..a7
|
|
|
|
addi a3, a7, -4*4 # next iteration
|
|
|
|
addi a2, a6, -16 # decrementing Y in WMASK
|
|
|
|
l32i a4, a3, PT_AREG_END + 0
|
|
|
|
l32i a5, a3, PT_AREG_END + 4
|
|
|
|
l32i a6, a3, PT_AREG_END + 8
|
|
|
|
l32i a7, a3, PT_AREG_END + 12
|
|
|
|
_bgeui a2, 16, 2b
|
|
|
|
|
|
|
|
/* Clear unrestored registers (don't leak anything to user-land */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
1: rsr a0, windowbase
|
|
|
|
rsr a3, sar
|
2005-06-24 07:01:16 +02:00
|
|
|
sub a3, a0, a3
|
|
|
|
beqz a3, 2f
|
|
|
|
extui a3, a3, 0, WBBITS
|
|
|
|
|
|
|
|
1: rotw -1
|
|
|
|
addi a3, a7, -1
|
|
|
|
movi a4, 0
|
|
|
|
movi a5, 0
|
|
|
|
movi a6, 0
|
|
|
|
movi a7, 0
|
|
|
|
bgei a3, 1, 1b
|
|
|
|
|
|
|
|
/* We are back were we were when we started.
|
|
|
|
* Note: a2 still contains WMASK (if we've returned to the original
|
|
|
|
* frame where we had loaded a2), or at least the lower 4 bits
|
|
|
|
* (if we have restored WSBITS-1 frames).
|
|
|
|
*/
|
|
|
|
|
2015-07-04 14:27:39 +02:00
|
|
|
2:
|
2013-02-24 04:35:57 +01:00
|
|
|
#if XCHAL_HAVE_THREADPTR
|
|
|
|
l32i a3, a1, PT_THREADPTR
|
|
|
|
wur a3, threadptr
|
|
|
|
#endif
|
|
|
|
|
2015-07-04 14:27:39 +02:00
|
|
|
j common_exception_exit
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* This is the kernel exception exit.
|
|
|
|
* We avoided to do a MOVSP when we entered the exception, but we
|
|
|
|
* have to do it here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
kernel_exception_exit:
|
|
|
|
|
|
|
|
/* Check if we have to do a movsp.
|
|
|
|
*
|
|
|
|
* We only have to do a movsp if the previous window-frame has
|
|
|
|
* been spilled to the *temporary* exception stack instead of the
|
|
|
|
* task's stack. This is the case if the corresponding bit in
|
|
|
|
* WINDOWSTART for the previous window-frame was set before
|
|
|
|
* (not spilled) but is zero now (spilled).
|
|
|
|
* If this bit is zero, all other bits except the one for the
|
|
|
|
* current window frame are also zero. So, we can use a simple test:
|
|
|
|
* 'and' WINDOWSTART and WINDOWSTART-1:
|
|
|
|
*
|
|
|
|
* (XXXXXX1[0]* - 1) AND XXXXXX1[0]* = XXXXXX0[0]*
|
|
|
|
*
|
|
|
|
* The result is zero only if one bit was set.
|
|
|
|
*
|
|
|
|
* (Note: We might have gone through several task switches before
|
|
|
|
* we come back to the current task, so WINDOWBASE might be
|
|
|
|
* different from the time the exception occurred.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Test WINDOWSTART before and after the exception.
|
|
|
|
* We actually have WMASK, so we only have to test if it is 1 or not.
|
|
|
|
*/
|
|
|
|
|
|
|
|
l32i a2, a1, PT_WMASK
|
|
|
|
_beqi a2, 1, common_exception_exit # Spilled before exception,jump
|
|
|
|
|
|
|
|
/* Test WINDOWSTART now. If spilled, do the movsp */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a3, windowstart
|
2005-06-24 07:01:16 +02:00
|
|
|
addi a0, a3, -1
|
|
|
|
and a3, a3, a0
|
|
|
|
_bnez a3, common_exception_exit
|
|
|
|
|
|
|
|
/* Do a movsp (we returned from a call4, so we have at least a0..a7) */
|
|
|
|
|
|
|
|
addi a0, a1, -16
|
|
|
|
l32i a3, a0, 0
|
|
|
|
l32i a4, a0, 4
|
|
|
|
s32i a3, a1, PT_SIZE+0
|
|
|
|
s32i a4, a1, PT_SIZE+4
|
|
|
|
l32i a3, a0, 8
|
|
|
|
l32i a4, a0, 12
|
|
|
|
s32i a3, a1, PT_SIZE+8
|
|
|
|
s32i a4, a1, PT_SIZE+12
|
|
|
|
|
|
|
|
/* Common exception exit.
|
|
|
|
* We restore the special register and the current window frame, and
|
|
|
|
* return from the exception.
|
|
|
|
*
|
|
|
|
* Note: We expect a2 to hold PT_WMASK
|
|
|
|
*/
|
|
|
|
|
|
|
|
common_exception_exit:
|
|
|
|
|
2008-02-12 22:17:07 +01:00
|
|
|
/* Restore address registers. */
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
_bbsi.l a2, 1, 1f
|
|
|
|
l32i a4, a1, PT_AREG4
|
|
|
|
l32i a5, a1, PT_AREG5
|
|
|
|
l32i a6, a1, PT_AREG6
|
|
|
|
l32i a7, a1, PT_AREG7
|
|
|
|
_bbsi.l a2, 2, 1f
|
|
|
|
l32i a8, a1, PT_AREG8
|
|
|
|
l32i a9, a1, PT_AREG9
|
|
|
|
l32i a10, a1, PT_AREG10
|
|
|
|
l32i a11, a1, PT_AREG11
|
|
|
|
_bbsi.l a2, 3, 1f
|
|
|
|
l32i a12, a1, PT_AREG12
|
|
|
|
l32i a13, a1, PT_AREG13
|
|
|
|
l32i a14, a1, PT_AREG14
|
|
|
|
l32i a15, a1, PT_AREG15
|
|
|
|
|
|
|
|
/* Restore PC, SAR */
|
|
|
|
|
|
|
|
1: l32i a2, a1, PT_PC
|
|
|
|
l32i a3, a1, PT_SAR
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a2, epc1
|
|
|
|
wsr a3, sar
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Restore LBEG, LEND, LCOUNT */
|
2015-09-24 22:11:53 +02:00
|
|
|
#if XCHAL_HAVE_LOOPS
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a2, a1, PT_LBEG
|
|
|
|
l32i a3, a1, PT_LEND
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a2, lbeg
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a2, a1, PT_LCOUNT
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a3, lend
|
|
|
|
wsr a2, lcount
|
2015-09-24 22:11:53 +02:00
|
|
|
#endif
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2007-06-01 02:49:32 +02:00
|
|
|
/* We control single stepping through the ICOUNTLEVEL register. */
|
|
|
|
|
|
|
|
l32i a2, a1, PT_ICOUNTLEVEL
|
|
|
|
movi a3, -2
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a2, icountlevel
|
|
|
|
wsr a3, icount
|
2007-06-01 02:49:32 +02:00
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
/* Check if it was double exception. */
|
|
|
|
|
|
|
|
l32i a0, a1, PT_DEPC
|
|
|
|
l32i a3, a1, PT_AREG3
|
|
|
|
l32i a2, a1, PT_AREG2
|
2013-03-25 23:51:43 +01:00
|
|
|
_bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Restore a0...a3 and return */
|
|
|
|
|
|
|
|
l32i a0, a1, PT_AREG0
|
|
|
|
l32i a1, a1, PT_AREG1
|
2013-03-25 23:51:43 +01:00
|
|
|
rfe
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2013-03-25 23:51:43 +01:00
|
|
|
1: wsr a0, depc
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a0, a1, PT_AREG0
|
|
|
|
l32i a1, a1, PT_AREG1
|
2013-03-25 23:51:43 +01:00
|
|
|
rfde
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(kernel_exception)
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
/*
|
|
|
|
* Debug exception handler.
|
|
|
|
*
|
|
|
|
* Currently, we don't support KGDB, so only user application can be debugged.
|
|
|
|
*
|
|
|
|
* When we get here, a0 is trashed and saved to excsave[debuglevel]
|
|
|
|
*/
|
|
|
|
|
2017-12-04 05:55:35 +01:00
|
|
|
.literal_position
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
ENTRY(debug_exception)
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, SREG_EPS + XCHAL_DEBUGLEVEL
|
2006-12-10 11:18:48 +01:00
|
|
|
bbsi.l a0, PS_EXCM_BIT, 1f # exception mode
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
/* Set EPC1 and EXCCAUSE */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a2, depc # save a2 temporarily
|
|
|
|
rsr a2, SREG_EPC + XCHAL_DEBUGLEVEL
|
|
|
|
wsr a2, epc1
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
movi a2, EXCCAUSE_MAPPED_DEBUG
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a2, exccause
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Restore PS to the value before the debug exc but with PS.EXCM set.*/
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
movi a2, 1 << PS_EXCM_BIT
|
2005-06-24 07:01:16 +02:00
|
|
|
or a2, a0, a2
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a2, ps
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Switch to kernel/user stack, restore jump vector, and save a0 */
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
bbsi.l a2, PS_UM_BIT, 2f # jump if user mode
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
addi a2, a1, -16-PT_SIZE # assume kernel stack
|
2016-03-06 23:36:33 +01:00
|
|
|
3:
|
|
|
|
l32i a0, a3, DT_DEBUG_SAVE
|
|
|
|
s32i a1, a2, PT_AREG1
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a0, a2, PT_AREG0
|
|
|
|
movi a0, 0
|
|
|
|
s32i a0, a2, PT_DEPC # mark it as a regular exception
|
2016-03-06 23:36:33 +01:00
|
|
|
xsr a3, SREG_EXCSAVE + XCHAL_DEBUGLEVEL
|
2012-10-15 01:55:38 +02:00
|
|
|
xsr a0, depc
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a3, a2, PT_AREG3
|
|
|
|
s32i a0, a2, PT_AREG2
|
|
|
|
mov a1, a2
|
2016-03-06 23:36:33 +01:00
|
|
|
|
2016-01-24 08:32:10 +01:00
|
|
|
/* Debug exception is handled as an exception, so interrupts will
|
|
|
|
* likely be enabled in the common exception handler. Disable
|
|
|
|
* preemption if we have HW breakpoints to preserve DEBUGCAUSE.DBNUM
|
|
|
|
* meaning.
|
|
|
|
*/
|
|
|
|
#if defined(CONFIG_PREEMPT_COUNT) && defined(CONFIG_HAVE_HW_BREAKPOINT)
|
|
|
|
GET_THREAD_INFO(a2, a1)
|
|
|
|
l32i a3, a2, TI_PRE_COUNT
|
|
|
|
addi a3, a3, 1
|
|
|
|
s32i a3, a2, TI_PRE_COUNT
|
|
|
|
#endif
|
|
|
|
|
2016-03-06 23:36:33 +01:00
|
|
|
rsr a2, ps
|
|
|
|
bbsi.l a2, PS_UM_BIT, _user_exception
|
2005-06-24 07:01:16 +02:00
|
|
|
j _kernel_exception
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
2: rsr a2, excsave1
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a2, a2, EXC_TABLE_KSTK # load kernel stack pointer
|
2016-03-06 23:36:33 +01:00
|
|
|
j 3b
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2016-01-24 08:32:10 +01:00
|
|
|
#ifdef CONFIG_HAVE_HW_BREAKPOINT
|
|
|
|
/* Debug exception while in exception mode. This may happen when
|
|
|
|
* window overflow/underflow handler or fast exception handler hits
|
|
|
|
* data breakpoint, in which case save and disable all data
|
|
|
|
* breakpoints, single-step faulting instruction and restore data
|
|
|
|
* breakpoints.
|
|
|
|
*/
|
|
|
|
1:
|
|
|
|
bbci.l a0, PS_UM_BIT, 1b # jump if kernel mode
|
|
|
|
|
|
|
|
rsr a0, debugcause
|
|
|
|
bbsi.l a0, DEBUGCAUSE_DBREAK_BIT, .Ldebug_save_dbreak
|
|
|
|
|
|
|
|
.set _index, 0
|
|
|
|
.rept XCHAL_NUM_DBREAK
|
|
|
|
l32i a0, a3, DT_DBREAKC_SAVE + _index * 4
|
|
|
|
wsr a0, SREG_DBREAKC + _index
|
|
|
|
.set _index, _index + 1
|
|
|
|
.endr
|
|
|
|
|
|
|
|
l32i a0, a3, DT_ICOUNT_LEVEL_SAVE
|
|
|
|
wsr a0, icountlevel
|
|
|
|
|
|
|
|
l32i a0, a3, DT_ICOUNT_SAVE
|
|
|
|
xsr a0, icount
|
|
|
|
|
|
|
|
l32i a0, a3, DT_DEBUG_SAVE
|
|
|
|
xsr a3, SREG_EXCSAVE + XCHAL_DEBUGLEVEL
|
|
|
|
rfi XCHAL_DEBUGLEVEL
|
|
|
|
|
|
|
|
.Ldebug_save_dbreak:
|
|
|
|
.set _index, 0
|
|
|
|
.rept XCHAL_NUM_DBREAK
|
|
|
|
movi a0, 0
|
|
|
|
xsr a0, SREG_DBREAKC + _index
|
|
|
|
s32i a0, a3, DT_DBREAKC_SAVE + _index * 4
|
|
|
|
.set _index, _index + 1
|
|
|
|
.endr
|
|
|
|
|
|
|
|
movi a0, XCHAL_EXCM_LEVEL + 1
|
|
|
|
xsr a0, icountlevel
|
|
|
|
s32i a0, a3, DT_ICOUNT_LEVEL_SAVE
|
|
|
|
|
|
|
|
movi a0, 0xfffffffe
|
|
|
|
xsr a0, icount
|
|
|
|
s32i a0, a3, DT_ICOUNT_SAVE
|
|
|
|
|
|
|
|
l32i a0, a3, DT_DEBUG_SAVE
|
|
|
|
xsr a3, SREG_EXCSAVE + XCHAL_DEBUGLEVEL
|
|
|
|
rfi XCHAL_DEBUGLEVEL
|
|
|
|
#else
|
|
|
|
/* Debug exception while in exception mode. Should not happen. */
|
2005-06-24 07:01:16 +02:00
|
|
|
1: j 1b // FIXME!!
|
2016-01-24 08:32:10 +01:00
|
|
|
#endif
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(debug_exception)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We get here in case of an unrecoverable exception.
|
|
|
|
* The only thing we can do is to be nice and print a panic message.
|
|
|
|
* We only produce a single stack frame for panic, so ???
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Entry conditions:
|
|
|
|
*
|
|
|
|
* - a0 contains the caller address; original value saved in excsave1.
|
|
|
|
* - the original a0 contains a valid return address (backtrace) or 0.
|
|
|
|
* - a2 contains a valid stackpointer
|
|
|
|
*
|
|
|
|
* Notes:
|
|
|
|
*
|
|
|
|
* - If the stack pointer could be invalid, the caller has to setup a
|
|
|
|
* dummy stack pointer (e.g. the stack of the init_task)
|
|
|
|
*
|
|
|
|
* - If the return address could be invalid, the caller has to set it
|
|
|
|
* to 0, so the backtrace would stop.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
.align 4
|
|
|
|
unrecoverable_text:
|
|
|
|
.ascii "Unrecoverable error in exception handler\0"
|
|
|
|
|
2017-12-04 05:55:35 +01:00
|
|
|
.literal_position
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
ENTRY(unrecoverable_exception)
|
|
|
|
|
|
|
|
movi a0, 1
|
|
|
|
movi a1, 0
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a0, windowstart
|
|
|
|
wsr a1, windowbase
|
2005-06-24 07:01:16 +02:00
|
|
|
rsync
|
|
|
|
|
2013-01-05 01:57:17 +01:00
|
|
|
movi a1, (1 << PS_WOE_BIT) | LOCKLEVEL
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a1, ps
|
2005-06-24 07:01:16 +02:00
|
|
|
rsync
|
|
|
|
|
|
|
|
movi a1, init_task
|
|
|
|
movi a0, 0
|
|
|
|
addi a1, a1, PT_REGS_OFFSET
|
|
|
|
|
|
|
|
movi a6, unrecoverable_text
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 panic
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
1: j 1b
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(unrecoverable_exception)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* -------------------------- FAST EXCEPTION HANDLERS ----------------------- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fast-handler for alloca exceptions
|
|
|
|
*
|
|
|
|
* The ALLOCA handler is entered when user code executes the MOVSP
|
|
|
|
* instruction and the caller's frame is not in the register file.
|
|
|
|
*
|
2013-07-15 00:02:24 +02:00
|
|
|
* This algorithm was taken from the Ross Morley's RTOS Porting Layer:
|
|
|
|
*
|
|
|
|
* /home/ross/rtos/porting/XtensaRTOS-PortingLayer-20090507/xtensa_vectors.S
|
|
|
|
*
|
|
|
|
* It leverages the existing window spill/fill routines and their support for
|
|
|
|
* double exceptions. The 'movsp' instruction will only cause an exception if
|
|
|
|
* the next window needs to be loaded. In fact this ALLOCA exception may be
|
|
|
|
* replaced at some point by changing the hardware to do a underflow exception
|
|
|
|
* of the proper size instead.
|
|
|
|
*
|
|
|
|
* This algorithm simply backs out the register changes started by the user
|
|
|
|
* excpetion handler, makes it appear that we have started a window underflow
|
|
|
|
* by rotating the window back and then setting the old window base (OWB) in
|
|
|
|
* the 'ps' register with the rolled back window base. The 'movsp' instruction
|
|
|
|
* will be re-executed and this time since the next window frames is in the
|
|
|
|
* active AR registers it won't cause an exception.
|
|
|
|
*
|
|
|
|
* If the WindowUnderflow code gets a TLB miss the page will get mapped
|
|
|
|
* the the partial windeowUnderflow will be handeled in the double exception
|
|
|
|
* handler.
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
|
|
|
* Entry condition:
|
|
|
|
*
|
|
|
|
* a0: trashed, original value saved on stack (PT_AREG0)
|
|
|
|
* a1: a1
|
|
|
|
* a2: new stack pointer, original in DEPC
|
2013-07-03 18:23:28 +02:00
|
|
|
* a3: a3
|
2005-06-24 07:01:16 +02:00
|
|
|
* depc: a2, original value saved on stack (PT_DEPC)
|
2013-07-03 18:23:28 +02:00
|
|
|
* excsave_1: dispatch table
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
|
|
|
* PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
|
|
|
|
* < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
|
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(fast_alloca)
|
2013-07-15 00:02:24 +02:00
|
|
|
rsr a0, windowbase
|
|
|
|
rotw -1
|
|
|
|
rsr a2, ps
|
|
|
|
extui a3, a2, PS_OWB_SHIFT, PS_OWB_WIDTH
|
|
|
|
xor a3, a3, a4
|
|
|
|
l32i a4, a6, PT_AREG0
|
|
|
|
l32i a1, a6, PT_DEPC
|
|
|
|
rsr a6, depc
|
|
|
|
wsr a1, depc
|
|
|
|
slli a3, a3, PS_OWB_SHIFT
|
|
|
|
xor a2, a2, a3
|
|
|
|
wsr a2, ps
|
|
|
|
rsync
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2013-07-15 00:02:24 +02:00
|
|
|
_bbci.l a4, 31, 4f
|
|
|
|
rotw -1
|
|
|
|
_bbci.l a8, 30, 8f
|
|
|
|
rotw -1
|
|
|
|
j _WindowUnderflow12
|
|
|
|
8: j _WindowUnderflow8
|
|
|
|
4: j _WindowUnderflow4
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(fast_alloca)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* fast system calls.
|
|
|
|
*
|
|
|
|
* WARNING: The kernel doesn't save the entire user context before
|
|
|
|
* handling a fast system call. These functions are small and short,
|
|
|
|
* usually offering some functionality not available to user tasks.
|
|
|
|
*
|
|
|
|
* BE CAREFUL TO PRESERVE THE USER'S CONTEXT.
|
|
|
|
*
|
|
|
|
* Entry condition:
|
|
|
|
*
|
|
|
|
* a0: trashed, original value saved on stack (PT_AREG0)
|
|
|
|
* a1: a1
|
|
|
|
* a2: new stack pointer, original in DEPC
|
2013-07-03 18:23:28 +02:00
|
|
|
* a3: a3
|
2005-06-24 07:01:16 +02:00
|
|
|
* depc: a2, original value saved on stack (PT_DEPC)
|
2013-07-03 18:23:28 +02:00
|
|
|
* excsave_1: dispatch table
|
2005-06-24 07:01:16 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(fast_syscall_kernel)
|
|
|
|
|
|
|
|
/* Skip syscall. */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, epc1
|
2005-06-24 07:01:16 +02:00
|
|
|
addi a0, a0, 3
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a0, epc1
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
l32i a0, a2, PT_DEPC
|
|
|
|
bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, fast_syscall_unrecoverable
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, depc # get syscall-nr
|
2005-06-24 07:01:16 +02:00
|
|
|
_beqz a0, fast_syscall_spill_registers
|
2006-12-10 11:18:52 +01:00
|
|
|
_beqi a0, __NR_xtensa, fast_syscall_xtensa
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
j kernel_exception
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(fast_syscall_kernel)
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
ENTRY(fast_syscall_user)
|
|
|
|
|
|
|
|
/* Skip syscall. */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, epc1
|
2005-06-24 07:01:16 +02:00
|
|
|
addi a0, a0, 3
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a0, epc1
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
l32i a0, a2, PT_DEPC
|
|
|
|
bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, fast_syscall_unrecoverable
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, depc # get syscall-nr
|
2005-06-24 07:01:16 +02:00
|
|
|
_beqz a0, fast_syscall_spill_registers
|
2006-12-10 11:18:52 +01:00
|
|
|
_beqi a0, __NR_xtensa, fast_syscall_xtensa
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
j user_exception
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(fast_syscall_user)
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
ENTRY(fast_syscall_unrecoverable)
|
|
|
|
|
2012-11-29 01:53:51 +01:00
|
|
|
/* Restore all states. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-11-29 01:53:51 +01:00
|
|
|
l32i a0, a2, PT_AREG0 # restore a0
|
|
|
|
xsr a2, depc # restore a2, depc
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-11-29 01:53:51 +01:00
|
|
|
wsr a0, excsave1
|
2017-12-10 03:44:11 +01:00
|
|
|
call0 unrecoverable_exception
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(fast_syscall_unrecoverable)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* sysxtensa syscall handler
|
|
|
|
*
|
2006-12-10 11:18:52 +01:00
|
|
|
* int sysxtensa (SYS_XTENSA_ATOMIC_SET, ptr, val, unused);
|
|
|
|
* int sysxtensa (SYS_XTENSA_ATOMIC_ADD, ptr, val, unused);
|
|
|
|
* int sysxtensa (SYS_XTENSA_ATOMIC_EXG_ADD, ptr, val, unused);
|
|
|
|
* int sysxtensa (SYS_XTENSA_ATOMIC_CMP_SWP, ptr, oldval, newval);
|
|
|
|
* a2 a6 a3 a4 a5
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
|
|
|
* Entry condition:
|
|
|
|
*
|
2006-12-10 11:18:52 +01:00
|
|
|
* a0: a2 (syscall-nr), original value saved on stack (PT_AREG0)
|
2005-06-24 07:01:16 +02:00
|
|
|
* a1: a1
|
2006-12-10 11:18:52 +01:00
|
|
|
* a2: new stack pointer, original in a0 and DEPC
|
2013-07-03 18:23:28 +02:00
|
|
|
* a3: a3
|
2006-12-10 11:18:52 +01:00
|
|
|
* a4..a15: unchanged
|
2005-06-24 07:01:16 +02:00
|
|
|
* depc: a2, original value saved on stack (PT_DEPC)
|
2013-07-03 18:23:28 +02:00
|
|
|
* excsave_1: dispatch table
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
|
|
|
* PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
|
|
|
|
* < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
|
|
|
|
*
|
|
|
|
* Note: we don't have to save a2; a2 holds the return value
|
|
|
|
*/
|
|
|
|
|
2017-12-04 05:55:35 +01:00
|
|
|
.literal_position
|
|
|
|
|
2014-08-07 01:32:30 +02:00
|
|
|
#ifdef CONFIG_FAST_SYSCALL_XTENSA
|
|
|
|
|
2006-12-10 11:18:52 +01:00
|
|
|
ENTRY(fast_syscall_xtensa)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2006-12-10 11:18:52 +01:00
|
|
|
s32i a7, a2, PT_AREG7 # we need an additional register
|
2005-06-24 07:01:16 +02:00
|
|
|
movi a7, 4 # sizeof(unsigned int)
|
2006-12-10 11:18:52 +01:00
|
|
|
access_ok a3, a7, a0, a2, .Leac # a0: scratch reg, a2: sp
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2014-07-31 20:40:57 +02:00
|
|
|
_bgeui a6, SYS_XTENSA_COUNT, .Lill
|
|
|
|
_bnei a6, SYS_XTENSA_ATOMIC_CMP_SWP, .Lnswp
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2006-12-10 11:18:52 +01:00
|
|
|
/* Fall through for ATOMIC_CMP_SWP. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
.Lswp: /* Atomic compare and swap */
|
|
|
|
|
2017-12-10 06:18:47 +01:00
|
|
|
EX(.Leac) l32i a0, a3, 0 # read old value
|
2006-12-10 11:18:52 +01:00
|
|
|
bne a0, a4, 1f # same as old value? jump
|
2017-12-10 06:18:47 +01:00
|
|
|
EX(.Leac) s32i a5, a3, 0 # different, modify value
|
2006-12-10 11:18:52 +01:00
|
|
|
l32i a7, a2, PT_AREG7 # restore a7
|
|
|
|
l32i a0, a2, PT_AREG0 # restore a0
|
|
|
|
movi a2, 1 # and return 1
|
|
|
|
rfe
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2006-12-10 11:18:52 +01:00
|
|
|
1: l32i a7, a2, PT_AREG7 # restore a7
|
|
|
|
l32i a0, a2, PT_AREG0 # restore a0
|
|
|
|
movi a2, 0 # return 0 (note that we cannot set
|
|
|
|
rfe
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2006-12-10 11:18:52 +01:00
|
|
|
.Lnswp: /* Atomic set, add, and exg_add. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2017-12-10 06:18:47 +01:00
|
|
|
EX(.Leac) l32i a7, a3, 0 # orig
|
2014-07-31 20:40:57 +02:00
|
|
|
addi a6, a6, -SYS_XTENSA_ATOMIC_SET
|
2006-12-10 11:18:52 +01:00
|
|
|
add a0, a4, a7 # + arg
|
|
|
|
moveqz a0, a4, a6 # set
|
2014-07-31 20:40:57 +02:00
|
|
|
addi a6, a6, SYS_XTENSA_ATOMIC_SET
|
2017-12-10 06:18:47 +01:00
|
|
|
EX(.Leac) s32i a0, a3, 0 # write new value
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2006-12-10 11:18:52 +01:00
|
|
|
mov a0, a2
|
2005-06-24 07:01:16 +02:00
|
|
|
mov a2, a7
|
2006-12-10 11:18:52 +01:00
|
|
|
l32i a7, a0, PT_AREG7 # restore a7
|
|
|
|
l32i a0, a0, PT_AREG0 # restore a0
|
2005-06-24 07:01:16 +02:00
|
|
|
rfe
|
|
|
|
|
2006-12-10 11:18:52 +01:00
|
|
|
.Leac: l32i a7, a2, PT_AREG7 # restore a7
|
|
|
|
l32i a0, a2, PT_AREG0 # restore a0
|
|
|
|
movi a2, -EFAULT
|
|
|
|
rfe
|
|
|
|
|
2014-07-31 20:40:57 +02:00
|
|
|
.Lill: l32i a7, a2, PT_AREG7 # restore a7
|
2006-12-10 11:18:52 +01:00
|
|
|
l32i a0, a2, PT_AREG0 # restore a0
|
|
|
|
movi a2, -EINVAL
|
|
|
|
rfe
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(fast_syscall_xtensa)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2014-08-07 01:32:30 +02:00
|
|
|
#else /* CONFIG_FAST_SYSCALL_XTENSA */
|
|
|
|
|
|
|
|
ENTRY(fast_syscall_xtensa)
|
|
|
|
|
|
|
|
l32i a0, a2, PT_AREG0 # restore a0
|
|
|
|
movi a2, -ENOSYS
|
|
|
|
rfe
|
|
|
|
|
|
|
|
ENDPROC(fast_syscall_xtensa)
|
|
|
|
|
|
|
|
#endif /* CONFIG_FAST_SYSCALL_XTENSA */
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* fast_syscall_spill_registers.
|
|
|
|
*
|
|
|
|
* Entry condition:
|
|
|
|
*
|
|
|
|
* a0: trashed, original value saved on stack (PT_AREG0)
|
|
|
|
* a1: a1
|
|
|
|
* a2: new stack pointer, original in DEPC
|
2013-07-03 18:23:28 +02:00
|
|
|
* a3: a3
|
2005-06-24 07:01:16 +02:00
|
|
|
* depc: a2, original value saved on stack (PT_DEPC)
|
2013-07-03 18:23:28 +02:00
|
|
|
* excsave_1: dispatch table
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
|
|
|
* Note: We assume the stack pointer is EXC_TABLE_KSTK in the fixup handler.
|
|
|
|
*/
|
|
|
|
|
2014-08-07 01:32:30 +02:00
|
|
|
#ifdef CONFIG_FAST_SYSCALL_SPILL_REGISTERS
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
ENTRY(fast_syscall_spill_registers)
|
|
|
|
|
|
|
|
/* Register a FIXUP handler (pass current wb as a parameter) */
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
xsr a3, excsave1
|
2005-06-24 07:01:16 +02:00
|
|
|
movi a0, fast_syscall_spill_registers_fixup
|
|
|
|
s32i a0, a3, EXC_TABLE_FIXUP
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, windowbase
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a0, a3, EXC_TABLE_PARAM
|
2013-07-03 18:23:28 +02:00
|
|
|
xsr a3, excsave1 # restore a3 and excsave_1
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
/* Save a3, a4 and SAR on stack. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, sar
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a3, a2, PT_AREG3
|
2014-01-29 07:09:51 +01:00
|
|
|
s32i a0, a2, PT_SAR
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2014-01-29 07:09:51 +01:00
|
|
|
/* The spill routine might clobber a4, a7, a8, a11, a12, and a15. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2014-01-29 07:09:51 +01:00
|
|
|
s32i a4, a2, PT_AREG4
|
2008-02-12 22:17:07 +01:00
|
|
|
s32i a7, a2, PT_AREG7
|
2014-01-29 07:09:51 +01:00
|
|
|
s32i a8, a2, PT_AREG8
|
2008-02-12 22:17:07 +01:00
|
|
|
s32i a11, a2, PT_AREG11
|
2014-01-29 07:09:51 +01:00
|
|
|
s32i a12, a2, PT_AREG12
|
2008-02-12 22:17:07 +01:00
|
|
|
s32i a15, a2, PT_AREG15
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2014-01-29 07:09:51 +01:00
|
|
|
/*
|
|
|
|
* Rotate ws so that the current windowbase is at bit 0.
|
|
|
|
* Assume ws = xxxwww1yy (www1 current window frame).
|
|
|
|
* Rotate ws right so that a4 = yyxxxwww1.
|
|
|
|
*/
|
|
|
|
|
|
|
|
rsr a0, windowbase
|
|
|
|
rsr a3, windowstart # a3 = xxxwww1yy
|
|
|
|
ssr a0 # holds WB
|
|
|
|
slli a0, a3, WSBITS
|
|
|
|
or a3, a3, a0 # a3 = xxxwww1yyxxxwww1yy
|
|
|
|
srl a3, a3 # a3 = 00xxxwww1yyxxxwww1
|
|
|
|
|
|
|
|
/* We are done if there are no more than the current register frame. */
|
|
|
|
|
|
|
|
extui a3, a3, 1, WSBITS-1 # a3 = 0yyxxxwww
|
|
|
|
movi a0, (1 << (WSBITS-1))
|
|
|
|
_beqz a3, .Lnospill # only one active frame? jump
|
|
|
|
|
|
|
|
/* We want 1 at the top, so that we return to the current windowbase */
|
|
|
|
|
|
|
|
or a3, a3, a0 # 1yyxxxwww
|
|
|
|
|
|
|
|
/* Skip empty frames - get 'oldest' WINDOWSTART-bit. */
|
|
|
|
|
|
|
|
wsr a3, windowstart # save shifted windowstart
|
|
|
|
neg a0, a3
|
|
|
|
and a3, a0, a3 # first bit set from right: 000010000
|
|
|
|
|
|
|
|
ffs_ws a0, a3 # a0: shifts to skip empty frames
|
|
|
|
movi a3, WSBITS
|
|
|
|
sub a0, a3, a0 # WSBITS-a0:number of 0-bits from right
|
|
|
|
ssr a0 # save in SAR for later.
|
|
|
|
|
|
|
|
rsr a3, windowbase
|
|
|
|
add a3, a3, a0
|
|
|
|
wsr a3, windowbase
|
|
|
|
rsync
|
|
|
|
|
|
|
|
rsr a3, windowstart
|
|
|
|
srl a3, a3 # shift windowstart
|
|
|
|
|
|
|
|
/* WB is now just one frame below the oldest frame in the register
|
|
|
|
window. WS is shifted so the oldest frame is in bit 0, thus, WB
|
|
|
|
and WS differ by one 4-register frame. */
|
|
|
|
|
|
|
|
/* Save frames. Depending what call was used (call4, call8, call12),
|
|
|
|
* we have to save 4,8. or 12 registers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
.Lloop: _bbsi.l a3, 1, .Lc4
|
|
|
|
_bbci.l a3, 2, .Lc12
|
|
|
|
|
|
|
|
.Lc8: s32e a4, a13, -16
|
|
|
|
l32e a4, a5, -12
|
|
|
|
s32e a8, a4, -32
|
|
|
|
s32e a5, a13, -12
|
|
|
|
s32e a6, a13, -8
|
|
|
|
s32e a7, a13, -4
|
|
|
|
s32e a9, a4, -28
|
|
|
|
s32e a10, a4, -24
|
|
|
|
s32e a11, a4, -20
|
|
|
|
srli a11, a3, 2 # shift windowbase by 2
|
|
|
|
rotw 2
|
|
|
|
_bnei a3, 1, .Lloop
|
|
|
|
j .Lexit
|
|
|
|
|
|
|
|
.Lc4: s32e a4, a9, -16
|
|
|
|
s32e a5, a9, -12
|
|
|
|
s32e a6, a9, -8
|
|
|
|
s32e a7, a9, -4
|
|
|
|
|
|
|
|
srli a7, a3, 1
|
|
|
|
rotw 1
|
|
|
|
_bnei a3, 1, .Lloop
|
|
|
|
j .Lexit
|
|
|
|
|
|
|
|
.Lc12: _bbci.l a3, 3, .Linvalid_mask # bit 2 shouldn't be zero!
|
|
|
|
|
|
|
|
/* 12-register frame (call12) */
|
|
|
|
|
|
|
|
l32e a0, a5, -12
|
|
|
|
s32e a8, a0, -48
|
|
|
|
mov a8, a0
|
|
|
|
|
|
|
|
s32e a9, a8, -44
|
|
|
|
s32e a10, a8, -40
|
|
|
|
s32e a11, a8, -36
|
|
|
|
s32e a12, a8, -32
|
|
|
|
s32e a13, a8, -28
|
|
|
|
s32e a14, a8, -24
|
|
|
|
s32e a15, a8, -20
|
|
|
|
srli a15, a3, 3
|
|
|
|
|
|
|
|
/* The stack pointer for a4..a7 is out of reach, so we rotate the
|
|
|
|
* window, grab the stackpointer, and rotate back.
|
|
|
|
* Alternatively, we could also use the following approach, but that
|
|
|
|
* makes the fixup routine much more complicated:
|
|
|
|
* rotw 1
|
|
|
|
* s32e a0, a13, -16
|
|
|
|
* ...
|
|
|
|
* rotw 2
|
|
|
|
*/
|
|
|
|
|
|
|
|
rotw 1
|
|
|
|
mov a4, a13
|
|
|
|
rotw -1
|
|
|
|
|
|
|
|
s32e a4, a8, -16
|
|
|
|
s32e a5, a8, -12
|
|
|
|
s32e a6, a8, -8
|
|
|
|
s32e a7, a8, -4
|
|
|
|
|
|
|
|
rotw 3
|
|
|
|
|
|
|
|
_beqi a3, 1, .Lexit
|
|
|
|
j .Lloop
|
|
|
|
|
|
|
|
.Lexit:
|
|
|
|
|
|
|
|
/* Done. Do the final rotation and set WS */
|
|
|
|
|
|
|
|
rotw 1
|
|
|
|
rsr a3, windowbase
|
|
|
|
ssl a3
|
|
|
|
movi a3, 1
|
|
|
|
sll a3, a3
|
|
|
|
wsr a3, windowstart
|
|
|
|
.Lnospill:
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Advance PC, restore registers and SAR, and return from exception. */
|
|
|
|
|
2014-01-29 07:09:51 +01:00
|
|
|
l32i a3, a2, PT_SAR
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a0, a2, PT_AREG0
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a3, sar
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a3, a2, PT_AREG3
|
|
|
|
|
|
|
|
/* Restore clobbered registers. */
|
|
|
|
|
2014-01-29 07:09:51 +01:00
|
|
|
l32i a4, a2, PT_AREG4
|
2008-02-12 22:17:07 +01:00
|
|
|
l32i a7, a2, PT_AREG7
|
2014-01-29 07:09:51 +01:00
|
|
|
l32i a8, a2, PT_AREG8
|
2008-02-12 22:17:07 +01:00
|
|
|
l32i a11, a2, PT_AREG11
|
2014-01-29 07:09:51 +01:00
|
|
|
l32i a12, a2, PT_AREG12
|
2008-02-12 22:17:07 +01:00
|
|
|
l32i a15, a2, PT_AREG15
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
movi a2, 0
|
|
|
|
rfe
|
|
|
|
|
2014-01-29 07:09:51 +01:00
|
|
|
.Linvalid_mask:
|
|
|
|
|
|
|
|
/* We get here because of an unrecoverable error in the window
|
|
|
|
* registers, so set up a dummy frame and kill the user application.
|
|
|
|
* Note: We assume EXC_TABLE_KSTK contains a valid stack pointer.
|
|
|
|
*/
|
|
|
|
|
|
|
|
movi a0, 1
|
|
|
|
movi a1, 0
|
|
|
|
|
|
|
|
wsr a0, windowstart
|
|
|
|
wsr a1, windowbase
|
|
|
|
rsync
|
|
|
|
|
|
|
|
movi a0, 0
|
|
|
|
|
|
|
|
rsr a3, excsave1
|
|
|
|
l32i a1, a3, EXC_TABLE_KSTK
|
|
|
|
|
|
|
|
movi a4, (1 << PS_WOE_BIT) | LOCKLEVEL
|
|
|
|
wsr a4, ps
|
|
|
|
rsync
|
|
|
|
|
|
|
|
movi a6, SIGSEGV
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 do_exit
|
2014-01-29 07:09:51 +01:00
|
|
|
|
|
|
|
/* shouldn't return, so panic */
|
|
|
|
|
|
|
|
wsr a0, excsave1
|
2017-12-10 03:44:11 +01:00
|
|
|
call0 unrecoverable_exception # should not return
|
2014-01-29 07:09:51 +01:00
|
|
|
1: j 1b
|
|
|
|
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(fast_syscall_spill_registers)
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
/* Fixup handler.
|
|
|
|
*
|
|
|
|
* We get here if the spill routine causes an exception, e.g. tlb miss.
|
|
|
|
* We basically restore WINDOWBASE and WINDOWSTART to the condition when
|
|
|
|
* we entered the spill routine and jump to the user exception handler.
|
|
|
|
*
|
2013-10-30 13:18:25 +01:00
|
|
|
* Note that we only need to restore the bits in windowstart that have not
|
|
|
|
* been spilled yet by the _spill_register routine. Luckily, a3 contains a
|
|
|
|
* rotated windowstart with only those bits set for frames that haven't been
|
|
|
|
* spilled yet. Because a3 is rotated such that bit 0 represents the register
|
|
|
|
* frame for the current windowbase - 1, we need to rotate a3 left by the
|
|
|
|
* value of the current windowbase + 1 and move it to windowstart.
|
|
|
|
*
|
2005-06-24 07:01:16 +02:00
|
|
|
* a0: value of depc, original value in depc
|
|
|
|
* a2: trashed, original value in EXC_TABLE_DOUBLE_SAVE
|
|
|
|
* a3: exctable, original value in excsave1
|
|
|
|
*/
|
|
|
|
|
2013-10-15 00:22:42 +02:00
|
|
|
ENTRY(fast_syscall_spill_registers_fixup)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a2, windowbase # get current windowbase (a2 is saved)
|
|
|
|
xsr a0, depc # restore depc and a0
|
2005-06-24 07:01:16 +02:00
|
|
|
ssl a2 # set shift (32 - WB)
|
|
|
|
|
|
|
|
/* We need to make sure the current registers (a0-a3) are preserved.
|
|
|
|
* To do this, we simply set the bit for the current window frame
|
|
|
|
* in WS, so that the exception handlers save them to the task stack.
|
2013-10-30 13:18:25 +01:00
|
|
|
*
|
|
|
|
* Note: we use a3 to set the windowbase, so we take a special care
|
|
|
|
* of it, saving it in the original _spill_registers frame across
|
|
|
|
* the exception handler call.
|
2005-06-24 07:01:16 +02:00
|
|
|
*/
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
xsr a3, excsave1 # get spill-mask
|
2013-10-15 00:22:42 +02:00
|
|
|
slli a3, a3, 1 # shift left by one
|
2013-10-30 13:18:25 +01:00
|
|
|
addi a3, a3, 1 # set the bit for the current window frame
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2013-10-15 00:22:42 +02:00
|
|
|
slli a2, a3, 32-WSBITS
|
|
|
|
src a2, a3, a2 # a2 = xxwww1yyxxxwww1yy......
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a2, windowstart # set corrected windowstart
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2013-10-15 00:22:42 +02:00
|
|
|
srli a3, a3, 1
|
|
|
|
rsr a2, excsave1
|
|
|
|
l32i a2, a2, EXC_TABLE_DOUBLE_SAVE # restore a2
|
|
|
|
xsr a2, excsave1
|
|
|
|
s32i a3, a2, EXC_TABLE_DOUBLE_SAVE # save a3
|
|
|
|
l32i a3, a2, EXC_TABLE_PARAM # original WB (in user task)
|
|
|
|
xsr a2, excsave1
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Return to the original (user task) WINDOWBASE.
|
|
|
|
* We leave the following frame behind:
|
|
|
|
* a0, a1, a2 same
|
2013-10-15 00:22:42 +02:00
|
|
|
* a3: trashed (saved in EXC_TABLE_DOUBLE_SAVE)
|
2005-06-24 07:01:16 +02:00
|
|
|
* depc: depc (we have to return to that address)
|
2013-10-15 00:22:42 +02:00
|
|
|
* excsave_1: exctable
|
2005-06-24 07:01:16 +02:00
|
|
|
*/
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a3, windowbase
|
2005-06-24 07:01:16 +02:00
|
|
|
rsync
|
|
|
|
|
|
|
|
/* We are now in the original frame when we entered _spill_registers:
|
|
|
|
* a0: return address
|
|
|
|
* a1: used, stack pointer
|
|
|
|
* a2: kernel stack pointer
|
2013-10-15 00:22:42 +02:00
|
|
|
* a3: available
|
2005-06-24 07:01:16 +02:00
|
|
|
* depc: exception address
|
2013-10-15 00:22:42 +02:00
|
|
|
* excsave: exctable
|
2005-06-24 07:01:16 +02:00
|
|
|
* Note: This frame might be the same as above.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Setup stack pointer. */
|
|
|
|
|
|
|
|
addi a2, a2, -PT_USER_SIZE
|
|
|
|
s32i a0, a2, PT_AREG0
|
|
|
|
|
|
|
|
/* Make sure we return to this fixup handler. */
|
|
|
|
|
|
|
|
movi a3, fast_syscall_spill_registers_fixup_return
|
|
|
|
s32i a3, a2, PT_DEPC # setup depc
|
|
|
|
|
|
|
|
/* Jump to the exception handler. */
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
rsr a3, excsave1
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, exccause
|
2012-11-29 01:53:51 +01:00
|
|
|
addx4 a0, a0, a3 # find entry in table
|
|
|
|
l32i a0, a0, EXC_TABLE_FAST_USER # load handler
|
2013-10-15 00:22:42 +02:00
|
|
|
l32i a3, a3, EXC_TABLE_DOUBLE_SAVE
|
2012-11-29 01:53:51 +01:00
|
|
|
jx a0
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2013-10-15 00:22:42 +02:00
|
|
|
ENDPROC(fast_syscall_spill_registers_fixup)
|
|
|
|
|
|
|
|
ENTRY(fast_syscall_spill_registers_fixup_return)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* When we return here, all registers have been restored (a2: DEPC) */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a2, depc # exception address
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Restore fixup handler. */
|
|
|
|
|
2013-10-15 00:22:42 +02:00
|
|
|
rsr a2, excsave1
|
|
|
|
s32i a3, a2, EXC_TABLE_DOUBLE_SAVE
|
|
|
|
movi a3, fast_syscall_spill_registers_fixup
|
|
|
|
s32i a3, a2, EXC_TABLE_FIXUP
|
|
|
|
rsr a3, windowbase
|
|
|
|
s32i a3, a2, EXC_TABLE_PARAM
|
|
|
|
l32i a2, a2, EXC_TABLE_KSTK
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Load WB at the time the exception occurred. */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a3, sar # WB is still in SAR
|
2005-06-24 07:01:16 +02:00
|
|
|
neg a3, a3
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a3, windowbase
|
2005-06-24 07:01:16 +02:00
|
|
|
rsync
|
|
|
|
|
2013-10-15 00:22:42 +02:00
|
|
|
rsr a3, excsave1
|
|
|
|
l32i a3, a3, EXC_TABLE_DOUBLE_SAVE
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
rfde
|
|
|
|
|
2013-10-15 00:22:42 +02:00
|
|
|
ENDPROC(fast_syscall_spill_registers_fixup_return)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2014-08-07 01:32:30 +02:00
|
|
|
#else /* CONFIG_FAST_SYSCALL_SPILL_REGISTERS */
|
|
|
|
|
|
|
|
ENTRY(fast_syscall_spill_registers)
|
|
|
|
|
|
|
|
l32i a0, a2, PT_AREG0 # restore a0
|
|
|
|
movi a2, -ENOSYS
|
|
|
|
rfe
|
|
|
|
|
|
|
|
ENDPROC(fast_syscall_spill_registers)
|
|
|
|
|
|
|
|
#endif /* CONFIG_FAST_SYSCALL_SPILL_REGISTERS */
|
|
|
|
|
2009-03-04 16:21:31 +01:00
|
|
|
#ifdef CONFIG_MMU
|
2005-06-24 07:01:16 +02:00
|
|
|
/*
|
|
|
|
* We should never get here. Bail out!
|
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(fast_second_level_miss_double_kernel)
|
|
|
|
|
2017-12-10 03:44:11 +01:00
|
|
|
1:
|
|
|
|
call0 unrecoverable_exception # should not return
|
2005-06-24 07:01:16 +02:00
|
|
|
1: j 1b
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(fast_second_level_miss_double_kernel)
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
/* First-level entry handler for user, kernel, and double 2nd-level
|
|
|
|
* TLB miss exceptions. Note that for now, user and kernel miss
|
|
|
|
* exceptions share the same entry point and are handled identically.
|
|
|
|
*
|
|
|
|
* An old, less-efficient C version of this function used to exist.
|
|
|
|
* We include it below, interleaved as comments, for reference.
|
|
|
|
*
|
|
|
|
* Entry condition:
|
|
|
|
*
|
|
|
|
* a0: trashed, original value saved on stack (PT_AREG0)
|
|
|
|
* a1: a1
|
|
|
|
* a2: new stack pointer, original in DEPC
|
2013-07-03 18:23:28 +02:00
|
|
|
* a3: a3
|
2005-06-24 07:01:16 +02:00
|
|
|
* depc: a2, original value saved on stack (PT_DEPC)
|
2013-07-03 18:23:28 +02:00
|
|
|
* excsave_1: dispatch table
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
|
|
|
* PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
|
|
|
|
* < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
|
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(fast_second_level_miss)
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
/* Save a1 and a3. Note: we don't expect a double exception. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
s32i a1, a2, PT_AREG1
|
2013-07-03 18:23:28 +02:00
|
|
|
s32i a3, a2, PT_AREG3
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* We need to map the page of PTEs for the user task. Find
|
|
|
|
* the pointer to that page. Also, it's possible for tsk->mm
|
|
|
|
* to be NULL while tsk->active_mm is nonzero if we faulted on
|
|
|
|
* a vmalloc address. In that rare case, we must use
|
|
|
|
* active_mm instead to avoid a fault in this handler. See
|
|
|
|
*
|
|
|
|
* http://mail.nl.linux.org/linux-mm/2002-08/msg00258.html
|
|
|
|
* (or search Internet on "mm vs. active_mm")
|
|
|
|
*
|
|
|
|
* if (!mm)
|
|
|
|
* mm = tsk->active_mm;
|
|
|
|
* pgd = pgd_offset (mm, regs->excvaddr);
|
|
|
|
* pmd = pmd_offset (pgd, regs->excvaddr);
|
|
|
|
* pmdval = *pmd;
|
|
|
|
*/
|
|
|
|
|
|
|
|
GET_CURRENT(a1,a2)
|
|
|
|
l32i a0, a1, TASK_MM # tsk->mm
|
|
|
|
beqz a0, 9f
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
8: rsr a3, excvaddr # fault address
|
2007-08-07 08:57:57 +02:00
|
|
|
_PGD_OFFSET(a0, a3, a1)
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a0, a0, 0 # read pmdval
|
|
|
|
beqz a0, 2f
|
|
|
|
|
|
|
|
/* Read ptevaddr and convert to top of page-table page.
|
|
|
|
*
|
|
|
|
* vpnval = read_ptevaddr_register() & PAGE_MASK;
|
|
|
|
* vpnval += DTLB_WAY_PGTABLE;
|
|
|
|
* pteval = mk_pte (virt_to_page(pmd_val(pmdval)), PAGE_KERNEL);
|
|
|
|
* write_dtlb_entry (pteval, vpnval);
|
|
|
|
*
|
|
|
|
* The messy computation for 'pteval' above really simplifies
|
|
|
|
* into the following:
|
|
|
|
*
|
2016-04-13 04:20:02 +02:00
|
|
|
* pteval = ((pmdval - PAGE_OFFSET + PHYS_OFFSET) & PAGE_MASK)
|
|
|
|
* | PAGE_DIRECTORY
|
2005-06-24 07:01:16 +02:00
|
|
|
*/
|
|
|
|
|
2016-04-13 04:20:02 +02:00
|
|
|
movi a1, (PHYS_OFFSET - PAGE_OFFSET) & 0xffffffff
|
2005-06-24 07:01:16 +02:00
|
|
|
add a0, a0, a1 # pmdval - PAGE_OFFSET
|
|
|
|
extui a1, a0, 0, PAGE_SHIFT # ... & PAGE_MASK
|
|
|
|
xor a0, a0, a1
|
|
|
|
|
2007-08-07 08:57:57 +02:00
|
|
|
movi a1, _PAGE_DIRECTORY
|
2005-06-24 07:01:16 +02:00
|
|
|
or a0, a0, a1 # ... | PAGE_DIRECTORY
|
|
|
|
|
2007-08-07 08:57:57 +02:00
|
|
|
/*
|
2007-08-22 19:14:51 +02:00
|
|
|
* We utilize all three wired-ways (7-9) to hold pmd translations.
|
2007-08-07 08:57:57 +02:00
|
|
|
* Memory regions are mapped to the DTLBs according to bits 28 and 29.
|
|
|
|
* This allows to map the three most common regions to three different
|
|
|
|
* DTLBs:
|
|
|
|
* 0,1 -> way 7 program (0040.0000) and virtual (c000.0000)
|
|
|
|
* 2 -> way 8 shared libaries (2000.0000)
|
|
|
|
* 3 -> way 0 stack (3000.0000)
|
|
|
|
*/
|
|
|
|
|
|
|
|
extui a3, a3, 28, 2 # addr. bit 28 and 29 0,1,2,3
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a1, ptevaddr
|
2007-08-07 08:57:57 +02:00
|
|
|
addx2 a3, a3, a3 # -> 0,3,6,9
|
2005-06-24 07:01:16 +02:00
|
|
|
srli a1, a1, PAGE_SHIFT
|
2007-08-07 08:57:57 +02:00
|
|
|
extui a3, a3, 2, 2 # -> 0,0,1,2
|
2005-06-24 07:01:16 +02:00
|
|
|
slli a1, a1, PAGE_SHIFT # ptevaddr & PAGE_MASK
|
2007-08-07 08:57:57 +02:00
|
|
|
addi a3, a3, DTLB_WAY_PGD
|
|
|
|
add a1, a1, a3 # ... + way_number
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2007-08-07 08:57:57 +02:00
|
|
|
3: wdtlb a0, a1
|
2005-06-24 07:01:16 +02:00
|
|
|
dsync
|
|
|
|
|
|
|
|
/* Exit critical section. */
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
4: rsr a3, excsave1
|
2005-06-24 07:01:16 +02:00
|
|
|
movi a0, 0
|
|
|
|
s32i a0, a3, EXC_TABLE_FIXUP
|
|
|
|
|
|
|
|
/* Restore the working registers, and return. */
|
|
|
|
|
|
|
|
l32i a0, a2, PT_AREG0
|
|
|
|
l32i a1, a2, PT_AREG1
|
2013-07-03 18:23:28 +02:00
|
|
|
l32i a3, a2, PT_AREG3
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a2, a2, PT_DEPC
|
|
|
|
|
|
|
|
bgeui a2, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
|
|
|
|
|
|
|
|
/* Restore excsave1 and return. */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a2, depc
|
2005-06-24 07:01:16 +02:00
|
|
|
rfe
|
|
|
|
|
|
|
|
/* Return from double exception. */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
1: xsr a2, depc
|
2005-06-24 07:01:16 +02:00
|
|
|
esync
|
|
|
|
rfde
|
|
|
|
|
|
|
|
9: l32i a0, a1, TASK_ACTIVE_MM # unlikely case mm == 0
|
2015-07-16 09:37:31 +02:00
|
|
|
bnez a0, 8b
|
|
|
|
|
|
|
|
/* Even more unlikely case active_mm == 0.
|
|
|
|
* We can get here with NMI in the middle of context_switch that
|
|
|
|
* touches vmalloc area.
|
|
|
|
*/
|
|
|
|
movi a0, init_mm
|
2005-06-24 07:01:16 +02:00
|
|
|
j 8b
|
|
|
|
|
2007-08-22 19:14:51 +02:00
|
|
|
#if (DCACHE_WAY_SIZE > PAGE_SIZE)
|
|
|
|
|
|
|
|
2: /* Special case for cache aliasing.
|
|
|
|
* We (should) only get here if a clear_user_page, copy_user_page
|
|
|
|
* or the aliased cache flush functions got preemptively interrupted
|
|
|
|
* by another task. Re-establish temporary mapping to the
|
|
|
|
* TLBTEMP_BASE areas.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* We shouldn't be in a double exception */
|
|
|
|
|
|
|
|
l32i a0, a2, PT_DEPC
|
|
|
|
bgeui a0, VALID_DOUBLE_EXCEPTION_ADDRESS, 2f
|
|
|
|
|
|
|
|
/* Make sure the exception originated in the special functions */
|
|
|
|
|
|
|
|
movi a0, __tlbtemp_mapping_start
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a3, epc1
|
2007-08-22 19:14:51 +02:00
|
|
|
bltu a3, a0, 2f
|
|
|
|
movi a0, __tlbtemp_mapping_end
|
|
|
|
bgeu a3, a0, 2f
|
|
|
|
|
|
|
|
/* Check if excvaddr was in one of the TLBTEMP_BASE areas. */
|
|
|
|
|
|
|
|
movi a3, TLBTEMP_BASE_1
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a0, excvaddr
|
2007-08-22 19:14:51 +02:00
|
|
|
bltu a0, a3, 2f
|
|
|
|
|
2014-07-21 20:01:51 +02:00
|
|
|
addi a1, a0, -TLBTEMP_SIZE
|
2007-08-22 19:14:51 +02:00
|
|
|
bgeu a1, a3, 2f
|
|
|
|
|
|
|
|
/* Check if we have to restore an ITLB mapping. */
|
|
|
|
|
|
|
|
movi a1, __tlbtemp_mapping_itlb
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a3, epc1
|
2007-08-22 19:14:51 +02:00
|
|
|
sub a3, a3, a1
|
|
|
|
|
|
|
|
/* Calculate VPN */
|
|
|
|
|
|
|
|
movi a1, PAGE_MASK
|
|
|
|
and a1, a1, a0
|
|
|
|
|
|
|
|
/* Jump for ITLB entry */
|
|
|
|
|
|
|
|
bgez a3, 1f
|
|
|
|
|
|
|
|
/* We can use up to two TLBTEMP areas, one for src and one for dst. */
|
|
|
|
|
|
|
|
extui a3, a0, PAGE_SHIFT + DCACHE_ALIAS_ORDER, 1
|
|
|
|
add a1, a3, a1
|
|
|
|
|
|
|
|
/* PPN is in a6 for the first TLBTEMP area and in a7 for the second. */
|
|
|
|
|
|
|
|
mov a0, a6
|
|
|
|
movnez a0, a7, a3
|
|
|
|
j 3b
|
|
|
|
|
|
|
|
/* ITLB entry. We only use dst in a6. */
|
|
|
|
|
|
|
|
1: witlb a6, a1
|
|
|
|
isync
|
|
|
|
j 4b
|
|
|
|
|
|
|
|
|
|
|
|
#endif // DCACHE_WAY_SIZE > PAGE_SIZE
|
|
|
|
|
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
2: /* Invalid PGD, default exception handling */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a1, depc
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a1, a2, PT_AREG2
|
|
|
|
mov a1, a2
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a2, ps
|
2006-12-10 11:18:48 +01:00
|
|
|
bbsi.l a2, PS_UM_BIT, 1f
|
2005-06-24 07:01:16 +02:00
|
|
|
j _kernel_exception
|
|
|
|
1: j _user_exception
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(fast_second_level_miss)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* StoreProhibitedException
|
|
|
|
*
|
|
|
|
* Update the pte and invalidate the itlb mapping for this pte.
|
|
|
|
*
|
|
|
|
* Entry condition:
|
|
|
|
*
|
|
|
|
* a0: trashed, original value saved on stack (PT_AREG0)
|
|
|
|
* a1: a1
|
|
|
|
* a2: new stack pointer, original in DEPC
|
2013-07-03 18:23:28 +02:00
|
|
|
* a3: a3
|
2005-06-24 07:01:16 +02:00
|
|
|
* depc: a2, original value saved on stack (PT_DEPC)
|
2013-07-03 18:23:28 +02:00
|
|
|
* excsave_1: dispatch table
|
2005-06-24 07:01:16 +02:00
|
|
|
*
|
|
|
|
* PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception, DEPC
|
|
|
|
* < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
|
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(fast_store_prohibited)
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
/* Save a1 and a3. */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
s32i a1, a2, PT_AREG1
|
2013-07-03 18:23:28 +02:00
|
|
|
s32i a3, a2, PT_AREG3
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
GET_CURRENT(a1,a2)
|
|
|
|
l32i a0, a1, TASK_MM # tsk->mm
|
|
|
|
beqz a0, 9f
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
8: rsr a1, excvaddr # fault address
|
2013-07-03 18:23:28 +02:00
|
|
|
_PGD_OFFSET(a0, a1, a3)
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a0, a0, 0
|
|
|
|
beqz a0, 2f
|
|
|
|
|
2013-05-18 21:34:30 +02:00
|
|
|
/*
|
|
|
|
* Note that we test _PAGE_WRITABLE_BIT only if PTE is present
|
|
|
|
* and is not PAGE_NONE. See pgtable.h for possible PTE layouts.
|
|
|
|
*/
|
2007-08-07 08:57:57 +02:00
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
_PTE_OFFSET(a0, a1, a3)
|
|
|
|
l32i a3, a0, 0 # read pteval
|
2013-05-18 21:34:30 +02:00
|
|
|
movi a1, _PAGE_CA_INVALID
|
2013-07-03 18:23:28 +02:00
|
|
|
ball a3, a1, 2f
|
|
|
|
bbci.l a3, _PAGE_WRITABLE_BIT, 2f
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2007-08-07 08:57:57 +02:00
|
|
|
movi a1, _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_HW_WRITE
|
2013-07-03 18:23:28 +02:00
|
|
|
or a3, a3, a1
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a1, excvaddr
|
2013-07-03 18:23:28 +02:00
|
|
|
s32i a3, a0, 0
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* We need to flush the cache if we have page coloring. */
|
|
|
|
#if (DCACHE_WAY_SIZE > PAGE_SIZE) && XCHAL_DCACHE_IS_WRITEBACK
|
|
|
|
dhwb a0, 0
|
|
|
|
#endif
|
|
|
|
pdtlb a0, a1
|
2013-07-03 18:23:28 +02:00
|
|
|
wdtlb a3, a0
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Exit critical section. */
|
|
|
|
|
|
|
|
movi a0, 0
|
2013-07-03 18:23:28 +02:00
|
|
|
rsr a3, excsave1
|
2005-06-24 07:01:16 +02:00
|
|
|
s32i a0, a3, EXC_TABLE_FIXUP
|
|
|
|
|
|
|
|
/* Restore the working registers, and return. */
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
l32i a3, a2, PT_AREG3
|
2005-06-24 07:01:16 +02:00
|
|
|
l32i a1, a2, PT_AREG1
|
|
|
|
l32i a0, a2, PT_AREG0
|
|
|
|
l32i a2, a2, PT_DEPC
|
|
|
|
|
|
|
|
bgeui a2, VALID_DOUBLE_EXCEPTION_ADDRESS, 1f
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a2, depc
|
2005-06-24 07:01:16 +02:00
|
|
|
rfe
|
|
|
|
|
|
|
|
/* Double exception. Restore FIXUP handler and return. */
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
1: xsr a2, depc
|
2005-06-24 07:01:16 +02:00
|
|
|
esync
|
|
|
|
rfde
|
|
|
|
|
|
|
|
9: l32i a0, a1, TASK_ACTIVE_MM # unlikely case mm == 0
|
|
|
|
j 8b
|
|
|
|
|
|
|
|
2: /* If there was a problem, handle fault in C */
|
|
|
|
|
2013-07-03 18:23:28 +02:00
|
|
|
rsr a3, depc # still holds a2
|
|
|
|
s32i a3, a2, PT_AREG2
|
2005-06-24 07:01:16 +02:00
|
|
|
mov a1, a2
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a2, ps
|
2006-12-10 11:18:48 +01:00
|
|
|
bbsi.l a2, PS_UM_BIT, 1f
|
2005-06-24 07:01:16 +02:00
|
|
|
j _kernel_exception
|
|
|
|
1: j _user_exception
|
2012-11-17 01:16:20 +01:00
|
|
|
|
|
|
|
ENDPROC(fast_store_prohibited)
|
|
|
|
|
2009-03-04 16:21:31 +01:00
|
|
|
#endif /* CONFIG_MMU */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2006-12-10 11:18:52 +01:00
|
|
|
/*
|
|
|
|
* System Calls.
|
|
|
|
*
|
|
|
|
* void system_call (struct pt_regs* regs, int exccause)
|
|
|
|
* a2 a3
|
|
|
|
*/
|
2017-12-04 05:55:35 +01:00
|
|
|
.literal_position
|
2006-12-10 11:18:52 +01:00
|
|
|
|
|
|
|
ENTRY(system_call)
|
2012-11-17 01:16:20 +01:00
|
|
|
|
2006-12-10 11:18:52 +01:00
|
|
|
entry a1, 32
|
|
|
|
|
|
|
|
/* regs->syscall = regs->areg[2] */
|
|
|
|
|
|
|
|
l32i a3, a2, PT_AREG2
|
|
|
|
mov a6, a2
|
|
|
|
s32i a3, a2, PT_SYSCALL
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 do_syscall_trace_enter
|
2015-03-16 12:40:14 +01:00
|
|
|
mov a3, a6
|
2006-12-10 11:18:52 +01:00
|
|
|
|
|
|
|
/* syscall = sys_call_table[syscall_nr] */
|
|
|
|
|
2015-03-16 12:40:14 +01:00
|
|
|
movi a4, sys_call_table
|
2006-12-10 11:18:52 +01:00
|
|
|
movi a5, __NR_syscall_count
|
|
|
|
movi a6, -ENOSYS
|
|
|
|
bgeu a3, a5, 1f
|
|
|
|
|
|
|
|
addx4 a4, a3, a4
|
|
|
|
l32i a4, a4, 0
|
|
|
|
movi a5, sys_ni_syscall;
|
|
|
|
beq a4, a5, 1f
|
|
|
|
|
|
|
|
/* Load args: arg0 - arg5 are passed via regs. */
|
|
|
|
|
|
|
|
l32i a6, a2, PT_AREG6
|
|
|
|
l32i a7, a2, PT_AREG3
|
|
|
|
l32i a8, a2, PT_AREG4
|
|
|
|
l32i a9, a2, PT_AREG5
|
|
|
|
l32i a10, a2, PT_AREG8
|
|
|
|
l32i a11, a2, PT_AREG9
|
|
|
|
|
|
|
|
/* Pass one additional argument to the syscall: pt_regs (on stack) */
|
|
|
|
s32i a2, a1, 0
|
|
|
|
|
|
|
|
callx4 a4
|
|
|
|
|
|
|
|
1: /* regs->areg[2] = return_value */
|
|
|
|
|
|
|
|
s32i a6, a2, PT_AREG2
|
|
|
|
mov a6, a2
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 do_syscall_trace_leave
|
2006-12-10 11:18:52 +01:00
|
|
|
retw
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(system_call)
|
|
|
|
|
2014-01-22 05:04:43 +01:00
|
|
|
/*
|
|
|
|
* Spill live registers on the kernel stack macro.
|
|
|
|
*
|
|
|
|
* Entry condition: ps.woe is set, ps.excm is cleared
|
|
|
|
* Exit condition: windowstart has single bit set
|
|
|
|
* May clobber: a12, a13
|
|
|
|
*/
|
|
|
|
.macro spill_registers_kernel
|
|
|
|
|
|
|
|
#if XCHAL_NUM_AREGS > 16
|
|
|
|
call12 1f
|
|
|
|
_j 2f
|
|
|
|
retw
|
|
|
|
.align 4
|
|
|
|
1:
|
|
|
|
_entry a1, 48
|
|
|
|
addi a12, a0, 3
|
|
|
|
#if XCHAL_NUM_AREGS > 32
|
|
|
|
.rept (XCHAL_NUM_AREGS - 32) / 12
|
|
|
|
_entry a1, 48
|
|
|
|
mov a12, a0
|
|
|
|
.endr
|
|
|
|
#endif
|
2015-07-16 09:41:02 +02:00
|
|
|
_entry a1, 16
|
2014-01-22 05:04:43 +01:00
|
|
|
#if XCHAL_NUM_AREGS % 12 == 0
|
|
|
|
mov a8, a8
|
|
|
|
#elif XCHAL_NUM_AREGS % 12 == 4
|
|
|
|
mov a12, a12
|
|
|
|
#elif XCHAL_NUM_AREGS % 12 == 8
|
|
|
|
mov a4, a4
|
|
|
|
#endif
|
|
|
|
retw
|
|
|
|
2:
|
|
|
|
#else
|
|
|
|
mov a12, a12
|
|
|
|
#endif
|
|
|
|
.endm
|
2006-12-10 11:18:52 +01:00
|
|
|
|
2005-06-24 07:01:16 +02:00
|
|
|
/*
|
|
|
|
* Task switch.
|
|
|
|
*
|
|
|
|
* struct task* _switch_to (struct task* prev, struct task* next)
|
|
|
|
* a2 a2 a3
|
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(_switch_to)
|
|
|
|
|
2015-07-16 09:41:02 +02:00
|
|
|
entry a1, 48
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2014-01-22 05:04:43 +01:00
|
|
|
mov a11, a3 # and 'next' (a3)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2008-02-12 22:17:07 +01:00
|
|
|
l32i a4, a2, TASK_THREAD_INFO
|
|
|
|
l32i a5, a3, TASK_THREAD_INFO
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2014-01-22 05:04:43 +01:00
|
|
|
save_xtregs_user a4 a6 a8 a9 a12 a13 THREAD_XTREGS_USER
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2014-07-27 05:23:41 +02:00
|
|
|
#if THREAD_RA > 1020 || THREAD_SP > 1020
|
|
|
|
addi a10, a2, TASK_THREAD
|
|
|
|
s32i a0, a10, THREAD_RA - TASK_THREAD # save return address
|
|
|
|
s32i a1, a10, THREAD_SP - TASK_THREAD # save stack pointer
|
|
|
|
#else
|
|
|
|
s32i a0, a2, THREAD_RA # save return address
|
|
|
|
s32i a1, a2, THREAD_SP # save stack pointer
|
|
|
|
#endif
|
2008-02-12 22:17:07 +01:00
|
|
|
|
Kbuild: rename CC_STACKPROTECTOR[_STRONG] config variables
The changes to automatically test for working stack protector compiler
support in the Kconfig files removed the special STACKPROTECTOR_AUTO
option that picked the strongest stack protector that the compiler
supported.
That was all a nice cleanup - it makes no sense to have the AUTO case
now that the Kconfig phase can just determine the compiler support
directly.
HOWEVER.
It also meant that doing "make oldconfig" would now _disable_ the strong
stackprotector if you had AUTO enabled, because in a legacy config file,
the sane stack protector configuration would look like
CONFIG_HAVE_CC_STACKPROTECTOR=y
# CONFIG_CC_STACKPROTECTOR_NONE is not set
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
# CONFIG_CC_STACKPROTECTOR_STRONG is not set
CONFIG_CC_STACKPROTECTOR_AUTO=y
and when you ran this through "make oldconfig" with the Kbuild changes,
it would ask you about the regular CONFIG_CC_STACKPROTECTOR (that had
been renamed from CONFIG_CC_STACKPROTECTOR_REGULAR to just
CONFIG_CC_STACKPROTECTOR), but it would think that the STRONG version
used to be disabled (because it was really enabled by AUTO), and would
disable it in the new config, resulting in:
CONFIG_HAVE_CC_STACKPROTECTOR=y
CONFIG_CC_HAS_STACKPROTECTOR_NONE=y
CONFIG_CC_STACKPROTECTOR=y
# CONFIG_CC_STACKPROTECTOR_STRONG is not set
CONFIG_CC_HAS_SANE_STACKPROTECTOR=y
That's dangerously subtle - people could suddenly find themselves with
the weaker stack protector setup without even realizing.
The solution here is to just rename not just the old RECULAR stack
protector option, but also the strong one. This does that by just
removing the CC_ prefix entirely for the user choices, because it really
is not about the compiler support (the compiler support now instead
automatially impacts _visibility_ of the options to users).
This results in "make oldconfig" actually asking the user for their
choice, so that we don't have any silent subtle security model changes.
The end result would generally look like this:
CONFIG_HAVE_CC_STACKPROTECTOR=y
CONFIG_CC_HAS_STACKPROTECTOR_NONE=y
CONFIG_STACKPROTECTOR=y
CONFIG_STACKPROTECTOR_STRONG=y
CONFIG_CC_HAS_SANE_STACKPROTECTOR=y
where the "CC_" versions really are about internal compiler
infrastructure, not the user selections.
Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2018-06-14 05:21:18 +02:00
|
|
|
#if defined(CONFIG_STACKPROTECTOR) && !defined(CONFIG_SMP)
|
2017-03-27 11:44:47 +02:00
|
|
|
movi a6, __stack_chk_guard
|
|
|
|
l32i a8, a3, TASK_STACK_CANARY
|
|
|
|
s32i a8, a6, 0
|
|
|
|
#endif
|
|
|
|
|
2008-02-12 22:17:07 +01:00
|
|
|
/* Disable ints while we manipulate the stack pointer. */
|
|
|
|
|
2015-07-16 09:37:31 +02:00
|
|
|
irq_save a14, a3
|
2005-06-24 07:01:16 +02:00
|
|
|
rsync
|
|
|
|
|
2008-02-12 22:17:07 +01:00
|
|
|
/* Switch CPENABLE */
|
|
|
|
|
|
|
|
#if (XTENSA_HAVE_COPROCESSORS || XTENSA_HAVE_IO_PORTS)
|
|
|
|
l32i a3, a5, THREAD_CPENABLE
|
2012-10-15 01:55:38 +02:00
|
|
|
xsr a3, cpenable
|
2008-02-12 22:17:07 +01:00
|
|
|
s32i a3, a4, THREAD_CPENABLE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Flush register file. */
|
|
|
|
|
2014-01-22 05:04:43 +01:00
|
|
|
spill_registers_kernel
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
/* Set kernel stack (and leave critical section)
|
|
|
|
* Note: It's save to set it here. The stack will not be overwritten
|
|
|
|
* because the kernel stack will only be loaded again after
|
|
|
|
* we return from kernel space.
|
|
|
|
*/
|
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
rsr a3, excsave1 # exc_table
|
2008-02-12 22:17:07 +01:00
|
|
|
addi a7, a5, PT_REGS_OFFSET
|
|
|
|
s32i a7, a3, EXC_TABLE_KSTK
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2013-02-24 04:35:57 +01:00
|
|
|
/* restore context of the task 'next' */
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2014-01-22 05:04:43 +01:00
|
|
|
l32i a0, a11, THREAD_RA # restore return address
|
|
|
|
l32i a1, a11, THREAD_SP # restore stack pointer
|
2008-02-12 22:17:07 +01:00
|
|
|
|
2014-01-22 05:04:43 +01:00
|
|
|
load_xtregs_user a5 a6 a8 a9 a12 a13 THREAD_XTREGS_USER
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2012-10-15 01:55:38 +02:00
|
|
|
wsr a14, ps
|
2005-06-24 07:01:16 +02:00
|
|
|
rsync
|
|
|
|
|
|
|
|
retw
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(_switch_to)
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
ENTRY(ret_from_fork)
|
|
|
|
|
|
|
|
/* void schedule_tail (struct task_struct *prev)
|
|
|
|
* Note: prev is still in a6 (return value from fake call4 frame)
|
|
|
|
*/
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 schedule_tail
|
2005-06-24 07:01:16 +02:00
|
|
|
|
2006-12-10 11:18:52 +01:00
|
|
|
mov a6, a1
|
2017-12-10 03:44:11 +01:00
|
|
|
call4 do_syscall_trace_leave
|
2005-06-24 07:01:16 +02:00
|
|
|
|
|
|
|
j common_exception_return
|
|
|
|
|
2012-11-17 01:16:20 +01:00
|
|
|
ENDPROC(ret_from_fork)
|
|
|
|
|
2012-10-25 09:10:50 +02:00
|
|
|
/*
|
|
|
|
* Kernel thread creation helper
|
|
|
|
* On entry, set up by copy_thread: a2 = thread_fn, a3 = thread_fn arg
|
|
|
|
* left from _switch_to: a6 = prev
|
|
|
|
*/
|
|
|
|
ENTRY(ret_from_kernel_thread)
|
|
|
|
|
|
|
|
call4 schedule_tail
|
|
|
|
mov a6, a3
|
|
|
|
callx4 a2
|
2012-10-25 09:10:51 +02:00
|
|
|
j common_exception_return
|
2012-10-25 09:10:50 +02:00
|
|
|
|
|
|
|
ENDPROC(ret_from_kernel_thread)
|