system.c 2.0 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
 *
 * 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.
 */

#include <linux/kernel.h>
#include <linux/clk.h>
#include <linux/io.h>
I
Ilya Yanok 已提交
22 23
#include <linux/err.h>
#include <linux/delay.h>
24

25
#include <mach/hardware.h>
26
#include <mach/common.h>
27 28
#include <asm/proc-fns.h>
#include <asm/system.h>
A
Arnaud Patard (Rtp) 已提交
29
#include <asm/mach-types.h>
30

31
void (*imx_idle)(void) = NULL;
32
void __iomem *(*imx_ioremap)(unsigned long, size_t, unsigned int) = NULL;
33

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

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

A
Arnaud Patard (Rtp) 已提交
43 44 45 46 47 48 49
#ifdef CONFIG_MACH_MX51_EFIKAMX
	if (machine_is_mx51_efikamx()) {
		mx51_efikamx_reset();
		return;
	}
#endif

S
Sascha Hauer 已提交
50 51 52
	if (cpu_is_mx1()) {
		wcr_enable = (1 << 0);
	} else {
I
Ilya Yanok 已提交
53
		struct clk *clk;
54

55
		clk = clk_get_sys("imx2-wdt.0", NULL);
I
Ilya Yanok 已提交
56 57
		if (!IS_ERR(clk))
			clk_enable(clk);
S
Sascha Hauer 已提交
58
		wcr_enable = (1 << 2);
59 60 61
	}

	/* Assert SRS signal */
S
Sascha Hauer 已提交
62
	__raw_writew(wcr_enable, wdog_base);
I
Ilya Yanok 已提交
63 64 65 66 67 68 69 70 71 72 73

	/* 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);
74
}
S
Sascha Hauer 已提交
75 76 77 78 79

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