]> Git Repo - u-boot.git/blob - arch/mips/lib/boot.c
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-sh
[u-boot.git] / arch / mips / lib / boot.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2020 Stefan Roese <[email protected]>
4  */
5
6 #include <command.h>
7 #include <cpu_func.h>
8 #include <asm/global_data.h>
9
10 DECLARE_GLOBAL_DATA_PTR;
11
12 unsigned 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          */
20         flush_cache(gd->ram_base, gd->ram_top - gd->ram_base);
21
22         return entry(argc, argv);
23 }
This page took 0.027538 seconds and 4 git commands to generate.