Kconfig 875 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. menuconfig ARCH_SUNXI
  2. bool "Allwinner SoCs" if ARCH_MULTI_V7
  3. select ARCH_REQUIRE_GPIOLIB
  4. select ARCH_HAS_RESET_CONTROLLER
  5. select CLKSRC_MMIO
  6. select GENERIC_IRQ_CHIP
  7. select PINCTRL
  8. select SUN4I_TIMER
  9. select RESET_CONTROLLER
  10. if ARCH_SUNXI
  11. config MACH_SUN4I
  12. bool "Allwinner A10 (sun4i) SoCs support"
  13. default ARCH_SUNXI
  14. config MACH_SUN5I
  15. bool "Allwinner A10s / A13 (sun5i) SoCs support"
  16. default ARCH_SUNXI
  17. select SUN5I_HSTIMER
  18. config MACH_SUN6I
  19. bool "Allwinner A31 (sun6i) SoCs support"
  20. default ARCH_SUNXI
  21. select ARM_GIC
  22. select MFD_SUN6I_PRCM
  23. select SUN5I_HSTIMER
  24. config MACH_SUN7I
  25. bool "Allwinner A20 (sun7i) SoCs support"
  26. default ARCH_SUNXI
  27. select ARM_GIC
  28. select ARM_PSCI
  29. select HAVE_ARM_ARCH_TIMER
  30. select SUN5I_HSTIMER
  31. config MACH_SUN8I
  32. bool "Allwinner A23 (sun8i) SoCs support"
  33. default ARCH_SUNXI
  34. select ARM_GIC
  35. select MFD_SUN6I_PRCM
  36. endif