diff options
author | Tom Rini <trini@ti.com> | 2013-08-23 12:26:49 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-12 14:54:12 -0500 |
commit | 12115c6ad3b91e60b874afd29ce041ef552ed1e1 (patch) | |
tree | c82ac6ab00845ef368417990cd344383f7322be5 /board | |
parent | a5a42eec8ed64cbc72d2e59199819e48f904e38f (diff) | |
download | u-boot-imx-12115c6ad3b91e60b874afd29ce041ef552ed1e1.zip u-boot-imx-12115c6ad3b91e60b874afd29ce041ef552ed1e1.tar.gz u-boot-imx-12115c6ad3b91e60b874afd29ce041ef552ed1e1.tar.bz2 |
am33xx: Enable D-CACHE on !CONFIG_SYS_DCACHE_OFF
Test on Beaglebone white over cpsw, usb ether and SD card (read and
write), performance increased, crc32 of data matches.
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/siemens/common/board.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/board/siemens/common/board.c b/board/siemens/common/board.c index 32d2ee4..7e8731b 100644 --- a/board/siemens/common/board.c +++ b/board/siemens/common/board.c @@ -159,13 +159,4 @@ U_BOOT_CMD( "Sends U-Boot into infinite loop", "" ); - -#ifndef CONFIG_SYS_DCACHE_OFF -void enable_caches(void) -{ - printf("Enable d-cache\n"); - /* Enable D-cache. I-cache is already enabled in start.S */ - dcache_enable(); -} -#endif /* CONFIG_SYS_DCACHE_OFF */ #endif /* !CONFIG_SPL_BUILD */ |