blob: 6bf89e07d873d5a0aec7db2d0b3bd2e07808f60c [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>
Simon Glass1d91ba72019-11-14 12:57:37 -07007#include <cpu_func.h>
Alexey Brodkin267d8e22014-02-26 17:47:58 +04008#include <linux/sizes.h>
Darwin Rambo5d6c3152014-02-11 11:06:33 -08009
Trevor Woerner43ec7e02019-05-03 09:41:00 -040010#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Darwin Rambo5d6c3152014-02-11 11:06:33 -080011void enable_caches(void)
12{
13 /* Enable D-cache. I-cache is already enabled in start.S */
14 dcache_enable();
15}
16#endif