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