xref: /rk3399_rockchip-uboot/arch/arm/cpu/armv7/kona-common/hwinit-common.c (revision 1cad23c5f471d695bed1e3907e30caee3c2a3056)
1 /*
2  * Copyright 2013 Broadcom Corporation.
3  *
4  * SPDX-License-Identifier:      GPL-2.0+
5  */
6 
7 #include <common.h>
8 #include <linux/sizes.h>
9 
10 #ifndef CONFIG_SYS_DCACHE_OFF
enable_caches(void)11 void enable_caches(void)
12 {
13 	/* Enable D-cache. I-cache is already enabled in start.S */
14 	dcache_enable();
15 }
16 #endif
17