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