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

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 ARCH_HAS_RESET_CONTROLLER
	select ARM_GIC
25
	select MFD_SUN6I_PRCM
26 27 28 29 30 31 32 33 34
	select RESET_CONTROLLER
	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 38 39
config MACH_SUN8I
	bool "Allwinner A23 (sun8i) SoCs support"
	default ARCH_SUNXI
40
	select ARCH_HAS_RESET_CONTROLLER
41
	select ARM_GIC
42 43
	select MFD_SUN6I_PRCM
	select RESET_CONTROLLER
44

45
endif