blob: 749625aa974817e4f573aae7628f5904db57f6a7 [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
Stefan Roesefb9acad2020-02-13 07:04:00 +01006#include <command.h>
7#include <cpu_func.h>
Simon Glass401d1c42020-10-30 21:38:53 -06008#include <asm/global_data.h>
Stefan Roesefb9acad2020-02-13 07:04:00 +01009
10DECLARE_GLOBAL_DATA_PTR;
11
12unsigned long do_go_exec(ulong (*entry)(int, char * const []),
13 int argc, char * const argv[])
14{
15 /*
16 * Flush cache before jumping to application. Let's flush the
17 * whole SDRAM area, since we don't know the size of the image
18 * that was loaded.
19 */
Stefan Roesee207f222020-08-12 13:16:36 +020020 flush_cache(gd->ram_base, gd->ram_top - gd->ram_base);
Stefan Roesefb9acad2020-02-13 07:04:00 +010021
22 return entry(argc, argv);
23}