OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libcpu/] [powerpc/] [old_exception_processing/] [ppccache.c] - Rev 173

Compare with Previous | Blame | View Log

/*
 *  PowerPC Cache enable routines
 *
 *  $Id: ppccache.c,v 1.2 2001-09-27 12:01:29 chris Exp $
 */
 
#include <rtems/system.h>
 
#define PPC_Get_HID0( _value ) \
  do { \
      _value = 0;        /* to avoid warnings */ \
      asm volatile( \
          "mfspr %0, 0x3f0;"     /* get HID0 */ \
          "isync" \
          : "=r" (_value) \
          : "0" (_value) \
      ); \
  } while (0)
 
#define PPC_Set_HID0( _value ) \
  do { \
      asm volatile( \
          "isync;" \
          "mtspr 0x3f0, %0;"     /* load HID0 */ \
          "isync" \
          : "=r" (_value) \
          : "0" (_value) \
      ); \
  } while (0)
 
 
void powerpc_instruction_cache_enable ()
{
  unsigned32 value;
 
  /*
   * Enable the instruction cache
   */
 
  PPC_Get_HID0( value );
 
  value |= 0x00008000;       /* Set ICE bit */
 
  PPC_Set_HID0( value );
}
 
void powerpc_data_cache_enable ()
{
  unsigned32 value;
 
  /*
   * enable data cache
   */
 
  PPC_Get_HID0( value );
 
  value |= 0x00004000;        /* set DCE bit */
 
  PPC_Set_HID0( value );
}
 
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.