mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 14:53:06 +00:00
26 lines
470 B
C
26 lines
470 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 <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(ulong ignored)
|
||
|
{
|
||
|
writel(1, GXP_CCR);
|
||
|
|
||
|
while (1)
|
||
|
; /* loop forever till reset */
|
||
|
}
|