[U-Boot] [PATCH] ARC: Reset: Implement weak reset_cpu()

Alexey Brodkin Alexey.Brodkin at synopsys.com
Thu May 31 16:27:38 UTC 2018


This will allow for board-specific implementation of reset.
Default version will just stop execution with help of BRK instruction.

Signed-off-by: Alexey Brodkin <abrodkin at synopsys.com>
---
 arch/arc/lib/reset.c | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/arch/arc/lib/reset.c b/arch/arc/lib/reset.c
index fe38c51bff93..02e08df48de0 100644
--- a/arch/arc/lib/reset.c
+++ b/arch/arc/lib/reset.c
@@ -6,13 +6,17 @@
 #include <command.h>
 #include <common.h>
 
-int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
+__weak void reset_cpu(ulong addr)
 {
-	printf("Put your restart handler here\n");
-
-#ifdef DEBUG
 	/* Stop debug session here */
 	__builtin_arc_brk();
-#endif
+}
+
+int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
+{
+	printf("Resetting the board...\n");
+
+	reset_cpu(0);
+
 	return 0;
 }
-- 
2.17.0



More information about the U-Boot mailing list