xref: /openbmc/u-boot/arch/mips/mach-mscc/include/mach/servalt/servalt_devcpu_gcb.h (revision 872cfa20cd694fdbfa76abddd3cd00b05ad5355b)
1 /* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
2 /*
3  * Copyright (c) 2018 Microsemi Corporation
4  */
5 
6 #ifndef _MSCC_SERVALT_DEVCPU_GCB_H_
7 #define _MSCC_SERVALT_DEVCPU_GCB_H_
8 
9 #define PERF_GPR                                          0x4
10 
11 #define PERF_SOFT_RST                                     0x8
12 
13 #define PERF_SOFT_RST_SOFT_NON_CFG_RST                    BIT(2)
14 #define PERF_SOFT_RST_SOFT_SWC_RST                        BIT(1)
15 #define PERF_SOFT_RST_SOFT_CHIP_RST                       BIT(0)
16 
17 #define GPIO_GPIO_ALT(x)                                  (0x74 + 4 * (x))
18 #define GPIO_GPIO_ALT1(x)                                 (0x7c + 4 * (x))
19 
20 #endif
21