diff options
| author | Aneesh V <aneesh@ti.com> | 2011-08-16 04:33:05 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-04 11:36:16 +0200 | 
| commit | cba4b1809f043bf85c806e5a4e342f62bd5ded45 (patch) | |
| tree | 69a063b972d4ac839666a9b2c79203843d63936c /include/common.h | |
| parent | 98a48c5de545e5a5eedba0a868024ef0d4ae5347 (diff) | |
| download | olio-uboot-2014.01-cba4b1809f043bf85c806e5a4e342f62bd5ded45.tar.xz olio-uboot-2014.01-cba4b1809f043bf85c806e5a4e342f62bd5ded45.zip | |
arm: do not force d-cache enable on all boards
c2dd0d45540397704de9b13287417d21049d34c6 added dcache_enable()
to board_init_r(). This enables d-cache for all ARM boards.
As a result some of the arm boards that are not cache-ready
are broken. Revert this change and allow platform code to
take the decision on d-cache enabling.
Also add some documentation for cache usage in ARM.
Signed-off-by: Aneesh V <aneesh@ti.com>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/include/common.h b/include/common.h index 12a10741b..bd10f31f8 100644 --- a/include/common.h +++ b/include/common.h @@ -616,6 +616,7 @@ ulong	lcd_setmem (ulong);  ulong	video_setmem (ulong);  /* arch/$(ARCH)/lib/cache.c */ +void	enable_caches(void);  void	flush_cache   (unsigned long, unsigned long);  void	flush_dcache_all(void);  void	flush_dcache_range(unsigned long start, unsigned long stop); |