]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Blackfin: use scratch pad for exception stack
authorMike Frysinger <vapier@gentoo.org>
Tue, 25 Aug 2009 00:48:04 +0000 (20:48 -0400)
committerMike Frysinger <vapier@gentoo.org>
Wed, 2 Sep 2009 09:58:38 +0000 (05:58 -0400)
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>
cpu/blackfin/interrupt.S
include/asm-blackfin/config.h

index dd2cc5320c089565ae5294d1461c686cbbecf0de..71e0fc67088fb4323628ad0f1bca41fe7f59ecac 100644 (file)
@@ -5,6 +5,7 @@
  * Licensed under the GPL-2 or later.
  */
 
+#include <config.h>
 #include <asm/blackfin.h>
 #include <asm/entry.h>
 
 
 /* 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)
 
index 5739b1377c0913687853c0794d2c8d757ad3acea..25794dd4bf024a8b19834da0c307953b1e978aaa 100644 (file)
 # error CONFIG_BFIN_CPU: your board config needs to define this
 #endif
 
+#ifndef CONFIG_BFIN_SCRATCH_REG
+# define CONFIG_BFIN_SCRATCH_REG retn
+#endif
+
 /* Make sure the structure is properly aligned */
 #if ((CONFIG_SYS_GBL_DATA_ADDR & -4) != CONFIG_SYS_GBL_DATA_ADDR)
 # error CONFIG_SYS_GBL_DATA_ADDR: must be 4 byte aligned