From f9913a8ee71ff14fcfc1c7fd0e6912f897e69403 Mon Sep 17 00:00:00 2001 From: Yoshihiro Shimoda Date: Mon, 3 Dec 2007 22:58:45 +0900 Subject: sh: Add support SH3 and SH7720 Signed-off-by: Yoshihiro Shimoda CC: Nobuhiro Iwamatsu Acked-by: Nobuhiro Iwamatsu --- cpu/sh3/watchdog.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 cpu/sh3/watchdog.c (limited to 'cpu/sh3/watchdog.c') diff --git a/cpu/sh3/watchdog.c b/cpu/sh3/watchdog.c new file mode 100644 index 0000000..92bea74 --- /dev/null +++ b/cpu/sh3/watchdog.c @@ -0,0 +1,33 @@ +/* + * (C) Copyright 2007 + * Yoshihiro Shimoda + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + */ + +#include +#include + +int watchdog_init(void) +{ + return 0; +} + +void reset_cpu(unsigned long ignored) +{ + while (1) + ; +} -- cgit v1.1