forked from Imagelibrary/rtems
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.
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user