Kconfig 970 字节
Newer Older
1 2
menuconfig ARCH_SUNXI
	bool "Allwinner SoCs" if ARCH_MULTI_V7
3
	select ARCH_REQUIRE_GPIOLIB
4
	select ARCH_HAS_RESET_CONTROLLER
5 6 7
	select CLKSRC_MMIO
	select GENERIC_IRQ_CHIP
	select PINCTRL
8
	select SUN4I_TIMER
9
	select RESET_CONTROLLER
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

if ARCH_SUNXI

config MACH_SUN4I
	bool "Allwinner A10 (sun4i) SoCs support"
	default ARCH_SUNXI

config MACH_SUN5I
	bool "Allwinner A10s / A13 (sun5i) SoCs support"
	default ARCH_SUNXI
	select SUN5I_HSTIMER

config MACH_SUN6I
	bool "Allwinner A31 (sun6i) SoCs support"
	default ARCH_SUNXI
	select ARM_GIC
26
	select MFD_SUN6I_PRCM
27 28 29 30 31 32 33 34
	select SUN5I_HSTIMER

config MACH_SUN7I
	bool "Allwinner A20 (sun7i) SoCs support"
	default ARCH_SUNXI
	select ARM_GIC
	select ARM_PSCI
	select HAVE_ARM_ARCH_TIMER
35
	select SUN5I_HSTIMER
36

37
config MACH_SUN8I
38
	bool "Allwinner sun8i Family SoCs support"
39 40
	default ARCH_SUNXI
	select ARM_GIC
41
	select MFD_SUN6I_PRCM
42

43 44 45 46 47
config MACH_SUN9I
	bool "Allwinner (sun9i) SoCs support"
	default ARCH_SUNXI
	select ARM_GIC

48
endif