blob: 617c8d68a2a92a5d4149dfd3ccea88b7ce7b76a9 [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
Simon Glassafb02152019-12-28 10:45:01 -07006#include <cpu_func.h>
Scott Branden54c8da82014-08-11 13:58:23 -07007#include <asm/io.h>
8
9#define CRMU_MAIL_BOX1 0x03024028
10#define CRMU_SOFT_RESET_CMD 0xFFFFFFFF
11
Harald Seiler6f14d5f2020-12-15 16:47:52 +010012void reset_cpu(void)
Scott Branden54c8da82014-08-11 13:58:23 -070013{
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}