summaryrefslogtreecommitdiffstats
path: root/c/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-11-08 23:48:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-11-08 23:48:08 +0000
commitaecef8f99299cc1a9bbdd763216c28db0d536a17 (patch)
treea3183597074ecda13969142df8a8361f6fca29c2 /c/src
parent2001-11-08 Dennis Ehlin (ECS) <Dennis.Ehlin@ecs.ericsson.se> (diff)
downloadrtems-aecef8f99299cc1a9bbdd763216c28db0d536a17.tar.bz2
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.
Diffstat (limited to 'c/src')
-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)