diff options
Diffstat (limited to 'arch/arm/cpu/armv7/exynos/soc.c')
| -rw-r--r-- | arch/arm/cpu/armv7/exynos/soc.c | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/arch/arm/cpu/armv7/exynos/soc.c b/arch/arm/cpu/armv7/exynos/soc.c index dcfcec22d..ab65b8d3a 100644 --- a/arch/arm/cpu/armv7/exynos/soc.c +++ b/arch/arm/cpu/armv7/exynos/soc.c @@ -28,3 +28,11 @@ void reset_cpu(ulong addr)  {  	writel(0x1, samsung_get_base_swreset());  } + +#ifndef CONFIG_SYS_DCACHE_OFF +void enable_caches(void) +{ +	/* Enable D-cache. I-cache is already enabled in start.S */ +	dcache_enable(); +} +#endif |