]> git.baikalelectronics.ru Git - kernel.git/commit
openrisc: entry: Fix delay slot exception detection
authorStafford Horne <shorne@gmail.com>
Sun, 1 Jul 2018 05:17:36 +0000 (14:17 +0900)
committerStafford Horne <shorne@gmail.com>
Sun, 1 Jul 2018 07:48:24 +0000 (16:48 +0900)
commite3079c695c0b26e88012b027f8770e9178929168
treeaeee6525fa9d315c05c4273bfc5d415e211baf36
parentbc8323a306ac2b2acf219bebbd68f7c00803aa5c
openrisc: entry: Fix delay slot exception detection

Originally in patch 0b294a240c ("openrisc: entry: Fix delay slot
detection") I fixed delay slot detection, but only for QEMU.  We missed
that hardware delay slot detection using delay slot exception flag (DSX)
was still broken.  This was because QEMU set the DSX flag in both
pre-exception supervision register (ESR) and supervision register (SR)
register, but on real hardware the DSX flag is only set on the SR
register during exceptions.

Fix this by carrying the DSX flag into the SR register during exception.
We also update the DSX flag read locations to read the value from the SR
register not the pt_regs SR register which represents ESR.  The ESR
should never have the DSX flag set.

In the process I updated/removed a few comments to match the current
state.  Including removing a comment saying that the DSX detection logic
was inefficient and needed to be rewritten.

I have tested this on QEMU with a patch ensuring it matches the hardware
specification.

Link: https://lists.gnu.org/archive/html/qemu-devel/2018-07/msg00000.html
Fixes: 0b294a240c ("openrisc: entry: Fix delay slot detection")
Signed-off-by: Stafford Horne <shorne@gmail.com>
arch/openrisc/kernel/entry.S
arch/openrisc/kernel/head.S
arch/openrisc/kernel/traps.c