Changeset e824fa5 in rtems


Ignore:
Timestamp:
02/05/99 00:27:30 (25 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
2f87c843
Parents:
26e663d
Message:

Added optional data and instruction caching enable calls.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/dmv177/startup/bspstart.c

    r26e663d re824fa5  
    132132  Cpu_table.do_zero_of_workspace = TRUE;
    133133  Cpu_table.interrupt_stack_size = (12 * 1024);
     134
     135  /*
     136   *  Enable whatever caching is desired
     137   */
     138
     139#if ( PPC_USE_INSTRUCTION_CACHE )
     140  powerpc_instruction_cache_enable ();
     141#endif
     142
     143#if ( PPC_USE_DATA_CACHE )
     144  powerpc_data_cache_enable ();
     145#endif
     146
    134147}
Note: See TracChangeset for help on using the changeset viewer.