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