1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2002
4  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
5  * Marius Groeger <mgroeger@sysgo.de>
6  *
7  * (C) Copyright 2002
8  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9  * Alex Zuepke <azu@sysgo.de>
10  *
11  * (C) Copyright 2002
12  * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
13  *
14  * (C) Copyright 2004
15  * DAVE Srl
16  * http://www.dave-tech.it
17  * http://www.wawnet.biz
18  * mailto:info@wawnet.biz
19  *
20  * (C) Copyright 2004 Texas Insturments
21  */
22 
23 #include <common.h>
24 #include <command.h>
25 #include <cpu_func.h>
26 #include <irq_func.h>
27 #include <linux/delay.h>
28 
reset_misc(void)29 __weak void reset_misc(void)
30 {
31 }
32 
do_reset(struct cmd_tbl * cmdtp,int flag,int argc,char * const argv[])33 int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
34 {
35 	puts ("resetting ...\n");
36 
37 	mdelay(50);				/* wait 50 ms */
38 
39 	disable_interrupts();
40 
41 	reset_misc();
42 	reset_cpu();
43 
44 	/*NOTREACHED*/
45 	return 0;
46 }
47