metalsvm/arch/x86/scc/RCCE_DCMflush.c
Stefan Lankes c738a64d57 integration of RCCE in MetalSVM (untested version)
Attention: currently, MetalSVM didn't support the floating point unit

=> no using of RCCE_wtime
=> no using of the data type RCCE_double
=> RCCE_init expect an integer value as frequency in MHZ
2011-03-24 11:21:38 +01:00

17 lines
283 B
C

#include <asm/RCCE_lib.h>
#include <asm/RCCE.h>
#include <asm/SCC_API.h>
#include <metalsvm/stdlib.h>
#include <metalsvm/string.h>
#ifdef CONFIG_ROCKCREEK
int RCCE_DCMflush(void) {
int retval=0;
#ifdef SHMADD_CACHEABLE
retval = DCMflush();
#endif
return retval;
}
#endif