Merge branches 'sony-laptop', 'bugzilla-14247' and 'bugzilla-14271' into release
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / xen / events.c
blob2f57276e87a2f65cd8c468529484e3ca21f88c8b
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>
29 #include <linux/bootmem.h>
31 #include <asm/ptrace.h>
32 #include <asm/irq.h>
33 #include <asm/idle.h>
34 #include <asm/sync_bitops.h>
35 #include <asm/xen/hypercall.h>
36 #include <asm/xen/hypervisor.h>
38 #include <xen/xen-ops.h>
39 #include <xen/events.h>
40 #include <xen/interface/xen.h>
41 #include <xen/interface/event_channel.h>
44 * This lock protects updates to the following mapping and reference-count
45 * arrays. The lock does not need to be acquired to read the mapping tables.
47 static DEFINE_SPINLOCK(irq_mapping_update_lock);
49 /* IRQ <-> VIRQ mapping. */
50 static DEFINE_PER_CPU(int [NR_VIRQS], virq_to_irq) = {[0 ... NR_VIRQS-1] = -1};
52 /* IRQ <-> IPI mapping */
53 static DEFINE_PER_CPU(int [XEN_NR_IPIS], ipi_to_irq) = {[0 ... XEN_NR_IPIS-1] = -1};
55 /* Interrupt types. */
56 enum xen_irq_type {
57 IRQT_UNBOUND = 0,
58 IRQT_PIRQ,
59 IRQT_VIRQ,
60 IRQT_IPI,
61 IRQT_EVTCHN
65 * Packed IRQ information:
66 * type - enum xen_irq_type
67 * event channel - irq->event channel mapping
68 * cpu - cpu this event channel is bound to
69 * index - type-specific information:
70 * PIRQ - vector, with MSB being "needs EIO"
71 * VIRQ - virq number
72 * IPI - IPI vector
73 * EVTCHN -
75 struct irq_info
77 enum xen_irq_type type; /* type */
78 unsigned short evtchn; /* event channel */
79 unsigned short cpu; /* cpu bound */
81 union {
82 unsigned short virq;
83 enum ipi_vector ipi;
84 struct {
85 unsigned short gsi;
86 unsigned short vector;
87 } pirq;
88 } u;
91 static struct irq_info irq_info[NR_IRQS];
93 static int evtchn_to_irq[NR_EVENT_CHANNELS] = {
94 [0 ... NR_EVENT_CHANNELS-1] = -1
96 struct cpu_evtchn_s {
97 unsigned long bits[NR_EVENT_CHANNELS/BITS_PER_LONG];
99 static struct cpu_evtchn_s *cpu_evtchn_mask_p;
100 static inline unsigned long *cpu_evtchn_mask(int cpu)
102 return cpu_evtchn_mask_p[cpu].bits;
105 /* Xen will never allocate port zero for any purpose. */
106 #define VALID_EVTCHN(chn) ((chn) != 0)
108 static struct irq_chip xen_dynamic_chip;
110 /* Constructor for packed IRQ information. */
111 static struct irq_info mk_unbound_info(void)
113 return (struct irq_info) { .type = IRQT_UNBOUND };
116 static struct irq_info mk_evtchn_info(unsigned short evtchn)
118 return (struct irq_info) { .type = IRQT_EVTCHN, .evtchn = evtchn,
119 .cpu = 0 };
122 static struct irq_info mk_ipi_info(unsigned short evtchn, enum ipi_vector ipi)
124 return (struct irq_info) { .type = IRQT_IPI, .evtchn = evtchn,
125 .cpu = 0, .u.ipi = ipi };
128 static struct irq_info mk_virq_info(unsigned short evtchn, unsigned short virq)
130 return (struct irq_info) { .type = IRQT_VIRQ, .evtchn = evtchn,
131 .cpu = 0, .u.virq = virq };
134 static struct irq_info mk_pirq_info(unsigned short evtchn,
135 unsigned short gsi, unsigned short vector)
137 return (struct irq_info) { .type = IRQT_PIRQ, .evtchn = evtchn,
138 .cpu = 0, .u.pirq = { .gsi = gsi, .vector = vector } };
142 * Accessors for packed IRQ information.
144 static struct irq_info *info_for_irq(unsigned irq)
146 return &irq_info[irq];
149 static unsigned int evtchn_from_irq(unsigned irq)
151 return info_for_irq(irq)->evtchn;
154 unsigned irq_from_evtchn(unsigned int evtchn)
156 return evtchn_to_irq[evtchn];
158 EXPORT_SYMBOL_GPL(irq_from_evtchn);
160 static enum ipi_vector ipi_from_irq(unsigned irq)
162 struct irq_info *info = info_for_irq(irq);
164 BUG_ON(info == NULL);
165 BUG_ON(info->type != IRQT_IPI);
167 return info->u.ipi;
170 static unsigned virq_from_irq(unsigned irq)
172 struct irq_info *info = info_for_irq(irq);
174 BUG_ON(info == NULL);
175 BUG_ON(info->type != IRQT_VIRQ);
177 return info->u.virq;
180 static unsigned gsi_from_irq(unsigned irq)
182 struct irq_info *info = info_for_irq(irq);
184 BUG_ON(info == NULL);
185 BUG_ON(info->type != IRQT_PIRQ);
187 return info->u.pirq.gsi;
190 static unsigned vector_from_irq(unsigned irq)
192 struct irq_info *info = info_for_irq(irq);
194 BUG_ON(info == NULL);
195 BUG_ON(info->type != IRQT_PIRQ);
197 return info->u.pirq.vector;
200 static enum xen_irq_type type_from_irq(unsigned irq)
202 return info_for_irq(irq)->type;
205 static unsigned cpu_from_irq(unsigned irq)
207 return info_for_irq(irq)->cpu;
210 static unsigned int cpu_from_evtchn(unsigned int evtchn)
212 int irq = evtchn_to_irq[evtchn];
213 unsigned ret = 0;
215 if (irq != -1)
216 ret = cpu_from_irq(irq);
218 return ret;
221 static inline unsigned long active_evtchns(unsigned int cpu,
222 struct shared_info *sh,
223 unsigned int idx)
225 return (sh->evtchn_pending[idx] &
226 cpu_evtchn_mask(cpu)[idx] &
227 ~sh->evtchn_mask[idx]);
230 static void bind_evtchn_to_cpu(unsigned int chn, unsigned int cpu)
232 int irq = evtchn_to_irq[chn];
234 BUG_ON(irq == -1);
235 #ifdef CONFIG_SMP
236 cpumask_copy(irq_to_desc(irq)->affinity, cpumask_of(cpu));
237 #endif
239 __clear_bit(chn, cpu_evtchn_mask(cpu_from_irq(irq)));
240 __set_bit(chn, cpu_evtchn_mask(cpu));
242 irq_info[irq].cpu = cpu;
245 static void init_evtchn_cpu_bindings(void)
247 #ifdef CONFIG_SMP
248 struct irq_desc *desc;
249 int i;
251 /* By default all event channels notify CPU#0. */
252 for_each_irq_desc(i, desc) {
253 cpumask_copy(desc->affinity, cpumask_of(0));
255 #endif
257 memset(cpu_evtchn_mask(0), ~0, sizeof(cpu_evtchn_mask(0)));
260 static inline void clear_evtchn(int port)
262 struct shared_info *s = HYPERVISOR_shared_info;
263 sync_clear_bit(port, &s->evtchn_pending[0]);
266 static inline void set_evtchn(int port)
268 struct shared_info *s = HYPERVISOR_shared_info;
269 sync_set_bit(port, &s->evtchn_pending[0]);
272 static inline int test_evtchn(int port)
274 struct shared_info *s = HYPERVISOR_shared_info;
275 return sync_test_bit(port, &s->evtchn_pending[0]);
280 * notify_remote_via_irq - send event to remote end of event channel via irq
281 * @irq: irq of event channel to send event to
283 * Unlike notify_remote_via_evtchn(), this is safe to use across
284 * save/restore. Notifications on a broken connection are silently
285 * dropped.
287 void notify_remote_via_irq(int irq)
289 int evtchn = evtchn_from_irq(irq);
291 if (VALID_EVTCHN(evtchn))
292 notify_remote_via_evtchn(evtchn);
294 EXPORT_SYMBOL_GPL(notify_remote_via_irq);
296 static void mask_evtchn(int port)
298 struct shared_info *s = HYPERVISOR_shared_info;
299 sync_set_bit(port, &s->evtchn_mask[0]);
302 static void unmask_evtchn(int port)
304 struct shared_info *s = HYPERVISOR_shared_info;
305 unsigned int cpu = get_cpu();
307 BUG_ON(!irqs_disabled());
309 /* Slow path (hypercall) if this is a non-local port. */
310 if (unlikely(cpu != cpu_from_evtchn(port))) {
311 struct evtchn_unmask unmask = { .port = port };
312 (void)HYPERVISOR_event_channel_op(EVTCHNOP_unmask, &unmask);
313 } else {
314 struct vcpu_info *vcpu_info = __get_cpu_var(xen_vcpu);
316 sync_clear_bit(port, &s->evtchn_mask[0]);
319 * The following is basically the equivalent of
320 * 'hw_resend_irq'. Just like a real IO-APIC we 'lose
321 * the interrupt edge' if the channel is masked.
323 if (sync_test_bit(port, &s->evtchn_pending[0]) &&
324 !sync_test_and_set_bit(port / BITS_PER_LONG,
325 &vcpu_info->evtchn_pending_sel))
326 vcpu_info->evtchn_upcall_pending = 1;
329 put_cpu();
332 static int find_unbound_irq(void)
334 int irq;
335 struct irq_desc *desc;
337 for (irq = 0; irq < nr_irqs; irq++)
338 if (irq_info[irq].type == IRQT_UNBOUND)
339 break;
341 if (irq == nr_irqs)
342 panic("No available IRQ to bind to: increase nr_irqs!\n");
344 desc = irq_to_desc_alloc_node(irq, 0);
345 if (WARN_ON(desc == NULL))
346 return -1;
348 dynamic_irq_init(irq);
350 return irq;
353 int bind_evtchn_to_irq(unsigned int evtchn)
355 int irq;
357 spin_lock(&irq_mapping_update_lock);
359 irq = evtchn_to_irq[evtchn];
361 if (irq == -1) {
362 irq = find_unbound_irq();
364 set_irq_chip_and_handler_name(irq, &xen_dynamic_chip,
365 handle_level_irq, "event");
367 evtchn_to_irq[evtchn] = irq;
368 irq_info[irq] = mk_evtchn_info(evtchn);
371 spin_unlock(&irq_mapping_update_lock);
373 return irq;
375 EXPORT_SYMBOL_GPL(bind_evtchn_to_irq);
377 static int bind_ipi_to_irq(unsigned int ipi, unsigned int cpu)
379 struct evtchn_bind_ipi bind_ipi;
380 int evtchn, irq;
382 spin_lock(&irq_mapping_update_lock);
384 irq = per_cpu(ipi_to_irq, cpu)[ipi];
386 if (irq == -1) {
387 irq = find_unbound_irq();
388 if (irq < 0)
389 goto out;
391 set_irq_chip_and_handler_name(irq, &xen_dynamic_chip,
392 handle_level_irq, "ipi");
394 bind_ipi.vcpu = cpu;
395 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi,
396 &bind_ipi) != 0)
397 BUG();
398 evtchn = bind_ipi.port;
400 evtchn_to_irq[evtchn] = irq;
401 irq_info[irq] = mk_ipi_info(evtchn, ipi);
402 per_cpu(ipi_to_irq, cpu)[ipi] = irq;
404 bind_evtchn_to_cpu(evtchn, cpu);
407 out:
408 spin_unlock(&irq_mapping_update_lock);
409 return irq;
413 static int bind_virq_to_irq(unsigned int virq, unsigned int cpu)
415 struct evtchn_bind_virq bind_virq;
416 int evtchn, irq;
418 spin_lock(&irq_mapping_update_lock);
420 irq = per_cpu(virq_to_irq, cpu)[virq];
422 if (irq == -1) {
423 bind_virq.virq = virq;
424 bind_virq.vcpu = cpu;
425 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
426 &bind_virq) != 0)
427 BUG();
428 evtchn = bind_virq.port;
430 irq = find_unbound_irq();
432 set_irq_chip_and_handler_name(irq, &xen_dynamic_chip,
433 handle_level_irq, "virq");
435 evtchn_to_irq[evtchn] = irq;
436 irq_info[irq] = mk_virq_info(evtchn, virq);
438 per_cpu(virq_to_irq, cpu)[virq] = irq;
440 bind_evtchn_to_cpu(evtchn, cpu);
443 spin_unlock(&irq_mapping_update_lock);
445 return irq;
448 static void unbind_from_irq(unsigned int irq)
450 struct evtchn_close close;
451 int evtchn = evtchn_from_irq(irq);
453 spin_lock(&irq_mapping_update_lock);
455 if (VALID_EVTCHN(evtchn)) {
456 close.port = evtchn;
457 if (HYPERVISOR_event_channel_op(EVTCHNOP_close, &close) != 0)
458 BUG();
460 switch (type_from_irq(irq)) {
461 case IRQT_VIRQ:
462 per_cpu(virq_to_irq, cpu_from_evtchn(evtchn))
463 [virq_from_irq(irq)] = -1;
464 break;
465 case IRQT_IPI:
466 per_cpu(ipi_to_irq, cpu_from_evtchn(evtchn))
467 [ipi_from_irq(irq)] = -1;
468 break;
469 default:
470 break;
473 /* Closed ports are implicitly re-bound to VCPU0. */
474 bind_evtchn_to_cpu(evtchn, 0);
476 evtchn_to_irq[evtchn] = -1;
477 irq_info[irq] = mk_unbound_info();
479 dynamic_irq_cleanup(irq);
482 spin_unlock(&irq_mapping_update_lock);
485 int bind_evtchn_to_irqhandler(unsigned int evtchn,
486 irq_handler_t handler,
487 unsigned long irqflags,
488 const char *devname, void *dev_id)
490 unsigned int irq;
491 int retval;
493 irq = bind_evtchn_to_irq(evtchn);
494 retval = request_irq(irq, handler, irqflags, devname, dev_id);
495 if (retval != 0) {
496 unbind_from_irq(irq);
497 return retval;
500 return irq;
502 EXPORT_SYMBOL_GPL(bind_evtchn_to_irqhandler);
504 int bind_virq_to_irqhandler(unsigned int virq, unsigned int cpu,
505 irq_handler_t handler,
506 unsigned long irqflags, const char *devname, void *dev_id)
508 unsigned int irq;
509 int retval;
511 irq = bind_virq_to_irq(virq, cpu);
512 retval = request_irq(irq, handler, irqflags, devname, dev_id);
513 if (retval != 0) {
514 unbind_from_irq(irq);
515 return retval;
518 return irq;
520 EXPORT_SYMBOL_GPL(bind_virq_to_irqhandler);
522 int bind_ipi_to_irqhandler(enum ipi_vector ipi,
523 unsigned int cpu,
524 irq_handler_t handler,
525 unsigned long irqflags,
526 const char *devname,
527 void *dev_id)
529 int irq, retval;
531 irq = bind_ipi_to_irq(ipi, cpu);
532 if (irq < 0)
533 return irq;
535 retval = request_irq(irq, handler, irqflags, devname, dev_id);
536 if (retval != 0) {
537 unbind_from_irq(irq);
538 return retval;
541 return irq;
544 void unbind_from_irqhandler(unsigned int irq, void *dev_id)
546 free_irq(irq, dev_id);
547 unbind_from_irq(irq);
549 EXPORT_SYMBOL_GPL(unbind_from_irqhandler);
551 void xen_send_IPI_one(unsigned int cpu, enum ipi_vector vector)
553 int irq = per_cpu(ipi_to_irq, cpu)[vector];
554 BUG_ON(irq < 0);
555 notify_remote_via_irq(irq);
558 irqreturn_t xen_debug_interrupt(int irq, void *dev_id)
560 struct shared_info *sh = HYPERVISOR_shared_info;
561 int cpu = smp_processor_id();
562 int i;
563 unsigned long flags;
564 static DEFINE_SPINLOCK(debug_lock);
566 spin_lock_irqsave(&debug_lock, flags);
568 printk("vcpu %d\n ", cpu);
570 for_each_online_cpu(i) {
571 struct vcpu_info *v = per_cpu(xen_vcpu, i);
572 printk("%d: masked=%d pending=%d event_sel %08lx\n ", i,
573 (get_irq_regs() && i == cpu) ? xen_irqs_disabled(get_irq_regs()) : v->evtchn_upcall_mask,
574 v->evtchn_upcall_pending,
575 v->evtchn_pending_sel);
577 printk("pending:\n ");
578 for(i = ARRAY_SIZE(sh->evtchn_pending)-1; i >= 0; i--)
579 printk("%08lx%s", sh->evtchn_pending[i],
580 i % 8 == 0 ? "\n " : " ");
581 printk("\nmasks:\n ");
582 for(i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--)
583 printk("%08lx%s", sh->evtchn_mask[i],
584 i % 8 == 0 ? "\n " : " ");
586 printk("\nunmasked:\n ");
587 for(i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--)
588 printk("%08lx%s", sh->evtchn_pending[i] & ~sh->evtchn_mask[i],
589 i % 8 == 0 ? "\n " : " ");
591 printk("\npending list:\n");
592 for(i = 0; i < NR_EVENT_CHANNELS; i++) {
593 if (sync_test_bit(i, sh->evtchn_pending)) {
594 printk(" %d: event %d -> irq %d\n",
595 cpu_from_evtchn(i), i,
596 evtchn_to_irq[i]);
600 spin_unlock_irqrestore(&debug_lock, flags);
602 return IRQ_HANDLED;
605 static DEFINE_PER_CPU(unsigned, xed_nesting_count);
608 * Search the CPUs pending events bitmasks. For each one found, map
609 * the event number to an irq, and feed it into do_IRQ() for
610 * handling.
612 * Xen uses a two-level bitmap to speed searching. The first level is
613 * a bitset of words which contain pending event bits. The second
614 * level is a bitset of pending events themselves.
616 void xen_evtchn_do_upcall(struct pt_regs *regs)
618 int cpu = get_cpu();
619 struct pt_regs *old_regs = set_irq_regs(regs);
620 struct shared_info *s = HYPERVISOR_shared_info;
621 struct vcpu_info *vcpu_info = __get_cpu_var(xen_vcpu);
622 unsigned count;
624 exit_idle();
625 irq_enter();
627 do {
628 unsigned long pending_words;
630 vcpu_info->evtchn_upcall_pending = 0;
632 if (__get_cpu_var(xed_nesting_count)++)
633 goto out;
635 #ifndef CONFIG_X86 /* No need for a barrier -- XCHG is a barrier on x86. */
636 /* Clear master flag /before/ clearing selector flag. */
637 wmb();
638 #endif
639 pending_words = xchg(&vcpu_info->evtchn_pending_sel, 0);
640 while (pending_words != 0) {
641 unsigned long pending_bits;
642 int word_idx = __ffs(pending_words);
643 pending_words &= ~(1UL << word_idx);
645 while ((pending_bits = active_evtchns(cpu, s, word_idx)) != 0) {
646 int bit_idx = __ffs(pending_bits);
647 int port = (word_idx * BITS_PER_LONG) + bit_idx;
648 int irq = evtchn_to_irq[port];
650 if (irq != -1)
651 handle_irq(irq, regs);
655 BUG_ON(!irqs_disabled());
657 count = __get_cpu_var(xed_nesting_count);
658 __get_cpu_var(xed_nesting_count) = 0;
659 } while(count != 1);
661 out:
662 irq_exit();
663 set_irq_regs(old_regs);
665 put_cpu();
668 /* Rebind a new event channel to an existing irq. */
669 void rebind_evtchn_irq(int evtchn, int irq)
671 struct irq_info *info = info_for_irq(irq);
673 /* Make sure the irq is masked, since the new event channel
674 will also be masked. */
675 disable_irq(irq);
677 spin_lock(&irq_mapping_update_lock);
679 /* After resume the irq<->evtchn mappings are all cleared out */
680 BUG_ON(evtchn_to_irq[evtchn] != -1);
681 /* Expect irq to have been bound before,
682 so there should be a proper type */
683 BUG_ON(info->type == IRQT_UNBOUND);
685 evtchn_to_irq[evtchn] = irq;
686 irq_info[irq] = mk_evtchn_info(evtchn);
688 spin_unlock(&irq_mapping_update_lock);
690 /* new event channels are always bound to cpu 0 */
691 irq_set_affinity(irq, cpumask_of(0));
693 /* Unmask the event channel. */
694 enable_irq(irq);
697 /* Rebind an evtchn so that it gets delivered to a specific cpu */
698 static int rebind_irq_to_cpu(unsigned irq, unsigned tcpu)
700 struct evtchn_bind_vcpu bind_vcpu;
701 int evtchn = evtchn_from_irq(irq);
703 if (!VALID_EVTCHN(evtchn))
704 return -1;
706 /* Send future instances of this interrupt to other vcpu. */
707 bind_vcpu.port = evtchn;
708 bind_vcpu.vcpu = tcpu;
711 * If this fails, it usually just indicates that we're dealing with a
712 * virq or IPI channel, which don't actually need to be rebound. Ignore
713 * it, but don't do the xenlinux-level rebind in that case.
715 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_vcpu, &bind_vcpu) >= 0)
716 bind_evtchn_to_cpu(evtchn, tcpu);
718 return 0;
721 static int set_affinity_irq(unsigned irq, const struct cpumask *dest)
723 unsigned tcpu = cpumask_first(dest);
725 return rebind_irq_to_cpu(irq, tcpu);
728 int resend_irq_on_evtchn(unsigned int irq)
730 int masked, evtchn = evtchn_from_irq(irq);
731 struct shared_info *s = HYPERVISOR_shared_info;
733 if (!VALID_EVTCHN(evtchn))
734 return 1;
736 masked = sync_test_and_set_bit(evtchn, s->evtchn_mask);
737 sync_set_bit(evtchn, s->evtchn_pending);
738 if (!masked)
739 unmask_evtchn(evtchn);
741 return 1;
744 static void enable_dynirq(unsigned int irq)
746 int evtchn = evtchn_from_irq(irq);
748 if (VALID_EVTCHN(evtchn))
749 unmask_evtchn(evtchn);
752 static void disable_dynirq(unsigned int irq)
754 int evtchn = evtchn_from_irq(irq);
756 if (VALID_EVTCHN(evtchn))
757 mask_evtchn(evtchn);
760 static void ack_dynirq(unsigned int irq)
762 int evtchn = evtchn_from_irq(irq);
764 move_native_irq(irq);
766 if (VALID_EVTCHN(evtchn))
767 clear_evtchn(evtchn);
770 static int retrigger_dynirq(unsigned int irq)
772 int evtchn = evtchn_from_irq(irq);
773 struct shared_info *sh = HYPERVISOR_shared_info;
774 int ret = 0;
776 if (VALID_EVTCHN(evtchn)) {
777 int masked;
779 masked = sync_test_and_set_bit(evtchn, sh->evtchn_mask);
780 sync_set_bit(evtchn, sh->evtchn_pending);
781 if (!masked)
782 unmask_evtchn(evtchn);
783 ret = 1;
786 return ret;
789 static void restore_cpu_virqs(unsigned int cpu)
791 struct evtchn_bind_virq bind_virq;
792 int virq, irq, evtchn;
794 for (virq = 0; virq < NR_VIRQS; virq++) {
795 if ((irq = per_cpu(virq_to_irq, cpu)[virq]) == -1)
796 continue;
798 BUG_ON(virq_from_irq(irq) != virq);
800 /* Get a new binding from Xen. */
801 bind_virq.virq = virq;
802 bind_virq.vcpu = cpu;
803 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
804 &bind_virq) != 0)
805 BUG();
806 evtchn = bind_virq.port;
808 /* Record the new mapping. */
809 evtchn_to_irq[evtchn] = irq;
810 irq_info[irq] = mk_virq_info(evtchn, virq);
811 bind_evtchn_to_cpu(evtchn, cpu);
813 /* Ready for use. */
814 unmask_evtchn(evtchn);
818 static void restore_cpu_ipis(unsigned int cpu)
820 struct evtchn_bind_ipi bind_ipi;
821 int ipi, irq, evtchn;
823 for (ipi = 0; ipi < XEN_NR_IPIS; ipi++) {
824 if ((irq = per_cpu(ipi_to_irq, cpu)[ipi]) == -1)
825 continue;
827 BUG_ON(ipi_from_irq(irq) != ipi);
829 /* Get a new binding from Xen. */
830 bind_ipi.vcpu = cpu;
831 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi,
832 &bind_ipi) != 0)
833 BUG();
834 evtchn = bind_ipi.port;
836 /* Record the new mapping. */
837 evtchn_to_irq[evtchn] = irq;
838 irq_info[irq] = mk_ipi_info(evtchn, ipi);
839 bind_evtchn_to_cpu(evtchn, cpu);
841 /* Ready for use. */
842 unmask_evtchn(evtchn);
847 /* Clear an irq's pending state, in preparation for polling on it */
848 void xen_clear_irq_pending(int irq)
850 int evtchn = evtchn_from_irq(irq);
852 if (VALID_EVTCHN(evtchn))
853 clear_evtchn(evtchn);
856 void xen_set_irq_pending(int irq)
858 int evtchn = evtchn_from_irq(irq);
860 if (VALID_EVTCHN(evtchn))
861 set_evtchn(evtchn);
864 bool xen_test_irq_pending(int irq)
866 int evtchn = evtchn_from_irq(irq);
867 bool ret = false;
869 if (VALID_EVTCHN(evtchn))
870 ret = test_evtchn(evtchn);
872 return ret;
875 /* Poll waiting for an irq to become pending. In the usual case, the
876 irq will be disabled so it won't deliver an interrupt. */
877 void xen_poll_irq(int irq)
879 evtchn_port_t evtchn = evtchn_from_irq(irq);
881 if (VALID_EVTCHN(evtchn)) {
882 struct sched_poll poll;
884 poll.nr_ports = 1;
885 poll.timeout = 0;
886 set_xen_guest_handle(poll.ports, &evtchn);
888 if (HYPERVISOR_sched_op(SCHEDOP_poll, &poll) != 0)
889 BUG();
893 void xen_irq_resume(void)
895 unsigned int cpu, irq, evtchn;
897 init_evtchn_cpu_bindings();
899 /* New event-channel space is not 'live' yet. */
900 for (evtchn = 0; evtchn < NR_EVENT_CHANNELS; evtchn++)
901 mask_evtchn(evtchn);
903 /* No IRQ <-> event-channel mappings. */
904 for (irq = 0; irq < nr_irqs; irq++)
905 irq_info[irq].evtchn = 0; /* zap event-channel binding */
907 for (evtchn = 0; evtchn < NR_EVENT_CHANNELS; evtchn++)
908 evtchn_to_irq[evtchn] = -1;
910 for_each_possible_cpu(cpu) {
911 restore_cpu_virqs(cpu);
912 restore_cpu_ipis(cpu);
916 static struct irq_chip xen_dynamic_chip __read_mostly = {
917 .name = "xen-dyn",
919 .disable = disable_dynirq,
920 .mask = disable_dynirq,
921 .unmask = enable_dynirq,
923 .ack = ack_dynirq,
924 .set_affinity = set_affinity_irq,
925 .retrigger = retrigger_dynirq,
928 void __init xen_init_IRQ(void)
930 int i;
932 cpu_evtchn_mask_p = kcalloc(nr_cpu_ids, sizeof(struct cpu_evtchn_s),
933 GFP_KERNEL);
934 BUG_ON(cpu_evtchn_mask_p == NULL);
936 init_evtchn_cpu_bindings();
938 /* No event channels are 'live' right now. */
939 for (i = 0; i < NR_EVENT_CHANNELS; i++)
940 mask_evtchn(i);
942 irq_ctx_init(smp_processor_id());