]> 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)
commit11dc8c1d43b517908f41355f2652261b29e0ab0c
treeaeee6525fa9d315c05c4273bfc5d415e211baf36
parentfbb9c488f83a436b9e4c48031039163e4de8957b
openrisc: entry: Fix delay slot exception detection

Originally in patch 556b7454e5 ("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: 556b7454e5 ("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