Kconfig 469 B

1234567891011121314151617181920212223
  1. if ARCH_ASPEED
  2. config SYS_ARCH
  3. default "arm"
  4. config SYS_SOC
  5. default "aspeed"
  6. config SYS_TEXT_BASE
  7. default 0x00000000
  8. config ASPEED_AST2500
  9. bool "Support Aspeed AST2500 SoC"
  10. depends on DM_RESET
  11. select CPU_ARM1176
  12. help
  13. The Aspeed AST2500 is a ARM-based SoC with arm1176 CPU.
  14. It is used as Board Management Controller on many server boards,
  15. which is enabled by support of LPC and eSPI peripherals.
  16. source "arch/arm/mach-aspeed/ast2500/Kconfig"
  17. endif