aboutsummaryrefslogtreecommitdiff
path: root/arch/powerpc/lib
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-12-15 20:14:07 -0700
committerTom Rini <trini@konsulko.com>2023-12-21 16:07:52 -0500
commit5ee545a9db7455abec8c33bae0cbda0b1c3b66d4 (patch)
tree477272f58731538e655198a8045b9c3e9f8e36cb /arch/powerpc/lib
parent79353aab15842d0ad8369cb0d1ada662899966b9 (diff)
downloadu-boot-5ee545a9db7455abec8c33bae0cbda0b1c3b66d4.zip
u-boot-5ee545a9db7455abec8c33bae0cbda0b1c3b66d4.tar.gz
u-boot-5ee545a9db7455abec8c33bae0cbda0b1c3b66d4.tar.bz2
ppc: Add a reset_cpu() function
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>
Diffstat (limited to 'arch/powerpc/lib')
-rw-r--r--arch/powerpc/lib/traps.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/powerpc/lib/traps.c b/arch/powerpc/lib/traps.c
index c7bce82..cf8da2e 100644
--- a/arch/powerpc/lib/traps.c
+++ b/arch/powerpc/lib/traps.c
@@ -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