summaryrefslogtreecommitdiff
path: root/nuttx/arch/mips/src/mips32/up_syscall0.S
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-25 15:56:08 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-25 15:56:08 +0000
commit405e3e05c19a5af78b0be51c77bc79eed5d21108 (patch)
tree3482b22ad156a7be2cfae963dcd80e993fa3cd77 /nuttx/arch/mips/src/mips32/up_syscall0.S
parent05f9ddee3b6976be77d91ab1cf0efdec98729081 (diff)
downloadpx4-nuttx-405e3e05c19a5af78b0be51c77bc79eed5d21108.tar.gz
px4-nuttx-405e3e05c19a5af78b0be51c77bc79eed5d21108.tar.bz2
px4-nuttx-405e3e05c19a5af78b0be51c77bc79eed5d21108.zip
Fix a PIC32 software interrupt bug (pipeline hazard)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4224 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/mips/src/mips32/up_syscall0.S')
-rw-r--r--nuttx/arch/mips/src/mips32/up_syscall0.S24
1 files changed, 21 insertions, 3 deletions
diff --git a/nuttx/arch/mips/src/mips32/up_syscall0.S b/nuttx/arch/mips/src/mips32/up_syscall0.S
index 241fd7aa7..b5a0e5213 100644
--- a/nuttx/arch/mips/src/mips32/up_syscall0.S
+++ b/nuttx/arch/mips/src/mips32/up_syscall0.S
@@ -2,7 +2,7 @@
* arch/mips/src/mips32/up_syscall0.S
*
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -73,6 +73,9 @@
* up_syscall2 - System call SYS_ argument and two additional parameters.
* up_syscall3 - System call SYS_ argument and three additional parameters.
*
+ * Assumption:
+ * All interrupts are disabled except for the software interrupts.
+ *
****************************************************************************/
.text
@@ -85,10 +88,25 @@ sys_call3: /* r4 holds the syscall number, arguments in r5, r6, and r7 */
.set push
.set noat
+
+ /* Set Bit 8 to request the software interrupt */
+
mfc0 t3, MIPS32_CP0_CAUSE /* t3 = CP0 cause register */
ori t3, (1 << 8) /* Bit 8: Request software interrupt 0 */
.set noreorder
mtc0 t3, MIPS32_CP0_CAUSE /* Trigger the software interrupt */
- nop /* Delay slot */
- j ra /* Return with result in v0 */
+
+ /* The actual interrupt will not a occur for a few more cycles. Let's
+ * put a few nop's here in hope that the SW interrupt occurs during
+ * the sequence of nops.
+ */
+
+ nop
+ nop
+ nop
+ nop
+
+ /* Then return with the result of the software interrupt in v0 */
+
+ j ra
.end sys_call0