Kconfig 800 B

123456789101112131415161718192021222324252627282930
  1. menuconfig ARCH_MSTARV7
  2. bool "MStar/Sigmastar Armv7 SoC Support"
  3. depends on ARCH_MULTI_V7
  4. select ARM_ERRATA_814220
  5. select ARM_GIC
  6. select ARM_HEAVY_MB
  7. select HAVE_ARM_ARCH_TIMER
  8. select MST_IRQ
  9. select MSTAR_MSC313_MPLL
  10. help
  11. Support for newer MStar/Sigmastar SoC families that are
  12. based on Armv7 cores like the Cortex A7 and share the same
  13. basic hardware like the infinity and mercury series.
  14. if ARCH_MSTARV7
  15. config MACH_INFINITY
  16. bool "MStar/Sigmastar infinity SoC support"
  17. default ARCH_MSTARV7
  18. help
  19. Support for MStar/Sigmastar infinity IP camera SoCs.
  20. config MACH_MERCURY
  21. bool "MStar/Sigmastar mercury SoC support"
  22. default ARCH_MSTARV7
  23. help
  24. Support for MStar/Sigmastar mercury dash camera SoCs.
  25. Note that older Mercury2 SoCs are ARM9 based and not supported.
  26. endif