blob: 6fe81bb4d3c9641cd50d48e2944b8bfad71a0fe2 [file] [log] [blame]
Juergen Beiserteea643f2008-07-05 10:02:56 +02001/*
2 * Copyright (C) 1999 ARM Limited
3 * Copyright (C) 2000 Deep Blue Solutions Ltd
4 * Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved.
5 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
Ilya Yanok74bef9a2009-03-03 02:49:23 +03006 * Copyright 2009 Ilya Yanok, Emcraft Systems Ltd, yanok@emcraft.com
Juergen Beiserteea643f2008-07-05 10:02:56 +02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Juergen Beiserteea643f2008-07-05 10:02:56 +020017 */
18
19#include <linux/kernel.h>
20#include <linux/clk.h>
21#include <linux/io.h>
Ilya Yanok74bef9a2009-03-03 02:49:23 +030022#include <linux/err.h>
23#include <linux/delay.h>
Shawn Guoc1e31d12013-05-10 10:19:01 +080024#include <linux/of.h>
25#include <linux/of_address.h>
Juergen Beiserteea643f2008-07-05 10:02:56 +020026
David Howells9f97da72012-03-28 18:30:01 +010027#include <asm/system_misc.h>
Juergen Beiserteea643f2008-07-05 10:02:56 +020028#include <asm/proc-fns.h>
Arnaud Patard (Rtp)c2932bf2010-10-27 14:40:55 +020029#include <asm/mach-types.h>
Juergen Beiserteea643f2008-07-05 10:02:56 +020030
Shawn Guoe3372472012-09-13 21:01:00 +080031#include "common.h"
Shawn Guo50f2de62012-09-14 14:14:45 +080032#include "hardware.h"
Shawn Guoe3372472012-09-13 21:01:00 +080033
Sascha Hauerbe124c92009-06-04 12:19:02 +020034static void __iomem *wdog_base;
Shawn Guo18cb6802013-05-10 09:13:44 +080035static struct clk *wdog_clk;
Juergen Beiserteea643f2008-07-05 10:02:56 +020036
37/*
38 * Reset the system. It is called by machine_restart().
39 */
Robin Holt7b6d8642013-07-08 16:01:40 -070040void mxc_restart(enum reboot_mode mode, const char *cmd)
Juergen Beiserteea643f2008-07-05 10:02:56 +020041{
Sascha Hauerbe124c92009-06-04 12:19:02 +020042 unsigned int wcr_enable;
43
Shawn Guo18cb6802013-05-10 09:13:44 +080044 if (wdog_clk)
45 clk_enable(wdog_clk);
Juergen Beiserteea643f2008-07-05 10:02:56 +020046
Shawn Guo18cb6802013-05-10 09:13:44 +080047 if (cpu_is_mx1())
48 wcr_enable = (1 << 0);
49 else
Sascha Hauerbe124c92009-06-04 12:19:02 +020050 wcr_enable = (1 << 2);
Juergen Beiserteea643f2008-07-05 10:02:56 +020051
Juergen Beiserteea643f2008-07-05 10:02:56 +020052 /* Assert SRS signal */
Sascha Hauerbe124c92009-06-04 12:19:02 +020053 __raw_writew(wcr_enable, wdog_base);
Ilya Yanok74bef9a2009-03-03 02:49:23 +030054
55 /* wait for reset to assert... */
56 mdelay(500);
57
Shawn Guo18cb6802013-05-10 09:13:44 +080058 pr_err("%s: Watchdog reset failed to assert reset\n", __func__);
Ilya Yanok74bef9a2009-03-03 02:49:23 +030059
60 /* delay to allow the serial port to show the message */
61 mdelay(50);
62
63 /* we'll take a jump through zero as a poor second */
Russell Kinge879c862011-11-01 13:16:26 +000064 soft_restart(0);
Juergen Beiserteea643f2008-07-05 10:02:56 +020065}
Sascha Hauerbe124c92009-06-04 12:19:02 +020066
Shawn Guo18cb6802013-05-10 09:13:44 +080067void __init mxc_arch_reset_init(void __iomem *base)
Sascha Hauerbe124c92009-06-04 12:19:02 +020068{
69 wdog_base = base;
Shawn Guo18cb6802013-05-10 09:13:44 +080070
71 wdog_clk = clk_get_sys("imx2-wdt.0", NULL);
72 if (IS_ERR(wdog_clk)) {
73 pr_warn("%s: failed to get wdog clock\n", __func__);
74 wdog_clk = NULL;
75 return;
76 }
77
78 clk_prepare(wdog_clk);
Sascha Hauerbe124c92009-06-04 12:19:02 +020079}
Shawn Guoc1e31d12013-05-10 10:19:01 +080080
81void __init mxc_arch_reset_init_dt(void)
82{
83 struct device_node *np;
84
85 np = of_find_compatible_node(NULL, NULL, "fsl,imx21-wdt");
86 wdog_base = of_iomap(np, 0);
87 WARN_ON(!wdog_base);
88
89 wdog_clk = of_clk_get(np, 0);
90 if (IS_ERR(wdog_clk)) {
91 pr_warn("%s: failed to get wdog clock\n", __func__);
92 wdog_clk = NULL;
93 return;
94 }
95
96 clk_prepare(wdog_clk);
97}