aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r--arch/arm/Kconfig34
1 files changed, 31 insertions, 3 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index a04f507e7f2c..e53b0ed9d00a 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -180,8 +180,8 @@ config ARCH_AT91
180 bool "Atmel AT91" 180 bool "Atmel AT91"
181 select GENERIC_GPIO 181 select GENERIC_GPIO
182 help 182 help
183 This enables support for systems based on the Atmel AT91RM9200 183 This enables support for systems based on the Atmel AT91RM9200,
184 and AT91SAM9xxx processors. 184 AT91SAM9 and AT91CAP9 processors.
185 185
186config ARCH_CLPS7500 186config ARCH_CLPS7500
187 bool "Cirrus CL-PS7500FE" 187 bool "Cirrus CL-PS7500FE"
@@ -217,6 +217,7 @@ config ARCH_EP93XX
217 bool "EP93xx-based" 217 bool "EP93xx-based"
218 select ARM_AMBA 218 select ARM_AMBA
219 select ARM_VIC 219 select ARM_VIC
220 select GENERIC_GPIO
220 help 221 help
221 This enables support for the Cirrus EP93xx series of CPUs. 222 This enables support for the Cirrus EP93xx series of CPUs.
222 223
@@ -366,6 +367,7 @@ config ARCH_SA1100
366 select ARCH_DISCONTIGMEM_ENABLE 367 select ARCH_DISCONTIGMEM_ENABLE
367 select ARCH_MTD_XIP 368 select ARCH_MTD_XIP
368 select GENERIC_GPIO 369 select GENERIC_GPIO
370 select GENERIC_TIME
369 help 371 help
370 Support for StrongARM 11x0 based boards. 372 Support for StrongARM 11x0 based boards.
371 373
@@ -409,6 +411,17 @@ config ARCH_OMAP
409 help 411 help
410 Support for TI's OMAP platform (OMAP1 and OMAP2). 412 Support for TI's OMAP platform (OMAP1 and OMAP2).
411 413
414config ARCH_MSM7X00A
415 bool "Qualcomm MSM7X00A"
416 select GENERIC_TIME
417 select GENERIC_CLOCKEVENTS
418 help
419 Support for Qualcomm MSM7X00A based systems. This runs on the ARM11
420 apps processor of the MSM7X00A and depends on a shared memory
421 interface to the ARM9 modem processor which runs the baseband stack
422 and controls some vital subsystems (clock and power control, etc).
423 <http://www.cdmatech.com/products/msm7200_chipset_solution.jsp>
424
412endchoice 425endchoice
413 426
414source "arch/arm/mach-clps711x/Kconfig" 427source "arch/arm/mach-clps711x/Kconfig"
@@ -477,6 +490,8 @@ source "arch/arm/mach-davinci/Kconfig"
477 490
478source "arch/arm/mach-ks8695/Kconfig" 491source "arch/arm/mach-ks8695/Kconfig"
479 492
493source "arch/arm/mach-msm/Kconfig"
494
480# Definitions to make life easier 495# Definitions to make life easier
481config ARCH_ACORN 496config ARCH_ACORN
482 bool 497 bool
@@ -657,6 +672,7 @@ config HZ
657 default 128 if ARCH_L7200 672 default 128 if ARCH_L7200
658 default 200 if ARCH_EBSA110 || ARCH_S3C2410 673 default 200 if ARCH_EBSA110 || ARCH_S3C2410
659 default OMAP_32K_TIMER_HZ if ARCH_OMAP && OMAP_32K_TIMER 674 default OMAP_32K_TIMER_HZ if ARCH_OMAP && OMAP_32K_TIMER
675 default AT91_TIMER_HZ if ARCH_AT91
660 default 100 676 default 100
661 677
662config AEABI 678config AEABI
@@ -951,7 +967,7 @@ config FPE_FASTFPE
951 967
952config VFP 968config VFP
953 bool "VFP-format floating point maths" 969 bool "VFP-format floating point maths"
954 depends on CPU_V6 || CPU_ARM926T 970 depends on CPU_V6 || CPU_ARM926T || CPU_V7
955 help 971 help
956 Say Y to include VFP support code in the kernel. This is needed 972 Say Y to include VFP support code in the kernel. This is needed
957 if your hardware includes a VFP unit. 973 if your hardware includes a VFP unit.
@@ -961,6 +977,18 @@ config VFP
961 977
962 Say N if your target does not have VFP hardware. 978 Say N if your target does not have VFP hardware.
963 979
980config VFPv3
981 bool
982 depends on VFP
983 default y if CPU_V7
984
985config NEON
986 bool "Advanced SIMD (NEON) Extension support"
987 depends on VFPv3 && CPU_V7
988 help
989 Say Y to include support code for NEON, the ARMv7 Advanced SIMD
990 Extension.
991
964endmenu 992endmenu
965 993
966menu "Userspace binary formats" 994menu "Userspace binary formats"