summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-11-30 14:02:33 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-11-30 14:02:33 +0000
commit7f8c11c73d834cbaec472fd2b35cb9f76aaae76b (patch)
treed65e31951357dcef8998992279838e92c3d086b6
parent2000-11-30 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-7f8c11c73d834cbaec472fd2b35cb9f76aaae76b.tar.bz2
2000-11-30 Joel Sherrill <joel@OARcorp.com>
* cpu_asm.S: Changed "_CPU_Ccontext_switch_restore: typo to correct name of _CPU_Context_switch_restore. Added dummy version of exc_utlb_code() so applications would link.
-rw-r--r--c/src/exec/score/cpu/mips/ChangeLog6
-rw-r--r--c/src/exec/score/cpu/mips/cpu_asm.S10
-rw-r--r--cpukit/score/cpu/mips/ChangeLog6
-rw-r--r--cpukit/score/cpu/mips/cpu_asm.S10
4 files changed, 28 insertions, 4 deletions
diff --git a/c/src/exec/score/cpu/mips/ChangeLog b/c/src/exec/score/cpu/mips/ChangeLog
index 3374aa8a29..9edafc7635 100644
--- a/c/src/exec/score/cpu/mips/ChangeLog
+++ b/c/src/exec/score/cpu/mips/ChangeLog
@@ -1,3 +1,9 @@
+2000-11-30 Joel Sherrill <joel@OARcorp.com>
+
+ * cpu_asm.S: Changed "_CPU_Ccontext_switch_restore: typo to
+ correct name of _CPU_Context_switch_restore. Added dummy
+ version of exc_utlb_code() so applications would link.
+
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
diff --git a/c/src/exec/score/cpu/mips/cpu_asm.S b/c/src/exec/score/cpu/mips/cpu_asm.S
index c04c1e7d30..b074369f17 100644
--- a/c/src/exec/score/cpu/mips/cpu_asm.S
+++ b/c/src/exec/score/cpu/mips/cpu_asm.S
@@ -481,7 +481,7 @@ ENDFRAME(_CPU_Context_restore)
FRAME(_CPU_Context_restore,sp,0,ra)
add a1,a0,zero
- j _CPU_Ccontext_switch_restore
+ j _CPU_Context_switch_restore
nop
ENDFRAME(_CPU_Context_restore)
@@ -867,7 +867,7 @@ _ISR_Handler_1:
* }
*/
/* k0 has the SR interrupt bits */
- la t3, _ISR_vector_table
+ la t3, _ISR_Vector_table
/* The bits you look at can be prioritized here just by */
/* changing what bit is looked at. I.E. SR_IBITx */
@@ -1327,6 +1327,12 @@ FRAME(init_exc_vecs,sp,0,ra)
ENDFRAME(init_exc_vecs)
+FRAME(exc_utlb_code,sp,0,ra)
+ la k0, _ISR_Handler /* XXX not right -- but need to link*/
+ j k0
+ nop
+ENDFRAME(exc_utlb_code)
+
FRAME(exc_norm_code,sp,0,ra)
la k0, _ISR_Handler /* generic external int hndlr */
j k0
diff --git a/cpukit/score/cpu/mips/ChangeLog b/cpukit/score/cpu/mips/ChangeLog
index 3374aa8a29..9edafc7635 100644
--- a/cpukit/score/cpu/mips/ChangeLog
+++ b/cpukit/score/cpu/mips/ChangeLog
@@ -1,3 +1,9 @@
+2000-11-30 Joel Sherrill <joel@OARcorp.com>
+
+ * cpu_asm.S: Changed "_CPU_Ccontext_switch_restore: typo to
+ correct name of _CPU_Context_switch_restore. Added dummy
+ version of exc_utlb_code() so applications would link.
+
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
diff --git a/cpukit/score/cpu/mips/cpu_asm.S b/cpukit/score/cpu/mips/cpu_asm.S
index c04c1e7d30..b074369f17 100644
--- a/cpukit/score/cpu/mips/cpu_asm.S
+++ b/cpukit/score/cpu/mips/cpu_asm.S
@@ -481,7 +481,7 @@ ENDFRAME(_CPU_Context_restore)
FRAME(_CPU_Context_restore,sp,0,ra)
add a1,a0,zero
- j _CPU_Ccontext_switch_restore
+ j _CPU_Context_switch_restore
nop
ENDFRAME(_CPU_Context_restore)
@@ -867,7 +867,7 @@ _ISR_Handler_1:
* }
*/
/* k0 has the SR interrupt bits */
- la t3, _ISR_vector_table
+ la t3, _ISR_Vector_table
/* The bits you look at can be prioritized here just by */
/* changing what bit is looked at. I.E. SR_IBITx */
@@ -1327,6 +1327,12 @@ FRAME(init_exc_vecs,sp,0,ra)
ENDFRAME(init_exc_vecs)
+FRAME(exc_utlb_code,sp,0,ra)
+ la k0, _ISR_Handler /* XXX not right -- but need to link*/
+ j k0
+ nop
+ENDFRAME(exc_utlb_code)
+
FRAME(exc_norm_code,sp,0,ra)
la k0, _ISR_Handler /* generic external int hndlr */
j k0