forked from Imagelibrary/rtems
2000-11-27 Joel Sherrill <joel@OARcorp.com>
* cache/cache.h: Fix reference to MC68040 and put in stubs for missing support routines. The functionality of these routines needs to be addressed.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2000-11-27 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* cache/cache.h: Fix reference to MC68040 and put in stubs
|
||||||
|
for missing support routines. The functionality of these
|
||||||
|
routines needs to be addressed.
|
||||||
|
|
||||||
2000-11-14 Jiri Gaisler <jgais@ws.estec.esa.nl>
|
2000-11-14 Jiri Gaisler <jgais@ws.estec.esa.nl>
|
||||||
|
|
||||||
* Makefile.am, configure.in: Added support for instruction
|
* Makefile.am, configure.in: Added support for instruction
|
||||||
|
|||||||
21
c/src/lib/libcpu/sparc/cache/cache.c
vendored
21
c/src/lib/libcpu/sparc/cache/cache.c
vendored
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Cache Management Support Routines for the MC68040
|
* Cache Management Support Routines for the SPARC
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
@@ -14,6 +14,23 @@ void _CPU_cache_invalidate_entire_instruction ( void )
|
|||||||
{
|
{
|
||||||
asm volatile ("flush");
|
asm volatile ("flush");
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
|
/* 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 */
|
/* end of file */
|
||||||
|
|||||||
Reference in New Issue
Block a user