Skip to content
Snippets Groups Projects
Commit 4ab333b7 authored by Marek Vasut's avatar Marek Vasut
Browse files

arm: socfpga: Move cache_enable to CPU code


Move icache_enable() and dcache_enable() function calls from
board code into the CPU code and into the enable_caches()
function. This is how the cache enabling code was designed
to work.

Signed-off-by: default avatarMarek Vasut <marex@denx.de>
Cc: Dinh Nguyen <dinguyen@altera.com>
Cc: Pavel Machek <pavel@denx.de>
Cc: Marek Vasut <marex@denx.de>
Cc: Tom Rini <trini@ti.com>
Cc: Albert Aribaud <albert.u.boot@aribaud.net>
Cc: Wolfgang Denk <wd@denx.de>
Acked-by: default avatarPavel Machek <pavel@denx.de>
parent 97ce274d
No related branches found
No related tags found
No related merge requests found
...@@ -33,6 +33,16 @@ int dram_init(void) ...@@ -33,6 +33,16 @@ int dram_init(void)
return 0; return 0;
} }
void enable_caches(void)
{
#ifndef CONFIG_SYS_ICACHE_OFF
icache_enable();
#endif
#ifndef CONFIG_SYS_DCACHE_OFF
dcache_enable();
#endif
}
/* /*
* DesignWare Ethernet initialization * DesignWare Ethernet initialization
*/ */
......
...@@ -34,9 +34,6 @@ int board_early_init_f(void) ...@@ -34,9 +34,6 @@ int board_early_init_f(void)
*/ */
int board_init(void) int board_init(void)
{ {
icache_enable();
dcache_enable();
/* Address of boot parameters for ATAG (if ATAG is used) */ /* Address of boot parameters for ATAG (if ATAG is used) */
gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment