From aecef8f99299cc1a9bbdd763216c28db0d536a17 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 8 Nov 2001 23:48:08 +0000 Subject: 2001-11-08 Dennis Ehlin (ECS) This modification is part of the submitted modifications necessary to support the IBM PPC405 family. This submission was reviewed by Thomas Doerfler 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. --- c/src/lib/libbsp/powerpc/ppcn_60x/ChangeLog | 9 +++++++++ c/src/lib/libbsp/powerpc/ppcn_60x/startup/spurious.c | 11 +++++------ 2 files changed, 14 insertions(+), 6 deletions(-) (limited to 'c/src/lib/libbsp') 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) + + This modification is part of the submitted modifications necessary to + support the IBM PPC405 family. This submission was reviewed by + Thomas Doerfler 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 * 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) -- cgit v1.2.3