Kconfig 1014 字节
Newer Older
1
menuconfig ARCH_SIRF
2 3
	bool "CSR SiRF"
	depends on ARCH_MULTI_V7
4
	select ARCH_HAS_RESET_CONTROLLER
5
	select RESET_CONTROLLER
6 7
	select ARCH_REQUIRE_GPIOLIB
	select GENERIC_IRQ_CHIP
8
	select NO_IOPORT_MAP
9
	select REGMAP
10 11 12 13 14
	select PINCTRL
	select PINCTRL_SIRF
	help
	  Support for CSR SiRFprimaII/Marco/Polo platforms

15 16
if ARCH_SIRF

17
comment "CSR SiRF atlas6/primaII/Atlas7 Specific Features"
18 19 20 21 22 23 24

config ARCH_ATLAS6
	bool "CSR SiRFSoC ATLAS6 ARM Cortex A9 Platform"
	default y
	select SIRF_IRQ
	help
          Support for CSR SiRFSoC ARM Cortex A9 Platform
25

26 27 28 29 30
config ARCH_ATLAS7
	bool "CSR SiRFSoC ATLAS7 ARM Cortex A7 Platform"
	default y
	select ARM_GIC
	select CPU_V7
31
	select ATLAS7_TIMER
32 33 34 35 36
	select HAVE_ARM_SCU if SMP
	select HAVE_SMP
	help
          Support for CSR SiRFSoC ARM Cortex A7 Platform

37 38 39
config ARCH_PRIMA2
	bool "CSR SiRFSoC PRIMA2 ARM Cortex A9 Platform"
	default y
40
	select SIRF_IRQ
41
	select ZONE_DMA
42
	select PRIMA2_TIMER
43 44 45
	help
          Support for CSR SiRFSoC ARM Cortex A9 Platform

46 47 48
config SIRF_IRQ
	bool

49
endif