igb: Simplify how we populate the RSS key
[linux-2.6/cjktty.git] / arch / x86 / xen / irq.c
blob1573376579714ec3b9a195a898090dba7ac20087
1 #include <linux/hardirq.h>
3 #include <asm/x86_init.h>
5 #include <xen/interface/xen.h>
6 #include <xen/interface/sched.h>
7 #include <xen/interface/vcpu.h>
9 #include <asm/xen/hypercall.h>
10 #include <asm/xen/hypervisor.h>
12 #include "xen-ops.h"
15 * Force a proper event-channel callback from Xen after clearing the
16 * callback mask. We do this in a very simple manner, by making a call
17 * down into Xen. The pending flag will be checked by Xen on return.
19 void xen_force_evtchn_callback(void)
21 (void)HYPERVISOR_xen_version(0, NULL);
24 static unsigned long xen_save_fl(void)
26 struct vcpu_info *vcpu;
27 unsigned long flags;
29 vcpu = this_cpu_read(xen_vcpu);
31 /* flag has opposite sense of mask */
32 flags = !vcpu->evtchn_upcall_mask;
34 /* convert to IF type flag
35 -0 -> 0x00000000
36 -1 -> 0xffffffff
38 return (-flags) & X86_EFLAGS_IF;
40 PV_CALLEE_SAVE_REGS_THUNK(xen_save_fl);
42 static void xen_restore_fl(unsigned long flags)
44 struct vcpu_info *vcpu;
46 /* convert from IF type flag */
47 flags = !(flags & X86_EFLAGS_IF);
49 /* There's a one instruction preempt window here. We need to
50 make sure we're don't switch CPUs between getting the vcpu
51 pointer and updating the mask. */
52 preempt_disable();
53 vcpu = this_cpu_read(xen_vcpu);
54 vcpu->evtchn_upcall_mask = flags;
55 preempt_enable_no_resched();
57 /* Doesn't matter if we get preempted here, because any
58 pending event will get dealt with anyway. */
60 if (flags == 0) {
61 preempt_check_resched();
62 barrier(); /* unmask then check (avoid races) */
63 if (unlikely(vcpu->evtchn_upcall_pending))
64 xen_force_evtchn_callback();
67 PV_CALLEE_SAVE_REGS_THUNK(xen_restore_fl);
69 static void xen_irq_disable(void)
71 /* There's a one instruction preempt window here. We need to
72 make sure we're don't switch CPUs between getting the vcpu
73 pointer and updating the mask. */
74 preempt_disable();
75 this_cpu_read(xen_vcpu)->evtchn_upcall_mask = 1;
76 preempt_enable_no_resched();
78 PV_CALLEE_SAVE_REGS_THUNK(xen_irq_disable);
80 static void xen_irq_enable(void)
82 struct vcpu_info *vcpu;
84 /* We don't need to worry about being preempted here, since
85 either a) interrupts are disabled, so no preemption, or b)
86 the caller is confused and is trying to re-enable interrupts
87 on an indeterminate processor. */
89 vcpu = this_cpu_read(xen_vcpu);
90 vcpu->evtchn_upcall_mask = 0;
92 /* Doesn't matter if we get preempted here, because any
93 pending event will get dealt with anyway. */
95 barrier(); /* unmask then check (avoid races) */
96 if (unlikely(vcpu->evtchn_upcall_pending))
97 xen_force_evtchn_callback();
99 PV_CALLEE_SAVE_REGS_THUNK(xen_irq_enable);
101 static void xen_safe_halt(void)
103 /* Blocking includes an implicit local_irq_enable(). */
104 if (HYPERVISOR_sched_op(SCHEDOP_block, NULL) != 0)
105 BUG();
108 static void xen_halt(void)
110 if (irqs_disabled())
111 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
112 else
113 xen_safe_halt();
116 static const struct pv_irq_ops xen_irq_ops __initconst = {
117 .save_fl = PV_CALLEE_SAVE(xen_save_fl),
118 .restore_fl = PV_CALLEE_SAVE(xen_restore_fl),
119 .irq_disable = PV_CALLEE_SAVE(xen_irq_disable),
120 .irq_enable = PV_CALLEE_SAVE(xen_irq_enable),
122 .safe_halt = xen_safe_halt,
123 .halt = xen_halt,
124 #ifdef CONFIG_X86_64
125 .adjust_exception_frame = xen_adjust_exception_frame,
126 #endif
129 void __init xen_init_irq_ops(void)
131 pv_irq_ops = xen_irq_ops;
132 x86_init.irqs.intr_init = xen_init_IRQ;