summaryrefslogtreecommitdiff
path: root/firmware/target/mips/mmu-mips.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/mips/mmu-mips.h')
-rw-r--r--firmware/target/mips/mmu-mips.h34
1 files changed, 20 insertions, 14 deletions
diff --git a/firmware/target/mips/mmu-mips.h b/firmware/target/mips/mmu-mips.h
index 7e1e36d3f4..f96ddcc28d 100644
--- a/firmware/target/mips/mmu-mips.h
+++ b/firmware/target/mips/mmu-mips.h
@@ -28,19 +28,25 @@ void map_address(unsigned long virtual, unsigned long physical,
28 unsigned long length, unsigned int cache_flags); 28 unsigned long length, unsigned int cache_flags);
29void mmu_init(void); 29void mmu_init(void);
30 30
31#define HAVE_CPUCACHE_INVALIDATE 31/* Commits entire DCache */
32//#define HAVE_CPUCACHE_FLUSH 32void commit_dcache(void);
33 33/* Commit and discard entire DCache, will do writeback */
34void __idcache_invalidate_all(void); 34void commit_discard_dcache(void);
35void __icache_invalidate_all(void); 35
36void __dcache_invalidate_all(void); 36/* Write DCache back to RAM for the given range and remove cache lines
37void __dcache_writeback_all(void); 37 * from DCache afterwards */
38 38void commit_discard_dcache_range(const void *base, unsigned int size);
39void dma_cache_wback_inv(unsigned long addr, unsigned long size); 39
40 40/* Write DCache back to RAM for the given range */
41#define commit_discard_idcache __idcache_invalidate_all 41void commit_dcache_range(const void *base, unsigned int size);
42#define commit_discard_icache __icache_invalidate_all 42
43#define commit_discard_dcache __dcache_invalidate_all 43/*
44#define commit_dcache __dcache_writeback_all 44 * Remove cache lines for the given range from DCache
45 * will *NOT* do write back except for buffer edges not on a line boundary
46 */
47void discard_dcache_range(const void *base, unsigned int size);
48
49/* Discards the entire ICache, and commit+discards the entire DCache */
50void commit_discard_idcache(void);
45 51
46#endif /* __MMU_MIPS_INCLUDE_H */ 52#endif /* __MMU_MIPS_INCLUDE_H */