blob: 10e74888792be11e258a6c28f724292280db5ee1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Darwin Rambo5d6c3152014-02-11 11:06:33 -08002/*
3 * Copyright 2013 Broadcom Corporation.
Darwin Rambo5d6c3152014-02-11 11:06:33 -08004 */
5
6#include <common.h>
Alexey Brodkin267d8e22014-02-26 17:47:58 +04007#include <linux/sizes.h>
Darwin Rambo5d6c3152014-02-11 11:06:33 -08008
Trevor Woerner43ec7e02019-05-03 09:41:00 -04009#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Darwin Rambo5d6c3152014-02-11 11:06:33 -080010void enable_caches(void)
11{
12 /* Enable D-cache. I-cache is already enabled in start.S */
13 dcache_enable();
14}
15#endif