Kconfig 948 字节
Newer Older
1
menuconfig ARCH_SIRF
2
	bool "CSR SiRF" if ARCH_MULTI_V7
3
	select ARCH_HAS_RESET_CONTROLLER
4 5
	select ARCH_REQUIRE_GPIOLIB
	select GENERIC_IRQ_CHIP
6
	select NO_IOPORT_MAP
7 8 9 10 11
	select PINCTRL
	select PINCTRL_SIRF
	help
	  Support for CSR SiRFprimaII/Marco/Polo platforms

12 13
if ARCH_SIRF

14
comment "CSR SiRF atlas6/primaII/Atlas7 Specific Features"
15 16 17 18 19 20 21

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
22

23 24 25 26 27 28 29 30 31 32 33
config ARCH_ATLAS7
	bool "CSR SiRFSoC ATLAS7 ARM Cortex A7 Platform"
	default y
	select ARM_GIC
	select CPU_V7
	select HAVE_ARM_SCU if SMP
	select HAVE_SMP
	select SMP_ON_UP if SMP
	help
          Support for CSR SiRFSoC ARM Cortex A7 Platform

34 35 36
config ARCH_PRIMA2
	bool "CSR SiRFSoC PRIMA2 ARM Cortex A9 Platform"
	default y
37
	select SIRF_IRQ
38
	select ZONE_DMA
39 40 41
	help
          Support for CSR SiRFSoC ARM Cortex A9 Platform

42 43 44
config SIRF_IRQ
	bool

45
endif