blob: 7f3f4055e42dd8b6c8bb35fd538ef5207cdc6e97 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Scott Branden54c8da82014-08-11 13:58:23 -07002/*
3 * Copyright 2014 Broadcom Corporation.
Scott Branden54c8da82014-08-11 13:58:23 -07004 */
5
6#include <common.h>
7#include <asm/io.h>
8
9#define CRMU_MAIL_BOX1 0x03024028
10#define CRMU_SOFT_RESET_CMD 0xFFFFFFFF
11
12void reset_cpu(ulong ignored)
13{
14 /* Send soft reset command via Mailbox. */
15 writel(CRMU_SOFT_RESET_CMD, CRMU_MAIL_BOX1);
16
17 while (1)
18 ; /* loop forever till reset */
19}