summaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/cpu-probe.c
diff options
context:
space:
mode:
authorPaul Burton2014-01-28 15:28:43 +0100
committerRalf Baechle2014-03-26 23:09:11 +0100
commita8ad136789b4256fa372d59daaddb91b72aa0753 (patch)
tree0e13b5f91cdefe555e20d671732601dfe8c5301f /arch/mips/kernel/cpu-probe.c
parentMIPS: Dumb MSA FP exception handler (diff)
downloadkernel-qcow2-linux-a8ad136789b4256fa372d59daaddb91b72aa0753.tar.gz
kernel-qcow2-linux-a8ad136789b4256fa372d59daaddb91b72aa0753.tar.xz
kernel-qcow2-linux-a8ad136789b4256fa372d59daaddb91b72aa0753.zip
MIPS: Warn if vector register partitioning is implemented
No current systems implementing MSA include support for vector register partitioning which makes it somewhat difficult to implement support for it in the kernel. Thus for the moment the kernel includes no such support. However if the kernel were to be run on a system which implemented register partitioning then it would not function correctly, mishandling MSA disabled exceptions. Print a warning if run on a system with vector register partitioning implemented to indicate this problem should it occur. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/6494/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/cpu-probe.c')
-rw-r--r--arch/mips/kernel/cpu-probe.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
index 420d2fc595d0..dec20f580cea 100644
--- a/arch/mips/kernel/cpu-probe.c
+++ b/arch/mips/kernel/cpu-probe.c
@@ -1195,8 +1195,11 @@ void cpu_probe(void)
else
c->srsets = 1;
- if (cpu_has_msa)
+ if (cpu_has_msa) {
c->msa_id = cpu_get_msa_id();
+ WARN(c->msa_id & MSA_IR_WRPF,
+ "Vector register partitioning unimplemented!");
+ }
cpu_probe_vmbits(c);