summaryrefslogblamecommitdiffstats
path: root/c/src/lib/libcpu/sparc/cache/cache.c
blob: 4b45302a88dff64e584f2d6748895c5f9f3dab49 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  
                                                   













                                                      
 

















                                              
                 
/*
 *  Cache Management Support Routines for the SPARC
 *
 *  $Id$
 */

#include <rtems.h>
#include "cache_.h"


#if defined(HAS_INSTRUCTION_CACHE)

void _CPU_cache_invalidate_entire_instruction ( void )
{
  asm volatile ("flush");
}

/* XXX these need to be addressed */
void _CPU_cache_freeze_instruction ( void )
{
}

void _CPU_cache_unfreeze_instruction ( void )
{
}

void _CPU_cache_enable_instruction ( void )
{
}

void _CPU_cache_disable_instruction (   void )
{
}

#endif
/* end of file */