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 a32b3b52c5c0..6835a4c8affa 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
@@ -376,6 +377,7 @@ config ARCH_SA1100
376 select ARCH_DISCONTIGMEM_ENABLE 377 select ARCH_DISCONTIGMEM_ENABLE
377 select ARCH_MTD_XIP 378 select ARCH_MTD_XIP
378 select GENERIC_GPIO 379 select GENERIC_GPIO
380 select GENERIC_TIME
379 help 381 help
380 Support for StrongARM 11x0 based boards. 382 Support for StrongARM 11x0 based boards.
381 383
@@ -419,6 +421,17 @@ config ARCH_OMAP
419 help 421 help
420 Support for TI's OMAP platform (OMAP1 and OMAP2). 422 Support for TI's OMAP platform (OMAP1 and OMAP2).
421 423
424config ARCH_MSM7X00A
425 bool "Qualcomm MSM7X00A"
426 select GENERIC_TIME
427 select GENERIC_CLOCKEVENTS
428 help
429 Support for Qualcomm MSM7X00A based systems. This runs on the ARM11
430 apps processor of the MSM7X00A and depends on a shared memory
431 interface to the ARM9 modem processor which runs the baseband stack
432 and controls some vital subsystems (clock and power control, etc).
433 <http://www.cdmatech.com/products/msm7200_chipset_solution.jsp>
434
422endchoice 435endchoice
423 436
424source "arch/arm/mach-clps711x/Kconfig" 437source "arch/arm/mach-clps711x/Kconfig"
@@ -489,6 +502,8 @@ source "arch/arm/mach-davinci/Kconfig"
489 502
490source "arch/arm/mach-ks8695/Kconfig" 503source "arch/arm/mach-ks8695/Kconfig"
491 504
505source "arch/arm/mach-msm/Kconfig"
506
492# Definitions to make life easier 507# Definitions to make life easier
493config ARCH_ACORN 508config ARCH_ACORN
494 bool 509 bool
@@ -669,6 +684,7 @@ config HZ
669 default 128 if ARCH_L7200 684 default 128 if ARCH_L7200
670 default 200 if ARCH_EBSA110 || ARCH_S3C2410 685 default 200 if ARCH_EBSA110 || ARCH_S3C2410
671 default OMAP_32K_TIMER_HZ if ARCH_OMAP && OMAP_32K_TIMER 686 default OMAP_32K_TIMER_HZ if ARCH_OMAP && OMAP_32K_TIMER
687 default AT91_TIMER_HZ if ARCH_AT91
672 default 100 688 default 100
673 689
674config AEABI 690config AEABI
@@ -963,7 +979,7 @@ config FPE_FASTFPE
963 979
964config VFP 980config VFP
965 bool "VFP-format floating point maths" 981 bool "VFP-format floating point maths"
966 depends on CPU_V6 || CPU_ARM926T || CPU_FEROCEON 982 depends on CPU_V6 || CPU_ARM926T || CPU_V7 || CPU_FEROCEON
967 help 983 help
968 Say Y to include VFP support code in the kernel. This is needed 984 Say Y to include VFP support code in the kernel. This is needed
969 if your hardware includes a VFP unit. 985 if your hardware includes a VFP unit.
@@ -973,6 +989,18 @@ config VFP
973 989
974 Say N if your target does not have VFP hardware. 990 Say N if your target does not have VFP hardware.
975 991
992config VFPv3
993 bool
994 depends on VFP
995 default y if CPU_V7
996
997config NEON
998 bool "Advanced SIMD (NEON) Extension support"
999 depends on VFPv3 && CPU_V7
1000 help
1001 Say Y to include support code for NEON, the ARMv7 Advanced SIMD
1002 Extension.
1003
976endmenu 1004endmenu
977 1005
978menu "Userspace binary formats" 1006menu "Userspace binary formats"