mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
As the Ocelots SoCs, this family of SoCs are found in the Microsemi Switches solution. Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
15 lines
374 B
C
15 lines
374 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2018 Microsemi Corporation
|
|
*/
|
|
|
|
#ifndef _MSCC_OCELOT_DEVCPU_GCB_H_
|
|
#define _MSCC_OCELOT_DEVCPU_GCB_H_
|
|
|
|
#define PERF_SOFT_RST 0x90
|
|
|
|
#define PERF_SOFT_RST_SOFT_SWC_RST BIT(1)
|
|
#define PERF_SOFT_RST_SOFT_CHIP_RST BIT(0)
|
|
|
|
#endif
|