blob: 674166daabe527c9de5fcd5b2dd3007497b752d2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Scott Branden562f01a2014-08-11 13:58:24 -07002/*
3 * Copyright 2014 Broadcom Corporation.
Scott Branden562f01a2014-08-11 13:58:24 -07004 */
5
6#include <common.h>
7#include <asm/io.h>
8
9#define CRU_RESET_OFFSET 0x1803F184
10
11void reset_cpu(ulong ignored)
12{
13 /* Reset the cpu by setting software reset request bit */
14 writel(0x1, CRU_RESET_OFFSET);
15
16 while (1)
17 ; /* loop forever till reset */
18}