mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
9a3b4ceb37
Move this function out of common.h and into a relevant header file. Signed-off-by: Simon Glass <sjg@chromium.org>
19 lines
356 B
C
19 lines
356 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2014 Broadcom Corporation.
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <cpu_func.h>
|
|
#include <asm/io.h>
|
|
|
|
#define CRU_RESET_OFFSET 0x1803F184
|
|
|
|
void reset_cpu(ulong ignored)
|
|
{
|
|
/* Reset the cpu by setting software reset request bit */
|
|
writel(0x1, CRU_RESET_OFFSET);
|
|
|
|
while (1)
|
|
; /* loop forever till reset */
|
|
}
|