2020-02-13 06:04:00 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Stefan Roese <sr@denx.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <cpu_func.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2020-02-13 06:04:00 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
unsigned long do_go_exec(ulong (*entry)(int, char * const []),
|
|
|
|
int argc, char * const argv[])
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Flush cache before jumping to application. Let's flush the
|
|
|
|
* whole SDRAM area, since we don't know the size of the image
|
|
|
|
* that was loaded.
|
|
|
|
*/
|
2020-08-12 11:16:36 +00:00
|
|
|
flush_cache(gd->ram_base, gd->ram_top - gd->ram_base);
|
2020-02-13 06:04:00 +00:00
|
|
|
|
|
|
|
return entry(argc, argv);
|
|
|
|
}
|