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>
30 #include <linux/slab.h>
33 #include <asm/ptrace.h>
36 #include <asm/sync_bitops.h>
37 #include <asm/xen/hypercall.h>
38 #include <asm/xen/hypervisor.h>
42 #include <xen/xen-ops.h>
43 #include <xen/events.h>
44 #include <xen/interface/xen.h>
45 #include <xen/interface/event_channel.h>
46 #include <xen/interface/hvm/hvm_op.h>
47 #include <xen/interface/hvm/params.h>
50 * This lock protects updates to the following mapping and reference-count
51 * arrays. The lock does not need to be acquired to read the mapping tables.
53 static DEFINE_SPINLOCK(irq_mapping_update_lock
);
55 /* IRQ <-> VIRQ mapping. */
56 static DEFINE_PER_CPU(int [NR_VIRQS
], virq_to_irq
) = {[0 ... NR_VIRQS
-1] = -1};
58 /* IRQ <-> IPI mapping */
59 static DEFINE_PER_CPU(int [XEN_NR_IPIS
], ipi_to_irq
) = {[0 ... XEN_NR_IPIS
-1] = -1};
61 /* Interrupt types. */
71 * Packed IRQ information:
72 * type - enum xen_irq_type
73 * event channel - irq->event channel mapping
74 * cpu - cpu this event channel is bound to
75 * index - type-specific information:
76 * PIRQ - vector, with MSB being "needs EIO"
83 enum xen_irq_type type
; /* type */
84 unsigned short evtchn
; /* event channel */
85 unsigned short cpu
; /* cpu bound */
92 unsigned short vector
;
97 static struct irq_info irq_info
[NR_IRQS
];
99 static int evtchn_to_irq
[NR_EVENT_CHANNELS
] = {
100 [0 ... NR_EVENT_CHANNELS
-1] = -1
102 struct cpu_evtchn_s
{
103 unsigned long bits
[NR_EVENT_CHANNELS
/BITS_PER_LONG
];
105 static struct cpu_evtchn_s
*cpu_evtchn_mask_p
;
106 static inline unsigned long *cpu_evtchn_mask(int cpu
)
108 return cpu_evtchn_mask_p
[cpu
].bits
;
111 /* Xen will never allocate port zero for any purpose. */
112 #define VALID_EVTCHN(chn) ((chn) != 0)
114 static struct irq_chip xen_dynamic_chip
;
115 static struct irq_chip xen_percpu_chip
;
117 /* Constructor for packed IRQ information. */
118 static struct irq_info
mk_unbound_info(void)
120 return (struct irq_info
) { .type
= IRQT_UNBOUND
};
123 static struct irq_info
mk_evtchn_info(unsigned short evtchn
)
125 return (struct irq_info
) { .type
= IRQT_EVTCHN
, .evtchn
= evtchn
,
129 static struct irq_info
mk_ipi_info(unsigned short evtchn
, enum ipi_vector ipi
)
131 return (struct irq_info
) { .type
= IRQT_IPI
, .evtchn
= evtchn
,
132 .cpu
= 0, .u
.ipi
= ipi
};
135 static struct irq_info
mk_virq_info(unsigned short evtchn
, unsigned short virq
)
137 return (struct irq_info
) { .type
= IRQT_VIRQ
, .evtchn
= evtchn
,
138 .cpu
= 0, .u
.virq
= virq
};
141 static struct irq_info
mk_pirq_info(unsigned short evtchn
,
142 unsigned short gsi
, unsigned short vector
)
144 return (struct irq_info
) { .type
= IRQT_PIRQ
, .evtchn
= evtchn
,
145 .cpu
= 0, .u
.pirq
= { .gsi
= gsi
, .vector
= vector
} };
149 * Accessors for packed IRQ information.
151 static struct irq_info
*info_for_irq(unsigned irq
)
153 return &irq_info
[irq
];
156 static unsigned int evtchn_from_irq(unsigned irq
)
158 return info_for_irq(irq
)->evtchn
;
161 unsigned irq_from_evtchn(unsigned int evtchn
)
163 return evtchn_to_irq
[evtchn
];
165 EXPORT_SYMBOL_GPL(irq_from_evtchn
);
167 static enum ipi_vector
ipi_from_irq(unsigned irq
)
169 struct irq_info
*info
= info_for_irq(irq
);
171 BUG_ON(info
== NULL
);
172 BUG_ON(info
->type
!= IRQT_IPI
);
177 static unsigned virq_from_irq(unsigned irq
)
179 struct irq_info
*info
= info_for_irq(irq
);
181 BUG_ON(info
== NULL
);
182 BUG_ON(info
->type
!= IRQT_VIRQ
);
187 static unsigned gsi_from_irq(unsigned irq
)
189 struct irq_info
*info
= info_for_irq(irq
);
191 BUG_ON(info
== NULL
);
192 BUG_ON(info
->type
!= IRQT_PIRQ
);
194 return info
->u
.pirq
.gsi
;
197 static unsigned vector_from_irq(unsigned irq
)
199 struct irq_info
*info
= info_for_irq(irq
);
201 BUG_ON(info
== NULL
);
202 BUG_ON(info
->type
!= IRQT_PIRQ
);
204 return info
->u
.pirq
.vector
;
207 static enum xen_irq_type
type_from_irq(unsigned irq
)
209 return info_for_irq(irq
)->type
;
212 static unsigned cpu_from_irq(unsigned irq
)
214 return info_for_irq(irq
)->cpu
;
217 static unsigned int cpu_from_evtchn(unsigned int evtchn
)
219 int irq
= evtchn_to_irq
[evtchn
];
223 ret
= cpu_from_irq(irq
);
228 static inline unsigned long active_evtchns(unsigned int cpu
,
229 struct shared_info
*sh
,
232 return (sh
->evtchn_pending
[idx
] &
233 cpu_evtchn_mask(cpu
)[idx
] &
234 ~sh
->evtchn_mask
[idx
]);
237 static void bind_evtchn_to_cpu(unsigned int chn
, unsigned int cpu
)
239 int irq
= evtchn_to_irq
[chn
];
243 cpumask_copy(irq_to_desc(irq
)->affinity
, cpumask_of(cpu
));
246 __clear_bit(chn
, cpu_evtchn_mask(cpu_from_irq(irq
)));
247 __set_bit(chn
, cpu_evtchn_mask(cpu
));
249 irq_info
[irq
].cpu
= cpu
;
252 static void init_evtchn_cpu_bindings(void)
255 struct irq_desc
*desc
;
258 /* By default all event channels notify CPU#0. */
259 for_each_irq_desc(i
, desc
) {
260 cpumask_copy(desc
->affinity
, cpumask_of(0));
264 memset(cpu_evtchn_mask(0), ~0, sizeof(cpu_evtchn_mask(0)));
267 static inline void clear_evtchn(int port
)
269 struct shared_info
*s
= HYPERVISOR_shared_info
;
270 sync_clear_bit(port
, &s
->evtchn_pending
[0]);
273 static inline void set_evtchn(int port
)
275 struct shared_info
*s
= HYPERVISOR_shared_info
;
276 sync_set_bit(port
, &s
->evtchn_pending
[0]);
279 static inline int test_evtchn(int port
)
281 struct shared_info
*s
= HYPERVISOR_shared_info
;
282 return sync_test_bit(port
, &s
->evtchn_pending
[0]);
287 * notify_remote_via_irq - send event to remote end of event channel via irq
288 * @irq: irq of event channel to send event to
290 * Unlike notify_remote_via_evtchn(), this is safe to use across
291 * save/restore. Notifications on a broken connection are silently
294 void notify_remote_via_irq(int irq
)
296 int evtchn
= evtchn_from_irq(irq
);
298 if (VALID_EVTCHN(evtchn
))
299 notify_remote_via_evtchn(evtchn
);
301 EXPORT_SYMBOL_GPL(notify_remote_via_irq
);
303 static void mask_evtchn(int port
)
305 struct shared_info
*s
= HYPERVISOR_shared_info
;
306 sync_set_bit(port
, &s
->evtchn_mask
[0]);
309 static void unmask_evtchn(int port
)
311 struct shared_info
*s
= HYPERVISOR_shared_info
;
312 unsigned int cpu
= get_cpu();
314 BUG_ON(!irqs_disabled());
316 /* Slow path (hypercall) if this is a non-local port. */
317 if (unlikely(cpu
!= cpu_from_evtchn(port
))) {
318 struct evtchn_unmask unmask
= { .port
= port
};
319 (void)HYPERVISOR_event_channel_op(EVTCHNOP_unmask
, &unmask
);
321 struct vcpu_info
*vcpu_info
= __get_cpu_var(xen_vcpu
);
323 sync_clear_bit(port
, &s
->evtchn_mask
[0]);
326 * The following is basically the equivalent of
327 * 'hw_resend_irq'. Just like a real IO-APIC we 'lose
328 * the interrupt edge' if the channel is masked.
330 if (sync_test_bit(port
, &s
->evtchn_pending
[0]) &&
331 !sync_test_and_set_bit(port
/ BITS_PER_LONG
,
332 &vcpu_info
->evtchn_pending_sel
))
333 vcpu_info
->evtchn_upcall_pending
= 1;
339 static int find_unbound_irq(void)
342 struct irq_desc
*desc
;
344 for (irq
= 0; irq
< nr_irqs
; irq
++) {
345 desc
= irq_to_desc(irq
);
346 /* only 0->15 have init'd desc; handle irq > 16 */
349 if (desc
->chip
== &no_irq_chip
)
351 if (desc
->chip
!= &xen_dynamic_chip
)
353 if (irq_info
[irq
].type
== IRQT_UNBOUND
)
358 panic("No available IRQ to bind to: increase nr_irqs!\n");
360 desc
= irq_to_desc_alloc_node(irq
, 0);
361 if (WARN_ON(desc
== NULL
))
364 dynamic_irq_init_keep_chip_data(irq
);
369 int bind_evtchn_to_irq(unsigned int evtchn
)
373 spin_lock(&irq_mapping_update_lock
);
375 irq
= evtchn_to_irq
[evtchn
];
378 irq
= find_unbound_irq();
380 set_irq_chip_and_handler_name(irq
, &xen_dynamic_chip
,
381 handle_edge_irq
, "event");
383 evtchn_to_irq
[evtchn
] = irq
;
384 irq_info
[irq
] = mk_evtchn_info(evtchn
);
387 spin_unlock(&irq_mapping_update_lock
);
391 EXPORT_SYMBOL_GPL(bind_evtchn_to_irq
);
393 static int bind_ipi_to_irq(unsigned int ipi
, unsigned int cpu
)
395 struct evtchn_bind_ipi bind_ipi
;
398 spin_lock(&irq_mapping_update_lock
);
400 irq
= per_cpu(ipi_to_irq
, cpu
)[ipi
];
403 irq
= find_unbound_irq();
407 set_irq_chip_and_handler_name(irq
, &xen_percpu_chip
,
408 handle_percpu_irq
, "ipi");
411 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi
,
414 evtchn
= bind_ipi
.port
;
416 evtchn_to_irq
[evtchn
] = irq
;
417 irq_info
[irq
] = mk_ipi_info(evtchn
, ipi
);
418 per_cpu(ipi_to_irq
, cpu
)[ipi
] = irq
;
420 bind_evtchn_to_cpu(evtchn
, cpu
);
424 spin_unlock(&irq_mapping_update_lock
);
429 static int bind_virq_to_irq(unsigned int virq
, unsigned int cpu
)
431 struct evtchn_bind_virq bind_virq
;
434 spin_lock(&irq_mapping_update_lock
);
436 irq
= per_cpu(virq_to_irq
, cpu
)[virq
];
439 bind_virq
.virq
= virq
;
440 bind_virq
.vcpu
= cpu
;
441 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq
,
444 evtchn
= bind_virq
.port
;
446 irq
= find_unbound_irq();
448 set_irq_chip_and_handler_name(irq
, &xen_percpu_chip
,
449 handle_percpu_irq
, "virq");
451 evtchn_to_irq
[evtchn
] = irq
;
452 irq_info
[irq
] = mk_virq_info(evtchn
, virq
);
454 per_cpu(virq_to_irq
, cpu
)[virq
] = irq
;
456 bind_evtchn_to_cpu(evtchn
, cpu
);
459 spin_unlock(&irq_mapping_update_lock
);
464 static void unbind_from_irq(unsigned int irq
)
466 struct evtchn_close close
;
467 int evtchn
= evtchn_from_irq(irq
);
469 spin_lock(&irq_mapping_update_lock
);
471 if (VALID_EVTCHN(evtchn
)) {
473 if (HYPERVISOR_event_channel_op(EVTCHNOP_close
, &close
) != 0)
476 switch (type_from_irq(irq
)) {
478 per_cpu(virq_to_irq
, cpu_from_evtchn(evtchn
))
479 [virq_from_irq(irq
)] = -1;
482 per_cpu(ipi_to_irq
, cpu_from_evtchn(evtchn
))
483 [ipi_from_irq(irq
)] = -1;
489 /* Closed ports are implicitly re-bound to VCPU0. */
490 bind_evtchn_to_cpu(evtchn
, 0);
492 evtchn_to_irq
[evtchn
] = -1;
495 if (irq_info
[irq
].type
!= IRQT_UNBOUND
) {
496 irq_info
[irq
] = mk_unbound_info();
498 dynamic_irq_cleanup(irq
);
501 spin_unlock(&irq_mapping_update_lock
);
504 int bind_evtchn_to_irqhandler(unsigned int evtchn
,
505 irq_handler_t handler
,
506 unsigned long irqflags
,
507 const char *devname
, void *dev_id
)
512 irq
= bind_evtchn_to_irq(evtchn
);
513 retval
= request_irq(irq
, handler
, irqflags
, devname
, dev_id
);
515 unbind_from_irq(irq
);
521 EXPORT_SYMBOL_GPL(bind_evtchn_to_irqhandler
);
523 int bind_virq_to_irqhandler(unsigned int virq
, unsigned int cpu
,
524 irq_handler_t handler
,
525 unsigned long irqflags
, const char *devname
, void *dev_id
)
530 irq
= bind_virq_to_irq(virq
, cpu
);
531 retval
= request_irq(irq
, handler
, irqflags
, devname
, dev_id
);
533 unbind_from_irq(irq
);
539 EXPORT_SYMBOL_GPL(bind_virq_to_irqhandler
);
541 int bind_ipi_to_irqhandler(enum ipi_vector ipi
,
543 irq_handler_t handler
,
544 unsigned long irqflags
,
550 irq
= bind_ipi_to_irq(ipi
, cpu
);
554 irqflags
|= IRQF_NO_SUSPEND
;
555 retval
= request_irq(irq
, handler
, irqflags
, devname
, dev_id
);
557 unbind_from_irq(irq
);
564 void unbind_from_irqhandler(unsigned int irq
, void *dev_id
)
566 free_irq(irq
, dev_id
);
567 unbind_from_irq(irq
);
569 EXPORT_SYMBOL_GPL(unbind_from_irqhandler
);
571 void xen_send_IPI_one(unsigned int cpu
, enum ipi_vector vector
)
573 int irq
= per_cpu(ipi_to_irq
, cpu
)[vector
];
575 notify_remote_via_irq(irq
);
578 irqreturn_t
xen_debug_interrupt(int irq
, void *dev_id
)
580 struct shared_info
*sh
= HYPERVISOR_shared_info
;
581 int cpu
= smp_processor_id();
584 static DEFINE_SPINLOCK(debug_lock
);
586 spin_lock_irqsave(&debug_lock
, flags
);
588 printk("vcpu %d\n ", cpu
);
590 for_each_online_cpu(i
) {
591 struct vcpu_info
*v
= per_cpu(xen_vcpu
, i
);
592 printk("%d: masked=%d pending=%d event_sel %08lx\n ", i
,
593 (get_irq_regs() && i
== cpu
) ? xen_irqs_disabled(get_irq_regs()) : v
->evtchn_upcall_mask
,
594 v
->evtchn_upcall_pending
,
595 v
->evtchn_pending_sel
);
597 printk("pending:\n ");
598 for(i
= ARRAY_SIZE(sh
->evtchn_pending
)-1; i
>= 0; i
--)
599 printk("%08lx%s", sh
->evtchn_pending
[i
],
600 i
% 8 == 0 ? "\n " : " ");
601 printk("\nmasks:\n ");
602 for(i
= ARRAY_SIZE(sh
->evtchn_mask
)-1; i
>= 0; i
--)
603 printk("%08lx%s", sh
->evtchn_mask
[i
],
604 i
% 8 == 0 ? "\n " : " ");
606 printk("\nunmasked:\n ");
607 for(i
= ARRAY_SIZE(sh
->evtchn_mask
)-1; i
>= 0; i
--)
608 printk("%08lx%s", sh
->evtchn_pending
[i
] & ~sh
->evtchn_mask
[i
],
609 i
% 8 == 0 ? "\n " : " ");
611 printk("\npending list:\n");
612 for(i
= 0; i
< NR_EVENT_CHANNELS
; i
++) {
613 if (sync_test_bit(i
, sh
->evtchn_pending
)) {
614 printk(" %d: event %d -> irq %d\n",
615 cpu_from_evtchn(i
), i
,
620 spin_unlock_irqrestore(&debug_lock
, flags
);
625 static DEFINE_PER_CPU(unsigned, xed_nesting_count
);
628 * Search the CPUs pending events bitmasks. For each one found, map
629 * the event number to an irq, and feed it into do_IRQ() for
632 * Xen uses a two-level bitmap to speed searching. The first level is
633 * a bitset of words which contain pending event bits. The second
634 * level is a bitset of pending events themselves.
636 static void __xen_evtchn_do_upcall(void)
639 struct shared_info
*s
= HYPERVISOR_shared_info
;
640 struct vcpu_info
*vcpu_info
= __get_cpu_var(xen_vcpu
);
644 unsigned long pending_words
;
646 vcpu_info
->evtchn_upcall_pending
= 0;
648 if (__get_cpu_var(xed_nesting_count
)++)
651 #ifndef CONFIG_X86 /* No need for a barrier -- XCHG is a barrier on x86. */
652 /* Clear master flag /before/ clearing selector flag. */
655 pending_words
= xchg(&vcpu_info
->evtchn_pending_sel
, 0);
656 while (pending_words
!= 0) {
657 unsigned long pending_bits
;
658 int word_idx
= __ffs(pending_words
);
659 pending_words
&= ~(1UL << word_idx
);
661 while ((pending_bits
= active_evtchns(cpu
, s
, word_idx
)) != 0) {
662 int bit_idx
= __ffs(pending_bits
);
663 int port
= (word_idx
* BITS_PER_LONG
) + bit_idx
;
664 int irq
= evtchn_to_irq
[port
];
665 struct irq_desc
*desc
;
668 desc
= irq_to_desc(irq
);
670 generic_handle_irq_desc(irq
, desc
);
675 BUG_ON(!irqs_disabled());
677 count
= __get_cpu_var(xed_nesting_count
);
678 __get_cpu_var(xed_nesting_count
) = 0;
679 } while (count
!= 1 || vcpu_info
->evtchn_upcall_pending
);
686 void xen_evtchn_do_upcall(struct pt_regs
*regs
)
688 struct pt_regs
*old_regs
= set_irq_regs(regs
);
693 __xen_evtchn_do_upcall();
696 set_irq_regs(old_regs
);
699 void xen_hvm_evtchn_do_upcall(void)
701 __xen_evtchn_do_upcall();
703 EXPORT_SYMBOL_GPL(xen_hvm_evtchn_do_upcall
);
705 /* Rebind a new event channel to an existing irq. */
706 void rebind_evtchn_irq(int evtchn
, int irq
)
708 struct irq_info
*info
= info_for_irq(irq
);
710 /* Make sure the irq is masked, since the new event channel
711 will also be masked. */
714 spin_lock(&irq_mapping_update_lock
);
716 /* After resume the irq<->evtchn mappings are all cleared out */
717 BUG_ON(evtchn_to_irq
[evtchn
] != -1);
718 /* Expect irq to have been bound before,
719 so there should be a proper type */
720 BUG_ON(info
->type
== IRQT_UNBOUND
);
722 evtchn_to_irq
[evtchn
] = irq
;
723 irq_info
[irq
] = mk_evtchn_info(evtchn
);
725 spin_unlock(&irq_mapping_update_lock
);
727 /* new event channels are always bound to cpu 0 */
728 irq_set_affinity(irq
, cpumask_of(0));
730 /* Unmask the event channel. */
734 /* Rebind an evtchn so that it gets delivered to a specific cpu */
735 static int rebind_irq_to_cpu(unsigned irq
, unsigned tcpu
)
737 struct evtchn_bind_vcpu bind_vcpu
;
738 int evtchn
= evtchn_from_irq(irq
);
740 /* events delivered via platform PCI interrupts are always
741 * routed to vcpu 0 */
742 if (!VALID_EVTCHN(evtchn
) ||
743 (xen_hvm_domain() && !xen_have_vector_callback
))
746 /* Send future instances of this interrupt to other vcpu. */
747 bind_vcpu
.port
= evtchn
;
748 bind_vcpu
.vcpu
= tcpu
;
751 * If this fails, it usually just indicates that we're dealing with a
752 * virq or IPI channel, which don't actually need to be rebound. Ignore
753 * it, but don't do the xenlinux-level rebind in that case.
755 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_vcpu
, &bind_vcpu
) >= 0)
756 bind_evtchn_to_cpu(evtchn
, tcpu
);
761 static int set_affinity_irq(unsigned irq
, const struct cpumask
*dest
)
763 unsigned tcpu
= cpumask_first(dest
);
765 return rebind_irq_to_cpu(irq
, tcpu
);
768 int resend_irq_on_evtchn(unsigned int irq
)
770 int masked
, evtchn
= evtchn_from_irq(irq
);
771 struct shared_info
*s
= HYPERVISOR_shared_info
;
773 if (!VALID_EVTCHN(evtchn
))
776 masked
= sync_test_and_set_bit(evtchn
, s
->evtchn_mask
);
777 sync_set_bit(evtchn
, s
->evtchn_pending
);
779 unmask_evtchn(evtchn
);
784 static void enable_dynirq(unsigned int irq
)
786 int evtchn
= evtchn_from_irq(irq
);
788 if (VALID_EVTCHN(evtchn
))
789 unmask_evtchn(evtchn
);
792 static void disable_dynirq(unsigned int irq
)
794 int evtchn
= evtchn_from_irq(irq
);
796 if (VALID_EVTCHN(evtchn
))
800 static void ack_dynirq(unsigned int irq
)
802 int evtchn
= evtchn_from_irq(irq
);
804 move_native_irq(irq
);
806 if (VALID_EVTCHN(evtchn
))
807 clear_evtchn(evtchn
);
810 static int retrigger_dynirq(unsigned int irq
)
812 int evtchn
= evtchn_from_irq(irq
);
813 struct shared_info
*sh
= HYPERVISOR_shared_info
;
816 if (VALID_EVTCHN(evtchn
)) {
819 masked
= sync_test_and_set_bit(evtchn
, sh
->evtchn_mask
);
820 sync_set_bit(evtchn
, sh
->evtchn_pending
);
822 unmask_evtchn(evtchn
);
829 static void restore_cpu_virqs(unsigned int cpu
)
831 struct evtchn_bind_virq bind_virq
;
832 int virq
, irq
, evtchn
;
834 for (virq
= 0; virq
< NR_VIRQS
; virq
++) {
835 if ((irq
= per_cpu(virq_to_irq
, cpu
)[virq
]) == -1)
838 BUG_ON(virq_from_irq(irq
) != virq
);
840 /* Get a new binding from Xen. */
841 bind_virq
.virq
= virq
;
842 bind_virq
.vcpu
= cpu
;
843 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq
,
846 evtchn
= bind_virq
.port
;
848 /* Record the new mapping. */
849 evtchn_to_irq
[evtchn
] = irq
;
850 irq_info
[irq
] = mk_virq_info(evtchn
, virq
);
851 bind_evtchn_to_cpu(evtchn
, cpu
);
854 unmask_evtchn(evtchn
);
858 static void restore_cpu_ipis(unsigned int cpu
)
860 struct evtchn_bind_ipi bind_ipi
;
861 int ipi
, irq
, evtchn
;
863 for (ipi
= 0; ipi
< XEN_NR_IPIS
; ipi
++) {
864 if ((irq
= per_cpu(ipi_to_irq
, cpu
)[ipi
]) == -1)
867 BUG_ON(ipi_from_irq(irq
) != ipi
);
869 /* Get a new binding from Xen. */
871 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi
,
874 evtchn
= bind_ipi
.port
;
876 /* Record the new mapping. */
877 evtchn_to_irq
[evtchn
] = irq
;
878 irq_info
[irq
] = mk_ipi_info(evtchn
, ipi
);
879 bind_evtchn_to_cpu(evtchn
, cpu
);
882 unmask_evtchn(evtchn
);
887 /* Clear an irq's pending state, in preparation for polling on it */
888 void xen_clear_irq_pending(int irq
)
890 int evtchn
= evtchn_from_irq(irq
);
892 if (VALID_EVTCHN(evtchn
))
893 clear_evtchn(evtchn
);
896 void xen_set_irq_pending(int irq
)
898 int evtchn
= evtchn_from_irq(irq
);
900 if (VALID_EVTCHN(evtchn
))
904 bool xen_test_irq_pending(int irq
)
906 int evtchn
= evtchn_from_irq(irq
);
909 if (VALID_EVTCHN(evtchn
))
910 ret
= test_evtchn(evtchn
);
915 /* Poll waiting for an irq to become pending. In the usual case, the
916 irq will be disabled so it won't deliver an interrupt. */
917 void xen_poll_irq(int irq
)
919 evtchn_port_t evtchn
= evtchn_from_irq(irq
);
921 if (VALID_EVTCHN(evtchn
)) {
922 struct sched_poll poll
;
926 set_xen_guest_handle(poll
.ports
, &evtchn
);
928 if (HYPERVISOR_sched_op(SCHEDOP_poll
, &poll
) != 0)
933 void xen_irq_resume(void)
935 unsigned int cpu
, irq
, evtchn
;
937 init_evtchn_cpu_bindings();
939 /* New event-channel space is not 'live' yet. */
940 for (evtchn
= 0; evtchn
< NR_EVENT_CHANNELS
; evtchn
++)
943 /* No IRQ <-> event-channel mappings. */
944 for (irq
= 0; irq
< nr_irqs
; irq
++)
945 irq_info
[irq
].evtchn
= 0; /* zap event-channel binding */
947 for (evtchn
= 0; evtchn
< NR_EVENT_CHANNELS
; evtchn
++)
948 evtchn_to_irq
[evtchn
] = -1;
950 for_each_possible_cpu(cpu
) {
951 restore_cpu_virqs(cpu
);
952 restore_cpu_ipis(cpu
);
956 static struct irq_chip xen_dynamic_chip __read_mostly
= {
959 .disable
= disable_dynirq
,
960 .mask
= disable_dynirq
,
961 .unmask
= enable_dynirq
,
964 .set_affinity
= set_affinity_irq
,
965 .retrigger
= retrigger_dynirq
,
968 static struct irq_chip xen_percpu_chip __read_mostly
= {
969 .name
= "xen-percpu",
971 .disable
= disable_dynirq
,
972 .mask
= disable_dynirq
,
973 .unmask
= enable_dynirq
,
978 int xen_set_callback_via(uint64_t via
)
980 struct xen_hvm_param a
;
981 a
.domid
= DOMID_SELF
;
982 a
.index
= HVM_PARAM_CALLBACK_IRQ
;
984 return HYPERVISOR_hvm_op(HVMOP_set_param
, &a
);
986 EXPORT_SYMBOL_GPL(xen_set_callback_via
);
988 #ifdef CONFIG_XEN_PVHVM
989 /* Vector callbacks are better than PCI interrupts to receive event
990 * channel notifications because we can receive vector callbacks on any
991 * vcpu and we don't need PCI support or APIC interactions. */
992 void xen_callback_vector(void)
995 uint64_t callback_via
;
996 if (xen_have_vector_callback
) {
997 callback_via
= HVM_CALLBACK_VECTOR(XEN_HVM_EVTCHN_CALLBACK
);
998 rc
= xen_set_callback_via(callback_via
);
1000 printk(KERN_ERR
"Request for Xen HVM callback vector"
1002 xen_have_vector_callback
= 0;
1005 printk(KERN_INFO
"Xen HVM callback vector for event delivery is "
1007 /* in the restore case the vector has already been allocated */
1008 if (!test_bit(XEN_HVM_EVTCHN_CALLBACK
, used_vectors
))
1009 alloc_intr_gate(XEN_HVM_EVTCHN_CALLBACK
, xen_hvm_callback_vector
);
1013 void xen_callback_vector(void) {}
1016 void __init
xen_init_IRQ(void)
1020 cpu_evtchn_mask_p
= kcalloc(nr_cpu_ids
, sizeof(struct cpu_evtchn_s
),
1022 BUG_ON(cpu_evtchn_mask_p
== NULL
);
1024 init_evtchn_cpu_bindings();
1026 /* No event channels are 'live' right now. */
1027 for (i
= 0; i
< NR_EVENT_CHANNELS
; i
++)
1030 if (xen_hvm_domain()) {
1031 xen_callback_vector();
1034 irq_ctx_init(smp_processor_id());