1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (C) 2020 Stefan Roese <sr@denx.de> 4 */ 5 6 #include <common.h> 7 #include <command.h> 8 #include <cpu_func.h> 9 #include <asm/global_data.h> 10 11 DECLARE_GLOBAL_DATA_PTR; 12 do_go_exec(ulong (* entry)(int,char * const[]),int argc,char * const argv[])13unsigned long do_go_exec(ulong (*entry)(int, char * const []), 14 int argc, char * const argv[]) 15 { 16 /* 17 * Flush cache before jumping to application. Let's flush the 18 * whole SDRAM area, since we don't know the size of the image 19 * that was loaded. 20 */ 21 flush_cache(gd->ram_base, gd->ram_top - gd->ram_base); 22 23 return entry(argc, argv); 24 } 25