Kconfig 804 B

12345678910111213141516171819202122232425262728293031323334
  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. select MFD_SYSCON
  9. select PINCTRL
  10. help
  11. Say Y here if you want to run your kernel on an ASpeed BMC SoC.
  12. if ARCH_ASPEED
  13. config MACH_ASPEED_G4
  14. bool "Aspeed SoC 4th Generation"
  15. depends on ARCH_MULTI_V5
  16. select CPU_ARM926T
  17. select PINCTRL_ASPEED_G4
  18. help
  19. Say yes if you intend to run on an Aspeed ast2400 or similar
  20. fourth generation BMCs, such as those used by OpenPower Power8
  21. systems.
  22. config MACH_ASPEED_G5
  23. bool "Aspeed SoC 5th Generation"
  24. depends on ARCH_MULTI_V6
  25. select CPU_V6
  26. select PINCTRL_ASPEED_G5
  27. help
  28. Say yes if you intend to run on an Aspeed ast2500 or similar
  29. fifth generation Aspeed BMCs.
  30. endif