]> git.baikalelectronics.ru Git - kernel.git/commit
MIPS: Add missing EHB in mtc0 -> mfc0 sequence.
authorDmitry Korotin <dkorotin@wavecomp.com>
Mon, 24 Jun 2019 19:05:27 +0000 (19:05 +0000)
committerPaul Burton <paul.burton@mips.com>
Mon, 24 Jun 2019 20:43:12 +0000 (13:43 -0700)
commit5e774b958b421f8c7ac8a3317e4e2727474cb203
treefb104008612d1a6331f236194d76b5cb0ef55b79
parentb8db787b5f1f1c1722d6e290066d9c51e5bd6c77
MIPS: Add missing EHB in mtc0 -> mfc0 sequence.

Add a missing EHB (Execution Hazard Barrier) in mtc0 -> mfc0 sequence.
Without this execution hazard barrier it's possible for the value read
back from the KScratch register to be the value from before the mtc0.

Reproducible on P5600 & P6600.

The hazard is documented in the MIPS Architecture Reference Manual Vol.
III: MIPS32/microMIPS32 Privileged Resource Architecture (MD00088), rev
6.03 table 8.1 which includes:

   Producer | Consumer | Hazard
  ----------|----------|----------------------------
   mtc0     | mfc0     | any coprocessor 0 register

Signed-off-by: Dmitry Korotin <dkorotin@wavecomp.com>
[paul.burton@mips.com:
  - Commit message tweaks.
  - Add Fixes tags.
  - Mark for stable back to v3.15 where P5600 support was introduced.]
Signed-off-by: Paul Burton <paul.burton@mips.com>
Fixes: bd6fa06101db ("MIPS: Use C0_KScratch (if present) to hold PGD pointer.")
Fixes: ea05ff222d1c ("MIPS: Add MIPS P5600 probe support")
Cc: linux-mips@vger.kernel.org
Cc: stable@vger.kernel.org # v3.15+
arch/mips/mm/tlbex.c