diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2008-01-10 13:16:17 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-01-26 09:44:02 -0500 |
commit | b5872db4a2ebe7dbc7a5e4013ae8ee37f3de3b97 (patch) | |
tree | eab14c59c2b068868a5f53a56eb149fc1f902b13 /arch/arm/Kconfig | |
parent | 25ebee020bd34d1f4c5678538204f0b10bf9f6d5 (diff) |
[ARM] 4584/2: ARMv7: Add Advanced SIMD (NEON) extension support
This patch enables the use of the Advanced SIMD (NEON) extension on
ARMv7. The NEON technology is a 64/128-bit hybrid SIMD architecture
for accelerating the performance of multimedia and signal processing
applications. The extension shares the registers with the VFP unit and
enabling/disabling and saving/restoring follow the same rules. In
addition, there are instructions that do not have the appropriate CP
number encoded, the checks being made in the call_fpe function.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index f4eeb03bc6a9..709f9d383c87 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -966,6 +966,13 @@ config VFPv3 | |||
966 | depends on VFP | 966 | depends on VFP |
967 | default y if CPU_V7 | 967 | default y if CPU_V7 |
968 | 968 | ||
969 | config NEON | ||
970 | bool "Advanced SIMD (NEON) Extension support" | ||
971 | depends on VFPv3 && CPU_V7 | ||
972 | help | ||
973 | Say Y to include support code for NEON, the ARMv7 Advanced SIMD | ||
974 | Extension. | ||
975 | |||
969 | endmenu | 976 | endmenu |
970 | 977 | ||
971 | menu "Userspace binary formats" | 978 | menu "Userspace binary formats" |