aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2010-07-09 01:30:22 -0400
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2010-07-09 02:11:09 -0400
commite8775d4aa17d70d123814e68a6a51bbea50e5c16 (patch)
tree63d9dc7dd29165acfd941e5ac83cd80e8d55b57c /arch/powerpc
parentb9f1cd71dbf21a91fb7e2336a1d1ff18b97771e5 (diff)
powerpc/book3e: Don't re-trigger decrementer on lazy irq restore
The decrementer on BookE acts as a level interrupt and doesn't need to be re-triggered when going negative. It doesn't go negative anyways (unless programmed to auto-reload with a negative value) as it stops when reaching 0. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/irq.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c
index 77be3d058a65..fa6f38525801 100644
--- a/arch/powerpc/kernel/irq.c
+++ b/arch/powerpc/kernel/irq.c
@@ -159,8 +159,17 @@ notrace void raw_local_irq_restore(unsigned long en)
159 * use local_paca instead of get_paca() to avoid preemption checking. 159 * use local_paca instead of get_paca() to avoid preemption checking.
160 */ 160 */
161 local_paca->hard_enabled = en; 161 local_paca->hard_enabled = en;
162
163#ifndef CONFIG_BOOKE
164 /* On server, re-trigger the decrementer if it went negative since
165 * some processors only trigger on edge transitions of the sign bit.
166 *
167 * BookE has a level sensitive decrementer (latches in TSR) so we
168 * don't need that
169 */
162 if ((int)mfspr(SPRN_DEC) < 0) 170 if ((int)mfspr(SPRN_DEC) < 0)
163 mtspr(SPRN_DEC, 1); 171 mtspr(SPRN_DEC, 1);
172#endif /* CONFIG_BOOKE */
164 173
165 /* 174 /*
166 * Force the delivery of pending soft-disabled interrupts on PS3. 175 * Force the delivery of pending soft-disabled interrupts on PS3.