mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-07 12:49:24 +00:00

As Ocelot, Servalt, Luton and Jaguar2, this family of SoCs are found in Microsemi Switches solution. Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com> Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
21 lines
640 B
C
21 lines
640 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2018 Microsemi Corporation
|
|
*/
|
|
|
|
#ifndef _MSCC_SERVAL_DEVCPU_GCB_H_
|
|
#define _MSCC_SERVAL_DEVCPU_GCB_H_
|
|
|
|
#define CHIP_ID 0x0
|
|
|
|
#define PERF_GPR 0x4
|
|
|
|
#define PERF_SOFT_RST 0x8
|
|
|
|
#define PERF_SOFT_RST_SOFT_NON_CFG_RST BIT(2)
|
|
#define PERF_SOFT_RST_SOFT_SWC_RST BIT(1)
|
|
#define PERF_SOFT_RST_SOFT_CHIP_RST BIT(0)
|
|
|
|
#define GPIO_ALT(x) (0x54 + 4 * (x))
|
|
|
|
#endif
|