diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2015-07-16 10:30:04 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-07-19 05:31:24 -0400 |
commit | fcc53b5f6c38acbf5d311ffc3e0da517491c6f7b (patch) | |
tree | 9369c7e815047cfed1e779ad110ad523d1ca62cc | |
parent | dd0bc75ee3ec4ef694c2d0483b6ffeed17141435 (diff) |
MIPS: fpu.h: Allow 64-bit FPU on a 64-bit MIPS R6 CPU
Commit 6134d94923d0 ("MIPS: asm: fpu: Allow 64-bit FPU on MIPS32 R6")
added support for 64-bit FPU on a 32-bit MIPS R6 processor but it missed
the 64-bit CPU case leading to FPU failures when requesting FR=1 mode
(which is always the case for MIPS R6 userland) when running a 32-bit
kernel on a 64-bit CPU. We also fix the MIPS R2 case.
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Fixes: 6134d94923d0 ("MIPS: asm: fpu: Allow 64-bit FPU on MIPS32 R6")
Reviewed-by: Paul Burton <paul.burton@imgtec.com>
Cc: <stable@vger.kernel.org> # 4.0+
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/10734/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/include/asm/fpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/fpu.h b/arch/mips/include/asm/fpu.h index 084780b355aa..1b0625189835 100644 --- a/arch/mips/include/asm/fpu.h +++ b/arch/mips/include/asm/fpu.h | |||
@@ -74,7 +74,7 @@ static inline int __enable_fpu(enum fpu_mode mode) | |||
74 | goto fr_common; | 74 | goto fr_common; |
75 | 75 | ||
76 | case FPU_64BIT: | 76 | case FPU_64BIT: |
77 | #if !(defined(CONFIG_CPU_MIPS32_R2) || defined(CONFIG_CPU_MIPS32_R6) \ | 77 | #if !(defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6) \ |
78 | || defined(CONFIG_64BIT)) | 78 | || defined(CONFIG_64BIT)) |
79 | /* we only have a 32-bit FPU */ | 79 | /* we only have a 32-bit FPU */ |
80 | return SIGFPE; | 80 | return SIGFPE; |