1 #include <linux/hardirq.h>
3 #include <xen/interface/xen.h>
4 #include <xen/interface/sched.h>
5 #include <xen/interface/vcpu.h>
7 #include <asm/xen/hypercall.h>
8 #include <asm/xen/hypervisor.h>
13 * Force a proper event-channel callback from Xen after clearing the
14 * callback mask. We do this in a very simple manner, by making a call
15 * down into Xen. The pending flag will be checked by Xen on return.
17 void xen_force_evtchn_callback(void)
19 (void)HYPERVISOR_xen_version(0, NULL);
22 static void __init __xen_init_IRQ(void)
27 /* Create identity vector->irq map */
28 for(i = 0; i < NR_VECTORS; i++) {
31 for_each_possible_cpu(cpu)
32 per_cpu(vector_irq, cpu)[i] = i;
34 #endif /* CONFIG_X86_64 */
39 static unsigned long xen_save_fl(void)
41 struct vcpu_info *vcpu;
44 vcpu = x86_read_percpu(xen_vcpu);
46 /* flag has opposite sense of mask */
47 flags = !vcpu->evtchn_upcall_mask;
49 /* convert to IF type flag
53 return (-flags) & X86_EFLAGS_IF;
56 static void xen_restore_fl(unsigned long flags)
58 struct vcpu_info *vcpu;
60 /* convert from IF type flag */
61 flags = !(flags & X86_EFLAGS_IF);
63 /* There's a one instruction preempt window here. We need to
64 make sure we're don't switch CPUs between getting the vcpu
65 pointer and updating the mask. */
67 vcpu = x86_read_percpu(xen_vcpu);
68 vcpu->evtchn_upcall_mask = flags;
69 preempt_enable_no_resched();
71 /* Doesn't matter if we get preempted here, because any
72 pending event will get dealt with anyway. */
75 preempt_check_resched();
76 barrier(); /* unmask then check (avoid races) */
77 if (unlikely(vcpu->evtchn_upcall_pending))
78 xen_force_evtchn_callback();
82 static void xen_irq_disable(void)
84 /* There's a one instruction preempt window here. We need to
85 make sure we're don't switch CPUs between getting the vcpu
86 pointer and updating the mask. */
88 x86_read_percpu(xen_vcpu)->evtchn_upcall_mask = 1;
89 preempt_enable_no_resched();
92 static void xen_irq_enable(void)
94 struct vcpu_info *vcpu;
96 /* We don't need to worry about being preempted here, since
97 either a) interrupts are disabled, so no preemption, or b)
98 the caller is confused and is trying to re-enable interrupts
99 on an indeterminate processor. */
101 vcpu = x86_read_percpu(xen_vcpu);
102 vcpu->evtchn_upcall_mask = 0;
104 /* Doesn't matter if we get preempted here, because any
105 pending event will get dealt with anyway. */
107 barrier(); /* unmask then check (avoid races) */
108 if (unlikely(vcpu->evtchn_upcall_pending))
109 xen_force_evtchn_callback();
112 static void xen_safe_halt(void)
114 /* Blocking includes an implicit local_irq_enable(). */
115 if (HYPERVISOR_sched_op(SCHEDOP_block, NULL) != 0)
119 static void xen_halt(void)
122 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
127 static const struct pv_irq_ops xen_irq_ops __initdata = {
128 .init_IRQ = __xen_init_IRQ,
129 .save_fl = xen_save_fl,
130 .restore_fl = xen_restore_fl,
131 .irq_disable = xen_irq_disable,
132 .irq_enable = xen_irq_enable,
133 .safe_halt = xen_safe_halt,
136 .adjust_exception_frame = xen_adjust_exception_frame,
140 void __init xen_init_irq_ops()
142 pv_irq_ops = xen_irq_ops;