ACPI: thinkpad-acpi: preserve radio state across shutdown
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / xen / events.c
blobeb0dfdeaa9494ac3043f13db5cbd1bf0c0dd5751
1 /*
2 * Xen event channels
4 * Xen models interrupts with abstract event channels. Because each
5 * domain gets 1024 event channels, but NR_IRQ is not that large, we
6 * must dynamically map irqs<->event channels. The event channels
7 * interface with the rest of the kernel by defining a xen interrupt
8 * chip. When an event is recieved, it is mapped to an irq and sent
9 * through the normal interrupt processing path.
11 * There are four kinds of events which can be mapped to an event
12 * channel:
14 * 1. Inter-domain notifications. This includes all the virtual
15 * device events, since they're driven by front-ends in another domain
16 * (typically dom0).
17 * 2. VIRQs, typically used for timers. These are per-cpu events.
18 * 3. IPIs.
19 * 4. Hardware interrupts. Not supported at present.
21 * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007
24 #include <linux/linkage.h>
25 #include <linux/interrupt.h>
26 #include <linux/irq.h>
27 #include <linux/module.h>
28 #include <linux/string.h>
30 #include <asm/ptrace.h>
31 #include <asm/irq.h>
32 #include <asm/sync_bitops.h>
33 #include <asm/xen/hypercall.h>
34 #include <asm/xen/hypervisor.h>
36 #include <xen/xen-ops.h>
37 #include <xen/events.h>
38 #include <xen/interface/xen.h>
39 #include <xen/interface/event_channel.h>
42 * This lock protects updates to the following mapping and reference-count
43 * arrays. The lock does not need to be acquired to read the mapping tables.
45 static DEFINE_SPINLOCK(irq_mapping_update_lock);
47 /* IRQ <-> VIRQ mapping. */
48 static DEFINE_PER_CPU(int, virq_to_irq[NR_VIRQS]) = {[0 ... NR_VIRQS-1] = -1};
50 /* IRQ <-> IPI mapping */
51 static DEFINE_PER_CPU(int, ipi_to_irq[XEN_NR_IPIS]) = {[0 ... XEN_NR_IPIS-1] = -1};
53 /* Packed IRQ information: binding type, sub-type index, and event channel. */
54 struct packed_irq
56 unsigned short evtchn;
57 unsigned char index;
58 unsigned char type;
61 static struct packed_irq irq_info[NR_IRQS];
63 /* Binding types. */
64 enum {
65 IRQT_UNBOUND,
66 IRQT_PIRQ,
67 IRQT_VIRQ,
68 IRQT_IPI,
69 IRQT_EVTCHN
72 /* Convenient shorthand for packed representation of an unbound IRQ. */
73 #define IRQ_UNBOUND mk_irq_info(IRQT_UNBOUND, 0, 0)
75 static int evtchn_to_irq[NR_EVENT_CHANNELS] = {
76 [0 ... NR_EVENT_CHANNELS-1] = -1
78 static unsigned long cpu_evtchn_mask[NR_CPUS][NR_EVENT_CHANNELS/BITS_PER_LONG];
79 static u8 cpu_evtchn[NR_EVENT_CHANNELS];
81 /* Reference counts for bindings to IRQs. */
82 static int irq_bindcount[NR_IRQS];
84 /* Xen will never allocate port zero for any purpose. */
85 #define VALID_EVTCHN(chn) ((chn) != 0)
87 static struct irq_chip xen_dynamic_chip;
89 /* Constructor for packed IRQ information. */
90 static inline struct packed_irq mk_irq_info(u32 type, u32 index, u32 evtchn)
92 return (struct packed_irq) { evtchn, index, type };
96 * Accessors for packed IRQ information.
98 static inline unsigned int evtchn_from_irq(int irq)
100 return irq_info[irq].evtchn;
103 static inline unsigned int index_from_irq(int irq)
105 return irq_info[irq].index;
108 static inline unsigned int type_from_irq(int irq)
110 return irq_info[irq].type;
113 static inline unsigned long active_evtchns(unsigned int cpu,
114 struct shared_info *sh,
115 unsigned int idx)
117 return (sh->evtchn_pending[idx] &
118 cpu_evtchn_mask[cpu][idx] &
119 ~sh->evtchn_mask[idx]);
122 static void bind_evtchn_to_cpu(unsigned int chn, unsigned int cpu)
124 int irq = evtchn_to_irq[chn];
126 BUG_ON(irq == -1);
127 #ifdef CONFIG_SMP
128 irq_to_desc(irq)->affinity = cpumask_of_cpu(cpu);
129 #endif
131 __clear_bit(chn, cpu_evtchn_mask[cpu_evtchn[chn]]);
132 __set_bit(chn, cpu_evtchn_mask[cpu]);
134 cpu_evtchn[chn] = cpu;
137 static void init_evtchn_cpu_bindings(void)
139 #ifdef CONFIG_SMP
140 struct irq_desc *desc;
141 int i;
143 /* By default all event channels notify CPU#0. */
144 for_each_irq_desc(i, desc) {
145 desc->affinity = cpumask_of_cpu(0);
147 #endif
149 memset(cpu_evtchn, 0, sizeof(cpu_evtchn));
150 memset(cpu_evtchn_mask[0], ~0, sizeof(cpu_evtchn_mask[0]));
153 static inline unsigned int cpu_from_evtchn(unsigned int evtchn)
155 return cpu_evtchn[evtchn];
158 static inline void clear_evtchn(int port)
160 struct shared_info *s = HYPERVISOR_shared_info;
161 sync_clear_bit(port, &s->evtchn_pending[0]);
164 static inline void set_evtchn(int port)
166 struct shared_info *s = HYPERVISOR_shared_info;
167 sync_set_bit(port, &s->evtchn_pending[0]);
170 static inline int test_evtchn(int port)
172 struct shared_info *s = HYPERVISOR_shared_info;
173 return sync_test_bit(port, &s->evtchn_pending[0]);
178 * notify_remote_via_irq - send event to remote end of event channel via irq
179 * @irq: irq of event channel to send event to
181 * Unlike notify_remote_via_evtchn(), this is safe to use across
182 * save/restore. Notifications on a broken connection are silently
183 * dropped.
185 void notify_remote_via_irq(int irq)
187 int evtchn = evtchn_from_irq(irq);
189 if (VALID_EVTCHN(evtchn))
190 notify_remote_via_evtchn(evtchn);
192 EXPORT_SYMBOL_GPL(notify_remote_via_irq);
194 static void mask_evtchn(int port)
196 struct shared_info *s = HYPERVISOR_shared_info;
197 sync_set_bit(port, &s->evtchn_mask[0]);
200 static void unmask_evtchn(int port)
202 struct shared_info *s = HYPERVISOR_shared_info;
203 unsigned int cpu = get_cpu();
205 BUG_ON(!irqs_disabled());
207 /* Slow path (hypercall) if this is a non-local port. */
208 if (unlikely(cpu != cpu_from_evtchn(port))) {
209 struct evtchn_unmask unmask = { .port = port };
210 (void)HYPERVISOR_event_channel_op(EVTCHNOP_unmask, &unmask);
211 } else {
212 struct vcpu_info *vcpu_info = __get_cpu_var(xen_vcpu);
214 sync_clear_bit(port, &s->evtchn_mask[0]);
217 * The following is basically the equivalent of
218 * 'hw_resend_irq'. Just like a real IO-APIC we 'lose
219 * the interrupt edge' if the channel is masked.
221 if (sync_test_bit(port, &s->evtchn_pending[0]) &&
222 !sync_test_and_set_bit(port / BITS_PER_LONG,
223 &vcpu_info->evtchn_pending_sel))
224 vcpu_info->evtchn_upcall_pending = 1;
227 put_cpu();
230 static int find_unbound_irq(void)
232 int irq;
233 struct irq_desc *desc;
235 /* Only allocate from dynirq range */
236 for (irq = 0; irq < nr_irqs; irq++)
237 if (irq_bindcount[irq] == 0)
238 break;
240 if (irq == nr_irqs)
241 panic("No available IRQ to bind to: increase nr_irqs!\n");
243 desc = irq_to_desc_alloc_cpu(irq, 0);
244 if (WARN_ON(desc == NULL))
245 return -1;
247 return irq;
250 int bind_evtchn_to_irq(unsigned int evtchn)
252 int irq;
254 spin_lock(&irq_mapping_update_lock);
256 irq = evtchn_to_irq[evtchn];
258 if (irq == -1) {
259 irq = find_unbound_irq();
261 dynamic_irq_init(irq);
262 set_irq_chip_and_handler_name(irq, &xen_dynamic_chip,
263 handle_level_irq, "event");
265 evtchn_to_irq[evtchn] = irq;
266 irq_info[irq] = mk_irq_info(IRQT_EVTCHN, 0, evtchn);
269 irq_bindcount[irq]++;
271 spin_unlock(&irq_mapping_update_lock);
273 return irq;
275 EXPORT_SYMBOL_GPL(bind_evtchn_to_irq);
277 static int bind_ipi_to_irq(unsigned int ipi, unsigned int cpu)
279 struct evtchn_bind_ipi bind_ipi;
280 int evtchn, irq;
282 spin_lock(&irq_mapping_update_lock);
284 irq = per_cpu(ipi_to_irq, cpu)[ipi];
285 if (irq == -1) {
286 irq = find_unbound_irq();
287 if (irq < 0)
288 goto out;
290 dynamic_irq_init(irq);
291 set_irq_chip_and_handler_name(irq, &xen_dynamic_chip,
292 handle_level_irq, "ipi");
294 bind_ipi.vcpu = cpu;
295 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi,
296 &bind_ipi) != 0)
297 BUG();
298 evtchn = bind_ipi.port;
300 evtchn_to_irq[evtchn] = irq;
301 irq_info[irq] = mk_irq_info(IRQT_IPI, ipi, evtchn);
303 per_cpu(ipi_to_irq, cpu)[ipi] = irq;
305 bind_evtchn_to_cpu(evtchn, cpu);
308 irq_bindcount[irq]++;
310 out:
311 spin_unlock(&irq_mapping_update_lock);
312 return irq;
316 static int bind_virq_to_irq(unsigned int virq, unsigned int cpu)
318 struct evtchn_bind_virq bind_virq;
319 int evtchn, irq;
321 spin_lock(&irq_mapping_update_lock);
323 irq = per_cpu(virq_to_irq, cpu)[virq];
325 if (irq == -1) {
326 bind_virq.virq = virq;
327 bind_virq.vcpu = cpu;
328 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
329 &bind_virq) != 0)
330 BUG();
331 evtchn = bind_virq.port;
333 irq = find_unbound_irq();
335 dynamic_irq_init(irq);
336 set_irq_chip_and_handler_name(irq, &xen_dynamic_chip,
337 handle_level_irq, "virq");
339 evtchn_to_irq[evtchn] = irq;
340 irq_info[irq] = mk_irq_info(IRQT_VIRQ, virq, evtchn);
342 per_cpu(virq_to_irq, cpu)[virq] = irq;
344 bind_evtchn_to_cpu(evtchn, cpu);
347 irq_bindcount[irq]++;
349 spin_unlock(&irq_mapping_update_lock);
351 return irq;
354 static void unbind_from_irq(unsigned int irq)
356 struct evtchn_close close;
357 int evtchn = evtchn_from_irq(irq);
359 spin_lock(&irq_mapping_update_lock);
361 if ((--irq_bindcount[irq] == 0) && VALID_EVTCHN(evtchn)) {
362 close.port = evtchn;
363 if (HYPERVISOR_event_channel_op(EVTCHNOP_close, &close) != 0)
364 BUG();
366 switch (type_from_irq(irq)) {
367 case IRQT_VIRQ:
368 per_cpu(virq_to_irq, cpu_from_evtchn(evtchn))
369 [index_from_irq(irq)] = -1;
370 break;
371 case IRQT_IPI:
372 per_cpu(ipi_to_irq, cpu_from_evtchn(evtchn))
373 [index_from_irq(irq)] = -1;
374 break;
375 default:
376 break;
379 /* Closed ports are implicitly re-bound to VCPU0. */
380 bind_evtchn_to_cpu(evtchn, 0);
382 evtchn_to_irq[evtchn] = -1;
383 irq_info[irq] = IRQ_UNBOUND;
385 dynamic_irq_cleanup(irq);
388 spin_unlock(&irq_mapping_update_lock);
391 int bind_evtchn_to_irqhandler(unsigned int evtchn,
392 irq_handler_t handler,
393 unsigned long irqflags,
394 const char *devname, void *dev_id)
396 unsigned int irq;
397 int retval;
399 irq = bind_evtchn_to_irq(evtchn);
400 retval = request_irq(irq, handler, irqflags, devname, dev_id);
401 if (retval != 0) {
402 unbind_from_irq(irq);
403 return retval;
406 return irq;
408 EXPORT_SYMBOL_GPL(bind_evtchn_to_irqhandler);
410 int bind_virq_to_irqhandler(unsigned int virq, unsigned int cpu,
411 irq_handler_t handler,
412 unsigned long irqflags, const char *devname, void *dev_id)
414 unsigned int irq;
415 int retval;
417 irq = bind_virq_to_irq(virq, cpu);
418 retval = request_irq(irq, handler, irqflags, devname, dev_id);
419 if (retval != 0) {
420 unbind_from_irq(irq);
421 return retval;
424 return irq;
426 EXPORT_SYMBOL_GPL(bind_virq_to_irqhandler);
428 int bind_ipi_to_irqhandler(enum ipi_vector ipi,
429 unsigned int cpu,
430 irq_handler_t handler,
431 unsigned long irqflags,
432 const char *devname,
433 void *dev_id)
435 int irq, retval;
437 irq = bind_ipi_to_irq(ipi, cpu);
438 if (irq < 0)
439 return irq;
441 retval = request_irq(irq, handler, irqflags, devname, dev_id);
442 if (retval != 0) {
443 unbind_from_irq(irq);
444 return retval;
447 return irq;
450 void unbind_from_irqhandler(unsigned int irq, void *dev_id)
452 free_irq(irq, dev_id);
453 unbind_from_irq(irq);
455 EXPORT_SYMBOL_GPL(unbind_from_irqhandler);
457 void xen_send_IPI_one(unsigned int cpu, enum ipi_vector vector)
459 int irq = per_cpu(ipi_to_irq, cpu)[vector];
460 BUG_ON(irq < 0);
461 notify_remote_via_irq(irq);
464 irqreturn_t xen_debug_interrupt(int irq, void *dev_id)
466 struct shared_info *sh = HYPERVISOR_shared_info;
467 int cpu = smp_processor_id();
468 int i;
469 unsigned long flags;
470 static DEFINE_SPINLOCK(debug_lock);
472 spin_lock_irqsave(&debug_lock, flags);
474 printk("vcpu %d\n ", cpu);
476 for_each_online_cpu(i) {
477 struct vcpu_info *v = per_cpu(xen_vcpu, i);
478 printk("%d: masked=%d pending=%d event_sel %08lx\n ", i,
479 (get_irq_regs() && i == cpu) ? xen_irqs_disabled(get_irq_regs()) : v->evtchn_upcall_mask,
480 v->evtchn_upcall_pending,
481 v->evtchn_pending_sel);
483 printk("pending:\n ");
484 for(i = ARRAY_SIZE(sh->evtchn_pending)-1; i >= 0; i--)
485 printk("%08lx%s", sh->evtchn_pending[i],
486 i % 8 == 0 ? "\n " : " ");
487 printk("\nmasks:\n ");
488 for(i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--)
489 printk("%08lx%s", sh->evtchn_mask[i],
490 i % 8 == 0 ? "\n " : " ");
492 printk("\nunmasked:\n ");
493 for(i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--)
494 printk("%08lx%s", sh->evtchn_pending[i] & ~sh->evtchn_mask[i],
495 i % 8 == 0 ? "\n " : " ");
497 printk("\npending list:\n");
498 for(i = 0; i < NR_EVENT_CHANNELS; i++) {
499 if (sync_test_bit(i, sh->evtchn_pending)) {
500 printk(" %d: event %d -> irq %d\n",
501 cpu_evtchn[i], i,
502 evtchn_to_irq[i]);
506 spin_unlock_irqrestore(&debug_lock, flags);
508 return IRQ_HANDLED;
513 * Search the CPUs pending events bitmasks. For each one found, map
514 * the event number to an irq, and feed it into do_IRQ() for
515 * handling.
517 * Xen uses a two-level bitmap to speed searching. The first level is
518 * a bitset of words which contain pending event bits. The second
519 * level is a bitset of pending events themselves.
521 void xen_evtchn_do_upcall(struct pt_regs *regs)
523 int cpu = get_cpu();
524 struct shared_info *s = HYPERVISOR_shared_info;
525 struct vcpu_info *vcpu_info = __get_cpu_var(xen_vcpu);
526 static DEFINE_PER_CPU(unsigned, nesting_count);
527 unsigned count;
529 do {
530 unsigned long pending_words;
532 vcpu_info->evtchn_upcall_pending = 0;
534 if (__get_cpu_var(nesting_count)++)
535 goto out;
537 #ifndef CONFIG_X86 /* No need for a barrier -- XCHG is a barrier on x86. */
538 /* Clear master flag /before/ clearing selector flag. */
539 wmb();
540 #endif
541 pending_words = xchg(&vcpu_info->evtchn_pending_sel, 0);
542 while (pending_words != 0) {
543 unsigned long pending_bits;
544 int word_idx = __ffs(pending_words);
545 pending_words &= ~(1UL << word_idx);
547 while ((pending_bits = active_evtchns(cpu, s, word_idx)) != 0) {
548 int bit_idx = __ffs(pending_bits);
549 int port = (word_idx * BITS_PER_LONG) + bit_idx;
550 int irq = evtchn_to_irq[port];
552 if (irq != -1)
553 xen_do_IRQ(irq, regs);
557 BUG_ON(!irqs_disabled());
559 count = __get_cpu_var(nesting_count);
560 __get_cpu_var(nesting_count) = 0;
561 } while(count != 1);
563 out:
564 put_cpu();
567 /* Rebind a new event channel to an existing irq. */
568 void rebind_evtchn_irq(int evtchn, int irq)
570 /* Make sure the irq is masked, since the new event channel
571 will also be masked. */
572 disable_irq(irq);
574 spin_lock(&irq_mapping_update_lock);
576 /* After resume the irq<->evtchn mappings are all cleared out */
577 BUG_ON(evtchn_to_irq[evtchn] != -1);
578 /* Expect irq to have been bound before,
579 so the bindcount should be non-0 */
580 BUG_ON(irq_bindcount[irq] == 0);
582 evtchn_to_irq[evtchn] = irq;
583 irq_info[irq] = mk_irq_info(IRQT_EVTCHN, 0, evtchn);
585 spin_unlock(&irq_mapping_update_lock);
587 /* new event channels are always bound to cpu 0 */
588 irq_set_affinity(irq, cpumask_of(0));
590 /* Unmask the event channel. */
591 enable_irq(irq);
594 /* Rebind an evtchn so that it gets delivered to a specific cpu */
595 static void rebind_irq_to_cpu(unsigned irq, unsigned tcpu)
597 struct evtchn_bind_vcpu bind_vcpu;
598 int evtchn = evtchn_from_irq(irq);
600 if (!VALID_EVTCHN(evtchn))
601 return;
603 /* Send future instances of this interrupt to other vcpu. */
604 bind_vcpu.port = evtchn;
605 bind_vcpu.vcpu = tcpu;
608 * If this fails, it usually just indicates that we're dealing with a
609 * virq or IPI channel, which don't actually need to be rebound. Ignore
610 * it, but don't do the xenlinux-level rebind in that case.
612 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_vcpu, &bind_vcpu) >= 0)
613 bind_evtchn_to_cpu(evtchn, tcpu);
617 static void set_affinity_irq(unsigned irq, const struct cpumask *dest)
619 unsigned tcpu = cpumask_first(dest);
620 rebind_irq_to_cpu(irq, tcpu);
623 int resend_irq_on_evtchn(unsigned int irq)
625 int masked, evtchn = evtchn_from_irq(irq);
626 struct shared_info *s = HYPERVISOR_shared_info;
628 if (!VALID_EVTCHN(evtchn))
629 return 1;
631 masked = sync_test_and_set_bit(evtchn, s->evtchn_mask);
632 sync_set_bit(evtchn, s->evtchn_pending);
633 if (!masked)
634 unmask_evtchn(evtchn);
636 return 1;
639 static void enable_dynirq(unsigned int irq)
641 int evtchn = evtchn_from_irq(irq);
643 if (VALID_EVTCHN(evtchn))
644 unmask_evtchn(evtchn);
647 static void disable_dynirq(unsigned int irq)
649 int evtchn = evtchn_from_irq(irq);
651 if (VALID_EVTCHN(evtchn))
652 mask_evtchn(evtchn);
655 static void ack_dynirq(unsigned int irq)
657 int evtchn = evtchn_from_irq(irq);
659 move_native_irq(irq);
661 if (VALID_EVTCHN(evtchn))
662 clear_evtchn(evtchn);
665 static int retrigger_dynirq(unsigned int irq)
667 int evtchn = evtchn_from_irq(irq);
668 struct shared_info *sh = HYPERVISOR_shared_info;
669 int ret = 0;
671 if (VALID_EVTCHN(evtchn)) {
672 int masked;
674 masked = sync_test_and_set_bit(evtchn, sh->evtchn_mask);
675 sync_set_bit(evtchn, sh->evtchn_pending);
676 if (!masked)
677 unmask_evtchn(evtchn);
678 ret = 1;
681 return ret;
684 static void restore_cpu_virqs(unsigned int cpu)
686 struct evtchn_bind_virq bind_virq;
687 int virq, irq, evtchn;
689 for (virq = 0; virq < NR_VIRQS; virq++) {
690 if ((irq = per_cpu(virq_to_irq, cpu)[virq]) == -1)
691 continue;
693 BUG_ON(irq_info[irq].type != IRQT_VIRQ);
694 BUG_ON(irq_info[irq].index != virq);
696 /* Get a new binding from Xen. */
697 bind_virq.virq = virq;
698 bind_virq.vcpu = cpu;
699 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
700 &bind_virq) != 0)
701 BUG();
702 evtchn = bind_virq.port;
704 /* Record the new mapping. */
705 evtchn_to_irq[evtchn] = irq;
706 irq_info[irq] = mk_irq_info(IRQT_VIRQ, virq, evtchn);
707 bind_evtchn_to_cpu(evtchn, cpu);
709 /* Ready for use. */
710 unmask_evtchn(evtchn);
714 static void restore_cpu_ipis(unsigned int cpu)
716 struct evtchn_bind_ipi bind_ipi;
717 int ipi, irq, evtchn;
719 for (ipi = 0; ipi < XEN_NR_IPIS; ipi++) {
720 if ((irq = per_cpu(ipi_to_irq, cpu)[ipi]) == -1)
721 continue;
723 BUG_ON(irq_info[irq].type != IRQT_IPI);
724 BUG_ON(irq_info[irq].index != ipi);
726 /* Get a new binding from Xen. */
727 bind_ipi.vcpu = cpu;
728 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi,
729 &bind_ipi) != 0)
730 BUG();
731 evtchn = bind_ipi.port;
733 /* Record the new mapping. */
734 evtchn_to_irq[evtchn] = irq;
735 irq_info[irq] = mk_irq_info(IRQT_IPI, ipi, evtchn);
736 bind_evtchn_to_cpu(evtchn, cpu);
738 /* Ready for use. */
739 unmask_evtchn(evtchn);
744 /* Clear an irq's pending state, in preparation for polling on it */
745 void xen_clear_irq_pending(int irq)
747 int evtchn = evtchn_from_irq(irq);
749 if (VALID_EVTCHN(evtchn))
750 clear_evtchn(evtchn);
753 void xen_set_irq_pending(int irq)
755 int evtchn = evtchn_from_irq(irq);
757 if (VALID_EVTCHN(evtchn))
758 set_evtchn(evtchn);
761 bool xen_test_irq_pending(int irq)
763 int evtchn = evtchn_from_irq(irq);
764 bool ret = false;
766 if (VALID_EVTCHN(evtchn))
767 ret = test_evtchn(evtchn);
769 return ret;
772 /* Poll waiting for an irq to become pending. In the usual case, the
773 irq will be disabled so it won't deliver an interrupt. */
774 void xen_poll_irq(int irq)
776 evtchn_port_t evtchn = evtchn_from_irq(irq);
778 if (VALID_EVTCHN(evtchn)) {
779 struct sched_poll poll;
781 poll.nr_ports = 1;
782 poll.timeout = 0;
783 set_xen_guest_handle(poll.ports, &evtchn);
785 if (HYPERVISOR_sched_op(SCHEDOP_poll, &poll) != 0)
786 BUG();
790 void xen_irq_resume(void)
792 unsigned int cpu, irq, evtchn;
794 init_evtchn_cpu_bindings();
796 /* New event-channel space is not 'live' yet. */
797 for (evtchn = 0; evtchn < NR_EVENT_CHANNELS; evtchn++)
798 mask_evtchn(evtchn);
800 /* No IRQ <-> event-channel mappings. */
801 for (irq = 0; irq < nr_irqs; irq++)
802 irq_info[irq].evtchn = 0; /* zap event-channel binding */
804 for (evtchn = 0; evtchn < NR_EVENT_CHANNELS; evtchn++)
805 evtchn_to_irq[evtchn] = -1;
807 for_each_possible_cpu(cpu) {
808 restore_cpu_virqs(cpu);
809 restore_cpu_ipis(cpu);
813 static struct irq_chip xen_dynamic_chip __read_mostly = {
814 .name = "xen-dyn",
815 .mask = disable_dynirq,
816 .unmask = enable_dynirq,
817 .ack = ack_dynirq,
818 .set_affinity = set_affinity_irq,
819 .retrigger = retrigger_dynirq,
822 void __init xen_init_IRQ(void)
824 int i;
826 init_evtchn_cpu_bindings();
828 /* No event channels are 'live' right now. */
829 for (i = 0; i < NR_EVENT_CHANNELS; i++)
830 mask_evtchn(i);
832 /* Dynamic IRQ space is currently unbound. Zero the refcnts. */
833 for (i = 0; i < nr_irqs; i++)
834 irq_bindcount[i] = 0;
836 irq_ctx_init(smp_processor_id());