]> git.baikalelectronics.ru Git - kernel.git/commit
MIPS: Fix C0_Pagegrain[IEC] support.
authorDavid Daney <david.daney@cavium.com>
Tue, 6 Jan 2015 18:42:23 +0000 (10:42 -0800)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 30 Jan 2015 23:44:08 +0000 (00:44 +0100)
commitdf8b0d688af8f1526a0c050d0f4f5e60344096dd
treedb757efcf8ad45f7b2efa0a27c1886488af94946
parent3b01e7b4bef2699b71bbd69051992f04205d7a94
MIPS: Fix C0_Pagegrain[IEC] support.

The following commits:

  9505fc41689295 (MIPS: Use dedicated exception handler if CPU supports RI/XI exceptions)
  5556c4b075f10e (MIPS: kernel: cpu-probe: Detect unique RI/XI exceptions)

break the kernel for *all* existing MIPS CPUs that implement the
CP0_PageGrain[IEC] bit.  They cause the TLB exception handlers to be
generated without the legacy execute-inhibit handling, but never set
the CP0_PageGrain[IEC] bit to activate the use of dedicated exception
vectors for execute-inhibit exceptions.  The result is that upon
detection of an execute-inhibit violation, we loop forever in the TLB
exception handlers instead of sending SIGSEGV to the task.

If we are generating TLB exception handlers expecting separate
vectors, we must also enable the CP0_PageGrain[IEC] feature.

The bug was introduced in kernel version 3.17.

Signed-off-by: David Daney <david.daney@cavium.com>
Cc: <stable@vger.kernel.org>
Cc: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/8880/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/mm/tlb-r4k.c