MIPS: save/restore MSACSR register on context switch
authorPaul Burton <paul.burton@imgtec.com>
Fri, 11 Jul 2014 15:44:28 +0000 (16:44 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 1 Aug 2014 22:06:43 +0000 (00:06 +0200)
I added a field for the MSACSR register in struct mips_fpu_struct, but
never actually made use of it... This is a clear bug. Save and restore
the MSACSR register along with the vector registers.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/7300/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/asmmacro.h
arch/mips/kernel/asm-offsets.c

index 935543f1453848660ae6fdc69922bcb9b10cae5b..4986bf5ffd297c4f41ca876fe78b4b2bb29f0e2a 100644 (file)
@@ -10,6 +10,7 @@
 
 #include <asm/hazards.h>
 #include <asm/asm-offsets.h>
+#include <asm/msa.h>
 
 #ifdef CONFIG_32BIT
 #include <asm/asmmacro-32.h>
        st_d    29, THREAD_FPR29, \thread
        st_d    30, THREAD_FPR30, \thread
        st_d    31, THREAD_FPR31, \thread
+       .set    push
+       .set    noat
+       cfcmsa  $1, MSA_CSR
+       sw      $1, THREAD_MSA_CSR(\thread)
+       .set    pop
        .endm
 
        .macro  msa_restore_all thread
+       .set    push
+       .set    noat
+       lw      $1, THREAD_MSA_CSR(\thread)
+       ctcmsa  MSA_CSR, $1
+       .set    pop
        ld_d    0, THREAD_FPR0, \thread
        ld_d    1, THREAD_FPR1, \thread
        ld_d    2, THREAD_FPR2, \thread
index 4bb5107511e2de9a74e22a947bc2b88eceb71732..b1d84bd4efb3b4c500af92c01438aba5a89048dc 100644 (file)
@@ -234,6 +234,7 @@ void output_thread_fpu_defines(void)
               thread.fpu.fpr[31].val64[FPR_IDX(64, 0)]);
 
        OFFSET(THREAD_FCR31, task_struct, thread.fpu.fcr31);
+       OFFSET(THREAD_MSA_CSR, task_struct, thread.fpu.msacsr);
        BLANK();
 }
 
This page took 0.029379 seconds and 5 git commands to generate.