mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
9a3b4ceb37
Move this function out of common.h and into a relevant header file. Signed-off-by: Simon Glass <sjg@chromium.org>
20 lines
393 B
C
20 lines
393 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2014 Broadcom Corporation.
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <cpu_func.h>
|
|
#include <asm/io.h>
|
|
|
|
#define CRMU_MAIL_BOX1 0x03024028
|
|
#define CRMU_SOFT_RESET_CMD 0xFFFFFFFF
|
|
|
|
void reset_cpu(ulong ignored)
|
|
{
|
|
/* Send soft reset command via Mailbox. */
|
|
writel(CRMU_SOFT_RESET_CMD, CRMU_MAIL_BOX1);
|
|
|
|
while (1)
|
|
; /* loop forever till reset */
|
|
}
|