xref: /openbmc/u-boot/arch/arm/mach-rockchip/rv1108/rv1108.c (revision 83d290c56fab2d38cd1ab4c4cc7099559c1d5046)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2016 Rockchip Electronics Co., Ltd
4  * Author: Andy Yan <andy.yan@rock-chips.com>
5  */
6 
7 #include <common.h>
8 
9 #ifndef CONFIG_SYS_DCACHE_OFF
enable_caches(void)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