mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-05 02:51:00 +00:00
f5131e80fc
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>
26 lines
483 B
C
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 */
|
|
}
|