1 /* 2 * Copyright (C) 2008,2010 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> 3 * Copyright (C) 2008,2010 Renesas Solutions Corp. 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #include <common.h> 9 #include <asm/processor.h> 10 #include <asm/system.h> 11 12 int watchdog_init(void) 13 { 14 return 0; 15 } 16 17 void reset_cpu(unsigned long ignored) 18 { 19 /* Address error with SR.BL=1 first. */ 20 trigger_address_error(); 21 22 while (1) 23 ; 24 } 25