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
14 * 1. Inter-domain notifications. This includes all the virtual
15 * device events, since they're driven by front-ends in another domain
17 * 2. VIRQs, typically used for timers. These are per-cpu events.
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>
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. */
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"
77 enum xen_irq_type type
; /* type */
78 unsigned short evtchn
; /* event channel */
79 unsigned short cpu
; /* cpu bound */
86 unsigned short vector
;
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
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
,
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
);
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
);
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
];
216 ret
= cpu_from_irq(irq
);
221 static inline unsigned long active_evtchns(unsigned int cpu
,
222 struct shared_info
*sh
,
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
];
236 cpumask_copy(irq_to_desc(irq
)->affinity
, cpumask_of(cpu
));
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)
248 struct irq_desc
*desc
;
251 /* By default all event channels notify CPU#0. */
252 for_each_irq_desc(i
, desc
) {
253 cpumask_copy(desc
->affinity
, cpumask_of(0));
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
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
);
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;
332 static int find_unbound_irq(void)
335 struct irq_desc
*desc
;
337 for (irq
= 0; irq
< nr_irqs
; irq
++)
338 if (irq_info
[irq
].type
== IRQT_UNBOUND
)
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
))
348 dynamic_irq_init(irq
);
353 int bind_evtchn_to_irq(unsigned int evtchn
)
357 spin_lock(&irq_mapping_update_lock
);
359 irq
= evtchn_to_irq
[evtchn
];
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
);
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
;
382 spin_lock(&irq_mapping_update_lock
);
384 irq
= per_cpu(ipi_to_irq
, cpu
)[ipi
];
387 irq
= find_unbound_irq();
391 set_irq_chip_and_handler_name(irq
, &xen_dynamic_chip
,
392 handle_level_irq
, "ipi");
395 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi
,
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
);
408 spin_unlock(&irq_mapping_update_lock
);
413 static int bind_virq_to_irq(unsigned int virq
, unsigned int cpu
)
415 struct evtchn_bind_virq bind_virq
;
418 spin_lock(&irq_mapping_update_lock
);
420 irq
= per_cpu(virq_to_irq
, cpu
)[virq
];
423 bind_virq
.virq
= virq
;
424 bind_virq
.vcpu
= cpu
;
425 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq
,
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
);
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
)) {
457 if (HYPERVISOR_event_channel_op(EVTCHNOP_close
, &close
) != 0)
460 switch (type_from_irq(irq
)) {
462 per_cpu(virq_to_irq
, cpu_from_evtchn(evtchn
))
463 [virq_from_irq(irq
)] = -1;
466 per_cpu(ipi_to_irq
, cpu_from_evtchn(evtchn
))
467 [ipi_from_irq(irq
)] = -1;
473 /* Closed ports are implicitly re-bound to VCPU0. */
474 bind_evtchn_to_cpu(evtchn
, 0);
476 evtchn_to_irq
[evtchn
] = -1;
479 if (irq_info
[irq
].type
!= IRQT_UNBOUND
) {
480 irq_info
[irq
] = mk_unbound_info();
482 dynamic_irq_cleanup(irq
);
485 spin_unlock(&irq_mapping_update_lock
);
488 int bind_evtchn_to_irqhandler(unsigned int evtchn
,
489 irq_handler_t handler
,
490 unsigned long irqflags
,
491 const char *devname
, void *dev_id
)
496 irq
= bind_evtchn_to_irq(evtchn
);
497 retval
= request_irq(irq
, handler
, irqflags
, devname
, dev_id
);
499 unbind_from_irq(irq
);
505 EXPORT_SYMBOL_GPL(bind_evtchn_to_irqhandler
);
507 int bind_virq_to_irqhandler(unsigned int virq
, unsigned int cpu
,
508 irq_handler_t handler
,
509 unsigned long irqflags
, const char *devname
, void *dev_id
)
514 irq
= bind_virq_to_irq(virq
, cpu
);
515 retval
= request_irq(irq
, handler
, irqflags
, devname
, dev_id
);
517 unbind_from_irq(irq
);
523 EXPORT_SYMBOL_GPL(bind_virq_to_irqhandler
);
525 int bind_ipi_to_irqhandler(enum ipi_vector ipi
,
527 irq_handler_t handler
,
528 unsigned long irqflags
,
534 irq
= bind_ipi_to_irq(ipi
, cpu
);
538 retval
= request_irq(irq
, handler
, irqflags
, devname
, dev_id
);
540 unbind_from_irq(irq
);
547 void unbind_from_irqhandler(unsigned int irq
, void *dev_id
)
549 free_irq(irq
, dev_id
);
550 unbind_from_irq(irq
);
552 EXPORT_SYMBOL_GPL(unbind_from_irqhandler
);
554 void xen_send_IPI_one(unsigned int cpu
, enum ipi_vector vector
)
556 int irq
= per_cpu(ipi_to_irq
, cpu
)[vector
];
558 notify_remote_via_irq(irq
);
561 irqreturn_t
xen_debug_interrupt(int irq
, void *dev_id
)
563 struct shared_info
*sh
= HYPERVISOR_shared_info
;
564 int cpu
= smp_processor_id();
567 static DEFINE_SPINLOCK(debug_lock
);
569 spin_lock_irqsave(&debug_lock
, flags
);
571 printk("vcpu %d\n ", cpu
);
573 for_each_online_cpu(i
) {
574 struct vcpu_info
*v
= per_cpu(xen_vcpu
, i
);
575 printk("%d: masked=%d pending=%d event_sel %08lx\n ", i
,
576 (get_irq_regs() && i
== cpu
) ? xen_irqs_disabled(get_irq_regs()) : v
->evtchn_upcall_mask
,
577 v
->evtchn_upcall_pending
,
578 v
->evtchn_pending_sel
);
580 printk("pending:\n ");
581 for(i
= ARRAY_SIZE(sh
->evtchn_pending
)-1; i
>= 0; i
--)
582 printk("%08lx%s", sh
->evtchn_pending
[i
],
583 i
% 8 == 0 ? "\n " : " ");
584 printk("\nmasks:\n ");
585 for(i
= ARRAY_SIZE(sh
->evtchn_mask
)-1; i
>= 0; i
--)
586 printk("%08lx%s", sh
->evtchn_mask
[i
],
587 i
% 8 == 0 ? "\n " : " ");
589 printk("\nunmasked:\n ");
590 for(i
= ARRAY_SIZE(sh
->evtchn_mask
)-1; i
>= 0; i
--)
591 printk("%08lx%s", sh
->evtchn_pending
[i
] & ~sh
->evtchn_mask
[i
],
592 i
% 8 == 0 ? "\n " : " ");
594 printk("\npending list:\n");
595 for(i
= 0; i
< NR_EVENT_CHANNELS
; i
++) {
596 if (sync_test_bit(i
, sh
->evtchn_pending
)) {
597 printk(" %d: event %d -> irq %d\n",
598 cpu_from_evtchn(i
), i
,
603 spin_unlock_irqrestore(&debug_lock
, flags
);
608 static DEFINE_PER_CPU(unsigned, xed_nesting_count
);
611 * Search the CPUs pending events bitmasks. For each one found, map
612 * the event number to an irq, and feed it into do_IRQ() for
615 * Xen uses a two-level bitmap to speed searching. The first level is
616 * a bitset of words which contain pending event bits. The second
617 * level is a bitset of pending events themselves.
619 void xen_evtchn_do_upcall(struct pt_regs
*regs
)
622 struct pt_regs
*old_regs
= set_irq_regs(regs
);
623 struct shared_info
*s
= HYPERVISOR_shared_info
;
624 struct vcpu_info
*vcpu_info
= __get_cpu_var(xen_vcpu
);
631 unsigned long pending_words
;
633 vcpu_info
->evtchn_upcall_pending
= 0;
635 if (__get_cpu_var(xed_nesting_count
)++)
638 #ifndef CONFIG_X86 /* No need for a barrier -- XCHG is a barrier on x86. */
639 /* Clear master flag /before/ clearing selector flag. */
642 pending_words
= xchg(&vcpu_info
->evtchn_pending_sel
, 0);
643 while (pending_words
!= 0) {
644 unsigned long pending_bits
;
645 int word_idx
= __ffs(pending_words
);
646 pending_words
&= ~(1UL << word_idx
);
648 while ((pending_bits
= active_evtchns(cpu
, s
, word_idx
)) != 0) {
649 int bit_idx
= __ffs(pending_bits
);
650 int port
= (word_idx
* BITS_PER_LONG
) + bit_idx
;
651 int irq
= evtchn_to_irq
[port
];
654 handle_irq(irq
, regs
);
658 BUG_ON(!irqs_disabled());
660 count
= __get_cpu_var(xed_nesting_count
);
661 __get_cpu_var(xed_nesting_count
) = 0;
666 set_irq_regs(old_regs
);
671 /* Rebind a new event channel to an existing irq. */
672 void rebind_evtchn_irq(int evtchn
, int irq
)
674 struct irq_info
*info
= info_for_irq(irq
);
676 /* Make sure the irq is masked, since the new event channel
677 will also be masked. */
680 spin_lock(&irq_mapping_update_lock
);
682 /* After resume the irq<->evtchn mappings are all cleared out */
683 BUG_ON(evtchn_to_irq
[evtchn
] != -1);
684 /* Expect irq to have been bound before,
685 so there should be a proper type */
686 BUG_ON(info
->type
== IRQT_UNBOUND
);
688 evtchn_to_irq
[evtchn
] = irq
;
689 irq_info
[irq
] = mk_evtchn_info(evtchn
);
691 spin_unlock(&irq_mapping_update_lock
);
693 /* new event channels are always bound to cpu 0 */
694 irq_set_affinity(irq
, cpumask_of(0));
696 /* Unmask the event channel. */
700 /* Rebind an evtchn so that it gets delivered to a specific cpu */
701 static int rebind_irq_to_cpu(unsigned irq
, unsigned tcpu
)
703 struct evtchn_bind_vcpu bind_vcpu
;
704 int evtchn
= evtchn_from_irq(irq
);
706 if (!VALID_EVTCHN(evtchn
))
709 /* Send future instances of this interrupt to other vcpu. */
710 bind_vcpu
.port
= evtchn
;
711 bind_vcpu
.vcpu
= tcpu
;
714 * If this fails, it usually just indicates that we're dealing with a
715 * virq or IPI channel, which don't actually need to be rebound. Ignore
716 * it, but don't do the xenlinux-level rebind in that case.
718 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_vcpu
, &bind_vcpu
) >= 0)
719 bind_evtchn_to_cpu(evtchn
, tcpu
);
724 static int set_affinity_irq(unsigned irq
, const struct cpumask
*dest
)
726 unsigned tcpu
= cpumask_first(dest
);
728 return rebind_irq_to_cpu(irq
, tcpu
);
731 int resend_irq_on_evtchn(unsigned int irq
)
733 int masked
, evtchn
= evtchn_from_irq(irq
);
734 struct shared_info
*s
= HYPERVISOR_shared_info
;
736 if (!VALID_EVTCHN(evtchn
))
739 masked
= sync_test_and_set_bit(evtchn
, s
->evtchn_mask
);
740 sync_set_bit(evtchn
, s
->evtchn_pending
);
742 unmask_evtchn(evtchn
);
747 static void enable_dynirq(unsigned int irq
)
749 int evtchn
= evtchn_from_irq(irq
);
751 if (VALID_EVTCHN(evtchn
))
752 unmask_evtchn(evtchn
);
755 static void disable_dynirq(unsigned int irq
)
757 int evtchn
= evtchn_from_irq(irq
);
759 if (VALID_EVTCHN(evtchn
))
763 static void ack_dynirq(unsigned int irq
)
765 int evtchn
= evtchn_from_irq(irq
);
767 move_native_irq(irq
);
769 if (VALID_EVTCHN(evtchn
))
770 clear_evtchn(evtchn
);
773 static int retrigger_dynirq(unsigned int irq
)
775 int evtchn
= evtchn_from_irq(irq
);
776 struct shared_info
*sh
= HYPERVISOR_shared_info
;
779 if (VALID_EVTCHN(evtchn
)) {
782 masked
= sync_test_and_set_bit(evtchn
, sh
->evtchn_mask
);
783 sync_set_bit(evtchn
, sh
->evtchn_pending
);
785 unmask_evtchn(evtchn
);
792 static void restore_cpu_virqs(unsigned int cpu
)
794 struct evtchn_bind_virq bind_virq
;
795 int virq
, irq
, evtchn
;
797 for (virq
= 0; virq
< NR_VIRQS
; virq
++) {
798 if ((irq
= per_cpu(virq_to_irq
, cpu
)[virq
]) == -1)
801 BUG_ON(virq_from_irq(irq
) != virq
);
803 /* Get a new binding from Xen. */
804 bind_virq
.virq
= virq
;
805 bind_virq
.vcpu
= cpu
;
806 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq
,
809 evtchn
= bind_virq
.port
;
811 /* Record the new mapping. */
812 evtchn_to_irq
[evtchn
] = irq
;
813 irq_info
[irq
] = mk_virq_info(evtchn
, virq
);
814 bind_evtchn_to_cpu(evtchn
, cpu
);
817 unmask_evtchn(evtchn
);
821 static void restore_cpu_ipis(unsigned int cpu
)
823 struct evtchn_bind_ipi bind_ipi
;
824 int ipi
, irq
, evtchn
;
826 for (ipi
= 0; ipi
< XEN_NR_IPIS
; ipi
++) {
827 if ((irq
= per_cpu(ipi_to_irq
, cpu
)[ipi
]) == -1)
830 BUG_ON(ipi_from_irq(irq
) != ipi
);
832 /* Get a new binding from Xen. */
834 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi
,
837 evtchn
= bind_ipi
.port
;
839 /* Record the new mapping. */
840 evtchn_to_irq
[evtchn
] = irq
;
841 irq_info
[irq
] = mk_ipi_info(evtchn
, ipi
);
842 bind_evtchn_to_cpu(evtchn
, cpu
);
845 unmask_evtchn(evtchn
);
850 /* Clear an irq's pending state, in preparation for polling on it */
851 void xen_clear_irq_pending(int irq
)
853 int evtchn
= evtchn_from_irq(irq
);
855 if (VALID_EVTCHN(evtchn
))
856 clear_evtchn(evtchn
);
859 void xen_set_irq_pending(int irq
)
861 int evtchn
= evtchn_from_irq(irq
);
863 if (VALID_EVTCHN(evtchn
))
867 bool xen_test_irq_pending(int irq
)
869 int evtchn
= evtchn_from_irq(irq
);
872 if (VALID_EVTCHN(evtchn
))
873 ret
= test_evtchn(evtchn
);
878 /* Poll waiting for an irq to become pending. In the usual case, the
879 irq will be disabled so it won't deliver an interrupt. */
880 void xen_poll_irq(int irq
)
882 evtchn_port_t evtchn
= evtchn_from_irq(irq
);
884 if (VALID_EVTCHN(evtchn
)) {
885 struct sched_poll poll
;
889 set_xen_guest_handle(poll
.ports
, &evtchn
);
891 if (HYPERVISOR_sched_op(SCHEDOP_poll
, &poll
) != 0)
896 void xen_irq_resume(void)
898 unsigned int cpu
, irq
, evtchn
;
900 init_evtchn_cpu_bindings();
902 /* New event-channel space is not 'live' yet. */
903 for (evtchn
= 0; evtchn
< NR_EVENT_CHANNELS
; evtchn
++)
906 /* No IRQ <-> event-channel mappings. */
907 for (irq
= 0; irq
< nr_irqs
; irq
++)
908 irq_info
[irq
].evtchn
= 0; /* zap event-channel binding */
910 for (evtchn
= 0; evtchn
< NR_EVENT_CHANNELS
; evtchn
++)
911 evtchn_to_irq
[evtchn
] = -1;
913 for_each_possible_cpu(cpu
) {
914 restore_cpu_virqs(cpu
);
915 restore_cpu_ipis(cpu
);
919 static struct irq_chip xen_dynamic_chip __read_mostly
= {
922 .disable
= disable_dynirq
,
923 .mask
= disable_dynirq
,
924 .unmask
= enable_dynirq
,
927 .set_affinity
= set_affinity_irq
,
928 .retrigger
= retrigger_dynirq
,
931 void __init
xen_init_IRQ(void)
935 cpu_evtchn_mask_p
= kcalloc(nr_cpu_ids
, sizeof(struct cpu_evtchn_s
),
937 BUG_ON(cpu_evtchn_mask_p
== NULL
);
939 init_evtchn_cpu_bindings();
941 /* No event channels are 'live' right now. */
942 for (i
= 0; i
< NR_EVENT_CHANNELS
; i
++)
945 irq_ctx_init(smp_processor_id());