upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
469 B
23 lines
469 B
if ARCH_ASPEED
|
|
|
|
config SYS_ARCH
|
|
default "arm"
|
|
|
|
config SYS_SOC
|
|
default "aspeed"
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0x00000000
|
|
|
|
config ASPEED_AST2500
|
|
bool "Support Aspeed AST2500 SoC"
|
|
depends on DM_RESET
|
|
select CPU_ARM1176
|
|
help
|
|
The Aspeed AST2500 is a ARM-based SoC with arm1176 CPU.
|
|
It is used as Board Management Controller on many server boards,
|
|
which is enabled by support of LPC and eSPI peripherals.
|
|
|
|
source "arch/arm/mach-aspeed/ast2500/Kconfig"
|
|
|
|
endif
|
|
|