blob: a12d00eb5e7c01e9495704fbfdae248ab081ed8e [file] [log] [blame]
Andrew Mortonc777ac52006-03-25 03:07:36 -08001
Christoph Hellwigd824e662006-04-10 22:54:04 -07002#include <linux/irq.h>
Andrew Mortonc777ac52006-03-25 03:07:36 -08003
4void set_pending_irq(unsigned int irq, cpumask_t mask)
5{
6 irq_desc_t *desc = irq_desc + irq;
7 unsigned long flags;
8
9 spin_lock_irqsave(&desc->lock, flags);
10 desc->move_irq = 1;
11 pending_irq_cpumask[irq] = mask;
12 spin_unlock_irqrestore(&desc->lock, flags);
13}
14
15void move_native_irq(int irq)
16{
17 cpumask_t tmp;
18 irq_desc_t *desc = irq_descp(irq);
19
Bryan Holty501f2492006-03-25 03:07:37 -080020 if (likely(!desc->move_irq))
Andrew Mortonc777ac52006-03-25 03:07:36 -080021 return;
22
Bryan Holty501f2492006-03-25 03:07:37 -080023 /*
24 * Paranoia: cpu-local interrupts shouldn't be calling in here anyway.
25 */
26 if (CHECK_IRQ_PER_CPU(desc->status)) {
27 WARN_ON(1);
28 return;
29 }
30
Andrew Mortonc777ac52006-03-25 03:07:36 -080031 desc->move_irq = 0;
32
Daniel Walker89d0cf02006-06-23 02:05:29 -070033 if (unlikely(cpus_empty(pending_irq_cpumask[irq])))
Andrew Mortonc777ac52006-03-25 03:07:36 -080034 return;
35
36 if (!desc->handler->set_affinity)
37 return;
38
Bryan Holty501f2492006-03-25 03:07:37 -080039 assert_spin_locked(&desc->lock);
40
Andrew Mortonc777ac52006-03-25 03:07:36 -080041 cpus_and(tmp, pending_irq_cpumask[irq], cpu_online_map);
42
43 /*
44 * If there was a valid mask to work with, please
45 * do the disable, re-program, enable sequence.
46 * This is *not* particularly important for level triggered
47 * but in a edge trigger case, we might be setting rte
48 * when an active trigger is comming in. This could
49 * cause some ioapics to mal-function.
50 * Being paranoid i guess!
51 */
Daniel Walker89d0cf02006-06-23 02:05:29 -070052 if (likely(!cpus_empty(tmp))) {
Bryan Holty501f2492006-03-25 03:07:37 -080053 if (likely(!(desc->status & IRQ_DISABLED)))
54 desc->handler->disable(irq);
55
Andrew Mortonc777ac52006-03-25 03:07:36 -080056 desc->handler->set_affinity(irq,tmp);
Bryan Holty501f2492006-03-25 03:07:37 -080057
58 if (likely(!(desc->status & IRQ_DISABLED)))
59 desc->handler->enable(irq);
Andrew Mortonc777ac52006-03-25 03:07:36 -080060 }
61 cpus_clear(pending_irq_cpumask[irq]);
62}