diff --git a/include/cache.h b/include/cache.h new file mode 100644 index 000000000..dcb2fef05 --- /dev/null +++ b/include/cache.h @@ -0,0 +1,14 @@ +#ifndef __CACHE_H +#define __CACHE_H + +void flush_cache (unsigned long, unsigned long); +int icache_status (void); +void icache_enable (void); +void icache_disable(void); +int dcache_status (void); +void dcache_enable (void); +void dcache_disable(void); +int checkicache (void); +int checkdcache (void); + +#endif /* __CACHE_H */ \ No newline at end of file