summaryrefslogtreecommitdiff
path: root/cpu/blackfin
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-08-24 20:48:04 -0400
committerTom Rix <Tom.Rix@windriver.com>2009-10-03 09:04:07 -0500
commit6c507885c766646a66d822feee351e1f2b58d586 (patch)
tree4007da15f71aeb5f3232d76434c7c69f216bf701 /cpu/blackfin
parentdfc703fac589eef22aadb7dde2ab0ff16eabb9b8 (diff)
Blackfin: use scratch pad for exception stack
If the memory layout pushes the stack out of the default DCPLB coverage, the exception handler may trigger a double fault by trying to push onto the uncovered stack. So handle the exception stack similar to the kernel by using the top of the scratch pad SRAM. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'cpu/blackfin')
-rw-r--r--cpu/blackfin/interrupt.S5
1 files changed, 5 insertions, 0 deletions
diff --git a/cpu/blackfin/interrupt.S b/cpu/blackfin/interrupt.S
index dd2cc5320c..71e0fc6708 100644
--- a/cpu/blackfin/interrupt.S
+++ b/cpu/blackfin/interrupt.S
@@ -5,6 +5,7 @@
* Licensed under the GPL-2 or later.
*/
+#include <config.h>
#include <asm/blackfin.h>
#include <asm/entry.h>
@@ -12,12 +13,16 @@
/* default entry point for exceptions */
ENTRY(_trap)
+ CONFIG_BFIN_SCRATCH_REG = sp;
+ sp.l = LO(L1_SRAM_SCRATCH_END - 20);
+ sp.h = HI(L1_SRAM_SCRATCH_END - 20);
SAVE_ALL_SYS
r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
sp += -12;
call _trap_c;
sp += 12;
RESTORE_ALL_SYS
+ sp = CONFIG_BFIN_SCRATCH_REG;
rtx;
ENDPROC(_trap)