blob: 023eae190759938d6f64132003f7dd52049d6086 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Alexey Brodkin913e9f02015-02-24 19:40:36 +03002/*
3 * Copyright (C) 2013-2015 Synopsys, Inc. All rights reserved.
Alexey Brodkin913e9f02015-02-24 19:40:36 +03004 */
5
Simon Glass97589732020-05-10 11:40:02 -06006#include <init.h>
Eugeniy Paltsev67fd56a2018-03-21 15:59:02 +03007#include <asm/cache.h>
Alexey Brodkin913e9f02015-02-24 19:40:36 +03008#include <common.h>
9
Alexey Brodkin913e9f02015-02-24 19:40:36 +030010int init_cache_f_r(void)
11{
Eugeniy Paltsev67fd56a2018-03-21 15:59:02 +030012 sync_n_cleanup_cache_all();
13
Alexey Brodkin913e9f02015-02-24 19:40:36 +030014 return 0;
15}