blob: 4f021baa0626fd23cf961d7a802cf816c284b3d0 [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"
maxims@google.com99f8ad72017-04-17 12:00:26 -070014 depends on DM_RESET
maxims@google.com4697abe2017-01-18 13:44:55 -080015 select CPU_ARM1176
16 help
17 The Aspeed AST2500 is a ARM-based SoC with arm1176 CPU.
18 It is used as Board Management Controller on many server boards,
19 which is enabled by support of LPC and eSPI peripherals.
20
maxims@google.com14e4b142017-01-18 13:44:56 -080021source "arch/arm/mach-aspeed/ast2500/Kconfig"
22
maxims@google.com4697abe2017-01-18 13:44:55 -080023endif