blob: d47777a3678515b77741ee1298bd48ec5cce4889 [file] [log] [blame]
Jens Scharsig98250e82010-02-03 22:47:35 +01001/*
2 * (C) Copyright 2002
3 * Lineo, Inc. <www.lineo.com>
4 * Bernhard Kuhn <bkuhn@lineo.com>
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 *
10 * (C) Copyright 2002
11 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
12 * Alex Zuepke <azu@sysgo.de>
13 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020014 * SPDX-License-Identifier: GPL-2.0+
Jens Scharsig98250e82010-02-03 22:47:35 +010015 */
16
17#include <common.h>
18#include <asm/io.h>
19#include <asm/arch/hardware.h>
20#include <asm/arch/at91_st.h>
21
Andreas Bießmann305bf482010-11-30 09:45:05 +000022void __attribute__((weak)) board_reset(void)
23{
24 /* true empty function for defining weak symbol */
25}
Jens Scharsig98250e82010-02-03 22:47:35 +010026
27void reset_cpu(ulong ignored)
28{
Jens Scharsig80733992011-02-19 06:17:02 +000029 at91_st_t *st = (at91_st_t *) ATMEL_BASE_ST;
Jens Scharsig98250e82010-02-03 22:47:35 +010030
Andreas Bießmann305bf482010-11-30 09:45:05 +000031 board_reset();
Jens Scharsig98250e82010-02-03 22:47:35 +010032
33 /* Reset the cpu by setting up the watchdog timer */
34 writel(AT91_ST_WDMR_RSTEN | AT91_ST_WDMR_EXTEN | AT91_ST_WDMR_WDV(2),
35 &st->wdmr);
36 writel(AT91_ST_CR_WDRST, &st->cr);
37 /* and let it timeout */
38 while (1)
39 ;
40 /* Never reached */
41}