blob: c5b90bd96a43c479c8f9ff23df06144ba21efc36 [file] [log] [blame]
maxims@google.com4697abe2017-01-18 13:44:55 -08001if 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
maxims@google.com14e4b142017-01-18 13:44:56 -080027source "arch/arm/mach-aspeed/ast2500/Kconfig"
28
maxims@google.com4697abe2017-01-18 13:44:55 -080029endif