blob: 858b388cc0b99f4a5526aff9a7eb8289fd2508c0 [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
Alexey Brodkin913e9f02015-02-24 19:40:36 +03009int init_cache_f_r(void)
10{
Eugeniy Paltsev67fd56a2018-03-21 15:59:02 +030011 sync_n_cleanup_cache_all();
12
Alexey Brodkin913e9f02015-02-24 19:40:36 +030013 return 0;
14}