2007-12-03 13:58:45 +00:00
|
|
|
/*
|
2010-06-16 07:55:26 +00:00
|
|
|
* (C) Copyright 2010
|
|
|
|
* Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
|
|
|
|
*
|
2007-12-03 13:58:45 +00:00
|
|
|
* (C) Copyright 2007
|
|
|
|
* Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-12-03 13:58:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/processor.h>
|
2010-06-16 07:55:26 +00:00
|
|
|
#include <asm/system.h>
|
2007-12-03 13:58:45 +00:00
|
|
|
|
|
|
|
int watchdog_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset_cpu(unsigned long ignored)
|
|
|
|
{
|
2010-06-16 07:55:26 +00:00
|
|
|
/* Address error with SR.BL=1 first. */
|
|
|
|
trigger_address_error();
|
|
|
|
|
2007-12-03 13:58:45 +00:00
|
|
|
while (1)
|
|
|
|
;
|
|
|
|
}
|