aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-11-04 19:18:05 -0500
committerRalf Baechle <ralf@linux-mips.org>2007-11-15 18:21:48 -0500
commit07a80e49240ff57bccc3c65944d35947c3d33697 (patch)
tree9a90258c6f5f060ac3fd5f6f827907f421e4637b /arch
parenta57c228935fd55c4a1cf7c0b7823537c81914000 (diff)
[MIPS] Sibyte: pin timer interrupt to their cores.
Or strange things will happen. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/kernel/cevt-bcm1480.c3
-rw-r--r--arch/mips/kernel/cevt-sb1250.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/arch/mips/kernel/cevt-bcm1480.c b/arch/mips/kernel/cevt-bcm1480.c
index 21e6d63eb4d1..f6fcc62ade3a 100644
--- a/arch/mips/kernel/cevt-bcm1480.c
+++ b/arch/mips/kernel/cevt-bcm1480.c
@@ -143,7 +143,10 @@ void __cpuinit sb1480_clockevent_init(void)
143 143
144 action->handler = sibyte_counter_handler; 144 action->handler = sibyte_counter_handler;
145 action->flags = IRQF_DISABLED | IRQF_PERCPU; 145 action->flags = IRQF_DISABLED | IRQF_PERCPU;
146 action->mask = cpumask_of_cpu(cpu);
146 action->name = name; 147 action->name = name;
147 action->dev_id = cd; 148 action->dev_id = cd;
149
150 irq_set_affinity(irq, cpumask_of_cpu(cpu));
148 setup_irq(irq, action); 151 setup_irq(irq, action);
149} 152}
diff --git a/arch/mips/kernel/cevt-sb1250.c b/arch/mips/kernel/cevt-sb1250.c
index e2029d0fc39b..194e0f726fe8 100644
--- a/arch/mips/kernel/cevt-sb1250.c
+++ b/arch/mips/kernel/cevt-sb1250.c
@@ -142,7 +142,10 @@ void __cpuinit sb1250_clockevent_init(void)
142 142
143 action->handler = sibyte_counter_handler; 143 action->handler = sibyte_counter_handler;
144 action->flags = IRQF_DISABLED | IRQF_PERCPU; 144 action->flags = IRQF_DISABLED | IRQF_PERCPU;
145 action->mask = cpumask_of_cpu(cpu);
145 action->name = name; 146 action->name = name;
146 action->dev_id = cd; 147 action->dev_id = cd;
148
149 irq_set_affinity(irq, cpumask_of_cpu(cpu));
147 setup_irq(irq, action); 150 setup_irq(irq, action);
148} 151}