Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1 | /* |
| 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 Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 19 | * 4. PIRQs - Hardware interrupts. |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 20 | * |
| 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 Saout | 28e0886 | 2009-01-11 11:46:23 -0800 | [diff] [blame] | 29 | #include <linux/bootmem.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Jeremy Fitzhardinge | b21ddbf | 2010-06-07 16:28:49 -0400 | [diff] [blame] | 31 | #include <linux/irqnr.h> |
Qing He | f731e3ef | 2010-10-11 15:30:09 +0100 | [diff] [blame] | 32 | #include <linux/pci.h> |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 33 | |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 34 | #include <asm/desc.h> |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 35 | #include <asm/ptrace.h> |
| 36 | #include <asm/irq.h> |
Jeremy Fitzhardinge | 792dc4f | 2009-02-06 14:09:43 -0800 | [diff] [blame] | 37 | #include <asm/idle.h> |
Konrad Rzeszutek Wilk | 0794bfc | 2010-10-18 10:41:08 -0400 | [diff] [blame] | 38 | #include <asm/io_apic.h> |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 39 | #include <asm/sync_bitops.h> |
Stefano Stabellini | 42a1de5 | 2010-06-24 16:42:04 +0100 | [diff] [blame] | 40 | #include <asm/xen/pci.h> |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 41 | #include <asm/xen/hypercall.h> |
Adrian Bunk | 8d1b875 | 2007-07-20 00:31:44 -0700 | [diff] [blame] | 42 | #include <asm/xen/hypervisor.h> |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 43 | |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 44 | #include <xen/xen.h> |
| 45 | #include <xen/hvm.h> |
Isaku Yamahata | e04d0d0 | 2008-04-02 10:53:55 -0700 | [diff] [blame] | 46 | #include <xen/xen-ops.h> |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 47 | #include <xen/events.h> |
| 48 | #include <xen/interface/xen.h> |
| 49 | #include <xen/interface/event_channel.h> |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 50 | #include <xen/interface/hvm/hvm_op.h> |
| 51 | #include <xen/interface/hvm/params.h> |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 52 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 53 | /* |
| 54 | * This lock protects updates to the following mapping and reference-count |
| 55 | * arrays. The lock does not need to be acquired to read the mapping tables. |
| 56 | */ |
| 57 | static DEFINE_SPINLOCK(irq_mapping_update_lock); |
| 58 | |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 59 | static LIST_HEAD(xen_irq_list_head); |
| 60 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 61 | /* IRQ <-> VIRQ mapping. */ |
Tejun Heo | 204fba4 | 2009-06-24 15:13:45 +0900 | [diff] [blame] | 62 | static DEFINE_PER_CPU(int [NR_VIRQS], virq_to_irq) = {[0 ... NR_VIRQS-1] = -1}; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 63 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 64 | /* IRQ <-> IPI mapping */ |
Tejun Heo | 204fba4 | 2009-06-24 15:13:45 +0900 | [diff] [blame] | 65 | static DEFINE_PER_CPU(int [XEN_NR_IPIS], ipi_to_irq) = {[0 ... XEN_NR_IPIS-1] = -1}; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 66 | |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 67 | /* Interrupt types. */ |
| 68 | enum xen_irq_type { |
Jeremy Fitzhardinge | d77bbd4 | 2009-02-06 14:09:45 -0800 | [diff] [blame] | 69 | IRQT_UNBOUND = 0, |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 70 | IRQT_PIRQ, |
| 71 | IRQT_VIRQ, |
| 72 | IRQT_IPI, |
| 73 | IRQT_EVTCHN |
| 74 | }; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 75 | |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 76 | /* |
| 77 | * Packed IRQ information: |
| 78 | * type - enum xen_irq_type |
| 79 | * event channel - irq->event channel mapping |
| 80 | * cpu - cpu this event channel is bound to |
| 81 | * index - type-specific information: |
Stefano Stabellini | 42a1de5 | 2010-06-24 16:42:04 +0100 | [diff] [blame] | 82 | * PIRQ - vector, with MSB being "needs EIO", or physical IRQ of the HVM |
| 83 | * guest, or GSI (real passthrough IRQ) of the device. |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 84 | * VIRQ - virq number |
| 85 | * IPI - IPI vector |
| 86 | * EVTCHN - |
| 87 | */ |
| 88 | struct irq_info |
| 89 | { |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 90 | struct list_head list; |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 91 | enum xen_irq_type type; /* type */ |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 92 | unsigned irq; |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 93 | unsigned short evtchn; /* event channel */ |
| 94 | unsigned short cpu; /* cpu bound */ |
| 95 | |
| 96 | union { |
| 97 | unsigned short virq; |
| 98 | enum ipi_vector ipi; |
| 99 | struct { |
Stefano Stabellini | 7a043f1 | 2010-07-01 17:08:14 +0100 | [diff] [blame] | 100 | unsigned short pirq; |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 101 | unsigned short gsi; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 102 | unsigned char vector; |
| 103 | unsigned char flags; |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 104 | } pirq; |
| 105 | } u; |
| 106 | }; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 107 | #define PIRQ_NEEDS_EOI (1 << 0) |
Konrad Rzeszutek Wilk | 15ebbb8 | 2010-10-04 13:43:27 -0400 | [diff] [blame] | 108 | #define PIRQ_SHAREABLE (1 << 1) |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 109 | |
Jeremy Fitzhardinge | b21ddbf | 2010-06-07 16:28:49 -0400 | [diff] [blame] | 110 | static int *evtchn_to_irq; |
Jeremy Fitzhardinge | 3b32f57 | 2009-08-13 12:50:37 -0700 | [diff] [blame] | 111 | |
Ian Campbell | cb60d11 | 2011-03-10 16:08:08 +0000 | [diff] [blame] | 112 | static DEFINE_PER_CPU(unsigned long [NR_EVENT_CHANNELS/BITS_PER_LONG], |
| 113 | cpu_evtchn_mask); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 114 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 115 | /* Xen will never allocate port zero for any purpose. */ |
| 116 | #define VALID_EVTCHN(chn) ((chn) != 0) |
| 117 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 118 | static struct irq_chip xen_dynamic_chip; |
Jeremy Fitzhardinge | aaca496 | 2010-08-20 18:57:53 -0700 | [diff] [blame] | 119 | static struct irq_chip xen_percpu_chip; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 120 | static struct irq_chip xen_pirq_chip; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 121 | |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 122 | /* Get info for IRQ */ |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 123 | static struct irq_info *info_for_irq(unsigned irq) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 124 | { |
Ian Campbell | ca62ce8 | 2011-03-10 16:08:12 +0000 | [diff] [blame] | 125 | return get_irq_data(irq); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 128 | /* Constructors for packed IRQ information. */ |
| 129 | static void xen_irq_info_common_init(struct irq_info *info, |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 130 | unsigned irq, |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 131 | enum xen_irq_type type, |
| 132 | unsigned short evtchn, |
| 133 | unsigned short cpu) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 134 | { |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 135 | |
| 136 | BUG_ON(info->type != IRQT_UNBOUND && info->type != type); |
| 137 | |
| 138 | info->type = type; |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 139 | info->irq = irq; |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 140 | info->evtchn = evtchn; |
| 141 | info->cpu = cpu; |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 142 | |
| 143 | evtchn_to_irq[evtchn] = irq; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 146 | static void xen_irq_info_evtchn_init(unsigned irq, |
| 147 | unsigned short evtchn) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 148 | { |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 149 | struct irq_info *info = info_for_irq(irq); |
| 150 | |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 151 | xen_irq_info_common_init(info, irq, IRQT_EVTCHN, evtchn, 0); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 154 | static void xen_irq_info_ipi_init(unsigned cpu, |
| 155 | unsigned irq, |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 156 | unsigned short evtchn, |
| 157 | enum ipi_vector ipi) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 158 | { |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 159 | struct irq_info *info = info_for_irq(irq); |
| 160 | |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 161 | xen_irq_info_common_init(info, irq, IRQT_IPI, evtchn, 0); |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 162 | |
| 163 | info->u.ipi = ipi; |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 164 | |
| 165 | per_cpu(ipi_to_irq, cpu)[ipi] = irq; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 168 | static void xen_irq_info_virq_init(unsigned cpu, |
| 169 | unsigned irq, |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 170 | unsigned short evtchn, |
| 171 | unsigned short virq) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 172 | { |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 173 | struct irq_info *info = info_for_irq(irq); |
| 174 | |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 175 | xen_irq_info_common_init(info, irq, IRQT_VIRQ, evtchn, 0); |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 176 | |
| 177 | info->u.virq = virq; |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 178 | |
| 179 | per_cpu(virq_to_irq, cpu)[virq] = irq; |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | static void xen_irq_info_pirq_init(unsigned irq, |
| 183 | unsigned short evtchn, |
| 184 | unsigned short pirq, |
| 185 | unsigned short gsi, |
| 186 | unsigned short vector, |
| 187 | unsigned char flags) |
| 188 | { |
| 189 | struct irq_info *info = info_for_irq(irq); |
| 190 | |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 191 | xen_irq_info_common_init(info, irq, IRQT_PIRQ, evtchn, 0); |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 192 | |
| 193 | info->u.pirq.pirq = pirq; |
| 194 | info->u.pirq.gsi = gsi; |
| 195 | info->u.pirq.vector = vector; |
| 196 | info->u.pirq.flags = flags; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | /* |
| 200 | * Accessors for packed IRQ information. |
| 201 | */ |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 202 | static unsigned int evtchn_from_irq(unsigned irq) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 203 | { |
Joe Jin | 110e7c7 | 2011-01-07 14:50:12 +0800 | [diff] [blame] | 204 | if (unlikely(WARN(irq < 0 || irq >= nr_irqs, "Invalid irq %d!\n", irq))) |
| 205 | return 0; |
| 206 | |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 207 | return info_for_irq(irq)->evtchn; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Ian Campbell | d4c0453 | 2009-02-06 19:20:31 -0800 | [diff] [blame] | 210 | unsigned irq_from_evtchn(unsigned int evtchn) |
| 211 | { |
| 212 | return evtchn_to_irq[evtchn]; |
| 213 | } |
| 214 | EXPORT_SYMBOL_GPL(irq_from_evtchn); |
| 215 | |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 216 | static enum ipi_vector ipi_from_irq(unsigned irq) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 217 | { |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 218 | struct irq_info *info = info_for_irq(irq); |
| 219 | |
| 220 | BUG_ON(info == NULL); |
| 221 | BUG_ON(info->type != IRQT_IPI); |
| 222 | |
| 223 | return info->u.ipi; |
| 224 | } |
| 225 | |
| 226 | static unsigned virq_from_irq(unsigned irq) |
| 227 | { |
| 228 | struct irq_info *info = info_for_irq(irq); |
| 229 | |
| 230 | BUG_ON(info == NULL); |
| 231 | BUG_ON(info->type != IRQT_VIRQ); |
| 232 | |
| 233 | return info->u.virq; |
| 234 | } |
| 235 | |
Stefano Stabellini | 7a043f1 | 2010-07-01 17:08:14 +0100 | [diff] [blame] | 236 | static unsigned pirq_from_irq(unsigned irq) |
| 237 | { |
| 238 | struct irq_info *info = info_for_irq(irq); |
| 239 | |
| 240 | BUG_ON(info == NULL); |
| 241 | BUG_ON(info->type != IRQT_PIRQ); |
| 242 | |
| 243 | return info->u.pirq.pirq; |
| 244 | } |
| 245 | |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 246 | static enum xen_irq_type type_from_irq(unsigned irq) |
| 247 | { |
| 248 | return info_for_irq(irq)->type; |
| 249 | } |
| 250 | |
| 251 | static unsigned cpu_from_irq(unsigned irq) |
| 252 | { |
| 253 | return info_for_irq(irq)->cpu; |
| 254 | } |
| 255 | |
| 256 | static unsigned int cpu_from_evtchn(unsigned int evtchn) |
| 257 | { |
| 258 | int irq = evtchn_to_irq[evtchn]; |
| 259 | unsigned ret = 0; |
| 260 | |
| 261 | if (irq != -1) |
| 262 | ret = cpu_from_irq(irq); |
| 263 | |
| 264 | return ret; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 267 | static bool pirq_needs_eoi(unsigned irq) |
| 268 | { |
| 269 | struct irq_info *info = info_for_irq(irq); |
| 270 | |
| 271 | BUG_ON(info->type != IRQT_PIRQ); |
| 272 | |
| 273 | return info->u.pirq.flags & PIRQ_NEEDS_EOI; |
| 274 | } |
| 275 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 276 | static inline unsigned long active_evtchns(unsigned int cpu, |
| 277 | struct shared_info *sh, |
| 278 | unsigned int idx) |
| 279 | { |
| 280 | return (sh->evtchn_pending[idx] & |
Ian Campbell | cb60d11 | 2011-03-10 16:08:08 +0000 | [diff] [blame] | 281 | per_cpu(cpu_evtchn_mask, cpu)[idx] & |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 282 | ~sh->evtchn_mask[idx]); |
| 283 | } |
| 284 | |
| 285 | static void bind_evtchn_to_cpu(unsigned int chn, unsigned int cpu) |
| 286 | { |
| 287 | int irq = evtchn_to_irq[chn]; |
| 288 | |
| 289 | BUG_ON(irq == -1); |
| 290 | #ifdef CONFIG_SMP |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 291 | cpumask_copy(irq_to_desc(irq)->irq_data.affinity, cpumask_of(cpu)); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 292 | #endif |
| 293 | |
Ian Campbell | cb60d11 | 2011-03-10 16:08:08 +0000 | [diff] [blame] | 294 | clear_bit(chn, per_cpu(cpu_evtchn_mask, cpu_from_irq(irq))); |
| 295 | set_bit(chn, per_cpu(cpu_evtchn_mask, cpu)); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 296 | |
Ian Campbell | ca62ce8 | 2011-03-10 16:08:12 +0000 | [diff] [blame] | 297 | info_for_irq(irq)->cpu = cpu; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | static void init_evtchn_cpu_bindings(void) |
| 301 | { |
Jan Beulich | 1c6969e | 2010-11-16 14:55:33 -0800 | [diff] [blame] | 302 | int i; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 303 | #ifdef CONFIG_SMP |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 304 | struct irq_info *info; |
Thomas Gleixner | 10e5808 | 2008-10-16 14:19:04 +0200 | [diff] [blame] | 305 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 306 | /* By default all event channels notify CPU#0. */ |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 307 | list_for_each_entry(info, &xen_irq_list_head, list) { |
| 308 | struct irq_desc *desc = irq_to_desc(info->irq); |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 309 | cpumask_copy(desc->irq_data.affinity, cpumask_of(0)); |
Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 310 | } |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 311 | #endif |
| 312 | |
Jan Beulich | 1c6969e | 2010-11-16 14:55:33 -0800 | [diff] [blame] | 313 | for_each_possible_cpu(i) |
Ian Campbell | cb60d11 | 2011-03-10 16:08:08 +0000 | [diff] [blame] | 314 | memset(per_cpu(cpu_evtchn_mask, i), |
| 315 | (i == 0) ? ~0 : 0, sizeof(*per_cpu(cpu_evtchn_mask, i))); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 318 | static inline void clear_evtchn(int port) |
| 319 | { |
| 320 | struct shared_info *s = HYPERVISOR_shared_info; |
| 321 | sync_clear_bit(port, &s->evtchn_pending[0]); |
| 322 | } |
| 323 | |
| 324 | static inline void set_evtchn(int port) |
| 325 | { |
| 326 | struct shared_info *s = HYPERVISOR_shared_info; |
| 327 | sync_set_bit(port, &s->evtchn_pending[0]); |
| 328 | } |
| 329 | |
Jeremy Fitzhardinge | 168d2f4 | 2008-08-20 17:02:18 -0700 | [diff] [blame] | 330 | static inline int test_evtchn(int port) |
| 331 | { |
| 332 | struct shared_info *s = HYPERVISOR_shared_info; |
| 333 | return sync_test_bit(port, &s->evtchn_pending[0]); |
| 334 | } |
| 335 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 336 | |
| 337 | /** |
| 338 | * notify_remote_via_irq - send event to remote end of event channel via irq |
| 339 | * @irq: irq of event channel to send event to |
| 340 | * |
| 341 | * Unlike notify_remote_via_evtchn(), this is safe to use across |
| 342 | * save/restore. Notifications on a broken connection are silently |
| 343 | * dropped. |
| 344 | */ |
| 345 | void notify_remote_via_irq(int irq) |
| 346 | { |
| 347 | int evtchn = evtchn_from_irq(irq); |
| 348 | |
| 349 | if (VALID_EVTCHN(evtchn)) |
| 350 | notify_remote_via_evtchn(evtchn); |
| 351 | } |
| 352 | EXPORT_SYMBOL_GPL(notify_remote_via_irq); |
| 353 | |
| 354 | static void mask_evtchn(int port) |
| 355 | { |
| 356 | struct shared_info *s = HYPERVISOR_shared_info; |
| 357 | sync_set_bit(port, &s->evtchn_mask[0]); |
| 358 | } |
| 359 | |
| 360 | static void unmask_evtchn(int port) |
| 361 | { |
| 362 | struct shared_info *s = HYPERVISOR_shared_info; |
| 363 | unsigned int cpu = get_cpu(); |
| 364 | |
| 365 | BUG_ON(!irqs_disabled()); |
| 366 | |
| 367 | /* Slow path (hypercall) if this is a non-local port. */ |
| 368 | if (unlikely(cpu != cpu_from_evtchn(port))) { |
| 369 | struct evtchn_unmask unmask = { .port = port }; |
| 370 | (void)HYPERVISOR_event_channel_op(EVTCHNOP_unmask, &unmask); |
| 371 | } else { |
Christoph Lameter | 780f36d | 2010-12-06 11:16:29 -0600 | [diff] [blame] | 372 | struct vcpu_info *vcpu_info = __this_cpu_read(xen_vcpu); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 373 | |
| 374 | sync_clear_bit(port, &s->evtchn_mask[0]); |
| 375 | |
| 376 | /* |
| 377 | * The following is basically the equivalent of |
| 378 | * 'hw_resend_irq'. Just like a real IO-APIC we 'lose |
| 379 | * the interrupt edge' if the channel is masked. |
| 380 | */ |
| 381 | if (sync_test_bit(port, &s->evtchn_pending[0]) && |
| 382 | !sync_test_and_set_bit(port / BITS_PER_LONG, |
| 383 | &vcpu_info->evtchn_pending_sel)) |
| 384 | vcpu_info->evtchn_upcall_pending = 1; |
| 385 | } |
| 386 | |
| 387 | put_cpu(); |
| 388 | } |
| 389 | |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 390 | static void xen_irq_init(unsigned irq) |
| 391 | { |
| 392 | struct irq_info *info; |
| 393 | struct irq_desc *desc = irq_to_desc(irq); |
| 394 | |
Konrad Rzeszutek Wilk | 44626e4 | 2011-03-15 16:40:33 -0400 | [diff] [blame] | 395 | #ifdef CONFIG_SMP |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 396 | /* By default all event channels notify CPU#0. */ |
| 397 | cpumask_copy(desc->irq_data.affinity, cpumask_of(0)); |
Konrad Rzeszutek Wilk | 44626e4 | 2011-03-15 16:40:33 -0400 | [diff] [blame] | 398 | #endif |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 399 | |
Ian Campbell | ca62ce8 | 2011-03-10 16:08:12 +0000 | [diff] [blame] | 400 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
| 401 | if (info == NULL) |
| 402 | panic("Unable to allocate metadata for IRQ%d\n", irq); |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 403 | |
| 404 | info->type = IRQT_UNBOUND; |
| 405 | |
Ian Campbell | ca62ce8 | 2011-03-10 16:08:12 +0000 | [diff] [blame] | 406 | set_irq_data(irq, info); |
| 407 | |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 408 | list_add_tail(&info->list, &xen_irq_list_head); |
| 409 | } |
| 410 | |
Ian Campbell | 7bee976 | 2011-03-10 16:08:15 +0000 | [diff] [blame] | 411 | static int __must_check xen_allocate_irq_dynamic(void) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 412 | { |
Ian Campbell | 8991150 | 2011-03-03 11:57:44 -0500 | [diff] [blame] | 413 | int first = 0; |
| 414 | int irq; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 415 | |
Ian Campbell | 8991150 | 2011-03-03 11:57:44 -0500 | [diff] [blame] | 416 | #ifdef CONFIG_X86_IO_APIC |
| 417 | /* |
| 418 | * For an HVM guest or domain 0 which see "real" (emulated or |
| 419 | * actual repectively) GSIs we allocate dynamic IRQs |
| 420 | * e.g. those corresponding to event channels or MSIs |
| 421 | * etc. from the range above those "real" GSIs to avoid |
| 422 | * collisions. |
Konrad Rzeszutek Wilk | d1b758e | 2010-12-09 14:53:29 -0500 | [diff] [blame] | 423 | */ |
Ian Campbell | 8991150 | 2011-03-03 11:57:44 -0500 | [diff] [blame] | 424 | if (xen_initial_domain() || xen_hvm_domain()) |
| 425 | first = get_nr_irqs_gsi(); |
| 426 | #endif |
| 427 | |
Ian Campbell | 8991150 | 2011-03-03 11:57:44 -0500 | [diff] [blame] | 428 | irq = irq_alloc_desc_from(first, -1); |
| 429 | |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 430 | xen_irq_init(irq); |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 431 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 432 | return irq; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 433 | } |
| 434 | |
Ian Campbell | 7bee976 | 2011-03-10 16:08:15 +0000 | [diff] [blame] | 435 | static int __must_check xen_allocate_irq_gsi(unsigned gsi) |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 436 | { |
| 437 | int irq; |
| 438 | |
Ian Campbell | 8991150 | 2011-03-03 11:57:44 -0500 | [diff] [blame] | 439 | /* |
| 440 | * A PV guest has no concept of a GSI (since it has no ACPI |
| 441 | * nor access to/knowledge of the physical APICs). Therefore |
| 442 | * all IRQs are dynamically allocated from the entire IRQ |
| 443 | * space. |
| 444 | */ |
| 445 | if (xen_pv_domain() && !xen_initial_domain()) |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 446 | return xen_allocate_irq_dynamic(); |
| 447 | |
| 448 | /* Legacy IRQ descriptors are already allocated by the arch. */ |
| 449 | if (gsi < NR_IRQS_LEGACY) |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 450 | irq = gsi; |
| 451 | else |
| 452 | irq = irq_alloc_desc_at(gsi, -1); |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 453 | |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 454 | xen_irq_init(irq); |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 455 | |
| 456 | return irq; |
| 457 | } |
| 458 | |
| 459 | static void xen_free_irq(unsigned irq) |
| 460 | { |
Ian Campbell | ca62ce8 | 2011-03-10 16:08:12 +0000 | [diff] [blame] | 461 | struct irq_info *info = get_irq_data(irq); |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 462 | |
| 463 | list_del(&info->list); |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 464 | |
Ian Campbell | ca62ce8 | 2011-03-10 16:08:12 +0000 | [diff] [blame] | 465 | set_irq_data(irq, NULL); |
| 466 | |
| 467 | kfree(info); |
| 468 | |
Ian Campbell | 7214610 | 2011-02-03 09:49:35 +0000 | [diff] [blame] | 469 | /* Legacy IRQ descriptors are managed by the arch. */ |
| 470 | if (irq < NR_IRQS_LEGACY) |
| 471 | return; |
| 472 | |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 473 | irq_free_desc(irq); |
| 474 | } |
| 475 | |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 476 | static void pirq_unmask_notify(int irq) |
| 477 | { |
Stefano Stabellini | 7a043f1 | 2010-07-01 17:08:14 +0100 | [diff] [blame] | 478 | struct physdev_eoi eoi = { .irq = pirq_from_irq(irq) }; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 479 | |
| 480 | if (unlikely(pirq_needs_eoi(irq))) { |
| 481 | int rc = HYPERVISOR_physdev_op(PHYSDEVOP_eoi, &eoi); |
| 482 | WARN_ON(rc); |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | static void pirq_query_unmask(int irq) |
| 487 | { |
| 488 | struct physdev_irq_status_query irq_status; |
| 489 | struct irq_info *info = info_for_irq(irq); |
| 490 | |
| 491 | BUG_ON(info->type != IRQT_PIRQ); |
| 492 | |
Stefano Stabellini | 7a043f1 | 2010-07-01 17:08:14 +0100 | [diff] [blame] | 493 | irq_status.irq = pirq_from_irq(irq); |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 494 | if (HYPERVISOR_physdev_op(PHYSDEVOP_irq_status_query, &irq_status)) |
| 495 | irq_status.flags = 0; |
| 496 | |
| 497 | info->u.pirq.flags &= ~PIRQ_NEEDS_EOI; |
| 498 | if (irq_status.flags & XENIRQSTAT_needs_eoi) |
| 499 | info->u.pirq.flags |= PIRQ_NEEDS_EOI; |
| 500 | } |
| 501 | |
| 502 | static bool probing_irq(int irq) |
| 503 | { |
| 504 | struct irq_desc *desc = irq_to_desc(irq); |
| 505 | |
| 506 | return desc && desc->action == NULL; |
| 507 | } |
| 508 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 509 | static unsigned int __startup_pirq(unsigned int irq) |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 510 | { |
| 511 | struct evtchn_bind_pirq bind_pirq; |
| 512 | struct irq_info *info = info_for_irq(irq); |
| 513 | int evtchn = evtchn_from_irq(irq); |
Konrad Rzeszutek Wilk | 15ebbb8 | 2010-10-04 13:43:27 -0400 | [diff] [blame] | 514 | int rc; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 515 | |
| 516 | BUG_ON(info->type != IRQT_PIRQ); |
| 517 | |
| 518 | if (VALID_EVTCHN(evtchn)) |
| 519 | goto out; |
| 520 | |
Stefano Stabellini | 7a043f1 | 2010-07-01 17:08:14 +0100 | [diff] [blame] | 521 | bind_pirq.pirq = pirq_from_irq(irq); |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 522 | /* NB. We are happy to share unless we are probing. */ |
Konrad Rzeszutek Wilk | 15ebbb8 | 2010-10-04 13:43:27 -0400 | [diff] [blame] | 523 | bind_pirq.flags = info->u.pirq.flags & PIRQ_SHAREABLE ? |
| 524 | BIND_PIRQ__WILL_SHARE : 0; |
| 525 | rc = HYPERVISOR_event_channel_op(EVTCHNOP_bind_pirq, &bind_pirq); |
| 526 | if (rc != 0) { |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 527 | if (!probing_irq(irq)) |
| 528 | printk(KERN_INFO "Failed to obtain physical IRQ %d\n", |
| 529 | irq); |
| 530 | return 0; |
| 531 | } |
| 532 | evtchn = bind_pirq.port; |
| 533 | |
| 534 | pirq_query_unmask(irq); |
| 535 | |
| 536 | evtchn_to_irq[evtchn] = irq; |
| 537 | bind_evtchn_to_cpu(evtchn, 0); |
| 538 | info->evtchn = evtchn; |
| 539 | |
| 540 | out: |
| 541 | unmask_evtchn(evtchn); |
| 542 | pirq_unmask_notify(irq); |
| 543 | |
| 544 | return 0; |
| 545 | } |
| 546 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 547 | static unsigned int startup_pirq(struct irq_data *data) |
| 548 | { |
| 549 | return __startup_pirq(data->irq); |
| 550 | } |
| 551 | |
| 552 | static void shutdown_pirq(struct irq_data *data) |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 553 | { |
| 554 | struct evtchn_close close; |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 555 | unsigned int irq = data->irq; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 556 | struct irq_info *info = info_for_irq(irq); |
| 557 | int evtchn = evtchn_from_irq(irq); |
| 558 | |
| 559 | BUG_ON(info->type != IRQT_PIRQ); |
| 560 | |
| 561 | if (!VALID_EVTCHN(evtchn)) |
| 562 | return; |
| 563 | |
| 564 | mask_evtchn(evtchn); |
| 565 | |
| 566 | close.port = evtchn; |
| 567 | if (HYPERVISOR_event_channel_op(EVTCHNOP_close, &close) != 0) |
| 568 | BUG(); |
| 569 | |
| 570 | bind_evtchn_to_cpu(evtchn, 0); |
| 571 | evtchn_to_irq[evtchn] = -1; |
| 572 | info->evtchn = 0; |
| 573 | } |
| 574 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 575 | static void enable_pirq(struct irq_data *data) |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 576 | { |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 577 | startup_pirq(data); |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 578 | } |
| 579 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 580 | static void disable_pirq(struct irq_data *data) |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 581 | { |
| 582 | } |
| 583 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 584 | static void ack_pirq(struct irq_data *data) |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 585 | { |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 586 | int evtchn = evtchn_from_irq(data->irq); |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 587 | |
Ian Campbell | aa673c1 | 2011-02-07 11:08:39 +0000 | [diff] [blame] | 588 | move_native_irq(data->irq); |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 589 | |
| 590 | if (VALID_EVTCHN(evtchn)) { |
| 591 | mask_evtchn(evtchn); |
| 592 | clear_evtchn(evtchn); |
| 593 | } |
| 594 | } |
| 595 | |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 596 | static int find_irq_by_gsi(unsigned gsi) |
| 597 | { |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 598 | struct irq_info *info; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 599 | |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 600 | list_for_each_entry(info, &xen_irq_list_head, list) { |
| 601 | if (info->type != IRQT_PIRQ) |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 602 | continue; |
| 603 | |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 604 | if (info->u.pirq.gsi == gsi) |
| 605 | return info->irq; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | return -1; |
| 609 | } |
| 610 | |
Ian Campbell | f4d0635 | 2011-03-10 16:08:07 +0000 | [diff] [blame] | 611 | int xen_allocate_pirq_gsi(unsigned gsi) |
Stefano Stabellini | 7a043f1 | 2010-07-01 17:08:14 +0100 | [diff] [blame] | 612 | { |
Ian Campbell | f4d0635 | 2011-03-10 16:08:07 +0000 | [diff] [blame] | 613 | return gsi; |
Stefano Stabellini | 7a043f1 | 2010-07-01 17:08:14 +0100 | [diff] [blame] | 614 | } |
| 615 | |
Ian Campbell | 653378a | 2011-03-10 16:08:04 +0000 | [diff] [blame] | 616 | /* |
| 617 | * Do not make any assumptions regarding the relationship between the |
| 618 | * IRQ number returned here and the Xen pirq argument. |
Stefano Stabellini | 7a043f1 | 2010-07-01 17:08:14 +0100 | [diff] [blame] | 619 | * |
| 620 | * Note: We don't assign an event channel until the irq actually started |
| 621 | * up. Return an existing irq if we've already got one for the gsi. |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 622 | */ |
Ian Campbell | f4d0635 | 2011-03-10 16:08:07 +0000 | [diff] [blame] | 623 | int xen_bind_pirq_gsi_to_irq(unsigned gsi, |
| 624 | unsigned pirq, int shareable, char *name) |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 625 | { |
Ian Campbell | a0e1811 | 2011-03-10 16:08:03 +0000 | [diff] [blame] | 626 | int irq = -1; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 627 | struct physdev_irq irq_op; |
| 628 | |
| 629 | spin_lock(&irq_mapping_update_lock); |
| 630 | |
| 631 | irq = find_irq_by_gsi(gsi); |
| 632 | if (irq != -1) { |
Stefano Stabellini | 7a043f1 | 2010-07-01 17:08:14 +0100 | [diff] [blame] | 633 | printk(KERN_INFO "xen_map_pirq_gsi: returning irq %d for gsi %u\n", |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 634 | irq, gsi); |
| 635 | goto out; /* XXX need refcount? */ |
| 636 | } |
| 637 | |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 638 | irq = xen_allocate_irq_gsi(gsi); |
Ian Campbell | 7bee976 | 2011-03-10 16:08:15 +0000 | [diff] [blame] | 639 | if (irq < 0) |
| 640 | goto out; |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 641 | |
| 642 | set_irq_chip_and_handler_name(irq, &xen_pirq_chip, |
Gerd Hoffmann | 1a60d05 | 2010-10-04 13:42:27 -0400 | [diff] [blame] | 643 | handle_level_irq, name); |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 644 | |
| 645 | irq_op.irq = irq; |
Alex Nixon | b5401a9 | 2010-03-18 16:31:34 -0400 | [diff] [blame] | 646 | irq_op.vector = 0; |
| 647 | |
| 648 | /* Only the privileged domain can do this. For non-priv, the pcifront |
| 649 | * driver provides a PCI bus that does the call to do exactly |
| 650 | * this in the priv domain. */ |
| 651 | if (xen_initial_domain() && |
| 652 | HYPERVISOR_physdev_op(PHYSDEVOP_alloc_irq_vector, &irq_op)) { |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 653 | xen_free_irq(irq); |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 654 | irq = -ENOSPC; |
| 655 | goto out; |
| 656 | } |
| 657 | |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 658 | xen_irq_info_pirq_init(irq, 0, pirq, gsi, irq_op.vector, |
| 659 | shareable ? PIRQ_SHAREABLE : 0); |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 660 | |
| 661 | out: |
| 662 | spin_unlock(&irq_mapping_update_lock); |
| 663 | |
| 664 | return irq; |
| 665 | } |
| 666 | |
Qing He | f731e3ef | 2010-10-11 15:30:09 +0100 | [diff] [blame] | 667 | #ifdef CONFIG_PCI_MSI |
Ian Campbell | bf480d9 | 2011-02-18 16:43:32 +0000 | [diff] [blame] | 668 | int xen_allocate_pirq_msi(struct pci_dev *dev, struct msi_desc *msidesc) |
Ian Campbell | cbf6aa8 | 2011-01-11 17:20:14 +0000 | [diff] [blame] | 669 | { |
Ian Campbell | 5cad61a | 2011-02-18 16:43:31 +0000 | [diff] [blame] | 670 | int rc; |
Ian Campbell | cbf6aa8 | 2011-01-11 17:20:14 +0000 | [diff] [blame] | 671 | struct physdev_get_free_pirq op_get_free_pirq; |
Ian Campbell | 5cad61a | 2011-02-18 16:43:31 +0000 | [diff] [blame] | 672 | |
Ian Campbell | bf480d9 | 2011-02-18 16:43:32 +0000 | [diff] [blame] | 673 | op_get_free_pirq.type = MAP_PIRQ_TYPE_MSI; |
Ian Campbell | cbf6aa8 | 2011-01-11 17:20:14 +0000 | [diff] [blame] | 674 | rc = HYPERVISOR_physdev_op(PHYSDEVOP_get_free_pirq, &op_get_free_pirq); |
Ian Campbell | cbf6aa8 | 2011-01-11 17:20:14 +0000 | [diff] [blame] | 675 | |
Ian Campbell | 5cad61a | 2011-02-18 16:43:31 +0000 | [diff] [blame] | 676 | WARN_ONCE(rc == -ENOSYS, |
| 677 | "hypervisor does not support the PHYSDEVOP_get_free_pirq interface\n"); |
| 678 | |
| 679 | return rc ? -1 : op_get_free_pirq.pirq; |
Ian Campbell | cbf6aa8 | 2011-01-11 17:20:14 +0000 | [diff] [blame] | 680 | } |
| 681 | |
Ian Campbell | bf480d9 | 2011-02-18 16:43:32 +0000 | [diff] [blame] | 682 | int xen_bind_pirq_msi_to_irq(struct pci_dev *dev, struct msi_desc *msidesc, |
Ian Campbell | ca1d8fe | 2011-02-18 16:43:36 +0000 | [diff] [blame] | 683 | int pirq, int vector, const char *name) |
Stefano Stabellini | 809f926 | 2010-07-01 17:10:39 +0100 | [diff] [blame] | 684 | { |
Ian Campbell | bf480d9 | 2011-02-18 16:43:32 +0000 | [diff] [blame] | 685 | int irq, ret; |
Ian Campbell | 4b41df7 | 2011-02-18 16:43:29 +0000 | [diff] [blame] | 686 | |
Stefano Stabellini | 809f926 | 2010-07-01 17:10:39 +0100 | [diff] [blame] | 687 | spin_lock(&irq_mapping_update_lock); |
| 688 | |
Ian Campbell | 4b41df7 | 2011-02-18 16:43:29 +0000 | [diff] [blame] | 689 | irq = xen_allocate_irq_dynamic(); |
| 690 | if (irq == -1) |
Ian Campbell | bb5d079 | 2011-02-18 16:43:28 +0000 | [diff] [blame] | 691 | goto out; |
Stefano Stabellini | 809f926 | 2010-07-01 17:10:39 +0100 | [diff] [blame] | 692 | |
Ian Campbell | 4b41df7 | 2011-02-18 16:43:29 +0000 | [diff] [blame] | 693 | set_irq_chip_and_handler_name(irq, &xen_pirq_chip, |
Stefano Stabellini | 809f926 | 2010-07-01 17:10:39 +0100 | [diff] [blame] | 694 | handle_level_irq, name); |
| 695 | |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 696 | xen_irq_info_pirq_init(irq, 0, pirq, 0, vector, 0); |
Linus Torvalds | 5f6fb45 | 2011-03-15 19:23:40 -0700 | [diff] [blame] | 697 | ret = irq_set_msi_desc(irq, msidesc); |
Ian Campbell | bf480d9 | 2011-02-18 16:43:32 +0000 | [diff] [blame] | 698 | if (ret < 0) |
| 699 | goto error_irq; |
Stefano Stabellini | 809f926 | 2010-07-01 17:10:39 +0100 | [diff] [blame] | 700 | out: |
| 701 | spin_unlock(&irq_mapping_update_lock); |
Ian Campbell | 4b41df7 | 2011-02-18 16:43:29 +0000 | [diff] [blame] | 702 | return irq; |
Ian Campbell | bf480d9 | 2011-02-18 16:43:32 +0000 | [diff] [blame] | 703 | error_irq: |
| 704 | spin_unlock(&irq_mapping_update_lock); |
| 705 | xen_free_irq(irq); |
| 706 | return -1; |
Stefano Stabellini | 809f926 | 2010-07-01 17:10:39 +0100 | [diff] [blame] | 707 | } |
Qing He | f731e3ef | 2010-10-11 15:30:09 +0100 | [diff] [blame] | 708 | #endif |
| 709 | |
Alex Nixon | b5401a9 | 2010-03-18 16:31:34 -0400 | [diff] [blame] | 710 | int xen_destroy_irq(int irq) |
| 711 | { |
| 712 | struct irq_desc *desc; |
Jeremy Fitzhardinge | 38aa66f | 2010-09-02 14:51:39 +0100 | [diff] [blame] | 713 | struct physdev_unmap_pirq unmap_irq; |
| 714 | struct irq_info *info = info_for_irq(irq); |
Alex Nixon | b5401a9 | 2010-03-18 16:31:34 -0400 | [diff] [blame] | 715 | int rc = -ENOENT; |
| 716 | |
| 717 | spin_lock(&irq_mapping_update_lock); |
| 718 | |
| 719 | desc = irq_to_desc(irq); |
| 720 | if (!desc) |
| 721 | goto out; |
| 722 | |
Jeremy Fitzhardinge | 38aa66f | 2010-09-02 14:51:39 +0100 | [diff] [blame] | 723 | if (xen_initial_domain()) { |
Konrad Rzeszutek Wilk | 1233471 | 2010-11-19 11:27:09 -0500 | [diff] [blame] | 724 | unmap_irq.pirq = info->u.pirq.pirq; |
Jeremy Fitzhardinge | 38aa66f | 2010-09-02 14:51:39 +0100 | [diff] [blame] | 725 | unmap_irq.domid = DOMID_SELF; |
| 726 | rc = HYPERVISOR_physdev_op(PHYSDEVOP_unmap_pirq, &unmap_irq); |
| 727 | if (rc) { |
| 728 | printk(KERN_WARNING "unmap irq failed %d\n", rc); |
| 729 | goto out; |
| 730 | } |
| 731 | } |
Alex Nixon | b5401a9 | 2010-03-18 16:31:34 -0400 | [diff] [blame] | 732 | |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 733 | xen_free_irq(irq); |
Alex Nixon | b5401a9 | 2010-03-18 16:31:34 -0400 | [diff] [blame] | 734 | |
| 735 | out: |
| 736 | spin_unlock(&irq_mapping_update_lock); |
| 737 | return rc; |
| 738 | } |
| 739 | |
Stefano Stabellini | af42b8d | 2010-12-01 14:51:44 +0000 | [diff] [blame] | 740 | int xen_irq_from_pirq(unsigned pirq) |
| 741 | { |
Ian Campbell | 69c358c | 2011-03-10 16:08:13 +0000 | [diff] [blame] | 742 | int irq; |
| 743 | |
| 744 | struct irq_info *info; |
| 745 | |
| 746 | spin_lock(&irq_mapping_update_lock); |
| 747 | |
| 748 | list_for_each_entry(info, &xen_irq_list_head, list) { |
| 749 | if (info == NULL || info->type != IRQT_PIRQ) |
| 750 | continue; |
| 751 | irq = info->irq; |
| 752 | if (info->u.pirq.pirq == pirq) |
| 753 | goto out; |
| 754 | } |
| 755 | irq = -1; |
| 756 | out: |
Ian Campbell | a7b807c | 2011-03-14 09:50:39 +0000 | [diff] [blame] | 757 | spin_unlock(&irq_mapping_update_lock); |
Ian Campbell | 69c358c | 2011-03-10 16:08:13 +0000 | [diff] [blame] | 758 | |
| 759 | return irq; |
Stefano Stabellini | af42b8d | 2010-12-01 14:51:44 +0000 | [diff] [blame] | 760 | } |
| 761 | |
Jeremy Fitzhardinge | b536b4b | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 762 | int bind_evtchn_to_irq(unsigned int evtchn) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 763 | { |
| 764 | int irq; |
| 765 | |
| 766 | spin_lock(&irq_mapping_update_lock); |
| 767 | |
| 768 | irq = evtchn_to_irq[evtchn]; |
| 769 | |
| 770 | if (irq == -1) { |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 771 | irq = xen_allocate_irq_dynamic(); |
Ian Campbell | 7bee976 | 2011-03-10 16:08:15 +0000 | [diff] [blame] | 772 | if (irq == -1) |
| 773 | goto out; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 774 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 775 | set_irq_chip_and_handler_name(irq, &xen_dynamic_chip, |
Jeremy Fitzhardinge | 3588fe2 | 2010-08-27 17:30:24 -0700 | [diff] [blame] | 776 | handle_fasteoi_irq, "event"); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 777 | |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 778 | xen_irq_info_evtchn_init(irq, evtchn); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 779 | } |
| 780 | |
Ian Campbell | 7bee976 | 2011-03-10 16:08:15 +0000 | [diff] [blame] | 781 | out: |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 782 | spin_unlock(&irq_mapping_update_lock); |
| 783 | |
| 784 | return irq; |
| 785 | } |
Jeremy Fitzhardinge | b536b4b | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 786 | EXPORT_SYMBOL_GPL(bind_evtchn_to_irq); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 787 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 788 | static int bind_ipi_to_irq(unsigned int ipi, unsigned int cpu) |
| 789 | { |
| 790 | struct evtchn_bind_ipi bind_ipi; |
| 791 | int evtchn, irq; |
| 792 | |
| 793 | spin_lock(&irq_mapping_update_lock); |
| 794 | |
| 795 | irq = per_cpu(ipi_to_irq, cpu)[ipi]; |
Ian Campbell | 90af951 | 2009-02-06 16:55:58 -0800 | [diff] [blame] | 796 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 797 | if (irq == -1) { |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 798 | irq = xen_allocate_irq_dynamic(); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 799 | if (irq < 0) |
| 800 | goto out; |
| 801 | |
Jeremy Fitzhardinge | aaca496 | 2010-08-20 18:57:53 -0700 | [diff] [blame] | 802 | set_irq_chip_and_handler_name(irq, &xen_percpu_chip, |
| 803 | handle_percpu_irq, "ipi"); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 804 | |
| 805 | bind_ipi.vcpu = cpu; |
| 806 | if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi, |
| 807 | &bind_ipi) != 0) |
| 808 | BUG(); |
| 809 | evtchn = bind_ipi.port; |
| 810 | |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 811 | xen_irq_info_ipi_init(cpu, irq, evtchn, ipi); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 812 | |
| 813 | bind_evtchn_to_cpu(evtchn, cpu); |
| 814 | } |
| 815 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 816 | out: |
| 817 | spin_unlock(&irq_mapping_update_lock); |
| 818 | return irq; |
| 819 | } |
| 820 | |
Ian Campbell | 2e820f5 | 2009-02-09 12:05:50 -0800 | [diff] [blame] | 821 | static int bind_interdomain_evtchn_to_irq(unsigned int remote_domain, |
| 822 | unsigned int remote_port) |
| 823 | { |
| 824 | struct evtchn_bind_interdomain bind_interdomain; |
| 825 | int err; |
| 826 | |
| 827 | bind_interdomain.remote_dom = remote_domain; |
| 828 | bind_interdomain.remote_port = remote_port; |
| 829 | |
| 830 | err = HYPERVISOR_event_channel_op(EVTCHNOP_bind_interdomain, |
| 831 | &bind_interdomain); |
| 832 | |
| 833 | return err ? : bind_evtchn_to_irq(bind_interdomain.local_port); |
| 834 | } |
| 835 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 836 | |
Jeremy Fitzhardinge | 4fe7d5a | 2010-09-02 16:17:06 +0100 | [diff] [blame] | 837 | int bind_virq_to_irq(unsigned int virq, unsigned int cpu) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 838 | { |
| 839 | struct evtchn_bind_virq bind_virq; |
| 840 | int evtchn, irq; |
| 841 | |
| 842 | spin_lock(&irq_mapping_update_lock); |
| 843 | |
| 844 | irq = per_cpu(virq_to_irq, cpu)[virq]; |
| 845 | |
| 846 | if (irq == -1) { |
Ian Campbell | c9df1ce | 2011-01-11 17:20:15 +0000 | [diff] [blame] | 847 | irq = xen_allocate_irq_dynamic(); |
Ian Campbell | 7bee976 | 2011-03-10 16:08:15 +0000 | [diff] [blame] | 848 | if (irq == -1) |
| 849 | goto out; |
Jeremy Fitzhardinge | a52521f | 2010-09-22 15:28:52 -0700 | [diff] [blame] | 850 | |
| 851 | set_irq_chip_and_handler_name(irq, &xen_percpu_chip, |
| 852 | handle_percpu_irq, "virq"); |
| 853 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 854 | bind_virq.virq = virq; |
| 855 | bind_virq.vcpu = cpu; |
| 856 | if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq, |
| 857 | &bind_virq) != 0) |
| 858 | BUG(); |
| 859 | evtchn = bind_virq.port; |
| 860 | |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 861 | xen_irq_info_virq_init(cpu, irq, evtchn, virq); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 862 | |
| 863 | bind_evtchn_to_cpu(evtchn, cpu); |
| 864 | } |
| 865 | |
Ian Campbell | 7bee976 | 2011-03-10 16:08:15 +0000 | [diff] [blame] | 866 | out: |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 867 | spin_unlock(&irq_mapping_update_lock); |
| 868 | |
| 869 | return irq; |
| 870 | } |
| 871 | |
| 872 | static void unbind_from_irq(unsigned int irq) |
| 873 | { |
| 874 | struct evtchn_close close; |
| 875 | int evtchn = evtchn_from_irq(irq); |
| 876 | |
| 877 | spin_lock(&irq_mapping_update_lock); |
| 878 | |
Jeremy Fitzhardinge | d77bbd4 | 2009-02-06 14:09:45 -0800 | [diff] [blame] | 879 | if (VALID_EVTCHN(evtchn)) { |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 880 | close.port = evtchn; |
| 881 | if (HYPERVISOR_event_channel_op(EVTCHNOP_close, &close) != 0) |
| 882 | BUG(); |
| 883 | |
| 884 | switch (type_from_irq(irq)) { |
| 885 | case IRQT_VIRQ: |
| 886 | per_cpu(virq_to_irq, cpu_from_evtchn(evtchn)) |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 887 | [virq_from_irq(irq)] = -1; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 888 | break; |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 889 | case IRQT_IPI: |
| 890 | per_cpu(ipi_to_irq, cpu_from_evtchn(evtchn)) |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 891 | [ipi_from_irq(irq)] = -1; |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 892 | break; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 893 | default: |
| 894 | break; |
| 895 | } |
| 896 | |
| 897 | /* Closed ports are implicitly re-bound to VCPU0. */ |
| 898 | bind_evtchn_to_cpu(evtchn, 0); |
| 899 | |
| 900 | evtchn_to_irq[evtchn] = -1; |
Ian Campbell | fed5ea8 | 2009-12-01 16:15:30 +0000 | [diff] [blame] | 901 | } |
| 902 | |
Ian Campbell | ca62ce8 | 2011-03-10 16:08:12 +0000 | [diff] [blame] | 903 | BUG_ON(info_for_irq(irq)->type == IRQT_UNBOUND); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 904 | |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 905 | xen_free_irq(irq); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 906 | |
| 907 | spin_unlock(&irq_mapping_update_lock); |
| 908 | } |
| 909 | |
| 910 | int bind_evtchn_to_irqhandler(unsigned int evtchn, |
Jeff Garzik | 7c23997 | 2007-10-19 03:12:20 -0400 | [diff] [blame] | 911 | irq_handler_t handler, |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 912 | unsigned long irqflags, |
| 913 | const char *devname, void *dev_id) |
| 914 | { |
| 915 | unsigned int irq; |
| 916 | int retval; |
| 917 | |
| 918 | irq = bind_evtchn_to_irq(evtchn); |
Ian Campbell | 7bee976 | 2011-03-10 16:08:15 +0000 | [diff] [blame] | 919 | if (irq < 0) |
| 920 | return irq; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 921 | retval = request_irq(irq, handler, irqflags, devname, dev_id); |
| 922 | if (retval != 0) { |
| 923 | unbind_from_irq(irq); |
| 924 | return retval; |
| 925 | } |
| 926 | |
| 927 | return irq; |
| 928 | } |
| 929 | EXPORT_SYMBOL_GPL(bind_evtchn_to_irqhandler); |
| 930 | |
Ian Campbell | 2e820f5 | 2009-02-09 12:05:50 -0800 | [diff] [blame] | 931 | int bind_interdomain_evtchn_to_irqhandler(unsigned int remote_domain, |
| 932 | unsigned int remote_port, |
| 933 | irq_handler_t handler, |
| 934 | unsigned long irqflags, |
| 935 | const char *devname, |
| 936 | void *dev_id) |
| 937 | { |
| 938 | int irq, retval; |
| 939 | |
| 940 | irq = bind_interdomain_evtchn_to_irq(remote_domain, remote_port); |
| 941 | if (irq < 0) |
| 942 | return irq; |
| 943 | |
| 944 | retval = request_irq(irq, handler, irqflags, devname, dev_id); |
| 945 | if (retval != 0) { |
| 946 | unbind_from_irq(irq); |
| 947 | return retval; |
| 948 | } |
| 949 | |
| 950 | return irq; |
| 951 | } |
| 952 | EXPORT_SYMBOL_GPL(bind_interdomain_evtchn_to_irqhandler); |
| 953 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 954 | int bind_virq_to_irqhandler(unsigned int virq, unsigned int cpu, |
Jeff Garzik | 7c23997 | 2007-10-19 03:12:20 -0400 | [diff] [blame] | 955 | irq_handler_t handler, |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 956 | unsigned long irqflags, const char *devname, void *dev_id) |
| 957 | { |
| 958 | unsigned int irq; |
| 959 | int retval; |
| 960 | |
| 961 | irq = bind_virq_to_irq(virq, cpu); |
Ian Campbell | 7bee976 | 2011-03-10 16:08:15 +0000 | [diff] [blame] | 962 | if (irq < 0) |
| 963 | return irq; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 964 | retval = request_irq(irq, handler, irqflags, devname, dev_id); |
| 965 | if (retval != 0) { |
| 966 | unbind_from_irq(irq); |
| 967 | return retval; |
| 968 | } |
| 969 | |
| 970 | return irq; |
| 971 | } |
| 972 | EXPORT_SYMBOL_GPL(bind_virq_to_irqhandler); |
| 973 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 974 | int bind_ipi_to_irqhandler(enum ipi_vector ipi, |
| 975 | unsigned int cpu, |
| 976 | irq_handler_t handler, |
| 977 | unsigned long irqflags, |
| 978 | const char *devname, |
| 979 | void *dev_id) |
| 980 | { |
| 981 | int irq, retval; |
| 982 | |
| 983 | irq = bind_ipi_to_irq(ipi, cpu); |
| 984 | if (irq < 0) |
| 985 | return irq; |
| 986 | |
Thomas Gleixner | 676dc3c | 2011-02-05 20:08:59 +0000 | [diff] [blame] | 987 | irqflags |= IRQF_NO_SUSPEND | IRQF_FORCE_RESUME; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 988 | retval = request_irq(irq, handler, irqflags, devname, dev_id); |
| 989 | if (retval != 0) { |
| 990 | unbind_from_irq(irq); |
| 991 | return retval; |
| 992 | } |
| 993 | |
| 994 | return irq; |
| 995 | } |
| 996 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 997 | void unbind_from_irqhandler(unsigned int irq, void *dev_id) |
| 998 | { |
| 999 | free_irq(irq, dev_id); |
| 1000 | unbind_from_irq(irq); |
| 1001 | } |
| 1002 | EXPORT_SYMBOL_GPL(unbind_from_irqhandler); |
| 1003 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 1004 | void xen_send_IPI_one(unsigned int cpu, enum ipi_vector vector) |
| 1005 | { |
| 1006 | int irq = per_cpu(ipi_to_irq, cpu)[vector]; |
| 1007 | BUG_ON(irq < 0); |
| 1008 | notify_remote_via_irq(irq); |
| 1009 | } |
| 1010 | |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 1011 | irqreturn_t xen_debug_interrupt(int irq, void *dev_id) |
| 1012 | { |
| 1013 | struct shared_info *sh = HYPERVISOR_shared_info; |
| 1014 | int cpu = smp_processor_id(); |
Ian Campbell | cb60d11 | 2011-03-10 16:08:08 +0000 | [diff] [blame] | 1015 | unsigned long *cpu_evtchn = per_cpu(cpu_evtchn_mask, cpu); |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 1016 | int i; |
| 1017 | unsigned long flags; |
| 1018 | static DEFINE_SPINLOCK(debug_lock); |
Ian Campbell | cb52e6d | 2010-10-15 11:52:46 +0100 | [diff] [blame] | 1019 | struct vcpu_info *v; |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 1020 | |
| 1021 | spin_lock_irqsave(&debug_lock, flags); |
| 1022 | |
Ian Campbell | cb52e6d | 2010-10-15 11:52:46 +0100 | [diff] [blame] | 1023 | printk("\nvcpu %d\n ", cpu); |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 1024 | |
| 1025 | for_each_online_cpu(i) { |
Ian Campbell | cb52e6d | 2010-10-15 11:52:46 +0100 | [diff] [blame] | 1026 | int pending; |
| 1027 | v = per_cpu(xen_vcpu, i); |
| 1028 | pending = (get_irq_regs() && i == cpu) |
| 1029 | ? xen_irqs_disabled(get_irq_regs()) |
| 1030 | : v->evtchn_upcall_mask; |
| 1031 | printk("%d: masked=%d pending=%d event_sel %0*lx\n ", i, |
| 1032 | pending, v->evtchn_upcall_pending, |
| 1033 | (int)(sizeof(v->evtchn_pending_sel)*2), |
| 1034 | v->evtchn_pending_sel); |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 1035 | } |
Ian Campbell | cb52e6d | 2010-10-15 11:52:46 +0100 | [diff] [blame] | 1036 | v = per_cpu(xen_vcpu, cpu); |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 1037 | |
Ian Campbell | cb52e6d | 2010-10-15 11:52:46 +0100 | [diff] [blame] | 1038 | printk("\npending:\n "); |
| 1039 | for (i = ARRAY_SIZE(sh->evtchn_pending)-1; i >= 0; i--) |
| 1040 | printk("%0*lx%s", (int)sizeof(sh->evtchn_pending[0])*2, |
| 1041 | sh->evtchn_pending[i], |
| 1042 | i % 8 == 0 ? "\n " : " "); |
| 1043 | printk("\nglobal mask:\n "); |
| 1044 | for (i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--) |
| 1045 | printk("%0*lx%s", |
| 1046 | (int)(sizeof(sh->evtchn_mask[0])*2), |
| 1047 | sh->evtchn_mask[i], |
| 1048 | i % 8 == 0 ? "\n " : " "); |
| 1049 | |
| 1050 | printk("\nglobally unmasked:\n "); |
| 1051 | for (i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--) |
| 1052 | printk("%0*lx%s", (int)(sizeof(sh->evtchn_mask[0])*2), |
| 1053 | sh->evtchn_pending[i] & ~sh->evtchn_mask[i], |
| 1054 | i % 8 == 0 ? "\n " : " "); |
| 1055 | |
| 1056 | printk("\nlocal cpu%d mask:\n ", cpu); |
| 1057 | for (i = (NR_EVENT_CHANNELS/BITS_PER_LONG)-1; i >= 0; i--) |
| 1058 | printk("%0*lx%s", (int)(sizeof(cpu_evtchn[0])*2), |
| 1059 | cpu_evtchn[i], |
| 1060 | i % 8 == 0 ? "\n " : " "); |
| 1061 | |
| 1062 | printk("\nlocally unmasked:\n "); |
| 1063 | for (i = ARRAY_SIZE(sh->evtchn_mask)-1; i >= 0; i--) { |
| 1064 | unsigned long pending = sh->evtchn_pending[i] |
| 1065 | & ~sh->evtchn_mask[i] |
| 1066 | & cpu_evtchn[i]; |
| 1067 | printk("%0*lx%s", (int)(sizeof(sh->evtchn_mask[0])*2), |
| 1068 | pending, i % 8 == 0 ? "\n " : " "); |
| 1069 | } |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 1070 | |
| 1071 | printk("\npending list:\n"); |
Ian Campbell | cb52e6d | 2010-10-15 11:52:46 +0100 | [diff] [blame] | 1072 | for (i = 0; i < NR_EVENT_CHANNELS; i++) { |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 1073 | if (sync_test_bit(i, sh->evtchn_pending)) { |
Ian Campbell | cb52e6d | 2010-10-15 11:52:46 +0100 | [diff] [blame] | 1074 | int word_idx = i / BITS_PER_LONG; |
| 1075 | printk(" %d: event %d -> irq %d%s%s%s\n", |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 1076 | cpu_from_evtchn(i), i, |
Ian Campbell | cb52e6d | 2010-10-15 11:52:46 +0100 | [diff] [blame] | 1077 | evtchn_to_irq[i], |
| 1078 | sync_test_bit(word_idx, &v->evtchn_pending_sel) |
| 1079 | ? "" : " l2-clear", |
| 1080 | !sync_test_bit(i, sh->evtchn_mask) |
| 1081 | ? "" : " globally-masked", |
| 1082 | sync_test_bit(i, cpu_evtchn) |
| 1083 | ? "" : " locally-masked"); |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 1084 | } |
| 1085 | } |
| 1086 | |
| 1087 | spin_unlock_irqrestore(&debug_lock, flags); |
| 1088 | |
| 1089 | return IRQ_HANDLED; |
| 1090 | } |
| 1091 | |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 1092 | static DEFINE_PER_CPU(unsigned, xed_nesting_count); |
Keir Fraser | ada6814 | 2011-03-03 10:01:11 +0000 | [diff] [blame] | 1093 | static DEFINE_PER_CPU(unsigned int, current_word_idx); |
| 1094 | static DEFINE_PER_CPU(unsigned int, current_bit_idx); |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 1095 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1096 | /* |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1097 | * Mask out the i least significant bits of w |
| 1098 | */ |
| 1099 | #define MASK_LSBS(w, i) (w & ((~0UL) << i)) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1100 | |
| 1101 | /* |
| 1102 | * Search the CPUs pending events bitmasks. For each one found, map |
| 1103 | * the event number to an irq, and feed it into do_IRQ() for |
| 1104 | * handling. |
| 1105 | * |
| 1106 | * Xen uses a two-level bitmap to speed searching. The first level is |
| 1107 | * a bitset of words which contain pending event bits. The second |
| 1108 | * level is a bitset of pending events themselves. |
| 1109 | */ |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1110 | static void __xen_evtchn_do_upcall(void) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1111 | { |
Keir Fraser | 24b51c2 | 2011-03-03 11:06:28 +0000 | [diff] [blame] | 1112 | int start_word_idx, start_bit_idx; |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1113 | int word_idx, bit_idx; |
Keir Fraser | 24b51c2 | 2011-03-03 11:06:28 +0000 | [diff] [blame] | 1114 | int i; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1115 | int cpu = get_cpu(); |
| 1116 | struct shared_info *s = HYPERVISOR_shared_info; |
Christoph Lameter | 780f36d | 2010-12-06 11:16:29 -0600 | [diff] [blame] | 1117 | struct vcpu_info *vcpu_info = __this_cpu_read(xen_vcpu); |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1118 | unsigned count; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1119 | |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1120 | do { |
| 1121 | unsigned long pending_words; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1122 | |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1123 | vcpu_info->evtchn_upcall_pending = 0; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1124 | |
Christoph Lameter | b2e4ae6 | 2010-12-06 11:40:07 -0600 | [diff] [blame] | 1125 | if (__this_cpu_inc_return(xed_nesting_count) - 1) |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1126 | goto out; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1127 | |
Isaku Yamahata | e849c3e | 2008-04-02 10:53:56 -0700 | [diff] [blame] | 1128 | #ifndef CONFIG_X86 /* No need for a barrier -- XCHG is a barrier on x86. */ |
| 1129 | /* Clear master flag /before/ clearing selector flag. */ |
Isaku Yamahata | 6673cf6 | 2008-06-16 14:58:13 -0700 | [diff] [blame] | 1130 | wmb(); |
Isaku Yamahata | e849c3e | 2008-04-02 10:53:56 -0700 | [diff] [blame] | 1131 | #endif |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1132 | pending_words = xchg(&vcpu_info->evtchn_pending_sel, 0); |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1133 | |
Keir Fraser | 24b51c2 | 2011-03-03 11:06:28 +0000 | [diff] [blame] | 1134 | start_word_idx = __this_cpu_read(current_word_idx); |
| 1135 | start_bit_idx = __this_cpu_read(current_bit_idx); |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1136 | |
Keir Fraser | 24b51c2 | 2011-03-03 11:06:28 +0000 | [diff] [blame] | 1137 | word_idx = start_word_idx; |
| 1138 | |
| 1139 | for (i = 0; pending_words != 0; i++) { |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1140 | unsigned long pending_bits; |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1141 | unsigned long words; |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1142 | |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1143 | words = MASK_LSBS(pending_words, word_idx); |
| 1144 | |
| 1145 | /* |
Keir Fraser | ada6814 | 2011-03-03 10:01:11 +0000 | [diff] [blame] | 1146 | * If we masked out all events, wrap to beginning. |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1147 | */ |
| 1148 | if (words == 0) { |
Keir Fraser | ada6814 | 2011-03-03 10:01:11 +0000 | [diff] [blame] | 1149 | word_idx = 0; |
| 1150 | bit_idx = 0; |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1151 | continue; |
| 1152 | } |
| 1153 | word_idx = __ffs(words); |
| 1154 | |
Keir Fraser | 24b51c2 | 2011-03-03 11:06:28 +0000 | [diff] [blame] | 1155 | pending_bits = active_evtchns(cpu, s, word_idx); |
| 1156 | bit_idx = 0; /* usually scan entire word from start */ |
| 1157 | if (word_idx == start_word_idx) { |
| 1158 | /* We scan the starting word in two parts */ |
| 1159 | if (i == 0) |
| 1160 | /* 1st time: start in the middle */ |
| 1161 | bit_idx = start_bit_idx; |
| 1162 | else |
| 1163 | /* 2nd time: mask bits done already */ |
| 1164 | bit_idx &= (1UL << start_bit_idx) - 1; |
| 1165 | } |
| 1166 | |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1167 | do { |
| 1168 | unsigned long bits; |
| 1169 | int port, irq; |
Eric W. Biederman | ca4dbc6 | 2010-02-17 18:49:54 -0800 | [diff] [blame] | 1170 | struct irq_desc *desc; |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1171 | |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1172 | bits = MASK_LSBS(pending_bits, bit_idx); |
| 1173 | |
| 1174 | /* If we masked out all events, move on. */ |
Keir Fraser | ada6814 | 2011-03-03 10:01:11 +0000 | [diff] [blame] | 1175 | if (bits == 0) |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1176 | break; |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1177 | |
| 1178 | bit_idx = __ffs(bits); |
| 1179 | |
| 1180 | /* Process port. */ |
| 1181 | port = (word_idx * BITS_PER_LONG) + bit_idx; |
| 1182 | irq = evtchn_to_irq[port]; |
| 1183 | |
Jeremy Fitzhardinge | 3588fe2 | 2010-08-27 17:30:24 -0700 | [diff] [blame] | 1184 | mask_evtchn(port); |
| 1185 | clear_evtchn(port); |
| 1186 | |
Eric W. Biederman | ca4dbc6 | 2010-02-17 18:49:54 -0800 | [diff] [blame] | 1187 | if (irq != -1) { |
| 1188 | desc = irq_to_desc(irq); |
| 1189 | if (desc) |
| 1190 | generic_handle_irq_desc(irq, desc); |
| 1191 | } |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1192 | |
Keir Fraser | ada6814 | 2011-03-03 10:01:11 +0000 | [diff] [blame] | 1193 | bit_idx = (bit_idx + 1) % BITS_PER_LONG; |
| 1194 | |
| 1195 | /* Next caller starts at last processed + 1 */ |
| 1196 | __this_cpu_write(current_word_idx, |
| 1197 | bit_idx ? word_idx : |
| 1198 | (word_idx+1) % BITS_PER_LONG); |
| 1199 | __this_cpu_write(current_bit_idx, bit_idx); |
| 1200 | } while (bit_idx != 0); |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1201 | |
Keir Fraser | 24b51c2 | 2011-03-03 11:06:28 +0000 | [diff] [blame] | 1202 | /* Scan start_l1i twice; all others once. */ |
| 1203 | if ((word_idx != start_word_idx) || (i != 0)) |
Scott Rixner | ab7f863 | 2011-03-03 09:30:08 +0000 | [diff] [blame] | 1204 | pending_words &= ~(1UL << word_idx); |
Keir Fraser | ada6814 | 2011-03-03 10:01:11 +0000 | [diff] [blame] | 1205 | |
| 1206 | word_idx = (word_idx + 1) % BITS_PER_LONG; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1207 | } |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1208 | |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1209 | BUG_ON(!irqs_disabled()); |
| 1210 | |
Christoph Lameter | 780f36d | 2010-12-06 11:16:29 -0600 | [diff] [blame] | 1211 | count = __this_cpu_read(xed_nesting_count); |
| 1212 | __this_cpu_write(xed_nesting_count, 0); |
Stefano Stabellini | 183d03c | 2010-05-17 17:08:21 +0100 | [diff] [blame] | 1213 | } while (count != 1 || vcpu_info->evtchn_upcall_pending); |
Jeremy Fitzhardinge | 229664b | 2008-03-17 16:37:20 -0700 | [diff] [blame] | 1214 | |
| 1215 | out: |
Jeremy Fitzhardinge | 3445a8f | 2009-02-06 14:09:46 -0800 | [diff] [blame] | 1216 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1217 | put_cpu(); |
| 1218 | } |
| 1219 | |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1220 | void xen_evtchn_do_upcall(struct pt_regs *regs) |
| 1221 | { |
| 1222 | struct pt_regs *old_regs = set_irq_regs(regs); |
| 1223 | |
| 1224 | exit_idle(); |
| 1225 | irq_enter(); |
| 1226 | |
| 1227 | __xen_evtchn_do_upcall(); |
| 1228 | |
| 1229 | irq_exit(); |
| 1230 | set_irq_regs(old_regs); |
| 1231 | } |
| 1232 | |
| 1233 | void xen_hvm_evtchn_do_upcall(void) |
| 1234 | { |
| 1235 | __xen_evtchn_do_upcall(); |
| 1236 | } |
Stefano Stabellini | 183d03c | 2010-05-17 17:08:21 +0100 | [diff] [blame] | 1237 | EXPORT_SYMBOL_GPL(xen_hvm_evtchn_do_upcall); |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1238 | |
Jeremy Fitzhardinge | eb1e305 | 2008-05-26 23:31:23 +0100 | [diff] [blame] | 1239 | /* Rebind a new event channel to an existing irq. */ |
| 1240 | void rebind_evtchn_irq(int evtchn, int irq) |
| 1241 | { |
Jeremy Fitzhardinge | d77bbd4 | 2009-02-06 14:09:45 -0800 | [diff] [blame] | 1242 | struct irq_info *info = info_for_irq(irq); |
| 1243 | |
Jeremy Fitzhardinge | eb1e305 | 2008-05-26 23:31:23 +0100 | [diff] [blame] | 1244 | /* Make sure the irq is masked, since the new event channel |
| 1245 | will also be masked. */ |
| 1246 | disable_irq(irq); |
| 1247 | |
| 1248 | spin_lock(&irq_mapping_update_lock); |
| 1249 | |
| 1250 | /* After resume the irq<->evtchn mappings are all cleared out */ |
| 1251 | BUG_ON(evtchn_to_irq[evtchn] != -1); |
| 1252 | /* Expect irq to have been bound before, |
Jeremy Fitzhardinge | d77bbd4 | 2009-02-06 14:09:45 -0800 | [diff] [blame] | 1253 | so there should be a proper type */ |
| 1254 | BUG_ON(info->type == IRQT_UNBOUND); |
Jeremy Fitzhardinge | eb1e305 | 2008-05-26 23:31:23 +0100 | [diff] [blame] | 1255 | |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 1256 | xen_irq_info_evtchn_init(irq, evtchn); |
Jeremy Fitzhardinge | eb1e305 | 2008-05-26 23:31:23 +0100 | [diff] [blame] | 1257 | |
| 1258 | spin_unlock(&irq_mapping_update_lock); |
| 1259 | |
| 1260 | /* new event channels are always bound to cpu 0 */ |
Rusty Russell | 0de2652 | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 1261 | irq_set_affinity(irq, cpumask_of(0)); |
Jeremy Fitzhardinge | eb1e305 | 2008-05-26 23:31:23 +0100 | [diff] [blame] | 1262 | |
| 1263 | /* Unmask the event channel. */ |
| 1264 | enable_irq(irq); |
| 1265 | } |
| 1266 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1267 | /* Rebind an evtchn so that it gets delivered to a specific cpu */ |
Yinghai Lu | d5dedd4 | 2009-04-27 17:59:21 -0700 | [diff] [blame] | 1268 | static int rebind_irq_to_cpu(unsigned irq, unsigned tcpu) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1269 | { |
| 1270 | struct evtchn_bind_vcpu bind_vcpu; |
| 1271 | int evtchn = evtchn_from_irq(irq); |
| 1272 | |
Ian Campbell | be49472 | 2011-03-10 16:08:02 +0000 | [diff] [blame] | 1273 | if (!VALID_EVTCHN(evtchn)) |
| 1274 | return -1; |
| 1275 | |
| 1276 | /* |
| 1277 | * Events delivered via platform PCI interrupts are always |
| 1278 | * routed to vcpu 0 and hence cannot be rebound. |
| 1279 | */ |
| 1280 | if (xen_hvm_domain() && !xen_have_vector_callback) |
Yinghai Lu | d5dedd4 | 2009-04-27 17:59:21 -0700 | [diff] [blame] | 1281 | return -1; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1282 | |
| 1283 | /* Send future instances of this interrupt to other vcpu. */ |
| 1284 | bind_vcpu.port = evtchn; |
| 1285 | bind_vcpu.vcpu = tcpu; |
| 1286 | |
| 1287 | /* |
| 1288 | * If this fails, it usually just indicates that we're dealing with a |
| 1289 | * virq or IPI channel, which don't actually need to be rebound. Ignore |
| 1290 | * it, but don't do the xenlinux-level rebind in that case. |
| 1291 | */ |
| 1292 | if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_vcpu, &bind_vcpu) >= 0) |
| 1293 | bind_evtchn_to_cpu(evtchn, tcpu); |
Yinghai Lu | d5dedd4 | 2009-04-27 17:59:21 -0700 | [diff] [blame] | 1294 | |
| 1295 | return 0; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1296 | } |
| 1297 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1298 | static int set_affinity_irq(struct irq_data *data, const struct cpumask *dest, |
| 1299 | bool force) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1300 | { |
Rusty Russell | 0de2652 | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 1301 | unsigned tcpu = cpumask_first(dest); |
Yinghai Lu | d5dedd4 | 2009-04-27 17:59:21 -0700 | [diff] [blame] | 1302 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1303 | return rebind_irq_to_cpu(data->irq, tcpu); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1304 | } |
| 1305 | |
Isaku Yamahata | 642e0c8 | 2008-04-02 10:53:57 -0700 | [diff] [blame] | 1306 | int resend_irq_on_evtchn(unsigned int irq) |
| 1307 | { |
| 1308 | int masked, evtchn = evtchn_from_irq(irq); |
| 1309 | struct shared_info *s = HYPERVISOR_shared_info; |
| 1310 | |
| 1311 | if (!VALID_EVTCHN(evtchn)) |
| 1312 | return 1; |
| 1313 | |
| 1314 | masked = sync_test_and_set_bit(evtchn, s->evtchn_mask); |
| 1315 | sync_set_bit(evtchn, s->evtchn_pending); |
| 1316 | if (!masked) |
| 1317 | unmask_evtchn(evtchn); |
| 1318 | |
| 1319 | return 1; |
| 1320 | } |
| 1321 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1322 | static void enable_dynirq(struct irq_data *data) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1323 | { |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1324 | int evtchn = evtchn_from_irq(data->irq); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1325 | |
| 1326 | if (VALID_EVTCHN(evtchn)) |
| 1327 | unmask_evtchn(evtchn); |
| 1328 | } |
| 1329 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1330 | static void disable_dynirq(struct irq_data *data) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1331 | { |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1332 | int evtchn = evtchn_from_irq(data->irq); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1333 | |
| 1334 | if (VALID_EVTCHN(evtchn)) |
| 1335 | mask_evtchn(evtchn); |
| 1336 | } |
| 1337 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1338 | static void ack_dynirq(struct irq_data *data) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1339 | { |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1340 | int evtchn = evtchn_from_irq(data->irq); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1341 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1342 | move_masked_irq(data->irq); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1343 | |
| 1344 | if (VALID_EVTCHN(evtchn)) |
Jeremy Fitzhardinge | 3588fe2 | 2010-08-27 17:30:24 -0700 | [diff] [blame] | 1345 | unmask_evtchn(evtchn); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1346 | } |
| 1347 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1348 | static int retrigger_dynirq(struct irq_data *data) |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1349 | { |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1350 | int evtchn = evtchn_from_irq(data->irq); |
Jeremy Fitzhardinge | ee8fa1c | 2008-03-17 16:37:19 -0700 | [diff] [blame] | 1351 | struct shared_info *sh = HYPERVISOR_shared_info; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1352 | int ret = 0; |
| 1353 | |
| 1354 | if (VALID_EVTCHN(evtchn)) { |
Jeremy Fitzhardinge | ee8fa1c | 2008-03-17 16:37:19 -0700 | [diff] [blame] | 1355 | int masked; |
| 1356 | |
| 1357 | masked = sync_test_and_set_bit(evtchn, sh->evtchn_mask); |
| 1358 | sync_set_bit(evtchn, sh->evtchn_pending); |
| 1359 | if (!masked) |
| 1360 | unmask_evtchn(evtchn); |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1361 | ret = 1; |
| 1362 | } |
| 1363 | |
| 1364 | return ret; |
| 1365 | } |
| 1366 | |
Ian Campbell | 0a85226 | 2011-03-10 16:08:06 +0000 | [diff] [blame] | 1367 | static void restore_pirqs(void) |
Stefano Stabellini | 9a069c3 | 2010-12-01 14:51:44 +0000 | [diff] [blame] | 1368 | { |
| 1369 | int pirq, rc, irq, gsi; |
| 1370 | struct physdev_map_pirq map_irq; |
Ian Campbell | 69c358c | 2011-03-10 16:08:13 +0000 | [diff] [blame] | 1371 | struct irq_info *info; |
Stefano Stabellini | 9a069c3 | 2010-12-01 14:51:44 +0000 | [diff] [blame] | 1372 | |
Ian Campbell | 69c358c | 2011-03-10 16:08:13 +0000 | [diff] [blame] | 1373 | list_for_each_entry(info, &xen_irq_list_head, list) { |
| 1374 | if (info->type != IRQT_PIRQ) |
Stefano Stabellini | 9a069c3 | 2010-12-01 14:51:44 +0000 | [diff] [blame] | 1375 | continue; |
| 1376 | |
Ian Campbell | 69c358c | 2011-03-10 16:08:13 +0000 | [diff] [blame] | 1377 | pirq = info->u.pirq.pirq; |
| 1378 | gsi = info->u.pirq.gsi; |
| 1379 | irq = info->irq; |
| 1380 | |
Stefano Stabellini | 9a069c3 | 2010-12-01 14:51:44 +0000 | [diff] [blame] | 1381 | /* save/restore of PT devices doesn't work, so at this point the |
| 1382 | * only devices present are GSI based emulated devices */ |
Stefano Stabellini | 9a069c3 | 2010-12-01 14:51:44 +0000 | [diff] [blame] | 1383 | if (!gsi) |
| 1384 | continue; |
| 1385 | |
| 1386 | map_irq.domid = DOMID_SELF; |
| 1387 | map_irq.type = MAP_PIRQ_TYPE_GSI; |
| 1388 | map_irq.index = gsi; |
| 1389 | map_irq.pirq = pirq; |
| 1390 | |
| 1391 | rc = HYPERVISOR_physdev_op(PHYSDEVOP_map_pirq, &map_irq); |
| 1392 | if (rc) { |
| 1393 | printk(KERN_WARNING "xen map irq failed gsi=%d irq=%d pirq=%d rc=%d\n", |
| 1394 | gsi, irq, pirq, rc); |
Ian Campbell | 9158c35 | 2011-03-10 16:08:09 +0000 | [diff] [blame] | 1395 | xen_free_irq(irq); |
Stefano Stabellini | 9a069c3 | 2010-12-01 14:51:44 +0000 | [diff] [blame] | 1396 | continue; |
| 1397 | } |
| 1398 | |
| 1399 | printk(KERN_DEBUG "xen: --> irq=%d, pirq=%d\n", irq, map_irq.pirq); |
| 1400 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1401 | __startup_pirq(irq); |
Stefano Stabellini | 9a069c3 | 2010-12-01 14:51:44 +0000 | [diff] [blame] | 1402 | } |
| 1403 | } |
| 1404 | |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1405 | static void restore_cpu_virqs(unsigned int cpu) |
| 1406 | { |
| 1407 | struct evtchn_bind_virq bind_virq; |
| 1408 | int virq, irq, evtchn; |
| 1409 | |
| 1410 | for (virq = 0; virq < NR_VIRQS; virq++) { |
| 1411 | if ((irq = per_cpu(virq_to_irq, cpu)[virq]) == -1) |
| 1412 | continue; |
| 1413 | |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 1414 | BUG_ON(virq_from_irq(irq) != virq); |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1415 | |
| 1416 | /* Get a new binding from Xen. */ |
| 1417 | bind_virq.virq = virq; |
| 1418 | bind_virq.vcpu = cpu; |
| 1419 | if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq, |
| 1420 | &bind_virq) != 0) |
| 1421 | BUG(); |
| 1422 | evtchn = bind_virq.port; |
| 1423 | |
| 1424 | /* Record the new mapping. */ |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 1425 | xen_irq_info_virq_init(cpu, irq, evtchn, virq); |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1426 | bind_evtchn_to_cpu(evtchn, cpu); |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1427 | } |
| 1428 | } |
| 1429 | |
| 1430 | static void restore_cpu_ipis(unsigned int cpu) |
| 1431 | { |
| 1432 | struct evtchn_bind_ipi bind_ipi; |
| 1433 | int ipi, irq, evtchn; |
| 1434 | |
| 1435 | for (ipi = 0; ipi < XEN_NR_IPIS; ipi++) { |
| 1436 | if ((irq = per_cpu(ipi_to_irq, cpu)[ipi]) == -1) |
| 1437 | continue; |
| 1438 | |
Jeremy Fitzhardinge | ced40d0 | 2009-02-06 14:09:44 -0800 | [diff] [blame] | 1439 | BUG_ON(ipi_from_irq(irq) != ipi); |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1440 | |
| 1441 | /* Get a new binding from Xen. */ |
| 1442 | bind_ipi.vcpu = cpu; |
| 1443 | if (HYPERVISOR_event_channel_op(EVTCHNOP_bind_ipi, |
| 1444 | &bind_ipi) != 0) |
| 1445 | BUG(); |
| 1446 | evtchn = bind_ipi.port; |
| 1447 | |
| 1448 | /* Record the new mapping. */ |
Ian Campbell | 3d4cfa3 | 2011-03-10 16:08:10 +0000 | [diff] [blame] | 1449 | xen_irq_info_ipi_init(cpu, irq, evtchn, ipi); |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1450 | bind_evtchn_to_cpu(evtchn, cpu); |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1451 | } |
| 1452 | } |
| 1453 | |
Jeremy Fitzhardinge | 2d9e1e2 | 2008-07-07 12:07:53 -0700 | [diff] [blame] | 1454 | /* Clear an irq's pending state, in preparation for polling on it */ |
| 1455 | void xen_clear_irq_pending(int irq) |
| 1456 | { |
| 1457 | int evtchn = evtchn_from_irq(irq); |
| 1458 | |
| 1459 | if (VALID_EVTCHN(evtchn)) |
| 1460 | clear_evtchn(evtchn); |
| 1461 | } |
Konrad Rzeszutek Wilk | d9a8814 | 2009-11-05 16:33:09 -0500 | [diff] [blame] | 1462 | EXPORT_SYMBOL(xen_clear_irq_pending); |
Jeremy Fitzhardinge | 168d2f4 | 2008-08-20 17:02:18 -0700 | [diff] [blame] | 1463 | void xen_set_irq_pending(int irq) |
| 1464 | { |
| 1465 | int evtchn = evtchn_from_irq(irq); |
| 1466 | |
| 1467 | if (VALID_EVTCHN(evtchn)) |
| 1468 | set_evtchn(evtchn); |
| 1469 | } |
| 1470 | |
| 1471 | bool xen_test_irq_pending(int irq) |
| 1472 | { |
| 1473 | int evtchn = evtchn_from_irq(irq); |
| 1474 | bool ret = false; |
| 1475 | |
| 1476 | if (VALID_EVTCHN(evtchn)) |
| 1477 | ret = test_evtchn(evtchn); |
| 1478 | |
| 1479 | return ret; |
| 1480 | } |
| 1481 | |
Konrad Rzeszutek Wilk | d9a8814 | 2009-11-05 16:33:09 -0500 | [diff] [blame] | 1482 | /* Poll waiting for an irq to become pending with timeout. In the usual case, |
| 1483 | * the irq will be disabled so it won't deliver an interrupt. */ |
| 1484 | void xen_poll_irq_timeout(int irq, u64 timeout) |
Jeremy Fitzhardinge | 2d9e1e2 | 2008-07-07 12:07:53 -0700 | [diff] [blame] | 1485 | { |
| 1486 | evtchn_port_t evtchn = evtchn_from_irq(irq); |
| 1487 | |
| 1488 | if (VALID_EVTCHN(evtchn)) { |
| 1489 | struct sched_poll poll; |
| 1490 | |
| 1491 | poll.nr_ports = 1; |
Konrad Rzeszutek Wilk | d9a8814 | 2009-11-05 16:33:09 -0500 | [diff] [blame] | 1492 | poll.timeout = timeout; |
Isaku Yamahata | ff3c536 | 2008-10-14 17:50:44 -0700 | [diff] [blame] | 1493 | set_xen_guest_handle(poll.ports, &evtchn); |
Jeremy Fitzhardinge | 2d9e1e2 | 2008-07-07 12:07:53 -0700 | [diff] [blame] | 1494 | |
| 1495 | if (HYPERVISOR_sched_op(SCHEDOP_poll, &poll) != 0) |
| 1496 | BUG(); |
| 1497 | } |
| 1498 | } |
Konrad Rzeszutek Wilk | d9a8814 | 2009-11-05 16:33:09 -0500 | [diff] [blame] | 1499 | EXPORT_SYMBOL(xen_poll_irq_timeout); |
| 1500 | /* Poll waiting for an irq to become pending. In the usual case, the |
| 1501 | * irq will be disabled so it won't deliver an interrupt. */ |
| 1502 | void xen_poll_irq(int irq) |
| 1503 | { |
| 1504 | xen_poll_irq_timeout(irq, 0 /* no timeout */); |
| 1505 | } |
Jeremy Fitzhardinge | 2d9e1e2 | 2008-07-07 12:07:53 -0700 | [diff] [blame] | 1506 | |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1507 | void xen_irq_resume(void) |
| 1508 | { |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 1509 | unsigned int cpu, evtchn; |
| 1510 | struct irq_info *info; |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1511 | |
| 1512 | init_evtchn_cpu_bindings(); |
| 1513 | |
| 1514 | /* New event-channel space is not 'live' yet. */ |
| 1515 | for (evtchn = 0; evtchn < NR_EVENT_CHANNELS; evtchn++) |
| 1516 | mask_evtchn(evtchn); |
| 1517 | |
| 1518 | /* No IRQ <-> event-channel mappings. */ |
Ian Campbell | 6cb6537 | 2011-03-10 16:08:11 +0000 | [diff] [blame] | 1519 | list_for_each_entry(info, &xen_irq_list_head, list) |
| 1520 | info->evtchn = 0; /* zap event-channel binding */ |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1521 | |
| 1522 | for (evtchn = 0; evtchn < NR_EVENT_CHANNELS; evtchn++) |
| 1523 | evtchn_to_irq[evtchn] = -1; |
| 1524 | |
| 1525 | for_each_possible_cpu(cpu) { |
| 1526 | restore_cpu_virqs(cpu); |
| 1527 | restore_cpu_ipis(cpu); |
| 1528 | } |
Ian Campbell | 6903591 | 2010-11-01 16:30:09 +0000 | [diff] [blame] | 1529 | |
Ian Campbell | 0a85226 | 2011-03-10 16:08:06 +0000 | [diff] [blame] | 1530 | restore_pirqs(); |
Jeremy Fitzhardinge | 0e91398 | 2008-05-26 23:31:27 +0100 | [diff] [blame] | 1531 | } |
| 1532 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1533 | static struct irq_chip xen_dynamic_chip __read_mostly = { |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1534 | .name = "xen-dyn", |
Jeremy Fitzhardinge | 54a353a | 2009-02-06 14:09:42 -0800 | [diff] [blame] | 1535 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1536 | .irq_disable = disable_dynirq, |
| 1537 | .irq_mask = disable_dynirq, |
| 1538 | .irq_unmask = enable_dynirq, |
Jeremy Fitzhardinge | 54a353a | 2009-02-06 14:09:42 -0800 | [diff] [blame] | 1539 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1540 | .irq_eoi = ack_dynirq, |
| 1541 | .irq_set_affinity = set_affinity_irq, |
| 1542 | .irq_retrigger = retrigger_dynirq, |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1543 | }; |
| 1544 | |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 1545 | static struct irq_chip xen_pirq_chip __read_mostly = { |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1546 | .name = "xen-pirq", |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 1547 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1548 | .irq_startup = startup_pirq, |
| 1549 | .irq_shutdown = shutdown_pirq, |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 1550 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1551 | .irq_enable = enable_pirq, |
| 1552 | .irq_unmask = enable_pirq, |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 1553 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1554 | .irq_disable = disable_pirq, |
| 1555 | .irq_mask = disable_pirq, |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 1556 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1557 | .irq_ack = ack_pirq, |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 1558 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1559 | .irq_set_affinity = set_affinity_irq, |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 1560 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1561 | .irq_retrigger = retrigger_dynirq, |
Jeremy Fitzhardinge | d46a78b | 2010-10-01 12:20:09 -0400 | [diff] [blame] | 1562 | }; |
| 1563 | |
Jeremy Fitzhardinge | aaca496 | 2010-08-20 18:57:53 -0700 | [diff] [blame] | 1564 | static struct irq_chip xen_percpu_chip __read_mostly = { |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1565 | .name = "xen-percpu", |
Jeremy Fitzhardinge | aaca496 | 2010-08-20 18:57:53 -0700 | [diff] [blame] | 1566 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1567 | .irq_disable = disable_dynirq, |
| 1568 | .irq_mask = disable_dynirq, |
| 1569 | .irq_unmask = enable_dynirq, |
Jeremy Fitzhardinge | aaca496 | 2010-08-20 18:57:53 -0700 | [diff] [blame] | 1570 | |
Thomas Gleixner | c9e265e | 2011-02-05 20:08:54 +0000 | [diff] [blame] | 1571 | .irq_ack = ack_dynirq, |
Jeremy Fitzhardinge | aaca496 | 2010-08-20 18:57:53 -0700 | [diff] [blame] | 1572 | }; |
| 1573 | |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1574 | int xen_set_callback_via(uint64_t via) |
| 1575 | { |
| 1576 | struct xen_hvm_param a; |
| 1577 | a.domid = DOMID_SELF; |
| 1578 | a.index = HVM_PARAM_CALLBACK_IRQ; |
| 1579 | a.value = via; |
| 1580 | return HYPERVISOR_hvm_op(HVMOP_set_param, &a); |
| 1581 | } |
| 1582 | EXPORT_SYMBOL_GPL(xen_set_callback_via); |
| 1583 | |
Stefano Stabellini | ca65f9f | 2010-07-29 14:37:48 +0100 | [diff] [blame] | 1584 | #ifdef CONFIG_XEN_PVHVM |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1585 | /* Vector callbacks are better than PCI interrupts to receive event |
| 1586 | * channel notifications because we can receive vector callbacks on any |
| 1587 | * vcpu and we don't need PCI support or APIC interactions. */ |
| 1588 | void xen_callback_vector(void) |
| 1589 | { |
| 1590 | int rc; |
| 1591 | uint64_t callback_via; |
| 1592 | if (xen_have_vector_callback) { |
| 1593 | callback_via = HVM_CALLBACK_VECTOR(XEN_HVM_EVTCHN_CALLBACK); |
| 1594 | rc = xen_set_callback_via(callback_via); |
| 1595 | if (rc) { |
| 1596 | printk(KERN_ERR "Request for Xen HVM callback vector" |
| 1597 | " failed.\n"); |
| 1598 | xen_have_vector_callback = 0; |
| 1599 | return; |
| 1600 | } |
| 1601 | printk(KERN_INFO "Xen HVM callback vector for event delivery is " |
| 1602 | "enabled\n"); |
| 1603 | /* in the restore case the vector has already been allocated */ |
| 1604 | if (!test_bit(XEN_HVM_EVTCHN_CALLBACK, used_vectors)) |
| 1605 | alloc_intr_gate(XEN_HVM_EVTCHN_CALLBACK, xen_hvm_callback_vector); |
| 1606 | } |
| 1607 | } |
Stefano Stabellini | ca65f9f | 2010-07-29 14:37:48 +0100 | [diff] [blame] | 1608 | #else |
| 1609 | void xen_callback_vector(void) {} |
| 1610 | #endif |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1611 | |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1612 | void __init xen_init_IRQ(void) |
| 1613 | { |
Stefano Stabellini | e5fc734 | 2010-12-01 14:51:44 +0000 | [diff] [blame] | 1614 | int i; |
Mike Travis | c7a3589 | 2009-01-10 21:58:11 -0800 | [diff] [blame] | 1615 | |
Jeremy Fitzhardinge | b21ddbf | 2010-06-07 16:28:49 -0400 | [diff] [blame] | 1616 | evtchn_to_irq = kcalloc(NR_EVENT_CHANNELS, sizeof(*evtchn_to_irq), |
| 1617 | GFP_KERNEL); |
| 1618 | for (i = 0; i < NR_EVENT_CHANNELS; i++) |
| 1619 | evtchn_to_irq[i] = -1; |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1620 | |
| 1621 | init_evtchn_cpu_bindings(); |
| 1622 | |
| 1623 | /* No event channels are 'live' right now. */ |
| 1624 | for (i = 0; i < NR_EVENT_CHANNELS; i++) |
| 1625 | mask_evtchn(i); |
| 1626 | |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1627 | if (xen_hvm_domain()) { |
| 1628 | xen_callback_vector(); |
| 1629 | native_init_IRQ(); |
Stefano Stabellini | 3942b74 | 2010-06-24 17:50:18 +0100 | [diff] [blame] | 1630 | /* pci_xen_hvm_init must be called after native_init_IRQ so that |
| 1631 | * __acpi_register_gsi can point at the right function */ |
| 1632 | pci_xen_hvm_init(); |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1633 | } else { |
| 1634 | irq_ctx_init(smp_processor_id()); |
Jeremy Fitzhardinge | 38aa66f | 2010-09-02 14:51:39 +0100 | [diff] [blame] | 1635 | if (xen_initial_domain()) |
| 1636 | xen_setup_pirqs(); |
Sheng Yang | 38e20b0 | 2010-05-14 12:40:51 +0100 | [diff] [blame] | 1637 | } |
Jeremy Fitzhardinge | e46cdb6 | 2007-07-17 18:37:05 -0700 | [diff] [blame] | 1638 | } |