]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
m68k: Add a reset_cpu() function
authorSimon Glass <sjg@chromium.org>
Sat, 16 Dec 2023 03:14:06 +0000 (20:14 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 21 Dec 2023 21:07:52 +0000 (16:07 -0500)
The current do_reset() is called from a command context. Add a function
which can be used from anywhere, as is done on ARM.

Since there are lots of reset functions, this one actually just calls
do_reset(). Future refactoring could correct this.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Angelo Dureghello <angelo@kernel-spcece.org>
arch/m68k/lib/traps.c

index c283351181d8ea3027b5fc388c5c86f9c3a8cb92..ae8ae6ccf5928dfcebe76a645776de97b2aaf063 100644 (file)
@@ -7,6 +7,7 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
+#include <cpu_func.h>
 #include <init.h>
 #include <watchdog.h>
 #include <command.h>
@@ -65,3 +66,9 @@ int arch_initr_trap(void)
 
        return 0;
 }
+
+void reset_cpu(void)
+{
+       /* TODO: Refactor all the do_reset calls to be reset_cpu() instead */
+       do_reset(NULL, 0, 0, NULL);
+}