diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2007-09-25 10:22:24 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-01-26 09:41:28 -0500 |
commit | 25ebee020bd34d1f4c5678538204f0b10bf9f6d5 (patch) | |
tree | b9b04ddf0b9916922a3cba47a7f64f44cd0b28ff /arch/arm/Kconfig | |
parent | c98929c07a01c9ec2e1e5253456acc7168da8b66 (diff) |
[ARM] 4583/1: ARMv7: Add VFPv3 support
This patch adds the support for VFPv3 (the kernel currently supports
VFPv2). The main difference is 32 double registers (compared to 16).
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, 6 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index a04f507e7f2c..f4eeb03bc6a9 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -951,7 +951,7 @@ config FPE_FASTFPE | |||
951 | 951 | ||
952 | config VFP | 952 | config VFP |
953 | bool "VFP-format floating point maths" | 953 | bool "VFP-format floating point maths" |
954 | depends on CPU_V6 || CPU_ARM926T | 954 | depends on CPU_V6 || CPU_ARM926T || CPU_V7 |
955 | help | 955 | help |
956 | Say Y to include VFP support code in the kernel. This is needed | 956 | Say Y to include VFP support code in the kernel. This is needed |
957 | if your hardware includes a VFP unit. | 957 | if your hardware includes a VFP unit. |
@@ -961,6 +961,11 @@ config VFP | |||
961 | 961 | ||
962 | Say N if your target does not have VFP hardware. | 962 | Say N if your target does not have VFP hardware. |
963 | 963 | ||
964 | config VFPv3 | ||
965 | bool | ||
966 | depends on VFP | ||
967 | default y if CPU_V7 | ||
968 | |||
964 | endmenu | 969 | endmenu |
965 | 970 | ||
966 | menu "Userspace binary formats" | 971 | menu "Userspace binary formats" |