diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2011-12-17 07:27:24 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2011-12-17 07:27:24 +0000 |
commit | 6a67707b5ec3b2c649c401550bb7fdef2b7c8d07 (patch) | |
tree | bfe31942a4abbaac09ad0f4226effdcef8bf097e /firmware/target/arm/mmu-arm.h | |
parent | 43d7a75369286dc3b39b858df34f66b0b45de34e (diff) |
Commit to certain names for cache coherency APIs and discard the aliases.
Wouldn't surprise me a bit to get some non-green.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31339 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/mmu-arm.h')
-rw-r--r-- | firmware/target/arm/mmu-arm.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/firmware/target/arm/mmu-arm.h b/firmware/target/arm/mmu-arm.h index 92a81c0c34..155769489e 100644 --- a/firmware/target/arm/mmu-arm.h +++ b/firmware/target/arm/mmu-arm.h @@ -53,42 +53,24 @@ void map_section(unsigned int pa, unsigned int va, int mb, int flags); /* Commits entire DCache */ void commit_dcache(void); -/* deprecated alias */ -void clean_dcache(void); /* Commit and discard entire DCache, will do writeback */ void commit_discard_dcache(void); -/* deprecated alias */ -void invalidate_dcache(void); /* Write DCache back to RAM for the given range and remove cache lines * from DCache afterwards */ void commit_discard_dcache_range(const void *base, unsigned int size); -/* deprecated alias */ -void invalidate_dcache_range(const void *base, unsigned int size); /* Write DCache back to RAM for the given range */ void commit_dcache_range(const void *base, unsigned int size); -/* deprecated alias */ -void clean_dcache_range(const void *base, unsigned int size); /* * Remove cache lines for the given range from DCache * will *NOT* do write back except for buffer edges not on a line boundary */ void discard_dcache_range(const void *base, unsigned int size); -/* deprecated alias */ -void dump_dcache_range(const void *base, unsigned int size); /* Discards the entire ICache, and commit+discards the entire DCache */ void commit_discard_idcache(void); -/* deprecated alias */ -void invalidate_idcache(void); - -#define HAVE_CPUCACHE_COMMIT_DISCARD -#define HAVE_CPUCACHE_COMMIT -/* deprecated alias */ -#define HAVE_CPUCACHE_INVALIDATE -#define HAVE_CPUCACHE_FLUSH #endif /* MMU_ARM_H */ |