xref: /openbmc/u-boot/arch/arm/mach-aspeed/Kconfig (revision 6bd041f0)
1if ARCH_ASPEED
2
3config SYS_ARCH
4	default "arm"
5
6config SYS_SOC
7	default "aspeed"
8
9config SYS_TEXT_BASE
10	default 0x00000000
11
12config ASPEED_AST2500
13	bool "Support Aspeed AST2500 SoC"
14	select CPU_ARM1176
15	help
16	  The Aspeed AST2500 is a ARM-based SoC with arm1176 CPU.
17	  It is used as Board Management Controller on many server boards,
18	  which is enabled by support of LPC and eSPI peripherals.
19
20config WDT_NUM
21	int "Number of Watchdog Timers"
22	default 3 if ASPEED_AST2500
23	help
24	  The number of Watchdot Timers on a SoC.
25	  AST2500 has three WDTsk earlier versions have two or fewer.
26
27source "arch/arm/mach-aspeed/ast2500/Kconfig"
28
29endif
30