Stefan Roese | eec92d6 | 2020-02-13 07:04:00 +0100 | [diff] [blame] | 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> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 9 | #include <asm/global_data.h> |
Stefan Roese | eec92d6 | 2020-02-13 07:04:00 +0100 | [diff] [blame] | 10 | |
| 11 | DECLARE_GLOBAL_DATA_PTR; |
| 12 | |
| 13 | unsigned 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 Roese | a13a2aa | 2020-08-12 13:16:36 +0200 | [diff] [blame] | 21 | flush_cache(gd->ram_base, gd->ram_top - gd->ram_base); |
Stefan Roese | eec92d6 | 2020-02-13 07:04:00 +0100 | [diff] [blame] | 22 | |
| 23 | return entry(argc, argv); |
| 24 | } |