1*83d290c5STom Rini // SPDX-License-Identifier: GPL-2.0+
2c4b45009SScott Branden /*
3c4b45009SScott Branden  * Copyright 2014 Broadcom Corporation.
4c4b45009SScott Branden  */
5c4b45009SScott Branden 
6c4b45009SScott Branden #include <common.h>
7c4b45009SScott Branden 
8c4b45009SScott Branden #ifndef CONFIG_SYS_DCACHE_OFF
enable_caches(void)9c4b45009SScott Branden void enable_caches(void)
10c4b45009SScott Branden {
11c4b45009SScott Branden 	/* Enable D-cache. I-cache is already enabled in start.S */
12c4b45009SScott Branden 	dcache_enable();
13c4b45009SScott Branden }
14c4b45009SScott Branden #endif
15