blob: d7e1703e696cd0cbe278163610c706ed26d16edf [file] [log] [blame]
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09001/*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License as
4 * published by the Free Software Foundation; either version 2 of
5 * the License, or (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
15 * MA 02111-1307 USA
16 */
17
18#include <common.h>
19#include <asm/processor.h>
Nobuhiro Iwamatsu754613f2010-06-16 16:55:26 +090020#include <asm/system.h>
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090021#include <asm/io.h>
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090022
23#define WDT_BASE WTCNT
24
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090025#define WDT_WD (1 << 6)
26#define WDT_RST_P (0)
27#define WDT_RST_M (1 << 5)
28#define WDT_ENABLE (1 << 7)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090029
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090030#if defined(CONFIG_WATCHDOG)
31static unsigned char csr_read(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090032{
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090033 return inb(WDT_BASE + 0x04);
34}
35
36static void cnt_write(unsigned char value)
37{
38 outl((unsigned short)value | 0x5A00, WDT_BASE + 0x00);
39}
40
41static void csr_write(unsigned char value)
42{
43 outl((unsigned short)value | 0xA500, WDT_BASE + 0x04);
44}
45
46void watchdog_reset(void)
47{
48 outl(0x55000000, WDT_BASE + 0x08);
49}
50
51int watchdog_init(void)
52{
53 /* Set overflow time*/
54 cnt_write(0);
55 /* Power on reset */
56 csr_write(WDT_WD|WDT_RST_P|WDT_ENABLE);
57
58 return 0;
59}
60
61int watchdog_disable(void)
62{
63 csr_write(csr_read() & ~WDT_ENABLE);
64 return 0;
65}
66#endif
67
68void reset_cpu(unsigned long ignored)
69{
Nobuhiro Iwamatsu754613f2010-06-16 16:55:26 +090070 /* Address error with SR.BL=1 first. */
71 trigger_address_error();
72
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090073 while (1)
74 ;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090075}