blob: 66aeb3ffcc9094f07e97ef3db69044e3eaa5ca5c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Andy Yan2c1e11d2017-06-01 18:00:55 +08002/*
3 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
4 * Author: Andy Yan <andy.yan@rock-chips.com>
Andy Yan2c1e11d2017-06-01 18:00:55 +08005 */
6
7#include <common.h>
8
Trevor Woerner10015022019-05-03 09:41:00 -04009#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Andy Yan2c1e11d2017-06-01 18:00:55 +080010void enable_caches(void)
11{
12 /* Enable D-cache. I-cache is already enabled in start.S */
13 dcache_enable();
14}
15#endif