1 /* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */ 2 /* 3 * Copyright (c) 2018 Microsemi Corporation 4 */ 5 6 #ifndef _MSCC_SERVAL_DEVCPU_GCB_H_ 7 #define _MSCC_SERVAL_DEVCPU_GCB_H_ 8 9 #include <linux/bitops.h> 10 #define CHIP_ID 0x0 11 12 #define PERF_GPR 0x4 13 14 #define PERF_SOFT_RST 0x8 15 16 #define PERF_SOFT_RST_SOFT_NON_CFG_RST BIT(2) 17 #define PERF_SOFT_RST_SOFT_SWC_RST BIT(1) 18 #define PERF_SOFT_RST_SOFT_CHIP_RST BIT(0) 19 20 #define GPIO_ALT(x) (0x54 + 4 * (x)) 21 22 #endif 23