Kconfig 999 B

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