summaryrefslogtreecommitdiffstats
path: root/arch/mips/ralink/mt7620.c
diff options
context:
space:
mode:
authorJames Hogan <jhogan@kernel.org>2017-11-10 11:46:54 +0000
committerJames Hogan <jhogan@kernel.org>2017-11-10 20:58:56 +0000
commitc7fd89a6407ea3a44a2a2fa12d290162c42499c4 (patch)
tree1da2118e0cd1d2633126f2a25d7db64a3b2b726f /arch/mips/ralink/mt7620.c
parentfe1a5cbc78f7ac00f763c34d2b5b0273f5c4b951 (diff)
downloadlinux-c7fd89a6407ea3a44a2a2fa12d290162c42499c4.tar.bz2
MIPS: Fix odd fp register warnings with MIPS64r2
Building 32-bit MIPS64r2 kernels produces warnings like the following on certain toolchains (such as GNU assembler 2.24.90, but not GNU assembler 2.28.51) since commit 22b8ba765a72 ("MIPS: Fix MIPS64 FP save/restore on 32-bit kernels"), due to the exposure of fpu_save_16odd from fpu_save_double and fpu_restore_16odd from fpu_restore_double: arch/mips/kernel/r4k_fpu.S:47: Warning: float register should be even, was 1 ... arch/mips/kernel/r4k_fpu.S:59: Warning: float register should be even, was 1 ... This appears to be because .set mips64r2 does not change the FPU ABI to 64-bit when -march=mips64r2 (or e.g. -march=xlp) is provided on the command line on that toolchain, from the default FPU ABI of 32-bit due to the -mabi=32. This makes access to the odd FPU registers invalid. Fix by explicitly changing the FPU ABI with .set fp=64 directives in fpu_save_16odd and fpu_restore_16odd, and moving the undefine of fp up in asmmacro.h so fp doesn't turn into $30. Fixes: 22b8ba765a72 ("MIPS: Fix MIPS64 FP save/restore on 32-bit kernels") Signed-off-by: James Hogan <jhogan@kernel.org> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Paul Burton <paul.burton@imgtec.com> Cc: linux-mips@linux-mips.org Cc: <stable@vger.kernel.org> # 4.0+: 22b8ba765a72: MIPS: Fix MIPS64 FP save/restore on 32-bit kernels Cc: <stable@vger.kernel.org> # 4.0+ Patchwork: https://patchwork.linux-mips.org/patch/17656/
Diffstat (limited to 'arch/mips/ralink/mt7620.c')
0 files changed, 0 insertions, 0 deletions