summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/or1k/or1ksim/start/start.S
diff options
context:
space:
mode:
authorHesham ALMatary <heshamelmatary@gmail.com>2014-09-15 17:33:28 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-09-16 09:52:56 -0500
commiteb14fc2b2ea49aa8a7b4f464de9360a129845b73 (patch)
tree7e420a6627016c823c7fc905c160f3c9cc9d3f67 /c/src/lib/libbsp/or1k/or1ksim/start/start.S
parentsptests/sp07: Minimize thread dispatch latency (diff)
downloadrtems-eb14fc2b2ea49aa8a7b4f464de9360a129845b73.tar.bz2
OpenRISC: Account for red-zone (fixup printf bug).
This patch allocate a space in the stack to account for red-zone that gcc may utilize for the use of leaf functions. Care must be taken to handle this red-zone from many places: 1- Upon creation of a new thread stack. 2- Once an interrupt entred. Also moving the enable-thread-dispach() and increment ISR level before checking if dispatch needed was required. The previous modifications solved the printf bug which disabled ticker to output strings after context switches that arise from Thread_Delay_ended.
Diffstat (limited to 'c/src/lib/libbsp/or1k/or1ksim/start/start.S')
-rw-r--r--c/src/lib/libbsp/or1k/or1ksim/start/start.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/or1k/or1ksim/start/start.S b/c/src/lib/libbsp/or1k/or1ksim/start/start.S
index 6942b5217f..4d911d4a41 100644
--- a/c/src/lib/libbsp/or1k/or1ksim/start/start.S
+++ b/c/src/lib/libbsp/or1k/or1ksim/start/start.S
@@ -16,7 +16,7 @@
*/
#define EXCEPTION_SETUP(vector) \
l.nop ;\
- l.addi r1, r1, -4 ;\
+ l.addi r1, r1, -200 ;\
l.sw 0(r1), r3; \
l.addi r3, r0, vector; \
l.j _ISR_Handler; \