blob: 8783893cf68389770b7c70cae05da6c3b0b3b728 [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
9#ifndef CONFIG_SYS_DCACHE_OFF
10void enable_caches(void)
11{
12 /* Enable D-cache. I-cache is already enabled in start.S */
13 dcache_enable();
14}
15#endif