blob: 1b29d637ce9b8a98e3e4fbe31b320c6f8baa4c7f [file] [log] [blame]
Stefan Roesefb9acad2020-02-13 07:04:00 +01001// 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>
Simon Glass401d1c42020-10-30 21:38:53 -06009#include <asm/global_data.h>
Stefan Roesefb9acad2020-02-13 07:04:00 +010010
11DECLARE_GLOBAL_DATA_PTR;
12
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 */
Stefan Roesee207f222020-08-12 13:16:36 +020021 flush_cache(gd->ram_base, gd->ram_top - gd->ram_base);
Stefan Roesefb9acad2020-02-13 07:04:00 +010022
23 return entry(argc, argv);
24}