u-boot/arch/arm/mach-hpe/gxp/reset.c
Tom Rini f5131e80fc arm: Correct cpu_reset function prototype on some platforms
Some platforms were not including <cpu_func.h> which sets the prototype
for reset_cpu, and in turn had it set wrong. Correct these cases.

Signed-off-by: Tom Rini <trini@konsulko.com>
2023-03-22 15:22:48 -04:00

26 lines
483 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* GXP driver
*
* (C) Copyright 2022 Hewlett Packard Enterprise Development LP.
* Author: Nick Hawkins <nick.hawkins@hpe.com>
* Author: Jean-Marie Verdun <verdun@hpe.com>
*/
#include <cpu_func.h>
#include <asm/io.h>
#define GXP_CCR 0xc0000000
/* empty to satisfy current lowlevel_init, can be removed any time */
void lowlevel_init(void)
{
}
void reset_cpu(void)
{
writel(1, GXP_CCR);
while (1)
; /* loop forever till reset */
}