system.c 1.9 KB
Newer Older
1 2 3 4 5
/*
 * Copyright (C) 1999 ARM Limited
 * Copyright (C) 2000 Deep Blue Solutions Ltd
 * Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved.
 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
I
Ilya Yanok 已提交
6
 * Copyright 2009 Ilya Yanok, Emcraft Systems Ltd, yanok@emcraft.com
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * 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 <linux/kernel.h>
#include <linux/clk.h>
#include <linux/io.h>
I
Ilya Yanok 已提交
26 27
#include <linux/err.h>
#include <linux/delay.h>
28

29
#include <mach/hardware.h>
30 31 32
#include <asm/proc-fns.h>
#include <asm/system.h>

S
Sascha Hauer 已提交
33
static void __iomem *wdog_base;
34 35 36 37

/*
 * Reset the system. It is called by machine_restart().
 */
38
void arch_reset(char mode, const char *cmd)
39
{
S
Sascha Hauer 已提交
40 41 42 43 44
	unsigned int wcr_enable;

	if (cpu_is_mx1()) {
		wcr_enable = (1 << 0);
	} else {
I
Ilya Yanok 已提交
45
		struct clk *clk;
46

I
Ilya Yanok 已提交
47 48 49
		clk = clk_get_sys("imx-wdt.0", NULL);
		if (!IS_ERR(clk))
			clk_enable(clk);
S
Sascha Hauer 已提交
50
		wcr_enable = (1 << 2);
51 52 53
	}

	/* Assert SRS signal */
S
Sascha Hauer 已提交
54
	__raw_writew(wcr_enable, wdog_base);
I
Ilya Yanok 已提交
55 56 57 58 59 60 61 62 63 64 65

	/* wait for reset to assert... */
	mdelay(500);

	printk(KERN_ERR "Watchdog reset failed to assert reset\n");

	/* delay to allow the serial port to show the message */
	mdelay(50);

	/* we'll take a jump through zero as a poor second */
	cpu_reset(0);
66
}
S
Sascha Hauer 已提交
67 68 69 70 71

void mxc_arch_reset_init(void __iomem *base)
{
	wdog_base = base;
}