blob: 32269bcbd88cfc33ce85ac04ebb964d9b26aa5e4 [file] [log] [blame]
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001/*
2 * Xen event channels
3 *
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.
10 *
11 * There are four kinds of events which can be mapped to an event
12 * channel:
13 *
14 * 1. Inter-domain notifications. This includes all the virtual
15 * device events, since they're driven by front-ends in another domain
16 * (typically dom0).
17 * 2. VIRQs, typically used for timers. These are per-cpu events.
18 * 3. IPIs.
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -040019 * 4. PIRQs - Hardware interrupts.
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070020 *
21 * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007
22 */
23
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>
Christophe Saout28e08862009-01-11 11:46:23 -080029#include <linux/bootmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Jeremy Fitzhardingeb21ddbf2010-06-07 16:28:49 -040031#include <linux/irqnr.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070032
Sheng Yang38e20b02010-05-14 12:40:51 +010033#include <asm/desc.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070034#include <asm/ptrace.h>
35#include <asm/irq.h>
Jeremy Fitzhardinge792dc4f2009-02-06 14:09:43 -080036#include <asm/idle.h>
Konrad Rzeszutek Wilk0794bfc2010-10-18 10:41:08 -040037#include <asm/io_apic.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070038#include <asm/sync_bitops.h>
Stefano Stabellini42a1de52010-06-24 16:42:04 +010039#include <asm/xen/pci.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070040#include <asm/xen/hypercall.h>
Adrian Bunk8d1b8752007-07-20 00:31:44 -070041#include <asm/xen/hypervisor.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070042
Sheng Yang38e20b02010-05-14 12:40:51 +010043#include <xen/xen.h>
44#include <xen/hvm.h>
Isaku Yamahatae04d0d02008-04-02 10:53:55 -070045#include <xen/xen-ops.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070046#include <xen/events.h>
47#include <xen/interface/xen.h>
48#include <xen/interface/event_channel.h>
Sheng Yang38e20b02010-05-14 12:40:51 +010049#include <xen/interface/hvm/hvm_op.h>
50#include <xen/interface/hvm/params.h>
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070051
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070052/*
53 * This lock protects updates to the following mapping and reference-count
54 * arrays. The lock does not need to be acquired to read the mapping tables.
55 */
56static DEFINE_SPINLOCK(irq_mapping_update_lock);
57
58/* IRQ <-> VIRQ mapping. */
Tejun Heo204fba42009-06-24 15:13:45 +090059static DEFINE_PER_CPU(int [NR_VIRQS], virq_to_irq) = {[0 ... NR_VIRQS-1] = -1};
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070060
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070061/* IRQ <-> IPI mapping */
Tejun Heo204fba42009-06-24 15:13:45 +090062static DEFINE_PER_CPU(int [XEN_NR_IPIS], ipi_to_irq) = {[0 ... XEN_NR_IPIS-1] = -1};
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070063
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -080064/* Interrupt types. */
65enum xen_irq_type {
Jeremy Fitzhardinged77bbd42009-02-06 14:09:45 -080066 IRQT_UNBOUND = 0,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070067 IRQT_PIRQ,
68 IRQT_VIRQ,
69 IRQT_IPI,
70 IRQT_EVTCHN
71};
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -070072
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -080073/*
74 * Packed IRQ information:
75 * type - enum xen_irq_type
76 * event channel - irq->event channel mapping
77 * cpu - cpu this event channel is bound to
78 * index - type-specific information:
Stefano Stabellini42a1de52010-06-24 16:42:04 +010079 * PIRQ - vector, with MSB being "needs EIO", or physical IRQ of the HVM
80 * guest, or GSI (real passthrough IRQ) of the device.
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -080081 * VIRQ - virq number
82 * IPI - IPI vector
83 * EVTCHN -
84 */
85struct irq_info
86{
87 enum xen_irq_type type; /* type */
88 unsigned short evtchn; /* event channel */
89 unsigned short cpu; /* cpu bound */
90
91 union {
92 unsigned short virq;
93 enum ipi_vector ipi;
94 struct {
Stefano Stabellini7a043f12010-07-01 17:08:14 +010095 unsigned short pirq;
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -080096 unsigned short gsi;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -040097 unsigned char vector;
98 unsigned char flags;
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -080099 } pirq;
100 } u;
101};
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400102#define PIRQ_NEEDS_EOI (1 << 0)
Konrad Rzeszutek Wilk15ebbb82010-10-04 13:43:27 -0400103#define PIRQ_SHAREABLE (1 << 1)
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800104
Jeremy Fitzhardingeb21ddbf2010-06-07 16:28:49 -0400105static struct irq_info *irq_info;
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100106static int *pirq_to_irq;
Stefano Stabellini01557ba2010-08-20 14:46:52 +0100107static int nr_pirqs;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700108
Jeremy Fitzhardingeb21ddbf2010-06-07 16:28:49 -0400109static int *evtchn_to_irq;
Mike Travisc7a35892009-01-10 21:58:11 -0800110struct cpu_evtchn_s {
111 unsigned long bits[NR_EVENT_CHANNELS/BITS_PER_LONG];
112};
Jeremy Fitzhardinge3b32f572009-08-13 12:50:37 -0700113
114static __initdata struct cpu_evtchn_s init_evtchn_mask = {
115 .bits[0 ... (NR_EVENT_CHANNELS/BITS_PER_LONG)-1] = ~0ul,
116};
117static struct cpu_evtchn_s *cpu_evtchn_mask_p = &init_evtchn_mask;
118
Mike Travisc7a35892009-01-10 21:58:11 -0800119static inline unsigned long *cpu_evtchn_mask(int cpu)
120{
121 return cpu_evtchn_mask_p[cpu].bits;
122}
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700123
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700124/* Xen will never allocate port zero for any purpose. */
125#define VALID_EVTCHN(chn) ((chn) != 0)
126
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700127static struct irq_chip xen_dynamic_chip;
Jeremy Fitzhardingeaaca4962010-08-20 18:57:53 -0700128static struct irq_chip xen_percpu_chip;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400129static struct irq_chip xen_pirq_chip;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700130
131/* Constructor for packed IRQ information. */
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800132static struct irq_info mk_unbound_info(void)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700133{
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800134 return (struct irq_info) { .type = IRQT_UNBOUND };
135}
136
137static struct irq_info mk_evtchn_info(unsigned short evtchn)
138{
Ian Campbell90af9512009-02-06 16:55:58 -0800139 return (struct irq_info) { .type = IRQT_EVTCHN, .evtchn = evtchn,
140 .cpu = 0 };
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800141}
142
143static struct irq_info mk_ipi_info(unsigned short evtchn, enum ipi_vector ipi)
144{
145 return (struct irq_info) { .type = IRQT_IPI, .evtchn = evtchn,
Ian Campbell90af9512009-02-06 16:55:58 -0800146 .cpu = 0, .u.ipi = ipi };
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800147}
148
149static struct irq_info mk_virq_info(unsigned short evtchn, unsigned short virq)
150{
151 return (struct irq_info) { .type = IRQT_VIRQ, .evtchn = evtchn,
Ian Campbell90af9512009-02-06 16:55:58 -0800152 .cpu = 0, .u.virq = virq };
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800153}
154
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100155static struct irq_info mk_pirq_info(unsigned short evtchn, unsigned short pirq,
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800156 unsigned short gsi, unsigned short vector)
157{
158 return (struct irq_info) { .type = IRQT_PIRQ, .evtchn = evtchn,
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100159 .cpu = 0,
160 .u.pirq = { .pirq = pirq, .gsi = gsi, .vector = vector } };
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700161}
162
163/*
164 * Accessors for packed IRQ information.
165 */
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800166static struct irq_info *info_for_irq(unsigned irq)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700167{
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800168 return &irq_info[irq];
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700169}
170
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800171static unsigned int evtchn_from_irq(unsigned irq)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700172{
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800173 return info_for_irq(irq)->evtchn;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700174}
175
Ian Campbelld4c04532009-02-06 19:20:31 -0800176unsigned irq_from_evtchn(unsigned int evtchn)
177{
178 return evtchn_to_irq[evtchn];
179}
180EXPORT_SYMBOL_GPL(irq_from_evtchn);
181
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800182static enum ipi_vector ipi_from_irq(unsigned irq)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700183{
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800184 struct irq_info *info = info_for_irq(irq);
185
186 BUG_ON(info == NULL);
187 BUG_ON(info->type != IRQT_IPI);
188
189 return info->u.ipi;
190}
191
192static unsigned virq_from_irq(unsigned irq)
193{
194 struct irq_info *info = info_for_irq(irq);
195
196 BUG_ON(info == NULL);
197 BUG_ON(info->type != IRQT_VIRQ);
198
199 return info->u.virq;
200}
201
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100202static unsigned pirq_from_irq(unsigned irq)
203{
204 struct irq_info *info = info_for_irq(irq);
205
206 BUG_ON(info == NULL);
207 BUG_ON(info->type != IRQT_PIRQ);
208
209 return info->u.pirq.pirq;
210}
211
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800212static unsigned gsi_from_irq(unsigned irq)
213{
214 struct irq_info *info = info_for_irq(irq);
215
216 BUG_ON(info == NULL);
217 BUG_ON(info->type != IRQT_PIRQ);
218
219 return info->u.pirq.gsi;
220}
221
222static unsigned vector_from_irq(unsigned irq)
223{
224 struct irq_info *info = info_for_irq(irq);
225
226 BUG_ON(info == NULL);
227 BUG_ON(info->type != IRQT_PIRQ);
228
229 return info->u.pirq.vector;
230}
231
232static enum xen_irq_type type_from_irq(unsigned irq)
233{
234 return info_for_irq(irq)->type;
235}
236
237static unsigned cpu_from_irq(unsigned irq)
238{
239 return info_for_irq(irq)->cpu;
240}
241
242static unsigned int cpu_from_evtchn(unsigned int evtchn)
243{
244 int irq = evtchn_to_irq[evtchn];
245 unsigned ret = 0;
246
247 if (irq != -1)
248 ret = cpu_from_irq(irq);
249
250 return ret;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700251}
252
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400253static bool pirq_needs_eoi(unsigned irq)
254{
255 struct irq_info *info = info_for_irq(irq);
256
257 BUG_ON(info->type != IRQT_PIRQ);
258
259 return info->u.pirq.flags & PIRQ_NEEDS_EOI;
260}
261
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700262static inline unsigned long active_evtchns(unsigned int cpu,
263 struct shared_info *sh,
264 unsigned int idx)
265{
266 return (sh->evtchn_pending[idx] &
Mike Travisc7a35892009-01-10 21:58:11 -0800267 cpu_evtchn_mask(cpu)[idx] &
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700268 ~sh->evtchn_mask[idx]);
269}
270
271static void bind_evtchn_to_cpu(unsigned int chn, unsigned int cpu)
272{
273 int irq = evtchn_to_irq[chn];
274
275 BUG_ON(irq == -1);
276#ifdef CONFIG_SMP
Mike Travis7f7ace02009-01-10 21:58:08 -0800277 cpumask_copy(irq_to_desc(irq)->affinity, cpumask_of(cpu));
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700278#endif
279
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800280 __clear_bit(chn, cpu_evtchn_mask(cpu_from_irq(irq)));
Mike Travisc7a35892009-01-10 21:58:11 -0800281 __set_bit(chn, cpu_evtchn_mask(cpu));
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700282
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800283 irq_info[irq].cpu = cpu;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700284}
285
286static void init_evtchn_cpu_bindings(void)
287{
288#ifdef CONFIG_SMP
Thomas Gleixner10e58082008-10-16 14:19:04 +0200289 struct irq_desc *desc;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700290 int i;
Thomas Gleixner10e58082008-10-16 14:19:04 +0200291
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700292 /* By default all event channels notify CPU#0. */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800293 for_each_irq_desc(i, desc) {
Mike Travis7f7ace02009-01-10 21:58:08 -0800294 cpumask_copy(desc->affinity, cpumask_of(0));
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800295 }
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700296#endif
297
Mike Travisc7a35892009-01-10 21:58:11 -0800298 memset(cpu_evtchn_mask(0), ~0, sizeof(cpu_evtchn_mask(0)));
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700299}
300
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700301static inline void clear_evtchn(int port)
302{
303 struct shared_info *s = HYPERVISOR_shared_info;
304 sync_clear_bit(port, &s->evtchn_pending[0]);
305}
306
307static inline void set_evtchn(int port)
308{
309 struct shared_info *s = HYPERVISOR_shared_info;
310 sync_set_bit(port, &s->evtchn_pending[0]);
311}
312
Jeremy Fitzhardinge168d2f42008-08-20 17:02:18 -0700313static inline int test_evtchn(int port)
314{
315 struct shared_info *s = HYPERVISOR_shared_info;
316 return sync_test_bit(port, &s->evtchn_pending[0]);
317}
318
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700319
320/**
321 * notify_remote_via_irq - send event to remote end of event channel via irq
322 * @irq: irq of event channel to send event to
323 *
324 * Unlike notify_remote_via_evtchn(), this is safe to use across
325 * save/restore. Notifications on a broken connection are silently
326 * dropped.
327 */
328void notify_remote_via_irq(int irq)
329{
330 int evtchn = evtchn_from_irq(irq);
331
332 if (VALID_EVTCHN(evtchn))
333 notify_remote_via_evtchn(evtchn);
334}
335EXPORT_SYMBOL_GPL(notify_remote_via_irq);
336
337static void mask_evtchn(int port)
338{
339 struct shared_info *s = HYPERVISOR_shared_info;
340 sync_set_bit(port, &s->evtchn_mask[0]);
341}
342
343static void unmask_evtchn(int port)
344{
345 struct shared_info *s = HYPERVISOR_shared_info;
346 unsigned int cpu = get_cpu();
347
348 BUG_ON(!irqs_disabled());
349
350 /* Slow path (hypercall) if this is a non-local port. */
351 if (unlikely(cpu != cpu_from_evtchn(port))) {
352 struct evtchn_unmask unmask = { .port = port };
353 (void)HYPERVISOR_event_channel_op(EVTCHNOP_unmask, &unmask);
354 } else {
355 struct vcpu_info *vcpu_info = __get_cpu_var(xen_vcpu);
356
357 sync_clear_bit(port, &s->evtchn_mask[0]);
358
359 /*
360 * The following is basically the equivalent of
361 * 'hw_resend_irq'. Just like a real IO-APIC we 'lose
362 * the interrupt edge' if the channel is masked.
363 */
364 if (sync_test_bit(port, &s->evtchn_pending[0]) &&
365 !sync_test_and_set_bit(port / BITS_PER_LONG,
366 &vcpu_info->evtchn_pending_sel))
367 vcpu_info->evtchn_upcall_pending = 1;
368 }
369
370 put_cpu();
371}
372
Konrad Rzeszutek Wilk0794bfc2010-10-18 10:41:08 -0400373static int get_nr_hw_irqs(void)
374{
375 int ret = 1;
376
377#ifdef CONFIG_X86_IO_APIC
378 ret = get_nr_irqs_gsi();
379#endif
380
381 return ret;
382}
383
Stefano Stabellini01557ba2010-08-20 14:46:52 +0100384/* callers of this function should make sure that PHYSDEVOP_get_nr_pirqs
385 * succeeded otherwise nr_pirqs won't hold the right value */
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100386static int find_unbound_pirq(void)
387{
388 int i;
Stefano Stabellini01557ba2010-08-20 14:46:52 +0100389 for (i = nr_pirqs-1; i >= 0; i--) {
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100390 if (pirq_to_irq[i] < 0)
391 return i;
392 }
393 return -1;
394}
395
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700396static int find_unbound_irq(void)
397{
Thomas Gleixner77dff1c2010-09-29 17:37:10 +0200398 struct irq_data *data;
399 int irq, res;
Konrad Rzeszutek Wilk3a69e912010-10-18 10:49:10 -0400400 int start = get_nr_hw_irqs();
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700401
Konrad Rzeszutek Wilk3a69e912010-10-18 10:49:10 -0400402 if (start == nr_irqs)
403 goto no_irqs;
404
405 /* nr_irqs is a magic value. Must not use it.*/
406 for (irq = nr_irqs-1; irq > start; irq--) {
Thomas Gleixner77dff1c2010-09-29 17:37:10 +0200407 data = irq_get_irq_data(irq);
Stefano Stabellini99ad1982010-05-14 12:41:20 +0100408 /* only 0->15 have init'd desc; handle irq > 16 */
Thomas Gleixner77dff1c2010-09-29 17:37:10 +0200409 if (!data)
Stefano Stabellini99ad1982010-05-14 12:41:20 +0100410 break;
Thomas Gleixner77dff1c2010-09-29 17:37:10 +0200411 if (data->chip == &no_irq_chip)
Stefano Stabellini99ad1982010-05-14 12:41:20 +0100412 break;
Thomas Gleixner77dff1c2010-09-29 17:37:10 +0200413 if (data->chip != &xen_dynamic_chip)
Stefano Stabellini99ad1982010-05-14 12:41:20 +0100414 continue;
Jeremy Fitzhardinged77bbd42009-02-06 14:09:45 -0800415 if (irq_info[irq].type == IRQT_UNBOUND)
Thomas Gleixner77dff1c2010-09-29 17:37:10 +0200416 return irq;
Stefano Stabellini99ad1982010-05-14 12:41:20 +0100417 }
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700418
Konrad Rzeszutek Wilk3a69e912010-10-18 10:49:10 -0400419 if (irq == start)
420 goto no_irqs;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700421
Thomas Gleixner77dff1c2010-09-29 17:37:10 +0200422 res = irq_alloc_desc_at(irq, 0);
Jeremy Fitzhardinge6f8a0ed2008-12-17 13:42:29 -0800423
Thomas Gleixner77dff1c2010-09-29 17:37:10 +0200424 if (WARN_ON(res != irq))
425 return -1;
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800426
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700427 return irq;
Konrad Rzeszutek Wilk3a69e912010-10-18 10:49:10 -0400428
429no_irqs:
430 panic("No available IRQ to bind to: increase nr_irqs!\n");
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700431}
432
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400433static bool identity_mapped_irq(unsigned irq)
434{
Konrad Rzeszutek Wilk0794bfc2010-10-18 10:41:08 -0400435 /* identity map all the hardware irqs */
436 return irq < get_nr_hw_irqs();
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400437}
438
439static void pirq_unmask_notify(int irq)
440{
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100441 struct physdev_eoi eoi = { .irq = pirq_from_irq(irq) };
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400442
443 if (unlikely(pirq_needs_eoi(irq))) {
444 int rc = HYPERVISOR_physdev_op(PHYSDEVOP_eoi, &eoi);
445 WARN_ON(rc);
446 }
447}
448
449static void pirq_query_unmask(int irq)
450{
451 struct physdev_irq_status_query irq_status;
452 struct irq_info *info = info_for_irq(irq);
453
454 BUG_ON(info->type != IRQT_PIRQ);
455
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100456 irq_status.irq = pirq_from_irq(irq);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400457 if (HYPERVISOR_physdev_op(PHYSDEVOP_irq_status_query, &irq_status))
458 irq_status.flags = 0;
459
460 info->u.pirq.flags &= ~PIRQ_NEEDS_EOI;
461 if (irq_status.flags & XENIRQSTAT_needs_eoi)
462 info->u.pirq.flags |= PIRQ_NEEDS_EOI;
463}
464
465static bool probing_irq(int irq)
466{
467 struct irq_desc *desc = irq_to_desc(irq);
468
469 return desc && desc->action == NULL;
470}
471
472static unsigned int startup_pirq(unsigned int irq)
473{
474 struct evtchn_bind_pirq bind_pirq;
475 struct irq_info *info = info_for_irq(irq);
476 int evtchn = evtchn_from_irq(irq);
Konrad Rzeszutek Wilk15ebbb82010-10-04 13:43:27 -0400477 int rc;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400478
479 BUG_ON(info->type != IRQT_PIRQ);
480
481 if (VALID_EVTCHN(evtchn))
482 goto out;
483
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100484 bind_pirq.pirq = pirq_from_irq(irq);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400485 /* NB. We are happy to share unless we are probing. */
Konrad Rzeszutek Wilk15ebbb82010-10-04 13:43:27 -0400486 bind_pirq.flags = info->u.pirq.flags & PIRQ_SHAREABLE ?
487 BIND_PIRQ__WILL_SHARE : 0;
488 rc = HYPERVISOR_event_channel_op(EVTCHNOP_bind_pirq, &bind_pirq);
489 if (rc != 0) {
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400490 if (!probing_irq(irq))
491 printk(KERN_INFO "Failed to obtain physical IRQ %d\n",
492 irq);
493 return 0;
494 }
495 evtchn = bind_pirq.port;
496
497 pirq_query_unmask(irq);
498
499 evtchn_to_irq[evtchn] = irq;
500 bind_evtchn_to_cpu(evtchn, 0);
501 info->evtchn = evtchn;
502
503out:
504 unmask_evtchn(evtchn);
505 pirq_unmask_notify(irq);
506
507 return 0;
508}
509
510static void shutdown_pirq(unsigned int irq)
511{
512 struct evtchn_close close;
513 struct irq_info *info = info_for_irq(irq);
514 int evtchn = evtchn_from_irq(irq);
515
516 BUG_ON(info->type != IRQT_PIRQ);
517
518 if (!VALID_EVTCHN(evtchn))
519 return;
520
521 mask_evtchn(evtchn);
522
523 close.port = evtchn;
524 if (HYPERVISOR_event_channel_op(EVTCHNOP_close, &close) != 0)
525 BUG();
526
527 bind_evtchn_to_cpu(evtchn, 0);
528 evtchn_to_irq[evtchn] = -1;
529 info->evtchn = 0;
530}
531
532static void enable_pirq(unsigned int irq)
533{
534 startup_pirq(irq);
535}
536
537static void disable_pirq(unsigned int irq)
538{
539}
540
541static void ack_pirq(unsigned int irq)
542{
543 int evtchn = evtchn_from_irq(irq);
544
545 move_native_irq(irq);
546
547 if (VALID_EVTCHN(evtchn)) {
548 mask_evtchn(evtchn);
549 clear_evtchn(evtchn);
550 }
551}
552
553static void end_pirq(unsigned int irq)
554{
555 int evtchn = evtchn_from_irq(irq);
556 struct irq_desc *desc = irq_to_desc(irq);
557
558 if (WARN_ON(!desc))
559 return;
560
561 if ((desc->status & (IRQ_DISABLED|IRQ_PENDING)) ==
562 (IRQ_DISABLED|IRQ_PENDING)) {
563 shutdown_pirq(irq);
564 } else if (VALID_EVTCHN(evtchn)) {
565 unmask_evtchn(evtchn);
566 pirq_unmask_notify(irq);
567 }
568}
569
570static int find_irq_by_gsi(unsigned gsi)
571{
572 int irq;
573
Jeremy Fitzhardingeb21ddbf2010-06-07 16:28:49 -0400574 for (irq = 0; irq < nr_irqs; irq++) {
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400575 struct irq_info *info = info_for_irq(irq);
576
577 if (info == NULL || info->type != IRQT_PIRQ)
578 continue;
579
580 if (gsi_from_irq(irq) == gsi)
581 return irq;
582 }
583
584 return -1;
585}
586
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100587int xen_allocate_pirq(unsigned gsi, int shareable, char *name)
588{
589 return xen_map_pirq_gsi(gsi, gsi, shareable, name);
590}
591
592/* xen_map_pirq_gsi might allocate irqs from the top down, as a
Konrad Rzeszutek Wilk3a69e912010-10-18 10:49:10 -0400593 * consequence don't assume that the irq number returned has a low value
594 * or can be used as a pirq number unless you know otherwise.
595 *
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100596 * One notable exception is when xen_map_pirq_gsi is called passing an
Konrad Rzeszutek Wilk3a69e912010-10-18 10:49:10 -0400597 * hardware gsi as argument, in that case the irq number returned
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100598 * matches the gsi number passed as second argument.
599 *
600 * Note: We don't assign an event channel until the irq actually started
601 * up. Return an existing irq if we've already got one for the gsi.
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400602 */
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100603int xen_map_pirq_gsi(unsigned pirq, unsigned gsi, int shareable, char *name)
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400604{
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100605 int irq = 0;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400606 struct physdev_irq irq_op;
607
608 spin_lock(&irq_mapping_update_lock);
609
Stefano Stabellini01557ba2010-08-20 14:46:52 +0100610 if ((pirq > nr_pirqs) || (gsi > nr_irqs)) {
611 printk(KERN_WARNING "xen_map_pirq_gsi: %s %s is incorrect!\n",
612 pirq > nr_pirqs ? "nr_pirqs" :"",
613 gsi > nr_irqs ? "nr_irqs" : "");
614 goto out;
615 }
616
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400617 irq = find_irq_by_gsi(gsi);
618 if (irq != -1) {
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100619 printk(KERN_INFO "xen_map_pirq_gsi: returning irq %d for gsi %u\n",
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400620 irq, gsi);
621 goto out; /* XXX need refcount? */
622 }
623
Alex Nixonb5401a92010-03-18 16:31:34 -0400624 /* If we are a PV guest, we don't have GSIs (no ACPI passed). Therefore
625 * we are using the !xen_initial_domain() to drop in the function.*/
Stefano Stabellini3942b742010-06-24 17:50:18 +0100626 if (identity_mapped_irq(gsi) || (!xen_initial_domain() &&
627 xen_pv_domain())) {
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400628 irq = gsi;
Konrad Rzeszutek Wilk2c52f8d2010-10-18 17:11:10 -0400629 irq_alloc_desc_at(irq, 0);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400630 } else
631 irq = find_unbound_irq();
632
633 set_irq_chip_and_handler_name(irq, &xen_pirq_chip,
Gerd Hoffmann1a60d052010-10-04 13:42:27 -0400634 handle_level_irq, name);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400635
636 irq_op.irq = irq;
Alex Nixonb5401a92010-03-18 16:31:34 -0400637 irq_op.vector = 0;
638
639 /* Only the privileged domain can do this. For non-priv, the pcifront
640 * driver provides a PCI bus that does the call to do exactly
641 * this in the priv domain. */
642 if (xen_initial_domain() &&
643 HYPERVISOR_physdev_op(PHYSDEVOP_alloc_irq_vector, &irq_op)) {
Konrad Rzeszutek Wilk2c52f8d2010-10-18 17:11:10 -0400644 irq_free_desc(irq);
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400645 irq = -ENOSPC;
646 goto out;
647 }
648
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100649 irq_info[irq] = mk_pirq_info(0, pirq, gsi, irq_op.vector);
Konrad Rzeszutek Wilk15ebbb82010-10-04 13:43:27 -0400650 irq_info[irq].u.pirq.flags |= shareable ? PIRQ_SHAREABLE : 0;
Stefano Stabellini7a043f12010-07-01 17:08:14 +0100651 pirq_to_irq[pirq] = irq;
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400652
653out:
654 spin_unlock(&irq_mapping_update_lock);
655
656 return irq;
657}
658
Alex Nixonb5401a92010-03-18 16:31:34 -0400659int xen_destroy_irq(int irq)
660{
661 struct irq_desc *desc;
662 int rc = -ENOENT;
663
664 spin_lock(&irq_mapping_update_lock);
665
666 desc = irq_to_desc(irq);
667 if (!desc)
668 goto out;
669
670 irq_info[irq] = mk_unbound_info();
671
Konrad Rzeszutek Wilk2c52f8d2010-10-18 17:11:10 -0400672 irq_free_desc(irq);
Alex Nixonb5401a92010-03-18 16:31:34 -0400673
674out:
675 spin_unlock(&irq_mapping_update_lock);
676 return rc;
677}
678
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -0400679int xen_vector_from_irq(unsigned irq)
680{
681 return vector_from_irq(irq);
682}
683
684int xen_gsi_from_irq(unsigned irq)
685{
686 return gsi_from_irq(irq);
687}
688
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700689int bind_evtchn_to_irq(unsigned int evtchn)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700690{
691 int irq;
692
693 spin_lock(&irq_mapping_update_lock);
694
695 irq = evtchn_to_irq[evtchn];
696
697 if (irq == -1) {
698 irq = find_unbound_irq();
699
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700700 set_irq_chip_and_handler_name(irq, &xen_dynamic_chip,
Jeremy Fitzhardingedffe2e12010-08-20 19:10:01 -0700701 handle_edge_irq, "event");
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700702
703 evtchn_to_irq[evtchn] = irq;
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800704 irq_info[irq] = mk_evtchn_info(evtchn);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700705 }
706
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700707 spin_unlock(&irq_mapping_update_lock);
708
709 return irq;
710}
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700711EXPORT_SYMBOL_GPL(bind_evtchn_to_irq);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700712
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700713static int bind_ipi_to_irq(unsigned int ipi, unsigned int cpu)
714{
715 struct evtchn_bind_ipi bind_ipi;
716 int evtchn, irq;
717
718 spin_lock(&irq_mapping_update_lock);
719
720 irq = per_cpu(ipi_to_irq, cpu)[ipi];
Ian Campbell90af9512009-02-06 16:55:58 -0800721
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700722 if (irq == -1) {
723 irq = find_unbound_irq();
724 if (irq < 0)
725 goto out;
726
Jeremy Fitzhardingeaaca4962010-08-20 18:57:53 -0700727 set_irq_chip_and_handler_name(irq, &xen_percpu_chip,
728 handle_percpu_irq, "ipi");
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700729
730 bind_ipi.vcpu = cpu;
731 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi,
732 &bind_ipi) != 0)
733 BUG();
734 evtchn = bind_ipi.port;
735
736 evtchn_to_irq[evtchn] = irq;
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800737 irq_info[irq] = mk_ipi_info(evtchn, ipi);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700738 per_cpu(ipi_to_irq, cpu)[ipi] = irq;
739
740 bind_evtchn_to_cpu(evtchn, cpu);
741 }
742
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700743 out:
744 spin_unlock(&irq_mapping_update_lock);
745 return irq;
746}
747
748
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700749static int bind_virq_to_irq(unsigned int virq, unsigned int cpu)
750{
751 struct evtchn_bind_virq bind_virq;
752 int evtchn, irq;
753
754 spin_lock(&irq_mapping_update_lock);
755
756 irq = per_cpu(virq_to_irq, cpu)[virq];
757
758 if (irq == -1) {
759 bind_virq.virq = virq;
760 bind_virq.vcpu = cpu;
761 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
762 &bind_virq) != 0)
763 BUG();
764 evtchn = bind_virq.port;
765
766 irq = find_unbound_irq();
767
Jeremy Fitzhardingeaaca4962010-08-20 18:57:53 -0700768 set_irq_chip_and_handler_name(irq, &xen_percpu_chip,
769 handle_percpu_irq, "virq");
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700770
771 evtchn_to_irq[evtchn] = irq;
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800772 irq_info[irq] = mk_virq_info(evtchn, virq);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700773
774 per_cpu(virq_to_irq, cpu)[virq] = irq;
775
776 bind_evtchn_to_cpu(evtchn, cpu);
777 }
778
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700779 spin_unlock(&irq_mapping_update_lock);
780
781 return irq;
782}
783
784static void unbind_from_irq(unsigned int irq)
785{
786 struct evtchn_close close;
787 int evtchn = evtchn_from_irq(irq);
788
789 spin_lock(&irq_mapping_update_lock);
790
Jeremy Fitzhardinged77bbd42009-02-06 14:09:45 -0800791 if (VALID_EVTCHN(evtchn)) {
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700792 close.port = evtchn;
793 if (HYPERVISOR_event_channel_op(EVTCHNOP_close, &close) != 0)
794 BUG();
795
796 switch (type_from_irq(irq)) {
797 case IRQT_VIRQ:
798 per_cpu(virq_to_irq, cpu_from_evtchn(evtchn))
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800799 [virq_from_irq(irq)] = -1;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700800 break;
Alex Nixond68d82a2008-08-22 11:52:15 +0100801 case IRQT_IPI:
802 per_cpu(ipi_to_irq, cpu_from_evtchn(evtchn))
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800803 [ipi_from_irq(irq)] = -1;
Alex Nixond68d82a2008-08-22 11:52:15 +0100804 break;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700805 default:
806 break;
807 }
808
809 /* Closed ports are implicitly re-bound to VCPU0. */
810 bind_evtchn_to_cpu(evtchn, 0);
811
812 evtchn_to_irq[evtchn] = -1;
Ian Campbellfed5ea82009-12-01 16:15:30 +0000813 }
814
815 if (irq_info[irq].type != IRQT_UNBOUND) {
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800816 irq_info[irq] = mk_unbound_info();
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700817
Thomas Gleixner77dff1c2010-09-29 17:37:10 +0200818 irq_free_desc(irq);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700819 }
820
821 spin_unlock(&irq_mapping_update_lock);
822}
823
824int bind_evtchn_to_irqhandler(unsigned int evtchn,
Jeff Garzik7c239972007-10-19 03:12:20 -0400825 irq_handler_t handler,
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700826 unsigned long irqflags,
827 const char *devname, void *dev_id)
828{
829 unsigned int irq;
830 int retval;
831
832 irq = bind_evtchn_to_irq(evtchn);
833 retval = request_irq(irq, handler, irqflags, devname, dev_id);
834 if (retval != 0) {
835 unbind_from_irq(irq);
836 return retval;
837 }
838
839 return irq;
840}
841EXPORT_SYMBOL_GPL(bind_evtchn_to_irqhandler);
842
843int bind_virq_to_irqhandler(unsigned int virq, unsigned int cpu,
Jeff Garzik7c239972007-10-19 03:12:20 -0400844 irq_handler_t handler,
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700845 unsigned long irqflags, const char *devname, void *dev_id)
846{
847 unsigned int irq;
848 int retval;
849
850 irq = bind_virq_to_irq(virq, cpu);
851 retval = request_irq(irq, handler, irqflags, devname, dev_id);
852 if (retval != 0) {
853 unbind_from_irq(irq);
854 return retval;
855 }
856
857 return irq;
858}
859EXPORT_SYMBOL_GPL(bind_virq_to_irqhandler);
860
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700861int bind_ipi_to_irqhandler(enum ipi_vector ipi,
862 unsigned int cpu,
863 irq_handler_t handler,
864 unsigned long irqflags,
865 const char *devname,
866 void *dev_id)
867{
868 int irq, retval;
869
870 irq = bind_ipi_to_irq(ipi, cpu);
871 if (irq < 0)
872 return irq;
873
Ian Campbell4877c732010-07-29 11:16:35 +0100874 irqflags |= IRQF_NO_SUSPEND;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700875 retval = request_irq(irq, handler, irqflags, devname, dev_id);
876 if (retval != 0) {
877 unbind_from_irq(irq);
878 return retval;
879 }
880
881 return irq;
882}
883
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700884void unbind_from_irqhandler(unsigned int irq, void *dev_id)
885{
886 free_irq(irq, dev_id);
887 unbind_from_irq(irq);
888}
889EXPORT_SYMBOL_GPL(unbind_from_irqhandler);
890
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700891void xen_send_IPI_one(unsigned int cpu, enum ipi_vector vector)
892{
893 int irq = per_cpu(ipi_to_irq, cpu)[vector];
894 BUG_ON(irq < 0);
895 notify_remote_via_irq(irq);
896}
897
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700898irqreturn_t xen_debug_interrupt(int irq, void *dev_id)
899{
900 struct shared_info *sh = HYPERVISOR_shared_info;
901 int cpu = smp_processor_id();
902 int i;
903 unsigned long flags;
904 static DEFINE_SPINLOCK(debug_lock);
905
906 spin_lock_irqsave(&debug_lock, flags);
907
908 printk("vcpu %d\n ", cpu);
909
910 for_each_online_cpu(i) {
911 struct vcpu_info *v = per_cpu(xen_vcpu, i);
912 printk("%d: masked=%d pending=%d event_sel %08lx\n ", i,
Isaku Yamahatae849c3e2008-04-02 10:53:56 -0700913 (get_irq_regs() && i == cpu) ? xen_irqs_disabled(get_irq_regs()) : v->evtchn_upcall_mask,
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700914 v->evtchn_upcall_pending,
915 v->evtchn_pending_sel);
916 }
917 printk("pending:\n ");
918 for(i = ARRAY_SIZE(sh->evtchn_pending)-1; i >= 0; i--)
919 printk("%08lx%s", sh->evtchn_pending[i],
920 i % 8 == 0 ? "\n " : " ");
921 printk("\nmasks:\n ");
922 for(i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--)
923 printk("%08lx%s", sh->evtchn_mask[i],
924 i % 8 == 0 ? "\n " : " ");
925
926 printk("\nunmasked:\n ");
927 for(i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--)
928 printk("%08lx%s", sh->evtchn_pending[i] & ~sh->evtchn_mask[i],
929 i % 8 == 0 ? "\n " : " ");
930
931 printk("\npending list:\n");
932 for(i = 0; i < NR_EVENT_CHANNELS; i++) {
933 if (sync_test_bit(i, sh->evtchn_pending)) {
934 printk(" %d: event %d -> irq %d\n",
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -0800935 cpu_from_evtchn(i), i,
936 evtchn_to_irq[i]);
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700937 }
938 }
939
940 spin_unlock_irqrestore(&debug_lock, flags);
941
942 return IRQ_HANDLED;
943}
944
Tejun Heo245b2e72009-06-24 15:13:48 +0900945static DEFINE_PER_CPU(unsigned, xed_nesting_count);
946
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700947/*
948 * Search the CPUs pending events bitmasks. For each one found, map
949 * the event number to an irq, and feed it into do_IRQ() for
950 * handling.
951 *
952 * Xen uses a two-level bitmap to speed searching. The first level is
953 * a bitset of words which contain pending event bits. The second
954 * level is a bitset of pending events themselves.
955 */
Sheng Yang38e20b02010-05-14 12:40:51 +0100956static void __xen_evtchn_do_upcall(void)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700957{
958 int cpu = get_cpu();
959 struct shared_info *s = HYPERVISOR_shared_info;
960 struct vcpu_info *vcpu_info = __get_cpu_var(xen_vcpu);
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -0700961 unsigned count;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700962
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -0700963 do {
964 unsigned long pending_words;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700965
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -0700966 vcpu_info->evtchn_upcall_pending = 0;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700967
Tejun Heo245b2e72009-06-24 15:13:48 +0900968 if (__get_cpu_var(xed_nesting_count)++)
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -0700969 goto out;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700970
Isaku Yamahatae849c3e2008-04-02 10:53:56 -0700971#ifndef CONFIG_X86 /* No need for a barrier -- XCHG is a barrier on x86. */
972 /* Clear master flag /before/ clearing selector flag. */
Isaku Yamahata6673cf62008-06-16 14:58:13 -0700973 wmb();
Isaku Yamahatae849c3e2008-04-02 10:53:56 -0700974#endif
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -0700975 pending_words = xchg(&vcpu_info->evtchn_pending_sel, 0);
976 while (pending_words != 0) {
977 unsigned long pending_bits;
978 int word_idx = __ffs(pending_words);
979 pending_words &= ~(1UL << word_idx);
980
981 while ((pending_bits = active_evtchns(cpu, s, word_idx)) != 0) {
982 int bit_idx = __ffs(pending_bits);
983 int port = (word_idx * BITS_PER_LONG) + bit_idx;
984 int irq = evtchn_to_irq[port];
Eric W. Biedermanca4dbc62010-02-17 18:49:54 -0800985 struct irq_desc *desc;
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -0700986
Eric W. Biedermanca4dbc62010-02-17 18:49:54 -0800987 if (irq != -1) {
988 desc = irq_to_desc(irq);
989 if (desc)
990 generic_handle_irq_desc(irq, desc);
991 }
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700992 }
993 }
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -0700994
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -0700995 BUG_ON(!irqs_disabled());
996
Tejun Heo245b2e72009-06-24 15:13:48 +0900997 count = __get_cpu_var(xed_nesting_count);
998 __get_cpu_var(xed_nesting_count) = 0;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100999 } while (count != 1 || vcpu_info->evtchn_upcall_pending);
Jeremy Fitzhardinge229664b2008-03-17 16:37:20 -07001000
1001out:
Jeremy Fitzhardinge3445a8f2009-02-06 14:09:46 -08001002
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001003 put_cpu();
1004}
1005
Sheng Yang38e20b02010-05-14 12:40:51 +01001006void xen_evtchn_do_upcall(struct pt_regs *regs)
1007{
1008 struct pt_regs *old_regs = set_irq_regs(regs);
1009
1010 exit_idle();
1011 irq_enter();
1012
1013 __xen_evtchn_do_upcall();
1014
1015 irq_exit();
1016 set_irq_regs(old_regs);
1017}
1018
1019void xen_hvm_evtchn_do_upcall(void)
1020{
1021 __xen_evtchn_do_upcall();
1022}
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001023EXPORT_SYMBOL_GPL(xen_hvm_evtchn_do_upcall);
Sheng Yang38e20b02010-05-14 12:40:51 +01001024
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001025/* Rebind a new event channel to an existing irq. */
1026void rebind_evtchn_irq(int evtchn, int irq)
1027{
Jeremy Fitzhardinged77bbd42009-02-06 14:09:45 -08001028 struct irq_info *info = info_for_irq(irq);
1029
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001030 /* Make sure the irq is masked, since the new event channel
1031 will also be masked. */
1032 disable_irq(irq);
1033
1034 spin_lock(&irq_mapping_update_lock);
1035
1036 /* After resume the irq<->evtchn mappings are all cleared out */
1037 BUG_ON(evtchn_to_irq[evtchn] != -1);
1038 /* Expect irq to have been bound before,
Jeremy Fitzhardinged77bbd42009-02-06 14:09:45 -08001039 so there should be a proper type */
1040 BUG_ON(info->type == IRQT_UNBOUND);
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001041
1042 evtchn_to_irq[evtchn] = irq;
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -08001043 irq_info[irq] = mk_evtchn_info(evtchn);
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001044
1045 spin_unlock(&irq_mapping_update_lock);
1046
1047 /* new event channels are always bound to cpu 0 */
Rusty Russell0de26522008-12-13 21:20:26 +10301048 irq_set_affinity(irq, cpumask_of(0));
Jeremy Fitzhardingeeb1e3052008-05-26 23:31:23 +01001049
1050 /* Unmask the event channel. */
1051 enable_irq(irq);
1052}
1053
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001054/* Rebind an evtchn so that it gets delivered to a specific cpu */
Yinghai Lud5dedd42009-04-27 17:59:21 -07001055static int rebind_irq_to_cpu(unsigned irq, unsigned tcpu)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001056{
1057 struct evtchn_bind_vcpu bind_vcpu;
1058 int evtchn = evtchn_from_irq(irq);
1059
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001060 /* events delivered via platform PCI interrupts are always
1061 * routed to vcpu 0 */
1062 if (!VALID_EVTCHN(evtchn) ||
1063 (xen_hvm_domain() && !xen_have_vector_callback))
Yinghai Lud5dedd42009-04-27 17:59:21 -07001064 return -1;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001065
1066 /* Send future instances of this interrupt to other vcpu. */
1067 bind_vcpu.port = evtchn;
1068 bind_vcpu.vcpu = tcpu;
1069
1070 /*
1071 * If this fails, it usually just indicates that we're dealing with a
1072 * virq or IPI channel, which don't actually need to be rebound. Ignore
1073 * it, but don't do the xenlinux-level rebind in that case.
1074 */
1075 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_vcpu, &bind_vcpu) >= 0)
1076 bind_evtchn_to_cpu(evtchn, tcpu);
Yinghai Lud5dedd42009-04-27 17:59:21 -07001077
1078 return 0;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001079}
1080
Yinghai Lud5dedd42009-04-27 17:59:21 -07001081static int set_affinity_irq(unsigned irq, const struct cpumask *dest)
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001082{
Rusty Russell0de26522008-12-13 21:20:26 +10301083 unsigned tcpu = cpumask_first(dest);
Yinghai Lud5dedd42009-04-27 17:59:21 -07001084
1085 return rebind_irq_to_cpu(irq, tcpu);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001086}
1087
Isaku Yamahata642e0c82008-04-02 10:53:57 -07001088int resend_irq_on_evtchn(unsigned int irq)
1089{
1090 int masked, evtchn = evtchn_from_irq(irq);
1091 struct shared_info *s = HYPERVISOR_shared_info;
1092
1093 if (!VALID_EVTCHN(evtchn))
1094 return 1;
1095
1096 masked = sync_test_and_set_bit(evtchn, s->evtchn_mask);
1097 sync_set_bit(evtchn, s->evtchn_pending);
1098 if (!masked)
1099 unmask_evtchn(evtchn);
1100
1101 return 1;
1102}
1103
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001104static void enable_dynirq(unsigned int irq)
1105{
1106 int evtchn = evtchn_from_irq(irq);
1107
1108 if (VALID_EVTCHN(evtchn))
1109 unmask_evtchn(evtchn);
1110}
1111
1112static void disable_dynirq(unsigned int irq)
1113{
1114 int evtchn = evtchn_from_irq(irq);
1115
1116 if (VALID_EVTCHN(evtchn))
1117 mask_evtchn(evtchn);
1118}
1119
1120static void ack_dynirq(unsigned int irq)
1121{
1122 int evtchn = evtchn_from_irq(irq);
1123
1124 move_native_irq(irq);
1125
1126 if (VALID_EVTCHN(evtchn))
1127 clear_evtchn(evtchn);
1128}
1129
1130static int retrigger_dynirq(unsigned int irq)
1131{
1132 int evtchn = evtchn_from_irq(irq);
Jeremy Fitzhardingeee8fa1c2008-03-17 16:37:19 -07001133 struct shared_info *sh = HYPERVISOR_shared_info;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001134 int ret = 0;
1135
1136 if (VALID_EVTCHN(evtchn)) {
Jeremy Fitzhardingeee8fa1c2008-03-17 16:37:19 -07001137 int masked;
1138
1139 masked = sync_test_and_set_bit(evtchn, sh->evtchn_mask);
1140 sync_set_bit(evtchn, sh->evtchn_pending);
1141 if (!masked)
1142 unmask_evtchn(evtchn);
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001143 ret = 1;
1144 }
1145
1146 return ret;
1147}
1148
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001149static void restore_cpu_virqs(unsigned int cpu)
1150{
1151 struct evtchn_bind_virq bind_virq;
1152 int virq, irq, evtchn;
1153
1154 for (virq = 0; virq < NR_VIRQS; virq++) {
1155 if ((irq = per_cpu(virq_to_irq, cpu)[virq]) == -1)
1156 continue;
1157
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -08001158 BUG_ON(virq_from_irq(irq) != virq);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001159
1160 /* Get a new binding from Xen. */
1161 bind_virq.virq = virq;
1162 bind_virq.vcpu = cpu;
1163 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
1164 &bind_virq) != 0)
1165 BUG();
1166 evtchn = bind_virq.port;
1167
1168 /* Record the new mapping. */
1169 evtchn_to_irq[evtchn] = irq;
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -08001170 irq_info[irq] = mk_virq_info(evtchn, virq);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001171 bind_evtchn_to_cpu(evtchn, cpu);
1172
1173 /* Ready for use. */
1174 unmask_evtchn(evtchn);
1175 }
1176}
1177
1178static void restore_cpu_ipis(unsigned int cpu)
1179{
1180 struct evtchn_bind_ipi bind_ipi;
1181 int ipi, irq, evtchn;
1182
1183 for (ipi = 0; ipi < XEN_NR_IPIS; ipi++) {
1184 if ((irq = per_cpu(ipi_to_irq, cpu)[ipi]) == -1)
1185 continue;
1186
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -08001187 BUG_ON(ipi_from_irq(irq) != ipi);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001188
1189 /* Get a new binding from Xen. */
1190 bind_ipi.vcpu = cpu;
1191 if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi,
1192 &bind_ipi) != 0)
1193 BUG();
1194 evtchn = bind_ipi.port;
1195
1196 /* Record the new mapping. */
1197 evtchn_to_irq[evtchn] = irq;
Jeremy Fitzhardingeced40d02009-02-06 14:09:44 -08001198 irq_info[irq] = mk_ipi_info(evtchn, ipi);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001199 bind_evtchn_to_cpu(evtchn, cpu);
1200
1201 /* Ready for use. */
1202 unmask_evtchn(evtchn);
1203
1204 }
1205}
1206
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -07001207/* Clear an irq's pending state, in preparation for polling on it */
1208void xen_clear_irq_pending(int irq)
1209{
1210 int evtchn = evtchn_from_irq(irq);
1211
1212 if (VALID_EVTCHN(evtchn))
1213 clear_evtchn(evtchn);
1214}
Konrad Rzeszutek Wilkd9a88142009-11-05 16:33:09 -05001215EXPORT_SYMBOL(xen_clear_irq_pending);
Jeremy Fitzhardinge168d2f42008-08-20 17:02:18 -07001216void xen_set_irq_pending(int irq)
1217{
1218 int evtchn = evtchn_from_irq(irq);
1219
1220 if (VALID_EVTCHN(evtchn))
1221 set_evtchn(evtchn);
1222}
1223
1224bool xen_test_irq_pending(int irq)
1225{
1226 int evtchn = evtchn_from_irq(irq);
1227 bool ret = false;
1228
1229 if (VALID_EVTCHN(evtchn))
1230 ret = test_evtchn(evtchn);
1231
1232 return ret;
1233}
1234
Konrad Rzeszutek Wilkd9a88142009-11-05 16:33:09 -05001235/* Poll waiting for an irq to become pending with timeout. In the usual case,
1236 * the irq will be disabled so it won't deliver an interrupt. */
1237void xen_poll_irq_timeout(int irq, u64 timeout)
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -07001238{
1239 evtchn_port_t evtchn = evtchn_from_irq(irq);
1240
1241 if (VALID_EVTCHN(evtchn)) {
1242 struct sched_poll poll;
1243
1244 poll.nr_ports = 1;
Konrad Rzeszutek Wilkd9a88142009-11-05 16:33:09 -05001245 poll.timeout = timeout;
Isaku Yamahataff3c5362008-10-14 17:50:44 -07001246 set_xen_guest_handle(poll.ports, &evtchn);
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -07001247
1248 if (HYPERVISOR_sched_op(SCHEDOP_poll, &poll) != 0)
1249 BUG();
1250 }
1251}
Konrad Rzeszutek Wilkd9a88142009-11-05 16:33:09 -05001252EXPORT_SYMBOL(xen_poll_irq_timeout);
1253/* Poll waiting for an irq to become pending. In the usual case, the
1254 * irq will be disabled so it won't deliver an interrupt. */
1255void xen_poll_irq(int irq)
1256{
1257 xen_poll_irq_timeout(irq, 0 /* no timeout */);
1258}
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -07001259
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001260void xen_irq_resume(void)
1261{
1262 unsigned int cpu, irq, evtchn;
1263
1264 init_evtchn_cpu_bindings();
1265
1266 /* New event-channel space is not 'live' yet. */
1267 for (evtchn = 0; evtchn < NR_EVENT_CHANNELS; evtchn++)
1268 mask_evtchn(evtchn);
1269
1270 /* No IRQ <-> event-channel mappings. */
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -08001271 for (irq = 0; irq < nr_irqs; irq++)
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001272 irq_info[irq].evtchn = 0; /* zap event-channel binding */
1273
1274 for (evtchn = 0; evtchn < NR_EVENT_CHANNELS; evtchn++)
1275 evtchn_to_irq[evtchn] = -1;
1276
1277 for_each_possible_cpu(cpu) {
1278 restore_cpu_virqs(cpu);
1279 restore_cpu_ipis(cpu);
1280 }
1281}
1282
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001283static struct irq_chip xen_dynamic_chip __read_mostly = {
1284 .name = "xen-dyn",
Jeremy Fitzhardinge54a353a2009-02-06 14:09:42 -08001285
1286 .disable = disable_dynirq,
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001287 .mask = disable_dynirq,
1288 .unmask = enable_dynirq,
Jeremy Fitzhardinge54a353a2009-02-06 14:09:42 -08001289
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001290 .ack = ack_dynirq,
1291 .set_affinity = set_affinity_irq,
1292 .retrigger = retrigger_dynirq,
1293};
1294
Jeremy Fitzhardinged46a78b2010-10-01 12:20:09 -04001295static struct irq_chip xen_pirq_chip __read_mostly = {
1296 .name = "xen-pirq",
1297
1298 .startup = startup_pirq,
1299 .shutdown = shutdown_pirq,
1300
1301 .enable = enable_pirq,
1302 .unmask = enable_pirq,
1303
1304 .disable = disable_pirq,
1305 .mask = disable_pirq,
1306
1307 .ack = ack_pirq,
1308 .end = end_pirq,
1309
1310 .set_affinity = set_affinity_irq,
1311
1312 .retrigger = retrigger_dynirq,
1313};
1314
Jeremy Fitzhardingeaaca4962010-08-20 18:57:53 -07001315static struct irq_chip xen_percpu_chip __read_mostly = {
1316 .name = "xen-percpu",
1317
1318 .disable = disable_dynirq,
1319 .mask = disable_dynirq,
1320 .unmask = enable_dynirq,
1321
1322 .ack = ack_dynirq,
1323};
1324
Sheng Yang38e20b02010-05-14 12:40:51 +01001325int xen_set_callback_via(uint64_t via)
1326{
1327 struct xen_hvm_param a;
1328 a.domid = DOMID_SELF;
1329 a.index = HVM_PARAM_CALLBACK_IRQ;
1330 a.value = via;
1331 return HYPERVISOR_hvm_op(HVMOP_set_param, &a);
1332}
1333EXPORT_SYMBOL_GPL(xen_set_callback_via);
1334
Stefano Stabellinica65f9f2010-07-29 14:37:48 +01001335#ifdef CONFIG_XEN_PVHVM
Sheng Yang38e20b02010-05-14 12:40:51 +01001336/* Vector callbacks are better than PCI interrupts to receive event
1337 * channel notifications because we can receive vector callbacks on any
1338 * vcpu and we don't need PCI support or APIC interactions. */
1339void xen_callback_vector(void)
1340{
1341 int rc;
1342 uint64_t callback_via;
1343 if (xen_have_vector_callback) {
1344 callback_via = HVM_CALLBACK_VECTOR(XEN_HVM_EVTCHN_CALLBACK);
1345 rc = xen_set_callback_via(callback_via);
1346 if (rc) {
1347 printk(KERN_ERR "Request for Xen HVM callback vector"
1348 " failed.\n");
1349 xen_have_vector_callback = 0;
1350 return;
1351 }
1352 printk(KERN_INFO "Xen HVM callback vector for event delivery is "
1353 "enabled\n");
1354 /* in the restore case the vector has already been allocated */
1355 if (!test_bit(XEN_HVM_EVTCHN_CALLBACK, used_vectors))
1356 alloc_intr_gate(XEN_HVM_EVTCHN_CALLBACK, xen_hvm_callback_vector);
1357 }
1358}
Stefano Stabellinica65f9f2010-07-29 14:37:48 +01001359#else
1360void xen_callback_vector(void) {}
1361#endif
Sheng Yang38e20b02010-05-14 12:40:51 +01001362
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001363void __init xen_init_IRQ(void)
1364{
Stefano Stabellini01557ba2010-08-20 14:46:52 +01001365 int i, rc;
1366 struct physdev_nr_pirqs op_nr_pirqs;
Mike Travisc7a35892009-01-10 21:58:11 -08001367
Pekka Enberga70c3522009-07-01 11:51:18 +03001368 cpu_evtchn_mask_p = kcalloc(nr_cpu_ids, sizeof(struct cpu_evtchn_s),
1369 GFP_KERNEL);
Jeremy Fitzhardingeb21ddbf2010-06-07 16:28:49 -04001370 irq_info = kcalloc(nr_irqs, sizeof(*irq_info), GFP_KERNEL);
1371
Stefano Stabellini01557ba2010-08-20 14:46:52 +01001372 rc = HYPERVISOR_physdev_op(PHYSDEVOP_get_nr_pirqs, &op_nr_pirqs);
1373 if (rc < 0) {
1374 nr_pirqs = nr_irqs;
1375 if (rc != -ENOSYS)
1376 printk(KERN_WARNING "PHYSDEVOP_get_nr_pirqs returned rc=%d\n", rc);
1377 } else {
1378 if (xen_pv_domain() && !xen_initial_domain())
1379 nr_pirqs = max((int)op_nr_pirqs.nr_pirqs, nr_irqs);
1380 else
1381 nr_pirqs = op_nr_pirqs.nr_pirqs;
1382 }
1383 pirq_to_irq = kcalloc(nr_pirqs, sizeof(*pirq_to_irq), GFP_KERNEL);
1384 for (i = 0; i < nr_pirqs; i++)
Stefano Stabellini7a043f12010-07-01 17:08:14 +01001385 pirq_to_irq[i] = -1;
1386
Jeremy Fitzhardingeb21ddbf2010-06-07 16:28:49 -04001387 evtchn_to_irq = kcalloc(NR_EVENT_CHANNELS, sizeof(*evtchn_to_irq),
1388 GFP_KERNEL);
1389 for (i = 0; i < NR_EVENT_CHANNELS; i++)
1390 evtchn_to_irq[i] = -1;
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001391
1392 init_evtchn_cpu_bindings();
1393
1394 /* No event channels are 'live' right now. */
1395 for (i = 0; i < NR_EVENT_CHANNELS; i++)
1396 mask_evtchn(i);
1397
Sheng Yang38e20b02010-05-14 12:40:51 +01001398 if (xen_hvm_domain()) {
1399 xen_callback_vector();
1400 native_init_IRQ();
Stefano Stabellini3942b742010-06-24 17:50:18 +01001401 /* pci_xen_hvm_init must be called after native_init_IRQ so that
1402 * __acpi_register_gsi can point at the right function */
1403 pci_xen_hvm_init();
Sheng Yang38e20b02010-05-14 12:40:51 +01001404 } else {
1405 irq_ctx_init(smp_processor_id());
1406 }
Jeremy Fitzhardingee46cdb62007-07-17 18:37:05 -07001407}