summaryrefslogtreecommitdiffstats
path: root/include/cache.h
blob: 5968da907f62338e61fd91ca974700fb2c4e098f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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 */