diff options
Diffstat (limited to 'cpu/mips/cpu.c')
| -rw-r--r-- | cpu/mips/cpu.c | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/cpu/mips/cpu.c b/cpu/mips/cpu.c index 3fc3916b4..e9676c128 100644 --- a/cpu/mips/cpu.c +++ b/cpu/mips/cpu.c @@ -27,8 +27,12 @@  int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  { -#ifdef CONFIG_INCA_IP +#if defined(CONFIG_INCA_IP)  	*INCA_IP_WDT_RST_REQ = 0x3f; +#elif defined(CONFIG_PURPLE) +	void (*f)(void) = (void *) 0xbfc00000; + +	f();  #endif  	fprintf(stderr, "*** reset failed ***\n");  	return 0; |