]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
ppc: Add a reset_cpu() function
authorSimon Glass <sjg@chromium.org>
Sat, 16 Dec 2023 03:14:07 +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.

This is only needed if CONFIG_SYSRESET is disabled.

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>
arch/powerpc/lib/traps.c

index c7bce82a44b3bd1027ed4b1c31d25e815de5df5e..cf8da2e5df0dfb0d7ae9b2b2371413584b6c046f 100644 (file)
@@ -4,6 +4,8 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
+#include <command.h>
+#include <cpu_func.h>
 #include <init.h>
 #include <asm/global_data.h>
 
@@ -17,3 +19,11 @@ int arch_initr_trap(void)
 
        return 0;
 }
+
+#ifndef CONFIG_SYSRESET
+void reset_cpu(void)
+{
+       /* TODO: Refactor all the do_reset calls to be reset_cpu() instead */
+       do_reset(NULL, 0, 0, NULL);
+}
+#endif