Kconfig 730 B

1234567891011121314151617181920212223
  1. menuconfig ARCH_HPE
  2. bool "HPE SoC support"
  3. depends on ARCH_MULTI_V7
  4. help
  5. This enables support for HPE ARM based BMC chips.
  6. if ARCH_HPE
  7. config ARCH_HPE_GXP
  8. bool "HPE GXP SoC"
  9. depends on ARCH_MULTI_V7
  10. select ARM_VIC
  11. select GENERIC_IRQ_CHIP
  12. select CLKSRC_MMIO
  13. help
  14. HPE GXP is the name of the HPE Soc. This SoC is used to implement many
  15. BMC features at HPE. It supports ARMv7 architecture based on the Cortex
  16. A9 core. It is capable of using an AXI bus to which a memory controller
  17. is attached. It has multiple SPI interfaces to connect boot flash and
  18. BIOS flash. It uses a 10/100/1000 MAC for network connectivity. It
  19. has multiple i2c engines to drive connectivity with a host
  20. infrastructure.
  21. endif