Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menuconfig ARCH_SUNXI
  3. bool "Allwinner SoCs"
  4. depends on (CPU_LITTLE_ENDIAN && ARCH_MULTI_V5) || ARCH_MULTI_V7
  5. select ARCH_HAS_RESET_CONTROLLER
  6. select CLKSRC_MMIO
  7. select GPIOLIB
  8. select PINCTRL
  9. select PM_OPP
  10. select SUN4I_TIMER
  11. select RESET_CONTROLLER
  12. help
  13. Support for Allwinner ARM-based family of processors
  14. if ARCH_SUNXI
  15. if ARCH_MULTI_V7
  16. config MACH_SUN4I
  17. bool "Allwinner A10 (sun4i) SoCs support"
  18. default ARCH_SUNXI
  19. select SUN4I_INTC
  20. config MACH_SUN5I
  21. bool "Allwinner A10s / A13 (sun5i) SoCs support"
  22. default ARCH_SUNXI
  23. select SUN4I_INTC
  24. select SUN5I_HSTIMER
  25. config MACH_SUN6I
  26. bool "Allwinner A31 (sun6i) SoCs support"
  27. default ARCH_SUNXI
  28. select ARM_GIC
  29. select MFD_SUN6I_PRCM
  30. select SUN5I_HSTIMER
  31. select SUN6I_R_INTC
  32. select SUNXI_NMI_INTC
  33. config MACH_SUN7I
  34. bool "Allwinner A20 (sun7i) SoCs support"
  35. default ARCH_SUNXI
  36. select ARM_GIC
  37. select ARM_PSCI
  38. select HAVE_ARM_ARCH_TIMER
  39. select SUN5I_HSTIMER
  40. select SUNXI_NMI_INTC
  41. config MACH_SUN8I
  42. bool "Allwinner sun8i Family SoCs support"
  43. default ARCH_SUNXI
  44. select ARM_GIC
  45. select MFD_SUN6I_PRCM
  46. select SUN6I_R_INTC
  47. select SUNXI_NMI_INTC
  48. config MACH_SUN9I
  49. bool "Allwinner (sun9i) SoCs support"
  50. default ARCH_SUNXI
  51. select ARM_GIC
  52. select SUNXI_NMI_INTC
  53. config ARCH_SUNXI_MC_SMP
  54. bool
  55. depends on SMP
  56. default MACH_SUN9I || MACH_SUN8I
  57. select ARM_CCI400_PORT_CTRL
  58. select ARM_CPU_SUSPEND
  59. endif
  60. if ARCH_MULTI_V5
  61. config MACH_SUNIV
  62. bool "Allwinner ARMv5 F-series (suniv) SoCs support"
  63. default ARCH_SUNXI
  64. select SUN4I_INTC
  65. help
  66. Support for Allwinner suniv ARMv5 SoCs.
  67. (F1C100A, F1C100s, F1C200s, F1C500, F1C600)
  68. endif
  69. endif