blob: 0da7f863056ff05fab1d31dc01e708bdc008badb [file] [log] [blame]
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -07001#include <linux/hardirq.h>
2
Thomas Gleixner66bcaf02009-08-20 09:59:09 +02003#include <asm/x86_init.h>
4
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -07005#include <xen/interface/xen.h>
6#include <xen/interface/sched.h>
7#include <xen/interface/vcpu.h>
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +00008#include <xen/events.h>
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -07009
10#include <asm/xen/hypercall.h>
11#include <asm/xen/hypervisor.h>
12
13#include "xen-ops.h"
14
15/*
16 * Force a proper event-channel callback from Xen after clearing the
17 * callback mask. We do this in a very simple manner, by making a call
18 * down into Xen. The pending flag will be checked by Xen on return.
19 */
20void xen_force_evtchn_callback(void)
21{
22 (void)HYPERVISOR_xen_version(0, NULL);
23}
24
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070025static unsigned long xen_save_fl(void)
26{
27 struct vcpu_info *vcpu;
28 unsigned long flags;
29
Alex Shi2113f462012-01-13 23:53:35 +080030 vcpu = this_cpu_read(xen_vcpu);
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070031
32 /* flag has opposite sense of mask */
33 flags = !vcpu->evtchn_upcall_mask;
34
35 /* convert to IF type flag
36 -0 -> 0x00000000
37 -1 -> 0xffffffff
38 */
39 return (-flags) & X86_EFLAGS_IF;
40}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080041PV_CALLEE_SAVE_REGS_THUNK(xen_save_fl);
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070042
43static void xen_restore_fl(unsigned long flags)
44{
45 struct vcpu_info *vcpu;
46
47 /* convert from IF type flag */
48 flags = !(flags & X86_EFLAGS_IF);
49
David Vrabelfb58e302013-08-15 13:21:04 +010050 /* See xen_irq_enable() for why preemption must be disabled. */
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070051 preempt_disable();
Alex Shi2113f462012-01-13 23:53:35 +080052 vcpu = this_cpu_read(xen_vcpu);
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070053 vcpu->evtchn_upcall_mask = flags;
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070054
55 if (flags == 0) {
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070056 barrier(); /* unmask then check (avoid races) */
57 if (unlikely(vcpu->evtchn_upcall_pending))
58 xen_force_evtchn_callback();
David Vrabelfb58e302013-08-15 13:21:04 +010059 preempt_enable();
60 } else
61 preempt_enable_no_resched();
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070062}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080063PV_CALLEE_SAVE_REGS_THUNK(xen_restore_fl);
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070064
65static void xen_irq_disable(void)
66{
67 /* There's a one instruction preempt window here. We need to
68 make sure we're don't switch CPUs between getting the vcpu
69 pointer and updating the mask. */
70 preempt_disable();
Alex Shi2113f462012-01-13 23:53:35 +080071 this_cpu_read(xen_vcpu)->evtchn_upcall_mask = 1;
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070072 preempt_enable_no_resched();
73}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080074PV_CALLEE_SAVE_REGS_THUNK(xen_irq_disable);
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070075
76static void xen_irq_enable(void)
77{
78 struct vcpu_info *vcpu;
79
David Vrabelfb58e302013-08-15 13:21:04 +010080 /*
81 * We may be preempted as soon as vcpu->evtchn_upcall_mask is
82 * cleared, so disable preemption to ensure we check for
83 * events on the VCPU we are still running on.
84 */
85 preempt_disable();
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070086
Alex Shi2113f462012-01-13 23:53:35 +080087 vcpu = this_cpu_read(xen_vcpu);
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070088 vcpu->evtchn_upcall_mask = 0;
89
90 /* Doesn't matter if we get preempted here, because any
91 pending event will get dealt with anyway. */
92
93 barrier(); /* unmask then check (avoid races) */
94 if (unlikely(vcpu->evtchn_upcall_pending))
95 xen_force_evtchn_callback();
David Vrabelfb58e302013-08-15 13:21:04 +010096
97 preempt_enable();
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -070098}
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -080099PV_CALLEE_SAVE_REGS_THUNK(xen_irq_enable);
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -0700100
101static void xen_safe_halt(void)
102{
103 /* Blocking includes an implicit local_irq_enable(). */
104 if (HYPERVISOR_sched_op(SCHEDOP_block, NULL) != 0)
105 BUG();
106}
107
108static void xen_halt(void)
109{
110 if (irqs_disabled())
111 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
112 else
113 xen_safe_halt();
114}
115
Daniel Kiper251511a2011-05-04 20:16:07 +0200116static const struct pv_irq_ops xen_irq_ops __initconst = {
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -0800117 .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),
121
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -0700122 .safe_halt = xen_safe_halt,
123 .halt = xen_halt,
124#ifdef CONFIG_X86_64
125 .adjust_exception_frame = xen_adjust_exception_frame,
126#endif
127};
128
Randy Dunlap7d81c3b2011-01-08 20:00:36 -0800129void __init xen_init_irq_ops(void)
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -0700130{
131 pv_irq_ops = xen_irq_ops;
Thomas Gleixner66bcaf02009-08-20 09:59:09 +0200132 x86_init.irqs.intr_init = xen_init_IRQ;
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -0700133}