1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (C) 2013-2015 Synopsys, Inc. All rights reserved. 4 */ 5 6 #include <asm/cache.h> 7 #include <common.h> 8 9 int init_cache_f_r(void) 10 { 11 sync_n_cleanup_cache_all(); 12 13 return 0; 14 } 15