aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorT.J. Purtell <tj@mobisocial.us>2013-11-06 18:38:05 +0100
committerBen Hutchings <ben@decadent.org.uk>2015-10-13 03:46:09 +0100
commitcf5fdb4aded0e6a29b8e4059cab400306c562a14 (patch)
tree2d5e71291e3f7d66cf6a554ac79d92030997710a
parent6910b17342022468f9793c70d57a835d44187bd7 (diff)
downloadkernel_samsung_smdk4412-cf5fdb4aded0e6a29b8e4059cab400306c562a14.zip
kernel_samsung_smdk4412-cf5fdb4aded0e6a29b8e4059cab400306c562a14.tar.gz
kernel_samsung_smdk4412-cf5fdb4aded0e6a29b8e4059cab400306c562a14.tar.bz2
ARM: 7880/1: Clear the IT state independent of the Thumb-2 mode
commit 6ecf830e5029598732e04067e325d946097519cb upstream. The ARM architecture reference specifies that the IT state bits in the PSR must be all zeros in ARM mode or behavior is unspecified. On the Qualcomm Snapdragon S4/Krait architecture CPUs the processor continues to consider the IT state bits while in ARM mode. This makes it so that some instructions are skipped by the CPU. Signed-off-by: T.J. Purtell <tj@mobisocial.us> [rmk+kernel@arm.linux.org.uk: fixed whitespace formatting in patch] Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
-rw-r--r--arch/arm/kernel/signal.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/arch/arm/kernel/signal.c b/arch/arm/kernel/signal.c
index 9e617bd..eaa01de 100644
--- a/arch/arm/kernel/signal.c
+++ b/arch/arm/kernel/signal.c
@@ -486,12 +486,18 @@ setup_return(struct pt_regs *regs, struct k_sigaction *ka,
*/
thumb = handler & 1;
- if (thumb) {
- cpsr |= PSR_T_BIT;
#if __LINUX_ARM_ARCH__ >= 7
- /* clear the If-Then Thumb-2 execution state */
- cpsr &= ~PSR_IT_MASK;
+ /*
+ * Clear the If-Then Thumb-2 execution state
+ * ARM spec requires this to be all 000s in ARM mode
+ * Snapdragon S4/Krait misbehaves on a Thumb=>ARM
+ * signal transition without this.
+ */
+ cpsr &= ~PSR_IT_MASK;
#endif
+
+ if (thumb) {
+ cpsr |= PSR_T_BIT;
} else
cpsr &= ~PSR_T_BIT;
}