aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel/smp.c
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2011-10-06 10:19:14 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2011-10-17 04:02:44 -0400
commit0af8aa0069e43f90d59666510342c05e97d8c4b8 (patch)
tree9d5e75ed9c91f04d5a547bd884ca9c7f457fc1e9 /arch/arm/kernel/smp.c
parent0b5a1b95dcdfa451125132d5ce3f79a27ffb0950 (diff)
ARM: 7124/1: smp: Add a localtimer handler callable from C code
In order to be able to handle localtimer directly from C code instead of assembly code, introduce handle_local_timer(), which is modeled after handle_IRQ(). Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel/smp.c')
-rw-r--r--arch/arm/kernel/smp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c
index 2e49f1883fe9..0949007d09a8 100644
--- a/arch/arm/kernel/smp.c
+++ b/arch/arm/kernel/smp.c
@@ -480,6 +480,11 @@ static void ipi_timer(void)
480#ifdef CONFIG_LOCAL_TIMERS 480#ifdef CONFIG_LOCAL_TIMERS
481asmlinkage void __exception_irq_entry do_local_timer(struct pt_regs *regs) 481asmlinkage void __exception_irq_entry do_local_timer(struct pt_regs *regs)
482{ 482{
483 handle_local_timer(regs);
484}
485
486void handle_local_timer(struct pt_regs *regs)
487{
483 struct pt_regs *old_regs = set_irq_regs(regs); 488 struct pt_regs *old_regs = set_irq_regs(regs);
484 int cpu = smp_processor_id(); 489 int cpu = smp_processor_id();
485 490