summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/lib/libbsp/powerpc/ppcn_60x/ChangeLog9
-rw-r--r--c/src/lib/libbsp/powerpc/ppcn_60x/startup/spurious.c11
2 files changed, 14 insertions, 6 deletions
diff --git a/c/src/lib/libbsp/powerpc/ppcn_60x/ChangeLog b/c/src/lib/libbsp/powerpc/ppcn_60x/ChangeLog
index 2ce7a3475e..562fcfb6fe 100644
--- a/c/src/lib/libbsp/powerpc/ppcn_60x/ChangeLog
+++ b/c/src/lib/libbsp/powerpc/ppcn_60x/ChangeLog
@@ -1,3 +1,12 @@
+2001-11-08 Dennis Ehlin (ECS) <Dennis.Ehlin@ecs.ericsson.se>
+
+ This modification is part of the submitted modifications necessary to
+ support the IBM PPC405 family. This submission was reviewed by
+ Thomas Doerfler <Thomas.Doerfler@imd-systems.de> who ensured it did
+ not negatively impact the ppc403 BSPs. The submission and tracking
+ process was captured as PR50.
+ * startup/spurious.c: Added ppc405 support.
+
2001-10-25 Joel Sherrill <joel@OARcorp.com>
* startup/linkcmds: Added _init and _fini.
diff --git a/c/src/lib/libbsp/powerpc/ppcn_60x/startup/spurious.c b/c/src/lib/libbsp/powerpc/ppcn_60x/startup/spurious.c
index af18752c71..9825cba81a 100644
--- a/c/src/lib/libbsp/powerpc/ppcn_60x/startup/spurious.c
+++ b/c/src/lib/libbsp/powerpc/ppcn_60x/startup/spurious.c
@@ -86,22 +86,21 @@ rtems_isr bsp_spurious_handler(
DEBUG_puts( "Floating point Assist" );
break;
-#if defined(ppc403)
-#error "Please fill in names. "
+#if defined(ppc403) || defined(ppc405)
case PPC_IRQ_CRIT :
DEBUG_puts( "Critical Error ");
break;
case PPC_IRQ_PIT:
- DEBUG_puts( "0x01000" );
+ DEBUG_puts( "Prog. Interval Timer " );
break;
case PPC_IRQ_FIT:
- DEBUG_puts( "0x01010" );
+ DEBUG_puts( "Fixed Interval Timer " );
break;
case PPC_IRQ_WATCHDOG :
- DEBUG_puts( "0x01020" );
+ DEBUG_puts( "Watchdog Timer " );
break;
case PPC_IRQ_DEBUG :
- DEBUG_puts( "0x02000" );
+ DEBUG_puts( "Debug " );
break;
#elif defined(ppc601)