Changeset aecef8f9 in rtems


Ignore:
Timestamp:
11/08/01 23:48:08 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
de202e7
Parents:
357a9f0
Message:

2001-11-08 Dennis Ehlin (ECS) <Dennis.Ehlin@…>

This modification is part of the submitted modifications necessary to
support the IBM PPC405 family. This submission was reviewed by
Thomas Doerfler <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.
Location:
c/src/lib/libbsp/powerpc/ppcn_60x
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/ppcn_60x/ChangeLog

    r357a9f0 raecef8f9  
     12001-11-08      Dennis Ehlin (ECS) <Dennis.Ehlin@ecs.ericsson.se>
     2
     3        This modification is part of the submitted modifications necessary to
     4        support the IBM PPC405 family.  This submission was reviewed by
     5        Thomas Doerfler <Thomas.Doerfler@imd-systems.de> who ensured it did
     6        not negatively impact the ppc403 BSPs.  The submission and tracking
     7        process was captured as PR50.
     8        * startup/spurious.c: Added ppc405 support.
     9
    1102001-10-25      Joel Sherrill <joel@OARcorp.com>
    211
  • c/src/lib/libbsp/powerpc/ppcn_60x/startup/spurious.c

    r357a9f0 raecef8f9  
    8787      break;
    8888
    89 #if defined(ppc403)
    90 #error "Please fill in names. "                                 
     89#if defined(ppc403) || defined(ppc405)
    9190    case PPC_IRQ_CRIT :
    9291      DEBUG_puts( "Critical Error ");     
    9392      break;
    9493    case PPC_IRQ_PIT:
    95       DEBUG_puts( "0x01000" );
     94      DEBUG_puts( "Prog. Interval Timer " );
    9695      break;
    9796    case PPC_IRQ_FIT:
    98       DEBUG_puts( "0x01010" );
     97      DEBUG_puts( "Fixed Interval Timer " );
    9998      break;
    10099    case PPC_IRQ_WATCHDOG :
    101       DEBUG_puts( "0x01020" );
     100      DEBUG_puts( "Watchdog Timer " );
    102101      break;
    103102    case PPC_IRQ_DEBUG   :
    104       DEBUG_puts( "0x02000" );
     103      DEBUG_puts( "Debug " );
    105104      break;
    106105
Note: See TracChangeset for help on using the changeset viewer.