diff options
author | Tom Rini <trini@konsulko.com> | 2019-01-23 17:24:31 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-01-23 17:24:31 -0500 |
commit | aff66f22d6eeb27c6329c0a3c1ebc52914c8affa (patch) | |
tree | 1c98306ac2c12c2654bf37e65f19de77faaab28f /arch/mips/mach-mscc/include/mach/servalt/servalt_devcpu_gcb.h | |
parent | 7794fe2c8c1303d303dbc515955c6c5be706da88 (diff) | |
parent | a834cb817fb1a11607ea8e6394235843be079fdd (diff) |
Merge tag 'mips-pull-2019-01-23' of git://git.denx.de/u-boot-mips
- MIPS: mscc: ocelot: add ethernet switch and network support
- MIPS: mscc: add support for ServalT SoC family
- MIPS: mscc: add support for Serval SoC family
Diffstat (limited to 'arch/mips/mach-mscc/include/mach/servalt/servalt_devcpu_gcb.h')
-rw-r--r-- | arch/mips/mach-mscc/include/mach/servalt/servalt_devcpu_gcb.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/mips/mach-mscc/include/mach/servalt/servalt_devcpu_gcb.h b/arch/mips/mach-mscc/include/mach/servalt/servalt_devcpu_gcb.h new file mode 100644 index 0000000000..f6e724588a --- /dev/null +++ b/arch/mips/mach-mscc/include/mach/servalt/servalt_devcpu_gcb.h @@ -0,0 +1,20 @@ +/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */ +/* + * Copyright (c) 2018 Microsemi Corporation + */ + +#ifndef _MSCC_SERVALT_DEVCPU_GCB_H_ +#define _MSCC_SERVALT_DEVCPU_GCB_H_ + +#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_GPIO_ALT(x) (0x74 + 4 * (x)) +#define GPIO_GPIO_ALT1(x) (0x7c + 4 * (x)) + +#endif |