summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/arm926ejs/mb86r0x/reset.c
blob: 7bd77ff202f4aa05c345675a2f9211e575106e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * (C) Copyright 2010
 * Matthias Weisser <weisserm@arcor.de>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <asm/io.h>
#include <asm/arch/hardware.h>

/*
 * Reset the cpu by setting software reset request bit
 */
void reset_cpu(ulong ignored)
{
	struct mb86r0x_crg * crg = (struct mb86r0x_crg *)
					MB86R0x_CRG_BASE;

	writel(MB86R0x_CRSR_SWRSTREQ, &crg->crsr);
	while (1)
		/* NOP */;
	/* Never reached */
}
OpenPOWER on IntegriCloud