Kconfig 717 B

12345678910111213141516171819202122232425262728293031
  1. menuconfig ARCH_ASPEED
  2. bool "Aspeed BMC architectures"
  3. depends on ARCH_MULTI_V5 || ARCH_MULTI_V6
  4. select SRAM
  5. select WATCHDOG
  6. select ASPEED_WATCHDOG
  7. select MOXART_TIMER
  8. help
  9. Say Y here if you want to run your kernel on an ASpeed BMC SoC.
  10. if ARCH_ASPEED
  11. config MACH_ASPEED_G4
  12. bool "Aspeed SoC 4th Generation"
  13. depends on ARCH_MULTI_V5
  14. select CPU_ARM926T
  15. help
  16. Say yes if you intend to run on an Aspeed ast2400 or similar
  17. fourth generation BMCs, such as those used by OpenPower Power8
  18. systems.
  19. config MACH_ASPEED_G5
  20. bool "Aspeed SoC 5th Generation"
  21. depends on ARCH_MULTI_V6
  22. select CPU_V6
  23. help
  24. Say yes if you intend to run on an Aspeed ast2500 or similar
  25. fifth generation Aspeed BMCs.
  26. endif